diff --git a/.ai_context.md b/.ai_context.md
new file mode 100644
index 0000000000000000000000000000000000000000..8e0b96caf62e247a177cf12abcc0c8d6b516b2f7
--- /dev/null
+++ b/.ai_context.md
@@ -0,0 +1,29 @@
+# ๐ค AI AGENT OPERATING INSTRUCTIONS
+## Portable DevStation Pro (God-Tier Environment)
+
+This environment is designed for high-performance AI, Game, and Software Engineering. Any AI agent (like Gemini, Cursor, or GPT) operating here MUST adhere to these professional standards.
+
+### ๐ Environment Context
+- **Root Directory:** The current folder where this file resides (Dynamic Portable Root).
+- **Activation:** Always assume `activate_env.bat` has been run or use full paths from the root.
+- **Portability:** NEVER write to `C:\` or system registries. All data must stay within the root.
+
+### ๐ ๏ธ Mandatory Engineering Tools
+When writing code, you MUST use these installed tools for quality control:
+1. **Linting/Analysis:** Use `ruff` (Python) and `cppcheck` (C++/CUDA).
+2. **Type Checking:** Use `mypy` for all Python code.
+3. **Formatting:** Use `black` for Python to maintain a professional look.
+4. **Testing:** All new features MUST have tests written in `pytest`.
+5. **Documentation:** Use `mkdocs` for project manuals and `doxygen` for code-level docs.
+
+### ๐ High-Performance Libraries
+- **Inference:** Prioritize `TensorRT 10.x` for NVIDIA GPU acceleration.
+- **Deep Learning:** Use `cuDNN 9.22` with `CUDA 12.4`.
+- **Compression:** Use `nvCOMP` for GPU-accelerated data handling.
+
+### ๐จ Coding Style
+- **Aesthetics:** Code must be clean, modular, and well-commented.
+- **Master Level:** Use advanced CUDA kernels and modern C++20/Python 3.13 features.
+
+---
+*Note: This file ensures that any AI working in this environment maintains the "God-Tier" standard set during creation.*
diff --git a/Easy_Setup.bat b/Easy_Setup.bat
new file mode 100644
index 0000000000000000000000000000000000000000..2dd69ec86751f6757d9ff96890d42aa209e70d34
--- /dev/null
+++ b/Easy_Setup.bat
@@ -0,0 +1,94 @@
+@echo off
+setlocal enabledelayedexpansion
+title DEVSTATION PRO - ONE-CLICK SETUP
+color 0B
+
+:: Get Admin Rights
+>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
+if '%errorlevel%' NEQ '0' (
+ echo [INFO] Requesting Admin Rights for System Integration...
+ goto UACPrompt
+) else ( goto gotAdmin )
+:UACPrompt
+ echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
+ echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
+ "%temp%\getadmin.vbs"
+ exit /B
+:gotAdmin
+ if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
+
+set "ROOT=%~dp0"
+set "ROOT=%ROOT:~0,-1%"
+
+:menu
+cls
+echo.
+echo #######################################################
+echo # #
+echo # GOD-TIER PORTABLE DEVSTATION SETUP #
+echo # #
+echo #######################################################
+echo.
+echo [1] PERMANENT INSTALL (Add to System PATH)
+echo - Tools will work in ANY terminal (CMD/PowerShell)
+echo.
+echo [2] TEMPORARY SESSION (No System Changes)
+echo - Just open a temporary session with tools active
+echo.
+echo [3] PORTABLE SYNC (Fix Paths for New Drive)
+echo - Use this if you moved the folder to a new drive
+echo.
+echo [4] UNINSTALL (Remove from System PATH)
+echo - Clean all paths from your computer
+echo.
+echo [5] EXIT
+echo.
+set /p choice="ENTER CHOICE (1-5): "
+
+if "%choice%"=="1" goto install
+if "%choice%"=="2" goto temporary
+if "%choice%"=="3" goto sync
+if "%choice%"=="4" goto uninstall
+if "%choice%"=="5" exit
+goto menu
+
+:temporary
+echo.
+echo [INFO] Launching Temporary Session...
+start cmd /k "scripts\activate_env.bat"
+goto menu
+
+:install
+echo.
+echo [STEP 1] Syncing local paths...
+set "MAMBA_ROOT_PREFIX=%ROOT%\micromamba_root"
+"%ROOT%\micromamba\micromamba.exe" shell init -s cmd -p "%MAMBA_ROOT_PREFIX%" >nul 2>&1
+
+echo [STEP 2] Building Global Path List...
+:: Comprehensive paths for ALL tools (Dotnet at the front)
+set "NP=%ROOT%\dotnet;%ROOT%\bin;%ROOT%\git\cmd;%ROOT%\git\bin;%ROOT%\node;%ROOT%\node24;%ROOT%\python;%ROOT%\python\Scripts;%ROOT%\cmake\bin;%ROOT%\rust\.cargo\bin;%ROOT%\go\bin;%ROOT%\cuda_toolkit\bin;%ROOT%\tensorrt\bin;%ROOT%\cudnn\bin\x64;%ROOT%\micromamba_root\Scripts;%ROOT%\micromamba_root\Library\bin;%ROOT%\micromamba_root\Library\usr\bin;%ROOT%\llvm\bin;%ROOT%\java\bin;%ROOT%\java21\bin;%ROOT%\php;%ROOT%\ffmpeg\bin;%ROOT%\svn\bin;%ROOT%\gh;%ROOT%\msbuild;%ROOT%\vulkan\Bin;%ROOT%\pgsql\bin;%ROOT%\sqlite;%ROOT%\directstorage\native\bin\x64"
+
+echo [STEP 3] Injecting into User Environment...
+:: Set Global Environment Variables permanently
+powershell -NoProfile -Command "[Environment]::SetEnvironmentVariable('DEVTOOLS_ROOT', '%ROOT%', 'User'); [Environment]::SetEnvironmentVariable('JAVA_HOME', '%ROOT%\java', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_ROOT', '%ROOT%\dotnet', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_ROOT(x86)', '%ROOT%\dotnet', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_MULTILEVEL_LOOKUP', '0', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_NOLOGO', '1', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR', '%ROOT%\dotnet', 'User'); [Environment]::SetEnvironmentVariable('GOROOT', '%ROOT%\go', 'User'); [Environment]::SetEnvironmentVariable('RUSTUP_HOME', '%ROOT%\rust\.rustup', 'User'); [Environment]::SetEnvironmentVariable('CARGO_HOME', '%ROOT%\rust\.cargo', 'User'); [Environment]::SetEnvironmentVariable('CUDA_PATH', '%ROOT%\cuda_toolkit', 'User'); [Environment]::SetEnvironmentVariable('CUDA_HOME', '%ROOT%\cuda_toolkit', 'User'); [Environment]::SetEnvironmentVariable('TENSORRT_HOME', '%ROOT%\tensorrt', 'User'); [Environment]::SetEnvironmentVariable('CUDNN_HOME', '%ROOT%\cudnn', 'User'); $oldPath = [Environment]::GetEnvironmentVariable('Path', 'User'); $newPath = '%NP%;' + $oldPath; $uniquePath = ($newPath.Split(';') | Select-Object -Unique | Where-Object { $_ -ne '' -and $_ -notlike '*C:\Program Files\dotnet*' }) -join ';'; [Environment]::SetEnvironmentVariable('Path', $uniquePath, 'User')"
+
+echo.
+echo =======================================================
+echo [SUCCESS] ALL TOOLS ARE NOW INTEGRATED SYSTEM-WIDE!
+echo Please RESTART your terminal (CMD/PowerShell).
+echo Try running 'nvcc --version' or 'python --version'.
+echo =======================================================
+pause
+goto menu
+
+:sync
+echo.
+echo [INFO] Synchronizing paths to %ROOT%...
+call "scripts\Portable_Fixer.bat"
+goto menu
+
+:uninstall
+echo.
+echo [INFO] Launching Uninstaller...
+call "scripts\Uninstall_Global_PATH.bat"
+goto menu
diff --git a/php/README.md b/php/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..c5bc2fce4a7941e29af4f6884aac709e2bc22be0
--- /dev/null
+++ b/php/README.md
@@ -0,0 +1,172 @@
+
+
+# The PHP Interpreter
+
+PHP is a popular general-purpose scripting language that is especially suited to
+web development. Fast, flexible and pragmatic, PHP powers everything from your
+blog to the most popular websites in the world. PHP is distributed under the
+[PHP License v3.01](LICENSE).
+
+[](https://github.com/php/php-src/actions/workflows/push.yml)
+[](https://issues.oss-fuzz.com/issues?q=project:php)
+
+## Documentation
+
+The PHP manual is available at [php.net/docs](https://www.php.net/docs).
+
+## Installation
+
+### Prebuilt packages and binaries
+
+Prebuilt packages and binaries can be used to get up and running fast with PHP.
+
+For Windows, the PHP binaries can be obtained from
+[windows.php.net](https://windows.php.net). After extracting the archive the
+`*.exe` files are ready to use.
+
+For other systems, see the [installation chapter](https://www.php.net/install).
+
+### Building PHP source code
+
+*For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).*
+
+For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
+a default build, you will additionally need libxml2 and libsqlite3.
+
+On Ubuntu, you can install these using:
+
+```shell
+sudo apt install -y pkg-config build-essential autoconf bison re2c libxml2-dev libsqlite3-dev
+```
+
+On Fedora, you can install these using:
+
+```shell
+sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel
+```
+
+On MacOS, you can install these using `brew`:
+
+```shell
+brew install autoconf bison re2c libiconv libxml2 sqlite
+```
+
+or with `MacPorts`:
+
+```shell
+sudo port install autoconf bison re2c libiconv libxml2 sqlite3
+```
+
+Generate configure:
+
+```shell
+./buildconf
+```
+
+Configure your build. `--enable-debug` is recommended for development, see
+`./configure --help` for a full list of options.
+
+```shell
+# For development
+./configure --enable-debug
+# For production
+./configure
+```
+
+Build PHP. To speed up the build, specify the maximum number of jobs using the
+`-j` argument:
+
+```shell
+make -j4
+```
+
+The number of jobs should usually match the number of available cores, which
+can be determined using `nproc`.
+
+## Testing PHP source code
+
+PHP ships with an extensive test suite, the command `make test` is used after
+successful compilation of the sources to run this test suite.
+
+It is possible to run tests using multiple cores by setting `-jN` in
+`TEST_PHP_ARGS` or `TESTS`:
+
+```shell
+make TEST_PHP_ARGS=-j4 test
+```
+
+Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
+number of jobs should not exceed the number of cores available.
+
+Use the `TEST_PHP_ARGS` or `TESTS` variable to test only specific directories:
+
+```shell
+make TESTS=tests/lang/ test
+```
+
+The [qa.php.net](https://qa.php.net) site provides more detailed info about
+testing and quality assurance.
+
+## Installing PHP built from source
+
+After a successful build (and test), PHP may be installed with:
+
+```shell
+make install
+```
+
+Depending on your permissions and prefix, `make install` may need superuser
+permissions.
+
+## PHP extensions
+
+Extensions provide additional functionality on top of PHP. PHP consists of many
+essential bundled extensions. Additional extensions can be found in the PHP
+Extension Community Library - [PECL](https://pecl.php.net).
+
+## Contributing
+
+The PHP source code is located in the Git repository at
+[github.com/php/php-src](https://github.com/php/php-src). Contributions are most
+welcome by forking the repository and sending a pull request.
+
+Discussions are done on GitHub, but depending on the topic can also be relayed
+to the official PHP developer mailing list internals@lists.php.net.
+
+New features require an RFC and must be accepted by the developers. See
+[Request for comments - RFC](https://wiki.php.net/rfc) and
+[Voting on PHP features](https://wiki.php.net/rfc/voting) for more information
+on the process.
+
+Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in
+the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old
+[bugs.php.net](https://bugs.php.net) bug tracker.
+
+ Fix GH-7815: php_uname doesn't recognise latest Windows versions
+ Fix #55371: get_magic_quotes_gpc() throws deprecation warning
+
+See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull
+requests are merged.
+
+### Guidelines for contributors
+
+See further documents in the repository for more information on how to
+contribute:
+
+- [Contributing to PHP](/CONTRIBUTING.md)
+- [PHP coding standards](/CODING_STANDARDS.md)
+- [Internal documentation](https://php.github.io/php-src/)
+- [Mailing list rules](/docs/mailinglist-rules.md)
+- [PHP release process](/docs/release-process.md)
+
+## Credits
+
+For the list of people who've put work into PHP, please see the
+[PHP credits page](https://www.php.net/credits.php).
diff --git a/php/readme-redist-bins.txt b/php/readme-redist-bins.txt
new file mode 100644
index 0000000000000000000000000000000000000000..41c86c3982a1da0e532e10b7368687fe2848ae95
--- /dev/null
+++ b/php/readme-redist-bins.txt
@@ -0,0 +1,682 @@
+ 1. libmagic (ext/fileinfo) see ext/fileinfo/libmagic/LICENSE
+ 2. libmbfl (ext/mbstring) see ext/mbstring/libmbfl/LICENSE
+ 3. pcre2lib (ext/pcre)
+ 4. ext/standard crypt
+ 5. ext/standard crypt's blowfish implementation
+ 6. ext/standard/rand
+ 7. ext/standard/scanf
+ 8. ext/standard/strnatcmp.c
+ 9. ext/standard/uuencode
+10. main/snprintf.c
+11. main/strlcat
+12. main/strlcpy
+13. libgd (ext/gd)
+14. ext/phar portions of tar implementations
+15. ext/phar/zip.c portion extracted from libzip
+16. libbcmath (ext/bcmath) see ext/bcmath/libbcmath/LICENSE
+17. ext/mbstring/ucgendat portions based on the ucgendat.c from the OpenLDAP
+18. avifinfo (ext/standard/libavifinfo) see ext/standard/libavifinfo/LICENSE
+19. xxHash (ext/hash/xxhash)
+20. Lexbor (ext/lexbor/lexbor) see ext/lexbor/LICENSE
+21. Portions of libcperciva (ext/hash/hash_sha_{ni,sse2}.c) see the header in the source file
+22. uriparser (ext/uri/uriparser) see ext/uri/uriparser/COPYING
+
+3. pcre2lib (ext/pcre)
+
+PCRE2 LICENCE
+-------------
+
+PCRE2 is a library of functions to support regular expressions whose syntax
+and semantics are as close as possible to those of the Perl 5 language.
+
+Releases 10.00 and above of PCRE2 are distributed under the terms of the "BSD"
+licence, as specified below, with one exemption for certain binary
+redistributions. The documentation for PCRE2, supplied in the "doc" directory,
+is distributed under the same terms as the software itself. The data in the
+testdata directory is not copyrighted and is in the public domain.
+
+The basic library functions are written in C and are freestanding. Also
+included in the distribution is a just-in-time compiler that can be used to
+optimize pattern matching. This is an optional feature that can be omitted when
+the library is built.
+
+
+THE BASIC LIBRARY FUNCTIONS
+---------------------------
+
+Written by: Philip Hazel
+Email local part: ph10
+Email domain: cam.ac.uk
+
+University of Cambridge Computing Service,
+Cambridge, England.
+
+Copyright (c) 1997-2019 University of Cambridge
+All rights reserved.
+
+
+PCRE2 JUST-IN-TIME COMPILATION SUPPORT
+--------------------------------------
+
+Written by: Zoltan Herczeg
+Email local part: hzmester
+Email domain: freemail.hu
+
+Copyright(c) 2010-2019 Zoltan Herczeg
+All rights reserved.
+
+
+STACK-LESS JUST-IN-TIME COMPILER
+--------------------------------
+
+Written by: Zoltan Herczeg
+Email local part: hzmester
+Email domain: freemail.hu
+
+Copyright(c) 2009-2019 Zoltan Herczeg
+All rights reserved.
+
+
+THE "BSD" LICENCE
+-----------------
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notices,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notices, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of the University of Cambridge nor the names of any
+ 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.
+
+
+EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES
+------------------------------------------
+
+The second condition in the BSD licence (covering binary redistributions) does
+not apply all the way down a chain of software. If binary package A includes
+PCRE2, it must respect the condition, but if package B is software that
+includes package A, the condition is not imposed on package B unless it uses
+PCRE2 independently.
+
+End
+
+
+4. ext/standard crypt
+
+FreeSec: libcrypt for NetBSD
+
+Copyright (c) 1994 David Burren
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+3. Neither the name of the author nor the names of other contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
+
+
+5. ext/standard crypt's blowfish implementation
+
+The crypt_blowfish homepage is:
+
+http://www.openwall.com/crypt/
+
+This code comes from John the Ripper password cracker, with reentrant
+and crypt(3) interfaces added, but optimizations specific to password
+cracking removed.
+
+Written by Solar Designer in 1998-2011.
+No copyright is claimed, and the software is hereby placed in the public
+domain. In case this attempt to disclaim copyright and place the software
+in the public domain is deemed null and void, then the software is
+Copyright (c) 1998-2011 Solar Designer and it is hereby released to the
+general public under the following terms:
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted.
+
+There's ABSOLUTELY NO WARRANTY, express or implied.
+
+It is my intent that you should be able to use this on your system,
+as part of a software package, or anywhere else to improve security,
+ensure compatibility, or for any other purpose. I would appreciate
+it if you give credit where it is due and keep your modifications in
+the public domain as well, but I don't require that in order to let
+you place this code and any modifications you make under a license
+of your choice.
+
+This implementation is mostly compatible with OpenBSD's bcrypt.c (prefix
+"$2a$") by Niels Provos , and uses some of his
+ideas. The password hashing algorithm was designed by David Mazieres
+. For more information on the level of compatibility,
+please refer to the comments in BF_set_key() and to the crypt(3) man page
+included in the crypt_blowfish tarball.
+
+There's a paper on the algorithm that explains its design decisions:
+
+http://www.usenix.org/events/usenix99/provos.html
+
+Some of the tricks in BF_ROUND might be inspired by Eric Young's
+Blowfish library (I can't be sure if I would think of something if I
+hadn't seen his code).
+
+
+6. ext/standard/rand
+
+The following php_mt_...() functions are based on a C++ class MTRand by
+Richard J. Wagner. For more information see the web page at
+http://www-personal.engin.umich.edu/~wagnerr/MersenneTwister.html
+
+Mersenne Twister random number generator -- a C++ class MTRand
+Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus
+Richard J. Wagner v1.0 15 May 2003 rjwagner@writeme.com
+
+The Mersenne Twister is an algorithm for generating random numbers. It
+was designed with consideration of the flaws in various other generators.
+The period, 2^19937-1, and the order of equidistribution, 623 dimensions,
+are far greater. The generator is also fast; it avoids multiplication and
+division, and it benefits from caches and pipelines. For more information
+see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html
+
+Reference
+M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-Dimensionally
+Equidistributed Uniform Pseudo-Random Number Generator", ACM Transactions on
+Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30.
+
+Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
+Copyright (C) 2000 - 2003, Richard J. Wagner
+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. The names of its contributors may not 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.
+
+
+7. ext/standard/scanf
+
+scanf.c --
+
+This file contains the base code which implements sscanf and by extension
+fscanf. Original code is from TCL8.3.0 and bears the following copyright:
+
+This software is copyrighted by the Regents of the University of
+California, Sun Microsystems, Inc., Scriptics Corporation,
+and other parties. The following terms apply to all files associated
+with the software unless explicitly disclaimed in individual files.
+
+The authors hereby grant permission to use, copy, modify, distribute,
+and license this software and its documentation for any purpose, provided
+that existing copyright notices are retained in all copies and that this
+notice is included verbatim in any distributions. No written agreement,
+license, or royalty fee is required for any of the authorized uses.
+Modifications to this software may be copyrighted by their authors
+and need not follow the licensing terms described here, provided that
+the new terms are clearly indicated on the first page of each file where
+they apply.
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+MODIFICATIONS.
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+U.S. government, the Government shall have only "Restricted Rights"
+in the software and related documentation as defined in the Federal
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+are acquiring the software on behalf of the Department of Defense, the
+software shall be classified as "Commercial Computer Software" and the
+Government shall have only "Restricted Rights" as defined in Clause
+252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+authors grant the U.S. Government and others acting in its behalf
+permission to use and distribute the software in accordance with the
+terms specified in this license.
+
+
+8. ext/standard/strnatcmp.c
+
+strnatcmp.c -- Perform 'natural order' comparisons of strings in C.
+Copyright (C) 2000 by Martin Pool
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+3. This notice may not be removed or altered from any source distribution.
+
+
+9. ext/standard/uuencode
+
+Portions of this code are based on Berkeley's uuencode/uudecode
+implementation.
+
+Copyright (c) 1983, 1993
+The Regents of the University of California. 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. All advertising materials mentioning features or use of this software
+ must display the following acknowledgement:
+This product includes software developed by the University of
+California, Berkeley and its contributors.
+4. Neither the name of the University 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 REGENTS 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 REGENTS 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.
+
+
+10. main/snprintf.c
+
+Copyright (c) 2002, 2006 Todd C. Miller
+
+Permission to use, copy, modify, and 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.
+
+Sponsored in part by the Defense Advanced Research Projects
+Agency (DARPA) and Air Force Research Laboratory, Air Force
+Materiel Command, USAF, under agreement number F39502-99-1-0512.
+
+main/spprintf
+Copyright (c) 1995-1998 The Apache Group. 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. All advertising materials mentioning features or use of this
+ software must display the following acknowledgment:
+ "This product includes software developed by the Apache Group
+ for use in the Apache HTTP server project (http://www.apache.org/)."
+
+4. The names "Apache Server" and "Apache Group" must not be used to
+ endorse or promote products derived from this software without
+ prior written permission.
+
+5. Redistributions of any form whatsoever must retain the following
+ acknowledgment:
+ "This product includes software developed by the Apache Group
+ for use in the Apache HTTP server project (http://www.apache.org/)."
+
+THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY
+EXPRESSED 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 APACHE GROUP OR
+ITS 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.
+====================================================================
+
+This software consists of voluntary contributions made by many
+individuals on behalf of the Apache Group and was originally based
+on public domain software written at the National Center for
+Supercomputing Applications, University of Illinois, Urbana-Champaign.
+For more information on the Apache Group and the Apache HTTP server
+project, please see .
+
+This code is based on, and used with the permission of, the
+SIO stdio-replacement strx_* functions by Panos Tsirigotis
+ for xinetd.
+
+
+11. main/strlcat
+12. main/strlcpy
+
+Copyright (c) 1998 Todd C. Miller
+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. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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.
+
+
+13. libgd (ext/gd)
+
+* Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
+ 2002, 2003, 2004 by Cold Spring Harbor Laboratory. Funded under
+ Grant P41-RR02188 by the National Institutes of Health.
+
+* Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
+ 2004 by Boutell.Com, Inc.
+
+* Portions relating to GD2 format copyright 1999, 2000, 2001, 2002,
+ 2003, 2004 Philip Warner.
+
+* Portions relating to PNG copyright 1999, 2000, 2001, 2002, 2003,
+ 2004 Greg Roelofs.
+
+* Portions relating to gdttf.c copyright 1999, 2000, 2001, 2002,
+ 2003, 2004 John Ellson (ellson@graphviz.org).
+
+* Portions relating to gdft.c copyright 2001, 2002, 2003, 2004 John
+ Ellson (ellson@graphviz.org).
+
+* Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+ Pierre-Alain Joye (pierre@libgd.org).
+
+* Portions relating to JPEG and to color quantization copyright
+ 2000, 2001, 2002, 2003, 2004, Doug Becker and copyright (C) 1994,
+ 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas
+ G. Lane. This software is based in part on the work of the
+ Independent JPEG Group. See the file README-JPEG.TXT for more
+ information.
+
+* Portions relating to GIF compression copyright 1989 by Jef
+ Poskanzer and David Rowley, with modifications for thread safety
+ by Thomas Boutell.
+
+* Portions relating to GIF decompression copyright 1990, 1991, 1993
+ by David Koblas, with modifications for thread safety by Thomas
+ Boutell.
+
+* Portions relating to WBMP copyright 2000, 2001, 2002, 2003, 2004
+ Maurice Szmurlo and Johan Van den Brande.
+
+* Portions relating to GIF animations copyright 2004 Jaakko Hyvรคtti
+ (jaakko.hyvatti@iki.fi)
+
+Permission has been granted to copy, distribute and modify gd in
+any context without fee, including a commercial application,
+provided that this notice is present in user-accessible supporting
+documentation.
+
+This does not affect your ownership of the derived work itself,
+and the intent is to assure proper credit for the authors of gd,
+not to interfere with your productive use of gd. If you have
+questions, ask. "Derived works" includes all programs that utilize
+the library. Credit must be given in user-accessible
+documentation.
+
+This software is provided "AS IS." The copyright holders disclaim
+all warranties, either express or implied, including but not
+limited to implied warranties of merchantability and fitness for a
+particular purpose, with respect to this code and accompanying
+documentation.
+
+Although their code does not appear in the current release, the
+authors wish to thank David Koblas, David Rowley, and Hutchison
+Avenue Software Corporation for their prior contributions.
+
+END OF COPYRIGHT STATEMENT
+
+
+14. ext/phar portions of tar implementations
+
+portions of tar implementations in ext/phar - phar_tar_octal() are based on an
+implementation by Tim Kientzle from libarchive, licensed with this license:
+
+ Copyright (c) 2003-2007 Tim Kientzle
+ 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.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``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 AUTHOR(S) 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.
+
+
+15. ext/phar/zip.c portion extracted from libzip
+
+zip_dirent.c -- read directory entry (local or central), clean dirent
+Copyright (C) 1999, 2003, 2004, 2005 Dieter Baron and Thomas Klausner
+
+This function is part of libzip, a library to manipulate ZIP archives.
+The authors can be contacted at
+
+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. The names of the authors may not be used to endorse or promote
+ products derived from this software without specific prior
+ written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.
+
+
+17. ext/mbstring/ucgendat portions based on the ucgendat.c from the OpenLDAP
+
+The OpenLDAP Public License
+ Version 2.8, 17 August 2003
+
+Redistribution and use of this software and associated documentation
+("Software"), with or without modification, are permitted provided
+that the following conditions are met:
+
+1. Redistributions in source form must retain copyright statements
+ and notices,
+
+2. Redistributions in binary form must reproduce applicable copyright
+ statements and notices, this list of conditions, and the following
+ disclaimer in the documentation and/or other materials provided
+ with the distribution, and
+
+3. Redistributions must contain a verbatim copy of this document.
+
+The OpenLDAP Foundation may revise this license from time to time.
+Each revision is distinguished by a version number. You may use
+this Software under terms of this license revision or under the
+terms of any subsequent revision of the license.
+
+THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS
+CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S)
+OR OWNER(S) OF THE SOFTWARE 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.
+
+The names of the authors and copyright holders must not be used in
+advertising or otherwise to promote the sale, use or other dealing
+in this Software without specific, written prior permission. Title
+to copyright in this Software shall at all times remain with copyright
+holders.
+
+OpenLDAP is a registered trademark of the OpenLDAP Foundation.
+
+Copyright 1999-2003 The OpenLDAP Foundation, Redwood City,
+California, USA. All Rights Reserved. Permission to copy and
+distribute verbatim copies of this document is granted.
+
+
+19. xxHash
+
+xxHash - Extremely Fast Hash algorithm
+Header File
+Copyright (C) 2012-2020 Yann Collet
+
+BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php)
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * 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.
+
+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.
+
+You can contact the author at:
+ - xxHash homepage: https://www.xxhash.com
+ - xxHash source repository: https://github.com/Cyan4973/xxHash
diff --git a/php/snapshot.txt b/php/snapshot.txt
new file mode 100644
index 0000000000000000000000000000000000000000..62d0b15ac188184fa2adf7bc6f6ede8c493ab194
--- /dev/null
+++ b/php/snapshot.txt
@@ -0,0 +1,154 @@
+This snapshot was automatically generated on
+Wed, 06 May 2026 09:36:45 +0000
+
+Version: 8.5.6
+Branch: HEAD
+Build: C:\Users\runneradmin\AppData\Local\Temp\php-e122e17e-74ec-4483-853b-88ed221b3b3a\config\vs17\x64\obj\Release_TS
+
+Built-in Extensions
+===========================
+Core
+bcmath
+calendar
+ctype
+date
+filter
+hash
+iconv
+json
+SPL
+pcre
+random
+readline
+Reflection
+session
+standard
+mysqlnd
+tokenizer
+zlib
+libxml
+dom
+PDO
+openssl
+SimpleXML
+xml
+xmlreader
+xmlwriter
+curl
+ftp
+sqlite3
+Phar
+mbstring
+mysqli
+zip
+
+
+Dependency information:
+Module: php_curl.dll
+===========================
+ libcrypto-3-x64.dll
+ libssl-3-x64.dll
+ libssh2.dll
+ nghttp2.dll
+ brotlidec.dll
+ libzstd.dll
+
+Module: libssl-3-x64.dll
+===========================
+ libcrypto-3-x64.dll
+
+Module: libssh2.dll
+===========================
+ libcrypto-3-x64.dll
+
+Module: brotlidec.dll
+===========================
+ brotlicommon.dll
+
+Module: php_enchant.dll
+===========================
+ libenchant2.dll
+
+Module: libenchant2.dll
+===========================
+ glib-2.dll
+ gobject-2.dll
+ gmodule-2.dll
+
+Module: gobject-2.dll
+===========================
+ glib-2.dll
+
+Module: gmodule-2.dll
+===========================
+ glib-2.dll
+
+Module: php_ftp.dll
+===========================
+ libcrypto-3-x64.dll
+ libssl-3-x64.dll
+
+Module: php_ldap.dll
+===========================
+ libsasl.dll
+ libcrypto-3-x64.dll
+ libssl-3-x64.dll
+
+Module: libsasl.dll
+===========================
+ libcrypto-3-x64.dll
+
+Module: php_openssl.dll
+===========================
+ libcrypto-3-x64.dll
+ libssl-3-x64.dll
+
+Module: php_sodium.dll
+===========================
+ libsodium.dll
+
+Module: php_sqlite3.dll
+===========================
+ libsqlite3.dll
+
+Module: php_intl.dll
+===========================
+ icuin77.dll
+ icuio77.dll
+ icuuc77.dll
+
+Module: icuin77.dll
+===========================
+ icuuc77.dll
+
+Module: icuuc77.dll
+===========================
+ icudt77.dll
+
+Module: icuio77.dll
+===========================
+ icuuc77.dll
+ icuin77.dll
+
+Module: php_pdo_pgsql.dll
+===========================
+ libpq.dll
+
+Module: libpq.dll
+===========================
+ libssl-3-x64.dll
+ libcrypto-3-x64.dll
+
+Module: php_pdo_sqlite.dll
+===========================
+ libsqlite3.dll
+
+Module: php_pgsql.dll
+===========================
+ libpq.dll
+
+Module: php_snmp.dll
+===========================
+ libcrypto-3-x64.dll
+ libssl-3-x64.dll
+
diff --git a/php/vcruntime140_1.dll b/php/vcruntime140_1.dll
new file mode 100644
index 0000000000000000000000000000000000000000..2071f2814bbc6dac9a18b32c77ca86da09d579c3
Binary files /dev/null and b/php/vcruntime140_1.dll differ
diff --git a/python/LICENSE.txt b/python/LICENSE.txt
new file mode 100644
index 0000000000000000000000000000000000000000..89bc34808ca6b85055824b4c276778be7a376113
--- /dev/null
+++ b/python/LICENSE.txt
@@ -0,0 +1,645 @@
+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.
+
+
+
+Additional Conditions for this Windows binary build
+---------------------------------------------------
+
+This program is linked with and uses Microsoft Distributable Code,
+copyrighted by Microsoft Corporation. The Microsoft Distributable Code
+is embedded in each .exe, .dll and .pyd file as a result of running
+the code through a linker.
+
+If you further distribute programs that include the Microsoft
+Distributable Code, you must comply with the restrictions on
+distribution specified by Microsoft. In particular, you must require
+distributors and external end users to agree to terms that protect the
+Microsoft Distributable Code at least as much as Microsoft's own
+requirements for the Distributable Code. See Microsoft's documentation
+(included in its developer tools and on its website at microsoft.com)
+for specific details.
+
+Redistribution of the Windows binary build of the Python interpreter
+complies with this agreement, provided that you do not:
+
+- alter any copyright, trademark or patent notice in Microsoft's
+Distributable Code;
+
+- use Microsoft's trademarks in your programs' names or in a way that
+suggests your programs come from or are endorsed by Microsoft;
+
+- distribute Microsoft's Distributable Code to run on a platform other
+than Microsoft operating systems, run-time technologies or application
+platforms; or
+
+- include Microsoft Distributable Code in malicious, deceptive or
+unlawful programs.
+
+These restrictions apply only to the Microsoft Distributable Code as
+defined above, not to Python itself or any programs running on the
+Python interpreter. The redistribution of the Python interpreter and
+libraries is governed by the Python Software License included with this
+file, or by other licenses as marked.
+
+
+
+--------------------------------------------------------------------------
+
+This program, "bzip2", the associated library "libbzip2", and all
+documentation, are copyright (C) 1996-2019 Julian R Seward. 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. The origin of this software must not be misrepresented; you must
+ not claim that you wrote the original software. If you use this
+ software in a product, an acknowledgment in the product
+ documentation would be appreciated but is not required.
+
+3. Altered source versions must be plainly marked as such, and must
+ not be misrepresented as being the original software.
+
+4. The name of the author may not be used to endorse or promote
+ products derived from this software without specific prior written
+ permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
+
+Julian Seward, jseward@acm.org
+bzip2/libbzip2 version 1.0.8 of 13 July 2019
+
+--------------------------------------------------------------------------
+
+libffi - Copyright (c) 1996-2022 Anthony Green, Red Hat, Inc and others.
+See source files for details.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+``Software''), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ Apache License
+ Version 2.0, January 2004
+ https://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+This software is copyrighted by the Regents of the University of
+California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
+Corporation and other parties. The following terms apply to all files
+associated with the software unless explicitly disclaimed in
+individual files.
+
+The authors hereby grant permission to use, copy, modify, distribute,
+and license this software and its documentation for any purpose, provided
+that existing copyright notices are retained in all copies and that this
+notice is included verbatim in any distributions. No written agreement,
+license, or royalty fee is required for any of the authorized uses.
+Modifications to this software may be copyrighted by their authors
+and need not follow the licensing terms described here, provided that
+the new terms are clearly indicated on the first page of each file where
+they apply.
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+MODIFICATIONS.
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+U.S. government, the Government shall have only "Restricted Rights"
+in the software and related documentation as defined in the Federal
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+are acquiring the software on behalf of the Department of Defense, the
+software shall be classified as "Commercial Computer Software" and the
+Government shall have only "Restricted Rights" as defined in Clause
+252.227-7014 (b) (3) of DFARs. Notwithstanding the foregoing, the
+authors grant the U.S. Government and others acting in its behalf
+permission to use and distribute the software in accordance with the
+terms specified in this license.
+
+This software is copyrighted by the Regents of the University of
+California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
+Corporation, Apple Inc. and other parties. The following terms apply to
+all files associated with the software unless explicitly disclaimed in
+individual files.
+
+The authors hereby grant permission to use, copy, modify, distribute,
+and license this software and its documentation for any purpose, provided
+that existing copyright notices are retained in all copies and that this
+notice is included verbatim in any distributions. No written agreement,
+license, or royalty fee is required for any of the authorized uses.
+Modifications to this software may be copyrighted by their authors
+and need not follow the licensing terms described here, provided that
+the new terms are clearly indicated on the first page of each file where
+they apply.
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+MODIFICATIONS.
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+U.S. government, the Government shall have only "Restricted Rights"
+in the software and related documentation as defined in the Federal
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+are acquiring the software on behalf of the Department of Defense, the
+software shall be classified as "Commercial Computer Software" and the
+Government shall have only "Restricted Rights" as defined in Clause
+252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the
+authors grant the U.S. Government and others acting in its behalf
+permission to use and distribute the software in accordance with the
+terms specified in this license.
+
diff --git a/python/get-pip.py b/python/get-pip.py
new file mode 100644
index 0000000000000000000000000000000000000000..ac3bf23c2c6f7a95e32f7b08aefc646c7e71dbb2
--- /dev/null
+++ b/python/get-pip.py
@@ -0,0 +1,27918 @@
+#!/usr/bin/env python
+#
+# Hi There!
+#
+# You may be wondering what this giant blob of binary data here is, you might
+# even be worried that we're up to something nefarious (good for you for being
+# paranoid!). This is a base85 encoding of a zip file, this zip file contains
+# an entire copy of pip (version 26.1.1).
+#
+# Pip is a thing that installs packages, pip itself is a package that someone
+# might want to install, especially if they're looking to run this get-pip.py
+# script. Pip has a lot of code to deal with the security of installing
+# packages, various edge cases on various platforms, and other such sort of
+# "tribal knowledge" that has been encoded in its code base. Because of this
+# we basically include an entire copy of pip inside this blob. We do this
+# because the alternatives are attempt to implement a "minipip" that probably
+# doesn't do things correctly and has weird edge cases, or compress pip itself
+# down into a single file.
+#
+# If you're wondering how this is created, it is generated using
+# `scripts/generate.py` in https://github.com/pypa/get-pip.
+
+import sys
+
+this_python = sys.version_info[:2]
+min_version = (3, 10)
+if this_python < min_version:
+ message_parts = [
+ "This script does not work on Python {}.{}.".format(*this_python),
+ "The minimum supported Python version is {}.{}.".format(*min_version),
+ "Please use https://bootstrap.pypa.io/pip/{}.{}/get-pip.py instead.".format(*this_python),
+ ]
+ print("ERROR: " + " ".join(message_parts))
+ sys.exit(1)
+
+
+import os.path
+import pkgutil
+import shutil
+import tempfile
+import argparse
+import importlib
+from base64 import b85decode
+
+
+def include_setuptools(args):
+ """
+ Install setuptools only if absent, not excluded and when using Python <3.12.
+ """
+ cli = not args.no_setuptools
+ env = not os.environ.get("PIP_NO_SETUPTOOLS")
+ absent = not importlib.util.find_spec("setuptools")
+ python_lt_3_12 = this_python < (3, 12)
+ return cli and env and absent and python_lt_3_12
+
+
+def include_wheel(args):
+ """
+ Install wheel only if absent, not excluded and when using Python <3.12.
+ """
+ cli = not args.no_wheel
+ env = not os.environ.get("PIP_NO_WHEEL")
+ absent = not importlib.util.find_spec("wheel")
+ python_lt_3_12 = this_python < (3, 12)
+ return cli and env and absent and python_lt_3_12
+
+
+def determine_pip_install_arguments():
+ pre_parser = argparse.ArgumentParser()
+ pre_parser.add_argument("--no-setuptools", action="store_true")
+ pre_parser.add_argument("--no-wheel", action="store_true")
+ pre, args = pre_parser.parse_known_args()
+
+ args.append("pip")
+
+ if include_setuptools(pre):
+ args.append("setuptools")
+
+ if include_wheel(pre):
+ args.append("wheel")
+
+ return ["install", "--upgrade", "--force-reinstall"] + args
+
+
+def monkeypatch_for_cert(tmpdir):
+ """Patches `pip install` to provide default certificate with the lowest priority.
+
+ This ensures that the bundled certificates are used unless the user specifies a
+ custom cert via any of pip's option passing mechanisms (config, env-var, CLI).
+
+ A monkeypatch is the easiest way to achieve this, without messing too much with
+ the rest of pip's internals.
+ """
+ from pip._internal.commands.install import InstallCommand
+
+ # We want to be using the internal certificates.
+ cert_path = os.path.join(tmpdir, "cacert.pem")
+ with open(cert_path, "wb") as cert:
+ cert.write(pkgutil.get_data("pip._vendor.certifi", "cacert.pem"))
+
+ install_parse_args = InstallCommand.parse_args
+
+ def cert_parse_args(self, args):
+ if not self.parser.get_default_values().cert:
+ # There are no user provided cert -- force use of bundled cert
+ self.parser.defaults["cert"] = cert_path # calculated above
+ return install_parse_args(self, args)
+
+ InstallCommand.parse_args = cert_parse_args
+
+
+def bootstrap(tmpdir):
+ monkeypatch_for_cert(tmpdir)
+
+ # Execute the included pip and use it to install the latest pip and
+ # any user-requested packages from PyPI.
+ from pip._internal.cli.main import main as pip_entry_point
+ args = determine_pip_install_arguments()
+ sys.exit(pip_entry_point(args))
+
+
+def main():
+ tmpdir = None
+ try:
+ # Create a temporary working directory
+ tmpdir = tempfile.mkdtemp()
+
+ # Unpack the zipfile into the temporary directory
+ pip_zip = os.path.join(tmpdir, "pip.zip")
+ with open(pip_zip, "wb") as fp:
+ fp.write(b85decode(DATA.replace(b"\n", b"")))
+
+ # Add the zipfile to sys.path so that we can import it
+ sys.path.insert(0, pip_zip)
+
+ # Run the bootstrap
+ bootstrap(tmpdir=tmpdir)
+ finally:
+ # Clean up our temporary working directory
+ if tmpdir:
+ shutil.rmtree(tmpdir, ignore_errors=True)
+
+
+DATA = b"""
+P)h>@6aWAK2mk|@q+Bf6Ax8QD003hF000jF003}la4%n9X>MtBUtcb8c|DLpOT<77h41q#LNB_YQ&vR
+R1qCmH7xCatWSDK!-GMeUB&kcmA8%TzVIafH0G8xfVMZVxr5)N7+N4L_bCO3x41&6PkHm8@PUgM7noiQ&rW+DGAt%G|R{odw70-g-rbf14dHlGQ
+%hchY3n57XtZA&=^hb5v1W%RJ>aPU(6cYHqEdW)S|}J%M}PBoK%bK>-w1VG#-4Dhq_E9)|Oc(krAc7z
+kS&Gm2BDFT!}e+Sn2$z7U_|cr;<&TwWo0ASPJqV3Zu11|Kd{1#{B|NO9KQH0000800Wn#T;=b-V;Hj{;6RlJfPwu=@$q8a89E!$Bp+Akqn{uR2)&JzfI)F(y6;
+7(4LS`C*d9Ve5`pAFU%l;MCehh-?|MwN4uTC}{4}vOff>+T8a6`wi!A0S>2YjewCpG0Xz)wJ#AQIo*H
+?eR4m3en)8HLEPg(EBCiq&|N48(b-{Myt4h>h(o-vuFtLplD0sQQ!Huz8-YpLa}hXp}Lgg84VBjf_Km
+?MYMU6^9`%tAutwfl?IEC)+ijk?sT}I8qEcU3
+zCc?4bNI!FHI(;q-$V=5m^G1#S{KsWtaks-iHdXl>|5C+2P)h>@6aWAK2mk|@q+H@elhf7$00656000#L00
+3}la4%n9aA|NYa&>NQWpZC%E^v8$RKZT$KoGtAD+Y6@Eg6?WPf=4qD~Moq6--&0B|IIN4y1}t?C5+DB9B?Ay-9#7PSY|Ps$oy(K-!+
+C8rdsM4*2yE6hPUP@Y~B@P?vYW08=h@8K(xHx!*o{lUYE(yH26Piap|22yX|!FlPiuMvh}5FEqDqhHW
+fdqV4!(L}VWrB^FeD&Io3#_TsZ%sih}jqA{7tzXmY*)F)ml#zm9sM9(Izc95T4uv%p)NO6e0|BMpRAn
+&xx%@u87W2uEo2&U`0b_{H6Zmu*2SJcyG0+jt+i1IvM*zp*+Zsop?zOQP06i9cV>N_nm_8V#qb?(c!d
+Q3$QhCTGU{x@)bih`+Ft?+#JNNg-eL8tm?v<_(yz&4U^Mxza|kqUH^Or$P?CN~zFIYGCM1cp
+mz#dr7AvVV0lhc!-MDR|$=x&@Z64(aCZA8wf^O*jd8t-uB{Q--+IFzwO#1bu(mC4q5{*l#%6bUSmE~J
+-5E;y_W@0hDnO{s6Vm_TN$wk}9X!sX`uaOWj&p#`rb1+l&RR=pqiehW)`<_WZ_HSKSh177~ZLl8;3J|
+WwEOJ;D2^39Pa)AVx=lI%aT6$^k(RVNZFe^Xg!XX=u#t@Qs!qFQeY%R?=!R~;IQ-gcm(mkg=o7+Q8?g
+mz3nr$ggAp_WN(r@QgG|3(u@|JCjSvOV)?gagZ=1QY-O00;mB
+m!w?H$G|nf0000U0RR9D0001RX>c!ac`kH$aAjmAj&U
+%1)EvFVxRjSzi=C>J@cMk87yJyz4~-Qcqlg}hXv}1CF`fEox?~SG{pae%Dy$pBG>tnWs3{>FohpTZSG
+@fe-hAmws@4PFv7Mv`H@JnAXTbgKqwrl)IWaYE>+%OsO9KQH0000800Wn#Tn%mUY&Zb`0RI6102u%P0
+B~t=FJEbHbY*gGVQep7UukY>bYEXCaCvo6!AitH486}+g!Qroon8cWL64rqlQ)qv+oo+`Ix{4xOTmvf
+t*+w1T=EEymzS5G^8`)P&pIkbFlCdRayLg5@77)Z?^5SnhsFz(_JI
+dEKqS#uQGSCDc+Lsoerpw6J(yuVII!C7b}u8@K>~$Qkl)R)*@YZCXf1>s5u{}*Dxjlzn!*BNA;k4U#v
+U0{YZf*+QtvkKXcD38Xbmz%=um^@b_s$AqiT^uT@R$=eDrOe>avtjThKL$%qaEE_1M8{GPTuke_Zm
+y&Jz`<4^08S4R)Wo~vZaCzN4Yj5K?lHczC%CK)4|OqL3euh20@^eB|6r%ENS#e;>qQ
+|Up+{Pq-dvSX77Nx0NsftvRJHl6^jmn;B}uDnK&))@}??xvg}0P%1mskM&xZ(Bwb#WBI}#HycKPhx1C
+ty4EPuX!O6*{sdgfcH+|PPGLA*QtE;9HNm*7M&23Lk)U%?xy@hG|W7X=v>ZIEi`C5N$^G*(b?}t&HeC
+Y0*q~;~lswiYi3+Od3noKq_dz+`-WK5K-Q$6milTETN25Dr<|W;fa7B64JL4W@o^!{aM*|Nl~0OP1Ve4z}q~zEvvT6)62
+Xzo~x06-%42!5aZoAa^}NDZ+AfDR(5d>3IPnB^9K<5;X|8ljXaKV+pp`UN@Y7xGX=K9<
+Kx3qJGralEN=$shtF?e!L+NI{aoN{cpHDt%M5MJ##WCdvDzoG2{258xQPYw+S=<-1kK!Rex#{r{D
+e)^6c9s&TO->^JIWI*}<812jF5fsVj6+b%!2?&n=-~q|@VAlBK2ZJ340f1re5tnG4v;z@d!`~n96&Q#
+Unwu60FzoaJkW>yL983&Q9xQyZdY2TfoH3d4N8)HL#!HdG&}*=wa{>R|oSdAXkimXe+8sn7LqF29Fpk
+S)2L@*b!$3g+3=y*cUb=TUXz!Kr87KSOpsnLU((x2IeX)2Qr_hpGLF$O^iX`irP-X?hYA0#+*fzAMU4*LY6
+!S6&|?z=5mAo(EEzGIIH&jFU`K(*4oX+Q{z{Q{w*(LgC=!MfV!Ub}iEQFHs`tU5ZX}TV7A$IvF_6_fw(WV>_
+#XA#gvvg6-FIRG12NnYAWQ!+{AxJ++Hkqy>>o(lzD(|tyg+Fq03iU5fUH1L;C=^-f*6Rjk?0D=dT%`a
+{=07!fj$s{THtN7ON#s#7zx`G)dpz^{Az9afn~Qzn{-HL*uh)`&RzmTBn$$gD*Cn_vVNl}GDXS2|9kP
+>H=+VNeBTfpf>Q6reGVGelixJ~8bC~98niSi85zSnrHG%)>b^ux+~ugb!CNe@8gK>bGOJ$%ye>sUlSv+p22KS@DhL&}o8%jS~!R3(4kZO*D*
+q1D|ZyR5HHU5bK6MNR-5$p=XxuqwT06&YakH?OlP()EQ(DUP9yAM*UCk@62z?-wn_|3)n$Ey#o&d#
+qyve{tzKIoUBH?0aJ@P}P+f(9LIQOScBBYHyZ2kqSX#g))IPs+?$aR8aOPU_{7-63jMjF06LT~uyGG&CT@tm0|4-tK8?`f)n-WJLuE`ZLuXvlR^`fmNR;|0J7S!}(
+fb^<9kF26ieNgES#657@;h8&n%h%ma|a>t5h)ogA68(I+ghgiW-q48aHO_aOvDEW=fM+q_WIM=k8h3r
+MdGT0IITs-vujnNJveR;prrI+gYn2>0m0uw$f
+{U!v~<`yGS^ymq-v^4i4oiZ?BEN
+;eM=sQRnN3HO6$(-_eZkarp7TQrseF)7q8FTiE_C`dg{+idfw_jNH!g^n&d?X)RXe6}riDivENe_yo1
+~bFynBh-1Yz8!FCb8Lpa9Y!;=3AiR0#|2DTJL1N%~HiNTO^yzE!EK17ufaJ9pr{urOfcmccy*JjYWoU-e^lRpBz3W(;v9}6~bPhWrf!FCuZ`4OeRSr{zt?hI!H0sM1-RUz^yNCP5
+<4;#$fI#kuJfe;Ir69#1!uk$i#_5oyQRaxxyN5{MI+?Fdal-02wM>f#8v&d|Uo_y#Ky@?T?K2hul#9t
+h!k#bpK5F^@)z|s3*@;r$CtIA8rI>5
+F*E^sKUfxm8M9z0
+VRR_)?cHr;W6IATQBnC1ry%7L-V^I&P93w@mJg^sRFHp;XfV~Mo{LMWjiY63A@lFH-kmWB%snT&pNqEQS}z#3p=8uTwn1;!NZ5#kd7cCfYolY}
+dYIEj@j>I#VU^-uveauI>B;w
+?yM+jO-Fa(Bf?A0?iGDIkT^O80I|27L9EB~kW(@p$#D{B=HE!K^(##MvLWO&G-+h3{;>yxTME5Z@q2nuEpGy;;BJOz`CD}X0^zV;ts&POm<#KEq^R9JJa
+2CGB=Imy#K_8tgsM@YyLVB*P#FQvREIJ8^|2q4yDe#_#Alk|ZXCb?3AHYrkEsBRh@lb2x8ava4yMVOb
+;S?7cXeOX{j1_FRld!QSh|Ll^_Kyq2OeEi`l+K0fG`)!_X)e$C6K4DpvVw*JR0W#cMD3pqxE`9=29%K)8XV)n$gFG;!ykwS2F%07U(;HZO2!+^mG3Yc2aA$-Yz)Eq7O3Ws^UEx!BBoWo5Lk5CwSED_wB~h_QP$5!@J=m{yWt`9HAMhx*4KO8MC$NQTvzgZQF5X
+@&@sxYZl}&1p9qMr$j&OI&U@6s+I_))gha_xg?|B~P(Vhtvq7D=~BdFx1?VndARNbiQgsl
+-^Ep+j)rfFk*2&wA~BD{qq&g9h#obBFxlj{(5(=+kHz-R$cMPsao|_=3LoUEO!8QxchgZc<|RC`bV0v
+RD^2j|YvGN;IdKd8is_-kx$A@UCh?Rr#C|ILl(9$<)9g05##cxypO2iK#%P9eumv10S(M*x-p%CfYCe
+L-iX(8GT@(E{8+KK%E^^w}t3vq!--F=R
++38w0cZrfD-?N%V$iFzT0?TOe*NJ*O6!F|p(y2#wI%RAKD4QI2t^}^n(mW6Uth2|#y++sroI6T~pk-l
+_psl}9)zpTW!)=S#M&~t5IP02!pfy|f1;J8W3#rW^%|FfmoD+&QBEh?e3xUUOD
+%+|&|$O(lbFp_S5dchs~%VyrpT8T0$0Uyy2+ci!-{Qp#v-I(cT8`e(DR$gMEjoctl%H~{8$#PgFVYVybC~-*-IMNRs2i~m
+Hc_1zjO$ICbJ)xdLK5unq781R+26zq<6f}?IOsi*8)8#_YtO^56f71rtKIU!mp@x7`X2t&hR=ki-hs0
+}x2SLRV1GYc|HfDX64dNc`V?l!(Ecl)K8!WP|57ZVo#kU-|@5TUU$8F>^-VZ15vF?71+a88C`(x0soM
+Z!tZ}U5Jaq{Q(nTZi6W<913tqTRO2H>>Vl70^$&f173;{^onQXE4M#0DD~ywF1u4~{B(N)A+JMlmeyu
+(Wu0V*}Pjy90TsAwxRu)SVYG79)me)UYb*Q5ItZ&1#r8^mo&`bCm)h(sZ24ac_Gxt<-rprEW0A+*iB<
+@p5~kMnobjOCqyqT0(1|KeusLF)bzyBn{J*sd@lB&K?Am%_|0-yu$(7$cR`KrQ%JJ7hq3^>_4<{nNJh
+{IcAjkX75lf-#7r59z*26mlfI*twU6$V}RXMUA&a1c7xcAg88sFG)Xsevp&9qai|66cjvB6Rdt@6bzA
+M+#wz^5UYnSEZHB7~zbUu--)*yjkPbW`_w|9)aT`r*_0iZ=sP_uUug$#8pryQ1cW8{=gczTMihcS*%*
+>KaWtzoub;NLo!>c(iG@FD%Ll~zf82PVbnue}e^Lmx-ny7Y5!SMZP=up!!!0PfHk=A<33i0JTdC%v}5(a{g2@wiZ!yOs?1JRfXu5Lru~
+F8R=eA=&gVbI;8=E0+2!F2D2Mt~M|B^q*I3RUZpwNK>()ith|hda&;NF?xIPVoz^GDqU|h7fbuHw+D;
+0=``eF|Ct!d=gs|p3=u}m;^Wo(z>g5A<VRyBPJC)@)b$9{not=p8uOLOGHdy
+A_)bLl`%k`7#@gkUp_iK1n^Ed1h$bbWrSiF|&W>4YdH}zev7%XP&;l5DSpc7F!OY8uDE1t>E)N&~>Xt
+6i3#$MXd6tRD8h(dEb@30aN>u*5Mn2E`RW?63t^$5#YG#O$I$hJ^&xu&<5#{AI9!J<26lZ)G%l`m=E1
+~BU<)cg;%PHPM0R(;XUT>CD>zd9jl=4Hj95XIsveXvZkIXebZ#yt)h6de=`IaNTk0_V=nk|B7S
+9tr|9vHD`Z(y)ryS^W@97SsNwEC6%gIYiF}ULRcCBu$3L%^Ho}5KjXa1qPg%a!-?k2p+mq&ijfghWnwp@z#mJhwAnl;QP`=6
+U(r%^6E=Ra1Wvi=)6kh}EDuddUzs1UnU&F9*}lNryv;F%#Hd*X6$h`iw80ul`ns~dVg_#e(~w!>4%SJSEu7M8Zm+}`p2~Wuw0~RMXDl;twDMR*SxNET|p1F8LT`7`A|
+KAE6_S1X=QCTXmc2>Rn9j3H{&paSbd!(t`UEn$^v1$6yvJwTu5@J{ZvzeQv2P(frp?EyK&YSyC!WpdN
+|f%BOlTjzno}EUr}_8IqYyuaATdR>d_DuErm7CJFHtT?Jqid?tm7B@GfasMv<>WcfTzt5pZrdY2{baq
+UN-oyA2MD>#7ci<)$j(uh5V4uhm>SxYP@eWasjuS+;W+K!rf3(mhf}edCGjuAT2bxtR~&({N+e82B3x
+#CQ1GD9A17Vo{OvEnBXE1eWO$8ns4)ys*qz+tE%Llqc1F>uiS503e~hJGB3p6<;w<}Pr%%zc~|U(M9E
+7!eFv2e^6^$PpH}j1mANY5jo(mU12ykmtA^+f9r0bBQD^mD>?Ag&j@s_~h_uRU2PeN;^73%xz?Ak0j@fYo;1{<YwB`kxqN
+l?`?jvzQDrcVpZW|st-yuugYg?+UIDrbNS-l+UXaBezH5MtxjXZ44bVq=KT5XTp#u5I0zhbMv2vx{D*KpicfQmZKId%+C8fv(#iVc`8?1C0@x~Zq!cY)nqa`J6o4#Cz51cS9Ph9MCe^%%1X#QH(UT$VW=anjpQsHls%bn_v+^Eum@!KfYmCjm{E18>IuVkiwR!lBrh6(2~i`A!n5nKcBy+XdENnsOlw;MG31oNv3CKZ{EK6{>AI$Z|~l`PF_EGb%FI0
+Q)+C8$+_U2XQ^6?gd7jduBs@V3;O@kR^?3K&(&1i{|kMYp9y^6(Qg$TITsRxa+xV%xANh`N5ZTzL|b7
+%Ssr5YecEAhCY=?h^{%i{3aSt$xmE|ecwg4=EUOAxN~pyyqRDJB6O;L5Iuk0l6fn}RwC0slrdPV-eW=
+9l^vK34U%^Pxgx61|(|D^srFx@m6+sbat4vxeI6zxToKsQl
+zqyf~`evgUBUPbK-yJc96;E;yt#O##E%03g3AuZq9YPSn;s8u976ODqGJ&3Sf&h|Jvl9VOC~cz`)bE-
+8XHgz`lZ$AgOd@1UNP}CdY}jg{)CK)orAs<8I5Mzn#tx_=T4xZl1jnf>+ivPYRiH1To{8w(Lb$9rqCZ
+dqsYXO{5w60`}p$yrD~b|XmqYpvDekMW2e;|eZCSOl-SE01dQ0IT)~4BlB%HS$53tYgj4F$TM`a
+86MI0K&VbxUVxd&Dk1Y1%+m~QyCFxm%LA}{he!c;Zm_}41fDxHFFJ6~&L-{@+C-byBZ6!-^vot
+k{YpnMK`hY8^MCkqR6YxHnvmz<*6A~YLl7{?0+iiO7R&m@?vr*Aae!&^_H+y(Tr5&k5f=wi`BKs9vd*z%cH|e%DO|#0
+YR$nb#d4S(fWLvnrO%eHZmI)VithP4f;C;gCoz7$#(6ee)m!uaYYUIL-5;KfUY8s2@X0L8&ThA`m8*L}A5nm{}l-ffF=`2WPg2
+W{;RuX@ZE`o@spo0G`!lK(MdU_(kx<$_*k9byp1w&8$O~
+iG!XFUUub^s}Rs{P=&B1K|*w83~WDh~c4`Z^syB5Kt&<1?o0kL@7k7ekoWRxP2cV=FX#k_m>qjaK^>AkrrUiEWfpgIHpO62ySUf#f!a-r868uh_0psra`eNzNBH2$5P66jXRY|uQ2GLE>WxrWGoeiRf
+PO19#NWi~l~vCI2Hiw?hPkI)b7K+mdVc&K#?f{hV;3%rA!5R#CX1Gm!HGD9m4#x$k`U
+llRQr0-5X<@N!hxtMbqvppWzCg}Z}_y0fRfmF_}q^cHPMlJbDgYt@_3zCy&Tk>4#&;jIBRcRdxSYFTf
+h!7P0yFE;4kC`!YeE$+EQjQC^k!tPJl8AGky=%Y&J?LFx%*S)^q
+0Y6UskaF}<^XNeHLoHV~qINKA+7{Yrex>5ywy(6_p_^jwy!?YXK}cVnXS%UBlF=MD`vZo(ehDD6;8Hf~rPPl9fc|vap|pzvs38Dp$EYpDY
+sYi0Ca+4xNl;f`qs;DezEn1)1kmW;ULHsIO*Nfg=c6{-}^NUx>hvyd;FO#QF
+o<6_m8*r1EC9uFD+3{SFl3)G*7ecV?nU0F%buiPQm_bu*orQ-#L}3|SD_>IFc?_$dqAG
+(wqv?`=r3|t@bm8VgfEKN!uPGsVz(~o-fJYjZKU@+QOiiYMpoykDU`yA;9MME{r9@bQM$2fQKGvPpg;
+_;)5;Ok)p$bJ{o@(q#KG`m_=Axq_r!!Sq3-$f
+rE#f;1h}sOX-Zo~SJ2qMoiYY{b*)aJ0rWzJI#a`%ubakZKr34^j#@7E%y!hKxMsV(~qJTfZ^O%-%`AD
+dkG7YeX_a4G$^5%bW$sThXb$tg|Ya8n-}bkO66>cFDN8qF$St;J!nzmiY^}L;0nxevP*%r{0PrE^{|G
+MT5Tj*UC+@j|b^fyb^EY2eh%GT99dlD1rdXf{bQTO~T$jx>_R{tf!$?s@I%1
+zxrOd*2t)B7F0?6!b?|l?I{jxw3Er#$vRP^F>575{4qW>78oxrI)cRm?rJr@rAr&E69cFY2m_!s4;Bt
+DAV{|kwq$;=*!Oq;qF*MGJ2JDb%`p*Kp~U_)6pWtybG&6xrGaP>Os7mt}}=XJg|0b&~|E571~5Unc^c
+SB@f3d3$iU?I(05Z12;sGgcSOWCw^{4s=T-`Kk7Cny!4YWF|T)tamb`t$oRbEC?Asp)-2b*i-w#Qy?F
+)ms3^8tc8^zxnRXoZs(tYF9ti8lLH29_J&wZhLWC07sqw;lVeLA5kzMk8S8K@|Z^JC-mz8x{c{MCk+m
+{rO#cAMW4wVXCeCS!_YwY==!#I>(U(08^$fiWbfJ7fk^zz^tA$Hl=N#Sv8*?OZ!p|B2*|Q_UdL~;Pq_
+mVWtRy3pt-YFB3F9>TY$g`*Pu_Q$V>WaCyaB|8LtkmjB&<1
+y{wOHr7#h?iPm|1HRqNB<%!~CPmVAW)K)!#iCM1f^=kzrmW)GNk^}$VlxVYU^JpnB8pbqdRxgT66vNas#?T(Ue
+vr_jYj5~23y9Jl9hdy70Wo2_FJLsC$(1^^s>k@O^XWS+ogqn1{TM+*vX6PeMuCUcgOjDDlX*x$9*Xcf
+@NBUQJP~@9%rHax|Ah@v|Gktj1Zn|Pphh^rv2w{A+Vo{ZI)aV^^fwrh!dGiN0Xs*wso2{N5o~Bq?J0j
+E`&JCxVFoGJ-ax${Pp_qawylGL-d`j&+!DDJ-B0&s)m0uS0pcBG{xubW;D8r?=_ttSU_U#$t&!>7O%w
+h8j#j;o{WA;^8_0V&&L6M52ixZ)nqjK>GI<3*}Le+e!Pv?P3YpLJgd`_!+8)pk~n(xx8$k{u1U
+_shEkoit;V0nEw`w$sMy*)cWwacQ<$5*@*7FapUUC^J&v|$PgN_hGC^y=#D6n^t
+M7RA+*xS!I&-qA4k3JutpPfYKm&Yg3<;D5$4L}!!51aswMj5LjmN#lSjw13!Q3Q>E&@L`Np3cPkcz-J
+eB*1Q`V4M6Z;<|=Q+SYhlh`gvaahCo=k{==naF&T&iKuzOaL4rDj5SUi{SW<~F%RLR-p600@t>p~Duw
+*Owo2Z`RRXrL-l$?*Eu|Pshp|P)-g!cPj$ko_Isbz7-Gin{SjjSrmr(hLbn+;e^j21KQ|x3}$yNGw92
+{W@NwLVYy`YESQdYo>LA>I<72-&hYj;1=q$a6CJdhg*IRY0tv}Pda245DMVwhAA2H;ywQHGcDbNZ3w(
+<1OtA!-4^ar1_G^^4q#q>zd?gH?452uVS)4PJnQkqt1gdJ;$|0uRJ0_#mrwTq?0Iw&ETU2YVnz67g$o
+Md1VC^!OUsK@f5BmlndL`BcRzcJ%%6*rQ<5Wmu@nEUm|&e=5G881_L0BhM{F9COFayd+)LH{`CSEgua
+dHM(Z2-UF81G&mM2guh;ge=pK}OrNHr*81XN62_1}cz0(jKL#<
+K$GZ{bz0#1{|S9Zk(YJ+U*+?8alCk<~j0%4%
+l18#J*#2(10{CdO$*Jk2?}-P5H7ws3&Bg><^DYNbHX5K0JnrSgM`FCN9T_vB*+8=uRfRo&J;d8!(S;Kp-+>d2c5sR0oe=3%TFrV<2bE(cDfUc7C(m9i
+7QpAhqs-KDa7qhiwfRmm_4B`G*JB3}t==9U{E;zeKcSF%^8AO#Z#;ifBuIv3(sJZkHc;qYv{pqDVv8C
+u5ttv9WvXk%x}5A8Hd}|2_t|u>MVHmVjV0rWYjZhgNRE#ArsTkIPKm%ZWsTRSDFi&Ki%2HOVjAke5aS
+j+8m~A6YX8e|m3{6yy<1CF!`Y=pmDc;V)nJHr$)l{Ys=NB{cn;X%h14k=tXJtG2H#_SqJB)+BK!ocvD
+DSR<4$zA)~p~(wcv?X)`k6ea`UG}o2PPtF3u1xzOvgHghmLq{6ieysFrEALEtJC>+>KF{T_#cI-+JEL
+kKn4i6AG0@R1Xx%<_yY{|1=HWA}(r2W!m(f{lf7wYMkun!w1IkOAb{Y#%gu6ugrNvexf%FQgm3LKg|>
+#2wWTRLOBCN&o04-I@wdCx>OqLD_dD4VTGhJbJ5Frkc`}DN@TGC-kfF#6PEdR=6$UVCC3>HW^Y6ch3z
+->8TgWodM-~CE9X}Wetv@eubM58^n7mWmelvmr}x(Qq%@P*1jpTeFs=@Q6Oe7*TmwWNiSk9d1D2ch}FD#T;pXrMZvfm5w$Gm`PJ<9*N8+-T%bI_2r(3l
+vYQiD_7^Cw9F%tMAm-{KK;8D23q?vBto+iRG{xF}M&0r
+X9DARb-B~z1{({F^l6Q=`9`&tb^Fc9z90h4*qWbaO3lOLHnUS@iwc+hTjj5T{#YKz2Wr>Hd8Rs_QKtb
+o4EQCfohvOj6IP$%Dc@Esqe7Lexmg+*Vu3Op#Q&$>}T49uBiiFAQx||Y5lxpd)wK0VRiAmdotAgd(6_
+^VeG44kUU{=%nS2g_xU32u6;A=6efK;)lF=@Rous#C=Dsn80_>O|2-0k)*40@n?KJ24Ya&O{2CxV+231_^jb&>B9G)Ro^(rg0vj59NQe$t=4%wyQqz04+&*^
+9l^%aV#`Au^~o{=zvtQQchQwf0ims*+rJ9c{ptY7Z}m)F|wiFwc4&&d)sG(%5#dTJuQLt^P30SH(E^w
+Mun@T!`-!s`!;w|BmXMGBU`sDhQ9TmS0i+DPK9-8>+Ew7veK}RSor7u&lnI)l~f$~
+TGP`5`r)FgC}nQ7C%6wLWGJitTKX|s%14Y>{sBfsF0WZb2#D;f3jO?R7QPCOb7R)Ul2sxR_iL^QTX76
+`wM5_0HN*#|_7OEc1AaW{5MJs3#fK{0LG?scY;mM%m%Vb@V8a@CK*`h9KvCNF@(20ERV&x2reNccY}a++nVDn<2$FULs@zEe%FgK(l7P7g`LlE0P}6sD^8E%9xU(^7n}taeUsjkPKOgZ56kA;wHHd6zvwO-U;$fa}%==qm}jiO$8z
+oScQUFLai(?D1_wr{FEy~)wHe$(dP(=Kwk+qoMeNojmx{8gu8*D55v+t4r&czK}ULtq-
+Hp>=+?pCX5zZrY|B`tXtg2+E`Cm@n7TSDKa1E)a+@7cMOhCL9(7BwHhP!T>T|EWQv=}c)p*hYv?Zxfe
+jIjfHL)>vYLDr+#p#DGbJKh)N4>Y5LV}T_v&OBk24cA8)Gtz&xys85pg_I
+Q2p#+t*pM1W1kodj*twPwakmvjveboYAYUx|0R$Fr`J-^uE>P;wl+b-WTWcM3-j$B#^)F(7&zOhuO+2
+lz(=26eSv+H!2%PONH04`l-Prr#0WY1#OeMu+&$#NkRR#TefQ8t3{pS$+i|te6MA5hp0g{eVYA!yq}W$To+k
+;85lZCPYNBLacHV+zwmx7^EUC&_owmBTDF?Dw@8ed1I{L{4fl}M7~0*C(%$1!E^YL#8#`#&4w=}pV0!
+1~Nq8q~J&S_W(Y_tOMc{u)hTPO;aZ_Pg81v4FgX!?6JjGjiBI*Bu+DUWaT1v65>r&0$ytzX%w!Ni+xi
+{s$jNg=L`3713R;o9D{^7s=^Cju@&=lWrb`82zkbOx<|2G$8d#+{mPk)aDSLTbIqlJj
+Cz1Oo~}PvH@uup|NXl;!rcQR{dN8b8{uI=}`V{D!u3}%2d3!dmr`g?E8hQ=EX
+xX-R@Y|h}<)SNTen_Iv3U^m8fp?KI$ZPYN0cy_w8!`EEAxl?D*3y;|s_C#eOO~=hRr3V*4ErvV=61Fa
+%XEsdjM_#WTCgzzvq>f7(jBaK}sDRi&oAl&{o{zSQG%%NUG?>T2796bzUCNrz4$9u06vg4D#Z8e|Gql
+$voj1|?k33iR$HB=%-*nqEorZSTQrboS&7Y?!PhMv_vucKFdz~2rQjQHZh}7fbNNOBbfnox$-|0azPW
+D~K5rcqz!ym*K17SE(M+l;UKvl<8tqAZqV2}fyJkyiK@|!=;7Iv0$D7EI5rqSFR2p-O#_o+l&ZbWOk6
+ymqvew%46#Xkhf*bzf_aL|{=?}SO)G9a}d96#tyO?B<6ou8>WHA(dSv^H57
+iEF5#ZY5U;I(7lN~|c_i%??A;?#QZ<6yU6B_XlyX>UwzW;$H6pIE5+n~|4n%
+Z3FoojxMXukUo}bUe`(oGp(Sz=HfFs*lS2G}MwauBetw>-6{c%QX8sMnbd#7$j9N=NDLv4eD1FG$rTB
+-ec>wzAEezkC?mP%P25r^&Ho0#g$kc?GmIj$Ts@0_US5
+9{a0HwU7Dg!GzA~chcdus>C^YKw*4{h^g0gRjCyxqs;|kd`=@1V?v$`nK$G|E1i42|uD7Clk8JPvsQ!
+gP&Vv_)|MAj`!ij4KpUj_i^d{1}#j963sGFnj7vB)H`?r1F=7Q}j&AMtZP>AqskyR@6aWAK2
+mk|@q+C{Jd2|~j005?a000{R003}la4%nJZggdGZeeUMWq4y{aCB*JZgVbhdEGtjawEBM|Me8`Y*He9
+2X*T_5MP5dP34*-MtqNw#%r4rTMk{kj
+JpwZ~>20hO^{}jqq5of6qYb7I5Eb?qUUu5e-tb*`9m`nfY=z0+=vCN`%BE`FpSJ&eGhig&f8&PB;Uaq
+pd5VJg6iXhz-i#VN~5G5-6~%BlQ=D8o(9PsG(XB#G7k#r3xWy%$xka87C3Syrc#3orZAELc@iXvn8
+k@y25zyCM`}IQ6NEO=0G_SYKq#1b5{Wb`L?l--jYLMxm;RCGc}GVCb26E&i*+t16EpiDg&qN+;pj*|3
+$t_<&sRaNWbQmGINdO->6F-=SW`b`3
+g@}{^zbmqwo5%2}$g)J4hT$TJ(}9@7F0Q7V0gSnlLBWlS%?dY1x4iz-#rfpy_4(QF-@N~BAl@RVAkiq
+Ije7w6Wx3C2hMs;d|FVvAxs+*P2Yi!01W6oSmS63I@E~&qYpZqso}V^5=5e_20qH7B3~7in{x~piJ}~
+(X#3l5R`K46rq-72SY8mAB>y?2dRT!*fM^oHqiz;{zbTO;qY;+{xk9scxg&S?!PhP|4qw?zta6pt)h4
+SG%$#UN=V55Ru5+31eT#bFBRGvtDd8Q?~UVt2maM8=Xf4K>UKi+=P8}e)
+a=l|dVE9oP9LQe8NO9A@~f0fHw{Aq%W2o@8;jC%wWMnWnP|B3?+=#i$|k)>FA`g49^IHR&P1Je&^#t4
+sR43rluLR}idq6YL;pTEODqSdib^Z@o$Honqxfjz)8GJ!#Qs(<97qooDUaUe1{wX-C99DDIR&2s7W#T
+RYu?VvO7hjhye+IcPgsbSy$a~7vPoS?5(NnG@R60*n1GzrrC@pZnIecb0T36v5S@#;L!v%F{Jm0mt@_
+3MQcQ`l`JIU%u?PrP1teHjNZsw(2p0x@q&7^f-sL^%=^xI2oNTx2`L2F-ghLq@lSxU7N+z>`{q*zl?L83a$cVigkER2}>OBT|3RCfJ;nFEyO94Q>q_spbAwxMf|f8goK6-#KaGH~6t+952Lqsz6DCon7UqwUukf?Sy9!aU>((b^s<-X;B47
+WT@c06eui%0vQnQjPPtHuRqWTcK{*(HDmqEtAHyTjcJ#C`{1ZHVofU8c5MSL*Q!88l-dum{m(Sb8EW#
+8a$rn+sea+ksGLl-jX5)8LnYO(HFYq{E=cdFd~f$0TG;p1CYE@hiG5!KLqdN{MB#k1hHdWkeS3&z-fy
+?md@>Zqp8A%?JV44O7EZlOL$cG@c7M@neT>hqqtDI6tL97l~&bCuytpB-`IcRMW*7wu
+><6*`Qns5L6KLLBfYj4j}skHywU;n+ML;ojPoY6gglEwY)KmO})fBm;_p0`4Hde921I`rSO=D&MGy&E
+`l2W_P%_AjitC|-~|&%c-2J+I>n7f|K+)})#B4WsNKyaU>VeY=7
+9)_m|x4rmAi_6wFdphIuAzD;p?;@KWClc1}qU;B!cp@6km7)O?x;RC_y~2{BsdY#EiEU7)XmIFZqHrX5IUV9>=;P{>|m
+v~rNkAVy#B<3gt5QHmLWKm&EfAkdaGP(&~G!N8o!0*yit_j8&bd||v!{hFPJE}xW*&16IS6u4Hjwz5@
+>S~3b_Z2&&TNrGy(H9FaFon{Z%4E@C1k>*SfvM^ldN;{IZ-xrZ2gUCQ>vDpbM+wB?|Pa2P4G#XzxX`}
+3;5sou-LS9$>d`24r=SHsBI3-eU8dxpbHt!{Q!qMy%$6I&Y-7&9z>x|%os)bN?UcWMF-|YyBoBOeDv(
+%PBwoC0oZaWy7x2oJ@UebPM*9`?1$5{-3&
+mVT3Kdvq2|SOoDEAV(q}dmWn?Q1O3AoAR3cX*VuLZUqNqFbKq`(`s}YVI*QB?kvW^Y~J`)nEmPsN~_7
+Ut|6GDQfq1bOm+!NW+gxn#0dtBt9a$t&{7gc$EiN^x<1A%6YkZv=1vf*AqBqT{7jGK^<&NNmCPocZ
++~R!vCzX$jcbjOP)o?)8%qEHbY^W$FJR>g_-n(i_U$CK=DXD)xcax4i1z{{#BO{d%V*aF;6KQeqI|2I
+0vKgc}<=R>FICetr7#^!n68h1EGuvYOfz086lIIxfkh7S3
+=^wD_5;cVneRZ3I8||XhoPkRS@9}crxC5@?#{^cJ~R86gB+w+klqGL1~DhnU$SV8&c}jX@vu2sJy-@C
+R4$@5x05;XF&!Es%|acn57rG7bo~6j8h<9OD2lY{LA^jSy@7n^sa1ZCnv9<`F=7CHc2#*7Z7t}vx$VI!0O0_|$4F$cykT_N=bCLIGS`cZZugEc$0Vno@>pKgG#jn~U3QZrfqIKd<
+tpTrMY?fO6+F}qI*!Qj*tg1Ix$8_^m+*Y_6W_jfV8VyWX)h^fe~^QxvivD=$z
+9}^_RgEq{wVfg47qDjDr7b}$FW~39>SUT!qO9j0Tw3LMYp1#+H$;VCw&iqpqehh9W;1W
+gsZ%-t+OC#@5a_mCKqUj9-$L(C8Uyca3aE2%_V9%6{U!F<=@;6&g{%N+vGr^Yu@C*s`3(Au4MpSZ+QT
+bX>#251v9ibnGXM4*?1^FfoT;DQJ)yH{`6VNXH;F-`f{1th>#3fJSha0LZaL22S*58v;
+)#^%ZVgMFA&!tRnjZd|OBKnve13Et|cljE$pf$O6X6q!`v^w{ZL&ccof^@UBG_>C(YTUM!ed}^?R@Hg
+@D?O@RK3{E&=J6ao1hAQ0`r#bHfzTEkdTMN3u_br`?STxJtk9DuwrgemT1s3Cf+-8H@wCSE3=Wa=nfK
+4;e%r1o>;!WZUeLBWxqw|6f$<0M#4qd)+Qm422-GB3pgA|_0fp0Ao@vq^|mK&dI&a;#Wr@ua~{mNV_sYR?tRA3p(0`bCvlqG0`@+y0d)i*9$%W52_3qEw0-)~arJ_4
+oJQ=)FnTL(%6Q!FNjs;v~9qv2MF`!st@hx05Wx5q*%p6e)l2v82ej*Y}AT2h5jOvBX9$;zR50WnNBAb
+@AHIE2#y7TnBPQ;2mh8_}Z_4IO$}1Vj!40Bb8qz&?~JJuYDV=;Q<8Ckq_Xf&zAcj{9^Kr^p@jVicRE3
+l5b=Qeuuiu@gOJ&R(XFQG!lrfsI>emBL76mUYfT+
+dWP>C#SQJN;$`mf885_(Inhl)r(lI&MEF3JT3^@d86<`_UV4Rz>Aje*4HMpwIOlpaUL;1_}tcejRaV&
+;kmS>92a66kq&oQ4URG~nn$dNKZzEn12jhWuGbiGx6sSpvuV3Yu;8f*0unk-8Xg`cs0DNd;z$<>!Q-d
+N&?cLT}5aYi`f=z2nXOsCa^E$7CrF+;*NgAUK2FY#*bxB^3Wi
+*UPEQ)n4RU-z~uC+f+|7+<;5432}fSIU3Km?z%-7?f2@I$Ee*bwktvL4z^*G#KE
+FT%?ivhQK{a;MT~iF{=R}fO@sa7#t45sZp77f~$0Z;q3mxJ=~=_i_u5`rzI5&Ba;%MDm$kvAF`7uG3n
+{~JO&%ixqtgeR89ks@5@yOFJV1Wjd
+b@(o|lEmstcz3ga9UXi)I@UVt*b+H#e^xcqpHE(&UcD}5joE{7H6-dtn0lGm8;
+6k$k$Ti<=Ah7z)r4o#XhrxWTq08;zX0$*MW6Vh7$h+mXn_^r>s1`JfPghM)xu-S
+egIlpBTx1l-AHkm%fc2K`=p;BoAL%k4Rw#Ld1uU5e81fRXFy6DZ+D~Z&ht5J*K5TlX3Nzzl|hv<2aPl
+1I(8gk@=@D*?b5`R8^9(tPbo97h|iO>AqNr}jey0#W|k5tEvTEa=9e9^=1r$usYM$V7g3WqXQuBkK|Q
+Q86C)`x9;1}Wv>y;d?M>4>o ><2F$jWIdD*6{mUh%rC(Z6QtV;%N*R|A>^TjJl8p
+tIHs>eJoB$u9`{A{;2Is3K9N(Qw=rHbhi-o`h0o*&mZ4hp1(VPe|_a{+N(Ej&wZg~C++Kc6_H`(;>c|6K!D|dr=AyAwLC6v=&@wI)fMEZ@Hw1#y`1`3`fD#UZymX^3H7)OaCb$OBasFXat-zq%hf_44B=L3|8)Ubgj?
+rVUpN_J|zH@-nuM3kU8EO)FSZJp=0PHTa)xw;hJYfc{vBGQ|u
+y8YqdgkA#GhRCr$FKf%xk4Hw;g)cAySY3l228N5*g_Ryql@B_JhMSz0rq>)&?T(DuDGrpsQ0U9J?wP?
+QbyJ1oYrq|bq%;Sh{QM-^n#H@c%*1YiC7YtZ<^NFMr6L(aK>z$U)@>X*Oz^`ZZ?0{afAK>y)@vqS%>8
+u*UWa7GxK08yorEbq~WG6xBFfhx@C%+ED}q=DDT7ZHn=5hS}eVt=xHTP{2&B4XTbdG)Sl%rA|#-%LyDr`oP+lv%!(A$E%
+wGS(t4{%Dj2;VlSp
+PqML9XQXr3-BMJEDCaib$*Fu|F>E;ZA4h3fNsZm0c@7jj^)t(e*7uY=gmMhh@WDH|V*I
+LOSwaS}*6>o4TdV!KqAQX>MsCCo$NF
+DhgLM50p^yILo8PJsK8Hw((aLW&{XueEzp`%8Q?)$1?(pu4hfKnZJ2=k{=)aJ8elk>VE)m)|Lj%Y_
+^(DQO(l*h#tP6TRmXu8O#q8&D~c&dn{tHMRSNczZT^cYbw6?g9#gi;E9eZ~ka*T3~dZ2@H=%phYu7p`
+tEKUaQnw0
+KkIh1(xPOvV5B|+Y2+aFYpd#!@Kxa=V5~BzkF}6^}rB|cA)Wvn_yaC3<+4%P@*vy6lKYs27tFHW|%S(
+h*Um8AKIiMesH|AMP9qO%wlJ(=j1yZRPqz@CW+I64-3}>){=yRbl#%G?O{pSV<0Bw$Y4?NyPlaIe#}%6cF5A=d17JRCF?7i(@b^_SomXEJN4=Ur3Dp
+^TO4dyqyEb)QGTOM6?%c`t{vD|fwZloN#4Kb>Zi=~JO{MY^Kwtxe})nhkU6IV9_M-_0l0`uqBI4Q*{uezTRUz_A@E3ot6k*^RKkE>s3uSAVoE;u8MY823rT*9Wd=xC@GEh)Y>mG+(totkJ2DB#%-an
+O1_TW^N*w-sf>Az$DAu@W0dgL0tq{}V^s!4&^e@|jrA%t##)+*%k#4jmoM4$
+N5qv^Qgo2sp$hDxQgKwC?YD9sgd03v#GthI?b&BLG5|_C8JPw`i4_|gk7gY()!9GvbXU
+kO|(0k@4E@nILGpr7D6}axl-TY&Ji3i&NB960@3pqk8~IkWagBtpKyY7jv2XafbD`0rH-m|uu+C>Z;Q
+C#Ej^Gt%pF(h2yr9B3cmsO2|KKr5^Mc1d?(otf{%DX_-T{pL57`!1bdd~hZ+Xqik+Uo
+fqU%}Vl}&E;((d$@4Do0dD?XK}z5hNRDrsj75HUh{T3PrDWp`~u|=dRChl`&kYh2wP1wbMk0wA>hm_b
+Gqv{jcr{-P>j(*KVJ{?i`&Br=337FRS|GKfhkZEU;WDea^NKO<8w2YHpX6^pCVDFefJu-Sf_f}QT47f
+?qpJ{Z7q_%1>YWigxP+mF+`dG^D#dG(^YWWeJ6~~GsB#|P*O_ZOj6Orrl7<@w6P-~$Rak^R_Uy&GnR+
+Lw=$h$U{4~H&Rg`%REK87ZgFB-jH;kHB2IyIUgx`rqdeq;Yv^T>~{Ys6xc?T!YwgUU0DCBZgGz*6EO*ylf$7wLzmX2^VzuXD?sa560OQ
+q5=3uXBdJ}#@tXwrcbG_My#(Db
+$(i@@^6khW2TV8wnur37K2O$pQolyBOA*DtCo3-X&sf=ejvnG-(^YC|@7+>aLi)jVmc5j6^%*SAlwWO
+Z4GK94F!IlLseX!=YpjI93%TgpXSpgC9h@w;6B-s7nqPADoC?dsq6sf+Q)VYTPZ|qH^o(hq9WjL#`3I
+;n`m9DoCBEgBsR8?|<8Gb@t3|8B9#2yyn8AM{8wX`8-l|4pNG#EdVT9y~>uF2cYO}@i4gHo99A;hAhZ
+dD#KA=Y8^~n@ksFvHcOqkLvbdr!b)?)XY@mKyY{9hc~d#tk=XJVTM$8{UGHhVleV{cIuD>XVfL4sawR
+)HU9Co(-zbc^pvk*(rTos?J|mfL&s0z_?u(bZuKjq!yRszVPTHG%H=p=-^aI3pE$X3jOFyNvYJwtyd_
+>URri?x%BYnn}WKsd}G#A4B7AZWAIx_DvJ#a0FFPwB1Wky$YC<%Jn04kTO}`c$o85OjKiyiV&lrKcH-
+BPzpza-87$PpPkR=ukv8NKfK*)n#uWmIMZGC+($+C@Z)X#uz|XDSBZm>q$Pqt;qbnpJPXs860gV2N58
+E+YV|m^Y_m4!Y%+Dut`>#YFkz}aW0t)rAh$|Hs8;vWrCjn2_Hx-cx|KEER2P8ezjyo83ceUKPg>hMxw
+(u>bgo)g~>1Przu9aBhH_^59nd4x1e}e@q8Kx1!4f(y-HE!-L!h=vox|l5y?6;0x29t0%Cp@7P>nUAzmFT{jr5N;4lB)V{x~U*K?TQdWyHeoS@i7`F+
+9#{U@n>>~u`Wvl74UnJO>f8Ma|wW^2_4TntziYfQ0Ti3+?-bmmb`4cHCTc~^7uwEuw93vq=%G%ENvOYNO8R5z95eF%(0b5%0xbChWY*yq9b%uDClHd@eDYr$=Q>
+sc2PO>7wmqoCjCUqU5_y{6-;f3#;a_Jo0Eo<8finC-DR=INBDo04x^!#{lEmR)Acbz9hze;BUcgy5v?
+S`aPcK(pGVS{*PQ4AiV*<6ku1`6j1zVpHzfX;c9kz+Y&{Gmm2?cp;tl+@vh~GjsJktGYtwSg!cakw5<
+fP)h>@6aWAK2mk|@q+INt&@br#002?}000#L003}la4%nJZggdGZeeUMZDDC{E^v80kU>iXF${(8{S{
+$OE@*oZ)B!zu^yE#Xbf@V|pwpHlqYU`t?T)M=knjjEA1`rT!TYr7#^^oJ+A1rAQmO`}TErL=F~J(B+y
+tIwgiN9zqWlRz@Ky`L^D$0v_X1ROG|+1phWCX8dN)Qv{=x{UGSnPl>b^B2$i&oCK$oEX!w#a9Gn^3^6
+Ec>G%6!<7T5~L~-6F(D7q*Zgq6W%x3xWuXYLn5qnRMCCcB-pudkd~nb0o5%xQF|vM|%Z4X1XNMFRbtE
+$lcU#okA=Y<-OIe$~6}M&7n2qKNQ9uTKN}`bWY|MP)h>@6aWAK2mk|@q+E}_|9W-?007Go000^Q003}
+la4%nJZggdGZeeUMaCvZYZ)#;@bS`jtl~-Mh+%^<_pI@Om4?BiglR`_EfeExU4}r8SN#4R@G`5^k)|O
+mJ-i-$$tYGq;kS2-WK9ZC
+Hhq;+YQ6t8)Y4DTc5#eW3<^#uf5gV@z&_i$l;Gcw$XLBq$yK(Dn4tep4Z
+>8Y<5*p=`sq#*Z%!z5!|1`aa4^R60C)z&Mu|09s8I~rKE@KNM2PA8!vUs4a@;Ilh$P*?3%sRl?OW0O)wWeU
+)iS&&t_ui-!taM#wy`^ifsY4*+}vys6(MjZ2-AE@s`OLtC@K3h%WQpLjKbnQHjMdG46TYx5}aowGnp(aLre!HRoAudZsgTS>=EZ(rZCUw{6MO&HoeZ*qy
+%1CMc3LozM@H&ppe|Oei4am
+2L+B0N#MfAsbwCeUpLKf!O^ju)YtRaERllAUd<#1~Zn|+dQA8J*Z0Sc?sf^Vu2a7&HT6P@GT1}qP1fG
+oHF(0oY(4`wEp9w`2wfovBi%T3HfH?YGmR|-^xn58L+k&m270-r5)NRF~O}Jy3qK({0>vl&YJFoA>3)
+}Sk-DPS{UyJpaBOBjl_&Iyq091w^J7_bSJ)uY6z|gZ&ORN$CD5(y-A~C51{9XJ(GBR9Cqlb7pJEw#EI
+LVsN~nxX)Ysdk9oG3es%ceWpPuy%)LA_wFmBlI;0-ot-LI
+d*iiyy5DXS1c!3hdt5$qE`NkmOAf4ZrtCI?^Dxu8s7=HKJ171?dsNj9wfHY&{CJXpFR^he!ys6^yw~gTLKhzxLTmU4ch*`LNTOb~M#?w
+~4pSY?^rD?B>DaVIUH;5K|-<041xb|9ig!fEQ4dH%|cmF_Sr9oO7!+gE+mvz++A4LmKl)3y3=RywII=8k)&24@0{bNJ-)`NP@+tQo}y9;b
+Ewn<$mpTbuVsDXPNt9=BXM(D?ck~{#>dxhU%mTya~`~nk-)DKsjH-mp0l`6p*q$TPCEgk8N(0hdn2>~
+!oEsvR3>?)60?;$0j1?vKpoAtDwngx`Rj982t=Y0yYP0NedZ~6OU$lL2*_QRZbkZ#P#7oGp%luWR`oH
+-q_U29OlqNa(rQ?{?@H7Ks6ERFFw&5Pt49Y=9RI~jxN3IQd)<&5(ZMA<2k5?vQd4#VUv%*-`FM5pGh2
+5FEv8@aGsB~dANBgrfT0YA5LvgWEQWgD*s~}}O1?v`1k?;+z!K8DMz$2B9s4nQ5XTkMMlIOo_w;vV`M
+_ziIT~cQH9f=PDf~NH*pGyVbDvdXz2)D1_ot{sS;SlMn8|xs*dr)`oLyQxaAK1rMMVCRba6xcxLYlcP
+_i^h5+RcEB}+LJM*8TPd|Q5Zg?kW^V?QeD)cg?x#}RMZHTcQ;o`Rgm^qUNpi#|16I7X>oeh1tP01WGY
+Q@WV)%5ToJ6WiX&*lmf;{3>>yZHl`jlC@Y2AP6SM@~!m7rQ8Og|2{fyXU5-F|R^Fn6v31)4pJ3akSD=
+1Q#W9PRph*fJCNA%;p9~mpAnjjx%9TKeD`gx<2OvzZPmchMxvr4PhS1?4NI`JT$tGfvm#qABTn!F$-Qeh(5X&iXVtqPrM+jEf
+uayW;8w8CihJYak)KqD+e>6IKKyM5Zey%?r)YJKL&i1
+Xww2F+@;5#SW@67I;L4?hUi=9MtA3)|S3y_;C=NtH7IM1T;F!9Y-fJ!U-Z}6@*0(`P7SShaO+yvSwFn
+ry^7xbbkqW((4bZp?85?!l5v|j^<0$@cC-K80gMc;geQ%+Fhvt=b;yqU
+I?oJwq3wG0%)i%s+5xdm2NM$Zl?+muzCa9E`>~o{dh)Mo^%0v#QFySSxw$Fa($9UJL{!-s7)Xi(m0JU+{sv@(Q(>255;9dqDEKSM2gS
+E-i&fTkF4)Nnz$Q?o=Np~5%ET4b*iXkalJh4kVne>$$GpIO6_4lT;Xy6A(ax$e5pWkjE@7?V!s;Dq`w
+;S|pckXLLEz@7M>%Ytvvtg`t8
+K3L4|zF7AG%TJzTve50l5~B3qK>O)L8v6NvSpHD4rp|1}P)&J;KhK5RzC_+~u(B-S?MR)MmyL7B(C8!
+Hf^n}+hf3^_Y{|@Rnse;>O~Y!iV_4D}jMBxb+lR%rPuH`_KJ}ttn>6zD)WB-~09r~>f$&r^2B3u8&5l2+Mx@
+kf;_cYNmX8;;KARYGv99An->=hesg4UBupkAia`;klz
+NPn?NOb05v$Tc|FuTvA-IKkE6I-zn@jB8V-8!QUMISSj8seJg#UvMHldki9
+GI>^}@cJM8(~KfXMkoth8>UV_YTV`1R;LlE}Yk+%8(MQ0s=#v9&SiTzYf8oywW(-!k+a1^%b*NAUYgb3mxrVD%0>nlzT@1
+r*M-WO<5RRe!01NpS=9>`Z{nXJ(IU2A0HoxmAuIb_JRPM3IGuQ{UWf
+C;xm~wk3;Ry}xt;kl8NQuC!$oq`ZBpA_Ans1wt-)?)eY)<5%jysX3-^EH&bTq@Vj@{nsDX-QhV&Q>$#
+)u@z?mpv6Lf#Ch0~+(?8l(5y!AAhzpXrC(5K~9Q)csU&K%pmvr0_srqkQQO;eblo-M;CNqQZ+V_Vag&
+nR;uMfTw18Z@TgzQQD!h$uL^{_44$N&y{(0<9)fy@n9Jngc<3@8^z(d3(0@o;xR+Hx3`HE3T{j`|<7f?$B1QY-O00;mBm!w?0>9O-53IG5yBLDy
+%0001RX>c!JX>N37a&BR4FL!8VWo%z!b!lv5WpXZXdEHrCkK4u-e%G%U(+El-S~fP~UIZvWYp)9fNgU
+Wt@~|+7S!yJ)OOZ5Zxa*CZ|K9J+ofl~r0s2w`d*RHS`*jYJBzfBv2O(9*RnxH@ey;nn+Lra6-5rFeB-
+?e(k-e#<;#KudeCo?i97U~UmL$nyp?C9q*Q>r0dCtmX+jNTYx^5I#WmC(=!md@#eh<9vwUJrN)xo`X!
+r&^JsuG2U%=mTT5WZ2OUV&@lEz=s%G^=$xe%>Z%!rT
+%dku9M?tiXj-_pJ?J9D^>Lh&tE++iYUc`u4YFc;p>pj2`L=|2l-Io)Dj}e1ws4cID(f4E?R)%x=BU
+Oyka_NK)57A$541}T!Ss^luodl#XMcS>j$CX@Mb0#b%%=Ge!Gey4V1{vU%mHhs%WM!h(6Zj*c#
+hT6AjeYrFc7dU;%r-XD|X=WkW&<#2JO4x=M-$YYI3a20o)e;B>r72h*8n8jSJfh9`U_iOLHA2dA?jMa
+7Iam7yUd|WIRTd`w#(bS5=RG!CFt{HrJ$u7QQ*G*Hc7Yq;5*ed}g9Lriz&Qk}7jbC(
+>ELAnljRdtDfvmT9G+#0#RTK?F%MIj8)8>w&7DR9a-@;fh}C7
+#V`PR8T`$ga}Yw;Z)+Y(kaDB(^jRzTDo*5or!RQjM#`-SQyj2CFj2@iNH28Znl`RXX1~vtdE
+e04+NkO3$)03jzmikI(VZC*GJ(emk})+>t1e08xkSLbmLZQuK|BtNXyN8(aapr^B+j%*DCO=xN2W|qnbcAv?
+4fvs-0C|;T@u0Eq?^>N=uH?lNen}GIH_GDwOw#Vj;oIcdQ0!
+nE2enui!Vjm)01WU;8qo^`!fK#gY-SJ;LXU;ST%B%5NLisda>;^Sxv`>N#V{S0h0KI^B*das&KMX~lK
+l%iy8Y?mdlQmjgw{hwePC|E*>tX3nYAGBc-H*S|Z~bFkNw|7nekcb#TVK%qznj}9`A?-6P8Ln$Ry`5!
+Ev3wyJ%Uah+OfMZMxyxG&~JR3Ib^(AL?g^IAsJrL~@yFcM%&A!ZI|2=s~I-p*jQWX0xaGyNOo+nG4_o
+#Z5Qr`yZLJYjo-})x5G$A}Pz7vUo4m*MjS3s$&6$tFC+uSH(CXn4`MPk-A*BV~uRpwiPX!)*4+x=rBTWk&=(Sc=k72qDpnp#EtKW`ZkChGBuPPoQv
++oNu0*2{DUF;r~uVgo=(q@%DPPy1*9ie!R?WtwWv`f>F3scKK0;pr_3B@?r!2`8K`yOhI2EVV
+KCA|3~uH_iXKaPGv#J_b}G|mUeqb*NR^w>`w$>vKENQJ9lzo|BDPS+EH$tFF?%T91=&COlfr24gQOg6~-5*
+LNdS6e0z{P~N&Y$ny)J*R_8)r_@y^>KwC*M=I2{BT$re6wLWasbn
+J*^h$Y$b57Ya^wo|-o#{UKW-s7ypW^EoGw?ykh*VSpK@O#78b@GLO&Ef%B0cl&6HQITeK{4Wfw?OxHm
+|ob}O?3IKjX$E>1O1^u$B2(HJsnfc4@qV9kaeJ!~eIzxW|ElSNNux@8=Ax;~iXy8(Mk-&B-u#!P1-Pc
+=96`1($)PxHr9_D&Q{XB=tU+|^aXakcEqJydL~+i+4JAtsI-jGh&r?jHiZ3BaJt>RGE$aYaT`FMP36i2~`u)L-g;D5uCpzrFn}ojgpTJrP^(Vpr4bXV4m(#*YPdq&Bv^H}uq|sy=>_1i7T&MDL
+OCt)KR_Yt=_X=IalmY(@W}`n5r_m?LG#Gw4SA783&@_+^xGv3q8t{t~z|jz!K5S@0)6RDo-5GCNbiI0
+(JuG#T9y~z1R4@Rx84#X^$YGYipY2hXPDj)y!-Z+*lDs#EcYRge+lk4fI3_MBUd?625z&t)G9x|9A)`
+*v$ME@jSV{gElaAoSJU(@wIk~TKaq^w5Zt*Bq|AL0001k0000T00
+01RX>c!JX>N37a&BR4FJo+JFJE72ZfSI1UoLQYC5$l+10f6qdtR|3MIMxVzz61Hov{)4iu^uEX=g^0b
+AH{&pmNd4C~iSwVkbxy-Y{f5*XF&GRj3$4EO<65jLAyDb?eGG=ae3Je`KMF{xb`4+ovz8^MZLm`tTW8
+_tCxH$}9Z @6aWAK2mk|@q+G{UHSvuI000>r001KZ003}la4%nJZggdGZeeUMV{BW`XOtRobQ?644Ev;-peDei8)b2TKUA3CbToMmglx%hD$-X(1tb*+mnY2+3i~1l3{nZE3+(HEDlPZNm
+U&>(5F!ZY6Z5u-ic!O=XlIsKp3hY52kHKIwdb{21}1)Wj=`B3x~GN)
+21jP9Jv-2@F%=V!TuE_e!YmdGSdD|i@`Bv{N`9Autri465P>^k)P>wj;7$%wMG+$MK+qJ3#h&Qy!E1z
+Ju>QsHA(J1-Z&KWtK*{N|OK=rAL*dKVqO3MKVvio=U)tf&)f2iJm`1k$$yU%wSfee
+5gf-slfDyKAl6oYgTSH+JKF>(rdq>5uIXirQPvw~X1G&;@egG+ef$ELG0HNv_OV`>@mz$YY=3J
+GjPx!;up3ewTAr}F~Ay0k|Pgb>z9d=!G@42V@6!t#2AXqGiX`OX+vtN!KRxNYucNbD-;XRCCsk~SVLH
+lJR2Ewf!uh8%z0H@6^mgZjjREcFA+TNVOd*`>XUr3_1+1;-SdL2uGv?}q8doo)>xk~C9Eo=pSU^Y*)0
+@FiX7fQf@~7SGZdOF)3siHw6RURGN(@J5vUZ+QBRMRK;OF}b}N4Ysq#dGKZP^82*G^k$Tmf{bcjel-~R7ufX)}K|!iU~Jx!Hm#20!=-o!hp<>1*r8%5s+uMf;vdxJBa
+60hx`O}-SBnS8lcwc`ZCZu%KSW>?p$d&MoefGjJ{Im)I5)V(!j%(wkgtmi~(Gc1!#Ya8vd{qzdJ#}Y98&Oz69DO!V->WSdG6%SCR|0%ETT&af~a(gx6Ve{soPlyU5^LaDgqVN~*!fIbXMQ8u37p9ZFgGi~#tn0
+Ak_|25L713;CSc&?ORYQr(D%O2L~bRNb@(_SzA-6BL3XC4SEpnzaCIE|{yA_gCucs#B^Ybqx_tFU)ev
+TJn$mAZ6kluzq;Nb*BNjbQ?2GB3`)50r@J756U*7=E4f^eYp>G$_7Xrc!1j@K@R+e&V~>kLz!5c4>@U
+oW2dDVcfgk=kW6#2<<`H1M$dD#kjm*1iP^_{KfRUurDfam)jZ1%0DF+`Q~}((ymRSz)m@^8J@T{Z^UK0u#kqg&`3FQ3Mt2uRd2o;&g*V^ru+z9k1AWGQ!Be
+i`AT#ff6{I6Q_sVI67`VeC_vo4hSI_X`0*r=t4&Sk2Cf~!uK6|7*oEts^=_C`eVbmv9yUYB_y~eC2##
+^U+n+Lo*!yAAb%zh!S!?V!n$>sI-IxIMC(uWNX5h*alfUy2HK&YiKTy(=-)H1jEY7|0P5vI>6;L9U3jS@!)6^3g4#?wGB0w!Yu>Q4mpBx@LXRgAM0vqbe7h92*=o^4W0gg48w};d#=#ii7`#@@0sLQ
+Z^S=#gdl~3vth59TC(Cl#5{jhP5PSOXBfAgMSG5_xDCTsUL0+%O>o8T#0;}qi^HM}glYJDC#Puc&Zu@Mj94g?-U@u!=m;>VAuzkx*D1|K9U7Z#Pq+B_FA+@-n|J;)vG6
+chvxCL{O_CfZJ$dg(9}K03cb9&=7fSj5>-#J99Qera;q3DmuE`4`>c=0y*~O?i$}T&5|X(M`@@-XQ0-~Ky85J{{v7<0|XQR000O81DB*
++Vb(9BGYkL#Yb5{xApigXaA|NaUukZ1WpZv|Y%gPMX)j`7b7fy+Z*6U1Ze%WSdCgjFkK4Er{_bBvXmO
+1Vc!l=R55=~=c3+&FaXIf|*PFCR1A>-ln~f~$NNF86O@DizA@yp@o1{Pw6%JXM9L@}f^YRRJK@eOCE7
+`T)ZbcfiC=u3<8NC{rh+N{YE^?Jh8w9~%urhkfIA0ZcVI=2FZ8L3h(5E^Vxzec}49c-cr@8!?Cu&)ZB
+znD8>H6Sj2*Q=BM|GBG!dO}Vw$+>6*RQz|kz9)CgI6fhNg^XBJ`~HS(rT7VBXVs#QN_5LeIt@WT0fWX
+GiXxHT#FLMKF-op9Gq25vyk?5>xAC9nK66JVjOO|zL6_YB)R=jCfQ4Ewju|cQ*139qOi~_mbP
+L(956i7`}^Dbv3tF{pT3#hK0ffP$Jy%}elxr0t=Y%q;r_$>}k1aCnWE9qnM}uY#GC~r8_4KDZQ3}Ld`PQ8-bI+tF?F?(m+
+9DIT#=VX^v*eePRq(0u(c$Pb`$Woo4!VS^Dr-%i&1u6?cbSM|z5xOE$#~-I)FmNl6Z)q+jN}&?h)MO*OdneM(5){HBZvLV9Ug2-f11^2mET!rH@Zk-+7&CS3(GajH_Dd3*&0N9KnO5jEB;7ISC+zLazBL&_!8U#Ue#0zp9{3lQu&UMBt`H~<6So+&?Pl`~Ou
+~>u1{h@<|YOGYP=H^rkdj*}bpK+GRBu28G>|x>;GqrLP3fcRkKZ7GzIm2$T)JQASypaaGO5}f1aU(2p
+ff<%7$1F%ScPxYE-1kZ*adUL28{cAF)S
+)f*Afcq8)Dq^kPWD@R)#}oys?*pC36?Z6gvj>aKHp1KcpFUriFa^i5dc;Hp@R<+51wEzo0^T^B!x%0s
+dtQrZr9CPHGKEKDIsgC6lN+i>lu$tdw?cEAxw4^^5
+`OzL@*4#v%#2X=pPtj@+lyj1Ska9_vcaHN@vVrFs%?V)by1Q?-!mMr=ikxeH(BX{80a1bo<;EPz$kHf
+%8ISfoSx
+gW{6l4WbVvkJ!30D_X@Ba`8}+`
+a*1TVREf%)rn3!1O1R!qpoK0vExkk>nf=dZ2N{6J&rjyl|D;lF_M}QSCEnd})sQ2cbYcmN4t&E2{)VC+=o=dR&_mN6rU++O7^8YF;@YFN!*Q8rb~5^_WdPOvO
+o9A#7;SF+V>e}Wogkym5E$D3FR)5eRnN!(lE33%?YKggDrJc@4wfg4Yd3621Zu~==W!@;RCh^22f|`6_)$~QqY$hYMQV2h>LKZkkg|=9hmnk8oYl_w!FafwvM
+xvl^TC0XLVZNH(xWxsjw!Hb%DN>w~BHH*=pJAgpG1-tNu$j{b8p=Npi+1b3VZKt+yz-y9K
+hX1iFW~=-~1LwclWpm-c#EBUC_%4wz9e9B05H*hy130ojoib_~rFtc02b>tJv-3)_>pB{;uNoO8(?Ba
+NmcQgZ6HQ#Kqi7Sg|CGo6E?uz#@zYXDlf<6=}Cc1QiK9_2H=xHy$DK>l$tWG9r;6Xt3cYcZjWTT*FGi
+QP|TP)sEWtrM2I55%P$nPjdZ*ww|UBM4eBE!y}SWpHU9KfA%apX`Pcbf*u$06>8hF7vI?z)T=6ZKTs4
+U=VlTIOS+H(NJRbYXssusepa-gZd4e@kLq#ANUYQS6eG%}ODR*xx31oV?Ake#%RJI-m9_4(jRQYq6M~
+f|n7P_hZzLpVl^gMP;6~MkXkS=%{v%r@VjcFBPkN3{>6q-;{ra4y`yC5T(L
+K!oImZ{HbC;^lW0~2&)q)dLdS9arAepfAZCe
+IuTkrRU`qeKtm$mr10EG^%=yQo^|B*ba7s<4zLP>n90ynRMCS^~=YcpDSpm_88LFi8LM_TW8b;jiX
+{ZXS0lgF&@GXXWY8<;@6aWAK2mk|@q+G~R44lR$007vM0018V003}la4%nJZggdGZeeUMV{B$r`>0L9e2k&>BPr&_no^QFPoMiiEWD1kdz(WZ2
+tSy3m`yJe#o8OJ>!$u5(yN5LZMzL6oMews}@PAr>a=hX^~ed$){>w7VA~Dw|BA7YE`EBBwb}%Ep(|>T
+B*8FQ$0&_ZR-^IM32?=x>o;?7xh1=G_UF;uhXQ~s$S^j-aIR=lPudr>LXMuby5|%y4GnvhxbWs0o|qb
+LM0RYaxh3%E1gdVYLevezbrQjpw@ctTGw}4=W3Odm98SSN>}n(&2_HJB(w19yL1A5&TC!f*#4M?S1pQ
+lHq8h1-YTiE_Y62v7X@@mO`v94)jF@Cc$PVxgD^0n;$vs#pSM3+Nbh4pF3L>v~=42*4~itIa<2s7xny$ZaRt!H-E+>AhK5EL9wH;W$?5a#fTy3<
+}VmP%roPrC%)2_Ts$z6I(k%4n5LZW2UQw64>p??81$o=%c1{kx9yWa(8k6ctUfG@?{mq{H1nb&2J8E`++(<6R(Pwh0H>QAQ9>E`t0p0cIRV5#eNQ)m46;kN3e#8Is_^#T^D)V`pHr}V6^t~
+ZOT4dCrYC6#=N>Fw5PQJd;%ZsW8nV)JHu-9=I@v~BtP;_TyxpW=6i=kJcsw^v%G)x=bRHD4Fkuz>dVa
+PGhLQ-XSnoRZte^&fftg#v)
+DS@4-*ec^)p>NC9f;ubNiBbot29|kIjeg{rGgqKmZ%F=o`8jbdv&dccFwZZr@xv>Z*Q8}dF`)Ud-`w}
+oZMy7K$wxjRz1j4z)>RPDRz~A!*8B|0S*T3sYO$DeurNR&>yIKP~MxhKM20Oq)bbv%MAaOSk0X9%KdQ
+&+gqxyNnn1x-rJ#j|~sB^j_L^kHWTn5-)aK(rN4r8bW#G4e5UIbT$Hhkz&GMx%ihw?|Jp=4~hg=Hcp3
+k^$p3c@-rHA~Ei8eYDC`Jhi
+em#{nun*WtY=M2!4ZH;)Zz8v}-_5@+G>|)#EEPz1oM3v7{Rl%YgxVNuQR@nuc4w}QmAHcP2Qc58p~e5
+D{nX4x6*0R7@d)c3_(XphK|$63I=N1_ya861X;h3zm^Edt=+lU?cb(=*xrvKB+u%gGl4%IT7>>s3bFd
+E>-w(bpjZ`$;sYZ=agTAV(SSADj4ENf-Xo6DgL80JL?!;`51EWyYH0#ZT96mdXgX3Ml-8DtSKuF%XZgH%H
+R=`?{;(t@&|BLf;m&10dgbmsE}`yO7n1Ud!EE!Vjvl->z-D~Mt>P0M|+D-TU5b@vEl1_E1?da!ZWVX0
+sil%-O`9@lxM!OjZ0pi*8qINi5tq6UVs4U|cA(;&z-${&*Ux6?e=5Ipr
+oxfO*XuN!#?F}90{H=m^yOM=b70$~R_
+2}6PrHm#vKDm(>6J?nVPb*Q9mE$Uq)_yb~!%?$G602fMbixiNXmXmds82h!d<$Fw)T-SF+c@tHzoYTf
+4J55*T{N%pMKv4LfR+6cSObEY|Bu4w)>Fsd>)(#3S(t5g-Kyaj9<fpMXfQAwp->hC`BRUy-M|(+wiO89$qF1J*4DbQ2;uL(r+!h62A(Ag^9w{EV>D2j~t3;~NHj#-V&0<**r&>^2f1R~$2ARi9`=Ycq7-ADNGAUIzXcl0r
+W$0H<#>-9WF2hL9238}u!-xS=y-q;2xZMpc0w-+X1l@PdQ
+%0L@ym|2)tR2#>0OAd1pNvS<#}S80y5*wmUx4sZant~k*`rmUS#k&3frq35w7n9jG1i~VCPoaZ1F)9q
+ZrHjmb#fC{8=&1~C|s)YP;*a{4`GT~f`<$soOFgZwL1Q{i{rBohwtD2E&TcL!{JZIZ`G-Ib{+efxd^M
+eyN!_RdPDLaaVHI((pHUTQ&^4DXfka+)^&keBT@wXp3U%2ncM|eKDwn~FV4@2y=>6
+0wIB}nVM(-5jNol?>b)A4xaUj~dGe6D)UVEnra_<7gEHhBWQ3FVa0I=b0X%2M00~x(gZ^?E{sv9!k2#
+&+`=zE*%xeuSt_1>lxb`j@txgs}+ZCJ*0qc^C9#ZclF1oe)~L!g8PiZ_aO6I<8BlzThH&urD>Cs3KiP
+=3l9InHU|xHKjuZRkVaVIGSc;63Od#5dA2m8I7u`diZ(>zsrj;$X59<5GXK`qIe)2y6ltKw6Qmj&4j@
+9A+$I@lT9ZGma|{UbAriyL=k8c-N=R&P?mmrp>MF6J7>jCbx(v@FkLrHc?d9#+ab*u>!ktsrO&LyhN<
++V+73I^nYAY!3dt*;zJm_kQ%5zWvZ)PHFK)mQoP+~Jf5^8xW09V^K?m0Z($i+X2BMua=2@iPa8Ft&`(1^?V(GBkASqQ^R+SRa^9+{np5F|`{_k(gY;)?uTlE_
+PypFkY$LuyBFhdSMxNr6(Rz{9=ra8T7l2kJlbT&T+Q{HS=O}gC7})omo3V1LvA7D7J_CglZWiJ@4W3%GR$Y6N!EWHDC5bVR$O@ab-puJG^m2&_ts-Wn#OYvCl
+s8qsT~%g2&nSFOOx9$7gLI{HDM64917Mte9t{yEgJsHULh9vvzKiyK(z47y&UrzmmbBa;q}EMJ(QE-mE8u!ND%z6Q)!#u7oL2+*-UYvz<6#+
+OR$X6at{;(Q30wohRa$GYz&0@|UysExchET~yJw9aeDB^_K+H6R3e+MjWR2CQjLL14aTy<8?UV$jXBY
+3{(}@)bMsR*AoFH+hDQZ+#M!Q5eAX(Kgao+
+B~OHGkF=UK85#)7nRO|I2yTRn%nlIa1@clO~>?XES`Jbbz}b3)?5M~xbiixd@mT-iwt7VQk)gjt&3RE
+$pXu6r^a%fwXX34}6pCNgl_=}=4qepjNfgyj>YU}B~cUdkm4SX_y@TGY!-@$Ox{Fk$Uv@-a4iib=}JB
+E1EIsMcV};8r8W77a0^Bbxu679~Xo!K1rHHX_JXTYi~kOWlwF3NQ(%cerOd0D^1Qw72U)eZ-lgF52$M
+GI#g@bPEGl-Ma71fPOtXM;VIoj6B<&a0HjEX?KygY~u9_)m=RW!!#|*xGs3AAG5>Q#AABV*;~S2iE*M
+e*#t;Nq8nl`)iuyFVE{)RhNfE~bt}Y80Ny{8kk|?CGgV4rj{xS$`A7B7|Mcp06K9VBDXXRB*YNM+)vJB__rC_b_egw~<5$o?#rPFqJ`F_KYyp++G=GcKfXJn>sC>P=#;}MPv@5Zoroq$i-V
+SI)-_bjj%nK9I`=O}yK4V0}I%)l4EP$NZupAFJ+(kQ5j1;mFXl1}q6Xqh7<83zrqEE)~lq~9cRRMW6k
+^1b@mIGr(hAZ{88aJUIRG(mnB(4`KJN!0)(i)5n!lnmGw
+MJ}BV$fK~lPUmavq5z`Uh~&B|vNc+8GXE8xjX|U?icHH4z`WT7@h{ed2MjNhjR3pWC_^zuZ_2wZxD~*
+vLbtQk2DGV9{*e |