Adicionados arquivos de teste e ajustes

pull/86/head
Atyrson 2025-01-17 18:47:33 -03:00
rodzic 9fd8f98c7c
commit 13e0cdaacd
6996 zmienionych plików z 907498 dodań i 0 usunięć

Wyświetl plik

@ -15,6 +15,8 @@ COPY ./bakerydemo/requirements/* /code/requirements/
RUN pip install --upgrade pip \
&& pip install -r /code/requirements/production.txt
RUN pip install coverage
# Install wagtail from the host. This folder will be overwritten by a volume mount during run time (so that code
# changes show up immediately), but it also needs to be copied into the image now so that wagtail can be pip install'd.
COPY ./wagtail /code/wagtail/

Wyświetl plik

@ -0,0 +1,247 @@
<#
.Synopsis
Activate a Python virtual environment for the current PowerShell session.
.Description
Pushes the python executable for a virtual environment to the front of the
$Env:PATH environment variable and sets the prompt to signify that you are
in a Python virtual environment. Makes use of the command line switches as
well as the `pyvenv.cfg` file values present in the virtual environment.
.Parameter VenvDir
Path to the directory that contains the virtual environment to activate. The
default value for this is the parent of the directory that the Activate.ps1
script is located within.
.Parameter Prompt
The prompt prefix to display when this virtual environment is activated. By
default, this prompt is the name of the virtual environment folder (VenvDir)
surrounded by parentheses and followed by a single space (ie. '(.venv) ').
.Example
Activate.ps1
Activates the Python virtual environment that contains the Activate.ps1 script.
.Example
Activate.ps1 -Verbose
Activates the Python virtual environment that contains the Activate.ps1 script,
and shows extra information about the activation as it executes.
.Example
Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
Activates the Python virtual environment located in the specified location.
.Example
Activate.ps1 -Prompt "MyPython"
Activates the Python virtual environment that contains the Activate.ps1 script,
and prefixes the current prompt with the specified string (surrounded in
parentheses) while the virtual environment is active.
.Notes
On Windows, it may be required to enable this Activate.ps1 script by setting the
execution policy for the user. You can do this by issuing the following PowerShell
command:
PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
For more information on Execution Policies:
https://go.microsoft.com/fwlink/?LinkID=135170
#>
Param(
[Parameter(Mandatory = $false)]
[String]
$VenvDir,
[Parameter(Mandatory = $false)]
[String]
$Prompt
)
<# Function declarations --------------------------------------------------- #>
<#
.Synopsis
Remove all shell session elements added by the Activate script, including the
addition of the virtual environment's Python executable from the beginning of
the PATH variable.
.Parameter NonDestructive
If present, do not remove this function from the global namespace for the
session.
#>
function global:deactivate ([switch]$NonDestructive) {
# Revert to original values
# The prior prompt:
if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) {
Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt
Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT
}
# The prior PYTHONHOME:
if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) {
Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME
Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME
}
# The prior PATH:
if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) {
Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH
Remove-Item -Path Env:_OLD_VIRTUAL_PATH
}
# Just remove the VIRTUAL_ENV altogether:
if (Test-Path -Path Env:VIRTUAL_ENV) {
Remove-Item -Path env:VIRTUAL_ENV
}
# Just remove VIRTUAL_ENV_PROMPT altogether.
if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) {
Remove-Item -Path env:VIRTUAL_ENV_PROMPT
}
# Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether:
if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) {
Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force
}
# Leave deactivate function in the global namespace if requested:
if (-not $NonDestructive) {
Remove-Item -Path function:deactivate
}
}
<#
.Description
Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the
given folder, and returns them in a map.
For each line in the pyvenv.cfg file, if that line can be parsed into exactly
two strings separated by `=` (with any amount of whitespace surrounding the =)
then it is considered a `key = value` line. The left hand string is the key,
the right hand is the value.
If the value starts with a `'` or a `"` then the first and last character is
stripped from the value before being captured.
.Parameter ConfigDir
Path to the directory that contains the `pyvenv.cfg` file.
#>
function Get-PyVenvConfig(
[String]
$ConfigDir
) {
Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg"
# Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue).
$pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue
# An empty map will be returned if no config file is found.
$pyvenvConfig = @{ }
if ($pyvenvConfigPath) {
Write-Verbose "File exists, parse `key = value` lines"
$pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath
$pyvenvConfigContent | ForEach-Object {
$keyval = $PSItem -split "\s*=\s*", 2
if ($keyval[0] -and $keyval[1]) {
$val = $keyval[1]
# Remove extraneous quotations around a string value.
if ("'""".Contains($val.Substring(0, 1))) {
$val = $val.Substring(1, $val.Length - 2)
}
$pyvenvConfig[$keyval[0]] = $val
Write-Verbose "Adding Key: '$($keyval[0])'='$val'"
}
}
}
return $pyvenvConfig
}
<# Begin Activate script --------------------------------------------------- #>
# Determine the containing directory of this script
$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
$VenvExecDir = Get-Item -Path $VenvExecPath
Write-Verbose "Activation script is located in path: '$VenvExecPath'"
Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)"
Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)"
# Set values required in priority: CmdLine, ConfigFile, Default
# First, get the location of the virtual environment, it might not be
# VenvExecDir if specified on the command line.
if ($VenvDir) {
Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values"
}
else {
Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir."
$VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/")
Write-Verbose "VenvDir=$VenvDir"
}
# Next, read the `pyvenv.cfg` file to determine any required value such
# as `prompt`.
$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir
# Next, set the prompt from the command line, or the config file, or
# just use the name of the virtual environment folder.
if ($Prompt) {
Write-Verbose "Prompt specified as argument, using '$Prompt'"
}
else {
Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value"
if ($pyvenvCfg -and $pyvenvCfg['prompt']) {
Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'"
$Prompt = $pyvenvCfg['prompt'];
}
else {
Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)"
Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'"
$Prompt = Split-Path -Path $venvDir -Leaf
}
}
Write-Verbose "Prompt = '$Prompt'"
Write-Verbose "VenvDir='$VenvDir'"
# Deactivate any currently active virtual environment, but leave the
# deactivate function in place.
deactivate -nondestructive
# Now set the environment variable VIRTUAL_ENV, used by many tools to determine
# that there is an activated venv.
$env:VIRTUAL_ENV = $VenvDir
if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) {
Write-Verbose "Setting prompt to '$Prompt'"
# Set the prompt to include the env name
# Make sure _OLD_VIRTUAL_PROMPT is global
function global:_OLD_VIRTUAL_PROMPT { "" }
Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT
New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt
function global:prompt {
Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) "
_OLD_VIRTUAL_PROMPT
}
$env:VIRTUAL_ENV_PROMPT = $Prompt
}
# Clear PYTHONHOME
if (Test-Path -Path Env:PYTHONHOME) {
Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME
Remove-Item -Path Env:PYTHONHOME
}
# Add the venv to the PATH
Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH
$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH"

70
venv/bin/activate 100644
Wyświetl plik

@ -0,0 +1,70 @@
# This file must be used with "source bin/activate" *from bash*
# You cannot run it directly
deactivate () {
# reset old environment variables
if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
PATH="${_OLD_VIRTUAL_PATH:-}"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi
# Call hash to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
hash -r 2> /dev/null
if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
PS1="${_OLD_VIRTUAL_PS1:-}"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
unset VIRTUAL_ENV_PROMPT
if [ ! "${1:-}" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
# on Windows, a path can contain colons and backslashes and has to be converted:
if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then
# transform D:\path\to\venv to /d/path/to/venv on MSYS
# and to /cygdrive/d/path/to/venv on Cygwin
export VIRTUAL_ENV=$(cygpath /home/atyrson/wagtail-dev/venv)
else
# use the path as-is
export VIRTUAL_ENV=/home/atyrson/wagtail-dev/venv
fi
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/"bin":$PATH"
export PATH
# unset PYTHONHOME if set
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
# could use `if (set -u; : $PYTHONHOME) ;` in bash
if [ -n "${PYTHONHOME:-}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
_OLD_VIRTUAL_PS1="${PS1:-}"
PS1='(venv) '"${PS1:-}"
export PS1
VIRTUAL_ENV_PROMPT='(venv) '
export VIRTUAL_ENV_PROMPT
fi
# Call hash to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
hash -r 2> /dev/null

Wyświetl plik

@ -0,0 +1,27 @@
# This file must be used with "source bin/activate.csh" *from csh*.
# You cannot run it directly.
# Created by Davide Di Blasi <davidedb@gmail.com>.
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate'
# Unset irrelevant variables.
deactivate nondestructive
setenv VIRTUAL_ENV /home/atyrson/wagtail-dev/venv
set _OLD_VIRTUAL_PATH="$PATH"
setenv PATH "$VIRTUAL_ENV/"bin":$PATH"
set _OLD_VIRTUAL_PROMPT="$prompt"
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
set prompt = '(venv) '"$prompt"
setenv VIRTUAL_ENV_PROMPT '(venv) '
endif
alias pydoc python -m pydoc
rehash

Wyświetl plik

@ -0,0 +1,69 @@
# This file must be used with "source <venv>/bin/activate.fish" *from fish*
# (https://fishshell.com/). You cannot run it directly.
function deactivate -d "Exit virtual environment and return to normal shell environment"
# reset old environment variables
if test -n "$_OLD_VIRTUAL_PATH"
set -gx PATH $_OLD_VIRTUAL_PATH
set -e _OLD_VIRTUAL_PATH
end
if test -n "$_OLD_VIRTUAL_PYTHONHOME"
set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
set -e _OLD_VIRTUAL_PYTHONHOME
end
if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
set -e _OLD_FISH_PROMPT_OVERRIDE
# prevents error when using nested fish instances (Issue #93858)
if functions -q _old_fish_prompt
functions -e fish_prompt
functions -c _old_fish_prompt fish_prompt
functions -e _old_fish_prompt
end
end
set -e VIRTUAL_ENV
set -e VIRTUAL_ENV_PROMPT
if test "$argv[1]" != "nondestructive"
# Self-destruct!
functions -e deactivate
end
end
# Unset irrelevant variables.
deactivate nondestructive
set -gx VIRTUAL_ENV /home/atyrson/wagtail-dev/venv
set -gx _OLD_VIRTUAL_PATH $PATH
set -gx PATH "$VIRTUAL_ENV/"bin $PATH
# Unset PYTHONHOME if set.
if set -q PYTHONHOME
set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
set -e PYTHONHOME
end
if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
# fish uses a function instead of an env var to generate the prompt.
# Save the current fish_prompt function as the function _old_fish_prompt.
functions -c fish_prompt _old_fish_prompt
# With the original prompt function renamed, we can override with our own.
function fish_prompt
# Save the return status of the last command.
set -l old_status $status
# Output the venv prompt; color taken from the blue of the Python logo.
printf "%s%s%s" (set_color 4B8BBE) '(venv) ' (set_color normal)
# Restore the return status of the previous command.
echo "exit $old_status" | .
# Output the original/"old" prompt.
_old_fish_prompt
end
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
set -gx VIRTUAL_ENV_PROMPT '(venv) '
end

Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from coverage.cmdline import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from coverage.cmdline import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from coverage.cmdline import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from django.core.management import execute_from_command_line
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(execute_from_command_line())

Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from charset_normalizer import cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli.cli_detect())

8
venv/bin/pip 100755
Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

8
venv/bin/pip3 100755
Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

8
venv/bin/pip3.12 100755
Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

1
venv/bin/python 120000
Wyświetl plik

@ -0,0 +1 @@
python3

1
venv/bin/python3 120000
Wyświetl plik

@ -0,0 +1 @@
/usr/bin/python3

Wyświetl plik

@ -0,0 +1 @@
python3

Wyświetl plik

@ -0,0 +1,8 @@
#!/home/atyrson/wagtail-dev/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from sqlparse.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

Wyświetl plik

@ -0,0 +1,27 @@
Copyright (c) Django Software Foundation and individual contributors.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Django nor the names of its contributors may be used
to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Wyświetl plik

@ -0,0 +1,288 @@
Django is licensed under the three-clause BSD license; see the file
LICENSE for details.
Django includes code from the Python standard library, which is licensed under
the Python license, a permissive open source license. The copyright and license
is included below for compliance with Python's terms.
----------------------------------------------------------------------
Copyright (c) 2001-present Python Software Foundation; All Rights Reserved
A. HISTORY OF THE SOFTWARE
==========================
Python was created in the early 1990s by Guido van Rossum at Stichting
Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands
as a successor of a language called ABC. Guido remains Python's
principal author, although it includes many contributions from others.
In 1995, Guido continued his work on Python at the Corporation for
National Research Initiatives (CNRI, see https://www.cnri.reston.va.us)
in Reston, Virginia where he released several versions of the
software.
In May 2000, Guido and the Python core development team moved to
BeOpen.com to form the BeOpen PythonLabs team. In October of the same
year, the PythonLabs team moved to Digital Creations, which became
Zope Corporation. In 2001, the Python Software Foundation (PSF, see
https://www.python.org/psf/) was formed, a non-profit organization
created specifically to own Python-related Intellectual Property.
Zope Corporation was a sponsoring member of the PSF.
All Python releases are Open Source (see https://opensource.org for
the Open Source Definition). Historically, most, but not all, Python
releases have also been GPL-compatible; the table below summarizes
the various releases.
Release Derived Year Owner GPL-
from compatible? (1)
0.9.0 thru 1.2 1991-1995 CWI yes
1.3 thru 1.5.2 1.2 1995-1999 CNRI yes
1.6 1.5.2 2000 CNRI no
2.0 1.6 2000 BeOpen.com no
1.6.1 1.6 2001 CNRI yes (2)
2.1 2.0+1.6.1 2001 PSF no
2.0.1 2.0+1.6.1 2001 PSF yes
2.1.1 2.1+2.0.1 2001 PSF yes
2.1.2 2.1.1 2002 PSF yes
2.1.3 2.1.2 2002 PSF yes
2.2 and above 2.1.1 2001-now PSF yes
Footnotes:
(1) GPL-compatible doesn't mean that we're distributing Python under
the GPL. All Python licenses, unlike the GPL, let you distribute
a modified version without making your changes open source. The
GPL-compatible licenses make it possible to combine Python with
other software that is released under the GPL; the others don't.
(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
because its license has a choice of law clause. According to
CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
is "not incompatible" with the GPL.
Thanks to the many outside volunteers who have worked under Guido's
direction to make these releases possible.
B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
===============================================================
Python software and documentation are licensed under the
Python Software Foundation License Version 2.
Starting with Python 3.8.6, examples, recipes, and other code in
the documentation are dual licensed under the PSF License Version 2
and the Zero-Clause BSD license.
Some software incorporated into Python is under different licenses.
The licenses are listed with code falling under that license.
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
--------------------------------------------
1. This LICENSE AGREEMENT is between the Python Software Foundation
("PSF"), and the Individual or Organization ("Licensee") accessing and
otherwise using this software ("Python") in source or binary form and
its associated documentation.
2. Subject to the terms and conditions of this License Agreement, PSF hereby
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
analyze, test, perform and/or display publicly, prepare derivative works,
distribute, and otherwise use Python alone or in any derivative version,
provided, however, that PSF's License Agreement and PSF's notice of copyright,
i.e., "Copyright (c) 2001-2024 Python Software Foundation; All Rights Reserved"
are retained in Python alone or in any derivative version prepared by Licensee.
3. In the event Licensee prepares a derivative work that is based on
or incorporates Python or any part thereof, and wants to make
the derivative work available to others as provided herein, then
Licensee hereby agrees to include in any such work a brief summary of
the changes made to Python.
4. PSF is making Python available to Licensee on an "AS IS"
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
INFRINGE ANY THIRD PARTY RIGHTS.
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
6. This License Agreement will automatically terminate upon a material
breach of its terms and conditions.
7. Nothing in this License Agreement shall be deemed to create any
relationship of agency, partnership, or joint venture between PSF and
Licensee. This License Agreement does not grant permission to use PSF
trademarks or trade name in a trademark sense to endorse or promote
products or services of Licensee, or any third party.
8. By copying, installing or otherwise using Python, Licensee
agrees to be bound by the terms and conditions of this License
Agreement.
BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
-------------------------------------------
BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
Individual or Organization ("Licensee") accessing and otherwise using
this software in source or binary form and its associated
documentation ("the Software").
2. Subject to the terms and conditions of this BeOpen Python License
Agreement, BeOpen hereby grants Licensee a non-exclusive,
royalty-free, world-wide license to reproduce, analyze, test, perform
and/or display publicly, prepare derivative works, distribute, and
otherwise use the Software alone or in any derivative version,
provided, however, that the BeOpen Python License is retained in the
Software, alone or in any derivative version prepared by Licensee.
3. BeOpen is making the Software available to Licensee on an "AS IS"
basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
INFRINGE ANY THIRD PARTY RIGHTS.
4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
5. This License Agreement will automatically terminate upon a material
breach of its terms and conditions.
6. This License Agreement shall be governed by and interpreted in all
respects by the law of the State of California, excluding conflict of
law provisions. Nothing in this License Agreement shall be deemed to
create any relationship of agency, partnership, or joint venture
between BeOpen and Licensee. This License Agreement does not grant
permission to use BeOpen trademarks or trade names in a trademark
sense to endorse or promote products or services of Licensee, or any
third party. As an exception, the "BeOpen Python" logos available at
http://www.pythonlabs.com/logos.html may be used according to the
permissions granted on that web page.
7. By copying, installing or otherwise using the software, Licensee
agrees to be bound by the terms and conditions of this License
Agreement.
CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
---------------------------------------
1. This LICENSE AGREEMENT is between the Corporation for National
Research Initiatives, having an office at 1895 Preston White Drive,
Reston, VA 20191 ("CNRI"), and the Individual or Organization
("Licensee") accessing and otherwise using Python 1.6.1 software in
source or binary form and its associated documentation.
2. Subject to the terms and conditions of this License Agreement, CNRI
hereby grants Licensee a nonexclusive, royalty-free, world-wide
license to reproduce, analyze, test, perform and/or display publicly,
prepare derivative works, distribute, and otherwise use Python 1.6.1
alone or in any derivative version, provided, however, that CNRI's
License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
1995-2001 Corporation for National Research Initiatives; All Rights
Reserved" are retained in Python 1.6.1 alone or in any derivative
version prepared by Licensee. Alternately, in lieu of CNRI's License
Agreement, Licensee may substitute the following text (omitting the
quotes): "Python 1.6.1 is made available subject to the terms and
conditions in CNRI's License Agreement. This Agreement together with
Python 1.6.1 may be located on the internet using the following
unique, persistent identifier (known as a handle): 1895.22/1013. This
Agreement may also be obtained from a proxy server on the internet
using the following URL: http://hdl.handle.net/1895.22/1013".
3. In the event Licensee prepares a derivative work that is based on
or incorporates Python 1.6.1 or any part thereof, and wants to make
the derivative work available to others as provided herein, then
Licensee hereby agrees to include in any such work a brief summary of
the changes made to Python 1.6.1.
4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
INFRINGE ANY THIRD PARTY RIGHTS.
5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
6. This License Agreement will automatically terminate upon a material
breach of its terms and conditions.
7. This License Agreement shall be governed by the federal
intellectual property law of the United States, including without
limitation the federal copyright law, and, to the extent such
U.S. federal law does not apply, by the law of the Commonwealth of
Virginia, excluding Virginia's conflict of law provisions.
Notwithstanding the foregoing, with regard to derivative works based
on Python 1.6.1 that incorporate non-separable material that was
previously distributed under the GNU General Public License (GPL), the
law of the Commonwealth of Virginia shall govern this License
Agreement only as to issues arising under or with respect to
Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
License Agreement shall be deemed to create any relationship of
agency, partnership, or joint venture between CNRI and Licensee. This
License Agreement does not grant permission to use CNRI trademarks or
trade name in a trademark sense to endorse or promote products or
services of Licensee, or any third party.
8. By clicking on the "ACCEPT" button where indicated, or by copying,
installing or otherwise using Python 1.6.1, Licensee agrees to be
bound by the terms and conditions of this License Agreement.
ACCEPT
CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
--------------------------------------------------
Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
The Netherlands. All rights reserved.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of Stichting Mathematisch
Centrum or CWI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION
----------------------------------------------------------------------
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.

Wyświetl plik

@ -0,0 +1,101 @@
Metadata-Version: 2.1
Name: Django
Version: 5.1.5
Summary: A high-level Python web framework that encourages rapid development and clean, pragmatic design.
Author-email: Django Software Foundation <foundation@djangoproject.com>
License: BSD-3-Clause
Project-URL: Homepage, https://www.djangoproject.com/
Project-URL: Documentation, https://docs.djangoproject.com/
Project-URL: Release notes, https://docs.djangoproject.com/en/stable/releases/
Project-URL: Funding, https://www.djangoproject.com/fundraising/
Project-URL: Source, https://github.com/django/django
Project-URL: Tracker, https://code.djangoproject.com/
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: LICENSE.python
License-File: AUTHORS
Requires-Dist: asgiref<4,>=3.8.1
Requires-Dist: sqlparse>=0.3.1
Requires-Dist: tzdata; sys_platform == "win32"
Provides-Extra: argon2
Requires-Dist: argon2-cffi>=19.1.0; extra == "argon2"
Provides-Extra: bcrypt
Requires-Dist: bcrypt; extra == "bcrypt"
======
Django
======
Django is a high-level Python web framework that encourages rapid development
and clean, pragmatic design. Thanks for checking it out.
All documentation is in the "``docs``" directory and online at
https://docs.djangoproject.com/en/stable/. If you're just getting started,
here's how we recommend you read the docs:
* First, read ``docs/intro/install.txt`` for instructions on installing Django.
* Next, work through the tutorials in order (``docs/intro/tutorial01.txt``,
``docs/intro/tutorial02.txt``, etc.).
* If you want to set up an actual deployment server, read
``docs/howto/deployment/index.txt`` for instructions.
* You'll probably want to read through the topical guides (in ``docs/topics``)
next; from there you can jump to the HOWTOs (in ``docs/howto``) for specific
problems, and check out the reference (``docs/ref``) for gory details.
* See ``docs/README`` for instructions on building an HTML version of the docs.
Docs are updated rigorously. If you find any problems in the docs, or think
they should be clarified in any way, please take 30 seconds to fill out a
ticket here: https://code.djangoproject.com/newticket
To get more help:
* Join the ``#django`` channel on ``irc.libera.chat``. Lots of helpful people
hang out there. `Webchat is available <https://web.libera.chat/#django>`_.
* Join the django-users mailing list, or read the archives, at
https://groups.google.com/group/django-users.
* Join the `Django Discord community <https://discord.gg/xcRH6mN4fa>`_.
* Join the community on the `Django Forum <https://forum.djangoproject.com/>`_.
To contribute to Django:
* Check out https://docs.djangoproject.com/en/dev/internals/contributing/ for
information about getting involved.
To run Django's test suite:
* Follow the instructions in the "Unit tests" section of
``docs/internals/contributing/writing-code/unit-tests.txt``, published online at
https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/#running-the-unit-tests
Supporting the Development of Django
====================================
Django's development depends on your contributions.
If you depend on Django, remember to support the Django Software Foundation: https://www.djangoproject.com/fundraising/

Wyświetl plik

@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.45.1)
Root-Is-Purelib: true
Tag: py3-none-any

Wyświetl plik

@ -0,0 +1,2 @@
[console_scripts]
django-admin = django.core.management:execute_from_command_line

Wyświetl plik

@ -0,0 +1,28 @@
Copyright 2010 Pallets
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Wyświetl plik

@ -0,0 +1,92 @@
Metadata-Version: 2.1
Name: MarkupSafe
Version: 3.0.2
Summary: Safely add untrusted strings to HTML/XML markup.
Maintainer-email: Pallets <contact@palletsprojects.com>
License: Copyright 2010 Pallets
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Project-URL: Donate, https://palletsprojects.com/donate
Project-URL: Documentation, https://markupsafe.palletsprojects.com/
Project-URL: Changes, https://markupsafe.palletsprojects.com/changes/
Project-URL: Source, https://github.com/pallets/markupsafe/
Project-URL: Chat, https://discord.gg/pallets
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
# MarkupSafe
MarkupSafe implements a text object that escapes characters so it is
safe to use in HTML and XML. Characters that have special meanings are
replaced so that they display as the actual characters. This mitigates
injection attacks, meaning untrusted user input can safely be displayed
on a page.
## Examples
```pycon
>>> from markupsafe import Markup, escape
>>> # escape replaces special characters and wraps in Markup
>>> escape("<script>alert(document.cookie);</script>")
Markup('&lt;script&gt;alert(document.cookie);&lt;/script&gt;')
>>> # wrap in Markup to mark text "safe" and prevent escaping
>>> Markup("<strong>Hello</strong>")
Markup('<strong>hello</strong>')
>>> escape(Markup("<strong>Hello</strong>"))
Markup('<strong>hello</strong>')
>>> # Markup is a str subclass
>>> # methods and operators escape their arguments
>>> template = Markup("Hello <em>{name}</em>")
>>> template.format(name='"World"')
Markup('Hello <em>&#34;World&#34;</em>')
```
## Donate
The Pallets organization develops and supports MarkupSafe and other
popular packages. In order to grow the community of contributors and
users, and allow the maintainers to devote more time to the projects,
[please donate today][].
[please donate today]: https://palletsprojects.com/donate

Wyświetl plik

@ -0,0 +1,14 @@
MarkupSafe-3.0.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
MarkupSafe-3.0.2.dist-info/LICENSE.txt,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475
MarkupSafe-3.0.2.dist-info/METADATA,sha256=aAwbZhSmXdfFuMM-rEHpeiHRkBOGESyVLJIuwzHP-nw,3975
MarkupSafe-3.0.2.dist-info/RECORD,,
MarkupSafe-3.0.2.dist-info/WHEEL,sha256=OVgtqZzfzIXXtylXP90gxCZ6CKBCwKYyHM8PpMEjN1M,151
MarkupSafe-3.0.2.dist-info/top_level.txt,sha256=qy0Plje5IJuvsCBjejJyhDCjEAdcDLK_2agVcex8Z6U,11
markupsafe/__init__.py,sha256=sr-U6_27DfaSrj5jnHYxWN-pvhM27sjlDplMDPZKm7k,13214
markupsafe/__pycache__/__init__.cpython-312.pyc,,
markupsafe/__pycache__/_native.cpython-312.pyc,,
markupsafe/_native.py,sha256=hSLs8Jmz5aqayuengJJ3kdT5PwNpBWpKrmQSdipndC8,210
markupsafe/_speedups.c,sha256=O7XulmTo-epI6n2FtMVOrJXl8EAaIwD2iNYmBI5SEoQ,4149
markupsafe/_speedups.cpython-312-x86_64-linux-gnu.so,sha256=t1DBZlpsjFA30BOOvXfXfT1wvO_4cS16VbHz1-49q5U,43432
markupsafe/_speedups.pyi,sha256=ENd1bYe7gbBUf2ywyYWOGUpnXOHNJ-cgTNqetlW8h5k,41
markupsafe/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0

Wyświetl plik

@ -0,0 +1,6 @@
Wheel-Version: 1.0
Generator: setuptools (75.2.0)
Root-Is-Purelib: false
Tag: cp312-cp312-manylinux_2_17_x86_64
Tag: cp312-cp312-manylinux2014_x86_64

Wyświetl plik

@ -0,0 +1,15 @@
ISC License
Copyright (c) 2020-2023, Hunter WB <hunterwb.com>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Wyświetl plik

@ -0,0 +1,37 @@
Metadata-Version: 2.1
Name: anyascii
Version: 0.3.2
Summary: Unicode to ASCII transliteration
Keywords: unicode,ascii,transliteration,utf8,romanization,slug,emoji,unidecode,normalization
Author-email: Hunter WB <hunter@hunterwb.com>
Requires-Python: >=3.3
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Linguistic
Project-URL: homepage, https://github.com/anyascii/anyascii
# AnyAscii
Unicode to ASCII transliteration
[**Web Demo**](https://anyascii.com)
Converts Unicode characters to their best ASCII representation
AnyAscii provides ASCII-only replacement strings for practically all Unicode characters. Text is converted character-by-character without considering the context. The mappings for each script are based on popular existing romanization systems. Symbolic characters are converted based on their meaning or appearance. All ASCII characters in the input are left unchanged, every other character is replaced with printable ASCII characters. Unknown characters and some known characters are replaced with an empty string and removed.
```python
from anyascii import anyascii
s = anyascii('άνθρωποι')
assert s == 'anthropoi'
```
Python 3.3+ compatible
`pip install anyascii`
[**FULL README**](https://github.com/anyascii/anyascii)

Wyświetl plik

@ -0,0 +1,611 @@
anyascii-0.3.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
anyascii-0.3.2.dist-info/LICENSE,sha256=f9wAnu1CdogSc7TO2bOmgOEswq2RmYmaonxQIM3-tjQ,761
anyascii-0.3.2.dist-info/METADATA,sha256=_ZjGkgTtx5IfMUI40I_y_D1drPEHS4drgLBjMXP1ddo,1456
anyascii-0.3.2.dist-info/RECORD,,
anyascii-0.3.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
anyascii-0.3.2.dist-info/WHEEL,sha256=rSgq_JpHF9fHR1lx53qwg_1-2LypZE_qmcuXbVUq948,81
anyascii/__init__.py,sha256=NZQmc5mhp3WWzl4vHVXtmT6SYjgqgVWM-uqJJL3w6qw,1340
anyascii/__pycache__/__init__.cpython-312.pyc,,
anyascii/_data/000,sha256=DoN5gqIivkoWXtkURkzNQSoQtDX5fU4FD3629ZOY26U,130
anyascii/_data/001,sha256=XJ7DnDt72KNTpQtkvJMzBLX1r6gsR9NBBXXOIKM78yE,232
anyascii/_data/002,sha256=VinsjFKZP2-vKZmXtKnsunvgQ9kBJ8aDfg2XD2FsCHI,293
anyascii/_data/003,sha256=b7bC8SG7Kumr4Rhx20MjJ_GE77iqkN0HcQ-0lxBrdD8,211
anyascii/_data/004,sha256=3yfeafi_mrLgc3VKPXecXrvhLf5VjHa5fyT7Wx-_eMI,339
anyascii/_data/005,sha256=6YXR2ck02jp7xENY5kWJRbAntg622XBXvYLC1fTKGCg,300
anyascii/_data/006,sha256=yN8hbIJLwT70dnIYhfjC1msk5YZMgGto5GYmIbK6wYo,273
anyascii/_data/007,sha256=P2Va0POZtpUE6SbAwr8fvp7EIBoPu1_JJjLKUTNe_us,287
anyascii/_data/008,sha256=JFKyggyyaI0WlNG3jyN2LFQZ1TqH3fWOcL-8Mcy_pW0,239
anyascii/_data/009,sha256=Z0cUbSDgQtkp8WFB6_5m-ZEBPhFWRG20EBjIymqWrEY,196
anyascii/_data/00a,sha256=bi9kt2W5Ut2nrdHpVuQpnSePWl4xIfELfkp3ouQvKYw,159
anyascii/_data/00b,sha256=1qic5Uoal3wBjZHR21etG2heNEzvRLUWDUf9_ZW46QQ,186
anyascii/_data/00c,sha256=4t3p1YhbdXxXwNS-qQ44dnRekOn2ZYTHQ3a45D0R9Cc,146
anyascii/_data/00d,sha256=tfBkU84tH0iBVaHkjE7vCTvMzsHtJ4Aq9SvrPePXK3g,207
anyascii/_data/00e,sha256=REoyzoJbSAvfHHowXDzhcnvgCwvMsMwd--VUcDV2XiY,169
anyascii/_data/00f,sha256=AFvQnVGNO6QssDOM_HPGPg7j9DK3dMci-at2x3tbk8M,219
anyascii/_data/010,sha256=D1R-xwD6PCCg47lZbiI1dAKRIqqwjuWbaIGYoUujPP0,318
anyascii/_data/011,sha256=BMT6Dzs-GWNfIkjreX2wqqhN9NBRYrr5kfDI9toflKw,392
anyascii/_data/012,sha256=ju58w1ca8anJ8y9dYCWchpcjGAOw6qRnHkP65vtAeUo,329
anyascii/_data/013,sha256=UIEh5zqrjLMtwdIEm6OXBqF0WuKiZvLbgNiuMBzZolc,408
anyascii/_data/014,sha256=nTjV0cObp8zqmnnX72-XdbspiOz39n7cbe3sYyXuMsA,276
anyascii/_data/015,sha256=atPN4VkgNvT7mXoS1WTfLQ9SgDYAWh1A21VZYQMstwk,348
anyascii/_data/016,sha256=XRSHt4OUhnr8lN5XRdylI70FNNJrp174JElyGnl3hRc,373
anyascii/_data/017,sha256=8epCKV0XzzFHWiNGaNlVGhhqmU594zSi70w5pfpZ1PU,203
anyascii/_data/018,sha256=rX76RbrKGtdP0lGF49EdIeHx77kDN3de1xsX-jM5WJw,302
anyascii/_data/019,sha256=xpdsFpOijXOAwPPu6YPJoOrg5j_DBtO7KLLeu_khRwI,278
anyascii/_data/01a,sha256=Aq88Ffk7H6jhjCy3S3G9dG1xEBcPzikFaRo4WOFbErg,205
anyascii/_data/01b,sha256=VfDr2BB2KdAVBpWo-hHctItRFgjtGUXbRgXGv8xGMJI,255
anyascii/_data/01c,sha256=VcNZdsi8doTb60cWvkyjWyt2gsPhA28ZoPXaawolKvE,270
anyascii/_data/01d,sha256=hDe7EBKdiT3QfTN8SWgJCp0-C0n8KgF4pIBJGc-COdA,238
anyascii/_data/01e,sha256=r9uCGdDxlAAz9gT6ZhlvYw63-w0TKrN2vqpL5Bvqorc,145
anyascii/_data/01f,sha256=wOAZNTzQhsdAxx5np6GYh7gnsBQHDUDWJ3M6FQjXG08,155
anyascii/_data/020,sha256=JgkHG11D6yWiy2_MbIcqPgDpQbKXuGIKhO7GFcs1QFk,242
anyascii/_data/021,sha256=KghPQQRX8pmE0_pnamBtkqwT9FFnZNrW-dWQUO3I0Ss,383
anyascii/_data/022,sha256=IaJftnhkmGjuVBJZo7oBpr9abVTaODrNHhCnKEFq3jo,212
anyascii/_data/023,sha256=EEY05-BYRwFkzHhUVZF6xgoKFU6EIDZbGELzr5wV7uw,342
anyascii/_data/024,sha256=p6XsI-wO-Pw_A5Nk0r7QOIHex2g-E4QO8M_HAFXgRz0,348
anyascii/_data/025,sha256=FyxBSETNJsjTGsisS1cpgx5N11Y7YhT3vvUeDmR-ePg,140
anyascii/_data/026,sha256=NuXQ_3-tc5FJfqyBupqZlojHGf3s9ghg6NK1JRo2E9E,788
anyascii/_data/027,sha256=UlOjdEgwsINqbqtNLFof7XjaFCOY8jxLWwvBSq-bcfw,428
anyascii/_data/028,sha256=OcJNs2azFKrutLGf52wWAjQvymgTADDIqw87QjYIqsE,429
anyascii/_data/029,sha256=z84n6dssCgBBev1L2i64B2SVajIr_kpUzzp_6S690Og,198
anyascii/_data/02a,sha256=gGKd0RYoPnh5672dEipn0XfELnWPUVmFzvW61HqHwhk,191
anyascii/_data/02b,sha256=21cDAOuMTlGpTNqOlsQDg6FfOChX9cWXIonXlroH-TE,255
anyascii/_data/02c,sha256=BdcNErSug8QKw0WVvDK4G47Af0y6xKNkpWiuqAsXqLg,331
anyascii/_data/02d,sha256=geOeUumrr4PfScMzo_9UFKxORXsozXGtcLZi_k_XEq0,303
anyascii/_data/02e,sha256=DCu2y3H7gxTAVRhJAbadl2XOxvc4ZeDICRr88b5Glyo,319
anyascii/_data/02f,sha256=bNeaBEh0YOa8MZXg3QQeWwLBhCYtCNpJq7wLICyJdwY,424
anyascii/_data/030,sha256=5CuAfKce4Lu4rFawHnYetV3uJEhPvKIC8jlVb19W3ms,301
anyascii/_data/031,sha256=-4AYYuWhX9N0I2n5-_UpMFBVfhKSqVnHpJyKfYYfbw4,401
anyascii/_data/032,sha256=EmwEAfpdSHCeluxGau2SWSaVeYy5UdHja0Qnp_b0TMw,518
anyascii/_data/033,sha256=164QnyBwAaK0ehr3SmnCqeUCvNkWr_3wwobN0TwQRhk,685
anyascii/_data/034,sha256=RtYv2-n0JZsUIh-itF2dzzP3tX63aKHPwJxNEkBCGkM,533
anyascii/_data/035,sha256=-hnukpMdZmcMwOhT4vcTJ3hH6rLaR1-JBiX5i8Lsq8M,508
anyascii/_data/036,sha256=hUsI-Wb9IikFmUF85_KZ3-eIZG5DZKSrLZHIoHLs3C0,496
anyascii/_data/037,sha256=tOuenxxdNhPq3xP9njCxYgSD70aIzYo_61jdL3pkrQQ,522
anyascii/_data/038,sha256=gRkF83oL0usrtXHzGz9nVzBVbZgBktAEmGCJXUvs0QU,510
anyascii/_data/039,sha256=tXVWGDZPyhJhldhlGGMBj4CYBCwaLi-YfEeQ1anO0TY,510
anyascii/_data/03a,sha256=kGooYOCrj51Bvhz9PUMlAqVyzAPEH1NEnXFxtS0dhrE,513
anyascii/_data/03b,sha256=OdsFcPysbpZWpUQWZUbak9TuprGhOU3t-I21jkcWNGk,531
anyascii/_data/03c,sha256=hJh4zMmwpyzg7kikbYCwvJ4Cz0dJ2KwLjQdNN9bu_JU,507
anyascii/_data/03d,sha256=ZwYgJOPvhdd4fMb5jiTHPigAViSpqs7tkJAqIUniYV4,523
anyascii/_data/03e,sha256=SWq5QOYPmIHVp-tXsQPaJtIbm_Vj3nwGeUZBfoHL--w,515
anyascii/_data/03f,sha256=mWrbG4huMh36sdECOEDX1MIEShSRVwncdht0Vtt2Swg,506
anyascii/_data/040,sha256=hz6FrqNi3m1lb6n50XbgOfnIap3O8WqXBIfgKQ_ZHlw,512
anyascii/_data/041,sha256=J2euUEuBmAVqVVGfcoL0Qb29Hf2PEcVSeFYkrcvvbf0,516
anyascii/_data/042,sha256=46Ci9D4cF77UrSxWCgd2AcDOaO2VklHQe7KHr9ZhEi4,509
anyascii/_data/043,sha256=uCSsCdmyxFUEsEty7mi3DBk-1S8kIX2to9DbpcwUrAc,501
anyascii/_data/044,sha256=RH4F4dMSxFGGXMBar1NRZx_j1VG1tPIWMWYXf4VGNYY,506
anyascii/_data/045,sha256=A9RpRoEU-tGhVlHWOazqmCna15KHqhEyGzUbqB0OAxM,510
anyascii/_data/046,sha256=5m6OKkiVHO2egBNg7Xs00aeg53ikfVd6Sng16L0_PWQ,505
anyascii/_data/047,sha256=WuFAAS53YPt8dtcakUqoj9VDOPtIgbx_jA6vZI4Ts-o,499
anyascii/_data/048,sha256=94P439rmP3x2vxCinqEaEu-RjgYtBa9PcgPsacd4PUI,514
anyascii/_data/049,sha256=MGob_wQav1c4m2ae-cnkQ16WTk3OBDjUipNM5b9jipY,511
anyascii/_data/04a,sha256=ubid193TFMHyRiHe2qDiX2i8YPLnIpDjffAckkFxlW8,491
anyascii/_data/04b,sha256=x1pyAZic1GhwAqXD1MMB2r_PeyMI6K-HUH_hP3e5Fx8,503
anyascii/_data/04c,sha256=7Z86yGkoq5Dg6TzfIPStQncnMWzWs5wbVHBQUnrFAfs,509
anyascii/_data/04d,sha256=mvVnIiK32QUUMySOU40gCrF4RMowpoQ9hSbxPbgHTEI,504
anyascii/_data/04e,sha256=AHB4j7ITDJP3iUsZtRI58OsiubxF1flK-Up7MPMrNmM,476
anyascii/_data/04f,sha256=EOcCet-dmAhx1sC8MF6DUKLzAhL3ZMAHKgO6vYpOCDc,483
anyascii/_data/050,sha256=2WwudWm_TLDQt0Ivu6gdLDv0aOv6fAM090EQpy2ycLU,504
anyascii/_data/051,sha256=ZynmxYLhZ3_-kHjWhvpl96V_U02Bu3CumYY8lJR9XHI,507
anyascii/_data/052,sha256=YAHd7Xum57m0cphaKtEYpiRqfXUR7X9ddYlQ82ON8eQ,475
anyascii/_data/053,sha256=OsZ7plg6wiQgd08x6UrU5FDB0rB0qS0des0VTclKBJg,480
anyascii/_data/054,sha256=rvyuBiZPgvRB1Xbicx9Y0AbMH5f7dxCoOYhtoHvlibI,495
anyascii/_data/055,sha256=g3FZwg3ZE6I_m327rJuG9IEGQjW7ynw_gb4X8UGoPd0,487
anyascii/_data/056,sha256=i2v6H2a4UOUav0FkbGwO05sw4E-8xfojLIgrOIPEg3Q,479
anyascii/_data/057,sha256=GbQw5ePUoR4DPG94I8cFT_-ovCnDwk-kzeO4nP30eis,487
anyascii/_data/058,sha256=B7r4hjo4rKopfh2fVN3JNGW1KsQUEDhC_NafAx6CHmw,504
anyascii/_data/059,sha256=tjsO7vv5_0Wu7CTtWHW_K0yhYoPFg4EoFtuT4DZRWoo,503
anyascii/_data/05a,sha256=y48xxJ-ZXayQIEm4mXQo8lIwA9nCe-Y6KprXCw8bA0E,490
anyascii/_data/05b,sha256=K2ECgcDufRrmF7DdF3LGwtCUGJbXYPoianKBKswH0bw,489
anyascii/_data/05c,sha256=-V16IBnynk225CS7VlsXRYyoXUadMnOAYEQRFmiXHIs,473
anyascii/_data/05d,sha256=qTGwA7H0SXXJSMFyZLRCj8teSnXwD-zUuVM4Rj8Hll8,478
anyascii/_data/05e,sha256=8ZrN3IfMDBe4IDlX8W7j7lWEkj978EAjuX-ZoBgbY5c,485
anyascii/_data/05f,sha256=0_sVNNzux_VO-3Go5vCqADrm8w-AjTHS-4drhFXEDik,473
anyascii/_data/060,sha256=A4k9kJ_BrMATQGq3feqw1-xhpKtImu0LgjJoUMeiMQk,489
anyascii/_data/061,sha256=FYLrVQAu-m69mODYl1dD1SeSrYIpy2j0XPCJgQgKyEc,488
anyascii/_data/062,sha256=J_7kMN9nhGghjj5EulPxNmJVb0VRlZ-wb7DNVXXGMcc,489
anyascii/_data/063,sha256=Z85C2ALpF29FOGqatDFrD8axcg4-vwgI9RQhriv_mx4,502
anyascii/_data/064,sha256=UnmsqVGYshVqNVPGU-02hq4PppVxxc2B37oLEEXHHDo,486
anyascii/_data/065,sha256=WSjp9WVk7Utccff3s9jHOE23_Um0erbiIqb-I13Hlms,480
anyascii/_data/066,sha256=zySSypYV8Tr8OFuqAmMsft1jHJSGlAvk54XDJ0j1KhU,485
anyascii/_data/067,sha256=LgmI3y7c7Ae-vKET9KAcURAmKuLJBLPg9O8Ye2nK940,496
anyascii/_data/068,sha256=8EPflBI3CBcRsU9eAp3JO-F_avLj5CCNj0zVsVWdobk,507
anyascii/_data/069,sha256=t8oUyBnSAKbY1Pthb9rjwm1a9sEsgynDX0vzT3qWlTo,492
anyascii/_data/06a,sha256=qeFZJDLgs8d2y-Pgz7pkv4Asro-9RdGRaLAuXNT4DpQ,497
anyascii/_data/06b,sha256=WxiA1A_izqQbrh_Je49aVO0DFr5pjDmvjty4iTd6zRY,468
anyascii/_data/06c,sha256=5zCwduFD-oEI8ayhQAWSb2JNLbt_tZ_jTnq6R8MWCKs,488
anyascii/_data/06d,sha256=NdFapSHjL8ML0O0hwlS-jHHUkVEJr1FrTEWJvMZlN5A,503
anyascii/_data/06e,sha256=X25vnpZLH0Xcnzudy939KXB8DgkGwlPctBjpcqMAi6A,484
anyascii/_data/06f,sha256=qTDdHly98SIXtz16mSRWZIMvBScQQTjHp3L_zkqAGqA,476
anyascii/_data/070,sha256=k58BUFrIr68MgGoHc-FYmdYuWROPIRVVy30JVabdNeA,490
anyascii/_data/071,sha256=MSiAhSMtPlXIs9bjdcZHCGWDcXYx4blWix12X7c3-6Q,486
anyascii/_data/072,sha256=2grDeQipyrx95Po_4_r7Q1FJlMpiYJFvTZupAYbSplU,489
anyascii/_data/073,sha256=WaoycFcUzlAuDs5YzdvSbM6h8ZVLOnOtO0Ow5A_3nro,506
anyascii/_data/074,sha256=7BWOZD6XoMW9g910hVqMP5HtvG5NtvRr4FiCd3E4Pf0,479
anyascii/_data/075,sha256=fkkpjvoXnae3KUuOI8d6X2UEzxIuHd9rvUk5uvGFdKI,478
anyascii/_data/076,sha256=4WPZPb3yEx9uAQZSKXrsp4Um6oVO8hWQZV9QpoCQorE,474
anyascii/_data/077,sha256=e2g6KvZZ2wZo8UbMYnyvOjx8rNy4QVb8P0zZMbTJGLA,487
anyascii/_data/078,sha256=Z7mi42EBbNW4mhX_otkYGwPHu1n2-R94989qxJlFJHs,490
anyascii/_data/079,sha256=K7uqc1Xvx3nftVWSSRCuJv6jmxH_LW1vBl9TNgk-z1w,467
anyascii/_data/07a,sha256=jzJbtUmk3uTY5qrXQyGoufgHHPvH6vspygJf2omenIQ,483
anyascii/_data/07b,sha256=7WaIgzzfqXWTWb8FLiv0oKRQdMNMFps3C-e5K_tYRHk,490
anyascii/_data/07c,sha256=h1djaABUbPg4KmbEo2Qfu8RA33hCcFqbEvGFzihEt5Y,482
anyascii/_data/07d,sha256=FTCwGvyhmarJxUhBNicTKYg5dhIronAwjCO4lgVbATw,492
anyascii/_data/07e,sha256=IpvnONTvH-YZWHwEXWjAXgK6_nm0ugjpto4aR6EkopM,490
anyascii/_data/07f,sha256=pGNA4kt7O1bT0vwwCVBTioUqLv9kyzdKO5q8Li60Zdc,471
anyascii/_data/080,sha256=T-bcL3Wi0DPkaZhHXp6g4d4gZiB7Qb1dMWX_7CiqLlM,490
anyascii/_data/081,sha256=EEhfi5Kr92YZSQwQ0Vy1u58ArjmmyxEtZvf8NZqyJ30,501
anyascii/_data/082,sha256=S5_FNI259x0qMgEZl4T18r5AyI2vNSdgxjOYU6kFVps,486
anyascii/_data/083,sha256=1LpFez2odHSN-TIDLF0CnbvLCdRzZRCztg5csSOBtEI,498
anyascii/_data/084,sha256=7rd52guVzumCaLcG7YPvHYrWxxdYA5NRXGO8FH-W83w,489
anyascii/_data/085,sha256=RomDdQUcOJf007ZCyc4-alplKjWciRIWdqNgpykw7-M,490
anyascii/_data/086,sha256=VgAcxKNCPg_RKmuAxL1gmIkyJnlMEwbreV8KPDdkvEc,475
anyascii/_data/087,sha256=Mrcpxms_dRxxEeVyiFdCfQNshUSsefD48viqcBD4wnc,488
anyascii/_data/088,sha256=0gRoPJqe0vKoHP1RYCCfwxkODad0aso1lntO9Sdx3RU,492
anyascii/_data/089,sha256=AXQZDQd7vxWODtzFby5DNjdUjh8kApT1DKnBymH0NIQ,465
anyascii/_data/08a,sha256=sModcRLYcFwKIY4SA2l9hYZnqAGOkr5edg_4Ia-Ab9w,482
anyascii/_data/08b,sha256=fe3UB1Ck5SabUlf5ZzdfEndt8bxWgDj7BcFBrh8hHck,479
anyascii/_data/08c,sha256=lXqP19FdL_dRAT5cpI8jkSRkAd0m6JzsqI9DgHcFoMc,488
anyascii/_data/08d,sha256=4xQnopAMGnNjD_cr1SgF540zNwrwxGz-TF_G10XfZGY,478
anyascii/_data/08e,sha256=YBvIHlrcX1JZWgxGrGluTXL6zt2U3qBz-EMZgLe8Rg8,485
anyascii/_data/08f,sha256=PGSgAQTLlIf3AwiRIm2IYz-_-d24aYrd9hwHgPHN3KY,476
anyascii/_data/090,sha256=WGXJRsVo0QmB7OQJhyePcG0WxgRFb85qhtnchzXJr20,491
anyascii/_data/091,sha256=GKFQex73d2ba9noF7C9LE0HzPidvg9MF_IJr9GSI6-k,482
anyascii/_data/092,sha256=9uRkRBLG3_p4thJRP8gBMOO5yERlO1puFtOXAm0-48M,497
anyascii/_data/093,sha256=VMxl8XoLgkFRDwOYXxb5uxYxqmHR04V8qCoMo-uuuqQ,507
anyascii/_data/094,sha256=jHUzP2Sk9fQ7WpxiPZJTNuOVhDA6jrpVlytse7O4Yec,507
anyascii/_data/095,sha256=PIF0_12y5kFlGU4_Td_eSrJuja-Jl-hEOuOO-8SrhCI,494
anyascii/_data/096,sha256=FvUNNBZgFkJ66EnN44AhEJpj2SScCDNfIsMic-p1BHg,466
anyascii/_data/097,sha256=j0VGHwLiLyiKoHj_DJSmnz2M4l28SkzDtumNpI6x9WI,470
anyascii/_data/098,sha256=VuodVEwyTZgdOY6cnbQMuDedyJjckAa3qkrI0JGAo-A,459
anyascii/_data/099,sha256=s6pZmUU-7wWvH3mrWrACmtj1-jvZSrLtl-1TWTndT9M,483
anyascii/_data/09a,sha256=ScPVYDpSS_QBy0HWB01rToWpNUBpVzXtcs4Z64b4rf4,476
anyascii/_data/09b,sha256=TlFku37jiG53Z9mLC2TMKsVzgXsw1BvBDygfFlu01bw,478
anyascii/_data/09c,sha256=BeQbJRmeoHPtT9GACXGOQ-BIGy0vg8ODpoQVLy4jc5M,484
anyascii/_data/09d,sha256=qUuZjdNGAD8W0BfSp4CN_3XR4JlljTuyZx5cK2kjzMk,464
anyascii/_data/09e,sha256=VtV0qC7zM0-LxGfqEuuSVk7wRQ1z8h50Y3hdsHYbGu0,467
anyascii/_data/09f,sha256=RtqT4wmVwcCeE2YkGR_375MeuCZRV78rm39qcbFy7og,418
anyascii/_data/0a0,sha256=AkByVNVq2bor75-2IvthlGD13jtb6ctYiOgtC4PfbUo,428
anyascii/_data/0a1,sha256=hilWwVCK0dXRADiO6BUVtf50cYNRXhS8BaYfcvagx9s,419
anyascii/_data/0a2,sha256=aMczO9Zp8XHNccjw8L0J4TJ1ebfZ8JeUxOo3E1x38Sk,421
anyascii/_data/0a3,sha256=-qe6kgzaain8gsXbj_5gLof6vyMtIL3aWDVu9pnOQLE,426
anyascii/_data/0a4,sha256=bOBQ_8MHo2qV10AFEE6MEvH_f8AqBW8uQ0ns_NaoXCE,486
anyascii/_data/0a5,sha256=ZJKCkLFhB-a80S9j5qb0r25MDguFMT1ssmEqgjm0cfU,294
anyascii/_data/0a6,sha256=r8D53UUsyKa_3ddxYYP246GWYPilYRbrzR_OUTPed6I,403
anyascii/_data/0a7,sha256=zJ9hi8xNRpQaxJYR59wavCXmu-UFi_mhIbjd60fBSE4,309
anyascii/_data/0a8,sha256=bAyZV3PsnHyADXP4gNDNqVD6ek0iXvlmluLs9SDk164,245
anyascii/_data/0a9,sha256=Us3e29x5xrs7DMT9mVrFEmC7wvRGBNZb86EOuDEftP4,304
anyascii/_data/0aa,sha256=wpeRd3Fza-Wsdezz7cha9c6pJVBPydaTgV5ihgWrEfM,261
anyascii/_data/0ab,sha256=joTEGso0qEi2yL23EpaAQuwf1cBqOZ9Sp1KpuZbu4GE,347
anyascii/_data/0ac,sha256=OoagHk0sUlZ2M6EIVlptBmdnPjjXszMoltFzuLa8xiU,446
anyascii/_data/0ad,sha256=At9ec3Qc1HNs-9n8VqVzfIjs-RY-79C4m79W4GcDX9I,468
anyascii/_data/0ae,sha256=KUbex7zyuG0XIf_iFYbpvOLkUUu0wihuD5jARjt9epk,448
anyascii/_data/0af,sha256=2HH-ZzmQlOjzSiYZAb90TCx6E0qViDRg3S032iwC1zY,484
anyascii/_data/0b0,sha256=BMZ9PwGSdKC2ZJhhAh9hZW0ZtbVNXjdQF6LwbQ1_Az0,461
anyascii/_data/0b1,sha256=tbstrOE9NB88Nt1AQ3K2Zq73yugGGFjduzE9C5uC-do,445
anyascii/_data/0b2,sha256=R3oqx-jmMM97_0fOrOHuemKx4e5dXuIWsz5_0jTAEjk,451
anyascii/_data/0b3,sha256=Wllk4bMQsLwFy12mbNuAzog_bNfdgKgoXaCd_Z6faVM,459
anyascii/_data/0b4,sha256=BtrihtCVfWtBv8IR2NsRn6bfOgmq10Ngas62w0TlaSI,475
anyascii/_data/0b5,sha256=T-tLRs9JIExrb7j_n86P3pT3XLkYE9ZCi0GBaHNeaeg,471
anyascii/_data/0b6,sha256=TIRxghX104Bfx2BbdDEe4BeiCsZm5lcDrROM5zovhYM,487
anyascii/_data/0b7,sha256=pd1VrXHfigIOFttGrz4lSO1Hg1TfewEcAlh_pIVu0wc,449
anyascii/_data/0b8,sha256=FGY07OKznhXLCqyOcIFvGqUNhQbowHFEmDTh19lBGzA,449
anyascii/_data/0b9,sha256=R3hHdfes9lNo2izY7ouBV85hDOpk-X_QzXimSWUrmhA,428
anyascii/_data/0ba,sha256=qKSHSbwXjJwuYAzZ9s9v4_Dmxux4YxTFG5rWImNyGjw,458
anyascii/_data/0bb,sha256=8pKT3BZ9CjRvc5-R_KMzyDyYBaO2Ev777HegXuk_vdk,467
anyascii/_data/0bc,sha256=zT1eVeTEdhwtUfqR58V8saG12ajp1qYSDAW8ZEA-2RQ,455
anyascii/_data/0bd,sha256=gg0oDBukPbb8aqWigXGyPivvmM8xQBAgoJz1M8mYRFA,473
anyascii/_data/0be,sha256=eKQFYR91cIx1-nTSjIgmo4wZwIjxt-T9CkLIVYRgf5k,446
anyascii/_data/0bf,sha256=nMwf4-aHBpMo1k5NMffW8dGZUB_UrujTs-mGv2xjQKg,475
anyascii/_data/0c0,sha256=flnGet6nbo_ySECyIMYb7EqCBidpXPQG56GefuJxSnU,463
anyascii/_data/0c1,sha256=KiUaU0u9CH866RC1g-oAF6PAD-h3Ap4ikTqum4Mf1_Y,455
anyascii/_data/0c2,sha256=-OE1-kt-WltORKKoI24mJn6OejcsjhzKRfxFfhSygx4,452
anyascii/_data/0c3,sha256=YRw6_ZXdTH8t_d9hX4FGS5baKalaaBhetLW2adc9Xy8,469
anyascii/_data/0c4,sha256=FWsO4MGo2V5VJh6iXs3MolyU3i0C59sFrk-3fu_GZHk,489
anyascii/_data/0c5,sha256=LXxPx8bPc60PMN8DtRBd4eXGLounNNpFDf_nwfE4ILQ,441
anyascii/_data/0c6,sha256=M4YjhtwSFF8-ryKN4ka5iS_rFqDbjKSAFiABkhgjeoE,463
anyascii/_data/0c7,sha256=jv-O9okyUF0BMajnx00BBNayr6hEP_SlswLIdzICa-0,469
anyascii/_data/0c8,sha256=v7bKDcZaA7GcBmqVa_AL0jMZJU8IcPUFNRXm9qUaAVw,444
anyascii/_data/0c9,sha256=TUKjGx4MXg7Ln22Il0CAxyTXESJSjXnjf-5Q8-E4DjA,435
anyascii/_data/0ca,sha256=yPSzd4-MqfQGrlOKOxvPyv64ahUSSGtI53GtCdNqgY0,471
anyascii/_data/0cb,sha256=Vf_Z3j7y47fFs02lWB5ikM_ELRoruAWo4EiZXZOLnq8,488
anyascii/_data/0cc,sha256=8YfuIEINTC_3_yLLwRkNT2nAg-5L_2vkn6XWJuI7GFg,471
anyascii/_data/0cd,sha256=vw86eDZM1jPPTtxOytpylfcAf9rXN3dUSZqadL1VlpE,490
anyascii/_data/0ce,sha256=u_nsuCSQUYDaI39VYVOhov_GEj3zm1ehlJJRvAlFdww,447
anyascii/_data/0cf,sha256=1ln2bqUAFbWRgKhPkz5CzBVCzFiOEh15rvVFQaHR9JI,449
anyascii/_data/0d0,sha256=art_lm5ZRTGdQMcMNdMzH_zdwaDP7Gj7fuMyIQGLLMM,435
anyascii/_data/0d1,sha256=2Zufgay5rBxaYQlvDOjjoCz9UJr4Eg00F2trUDar_z4,455
anyascii/_data/0d2,sha256=ksbiK_nTWqXRrlLXoBXu-kTeyNMirRhYdokeeXKDyPE,461
anyascii/_data/0d3,sha256=_-7-XH3L1tADkft_xxbx0wzRGj6E9M9FpQmmSORKTMw,452
anyascii/_data/0d4,sha256=o7qFFoNsOyBOconOptF0SWTkIFUeveQLOqiAv0u7YNQ,472
anyascii/_data/0d5,sha256=A_kHGYXyBRqJfiNZcsW-RSG23PZ_3d5e11dyvl_8y18,427
anyascii/_data/0d6,sha256=H-8j98GmSD290oMbMqjYwYDevcLNM7VkYUFrZf1keyw,455
anyascii/_data/0d7,sha256=qB5jyxtICDtzx4c15JL0f6uXxsiahxXeaeHRzOiql-k,441
anyascii/_data/0f9,sha256=ldGXuL8uCPObeaiQz4bhOkQWylCsdFbBplgyOO3vCBU,223
anyascii/_data/0fa,sha256=WizFBn2UdT3b55qqeV-TFjhVzmyD1mdsj7m1hSanuJI,418
anyascii/_data/0fb,sha256=7yh45HuarqjZ1wwVpv82BelLr8yo-C0sKFfi2TjTr0A,188
anyascii/_data/0fc,sha256=v6wPpSMnCW0TvV_Vd6_KctTy2IPjj5aIPEmRkSCQiDQ,326
anyascii/_data/0fd,sha256=zMFVa1TElHtHh7HhkprNkQhvr6YtNvzN-PdywQZHi6U,388
anyascii/_data/0fe,sha256=vIkWOYbVVNfPl-eHgF1c8zS7Yp161a0Pu52IOn6or-E,189
anyascii/_data/0ff,sha256=7TvDWRmADC42EWVfP5ZpwpHJ-iyyvzQOTA1EdJeso9E,359
anyascii/_data/100,sha256=LoWQ59OH7Iw0UNHlUR9zxwyOfCztt2bFuCSkYq4tR9Y,453
anyascii/_data/101,sha256=9m9vN-Qc9HTrj5sCXBADwevSaoX23FNafLDw-_e1xyI,289
anyascii/_data/102,sha256=HE_XlzNF2WngeoeOnonl-tMuEcESmNBbeRqI-GYEYjU,151
anyascii/_data/103,sha256=EODL1Kcn0qLc41v9BeDGOokZsAskwS2bOr3VW9WBMCc,266
anyascii/_data/104,sha256=e9lge2ST70Pub1-AilO9iDTEoBCHxCJKcc0pZDGBvtM,337
anyascii/_data/105,sha256=WE8H6ItfF1Axb2gjRkhKndf_1CDWKpQ6rHXvX0n00TA,215
anyascii/_data/106,sha256=S04ZhlCPmf1-GGv82ozVh5hT3Ia8UhYiZc-qSExYahc,507
anyascii/_data/107,sha256=GQWlfYmWrCwPZyT10y9E-RhpHxN-VJEMGK4928Rj1oc,275
anyascii/_data/108,sha256=XS0pUnc-TAT2bSKUzGdBH894B-k-XyjBUg1sB5ZOou0,205
anyascii/_data/109,sha256=byNIZLK8COd_FR9kxXuGY4l7XlNTY__0x1UFjtew2XM,235
anyascii/_data/10a,sha256=JznKIsdCeKJ11nLlRHpiB7WRnXIlo2ZWd5oSbifFXGE,212
anyascii/_data/10b,sha256=Z5awuRuAMCiwWKET4SaBJQsKFqJRNQx3UQ0hawQz6Zc,145
anyascii/_data/10c,sha256=3Re-wNXn3loU07gQ4UwpBL6Crk0LD1pqdXzYtUD_KHU,214
anyascii/_data/10d,sha256=C0nDcbG9HLXiYNi9o_8cu0b3ugHXPb_yJVG_sW7FMbU,75
anyascii/_data/10e,sha256=dRL4QdlHoY4wXPzSQ7nCcM9QoDVwgs6gq8RVaQ0q7sk,128
anyascii/_data/10f,sha256=zY1DbX8KEqWjFvVV0Z8ogEfOs1dUatAtv7NgLJ1rhAQ,154
anyascii/_data/110,sha256=e348py-4iHPCJGrJ0SQQPOmb8JqzRaXPvlenyN_W-Gk,199
anyascii/_data/111,sha256=-nxdQV-nZEzVCfM9pLFsrghC8DGNNXJQzZZJJoqy66Y,204
anyascii/_data/112,sha256=Q4VYpFrhSgaJ1BHm5njwqjx9ndXlCpy9WeVs81RUDqk,148
anyascii/_data/113,sha256=KxAMPQgpDMXvVI50xqGHbR8Ws1dQB-7iOigBUc2szwI,119
anyascii/_data/114,sha256=nZIFJb75tJFDFwuRFA5p_Izq15RRrtSChdPG6Tnw6eI,158
anyascii/_data/115,sha256=7Yy0gej4-AnWnvFurjpcnXeZDlWMTfRL5qA87z4DePM,96
anyascii/_data/116,sha256=Y1AMBlp8PgH1LGCs8IvUgaoywJ0tb10WrFxfXyRHEfQ,130
anyascii/_data/117,sha256=VJkpKzU91s5YuWJzXtRHbMSxXou2Avfv4VIubD534r0,102
anyascii/_data/118,sha256=6UVYyzN7e55vmZ42-uTv-F24HKmnwWxKAYVwP_AKO-A,196
anyascii/_data/119,sha256=oOyf9qSCd-Eqrftm1TuQjvAWAdKYgm7x18F78Uirbdk,140
anyascii/_data/11a,sha256=gB3t77FGpZhpqakozRMcEJa0IUhxQR1Qgo_INE5vGYg,228
anyascii/_data/11b,sha256=-GNdfwmn2oBqVTwxtC-QjHZKeuOvuubP6nrJaICGHxw,18
anyascii/_data/11c,sha256=sCqllTbXFHQMzgIzc1tK4iNVzAMePF1IoS31xpihHsg,169
anyascii/_data/11d,sha256=EL5RiqCiqVmGBaYToPfEU-LC8MvPVUxXCSG-nSLgZ20,148
anyascii/_data/11e,sha256=9SijBj00sUYe8N5pzoIEkZr7xRxBw1l3md5NcDJuG_s,48
anyascii/_data/11f,sha256=4ka8MA7YtAgRd54PNM-VyTFMf4mpMzwj67gO0Jj9AFI,197
anyascii/_data/124,sha256=hzD4Ui7rKHDRsE3LStS2_1iCwwaP_5gY0G0cJuKeItQ,95
anyascii/_data/12f,sha256=rL2PgE9B_KPS5KY0D1trXsY2NnLdLq8Du_alDpwp-7Q,159
anyascii/_data/130,sha256=qH55n4syajEIYQ2DrkGSDMpulhAp6qy3d8gfUuPYj5Q,548
anyascii/_data/131,sha256=sZAPmQXGVn99Hz4CSrMla0LcGHNFthDjDDnkVMOTDWk,572
anyascii/_data/132,sha256=UsOJ__JffPZ0B60w9YAzAWJqzDuXqzXuZRLjPRyMu68,579
anyascii/_data/133,sha256=yF_HKfsit1XaVNVVFKJ-DlSqs0PkLX733JFmyjTClTo,550
anyascii/_data/134,sha256=hGrOsUUr9-Q_dsha0ZljBXWiHvky714S67X5N125zK4,135
anyascii/_data/144,sha256=e54l1ceRwV8uSEkQqXbM0Vd4qDQ4QihpG39MSZ4NgSg,445
anyascii/_data/145,sha256=3AF6At_hwtIViOGBhkj0g9QIZDG3a2NJH7N7pO0f1_k,424
anyascii/_data/146,sha256=AYdP3KcJThemZ_-5BGOcEtMZTvTQCv-dsW3VS7OExNw,115
anyascii/_data/16a,sha256=3O0dSMuvpA4JHab8ROjemhJOkpA6hk4cGjCiSkumfKE,257
anyascii/_data/16b,sha256=3pIikzIKvG2QRThmj_IKLdeTbpNwAWAc1HCoUiKapOI,283
anyascii/_data/16e,sha256=IVJCar53TeAcccfXbzLMcAh0iIE8EZEfBwoJ-uJc5Z4,156
anyascii/_data/16f,sha256=aczAT5xKCeTxsX04nd5Ca-WFavFvVqVIKx9GdFEOeo0,196
anyascii/_data/170,sha256=-bF-vMdwvY1qRI64xGIGW-XiFgdMfy9QHnPCpO719TQ,454
anyascii/_data/171,sha256=IyPDdywh1qDV4PUBoDSUZNaLBxvPu76qgshlHVFvq-E,460
anyascii/_data/172,sha256=jg1O5k0HVb4k6drpXh35tsa7q1TAnEkt1mWs8VTK64M,482
anyascii/_data/173,sha256=2VVCaq7VVJk8vwBkaYlxDchiczpiWcF9Irq7ks4vETA,458
anyascii/_data/174,sha256=Qgmby-ygRD3dKLC6-gi7RbQWm3VOg2UOKrdMYFpKDJ8,473
anyascii/_data/175,sha256=OuvZf3f3YxNoAml3oySdTPL8GJif4EofM9yJNVmlWcs,465
anyascii/_data/176,sha256=EOuPdAwjiAB82knzcToxyYPeLn9ovLuM1McZYlKQDAI,479
anyascii/_data/177,sha256=s3VhD0zqglGpAY1qTQuaVlwTyRev28tz2z1go0VTubU,471
anyascii/_data/178,sha256=9Aa2fB2lI-ZgpQFmhH6_lkFncogqZofrh1YoxJTMAVs,466
anyascii/_data/179,sha256=EjOHsTIFk_XTKRsGIwqwv1LKG98OkNwZztaLtMq5DAs,474
anyascii/_data/17a,sha256=mXr0MzrJ2c3iv2Vd7sad1nIk5IciqEjnxStyc6pU_5I,478
anyascii/_data/17b,sha256=tzNHBog1tLJ9Vx_Owt8Halgv7d6S6d9Z1vwhrFFWuXU,459
anyascii/_data/17c,sha256=71TxD1xKeoCvPpB8L-xRCmGkCEl-zqQdVWGBJoT0RjY,465
anyascii/_data/17d,sha256=sFMfLkVGVklCiEEFcyOHJB5RjRq_WLPR09rl9MwG2rU,462
anyascii/_data/17e,sha256=4cKosRATh51wI-J7W2WGO0s1fblxISaobdROo7kEeXo,476
anyascii/_data/17f,sha256=XCwpzzMjiO-B7TjbeIEwLf0Ci2IzKoH8KLUS_O7Mrxk,480
anyascii/_data/180,sha256=PzfnvpmKR77erxU9ppodTPmoQskO7H8dc4ORCxCBGrI,455
anyascii/_data/181,sha256=dOnSBJiYcSfsB9Z0YxW5rtcW3ChOIQlpzFLaMzhg-ig,465
anyascii/_data/182,sha256=CCb0U8wifI_jhHH5Hd12-Cma2mm5Y6GIlVcYEWBYvQc,469
anyascii/_data/183,sha256=M4IOPulVsFV4x9lTP9Npe-4hNEN01hXweiNEvG-Ihws,474
anyascii/_data/184,sha256=yqGX5cwAxq9lp1xBSlDaN9IvvmAvlDQKpCUun8yxgo0,456
anyascii/_data/185,sha256=yShK8nNNwLXGGPH4jHetFqpdIoDT6HU34wo4Mc1Ix28,455
anyascii/_data/186,sha256=OXapmcGsVonWTv75hopbiXHdQxe-PVd8KBi8ZdX_M78,450
anyascii/_data/187,sha256=wnivnPhLYfwFeqIw2xt17Bd7gcKnmyppn8WcTnOuS_k,454
anyascii/_data/188,sha256=Z-gRVbb7H0snerSC4SkA5SHsJJ9jugVLK-H2S1RWy0I,439
anyascii/_data/189,sha256=CvQ2WevkcJ3PmEe5ThYQSJjt3WOmbD1M3xa12ayzevg,397
anyascii/_data/18a,sha256=Jmk8B6gZ21qaVaHDy7LoKrdUXkjZEE0A6uU63Z0LhnM,395
anyascii/_data/18b,sha256=g-1KXF1a5BV0-xSLLeUilImzOCe2C1cDgmlG1VwNVUA,440
anyascii/_data/18c,sha256=HjgVx4vHBJjhK7RUFQcXPbxUbQO7FxIJjKc26Z2Nt08,380
anyascii/_data/18d,sha256=ALitCwi7akleRECScWbc9FVSmou1SE82GRBOjNirHCc,28
anyascii/_data/1b0,sha256=uJ9VuEIyMEUf_No_0mGsel-HBVKgKGCL2YYUHJxstAk,104
anyascii/_data/1b1,sha256=ZsycUCkWloM85bgA7AAqc1YaPpZZ8s2MgXnRdbWwZxU,317
anyascii/_data/1b2,sha256=2TkgK4nQuLBtwP03kskumGLu_Qi93bfbCKG4dJf6MWI,436
anyascii/_data/1bc,sha256=vVdjJ1I8MBvm3vX_0XuuuYO8XmZWi5ZlCQDcyO4msv8,193
anyascii/_data/1cf,sha256=wtgJdO8ImSCApvR4rruC8DgJNujAi_we2AK_1EAdOy4,9
anyascii/_data/1d0,sha256=ThiFM_ChF8f-UyE9hqZuMJcm0QLJZG6Jm4P5lxgi-nU,9
anyascii/_data/1d1,sha256=xKUZH43i1Xggjy7Re2nSJGZbzBy9rvzBrl7cC6c2dBY,174
anyascii/_data/1d2,sha256=ArWGgyD40ILmO81ma-l6DX9CPB-CWAoweGh4F-KAkkk,108
anyascii/_data/1d3,sha256=gVJoEquFKY6f62bP8dJhf7yFMWsETBH52QE9fd6GT08,224
anyascii/_data/1d4,sha256=aOjtffDVQavSa4ktCTNH4Zz-oxD-HT1CLouCTtI3dO0,104
anyascii/_data/1d5,sha256=Gcam8asemOKN3kRQxKoL8jMBVFM7hYOpR_p5vxdz0Tg,99
anyascii/_data/1d6,sha256=hNlJjbIzCLiGem70aRXbHxXBQbL53phfCpXzlpPMoXs,150
anyascii/_data/1d7,sha256=nJ1XxBv3eXJkqCGA6lEwtOKy1FsCh81KYgkQxY1Cr-M,128
anyascii/_data/1df,sha256=MWMWjtA5lHEolxq6s587lWU1aOp5OofIoUBd8nqQZIY,62
anyascii/_data/1e0,sha256=Y9H5ssesbJOfDiy1oK3iQVq2tVLVlR9j3Ck8Zw9M0eA,118
anyascii/_data/1e1,sha256=mLa9R3ggQu8xQGd-MWmcgp0qePXkcwagoKhps3cYtk8,114
anyascii/_data/1e2,sha256=YS7uBtSUJokTaKQwI4_HSo8_fnkg9dJlomYALNLYXY8,146
anyascii/_data/1e4,sha256=cfGKSlPaalXOrNM_J7X1JWTEueRJdbfy7Ww4X68iiTU,70
anyascii/_data/1e7,sha256=46i3FKvqOolfW9CqH5IKsALDDRekHCG7OGbYrbMnXkE,67
anyascii/_data/1e8,sha256=8saWnOCTnqDkhlVIX88CvdD6Mq5_FIe-pc2wVhyz06Q,316
anyascii/_data/1e9,sha256=1b1yiKD4ETQsL_BtinWcBkWojzE5JYcezMeRmprEeMk,136
anyascii/_data/1ec,sha256=IquR6c2OQ-UBRnTYFEnA4tSEj8fh0uTDaseSoQ3r5KY,113
anyascii/_data/1ed,sha256=DPfLJ-T26qF2ghOQuL6oMv0FyxacmPHZlAzwE3oPJmg,91
anyascii/_data/1ee,sha256=6IuwZAYl18ED73VT3g5UdyTnn5ZmfdCg5a6oFGAdP-E,114
anyascii/_data/1f0,sha256=Q4Vd8eZNZ8OgFcDos7SghfPhinaXtVid3kZY0vwVpII,308
anyascii/_data/1f1,sha256=3TJquGEpTUYHjkbgsXCsQkmAU630wVol7Zjn8CfvP1A,320
anyascii/_data/1f2,sha256=QmACzUP-jN1IRKrrn9N_UiRLLn3QAfVj5EZ_kLATLK4,184
anyascii/_data/1f3,sha256=ZhN1yyQDEEZnuGFI2wUAd8GWzxPJGQEvvHRyJXP4MQY,1383
anyascii/_data/1f4,sha256=_kZric7-yQG_kA84y8OOTcXyv0trCzy-3X-ajdVHC0M,1337
anyascii/_data/1f5,sha256=jJpBOO-003stKVKedRWefMQNRGZRRZMWJQHpZZfmO4w,836
anyascii/_data/1f6,sha256=XpYz0x3Xo8a3NfHk-jh_iKGWN_lcDmd0AdZVsmH12mA,1106
anyascii/_data/1f7,sha256=RVZfxHzodI0N52EfDR9keABQxILQc5X4UimbYbom-Zc,190
anyascii/_data/1f8,sha256=fn5SEoeDiTICporVXvBrhXDQhmP-4gbq-tUnlJMNY6k,50
anyascii/_data/1f9,sha256=TPR5uC_rXeZleUSdWIjzsUCJiMXC3nJoF4W05alqx3Q,1389
anyascii/_data/1fa,sha256=L18Q58sfqSik0TXfIs1a8U-iIWddm0wRbWR8_6efcCo,787
anyascii/_data/1fb,sha256=_55lmMOWLQky0bComEhZ1bL7MPb6WckHAHWP9woPKXg,80
anyascii/_data/200,sha256=FwMABJ_niDxJ52Tn7VNMsNV8knx0i-lUc4oEnBB3iIo,278
anyascii/_data/201,sha256=9iICbxbGWTEwaFrZbXCeKe44zcuA-gHMpWzKIgYdNaE,248
anyascii/_data/202,sha256=SCauYLSXr6CdzHbAHSsx2zzViarQiC7l4skoyvY--xc,269
anyascii/_data/203,sha256=5Q7jdDGdWJl18gxyiLBRMg0SIopW5XRR4v2tq1sMae4,278
anyascii/_data/204,sha256=WKCrSqcndDR7HBfdkWEBe86Bbdmb_XoSDK81Z5zA0mU,313
anyascii/_data/205,sha256=HXdcSLMpwSosn5-0ebbZUbDFk8De9BvWPaEoUGF3ZPo,292
anyascii/_data/206,sha256=Uv8Ne4xBEVPp1bYBlS8v-6DIX38zLHs1gL9vH-eqQWg,290
anyascii/_data/207,sha256=3ZRd3AeeV4-2VbPCQqcmZdrGfUTFQZMtMM-ziz3bhiM,308
anyascii/_data/208,sha256=CQRl-PkNf1N3xOWdTISHnzVDEK6xtSlrd6qchdJaeas,303
anyascii/_data/209,sha256=kuVKOku7c3iXVfQGuZYYatbeK5DThcJxZXJaf-tPpSs,268
anyascii/_data/20a,sha256=GvDQQOkQhAFdXUIrBulP5zKzmTzc4-NjjiIQj1_5nFw,259
anyascii/_data/20b,sha256=WZ6_TI2pM3RHNh4NhtY7OZ6xIB8rRbMYwMIvpXct1-4,268
anyascii/_data/20c,sha256=_mvRJw-_AVTzbHV9XoI2bh-doevFX2K2TzjtlOfqWGc,378
anyascii/_data/20d,sha256=uZOjjpzl1bL-NmtQ5f66UmlajGP6dsja5F-1Wc9R1uo,419
anyascii/_data/20e,sha256=6XJGM8MtN8-S2jvi6z8nOyNACMQ6jQpOxacTg1xpEhs,445
anyascii/_data/20f,sha256=QpL_EZ5Cic6NDzlScXf66y9q9JchRBkhPCeMkd_e-i4,425
anyascii/_data/210,sha256=esraODhXSvZy1B5pXhnhjaPDESc5Ee5wSHXmpRRmVuM,442
anyascii/_data/211,sha256=cF5G2X7ymwm2MRYRdrjTEe4hnZrv7J4oKXqtZY_zLsk,385
anyascii/_data/212,sha256=-PuBpmAm80kmDGNUfu2t7mOC99WpLX-Kah_s-l4Dgiw,307
anyascii/_data/213,sha256=FKFfaH_GjjFjRBNfKpHjSuKHkIG4JkhaAAxNjzPIYec,301
anyascii/_data/214,sha256=7Y_QFlv5EkSy-miUAkiJedNoJl-maU9kK4XPH8tXi3g,318
anyascii/_data/215,sha256=VEq4VlSvZGCyO5qqhR-UwC3J3Cfu23JntFg5bySZSFI,268
anyascii/_data/216,sha256=wY-BuHZGx4lq-313RAdIB6eTYKjRtrI-eqG6rnnAZQs,269
anyascii/_data/217,sha256=kpYPKCQCfwU7QuzGO0o1Xu5gHgV3NaFwsjaIY7chm-g,307
anyascii/_data/218,sha256=iyAOqPHMOyC_vl9udp_I8qjwD8fpq3dX6qcos7dV-PM,294
anyascii/_data/219,sha256=UlLIxgM0Lt4V98FB0gI5009p7PsI09DtyF3uXHpN9xA,282
anyascii/_data/21a,sha256=WAk6sXMfaM1OF8UXalud7XvRMVts0adMI7pIwUoTmbE,225
anyascii/_data/21b,sha256=gLUI3EeIE6leL0fjdwlcA7RQt-Z7vOXLjfvwiZiEMiY,342
anyascii/_data/21c,sha256=kv4M9N7xHtndsFK4Jc7WyAGrZA39P9CPIFhE2rtZ4FM,280
anyascii/_data/21d,sha256=efwpWihKc63FoL379FenYMzQV0FrppkKtPMJCxILQL4,260
anyascii/_data/21e,sha256=y2a8EExK0QVAqsSPqHGqzELXdEOBJ_BYY8lstk5ybLk,303
anyascii/_data/21f,sha256=i-FZp9UkLAcoKbHM1g4XwUjvjORgDGg79DK4bc8U_dQ,293
anyascii/_data/220,sha256=DtZE8WIHhcjNJOZCMqYJAoyBXw-HmMOWtfvGlhe-Okg,312
anyascii/_data/221,sha256=7mzhXFskmOHHYEcoecJlTNowSi5l2E7gG0wJIDiUbqY,350
anyascii/_data/222,sha256=NcFZhJn808_e5z9TzvKG6R1pBKUBaHZ2dfHA9Jfq748,283
anyascii/_data/223,sha256=FVKMvrwVECJBGKvvvlnvawyw3EPJSC7rEVnwAzwKUpM,261
anyascii/_data/224,sha256=tOlTvnaM2piaoUY32xHKiTZRUrf9rE5H5X7zDB4ZlP0,263
anyascii/_data/225,sha256=jnct1Yx4P7On79hm6RidBMWsMzNvOuoqaG_nzhrwo7s,303
anyascii/_data/226,sha256=n_9Onhyv_8EIorcnG3NS4AlP4yWu1DI4wdm0d6414lo,298
anyascii/_data/227,sha256=MJIPm3Z56cmVNBCIQqZX5yljmPa8ek6pudjEeuzOEyk,329
anyascii/_data/228,sha256=UkyXebZjriWY_Eet1n6ebwVymiKlFnrVBPsjqcTaxwM,317
anyascii/_data/229,sha256=t0Z22BILweerHI4PKotNERUCKIPh8n6f7PxxjDLspG8,294
anyascii/_data/22a,sha256=gZUkz4fo0oNI5LmrM1KNEL91tI95F4Nbyv1siGXxD_0,357
anyascii/_data/22b,sha256=guuYjdq7Si7YF8-1m4arnh9Uz9h5sGjf1D4flgmkqwA,374
anyascii/_data/22c,sha256=MS1uxOeGKuUJFlrfAWF_2pzkmu6A9XHqFQDjmFv3Ykw,310
anyascii/_data/22d,sha256=Gst9584ZstW3tynAN50cMv-yxZuzaB04Om1vl00NaEg,395
anyascii/_data/22e,sha256=5iZ-z31pbkCKiaiTK5csg7m8X3490bZm8NtkMMqiYwY,344
anyascii/_data/22f,sha256=uy_jqXLff84QIs1k26AfCXYEpWtyKNL-8wO8tqpcic8,257
anyascii/_data/230,sha256=I2eZ9dDUdsc0GKHpCkV0zThW7GkHZG8W3P8HZ5l1lkY,263
anyascii/_data/231,sha256=mmypg9QCKTHvBFYWUejVLJ7uO-yU1h3KguYi3NAgPng,302
anyascii/_data/232,sha256=DynYiPzmIv_gm-AEtq0ABzopkEo0g387n8Zdl3eSm-s,348
anyascii/_data/233,sha256=tRC1CEBlDfAy-XPGr_g85UMcEtvgOXBWsu7pPhiTzIE,313
anyascii/_data/234,sha256=jFdKKxaPtDT3XS9K3jDIG2huEtDtZ8erbKOwNVKfbDE,273
anyascii/_data/235,sha256=mGzH6I2hFlQqRmAwDlCshrXyeJOuuUUIoBt48PMgsHI,315
anyascii/_data/236,sha256=-_3d4FCICVJO35NoTujD3DMl2V_3VsLuiMo6wzh1k5g,342
anyascii/_data/237,sha256=uhNqveQt6JtERhcdO7cah9yuafU03ob4XEjOUaQBd9g,329
anyascii/_data/238,sha256=VukyiLEVXR4K0nBSLO35qAsfNIOjDoi7L9XcBk-aJSg,303
anyascii/_data/239,sha256=BOW6gBam6ox7HRgRDWmiL-IQV-V2g3-9bQQkPh0FW_U,283
anyascii/_data/23a,sha256=MtWBARWwSYKCQeIUNEr6C1YG-AIn90amqO-uoKq2zeo,333
anyascii/_data/23b,sha256=UlpybiFj4INB2OFmjg6bO-8y9-nb2yka0lJ2_83nEs8,265
anyascii/_data/23c,sha256=7r0kvrXljF9cEOUd49RQkGIbbMSwmHxbzLTUg3dDT6A,303
anyascii/_data/23d,sha256=Dg4Jtbs13suRlvAH4jrMUNZBUconmKGjgUF1DiLjz0g,240
anyascii/_data/23e,sha256=DR0ldCXDe9DY2UGLmql2A2TL3P_T94QJSCA1woIHgeM,307
anyascii/_data/23f,sha256=EVjpF7ZzZIMKUMEH7rTM-RTSvyqXw-1P8FgpPmMIu3c,296
anyascii/_data/240,sha256=R-8lfFnv4AGlfh7W5rtd3_p9Om1XzHZZ1X7efyKfI-s,319
anyascii/_data/241,sha256=1I3G7gR3s977HPdamBjUZ6DjxJhs0jVewViL0uItQEo,316
anyascii/_data/242,sha256=h9hp4B8n3FZ5EgrXNl0Z0Z1Ux2_7WoxOmFFs7g4OFos,277
anyascii/_data/243,sha256=aqjTlxBxj7ihLn_q1iaP4MKOh48FHePVWHZ3_gsDGMk,290
anyascii/_data/244,sha256=scRp24hmYDBOV2kjUtuYhzJ3y1G_2gb_ePSv5YvdVt4,249
anyascii/_data/245,sha256=bDTLf5CL95Eu789eFYQqMJyP2Sk2UABar6-aoGEwrTU,286
anyascii/_data/246,sha256=YgE_YCMCdarBpdlDVbeORxjZqt61vGwdEfWB7dNm5pk,338
anyascii/_data/247,sha256=X2SKSCfnVbFRni_E_L7H6oXWdGmqBMk9E--XjBZvIv0,352
anyascii/_data/248,sha256=9S3Z3z4RroV0wm0QcZKKvdxH8LSaWkP7lk2gL3xkfRU,363
anyascii/_data/249,sha256=pbazZ7Ai_4h0OSIbUrspgJJ9W2GnJoVKAXLnOOVPxto,265
anyascii/_data/24a,sha256=o4BdHeoKpZNrUxqfyPAsL9Sy7LcEGNYpWvichrK8dg4,265
anyascii/_data/24b,sha256=TeEBAo_T5-3u0MH83OMv1wmqOxcMtBNczhuIiVBvpVc,313
anyascii/_data/24c,sha256=fyR_48DALuQ4MGKhXuEgnl3gGs5G0D7nf781oyDRiZg,278
anyascii/_data/24d,sha256=zrLwfH9q_8RZ6JT9A_BhmsePFdYzxSv2Anwf-Y-UIrM,366
anyascii/_data/24e,sha256=1pqPn8yS8vD08Sy3sbbF3MMwRaj33ISeYQRzPOT9epI,370
anyascii/_data/24f,sha256=2XMcWv19dtLHaPqiIDrzCkMucTrlk9jhKBl1QMYF6y0,348
anyascii/_data/250,sha256=8_Ur1K3FUUC4fGnmBrPuUiUBMSwGsCwtPMxFYjqS9js,285
anyascii/_data/251,sha256=n_7aoPCu8JJyEFT5dwC3QycjZhduv1NqO5ymZvwVZOs,370
anyascii/_data/252,sha256=OO7AL2WcxROL8ifh6ln4LqS-bo7V3iNJaMrQCAkd4Bs,401
anyascii/_data/253,sha256=LtKMIxSlECD1dfoe2rt3krwfu-HhNUqyCxvbfgPBBQ8,356
anyascii/_data/254,sha256=T6_N43asBeT_Uavim52NVDMdet54YpRq-TOvraX2Jw8,320
anyascii/_data/255,sha256=h19maLVu9BTyiPtgyiItTSa2n8WP9bCnpl6HITWIQZc,345
anyascii/_data/256,sha256=YHdEKAvY0fYzTou4N3AmQWDEx655inoKABlrEo8e7Uk,252
anyascii/_data/257,sha256=rpIqKXR2VKd87Xvaza597qXSolKSMLy0v6QuavC-4eY,285
anyascii/_data/258,sha256=Z7frM49nlsYc6si1KA34TMLQ11v5oRF-GZT1yVnXcjs,292
anyascii/_data/259,sha256=ypY-nLX24j1AKHS0Rg8CqPWJF3ZD_JAXeoWWXlPa9hU,278
anyascii/_data/25a,sha256=zoitsr-793Rw-IWRi6EAg2fG5cCiQY71ddcsijkVeDw,259
anyascii/_data/25b,sha256=MH1Uft1P5Lp6F3bO2mdcfsHzrlYTFrBHLwkuQburnhM,331
anyascii/_data/25c,sha256=qP5XKEgoeLFRPs2ovdA6dVSDFPsDqdeGDwT0N95EXfY,356
anyascii/_data/25d,sha256=gUeP0yfLGBP0RXAyle42RqMF6uWGYhivvFijK2ejeH8,326
anyascii/_data/25e,sha256=c-VAEgsCM6mUmTZOsBRomUftsp8OdUINZIcWeIaXwsA,344
anyascii/_data/25f,sha256=98kht7xcMzmdXV9pL9YDAhIOgpg-OvbeX5DzFioSdK8,321
anyascii/_data/260,sha256=bLcnjv15gX8yDiCJ02GIAEa5BYpY66ICLk1e0_Gg6t4,342
anyascii/_data/261,sha256=R0n5aeNode5y6XEFKeL_0I6Lu4RFfV6zjUIumHzETlM,307
anyascii/_data/262,sha256=_qqQfxFpQD-oDYEbWwc8S2RaXXcsDMUJi8l1InwwWJM,282
anyascii/_data/263,sha256=Y9G2GAVghIVipGVRe9UcmAC-hqGDQG6fZEWWwxDWftA,292
anyascii/_data/264,sha256=HYKeorLRfopc_bDh0izsZyESJJszm0qQu7vwfY6ywmo,315
anyascii/_data/265,sha256=v_E9XBkgTMZ4DkSDMxbT22Da8-Wd7lrASXu5q23QrQI,298
anyascii/_data/266,sha256=-xKDpm5h088juLozBl2VRiG_VfJpT160-mnYoYj01WA,303
anyascii/_data/267,sha256=HZI1IE0xlpO9rVjM8CGZeM-c7sBuaKdagggTyYE3WyM,380
anyascii/_data/268,sha256=DCShVMiQD__LMZyJajA0tGoNQysN57lS8dGAAc-wSw8,353
anyascii/_data/269,sha256=E-CpBTxrklf-NLPCCtlRlfh5kpDaP1VR2kROu44hdUg,299
anyascii/_data/26a,sha256=on1sr0SlNBW34oFjy_U7hkFuppOfQkm24_D1hF-Uc2U,329
anyascii/_data/26b,sha256=vnIeBfHMLcc-4tBRtAwvg76F2s0Tye8Ut-XvE7nx9yM,265
anyascii/_data/26c,sha256=iiO6xrRyln6223_lVcyeFUXdhc_qUT8vO2TUdBXj0m0,307
anyascii/_data/26d,sha256=KfIV3ukRZrY4HY_f-czZK9cKKO62v00vOnF7wjzBXZQ,279
anyascii/_data/26e,sha256=BR-njcMgvvlLcEUTizdUmn6Gfk5BO7UdkXsvjVeUHds,282
anyascii/_data/26f,sha256=XUBRnR-VXfTXGAvATaWoinCZjFDySO0BlNPOZP1gHc8,296
anyascii/_data/270,sha256=LWg48UxEDvf3S-0Nm-HYpy5_8hcUtTBQTPZky7GciXg,302
anyascii/_data/271,sha256=kNg6HoKhn4y7O9km8qdAl3QtWw1DBsPWTjh_zCDGc5k,278
anyascii/_data/272,sha256=LKYnink8lkNnZ8bphq4BjvBdSXdzKM9tWvZ6yLiXvog,348
anyascii/_data/273,sha256=Pzchy97Q2gRc7TkhSzSX7HEr_sJ65hWNitZVceMpGxM,347
anyascii/_data/274,sha256=AopabNsTkPkIMyTtuCH-Ej1Rs0e8PuH1LbhV1HL2jZk,328
anyascii/_data/275,sha256=ESLJMtY0NpD2oVeLaPkki-DltMPEdqHNi0czrKozlYM,314
anyascii/_data/276,sha256=pzFoYk5ji3eSfeC5red85cLdwiUKtrpr_zgNNTHOH50,295
anyascii/_data/277,sha256=IWswZYmiQWJG0IRKFWM-2ahUV9vJ11IU5691GGVr-8Y,306
anyascii/_data/278,sha256=389uUn9iYyGNFPQwr1_fueVVcFgG1paw3xh7_3U7wJc,312
anyascii/_data/279,sha256=PYQflNc0zSwzaXWRAUPklLu80b_0L2Dv3jCcRog_jfs,298
anyascii/_data/27a,sha256=0d-_MjkPTumtu8c3yFYkIgj0rHQdasfyIJe3nNITc7U,245
anyascii/_data/27b,sha256=S8LtE6dNq2ia_hKJ2rMpZ65sAd7nht13N2bvGXALwPs,298
anyascii/_data/27c,sha256=7wKa0f_SkKGB724i5KGwSDCwmeChn-9O0mxaVM7C2pc,336
anyascii/_data/27d,sha256=WTmCg9INvdlz6QhcY6pcJOrvMdLayf3z9URZd3IVp5o,290
anyascii/_data/27e,sha256=GgXczTMq3lt9vYhQOCMOTDFf7tgKO9bSnIgkVHUdPC0,322
anyascii/_data/27f,sha256=bk1bVN1DyqFpMQAlh4lpskO3VBjt60DIRhp0IddWeyw,351
anyascii/_data/280,sha256=65t936eDSpqo5FW3VvquMnoKKcoD7XcXem1eTV3jxXg,448
anyascii/_data/281,sha256=3HbocNT8onvb6qlIC3dd11I7Nz7z2M3odkZef8VdK6w,406
anyascii/_data/282,sha256=1V6VpXNyAOxfxOkYvheTxW4o0TOel-fybvQ_qVmn3Qo,314
anyascii/_data/283,sha256=M2-ooKWWXjka3IhN2tJB9uKS0UBHifNBfTRFbkCrrcM,314
anyascii/_data/284,sha256=71sN2IjbZqAtmkbNQeMg8wGzHqEqmv0-7pLms-NpeuE,313
anyascii/_data/285,sha256=9-INDO_s0o3qtxqy4-YRolp-z8HEJMyq0sQ2HgAVS3M,244
anyascii/_data/286,sha256=PxJammxU3R71TFdJoqRzWNPc957PdR7xOEDbuIYg0hg,299
anyascii/_data/287,sha256=EduaRq7TzVdGYyoNj2F-SbakHylWG5cluRvfQUNp1WM,264
anyascii/_data/288,sha256=32jPXRGLyo8AMqI1KV5E1xk9W6VlsAEmuW-KG2AGcvo,318
anyascii/_data/289,sha256=qX0ej0D5pntu61uqxkqdubwl-I9P5NhkhBEx4A84pWE,311
anyascii/_data/28a,sha256=3eArVHNvcnvGDBkfQNuTbVbG_iMYLnAg8XsnIF2_70Q,319
anyascii/_data/28b,sha256=iltxTmOpwk7OGQeUNE41U3rRcLkP5jBi2oYQFEs0tdw,290
anyascii/_data/28c,sha256=2Ojz5g71k0stncSuKJ5hacIY86udxCuURJD_TKfcxUY,358
anyascii/_data/28d,sha256=qH7mG2pAUt32XfZMYD0rXkBvsMifjTRsRbJ889h-4vU,325
anyascii/_data/28e,sha256=HxD53sr6OJ5ruuuTBrUUnPzbR9Sv-RDnifTwOYHjfI0,328
anyascii/_data/28f,sha256=kZWpQ0mrirsplkSAZ4H7tsJdCnHWt5XepAbmRWbbYpE,231
anyascii/_data/290,sha256=M7XfPZ_EQwQ23X0hJSOMZjcyIpQS2jc6ltKw-8GI8PY,282
anyascii/_data/291,sha256=c8WfyvuRrwItcMh8ijnUfQ2q67VgRgwa8uah0D24GjE,365
anyascii/_data/292,sha256=UifVl98tex4ADTuX-uCM7jvTepj1VIC70p4TYoq85mQ,360
anyascii/_data/293,sha256=K1IwQTjcnS2u-zG0f5ZXl8XtkL_i1ihepl-7CeeqM9w,320
anyascii/_data/294,sha256=PhMUswN9qrz-0Z52qai6kBhCh_SmZT45KmuE1V09pW4,342
anyascii/_data/295,sha256=QvmPKru737gykRyLp_FZk5UPOvSB1pNTQqUnVLGgrVs,345
anyascii/_data/296,sha256=vjT_lzOhgqQOgpXydyKoZWXkXabWmeX0xW64sOb8VLA,351
anyascii/_data/297,sha256=qhvOfpQAwXi62SGEcGU6Ufar6PDBQIBP_xuEpd3V1Zs,311
anyascii/_data/298,sha256=MR2Qjz2jWeTr5g18HofgDhtfDPj-9U-v_sLlNWYYgw4,328
anyascii/_data/299,sha256=TI3xcDioF6LERuZQuou2GcUsIWTiMKjXT-u73uyb5ak,297
anyascii/_data/29a,sha256=jq57KE_Da-2ROyFdj-lsckuF9dCS_rTwLvdo7u36Wms,333
anyascii/_data/29b,sha256=2gEaKBMJhifxKVAi3Rqya9aB0ujDPtG-J_Benwljhik,347
anyascii/_data/29c,sha256=ZiTJV3QsTB_bD9RzfVke1W0zAtUcnZdIezufwCgCERw,308
anyascii/_data/29d,sha256=UiR1n4aS2vAlFHliXP9uGgHlRKkfzQQ7Qt5IwbMErp4,340
anyascii/_data/29e,sha256=0nwhr5uWVDlkmyvxqQbraKlov-aTXgvVJN2XsSeoZXw,337
anyascii/_data/29f,sha256=sHIZazyOeDu2YrpwPUGQI-0Xcw4TShV0DvP0IjL5Tfo,321
anyascii/_data/2a0,sha256=uzuHxHsJtjvbq6ssZJ19jBry4x6RqqJamX4FmLpsi9w,338
anyascii/_data/2a1,sha256=PqKDvUFckpHkqaYOCKF4luI56H42azdfy6VsXTKiQ-8,351
anyascii/_data/2a2,sha256=vDRYzvpG-K4jmikn_TIX2sh_--lhhBofLE5PkOfNuD8,301
anyascii/_data/2a3,sha256=FIDFzptVXWuxYWbti7COLJTs-F3oFdGCJXdeXDPoYgo,321
anyascii/_data/2a4,sha256=8NBH9GwHUGquKkXRVW5mhWawjamj4pkkdSn8TpQj3hs,333
anyascii/_data/2a5,sha256=zS2WIM-UzAqdic2K_-xTyd55yIn0a2_0c8m6zOUfLzw,290
anyascii/_data/2a6,sha256=zC06P44Vwy4mD9fSXhbsCteWQBwpT4CRQbs5ZdVRU7g,236
anyascii/_data/2a7,sha256=Tjil3_m7NnoB_NkrhDv4PlkVPcfXXeevblYqioAK0RQ,23
anyascii/_data/2a8,sha256=mRH6MtFsicxMWgfpPJDhboplmjcyyeCBiSfaRc3Aiqk,119
anyascii/_data/2a9,sha256=thNqBm1RU18uimPPYQ8Ys1Mt1QB_M0-JHVvbTIHhjLI,57
anyascii/_data/2aa,sha256=DEWDt7wpz3JX-KA2Zebm3Rsqazd-axUthgkVweccDi0,107
anyascii/_data/2ab,sha256=UtHAwe71BcVzCQGsutN15Qs9UV4efi8KwjfzJ3aAoMo,70
anyascii/_data/2ac,sha256=U5g0GNNft9tdmVk9PJHe_-Ba5EFDyoa4m0_SXRZaLIs,38
anyascii/_data/2ad,sha256=toI3f3iGHVe0U3FYvtxAqzxdzuCHGEP-RkPqlINrtrk,55
anyascii/_data/2ae,sha256=QT9Sy_jaN5rWCU-E4NNfQUWfvcyScAVWFtlERjEi1hc,76
anyascii/_data/2af,sha256=mOd7MDSS6xK6MT7jy9pxhOZwhYt3yNuLadWqHBwDA6U,64
anyascii/_data/2b0,sha256=QuBLM-Jp31ea7ZLoL-WkMoMa3Yx4KH17tn3SDUHuBT0,91
anyascii/_data/2b1,sha256=tsyvC6xTCeF0Uh4zoHa5cSFuFY1WvkWPjWlXrl_xTXE,158
anyascii/_data/2b2,sha256=W3WzbP63KrJGbci6UL9nfYJyfmfbGIdpIGTaTqs8Ef0,89
anyascii/_data/2b3,sha256=sNUw_zkxYo5iWwbTk6IXMBTbhCxQR-u_9OLVcM4g7zQ,207
anyascii/_data/2b4,sha256=iajnCFlMxjcOP_bvZ-7_12d6EaAeSg3T7fHQixW0MWA,168
anyascii/_data/2b5,sha256=W1UgK5cm1GcavJkqiNHLmLuTaU3QH6CPAy73w2i7JMU,235
anyascii/_data/2b6,sha256=vFsx8QWQ8Q5k7jYNaoeWRuxIupV5oBkcGXV2v8maaRw,251
anyascii/_data/2b7,sha256=j44Vk8EauWPaKPt2wOtsH-fqotYWmyAt0DzUS8VUcMg,252
anyascii/_data/2b8,sha256=M1rIJB-e_Dkfql_EqJjZM_iZA-KETvUsYRknGt45zec,131
anyascii/_data/2b9,sha256=xRarVxLW0w3IWq6pG91zdbtj7OgxaLI2-fz8U7DtSR0,76
anyascii/_data/2ba,sha256=UdaC-4XC4Kz9Lj-o1LCGh4t4woeHTyp8p2D7Dg9kbaA,150
anyascii/_data/2bb,sha256=s9jJyuVN0i2A2uYfsBXc4X01wnJDk4qy8Q1910GKhpc,147
anyascii/_data/2bc,sha256=ZETf-J1ep1NhTERO6B0zxxw4OHI0soigT7a_mkNhFf0,77
anyascii/_data/2bd,sha256=vqzmKMFZcvHlnrbDIZ7xQ3A-hheaN9EjS9A5DyjllVM,90
anyascii/_data/2be,sha256=WZsEYv6uMkrUi04PTtyNp0XUd-eGophhHAuDbzmy3Vc,82
anyascii/_data/2bf,sha256=sw5h0M9yDDUGHcH1uPz184qLp74I31ehgHQzqOZmyWM,138
anyascii/_data/2c0,sha256=EEScWYk_QOIViMbZrnzU8NCnzDH4Q6IDwBJ3qzoRtAU,128
anyascii/_data/2c1,sha256=SnMU7YGM-Hr26s9WrL9ZQ8401teNmDqxy5NDccecu8w,85
anyascii/_data/2c2,sha256=czcYN0av0EbjdrL5cWUqwpsQCWzq29m2qARjsT6D0Do,121
anyascii/_data/2c3,sha256=CWg0tWuF1MPG3UAs9O5KXY4hJU1hFcOaKXNcA1Y-fqk,80
anyascii/_data/2c4,sha256=vLf5mybPpyB42VDzQ1RnjLgS23nGAfZVmlW5M8hWIUs,126
anyascii/_data/2c5,sha256=Z1Qx3WUHzeLXhvlv5f161qJMD05CUke_XnZvPBlAVeQ,63
anyascii/_data/2c6,sha256=dxlgIeHyiJzjVT1mLgDoQl5N8f_M4-DsqGrIDJgAdpE,188
anyascii/_data/2c7,sha256=-g5vEARgejOvOVcjm8mMOxL8Yc2JTL1dVD5mKrfeNko,124
anyascii/_data/2c8,sha256=j7xY5Id0xLkPXvwiwXTuVnq6NHKBWMz1g9E5eWUIkaI,217
anyascii/_data/2c9,sha256=04-eajbkwnJVdyHaKWdeREXyDJg1frcWEAvw6JVFFhY,244
anyascii/_data/2ca,sha256=k2ioxTIJwG8-ICarkqnDtMvAeotVGVPYe0OHiENcUxA,104
anyascii/_data/2cb,sha256=gY5HMPns9AC2_eDTtutHvA_k3U0ubIt9MJtPyGhAv94,290
anyascii/_data/2cc,sha256=GODLexl3D4M917ZyGNQzS-xyr_hvyYUSAqqaEizsm9c,275
anyascii/_data/2cd,sha256=7ZCE69uLit13OMjH5RdbSEfZSzly-yAIUE50DGZ5SFs,194
anyascii/_data/2ce,sha256=5r6vOAjhvqBBU6ZZqwQmCoMvYHEOdZWg64d68rxz9yI,240
anyascii/_data/2cf,sha256=NVjCgXxAEqAFqChBAFEuaR0Npau-aTymdZLI8GZBKhA,10
anyascii/_data/2d0,sha256=fYE4LJ3Pfxt56i1dTv044_l6xXJqzKH0EMabhNyheDU,7
anyascii/_data/2d1,sha256=9Cpnefh_wMJ8rP8bM2_gvirnrDTdEdDa1eBZORg6tkk,35
anyascii/_data/2d2,sha256=Gnk29TiOaAeSGvbruZlASKHQeU9l9DYlRX3pHSumbt4,50
anyascii/_data/2d3,sha256=JOwM5YSqpPMMctW9PYerLxSi1zceaV4YB_-rbIW0pkE,25
anyascii/_data/2d5,sha256=zs9JmCT5MzjQXCv6OaY_ce85VNRhOzqHuikY1K7zXD0,14
anyascii/_data/2d6,sha256=Z58DgZD0txZXEA4wFZPmHvk8nHonQpXGy12HsnKJRCg,15
anyascii/_data/2d7,sha256=CcadBdBm2-TIkv8JKVfFrFiHhMpxdMxnfwxXlq8fHbw,20
anyascii/_data/2d8,sha256=6jG23JNA2CC4Gbf29_HgHbZXKhacP4dsjOqCqu2RpPU,35
anyascii/_data/2d9,sha256=VVJAOKobQf_bN5TozHMLgyZt65jUAjXf2aRj_ZAAYYM,21
anyascii/_data/2da,sha256=eeOBKpJCfWR_Bf3-Z5QGXHXYZ8mP_fsxLzQcG8ePk8c,36
anyascii/_data/2db,sha256=MhX5rI_MpflEo44GSQkkCY-dk_HlEq5jssYebJbT3QA,8
anyascii/_data/2dc,sha256=dlGsVn-w9QxG9YqAsvS0YslBF96f4goPu9zzZva5hqE,26
anyascii/_data/2dd,sha256=Si4IIhrAYjARu4QFehV6p2iuzDqfVkrXViubhT0-bIc,8
anyascii/_data/2de,sha256=oTCiAAJ1_74he8oE2SeO-TJab-A5Per1iI4IeUmMCu8,14
anyascii/_data/2e0,sha256=LmiCtYnmAZqpk0VYeHVhw35FMwGleY2144ec-21a5Vo,19
anyascii/_data/2e1,sha256=pFLp7JhY_3iqW3lJjwauRGqgAZwKUJk2lLpNeHcaQcs,26
anyascii/_data/2e2,sha256=fUBk3a6gvyiS4y6tfELniid4RxAtXe4jcZtizd9M524,56
anyascii/_data/2e3,sha256=3ZuoAkewpLDId6cEAwaHadTmB7jRUyr8nvWssELK_OI,13
anyascii/_data/2e4,sha256=Ip309obgOfK3vBAZqmtd_YOLBji1o1KQ1tB_Hadhnhg,15
anyascii/_data/2e5,sha256=Eo28QctoOZW2uoiYWjI3G-P8GwhIuniFGUoH80Ud8X4,38
anyascii/_data/2e6,sha256=Q1hdNhlZnKuyZSAwMj8TWupWRg3ux2s6uY1guTCxeWc,19
anyascii/_data/2e7,sha256=23ch6DO7492wQ080INmRXjDYCOTZ3XoCAwJvEmZqScU,34
anyascii/_data/2e8,sha256=l0vq6FG36et7Qn73wWrLOHKU9kb3PYU_6rWoB2bUC0o,43
anyascii/_data/2e9,sha256=XBafkPcLLjy7DT9DYJ7kgRbaXVimMjTR8twWHINrp-c,42
anyascii/_data/2ea,sha256=crZp4KIj4GrYSTRvXmOJdQZFjFhowJSQGIdQQ7gNfas,59
anyascii/_data/2eb,sha256=WairdK5XBeriup0LHF6jsgVk1DJtDDRzZAC-tNvviXA,93
anyascii/_data/2f8,sha256=wqPBa6hdLem_Vp5119ox0CoX1MBIHb0-rfHabq38RFM,468
anyascii/_data/2f9,sha256=tbmR4GpFF3RgWkC5Me_-PLjAy1CBQv6gQu2zB1JRywo,439
anyascii/_data/2fa,sha256=Gi8kMbqZ61cf0KRJDX-wOk9BrN_ZSkHDS_plOQST3LE,79
anyascii/_data/300,sha256=vdFHIW03ruH4fpCQePDLdZecF8SO1vW_wUtg2_qeKwc,80
anyascii/_data/301,sha256=80UlDsoVuZE0cqHKEH_6FOMNj258KnTxFqERc2aWRyk,85
anyascii/_data/302,sha256=ZYOKZgP9tfX51VamqelqoUjKPLChbBFLqatlDUP_5wM,138
anyascii/_data/303,sha256=oycQD-K-RtQjPUk951W91q91MvrEwQ1oVH-RjTgGAsU,125
anyascii/_data/304,sha256=pzh1xVbKeqTlIJCkkZX8VWjSfzm_K0pAqzJNlV8qvJE,135
anyascii/_data/305,sha256=wNuEGXGoI6ExlmCEtcsnOowaIfETVwmYj-6EyohJsCM,120
anyascii/_data/306,sha256=QZ7_pvqCkFqFemDUv7EPIhXWPpVv0F_8U_82rkOux4I,139
anyascii/_data/307,sha256=nRF8lHHAmCVSX7D9oNYK4lUTPo19hKpp6Sf8GNIvLbA,106
anyascii/_data/308,sha256=f35R4FpQIlPpCzTcuwDWzO-PXnqywH41rmGTF0gj6Rc,122
anyascii/_data/309,sha256=PNk3D8Vqvgc7pIhwdvF08qZJ0ToSqN-ote2I-Ch4YKU,149
anyascii/_data/30a,sha256=lNyAWs_hZGPca6TbT-0CAOVZIf1bIXNNRGQ3vudxzYY,105
anyascii/_data/30b,sha256=9yiyZfNCRVJDU5MjLVC3TvMdYTTAyESQxA2Kp0aTtao,223
anyascii/_data/30c,sha256=6DVzgRyh2RULk6bxOYpudMlEXhMAQ7VELZXYa73KxX4,228
anyascii/_data/30d,sha256=dUMKbOJWfHWc9K9SE6Ggs-bKZokd5iy3XEJ3ELCpngw,277
anyascii/_data/30e,sha256=vUU8vBeYUiKNwM19T_SW978hIxHEib4eEb-Z5D_0c8U,224
anyascii/_data/30f,sha256=bj0UMfovgDFiSPMDuZob9upj-uoje6ViMrNGTiv6h1Y,327
anyascii/_data/310,sha256=TU7c306WwRyR2llVWq0gV1yEpSvLz5QdPGfM8wiy7To,224
anyascii/_data/311,sha256=Vaj2c-FvG8je22rFSUexPUGTWMJ4VS28cKh_38Q-yIs,303
anyascii/_data/312,sha256=pOn262z-Skp2WrDMeHVmj4PZZEyRZjHNdYPlOpEzvjA,396
anyascii/_data/313,sha256=-o2OWUPDAeYdrgfkgdzYjEULUBPcRIyV1FGK-DmXZFQ,125
anyascii/_data/314,sha256=XHZdKK_cKZSOhXlA6QHAxzqnPz6_hSvBQB2Kaxqo8F8,18
anyascii/_data/315,sha256=caFLbRsNRxCqlRmldn3JxjyQ2YScl30xheSToaGTFf0,14
anyascii/_data/316,sha256=np5_b__pwUk9PoXAwF7jx-56xGsWmfuqy-pb0tQ0G1o,8
anyascii/_data/317,sha256=0QLQMoBp8AQnvn7Zdh6A8XCGeSXWvm6LObVJpbYJPLI,13
anyascii/_data/318,sha256=6nwhCK2_ouaCHgS8odRgkTQaimKmsVTu99eOVvJXJpg,17
anyascii/_data/319,sha256=5ch3qgOaxFdjjooBNxJPFlisOllQrYC4q9fECvP-BGs,9
anyascii/_data/31f,sha256=cf1UKfPi4PsDLm_frZ-HlrMl_Lmv6X9bJb-kuzuT0AE,10
anyascii/_data/320,sha256=GTKSge3i-wOf5kF5Uk8YtKsrLjIayR7vgPo19Jz4k6w,15
anyascii/_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
anyascii/_data/__pycache__/__init__.cpython-312.pyc,,
anyascii/_data/e00,sha256=dA7rf35w4Yr7lWtmjVoeKt86yZ_w-1SThFBJcMshPjE,139

Wyświetl plik

@ -0,0 +1,4 @@
Wheel-Version: 1.0
Generator: flit 3.8.0
Root-Is-Purelib: true
Tag: py3-none-any

Wyświetl plik

@ -0,0 +1,51 @@
"""Unicode to ASCII transliteration"""
from sys import intern
from zlib import MAX_WBITS, decompress
try:
from importlib.resources import files
def read_binary(package, resource):
return files(package).joinpath(resource).read_bytes()
except ImportError:
try:
from importlib.resources import read_binary
except ImportError:
from pkgutil import get_data as read_binary
__version__ = "0.3.2"
_blocks = {}
def anyascii(string):
# type: (str) -> str
"""Transliterate a string into ASCII."""
try:
if string.isascii():
return string
except AttributeError:
pass
result = []
for char in string:
codepoint = ord(char)
if codepoint <= 0x7F:
result.append(char)
continue
blocknum = codepoint >> 8
lo = codepoint & 0xFF
try:
block = _blocks[blocknum]
except KeyError:
try:
b = read_binary("anyascii._data", "%03x" % blocknum)
s = decompress(b, -MAX_WBITS).decode("ascii")
block = tuple(map(intern, s.split("\t")))
except FileNotFoundError:
block = ()
_blocks[blocknum] = block
if len(block) > lo:
result.append(block[lo])
return "".join(result)

Wyświetl plik

@ -0,0 +1,2 @@
ÍÎ? pÆñùû.*´±Åk¢¢?ƒcè<63>l©Á„^|Ïp…/¡ûðpp7ÜÁW<7F>>[†ä¼91ÀË|®$‰xGŸ€Òݘ̘3¢á Ñ”ˆ'iJÆŠVê –]ŽŒµÙ˜;ö?cåbrÎu­ÓN¿9s7%<0F>þ
•Æ´¼*Ú

Wyświetl plik

@ -0,0 +1 @@
mQOƒ0…Ÿ¿_⻉¾£(Ž0N]Ü“«t•0'3h½·KËÉ—>´Í9çÞˆ5QÏ5刘­ç5!¡q‡öÌØMIÙR sÞ9<C39E>QOÈigrT4ûÅ^ñÀg`A;âcà‰¯“,éxáGXa-®D.EE_>öå­ÔuºåMŠ&èN:Í|“Z´ô‰ 1ÑTš{>$Þ¹h¡iuõáÙÛ{cÍ«Èj¶– ѱ•p%ßJR¼"¶î*KÉ µ!OÉ <0A>ñ»rsuž§Jª°ÑH±vå2ÿ<32>SÜÅÙ 6~‰]ßgø+o

Wyświetl plik

@ -0,0 +1 @@
MQËNƒ@]ŸßpÃBÚ¤>bbj4&jŒ<6A><C592>.4iK ´ƒb)F(~»ç^š3‡ Ìy\ À y<>DyT9D®|ÂF9S>Ãâ%^±Å <63>;¼¡ùMjÝ-E<>aEß;â9Š5•WˆpÏ,KŸG\2?P÷U<>(´Wœ3Åœ9Ûb*ˆM»åT/÷pT"Ud?h *â“ý‚yBááHõja ÓRÙJÂ_¬®»å˜„‘å!DÍ×L•°Xl,+ô,n¸Œl¥åbX„Åj‰ÌrTÆcM4êkg<6B>~ øÏ>˜pŒ á¡£Ï|Lõô|¨èPÑ%|ìpÀÀšƒe|©šŠSœàGèñzF÷…I¨Äw)Cy²c¤ü _+¦è

Wyświetl plik

@ -0,0 +1,2 @@
╣░IRц0О,П├РXQaJ≤vaаA┐MdАТ<)g@-uИУП[ПОК▒├√▌/Ф<xgею NE▒┌=НЬ6╤е2М}&9╩`╖Ю@xдXЦ
f╨VНЕДК═;Ц° .╧7`й ╞█>f≤Fи╠h+╖eЦmм▀▓~еCп╫Р╕╬╣uТЙT█Z7,≤З(⌡╩|vyJIЁl╫о2в|R д!о⌠▒╙@ йX╗l;У└%#Ъё╤oЙ :-с█╤ ╞rЙ╙L

Wyświetl plik

@ -0,0 +1,3 @@
EÛZÂ0„¯ÿ'áŽA‘ƒˆˆ
ÜU(Ý–£”òôÎûÙf²M2<4D>ìNÒ¦M« C7¥u¡«·Ç `XФ¯Ñ«¦<C2AB>[îx«%úܘka¦å<01> ybĘ&"ßÓ7&<26>¦ñâmaÔD­é¿Ù‰YBÂßd,Ið…œ5¶ìØsàÀ+ÖÆ1 …à-*•BJy¢LS–…¤rE×É)Øì
RÌ¥±ÔORmªEüÿòùîž|O?°Œ üWJ·Œx•³"Žì<C5BD><óÉM£Ñ ŽžzüÖèôŒÂ³¬16¾L~etŒÌþúžœ«d—ñ5<C3B1>ŽaÆ.ûëGÆÁxçG†&²Àb"Ž¢·2Å•š*Ógdõ¢êèädyT«´<C2AB><C2B4>Å“tK<1E>­á§š\\­ñÇŠéûèZ,ýfä•!n<>³«Ü“à'VU댩q6¦œ=Ó_

Wyświetl plik

@ -0,0 +1,2 @@
ÝNÂ@F¯ÏcèÍ&Dy£VQÁŠÐhÊ…¡Ja `[1m|x¿%xíN¦³?ßÌœI#fDÆÌ˜­µÌZÆÚˆ<C39A>•‘µqIÆ€5ƒ•g-ÉKy¸æ“W¾1hb
†ž<EFBFBD>ÇÉ↢Qu¯òžèCQtJ¾¢GÄ yJâ˜xîõØ÷$VÏsíy” fìyÒÉ1ä<31>˜FR;1 }'Á-0Uï'œqAW”ï,4sN+o¨âYŠCcÔ+! <0B>ð6­FYR±§¦”ÚiÜ<69>cå$˜“ï•Ûå\];²¨Ì6ü·rY¦ìåqö[¾ô¢2?ª§nÿ–Sÿ0Wlõ­E)øðKD¼±˜¥šË4Ña¨@]²Ó4UÞ¶!o¤9ý

Wyświetl plik

@ -0,0 +1,2 @@
mÙN„@EŸÏw<C38F>ÄLuÜâƒñG&°ôˆÈ2¾ÞÛê‹}««+½ÜºUÐ×{úS$<48><C2BB>fÇ&–żl¹Ò•K–q4ÿ ðÂDH¢9†rÇRƒã]AåÈÈœèfzz'—éT;o”ŽR˜Ä(ÎO*>8QëÝ—8'Ÿ'a´Œ>Eè£\hVŸø¬1×ÜpËŽ;îyà'6¶•âT¤‰ ÔÅ\Kct&/õ ­…R9{«%zè98oÙÓ¿šÐýbö³¯ÍêÒ‹å©ëRõ"? ­“ŠRÅUV¯ÎªÖG
m£TÕ êLjA-ÁÎÐÆg5&—)ÈýMµ"T¹ùú=úÄ€¿±7ïeÿ×§Þ^ ¿wß

Wyświetl plik

@ -0,0 +1 @@
UËVÃ0 D×÷3Xùœò~¿–,hš6nšÆm“É×3cÊO,Û'f$M8Ž„§Œg^ô>ç<>ct BAEM)D¾e{Ý†ÈІ5-<2D>ðÁFèØ²£³O©"edšØËÎ…eÞÆ^H ”Þ¶^£G60äœ3Úá÷¨dJ+…_ú*ýùÄçJJ×…Ô]#ŸQ^µB:Ýj˜šu)퉔¬eÎ,fõ•Ø¥ºUTAãÊ”uÍÂúû¨2Åà:K¥ê±œÚ¡} è[¹ÎÀ·Rº@裻§lÕ¶¹÷ê,bŠ(ÿ¯ .¹âšn¹ãžsßÜ5w+9¤<39>€>׿^ìÜŽª<C5BD>Z¤õH×à«ývùÅ4¬Ä„<13>ýÏù•·

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,5 @@
}<7D>I
Â@D×ï.\ˆg=„
.\
ÑHÚÄ Ä‰ÜÞÊ<C39E>C±ŠN7M§ê?øòA¾ÈG`<60>Жá_ˆ!¡#eÇÎUç3gG@ð}&'wlÙ:¥—
T¢2¯œÌê£-7+‹¯Ê—ª•ôDÿ•6<E280A2>¥áѣπ!#ÆL˜2cÃíq[ßJDñ<44>i…ueöÄ”*Bñ<11>-”Å”6m=D“ˆ¿ÙÒ2yŒÒ ééÒ³å±`Κ.­Õ‰Ö

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1 @@
<EFBFBD><EFBFBD>IÂ0 E×ïì<>¨˜â&-) ÐI¥L·ç' j ò¿-9²<39>mËyÂÖ¾|r鎡¦¶/çÝ2¢¤´ì>)ÓHEuŽII•¯ÚãdUÊáS{IÎ’?bÂX<C382>áÞ™ÁóZ[é3dĘ SfÌY°dE<64>5<1D>ê#i`Þà`Irx,ƒiCšoÈè )". <Gtù¤Â[P©ÆáÀBñ=Ÿ‘è‹

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1 @@
Mën… <7F> ÕÊÅ9'úô<C3BA>ÅÓ¤q!{vG˜À¾SY8O2ÏqÐé<36>¯ÈÎÉA¤j¥.TÏÈ•œÉѬxJÄ|Å/ø.SÐÍõZox™úùðÒ ˆP½"\Ïô‚À]]ºèÛè÷<E2809A>~ÒÅ*>ÄævDÚøšÏ$j4Er{˜èïZѪ²Ãó<C383>¢þ¢S7jdɀí\N¶²6äk¿Vo'“£TcðVfå<66>¸ë`$®á†Žê„hm¶Tn\]6uT—f]å©Ôl`³ÚmžA[b8Ùʘ †ðC`%¯a ˜p+]³–ÄÅøLFƒäHê<48>()¯=Ä#ÙŸ8ãæ&?!?kÕ­JAWów9REÖc²'w²drÌ'ÇöyŒyéÿ”²Z„)˜çžoêišY¬YŸÒQã%Nk¯¤·¥ÔKsäÞä<C39E>üƒÊ%O…u™ÖMѬ2ÍgÓN½¦”y)¢uz“<7A>ýX¸?:¨ÄL,Do¨OPcAƒÄ^

Wyświetl plik

@ -0,0 +1,2 @@
}<7D>]Ž„0 <0C>źż“Ěµři¤VDOżn»ĽějFJ<46>ť¤$¶ńđ†ÇGĹČb,™%°tĚY®±ŤýW}5ÖĚX;fŤ¬Ş'#eR uLŠ$ŐwcĎě<C48E>˝cöČţe>iYŇć¤ŐÉ?\ˇvÝ˙~™2+<2B>ňáŠXłň˨ßÚľ~yŁ|{űőÝdL™)0Ť 3E&͜ƙ9gÇśSőĂ82Gŕč<C595>#r¨>KË,mł´Íţከüäą4ůzš×)mHÄ·ł6cËl<C38B>ml<6D>-˛ib»Enunµî‡+ÔľŐ—r™ *0^H“,Á2GtĚ[žVK<33>«“w[_/ü{í§S®Ś ŞsEĹČ Č ˇc`Đ?ŠQ2%PƆ)˘‡E[ŠVí,ţá
µë:É”j‰ľ;Fo-q†Ë¸€ëqšwďä„“îőp…Úňă

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,2 @@
<EFBFBD><EFBFBD>ΟnΒ0 ΟίcL<1C>¦ρο„Δu'ήΐ@D<>΄·ί/mΡ<6D>@Νvl+Ξη81R;<3B>5[
¬ΩσCEΞ™#Ύ9r%φ4υΖΰ΄κ<>$#σ­²ρ2 …W‡Ίs…ϊ)ΤmΎζΰΥZξ2ΠIΝ<49>ΝP9ύ¨†Γ¥”Q¨‚‹+<2B>+ΙcbK±2ZyjζoωΠrAΕ<41>;=M»W<C2BB>π=汬+x‰Q2 Η<C2A0>„δ»LxeΑ<72>$CήρΑ'_<>™0eΦύΒ<CF8D>Κ/

Wyświetl plik

@ -0,0 +1,2 @@
UŰr<EFBFBD>0 Dź÷K2Ói<C393>¶éý©żB.ĹPB(¦uČ×÷¬C:ĚĘki%Yđˇ˘(t«BďşŃeľT~îtŻ­ô¨'=ëEŻz;Tj§ZýděÔ©«´ J{µŠ:jÔVßj4iPҧľXťĐ j<>NA «BWE.é
üZáoÔMTp΄>gś#ýܰˇĎn4¸mj4~čq€úa^+¦*ł†bc¤Ę(Ôĺr˝úŔ0dž´Ŕ©Â,Ür@3č––%®¶f0FĚĎaRÉ č9öŢd„|ŽěA‡łcoA„GďÁ$dć¤Éŕ4Xźę ţÍá‚Ů ijĂĆŽě-nĚżdϰę\Ý—_ä”Q[–| Ř™Ž<E284A2>Ö±Ö+ŁCŃĘHóަ"ł<>7®Éo<C389>

Wyświetl plik

@ -0,0 +1,3 @@
m<EFBFBD>Á@ DÏï3öä-ETOû- ,ƒ¨X*Rî×oÏàêÅ0ÉÒtw…Ž.ÐÐNlÙöìcãرý™s ¢
ypáÀ<C3A1>kzô%-5eKO»>AïÄèDre¤:&‚À,M8ô±~ñM†3gÁœk
62&ý†_I=俦?«ÄñÃHˆ$<24>\Ÿ(£¾Ôk™èéKÐû<C390>}Š&šjþ¯Ià-szÖIì-yxV­fGU½îf¤ŸõšNŒÙäk˜6S¿œÉR©´+<2B>ØÕ-m+fY‰ê$~~Yý´§r$+pcn,Œ¥‘+cmÆÆðL©¹ àB¸ .LQ`ŽÍ±¶Ärl…­1}ßh”)5w\Äó?

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,2 @@
Ek0 E?ߟ¥Ñø~ÄhüêD(2•_ïm‡ÀaÉҵ嬘XÞ+"ÜHL2Üñ@Ž'
¸<EFBFBD>Îë®DE^ðÊ W6Å…XJBYs3Â(ƘL0%3̱À+¬±Á–ì°óØã€#N8ÃD'¨–B±½KÙ}]¾}á²LO¥Ì¬n4T…<54>ݽNP¯YÞ2£àzIQÆémûR“ë”ý>¬¹Á+£<08>¼ÜÜp|‘ž%žÅWf:Ê\yR¶Ps´é ËÛ@*>ÃSõ;<3B>Šq0M÷£l§Dî^µZ^‰˜ä:*u|3ìà

Wyświetl plik

@ -0,0 +1,2 @@
•ÐÉ
Â0@ÑõýwþC<C3BE>Å:`<60>wu¬¬Zõë} 44¦ BÎ"oð®GH…¥QeE<65>µ£ÎÆÑ`K“-"G½Öá`ø(K—£Ñãdés¶ ¸hC®–€Ø1âfswLxhSÇŒ§6çÅ·É[‰ÌÂ’|—ÓÄÒÆ“†ÿ(j™—µûnðKÑž™t—<_¡”. ·

Wyświetl plik

@ -0,0 +1,3 @@
<EFBFBD><EFBFBD>1
„0Eëw 9‡…+a»íb!ŒUÀÎ&gßd #+ËòÈKŠÉ0ftf¾ªÇÝ´ K%pK%XѵՈ»é׺€†J0áB%ØÑ½îzš.¦¦‘)GÏÙÖB.Í-óM» ¯[ú3ÛãT¦þDRo!ÒÅ2¯iHŒ†xD<78>xæ9
ÆêQA£eÌllj<6C>wá¥tžNðéo8ö<38>5<EFBFBD>¤ÿ

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1 @@
}±N1 †ηο9Ί@£¦(ΙB»u¨tΐ *$*hU1TχμΨNr$N_lΩ±.φο»γ<C2BB> α5s<56>αρΗL<>έΗη<CE97>—gqWb=oο―,‰ΖQ±³ζ`Φ)]ρ-B!π„<0F>£<EFBFBD>…―ABξKz"<22> ¤b"<0F>L—9;§¦j=Ή·hψ¨UFμ`άσh¦B<C2A6>¨ψ5ΝΨΚdεf†αηήpάΤΥEy­­qZΙ±)ΛB΄<42>I™`RE<52>Κ<EFBFBD>'NΪΌΥ¥―ώΰ<CF8E>η\|

Wyświetl plik

@ -0,0 +1 @@
}KOÃ0 €Ïþ;ìÅ`p1Ä<>BâÂqlQÖ¦[Y×TiÚnZÙoÇq»®}r»~%ñ0'r^0…˰fƒ†!tˆ`!­·BÀ•ÎÌ2<69>ú,sò€-àZíZaB† %üà…¬÷€-Ë|°T1•ŒùOÎëœ ê5'º­h·Ç³ÊpAß1”pGÕùÈ!Ð AÑÎ}ßž^éοü¥Ï¿èÀ%wè®§Çô™)3cöL _LI×èôw=¦tÜÍÃéR9TŸÊ³ØŠq\à Üò»¹&öTÊ¥¯Þ­ºúgÀ@¦VÚü.hTÆn#<23>Ñ…ðu¶ˆ”Ès¯˜lÖHo-bµµ<C2B5>•‡:£9À$;‘È,U.<f#¼H{kÒR«“ãèØp£L{„Dijc)R×Ãâ¦9•XdÖê¸ÎqÒŒò´ñýø“o

Wyświetl plik

@ -0,0 +1,3 @@
СYOѓ@блч‡<D187>T/Ж kZ
©:Ф-1Ж}ЯwЅЯx­т !ј3!9е¤АЏшj‡,WdеЭtD/+иyEОVEћ“nЄЖйэФ$XКої[књiWП5ь¤GжSrПЉgУ3сшuъ:щ€КY–щуZ`‰}f~охѕИФп©Р I6¬Ћa1–` ¬‰µ°6Ц!ЄSіijДHCљТ¶tДкa Ґ…ФBk!¶P[И-ф6XШi‡9"GмH GУС§Я}7¦В<D092>SdЄL™©ФХЛ‰њК™њЛ…\К•\ЛЌЬКќЬЛѓ<К“<Л‹јК›јЛ‡|КЧ4]41ъdд¬0`И*#
Ц(іОљ;¶Шf‡]ц8ФЏ9б”3Оа+®№б–;оyа'ћyб•7Юща“/юИЇC¬

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,4 @@
uΑ0 Ο<E280A0>spQ–EΟΛΰζ;<3B>¨#$υ†D80xvΧ9
Θ—<CE98>®νZ¶.E
ν$ƒm`<1C>_“ςSF/tΕ<74>uή …ΚλΊj³η=/^ε#ϋΌΥ2TTm©ώ:K^'<27>1n<31>$¬CιpΞmkόν·£Τ}πώΐqώLσ°Φ"†B‡;μ½({Α<>5ΝK{_ωΎ4KΞ0ΞΞ¬pdβU¨<55>,M9F…Θ1ΦF<CEA6><46> “vξΣs„v<E2809E>|]ΔΥd)'f¨ωƒ
Ώ7<10>_

Wyświetl plik

@ -0,0 +1,2 @@
<EFBFBD><EFBFBD>1Â0 han÷LQ Ѱ–<55>'T<15>'–<>X®PcÂAtÀˆ®èqVdáL ´`Æ,¼³Ol岓Œ
[qvw1kŠY-.ñûQT}<7D>c´'%VEÍMê©/!å(6BˆøŒô"Ğ4ât[\+:äÁ~M%#[®øx™àyE!¤JÒ)©M<E28099><17>.#Ŭßí†{9ë@ÕÛOõ_hÍœIÛ¬´N£pΟ:Ì/

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,4 @@
mËr@E×çGâÝ$UY¢•Pbˆˆ X¢&òõ¹3l²]ý˜éî{»Ÿ>ÏŒ²4 KÆDҦ̈y$aNÊ'Ý95' ŒÝŽÕ<12>å†DQ¦"ùEô£Ò5ï\ÈْѶ ;
iΞO¾(©8p¤æÄ™Œ;×âÚ°1
t»S·¡8ËeE¦"ùS\ F¥SáMÝÜka…ꘈc)F;Œ/¹ð·lèX2±Z[è5RÕùêëkÞf 4ñP¹;‰E°±6áX„ײÍDkƒI;Öú•Øâ?
¯ÖÛ<EFBFBD>ôgÃA³ö†¤æÐVv$olñ,ŽU»ïõœ¦nÿ¿ö•i“ `[è/mœÆ9eN|¥¼ºÍo˜Í=˜§ E#3С%° %8"÷­Vt=<Ù.Þ-<1E>_

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,2 @@
Е░мNц@ └оъ[ 8╢H■йoуV\AБд╔═Бп%YBБ(ыMуxvэFH╪у╝фcк>Ю└SИ?э?3`х┬)s╕vмyФ╣▀>г╞э1ШСШу╬м╫цg°3Ф┌K╝╦Ф├[╨3YK╩Y╝╓и&V{зЁ&ц/ФX,8q>b<╡ч▐рD&∙тa)_ау╞Е╡░:÷X⌡#┐7D┐3╗!R!В╓·<▓FrGЙх∙Ti└╜пd·O▐∙ъFгжя([%+А╫⌠┐И║к ▌∙#(+╔JO)╔▓ ┴P fJ<∙Г#▓D╙HФH∙#S╔R
║ПбQ(ы3Н╘;жBМ╘#╣ёVж╡ёъ▐Vрфщt6Тг─Aо|Ф≥Щшm╢BКiМ║╤▐n%╧Щ

Wyświetl plik

@ -0,0 +1,4 @@
MËrœ0E×çc²Èãâ¸
¼qb*v±ŒÄCÂh0<68>¯ÏíYÔjõ©O7€®–…™w®ÜˆLôŒx>øËéyódÏÊÉG¢Óí]À%Ò†tQs/'[ lº?QÔGE<47>εcGú¬eˆÞÒÝ”mê™f¦–)3IX˜¼pµÐfeÌÁ ƒ<>ŒB\çp‡Óš<>Nl»ÓÐBRÃ.¥c<1B> hˆB¸…r*½Ò^•_NÑsËœ™OfOÛÓ^E!—åÚªZu¤'G$æ–<¨7Vk´êúS­ô^Ý;&c<Ü!5k
B•ÆÖޝ|ã;?øÉ¿xâɆì<E280A0>êlÕõÖêj Š{ÒV¹°ªår²M6<1B>³ÈYèf†4“õÍ>ê'׉CË~gÜ­ /¯²ú…²ide%§'µMes±’ª{t­á™šŠºâQ
¥½®Cdê‚ꑪáò,Õdí|½oot~Uðÿ¯qÓÈ·DÜð…ïZtøÄ¼±:ÖÀºYÏÖô

Wyświetl plik

@ -0,0 +1 @@
ŤËR1E×çO`7#ÉŻ%Ź.ăá9$Ř;ŠG<C5A0>Q¶UźnA*ŰTů\÷´ZjéöŃć<C583>ŁAxŢ„^xö‚ü^…çNd+„wAż/ĽČ•ĘąĘRĄQ9UąW9śuŞ—*­ĘŤĘ\e®çňĹQ-ˇ¬ŕ„0&ÂT<C382> u%˛ĘAĎÉIv9ę ôĽEÔÓZ ď4ąî4\Ą\ętO}w«ń™˙Włô©<(–sEKEôzâm)TyŚ_éćżŮu'ú+ H«ňżî°ˇ®0¶ÂUŚ*Ć“ŠiĹMűSc Ćbf„c&<26>)f¦lŤ5X^xŁç‰=ĽňܱĺŔ;ž+Ďągéi<§ž{Ď Ź<>ĎĄ§őÜxć廿H,ňCäA¦rü˙Žá<E280B9>ݨŮ41š6s她ĽZěEÍĄ <0A>±%/¦JN®7pĄ±T®âPVĹŰŤ¨Fá۱űNsë.•ĎZz~ía]rrť ·<C2B7>eă*`ÇŘ vŠť©Ő®ĆśĹ9Ü7ĆMpSÜL§P7<50>ŰŕF ă†IĂ´aÖČĽYŻĄ`ľ!섟,Űs<L ±ől#ŰĚ6°Mě={y×ě/ł‰$q<12>g<EFBFBD> ™!0$d$˛ü;#vu‰ŢÓGúLčźžĎĚgbçŮEv™]`—řĐţÚý.Ä˙

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,2 @@
-SM¯£0 <ûg•²AŠÚ¤n9D¯ÑÓ6ÒÓúп3¤RÇö|Øì^m+v.6e ùýmÏÞ¶¦b_o¸Û_ÁŸÜ¦b#N}u»¥j ŽÄ€XLínÃsw ogÆf<gtZJ¶ çJ°N}í!`Gʃåh}/o”ݱi.rN•¿©üõû+“¬ˆ<C2AC>GµŽ³<>À*Ẇd¨On{…ÈOëŠÛ5ë½X— ½\¬Ö"Î ]<5D>ýùÈÁyp7·-ÛŒ& Ξ_6zSå'Û»Ä?-øtXË„+Pv¡ôÏžJÕ¡$ Ç –Ìÿg}b„Iôec<65>ù`ªÁ­IÎ4EWÚD†ºÔ÷0Ï1k¬wä½4Òƒ7nË7L»8úÃ+fŽžÔm̼@`ÕjF=/ï§as3ƒží/tˆ¬®”Í™Úâí¸)‰ÿÜ)¦}i‰* ƒn Ò§ô—ÞÚ-S„7}4º'P,öç—ÿW6tR°¦õYxÏÕåœo´gñª­ÙTÄÁJ¼¶f*mÔKf/—¤àBŒ q>>rjô&üVÅo=–@¬»|üp*:>¢/9ÎN_wl5G”Ñ áDPà£]Ô:,D
úè/ÔqƒOon&ýA©iáÊ

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Some files were not shown because too many files have changed in this diff Show More