path
stringlengths 14
112
| content
stringlengths 0
6.32M
| size
int64 0
6.32M
| max_lines
int64 1
100k
| repo_name
stringclasses 2
values | autogenerated
bool 1
class |
---|---|---|---|---|---|
cosmopolitan/third_party/python/Modules/_sqlite/microprotocols.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â â
â Copyright (C) 2005-2010 Gerhard Häring <[email protected]> â
â â
â This file is part of pysqlite. â
â â
â 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. â
â â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Modules/_sqlite/cursor.h"
#include "third_party/python/Modules/_sqlite/microprotocols.h"
#include "third_party/python/Modules/_sqlite/prepare_protocol.h"
asm(".ident\t\"\\n\\n\
pysqlite (zlib license)\\n\
Copyright (C) 2005-2010 Gerhard Häring <[email protected]>\"");
asm(".include \"libc/disclaimer.inc\"");
/* clang-format off */
/** the adapters registry **/
PyObject *psyco_adapters;
/* pysqlite_microprotocols_init - initialize the adapters dictionary */
int
pysqlite_microprotocols_init(PyObject *dict)
{
/* create adapters dictionary and put it in module namespace */
if ((psyco_adapters = PyDict_New()) == NULL) {
return -1;
}
return PyDict_SetItemString(dict, "adapters", psyco_adapters);
}
/* pysqlite_microprotocols_add - add a reverse type-caster to the dictionary */
int
pysqlite_microprotocols_add(PyTypeObject *type, PyObject *proto, PyObject *cast)
{
PyObject* key;
int rc;
if (proto == NULL) proto = (PyObject*)&pysqlite_PrepareProtocolType;
key = Py_BuildValue("(OO)", (PyObject*)type, proto);
if (!key) {
return -1;
}
rc = PyDict_SetItem(psyco_adapters, key, cast);
Py_DECREF(key);
return rc;
}
/* pysqlite_microprotocols_adapt - adapt an object to the built-in protocol */
PyObject *
pysqlite_microprotocols_adapt(PyObject *obj, PyObject *proto, PyObject *alt)
{
PyObject *adapter, *key;
/* we don't check for exact type conformance as specified in PEP 246
because the pysqlite_PrepareProtocolType type is abstract and there is no
way to get a quotable object to be its instance */
/* look for an adapter in the registry */
key = Py_BuildValue("(OO)", (PyObject*)obj->ob_type, proto);
if (!key) {
return NULL;
}
adapter = PyDict_GetItem(psyco_adapters, key);
Py_DECREF(key);
if (adapter) {
PyObject *adapted = PyObject_CallFunctionObjArgs(adapter, obj, NULL);
return adapted;
}
/* try to have the protocol adapt this object*/
if (PyObject_HasAttrString(proto, "__adapt__")) {
_Py_IDENTIFIER(__adapt__);
PyObject *adapted = _PyObject_CallMethodId(proto, &PyId___adapt__, "O", obj);
if (adapted) {
if (adapted != Py_None) {
return adapted;
} else {
Py_DECREF(adapted);
}
}
if (PyErr_Occurred() && !PyErr_ExceptionMatches(PyExc_TypeError))
return NULL;
}
/* and finally try to have the object adapt itself */
if (PyObject_HasAttrString(obj, "__conform__")) {
_Py_IDENTIFIER(__conform__);
PyObject *adapted = _PyObject_CallMethodId(obj, &PyId___conform__,"O", proto);
if (adapted) {
if (adapted != Py_None) {
return adapted;
} else {
Py_DECREF(adapted);
}
}
if (PyErr_Occurred() && !PyErr_ExceptionMatches(PyExc_TypeError)) {
return NULL;
}
}
/* else set the right exception and return NULL */
PyErr_SetString(pysqlite_ProgrammingError, "can't adapt");
return NULL;
}
/** module-level functions **/
PyObject *
pysqlite_adapt(pysqlite_Cursor *self, PyObject *args)
{
PyObject *obj, *alt = NULL;
PyObject *proto = (PyObject*)&pysqlite_PrepareProtocolType;
if (!PyArg_ParseTuple(args, "O|OO", &obj, &proto, &alt)) return NULL;
return pysqlite_microprotocols_adapt(obj, proto, alt);
}
| 5,930 | 149 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_sqlite/microprotocols.h | #ifndef PSYCOPG_MICROPROTOCOLS_H
#define PSYCOPG_MICROPROTOCOLS_H 1
#include "third_party/python/Include/Python.h"
#include "third_party/python/Modules/_sqlite/cursor.h"
/* clang-format off */
/** adapters registry **/
extern PyObject *psyco_adapters;
/** the names of the three mandatory methods **/
#define MICROPROTOCOLS_GETQUOTED_NAME "getquoted"
#define MICROPROTOCOLS_GETSTRING_NAME "getstring"
#define MICROPROTOCOLS_GETBINARY_NAME "getbinary"
/** exported functions **/
/* used by module.c to init the microprotocols system */
extern int pysqlite_microprotocols_init(PyObject *dict);
extern int pysqlite_microprotocols_add(
PyTypeObject *type, PyObject *proto, PyObject *cast);
extern PyObject *pysqlite_microprotocols_adapt(
PyObject *obj, PyObject *proto, PyObject *alt);
extern PyObject *
pysqlite_adapt(pysqlite_Cursor* self, PyObject *args);
#define pysqlite_adapt_doc \
"adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard."
#endif /* !defined(PSYCOPG_MICROPROTOCOLS_H) */
| 1,036 | 32 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_asynciomodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_asyncio_Future___init____doc__,
"Future(*, loop=None)\n"
"--\n"
"\n"
"This class is *almost* compatible with concurrent.futures.Future.\n"
"\n"
" Differences:\n"
"\n"
" - result() and exception() do not take a timeout argument and\n"
" raise an exception when the future isn\'t done yet.\n"
"\n"
" - Callbacks registered with add_done_callback() are always called\n"
" via the event loop\'s call_soon_threadsafe().\n"
"\n"
" - This class is not compatible with the wait() and as_completed()\n"
" methods in the concurrent.futures package.");
static int
_asyncio_Future___init___impl(FutureObj *self, PyObject *loop);
static int
_asyncio_Future___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"loop", NULL};
static _PyArg_Parser _parser = {"|$O:Future", _keywords, 0};
PyObject *loop = Py_None;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&loop)) {
goto exit;
}
return_value = _asyncio_Future___init___impl((FutureObj *)self, loop);
exit:
return return_value;
}
PyDoc_STRVAR(_asyncio_Future_result__doc__,
"result($self, /)\n"
"--\n"
"\n"
"Return the result this future represents.\n"
"\n"
"If the future has been cancelled, raises CancelledError. If the\n"
"future\'s result isn\'t yet available, raises InvalidStateError. If\n"
"the future is done and has an exception set, this exception is raised.");
#define _ASYNCIO_FUTURE_RESULT_METHODDEF \
{"result", (PyCFunction)_asyncio_Future_result, METH_NOARGS, _asyncio_Future_result__doc__},
static PyObject *
_asyncio_Future_result_impl(FutureObj *self);
static PyObject *
_asyncio_Future_result(FutureObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Future_result_impl(self);
}
PyDoc_STRVAR(_asyncio_Future_exception__doc__,
"exception($self, /)\n"
"--\n"
"\n"
"Return the exception that was set on this future.\n"
"\n"
"The exception (or None if no exception was set) is returned only if\n"
"the future is done. If the future has been cancelled, raises\n"
"CancelledError. If the future isn\'t done yet, raises\n"
"InvalidStateError.");
#define _ASYNCIO_FUTURE_EXCEPTION_METHODDEF \
{"exception", (PyCFunction)_asyncio_Future_exception, METH_NOARGS, _asyncio_Future_exception__doc__},
static PyObject *
_asyncio_Future_exception_impl(FutureObj *self);
static PyObject *
_asyncio_Future_exception(FutureObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Future_exception_impl(self);
}
PyDoc_STRVAR(_asyncio_Future_set_result__doc__,
"set_result($self, res, /)\n"
"--\n"
"\n"
"Mark the future done and set its result.\n"
"\n"
"If the future is already done when this method is called, raises\n"
"InvalidStateError.");
#define _ASYNCIO_FUTURE_SET_RESULT_METHODDEF \
{"set_result", (PyCFunction)_asyncio_Future_set_result, METH_O, _asyncio_Future_set_result__doc__},
PyDoc_STRVAR(_asyncio_Future_set_exception__doc__,
"set_exception($self, exception, /)\n"
"--\n"
"\n"
"Mark the future done and set an exception.\n"
"\n"
"If the future is already done when this method is called, raises\n"
"InvalidStateError.");
#define _ASYNCIO_FUTURE_SET_EXCEPTION_METHODDEF \
{"set_exception", (PyCFunction)_asyncio_Future_set_exception, METH_O, _asyncio_Future_set_exception__doc__},
PyDoc_STRVAR(_asyncio_Future_add_done_callback__doc__,
"add_done_callback($self, fn, /)\n"
"--\n"
"\n"
"Add a callback to be run when the future becomes done.\n"
"\n"
"The callback is called with a single argument - the future object. If\n"
"the future is already done when this is called, the callback is\n"
"scheduled with call_soon.");
#define _ASYNCIO_FUTURE_ADD_DONE_CALLBACK_METHODDEF \
{"add_done_callback", (PyCFunction)_asyncio_Future_add_done_callback, METH_O, _asyncio_Future_add_done_callback__doc__},
PyDoc_STRVAR(_asyncio_Future_remove_done_callback__doc__,
"remove_done_callback($self, fn, /)\n"
"--\n"
"\n"
"Remove all instances of a callback from the \"call when done\" list.\n"
"\n"
"Returns the number of callbacks removed.");
#define _ASYNCIO_FUTURE_REMOVE_DONE_CALLBACK_METHODDEF \
{"remove_done_callback", (PyCFunction)_asyncio_Future_remove_done_callback, METH_O, _asyncio_Future_remove_done_callback__doc__},
PyDoc_STRVAR(_asyncio_Future_cancel__doc__,
"cancel($self, /)\n"
"--\n"
"\n"
"Cancel the future and schedule callbacks.\n"
"\n"
"If the future is already done or cancelled, return False. Otherwise,\n"
"change the future\'s state to cancelled, schedule the callbacks and\n"
"return True.");
#define _ASYNCIO_FUTURE_CANCEL_METHODDEF \
{"cancel", (PyCFunction)_asyncio_Future_cancel, METH_NOARGS, _asyncio_Future_cancel__doc__},
static PyObject *
_asyncio_Future_cancel_impl(FutureObj *self);
static PyObject *
_asyncio_Future_cancel(FutureObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Future_cancel_impl(self);
}
PyDoc_STRVAR(_asyncio_Future_cancelled__doc__,
"cancelled($self, /)\n"
"--\n"
"\n"
"Return True if the future was cancelled.");
#define _ASYNCIO_FUTURE_CANCELLED_METHODDEF \
{"cancelled", (PyCFunction)_asyncio_Future_cancelled, METH_NOARGS, _asyncio_Future_cancelled__doc__},
static PyObject *
_asyncio_Future_cancelled_impl(FutureObj *self);
static PyObject *
_asyncio_Future_cancelled(FutureObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Future_cancelled_impl(self);
}
PyDoc_STRVAR(_asyncio_Future_done__doc__,
"done($self, /)\n"
"--\n"
"\n"
"Return True if the future is done.\n"
"\n"
"Done means either that a result / exception are available, or that the\n"
"future was cancelled.");
#define _ASYNCIO_FUTURE_DONE_METHODDEF \
{"done", (PyCFunction)_asyncio_Future_done, METH_NOARGS, _asyncio_Future_done__doc__},
static PyObject *
_asyncio_Future_done_impl(FutureObj *self);
static PyObject *
_asyncio_Future_done(FutureObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Future_done_impl(self);
}
PyDoc_STRVAR(_asyncio_Future__repr_info__doc__,
"_repr_info($self, /)\n"
"--\n"
"\n");
#define _ASYNCIO_FUTURE__REPR_INFO_METHODDEF \
{"_repr_info", (PyCFunction)_asyncio_Future__repr_info, METH_NOARGS, _asyncio_Future__repr_info__doc__},
static PyObject *
_asyncio_Future__repr_info_impl(FutureObj *self);
static PyObject *
_asyncio_Future__repr_info(FutureObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Future__repr_info_impl(self);
}
PyDoc_STRVAR(_asyncio_Future__schedule_callbacks__doc__,
"_schedule_callbacks($self, /)\n"
"--\n"
"\n");
#define _ASYNCIO_FUTURE__SCHEDULE_CALLBACKS_METHODDEF \
{"_schedule_callbacks", (PyCFunction)_asyncio_Future__schedule_callbacks, METH_NOARGS, _asyncio_Future__schedule_callbacks__doc__},
static PyObject *
_asyncio_Future__schedule_callbacks_impl(FutureObj *self);
static PyObject *
_asyncio_Future__schedule_callbacks(FutureObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Future__schedule_callbacks_impl(self);
}
PyDoc_STRVAR(_asyncio_Task___init____doc__,
"Task(coro, *, loop=None)\n"
"--\n"
"\n"
"A coroutine wrapped in a Future.");
static int
_asyncio_Task___init___impl(TaskObj *self, PyObject *coro, PyObject *loop);
static int
_asyncio_Task___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"coro", "loop", NULL};
static _PyArg_Parser _parser = {"O|$O:Task", _keywords, 0};
PyObject *coro;
PyObject *loop = Py_None;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&coro, &loop)) {
goto exit;
}
return_value = _asyncio_Task___init___impl((TaskObj *)self, coro, loop);
exit:
return return_value;
}
PyDoc_STRVAR(_asyncio_Task_current_task__doc__,
"current_task($type, /, loop=None)\n"
"--\n"
"\n"
"Return the currently running task in an event loop or None.\n"
"\n"
"By default the current task for the current event loop is returned.\n"
"\n"
"None is returned when called not in the context of a Task.");
#define _ASYNCIO_TASK_CURRENT_TASK_METHODDEF \
{"current_task", (PyCFunction)_asyncio_Task_current_task, METH_FASTCALL|METH_KEYWORDS|METH_CLASS, _asyncio_Task_current_task__doc__},
static PyObject *
_asyncio_Task_current_task_impl(PyTypeObject *type, PyObject *loop);
static PyObject *
_asyncio_Task_current_task(PyTypeObject *type, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"loop", NULL};
static _PyArg_Parser _parser = {"|O:current_task", _keywords, 0};
PyObject *loop = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&loop)) {
goto exit;
}
return_value = _asyncio_Task_current_task_impl(type, loop);
exit:
return return_value;
}
PyDoc_STRVAR(_asyncio_Task_all_tasks__doc__,
"all_tasks($type, /, loop=None)\n"
"--\n"
"\n"
"Return a set of all tasks for an event loop.\n"
"\n"
"By default all tasks for the current event loop are returned.");
#define _ASYNCIO_TASK_ALL_TASKS_METHODDEF \
{"all_tasks", (PyCFunction)_asyncio_Task_all_tasks, METH_FASTCALL|METH_KEYWORDS|METH_CLASS, _asyncio_Task_all_tasks__doc__},
static PyObject *
_asyncio_Task_all_tasks_impl(PyTypeObject *type, PyObject *loop);
static PyObject *
_asyncio_Task_all_tasks(PyTypeObject *type, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"loop", NULL};
static _PyArg_Parser _parser = {"|O:all_tasks", _keywords, 0};
PyObject *loop = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&loop)) {
goto exit;
}
return_value = _asyncio_Task_all_tasks_impl(type, loop);
exit:
return return_value;
}
PyDoc_STRVAR(_asyncio_Task__repr_info__doc__,
"_repr_info($self, /)\n"
"--\n"
"\n");
#define _ASYNCIO_TASK__REPR_INFO_METHODDEF \
{"_repr_info", (PyCFunction)_asyncio_Task__repr_info, METH_NOARGS, _asyncio_Task__repr_info__doc__},
static PyObject *
_asyncio_Task__repr_info_impl(TaskObj *self);
static PyObject *
_asyncio_Task__repr_info(TaskObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Task__repr_info_impl(self);
}
PyDoc_STRVAR(_asyncio_Task_cancel__doc__,
"cancel($self, /)\n"
"--\n"
"\n"
"Request that this task cancel itself.\n"
"\n"
"This arranges for a CancelledError to be thrown into the\n"
"wrapped coroutine on the next cycle through the event loop.\n"
"The coroutine then has a chance to clean up or even deny\n"
"the request using try/except/finally.\n"
"\n"
"Unlike Future.cancel, this does not guarantee that the\n"
"task will be cancelled: the exception might be caught and\n"
"acted upon, delaying cancellation of the task or preventing\n"
"cancellation completely. The task may also return a value or\n"
"raise a different exception.\n"
"\n"
"Immediately after this method is called, Task.cancelled() will\n"
"not return True (unless the task was already cancelled). A\n"
"task will be marked as cancelled when the wrapped coroutine\n"
"terminates with a CancelledError exception (even if cancel()\n"
"was not called).");
#define _ASYNCIO_TASK_CANCEL_METHODDEF \
{"cancel", (PyCFunction)_asyncio_Task_cancel, METH_NOARGS, _asyncio_Task_cancel__doc__},
static PyObject *
_asyncio_Task_cancel_impl(TaskObj *self);
static PyObject *
_asyncio_Task_cancel(TaskObj *self, PyObject *Py_UNUSED(ignored))
{
return _asyncio_Task_cancel_impl(self);
}
PyDoc_STRVAR(_asyncio_Task_get_stack__doc__,
"get_stack($self, /, *, limit=None)\n"
"--\n"
"\n"
"Return the list of stack frames for this task\'s coroutine.\n"
"\n"
"If the coroutine is not done, this returns the stack where it is\n"
"suspended. If the coroutine has completed successfully or was\n"
"cancelled, this returns an empty list. If the coroutine was\n"
"terminated by an exception, this returns the list of traceback\n"
"frames.\n"
"\n"
"The frames are always ordered from oldest to newest.\n"
"\n"
"The optional limit gives the maximum number of frames to\n"
"return; by default all available frames are returned. Its\n"
"meaning differs depending on whether a stack or a traceback is\n"
"returned: the newest frames of a stack are returned, but the\n"
"oldest frames of a traceback are returned. (This matches the\n"
"behavior of the traceback module.)\n"
"\n"
"For reasons beyond our control, only one stack frame is\n"
"returned for a suspended coroutine.");
#define _ASYNCIO_TASK_GET_STACK_METHODDEF \
{"get_stack", (PyCFunction)_asyncio_Task_get_stack, METH_FASTCALL|METH_KEYWORDS, _asyncio_Task_get_stack__doc__},
static PyObject *
_asyncio_Task_get_stack_impl(TaskObj *self, PyObject *limit);
static PyObject *
_asyncio_Task_get_stack(TaskObj *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"limit", NULL};
static _PyArg_Parser _parser = {"|$O:get_stack", _keywords, 0};
PyObject *limit = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&limit)) {
goto exit;
}
return_value = _asyncio_Task_get_stack_impl(self, limit);
exit:
return return_value;
}
PyDoc_STRVAR(_asyncio_Task_print_stack__doc__,
"print_stack($self, /, *, limit=None, file=None)\n"
"--\n"
"\n"
"Print the stack or traceback for this task\'s coroutine.\n"
"\n"
"This produces output similar to that of the traceback module,\n"
"for the frames retrieved by get_stack(). The limit argument\n"
"is passed to get_stack(). The file argument is an I/O stream\n"
"to which the output is written; by default output is written\n"
"to sys.stderr.");
#define _ASYNCIO_TASK_PRINT_STACK_METHODDEF \
{"print_stack", (PyCFunction)_asyncio_Task_print_stack, METH_FASTCALL|METH_KEYWORDS, _asyncio_Task_print_stack__doc__},
static PyObject *
_asyncio_Task_print_stack_impl(TaskObj *self, PyObject *limit,
PyObject *file);
static PyObject *
_asyncio_Task_print_stack(TaskObj *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"limit", "file", NULL};
static _PyArg_Parser _parser = {"|$OO:print_stack", _keywords, 0};
PyObject *limit = Py_None;
PyObject *file = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&limit, &file)) {
goto exit;
}
return_value = _asyncio_Task_print_stack_impl(self, limit, file);
exit:
return return_value;
}
PyDoc_STRVAR(_asyncio_Task__step__doc__,
"_step($self, /, exc=None)\n"
"--\n"
"\n");
#define _ASYNCIO_TASK__STEP_METHODDEF \
{"_step", (PyCFunction)_asyncio_Task__step, METH_FASTCALL|METH_KEYWORDS, _asyncio_Task__step__doc__},
static PyObject *
_asyncio_Task__step_impl(TaskObj *self, PyObject *exc);
static PyObject *
_asyncio_Task__step(TaskObj *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"exc", NULL};
static _PyArg_Parser _parser = {"|O:_step", _keywords, 0};
PyObject *exc = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&exc)) {
goto exit;
}
return_value = _asyncio_Task__step_impl(self, exc);
exit:
return return_value;
}
PyDoc_STRVAR(_asyncio_Task__wakeup__doc__,
"_wakeup($self, /, fut)\n"
"--\n"
"\n");
#define _ASYNCIO_TASK__WAKEUP_METHODDEF \
{"_wakeup", (PyCFunction)_asyncio_Task__wakeup, METH_FASTCALL|METH_KEYWORDS, _asyncio_Task__wakeup__doc__},
static PyObject *
_asyncio_Task__wakeup_impl(TaskObj *self, PyObject *fut);
static PyObject *
_asyncio_Task__wakeup(TaskObj *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fut", NULL};
static _PyArg_Parser _parser = {"O:_wakeup", _keywords, 0};
PyObject *fut;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&fut)) {
goto exit;
}
return_value = _asyncio_Task__wakeup_impl(self, fut);
exit:
return return_value;
}
/*[clinic end generated code: output=b92f9cd2b9fb37ef input=a9049054013a1b77]*/
| 16,449 | 522 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/zlibmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(zlib_compress__doc__,
"compress($module, data, /, level=Z_DEFAULT_COMPRESSION)\n"
"--\n"
"\n"
"Returns a bytes object containing compressed data.\n"
"\n"
" data\n"
" Binary data to be compressed.\n"
" level\n"
" Compression level, in 0-9 or -1.");
#define ZLIB_COMPRESS_METHODDEF \
{"compress", (PyCFunction)zlib_compress, METH_FASTCALL|METH_KEYWORDS, zlib_compress__doc__},
static PyObject *
zlib_compress_impl(PyObject *module, Py_buffer *data, int level);
static PyObject *
zlib_compress(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"", "level", NULL};
static _PyArg_Parser _parser = {"y*|i:compress", _keywords, 0};
Py_buffer data = {NULL, NULL};
int level = Z_DEFAULT_COMPRESSION;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&data, &level)) {
goto exit;
}
return_value = zlib_compress_impl(module, &data, level);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(zlib_decompress__doc__,
"decompress($module, data, /, wbits=MAX_WBITS, bufsize=DEF_BUF_SIZE)\n"
"--\n"
"\n"
"Returns a bytes object containing the uncompressed data.\n"
"\n"
" data\n"
" Compressed data.\n"
" wbits\n"
" The window buffer size and container format.\n"
" bufsize\n"
" The initial output buffer size.");
#define ZLIB_DECOMPRESS_METHODDEF \
{"decompress", (PyCFunction)zlib_decompress, METH_FASTCALL|METH_KEYWORDS, zlib_decompress__doc__},
static PyObject *
zlib_decompress_impl(PyObject *module, Py_buffer *data, int wbits,
Py_ssize_t bufsize);
static PyObject *
zlib_decompress(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"", "wbits", "bufsize", NULL};
static _PyArg_Parser _parser = {"y*|iO&:decompress", _keywords, 0};
Py_buffer data = {NULL, NULL};
int wbits = MAX_WBITS;
Py_ssize_t bufsize = DEF_BUF_SIZE;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&data, &wbits, ssize_t_converter, &bufsize)) {
goto exit;
}
return_value = zlib_decompress_impl(module, &data, wbits, bufsize);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(zlib_compressobj__doc__,
"compressobj($module, /, level=Z_DEFAULT_COMPRESSION, method=DEFLATED,\n"
" wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL,\n"
" strategy=Z_DEFAULT_STRATEGY, zdict=None)\n"
"--\n"
"\n"
"Return a compressor object.\n"
"\n"
" level\n"
" The compression level (an integer in the range 0-9 or -1; default is\n"
" currently equivalent to 6). Higher compression levels are slower,\n"
" but produce smaller results.\n"
" method\n"
" The compression algorithm. If given, this must be DEFLATED.\n"
" wbits\n"
" +9 to +15: The base-two logarithm of the window size. Include a zlib\n"
" container.\n"
" -9 to -15: Generate a raw stream.\n"
" +25 to +31: Include a gzip container.\n"
" memLevel\n"
" Controls the amount of memory used for internal compression state.\n"
" Valid values range from 1 to 9. Higher values result in higher memory\n"
" usage, faster compression, and smaller output.\n"
" strategy\n"
" Used to tune the compression algorithm. Possible values are\n"
" Z_DEFAULT_STRATEGY, Z_RLE, Z_HUFFMAN_ONLY, Z_FILTERED, and\n"
" Z_FIXED.\n"
" zdict\n"
" The predefined compression dictionary - a sequence of bytes\n"
" containing subsequences that are likely to occur in the input data.");
#define ZLIB_COMPRESSOBJ_METHODDEF \
{"compressobj", (PyCFunction)zlib_compressobj, METH_FASTCALL|METH_KEYWORDS, zlib_compressobj__doc__},
static PyObject *
zlib_compressobj_impl(PyObject *module, int level, int method, int wbits,
int memLevel, int strategy, Py_buffer *zdict);
static PyObject *
zlib_compressobj(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"level", "method", "wbits", "memLevel", "strategy", "zdict", NULL};
static _PyArg_Parser _parser = {"|iiiiiy*:compressobj", _keywords, 0};
int level = Z_DEFAULT_COMPRESSION;
int method = DEFLATED;
int wbits = MAX_WBITS;
int memLevel = DEF_MEM_LEVEL;
int strategy = Z_DEFAULT_STRATEGY;
Py_buffer zdict = {NULL, NULL};
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&level, &method, &wbits, &memLevel, &strategy, &zdict)) {
goto exit;
}
return_value = zlib_compressobj_impl(module, level, method, wbits, memLevel, strategy, &zdict);
exit:
/* Cleanup for zdict */
if (zdict.obj) {
PyBuffer_Release(&zdict);
}
return return_value;
}
PyDoc_STRVAR(zlib_decompressobj__doc__,
"decompressobj($module, /, wbits=MAX_WBITS, zdict=b\'\')\n"
"--\n"
"\n"
"Return a decompressor object.\n"
"\n"
" wbits\n"
" The window buffer size and container format.\n"
" zdict\n"
" The predefined compression dictionary. This must be the same\n"
" dictionary as used by the compressor that produced the input data.");
#define ZLIB_DECOMPRESSOBJ_METHODDEF \
{"decompressobj", (PyCFunction)zlib_decompressobj, METH_FASTCALL|METH_KEYWORDS, zlib_decompressobj__doc__},
static PyObject *
zlib_decompressobj_impl(PyObject *module, int wbits, PyObject *zdict);
static PyObject *
zlib_decompressobj(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"wbits", "zdict", NULL};
static _PyArg_Parser _parser = {"|iO:decompressobj", _keywords, 0};
int wbits = MAX_WBITS;
PyObject *zdict = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&wbits, &zdict)) {
goto exit;
}
return_value = zlib_decompressobj_impl(module, wbits, zdict);
exit:
return return_value;
}
PyDoc_STRVAR(zlib_Compress_compress__doc__,
"compress($self, data, /)\n"
"--\n"
"\n"
"Returns a bytes object containing compressed data.\n"
"\n"
" data\n"
" Binary data to be compressed.\n"
"\n"
"After calling this function, some of the input data may still\n"
"be stored in internal buffers for later processing.\n"
"Call the flush() method to clear these buffers.");
#define ZLIB_COMPRESS_COMPRESS_METHODDEF \
{"compress", (PyCFunction)zlib_Compress_compress, METH_O, zlib_Compress_compress__doc__},
static PyObject *
zlib_Compress_compress_impl(compobject *self, Py_buffer *data);
static PyObject *
zlib_Compress_compress(compobject *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:compress", &data)) {
goto exit;
}
return_value = zlib_Compress_compress_impl(self, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(zlib_Decompress_decompress__doc__,
"decompress($self, data, /, max_length=0)\n"
"--\n"
"\n"
"Return a bytes object containing the decompressed version of the data.\n"
"\n"
" data\n"
" The binary data to decompress.\n"
" max_length\n"
" The maximum allowable length of the decompressed data.\n"
" Unconsumed input data will be stored in\n"
" the unconsumed_tail attribute.\n"
"\n"
"After calling this function, some of the input data may still be stored in\n"
"internal buffers for later processing.\n"
"Call the flush() method to clear these buffers.");
#define ZLIB_DECOMPRESS_DECOMPRESS_METHODDEF \
{"decompress", (PyCFunction)zlib_Decompress_decompress, METH_FASTCALL|METH_KEYWORDS, zlib_Decompress_decompress__doc__},
static PyObject *
zlib_Decompress_decompress_impl(compobject *self, Py_buffer *data,
Py_ssize_t max_length);
static PyObject *
zlib_Decompress_decompress(compobject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"", "max_length", NULL};
static _PyArg_Parser _parser = {"y*|O&:decompress", _keywords, 0};
Py_buffer data = {NULL, NULL};
Py_ssize_t max_length = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&data, ssize_t_converter, &max_length)) {
goto exit;
}
return_value = zlib_Decompress_decompress_impl(self, &data, max_length);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(zlib_Compress_flush__doc__,
"flush($self, mode=zlib.Z_FINISH, /)\n"
"--\n"
"\n"
"Return a bytes object containing any remaining compressed data.\n"
"\n"
" mode\n"
" One of the constants Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH.\n"
" If mode == Z_FINISH, the compressor object can no longer be\n"
" used after calling the flush() method. Otherwise, more data\n"
" can still be compressed.");
#define ZLIB_COMPRESS_FLUSH_METHODDEF \
{"flush", (PyCFunction)zlib_Compress_flush, METH_FASTCALL, zlib_Compress_flush__doc__},
static PyObject *
zlib_Compress_flush_impl(compobject *self, int mode);
static PyObject *
zlib_Compress_flush(compobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int mode = Z_FINISH;
if (!_PyArg_ParseStack(args, nargs, "|i:flush",
&mode)) {
goto exit;
}
return_value = zlib_Compress_flush_impl(self, mode);
exit:
return return_value;
}
#if defined(HAVE_ZLIB_COPY)
PyDoc_STRVAR(zlib_Compress_copy__doc__,
"copy($self, /)\n"
"--\n"
"\n"
"Return a copy of the compression object.");
#define ZLIB_COMPRESS_COPY_METHODDEF \
{"copy", (PyCFunction)zlib_Compress_copy, METH_NOARGS, zlib_Compress_copy__doc__},
static PyObject *
zlib_Compress_copy_impl(compobject *self);
static PyObject *
zlib_Compress_copy(compobject *self, PyObject *Py_UNUSED(ignored))
{
return zlib_Compress_copy_impl(self);
}
#endif /* defined(HAVE_ZLIB_COPY) */
#if defined(HAVE_ZLIB_COPY)
PyDoc_STRVAR(zlib_Decompress_copy__doc__,
"copy($self, /)\n"
"--\n"
"\n"
"Return a copy of the decompression object.");
#define ZLIB_DECOMPRESS_COPY_METHODDEF \
{"copy", (PyCFunction)zlib_Decompress_copy, METH_NOARGS, zlib_Decompress_copy__doc__},
static PyObject *
zlib_Decompress_copy_impl(compobject *self);
static PyObject *
zlib_Decompress_copy(compobject *self, PyObject *Py_UNUSED(ignored))
{
return zlib_Decompress_copy_impl(self);
}
#endif /* defined(HAVE_ZLIB_COPY) */
PyDoc_STRVAR(zlib_Decompress_flush__doc__,
"flush($self, length=zlib.DEF_BUF_SIZE, /)\n"
"--\n"
"\n"
"Return a bytes object containing any remaining decompressed data.\n"
"\n"
" length\n"
" the initial size of the output buffer.");
#define ZLIB_DECOMPRESS_FLUSH_METHODDEF \
{"flush", (PyCFunction)zlib_Decompress_flush, METH_FASTCALL, zlib_Decompress_flush__doc__},
static PyObject *
zlib_Decompress_flush_impl(compobject *self, Py_ssize_t length);
static PyObject *
zlib_Decompress_flush(compobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t length = DEF_BUF_SIZE;
if (!_PyArg_ParseStack(args, nargs, "|O&:flush",
ssize_t_converter, &length)) {
goto exit;
}
return_value = zlib_Decompress_flush_impl(self, length);
exit:
return return_value;
}
PyDoc_STRVAR(zlib_adler32__doc__,
"adler32($module, data, value=1, /)\n"
"--\n"
"\n"
"Compute an Adler-32 checksum of data.\n"
"\n"
" value\n"
" Starting value of the checksum.\n"
"\n"
"The returned checksum is an integer.");
#define ZLIB_ADLER32_METHODDEF \
{"adler32", (PyCFunction)zlib_adler32, METH_FASTCALL, zlib_adler32__doc__},
static PyObject *
zlib_adler32_impl(PyObject *module, Py_buffer *data, unsigned int value);
static PyObject *
zlib_adler32(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
unsigned int value = 1;
if (!_PyArg_ParseStack(args, nargs, "y*|I:adler32",
&data, &value)) {
goto exit;
}
return_value = zlib_adler32_impl(module, &data, value);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(zlib_crc32__doc__,
"crc32($module, data, value=0, /)\n"
"--\n"
"\n"
"Compute a CRC-32 checksum of data.\n"
"\n"
" value\n"
" Starting value of the checksum.\n"
"\n"
"The returned checksum is an integer.");
#define ZLIB_CRC32_METHODDEF \
{"crc32", (PyCFunction)zlib_crc32, METH_FASTCALL, zlib_crc32__doc__},
static PyObject *
zlib_crc32_impl(PyObject *module, Py_buffer *data, unsigned int value);
static PyObject *
zlib_crc32(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
unsigned int value = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|I:crc32",
&data, &value)) {
goto exit;
}
return_value = zlib_crc32_impl(module, &data, value);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
#ifndef ZLIB_COMPRESS_COPY_METHODDEF
#define ZLIB_COMPRESS_COPY_METHODDEF
#endif /* !defined(ZLIB_COMPRESS_COPY_METHODDEF) */
/*[clinic end generated code: output=9fb104ee528088ee input=a9049054013a1b77]*/
| 13,761 | 473 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_datetimemodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(datetime_datetime_now__doc__,
"now($type, /, tz=None)\n"
"--\n"
"\n"
"Returns new datetime object representing current time local to tz.\n"
"\n"
" tz\n"
" Timezone object.\n"
"\n"
"If no tz is specified, uses local timezone.");
#define DATETIME_DATETIME_NOW_METHODDEF \
{"now", (PyCFunction)datetime_datetime_now, METH_FASTCALL|METH_KEYWORDS|METH_CLASS, datetime_datetime_now__doc__},
static PyObject *
datetime_datetime_now_impl(PyTypeObject *type, PyObject *tz);
static PyObject *
datetime_datetime_now(PyTypeObject *type, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"tz", NULL};
static _PyArg_Parser _parser = {"|O:now", _keywords, 0};
PyObject *tz = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&tz)) {
goto exit;
}
return_value = datetime_datetime_now_impl(type, tz);
exit:
return return_value;
}
/*[clinic end generated code: output=93cb014e47dae4b3 input=a9049054013a1b77]*/
| 1,155 | 41 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_tkinter.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_tkinter_tkapp_eval__doc__,
"eval($self, script, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_EVAL_METHODDEF \
{"eval", (PyCFunction)_tkinter_tkapp_eval, METH_O, _tkinter_tkapp_eval__doc__},
static PyObject *
_tkinter_tkapp_eval_impl(TkappObject *self, const char *script);
static PyObject *
_tkinter_tkapp_eval(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *script;
if (!PyArg_Parse(arg, "s:eval", &script)) {
goto exit;
}
return_value = _tkinter_tkapp_eval_impl(self, script);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_evalfile__doc__,
"evalfile($self, fileName, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_EVALFILE_METHODDEF \
{"evalfile", (PyCFunction)_tkinter_tkapp_evalfile, METH_O, _tkinter_tkapp_evalfile__doc__},
static PyObject *
_tkinter_tkapp_evalfile_impl(TkappObject *self, const char *fileName);
static PyObject *
_tkinter_tkapp_evalfile(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *fileName;
if (!PyArg_Parse(arg, "s:evalfile", &fileName)) {
goto exit;
}
return_value = _tkinter_tkapp_evalfile_impl(self, fileName);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_record__doc__,
"record($self, script, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_RECORD_METHODDEF \
{"record", (PyCFunction)_tkinter_tkapp_record, METH_O, _tkinter_tkapp_record__doc__},
static PyObject *
_tkinter_tkapp_record_impl(TkappObject *self, const char *script);
static PyObject *
_tkinter_tkapp_record(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *script;
if (!PyArg_Parse(arg, "s:record", &script)) {
goto exit;
}
return_value = _tkinter_tkapp_record_impl(self, script);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_adderrorinfo__doc__,
"adderrorinfo($self, msg, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_ADDERRORINFO_METHODDEF \
{"adderrorinfo", (PyCFunction)_tkinter_tkapp_adderrorinfo, METH_O, _tkinter_tkapp_adderrorinfo__doc__},
static PyObject *
_tkinter_tkapp_adderrorinfo_impl(TkappObject *self, const char *msg);
static PyObject *
_tkinter_tkapp_adderrorinfo(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *msg;
if (!PyArg_Parse(arg, "s:adderrorinfo", &msg)) {
goto exit;
}
return_value = _tkinter_tkapp_adderrorinfo_impl(self, msg);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_getint__doc__,
"getint($self, arg, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_GETINT_METHODDEF \
{"getint", (PyCFunction)_tkinter_tkapp_getint, METH_O, _tkinter_tkapp_getint__doc__},
PyDoc_STRVAR(_tkinter_tkapp_getdouble__doc__,
"getdouble($self, arg, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_GETDOUBLE_METHODDEF \
{"getdouble", (PyCFunction)_tkinter_tkapp_getdouble, METH_O, _tkinter_tkapp_getdouble__doc__},
PyDoc_STRVAR(_tkinter_tkapp_getboolean__doc__,
"getboolean($self, arg, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_GETBOOLEAN_METHODDEF \
{"getboolean", (PyCFunction)_tkinter_tkapp_getboolean, METH_O, _tkinter_tkapp_getboolean__doc__},
PyDoc_STRVAR(_tkinter_tkapp_exprstring__doc__,
"exprstring($self, s, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_EXPRSTRING_METHODDEF \
{"exprstring", (PyCFunction)_tkinter_tkapp_exprstring, METH_O, _tkinter_tkapp_exprstring__doc__},
static PyObject *
_tkinter_tkapp_exprstring_impl(TkappObject *self, const char *s);
static PyObject *
_tkinter_tkapp_exprstring(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *s;
if (!PyArg_Parse(arg, "s:exprstring", &s)) {
goto exit;
}
return_value = _tkinter_tkapp_exprstring_impl(self, s);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_exprlong__doc__,
"exprlong($self, s, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_EXPRLONG_METHODDEF \
{"exprlong", (PyCFunction)_tkinter_tkapp_exprlong, METH_O, _tkinter_tkapp_exprlong__doc__},
static PyObject *
_tkinter_tkapp_exprlong_impl(TkappObject *self, const char *s);
static PyObject *
_tkinter_tkapp_exprlong(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *s;
if (!PyArg_Parse(arg, "s:exprlong", &s)) {
goto exit;
}
return_value = _tkinter_tkapp_exprlong_impl(self, s);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_exprdouble__doc__,
"exprdouble($self, s, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_EXPRDOUBLE_METHODDEF \
{"exprdouble", (PyCFunction)_tkinter_tkapp_exprdouble, METH_O, _tkinter_tkapp_exprdouble__doc__},
static PyObject *
_tkinter_tkapp_exprdouble_impl(TkappObject *self, const char *s);
static PyObject *
_tkinter_tkapp_exprdouble(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *s;
if (!PyArg_Parse(arg, "s:exprdouble", &s)) {
goto exit;
}
return_value = _tkinter_tkapp_exprdouble_impl(self, s);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_exprboolean__doc__,
"exprboolean($self, s, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_EXPRBOOLEAN_METHODDEF \
{"exprboolean", (PyCFunction)_tkinter_tkapp_exprboolean, METH_O, _tkinter_tkapp_exprboolean__doc__},
static PyObject *
_tkinter_tkapp_exprboolean_impl(TkappObject *self, const char *s);
static PyObject *
_tkinter_tkapp_exprboolean(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *s;
if (!PyArg_Parse(arg, "s:exprboolean", &s)) {
goto exit;
}
return_value = _tkinter_tkapp_exprboolean_impl(self, s);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_splitlist__doc__,
"splitlist($self, arg, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_SPLITLIST_METHODDEF \
{"splitlist", (PyCFunction)_tkinter_tkapp_splitlist, METH_O, _tkinter_tkapp_splitlist__doc__},
PyDoc_STRVAR(_tkinter_tkapp_split__doc__,
"split($self, arg, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_SPLIT_METHODDEF \
{"split", (PyCFunction)_tkinter_tkapp_split, METH_O, _tkinter_tkapp_split__doc__},
PyDoc_STRVAR(_tkinter_tkapp_createcommand__doc__,
"createcommand($self, name, func, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_CREATECOMMAND_METHODDEF \
{"createcommand", (PyCFunction)_tkinter_tkapp_createcommand, METH_VARARGS, _tkinter_tkapp_createcommand__doc__},
static PyObject *
_tkinter_tkapp_createcommand_impl(TkappObject *self, const char *name,
PyObject *func);
static PyObject *
_tkinter_tkapp_createcommand(TkappObject *self, PyObject *args)
{
PyObject *return_value = NULL;
const char *name;
PyObject *func;
if (!PyArg_ParseTuple(args, "sO:createcommand",
&name, &func)) {
goto exit;
}
return_value = _tkinter_tkapp_createcommand_impl(self, name, func);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_deletecommand__doc__,
"deletecommand($self, name, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_DELETECOMMAND_METHODDEF \
{"deletecommand", (PyCFunction)_tkinter_tkapp_deletecommand, METH_O, _tkinter_tkapp_deletecommand__doc__},
static PyObject *
_tkinter_tkapp_deletecommand_impl(TkappObject *self, const char *name);
static PyObject *
_tkinter_tkapp_deletecommand(TkappObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *name;
if (!PyArg_Parse(arg, "s:deletecommand", &name)) {
goto exit;
}
return_value = _tkinter_tkapp_deletecommand_impl(self, name);
exit:
return return_value;
}
#if defined(HAVE_CREATEFILEHANDLER)
PyDoc_STRVAR(_tkinter_tkapp_createfilehandler__doc__,
"createfilehandler($self, file, mask, func, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_CREATEFILEHANDLER_METHODDEF \
{"createfilehandler", (PyCFunction)_tkinter_tkapp_createfilehandler, METH_VARARGS, _tkinter_tkapp_createfilehandler__doc__},
static PyObject *
_tkinter_tkapp_createfilehandler_impl(TkappObject *self, PyObject *file,
int mask, PyObject *func);
static PyObject *
_tkinter_tkapp_createfilehandler(TkappObject *self, PyObject *args)
{
PyObject *return_value = NULL;
PyObject *file;
int mask;
PyObject *func;
if (!PyArg_ParseTuple(args, "OiO:createfilehandler",
&file, &mask, &func)) {
goto exit;
}
return_value = _tkinter_tkapp_createfilehandler_impl(self, file, mask, func);
exit:
return return_value;
}
#endif /* defined(HAVE_CREATEFILEHANDLER) */
#if defined(HAVE_CREATEFILEHANDLER)
PyDoc_STRVAR(_tkinter_tkapp_deletefilehandler__doc__,
"deletefilehandler($self, file, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF \
{"deletefilehandler", (PyCFunction)_tkinter_tkapp_deletefilehandler, METH_O, _tkinter_tkapp_deletefilehandler__doc__},
#endif /* defined(HAVE_CREATEFILEHANDLER) */
PyDoc_STRVAR(_tkinter_tktimertoken_deletetimerhandler__doc__,
"deletetimerhandler($self, /)\n"
"--\n"
"\n");
#define _TKINTER_TKTIMERTOKEN_DELETETIMERHANDLER_METHODDEF \
{"deletetimerhandler", (PyCFunction)_tkinter_tktimertoken_deletetimerhandler, METH_NOARGS, _tkinter_tktimertoken_deletetimerhandler__doc__},
static PyObject *
_tkinter_tktimertoken_deletetimerhandler_impl(TkttObject *self);
static PyObject *
_tkinter_tktimertoken_deletetimerhandler(TkttObject *self, PyObject *Py_UNUSED(ignored))
{
return _tkinter_tktimertoken_deletetimerhandler_impl(self);
}
PyDoc_STRVAR(_tkinter_tkapp_createtimerhandler__doc__,
"createtimerhandler($self, milliseconds, func, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_CREATETIMERHANDLER_METHODDEF \
{"createtimerhandler", (PyCFunction)_tkinter_tkapp_createtimerhandler, METH_VARARGS, _tkinter_tkapp_createtimerhandler__doc__},
static PyObject *
_tkinter_tkapp_createtimerhandler_impl(TkappObject *self, int milliseconds,
PyObject *func);
static PyObject *
_tkinter_tkapp_createtimerhandler(TkappObject *self, PyObject *args)
{
PyObject *return_value = NULL;
int milliseconds;
PyObject *func;
if (!PyArg_ParseTuple(args, "iO:createtimerhandler",
&milliseconds, &func)) {
goto exit;
}
return_value = _tkinter_tkapp_createtimerhandler_impl(self, milliseconds, func);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_mainloop__doc__,
"mainloop($self, threshold=0, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_MAINLOOP_METHODDEF \
{"mainloop", (PyCFunction)_tkinter_tkapp_mainloop, METH_VARARGS, _tkinter_tkapp_mainloop__doc__},
static PyObject *
_tkinter_tkapp_mainloop_impl(TkappObject *self, int threshold);
static PyObject *
_tkinter_tkapp_mainloop(TkappObject *self, PyObject *args)
{
PyObject *return_value = NULL;
int threshold = 0;
if (!PyArg_ParseTuple(args, "|i:mainloop",
&threshold)) {
goto exit;
}
return_value = _tkinter_tkapp_mainloop_impl(self, threshold);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_dooneevent__doc__,
"dooneevent($self, flags=0, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_DOONEEVENT_METHODDEF \
{"dooneevent", (PyCFunction)_tkinter_tkapp_dooneevent, METH_VARARGS, _tkinter_tkapp_dooneevent__doc__},
static PyObject *
_tkinter_tkapp_dooneevent_impl(TkappObject *self, int flags);
static PyObject *
_tkinter_tkapp_dooneevent(TkappObject *self, PyObject *args)
{
PyObject *return_value = NULL;
int flags = 0;
if (!PyArg_ParseTuple(args, "|i:dooneevent",
&flags)) {
goto exit;
}
return_value = _tkinter_tkapp_dooneevent_impl(self, flags);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_tkapp_quit__doc__,
"quit($self, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_QUIT_METHODDEF \
{"quit", (PyCFunction)_tkinter_tkapp_quit, METH_NOARGS, _tkinter_tkapp_quit__doc__},
static PyObject *
_tkinter_tkapp_quit_impl(TkappObject *self);
static PyObject *
_tkinter_tkapp_quit(TkappObject *self, PyObject *Py_UNUSED(ignored))
{
return _tkinter_tkapp_quit_impl(self);
}
PyDoc_STRVAR(_tkinter_tkapp_interpaddr__doc__,
"interpaddr($self, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_INTERPADDR_METHODDEF \
{"interpaddr", (PyCFunction)_tkinter_tkapp_interpaddr, METH_NOARGS, _tkinter_tkapp_interpaddr__doc__},
static PyObject *
_tkinter_tkapp_interpaddr_impl(TkappObject *self);
static PyObject *
_tkinter_tkapp_interpaddr(TkappObject *self, PyObject *Py_UNUSED(ignored))
{
return _tkinter_tkapp_interpaddr_impl(self);
}
PyDoc_STRVAR(_tkinter_tkapp_loadtk__doc__,
"loadtk($self, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_LOADTK_METHODDEF \
{"loadtk", (PyCFunction)_tkinter_tkapp_loadtk, METH_NOARGS, _tkinter_tkapp_loadtk__doc__},
static PyObject *
_tkinter_tkapp_loadtk_impl(TkappObject *self);
static PyObject *
_tkinter_tkapp_loadtk(TkappObject *self, PyObject *Py_UNUSED(ignored))
{
return _tkinter_tkapp_loadtk_impl(self);
}
PyDoc_STRVAR(_tkinter_tkapp_willdispatch__doc__,
"willdispatch($self, /)\n"
"--\n"
"\n");
#define _TKINTER_TKAPP_WILLDISPATCH_METHODDEF \
{"willdispatch", (PyCFunction)_tkinter_tkapp_willdispatch, METH_NOARGS, _tkinter_tkapp_willdispatch__doc__},
static PyObject *
_tkinter_tkapp_willdispatch_impl(TkappObject *self);
static PyObject *
_tkinter_tkapp_willdispatch(TkappObject *self, PyObject *Py_UNUSED(ignored))
{
return _tkinter_tkapp_willdispatch_impl(self);
}
PyDoc_STRVAR(_tkinter__flatten__doc__,
"_flatten($module, item, /)\n"
"--\n"
"\n");
#define _TKINTER__FLATTEN_METHODDEF \
{"_flatten", (PyCFunction)_tkinter__flatten, METH_O, _tkinter__flatten__doc__},
PyDoc_STRVAR(_tkinter_create__doc__,
"create($module, screenName=None, baseName=None, className=\'Tk\',\n"
" interactive=False, wantobjects=False, wantTk=True, sync=False,\n"
" use=None, /)\n"
"--\n"
"\n"
"\n"
"\n"
" wantTk\n"
" if false, then Tk_Init() doesn\'t get called\n"
" sync\n"
" if true, then pass -sync to wish\n"
" use\n"
" if not None, then pass -use to wish");
#define _TKINTER_CREATE_METHODDEF \
{"create", (PyCFunction)_tkinter_create, METH_VARARGS, _tkinter_create__doc__},
static PyObject *
_tkinter_create_impl(PyObject *module, const char *screenName,
const char *baseName, const char *className,
int interactive, int wantobjects, int wantTk, int sync,
const char *use);
static PyObject *
_tkinter_create(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
const char *screenName = NULL;
const char *baseName = NULL;
const char *className = "Tk";
int interactive = 0;
int wantobjects = 0;
int wantTk = 1;
int sync = 0;
const char *use = NULL;
if (!PyArg_ParseTuple(args, "|zssiiiiz:create",
&screenName, &baseName, &className, &interactive, &wantobjects, &wantTk, &sync, &use)) {
goto exit;
}
return_value = _tkinter_create_impl(module, screenName, baseName, className, interactive, wantobjects, wantTk, sync, use);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_setbusywaitinterval__doc__,
"setbusywaitinterval($module, new_val, /)\n"
"--\n"
"\n"
"Set the busy-wait interval in milliseconds between successive calls to Tcl_DoOneEvent in a threaded Python interpreter.\n"
"\n"
"It should be set to a divisor of the maximum time between frames in an animation.");
#define _TKINTER_SETBUSYWAITINTERVAL_METHODDEF \
{"setbusywaitinterval", (PyCFunction)_tkinter_setbusywaitinterval, METH_O, _tkinter_setbusywaitinterval__doc__},
static PyObject *
_tkinter_setbusywaitinterval_impl(PyObject *module, int new_val);
static PyObject *
_tkinter_setbusywaitinterval(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int new_val;
if (!PyArg_Parse(arg, "i:setbusywaitinterval", &new_val)) {
goto exit;
}
return_value = _tkinter_setbusywaitinterval_impl(module, new_val);
exit:
return return_value;
}
PyDoc_STRVAR(_tkinter_getbusywaitinterval__doc__,
"getbusywaitinterval($module, /)\n"
"--\n"
"\n"
"Return the current busy-wait interval between successive calls to Tcl_DoOneEvent in a threaded Python interpreter.");
#define _TKINTER_GETBUSYWAITINTERVAL_METHODDEF \
{"getbusywaitinterval", (PyCFunction)_tkinter_getbusywaitinterval, METH_NOARGS, _tkinter_getbusywaitinterval__doc__},
static int
_tkinter_getbusywaitinterval_impl(PyObject *module);
static PyObject *
_tkinter_getbusywaitinterval(PyObject *module, PyObject *Py_UNUSED(ignored))
{
PyObject *return_value = NULL;
int _return_value;
_return_value = _tkinter_getbusywaitinterval_impl(module);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
#ifndef _TKINTER_TKAPP_CREATEFILEHANDLER_METHODDEF
#define _TKINTER_TKAPP_CREATEFILEHANDLER_METHODDEF
#endif /* !defined(_TKINTER_TKAPP_CREATEFILEHANDLER_METHODDEF) */
#ifndef _TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF
#define _TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF
#endif /* !defined(_TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF) */
/*[clinic end generated code: output=b0be55aacff2be9b input=a9049054013a1b77]*/
| 17,439 | 643 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_gdbmmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_gdbm_gdbm_get__doc__,
"get($self, key, default=None, /)\n"
"--\n"
"\n"
"Get the value for key, or default if not present.");
#define _GDBM_GDBM_GET_METHODDEF \
{"get", (PyCFunction)_gdbm_gdbm_get, METH_FASTCALL, _gdbm_gdbm_get__doc__},
static PyObject *
_gdbm_gdbm_get_impl(dbmobject *self, PyObject *key, PyObject *default_value);
static PyObject *
_gdbm_gdbm_get(dbmobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *key;
PyObject *default_value = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "get",
1, 2,
&key, &default_value)) {
goto exit;
}
return_value = _gdbm_gdbm_get_impl(self, key, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(_gdbm_gdbm_setdefault__doc__,
"setdefault($self, key, default=None, /)\n"
"--\n"
"\n"
"Get value for key, or set it to default and return default if not present.");
#define _GDBM_GDBM_SETDEFAULT_METHODDEF \
{"setdefault", (PyCFunction)_gdbm_gdbm_setdefault, METH_FASTCALL, _gdbm_gdbm_setdefault__doc__},
static PyObject *
_gdbm_gdbm_setdefault_impl(dbmobject *self, PyObject *key,
PyObject *default_value);
static PyObject *
_gdbm_gdbm_setdefault(dbmobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *key;
PyObject *default_value = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "setdefault",
1, 2,
&key, &default_value)) {
goto exit;
}
return_value = _gdbm_gdbm_setdefault_impl(self, key, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(_gdbm_gdbm_close__doc__,
"close($self, /)\n"
"--\n"
"\n"
"Close the database.");
#define _GDBM_GDBM_CLOSE_METHODDEF \
{"close", (PyCFunction)_gdbm_gdbm_close, METH_NOARGS, _gdbm_gdbm_close__doc__},
static PyObject *
_gdbm_gdbm_close_impl(dbmobject *self);
static PyObject *
_gdbm_gdbm_close(dbmobject *self, PyObject *Py_UNUSED(ignored))
{
return _gdbm_gdbm_close_impl(self);
}
PyDoc_STRVAR(_gdbm_gdbm_keys__doc__,
"keys($self, /)\n"
"--\n"
"\n"
"Get a list of all keys in the database.");
#define _GDBM_GDBM_KEYS_METHODDEF \
{"keys", (PyCFunction)_gdbm_gdbm_keys, METH_NOARGS, _gdbm_gdbm_keys__doc__},
static PyObject *
_gdbm_gdbm_keys_impl(dbmobject *self);
static PyObject *
_gdbm_gdbm_keys(dbmobject *self, PyObject *Py_UNUSED(ignored))
{
return _gdbm_gdbm_keys_impl(self);
}
PyDoc_STRVAR(_gdbm_gdbm_firstkey__doc__,
"firstkey($self, /)\n"
"--\n"
"\n"
"Return the starting key for the traversal.\n"
"\n"
"It\'s possible to loop over every key in the database using this method\n"
"and the nextkey() method. The traversal is ordered by GDBM\'s internal\n"
"hash values, and won\'t be sorted by the key values.");
#define _GDBM_GDBM_FIRSTKEY_METHODDEF \
{"firstkey", (PyCFunction)_gdbm_gdbm_firstkey, METH_NOARGS, _gdbm_gdbm_firstkey__doc__},
static PyObject *
_gdbm_gdbm_firstkey_impl(dbmobject *self);
static PyObject *
_gdbm_gdbm_firstkey(dbmobject *self, PyObject *Py_UNUSED(ignored))
{
return _gdbm_gdbm_firstkey_impl(self);
}
PyDoc_STRVAR(_gdbm_gdbm_nextkey__doc__,
"nextkey($self, key, /)\n"
"--\n"
"\n"
"Returns the key that follows key in the traversal.\n"
"\n"
"The following code prints every key in the database db, without having\n"
"to create a list in memory that contains them all:\n"
"\n"
" k = db.firstkey()\n"
" while k != None:\n"
" print(k)\n"
" k = db.nextkey(k)");
#define _GDBM_GDBM_NEXTKEY_METHODDEF \
{"nextkey", (PyCFunction)_gdbm_gdbm_nextkey, METH_O, _gdbm_gdbm_nextkey__doc__},
static PyObject *
_gdbm_gdbm_nextkey_impl(dbmobject *self, const char *key,
Py_ssize_clean_t key_length);
static PyObject *
_gdbm_gdbm_nextkey(dbmobject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *key;
Py_ssize_clean_t key_length;
if (!PyArg_Parse(arg, "s#:nextkey", &key, &key_length)) {
goto exit;
}
return_value = _gdbm_gdbm_nextkey_impl(self, key, key_length);
exit:
return return_value;
}
PyDoc_STRVAR(_gdbm_gdbm_reorganize__doc__,
"reorganize($self, /)\n"
"--\n"
"\n"
"Reorganize the database.\n"
"\n"
"If you have carried out a lot of deletions and would like to shrink\n"
"the space used by the GDBM file, this routine will reorganize the\n"
"database. GDBM will not shorten the length of a database file except\n"
"by using this reorganization; otherwise, deleted file space will be\n"
"kept and reused as new (key,value) pairs are added.");
#define _GDBM_GDBM_REORGANIZE_METHODDEF \
{"reorganize", (PyCFunction)_gdbm_gdbm_reorganize, METH_NOARGS, _gdbm_gdbm_reorganize__doc__},
static PyObject *
_gdbm_gdbm_reorganize_impl(dbmobject *self);
static PyObject *
_gdbm_gdbm_reorganize(dbmobject *self, PyObject *Py_UNUSED(ignored))
{
return _gdbm_gdbm_reorganize_impl(self);
}
PyDoc_STRVAR(_gdbm_gdbm_sync__doc__,
"sync($self, /)\n"
"--\n"
"\n"
"Flush the database to the disk file.\n"
"\n"
"When the database has been opened in fast mode, this method forces\n"
"any unwritten data to be written to the disk.");
#define _GDBM_GDBM_SYNC_METHODDEF \
{"sync", (PyCFunction)_gdbm_gdbm_sync, METH_NOARGS, _gdbm_gdbm_sync__doc__},
static PyObject *
_gdbm_gdbm_sync_impl(dbmobject *self);
static PyObject *
_gdbm_gdbm_sync(dbmobject *self, PyObject *Py_UNUSED(ignored))
{
return _gdbm_gdbm_sync_impl(self);
}
PyDoc_STRVAR(dbmopen__doc__,
"open($module, filename, flags=\'r\', mode=0o666, /)\n"
"--\n"
"\n"
"Open a dbm database and return a dbm object.\n"
"\n"
"The filename argument is the name of the database file.\n"
"\n"
"The optional flags argument can be \'r\' (to open an existing database\n"
"for reading only -- default), \'w\' (to open an existing database for\n"
"reading and writing), \'c\' (which creates the database if it doesn\'t\n"
"exist), or \'n\' (which always creates a new empty database).\n"
"\n"
"Some versions of gdbm support additional flags which must be\n"
"appended to one of the flags described above. The module constant\n"
"\'open_flags\' is a string of valid additional flags. The \'f\' flag\n"
"opens the database in fast mode; altered data will not automatically\n"
"be written to the disk after every change. This results in faster\n"
"writes to the database, but may result in an inconsistent database\n"
"if the program crashes while the database is still open. Use the\n"
"sync() method to force any unwritten data to be written to the disk.\n"
"The \'s\' flag causes all database operations to be synchronized to\n"
"disk. The \'u\' flag disables locking of the database file.\n"
"\n"
"The optional mode argument is the Unix mode of the file, used only\n"
"when the database has to be created. It defaults to octal 0o666.");
#define DBMOPEN_METHODDEF \
{"open", (PyCFunction)dbmopen, METH_FASTCALL, dbmopen__doc__},
static PyObject *
dbmopen_impl(PyObject *module, PyObject *filename, const char *flags,
int mode);
static PyObject *
dbmopen(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *filename;
const char *flags = "r";
int mode = 438;
if (!_PyArg_ParseStack(args, nargs, "U|si:open",
&filename, &flags, &mode)) {
goto exit;
}
return_value = dbmopen_impl(module, filename, flags, mode);
exit:
return return_value;
}
/*[clinic end generated code: output=275c7f70ce0a9d2f input=a9049054013a1b77]*/
| 7,610 | 259 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_weakref.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_weakref_getweakrefcount__doc__,
"getweakrefcount($module, object, /)\n"
"--\n"
"\n"
"Return the number of weak references to \'object\'.");
#define _WEAKREF_GETWEAKREFCOUNT_METHODDEF \
{"getweakrefcount", (PyCFunction)_weakref_getweakrefcount, METH_O, _weakref_getweakrefcount__doc__},
static Py_ssize_t
_weakref_getweakrefcount_impl(PyObject *module, PyObject *object);
static PyObject *
_weakref_getweakrefcount(PyObject *module, PyObject *object)
{
PyObject *return_value = NULL;
Py_ssize_t _return_value;
_return_value = _weakref_getweakrefcount_impl(module, object);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_weakref__remove_dead_weakref__doc__,
"_remove_dead_weakref($module, dct, key, /)\n"
"--\n"
"\n"
"Atomically remove key from dict if it points to a dead weakref.");
#define _WEAKREF__REMOVE_DEAD_WEAKREF_METHODDEF \
{"_remove_dead_weakref", (PyCFunction)_weakref__remove_dead_weakref, METH_FASTCALL, _weakref__remove_dead_weakref__doc__},
static PyObject *
_weakref__remove_dead_weakref_impl(PyObject *module, PyObject *dct,
PyObject *key);
static PyObject *
_weakref__remove_dead_weakref(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *dct;
PyObject *key;
if (!_PyArg_ParseStack(args, nargs, "O!O:_remove_dead_weakref",
&PyDict_Type, &dct, &key)) {
goto exit;
}
return_value = _weakref__remove_dead_weakref_impl(module, dct, key);
exit:
return return_value;
}
/*[clinic end generated code: output=87ddb70850080222 input=a9049054013a1b77]*/
| 1,850 | 64 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/pwdmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(pwd_getpwuid__doc__,
"getpwuid($module, uidobj, /)\n"
"--\n"
"\n"
"Return the password database entry for the given numeric user ID.\n"
"\n"
"See `help(pwd)` for more on password database entries.");
#define PWD_GETPWUID_METHODDEF \
{"getpwuid", (PyCFunction)pwd_getpwuid, METH_O, pwd_getpwuid__doc__},
PyDoc_STRVAR(pwd_getpwnam__doc__,
"getpwnam($module, arg, /)\n"
"--\n"
"\n"
"Return the password database entry for the given user name.\n"
"\n"
"See `help(pwd)` for more on password database entries.");
#define PWD_GETPWNAM_METHODDEF \
{"getpwnam", (PyCFunction)pwd_getpwnam, METH_O, pwd_getpwnam__doc__},
static PyObject *
pwd_getpwnam_impl(PyObject *module, PyObject *arg);
static PyObject *
pwd_getpwnam(PyObject *module, PyObject *arg_)
{
PyObject *return_value = NULL;
PyObject *arg;
if (!PyArg_Parse(arg_, "U:getpwnam", &arg)) {
goto exit;
}
return_value = pwd_getpwnam_impl(module, arg);
exit:
return return_value;
}
#if defined(HAVE_GETPWENT)
PyDoc_STRVAR(pwd_getpwall__doc__,
"getpwall($module, /)\n"
"--\n"
"\n"
"Return a list of all available password database entries, in arbitrary order.\n"
"\n"
"See help(pwd) for more on password database entries.");
#define PWD_GETPWALL_METHODDEF \
{"getpwall", (PyCFunction)pwd_getpwall, METH_NOARGS, pwd_getpwall__doc__},
static PyObject *
pwd_getpwall_impl(PyObject *module);
static PyObject *
pwd_getpwall(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return pwd_getpwall_impl(module);
}
#endif /* defined(HAVE_GETPWENT) */
#ifndef PWD_GETPWALL_METHODDEF
#define PWD_GETPWALL_METHODDEF
#endif /* !defined(PWD_GETPWALL_METHODDEF) */
/*[clinic end generated code: output=fc41d8d88ec206d8 input=a9049054013a1b77]*/
| 1,844 | 74 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_cursesmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(curses_window_addch__doc__,
"addch([y, x,] ch, [attr])\n"
"Paint character ch at (y, x) with attributes attr.\n"
"\n"
" y\n"
" Y-coordinate.\n"
" x\n"
" X-coordinate.\n"
" ch\n"
" Character to add.\n"
" attr\n"
" Attributes for the character.\n"
"\n"
"Paint character ch at (y, x) with attributes attr,\n"
"overwriting any character previously painted at that location.\n"
"By default, the character position and attributes are the\n"
"current settings for the window object.");
#define CURSES_WINDOW_ADDCH_METHODDEF \
{"addch", (PyCFunction)curses_window_addch, METH_VARARGS, curses_window_addch__doc__},
static PyObject *
curses_window_addch_impl(PyCursesWindowObject *self, int group_left_1, int y,
int x, PyObject *ch, int group_right_1, long attr);
static PyObject *
curses_window_addch(PyCursesWindowObject *self, PyObject *args)
{
PyObject *return_value = NULL;
int group_left_1 = 0;
int y = 0;
int x = 0;
PyObject *ch;
int group_right_1 = 0;
long attr = 0;
switch (PyTuple_GET_SIZE(args)) {
case 1:
if (!PyArg_ParseTuple(args, "O:addch", &ch)) {
goto exit;
}
break;
case 2:
if (!PyArg_ParseTuple(args, "Ol:addch", &ch, &attr)) {
goto exit;
}
group_right_1 = 1;
break;
case 3:
if (!PyArg_ParseTuple(args, "iiO:addch", &y, &x, &ch)) {
goto exit;
}
group_left_1 = 1;
break;
case 4:
if (!PyArg_ParseTuple(args, "iiOl:addch", &y, &x, &ch, &attr)) {
goto exit;
}
group_right_1 = 1;
group_left_1 = 1;
break;
default:
PyErr_SetString(PyExc_TypeError, "curses.window.addch requires 1 to 4 arguments");
goto exit;
}
return_value = curses_window_addch_impl(self, group_left_1, y, x, ch, group_right_1, attr);
exit:
return return_value;
}
/*[clinic end generated code: output=13ffc5f8d79cbfbf input=a9049054013a1b77]*/
| 2,227 | 77 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/spwdmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
#if defined(HAVE_GETSPNAM)
PyDoc_STRVAR(spwd_getspnam__doc__,
"getspnam($module, arg, /)\n"
"--\n"
"\n"
"Return the shadow password database entry for the given user name.\n"
"\n"
"See `help(spwd)` for more on shadow password database entries.");
#define SPWD_GETSPNAM_METHODDEF \
{"getspnam", (PyCFunction)spwd_getspnam, METH_O, spwd_getspnam__doc__},
static PyObject *
spwd_getspnam_impl(PyObject *module, PyObject *arg);
static PyObject *
spwd_getspnam(PyObject *module, PyObject *arg_)
{
PyObject *return_value = NULL;
PyObject *arg;
if (!PyArg_Parse(arg_, "U:getspnam", &arg)) {
goto exit;
}
return_value = spwd_getspnam_impl(module, arg);
exit:
return return_value;
}
#endif /* defined(HAVE_GETSPNAM) */
#if defined(HAVE_GETSPENT)
PyDoc_STRVAR(spwd_getspall__doc__,
"getspall($module, /)\n"
"--\n"
"\n"
"Return a list of all available shadow password database entries, in arbitrary order.\n"
"\n"
"See `help(spwd)` for more on shadow password database entries.");
#define SPWD_GETSPALL_METHODDEF \
{"getspall", (PyCFunction)spwd_getspall, METH_NOARGS, spwd_getspall__doc__},
static PyObject *
spwd_getspall_impl(PyObject *module);
static PyObject *
spwd_getspall(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return spwd_getspall_impl(module);
}
#endif /* defined(HAVE_GETSPENT) */
#ifndef SPWD_GETSPNAM_METHODDEF
#define SPWD_GETSPNAM_METHODDEF
#endif /* !defined(SPWD_GETSPNAM_METHODDEF) */
#ifndef SPWD_GETSPALL_METHODDEF
#define SPWD_GETSPALL_METHODDEF
#endif /* !defined(SPWD_GETSPALL_METHODDEF) */
/*[clinic end generated code: output=07cd8af0afd77fe7 input=a9049054013a1b77]*/
| 1,749 | 71 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_ssl.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_ssl__SSLSocket_do_handshake__doc__,
"do_handshake($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLSOCKET_DO_HANDSHAKE_METHODDEF \
{"do_handshake", (PyCFunction)_ssl__SSLSocket_do_handshake, METH_NOARGS, _ssl__SSLSocket_do_handshake__doc__},
static PyObject *
_ssl__SSLSocket_do_handshake_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_do_handshake(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_do_handshake_impl(self);
}
PyDoc_STRVAR(_ssl__test_decode_cert__doc__,
"_test_decode_cert($module, path, /)\n"
"--\n"
"\n");
#define _SSL__TEST_DECODE_CERT_METHODDEF \
{"_test_decode_cert", (PyCFunction)_ssl__test_decode_cert, METH_O, _ssl__test_decode_cert__doc__},
static PyObject *
_ssl__test_decode_cert_impl(PyObject *module, PyObject *path);
static PyObject *
_ssl__test_decode_cert(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
PyObject *path;
if (!PyArg_Parse(arg, "O&:_test_decode_cert", PyUnicode_FSConverter, &path)) {
goto exit;
}
return_value = _ssl__test_decode_cert_impl(module, path);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl__SSLSocket_peer_certificate__doc__,
"peer_certificate($self, der=False, /)\n"
"--\n"
"\n"
"Returns the certificate for the peer.\n"
"\n"
"If no certificate was provided, returns None. If a certificate was\n"
"provided, but not validated, returns an empty dictionary. Otherwise\n"
"returns a dict containing information about the peer certificate.\n"
"\n"
"If the optional argument is True, returns a DER-encoded copy of the\n"
"peer certificate, or None if no certificate was provided. This will\n"
"return the certificate even if it wasn\'t validated.");
#define _SSL__SSLSOCKET_PEER_CERTIFICATE_METHODDEF \
{"peer_certificate", (PyCFunction)_ssl__SSLSocket_peer_certificate, METH_VARARGS, _ssl__SSLSocket_peer_certificate__doc__},
static PyObject *
_ssl__SSLSocket_peer_certificate_impl(PySSLSocket *self, int binary_mode);
static PyObject *
_ssl__SSLSocket_peer_certificate(PySSLSocket *self, PyObject *args)
{
PyObject *return_value = NULL;
int binary_mode = 0;
if (!PyArg_ParseTuple(args, "|p:peer_certificate",
&binary_mode)) {
goto exit;
}
return_value = _ssl__SSLSocket_peer_certificate_impl(self, binary_mode);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl__SSLSocket_shared_ciphers__doc__,
"shared_ciphers($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLSOCKET_SHARED_CIPHERS_METHODDEF \
{"shared_ciphers", (PyCFunction)_ssl__SSLSocket_shared_ciphers, METH_NOARGS, _ssl__SSLSocket_shared_ciphers__doc__},
static PyObject *
_ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_shared_ciphers(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_shared_ciphers_impl(self);
}
PyDoc_STRVAR(_ssl__SSLSocket_cipher__doc__,
"cipher($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLSOCKET_CIPHER_METHODDEF \
{"cipher", (PyCFunction)_ssl__SSLSocket_cipher, METH_NOARGS, _ssl__SSLSocket_cipher__doc__},
static PyObject *
_ssl__SSLSocket_cipher_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_cipher(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_cipher_impl(self);
}
PyDoc_STRVAR(_ssl__SSLSocket_version__doc__,
"version($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLSOCKET_VERSION_METHODDEF \
{"version", (PyCFunction)_ssl__SSLSocket_version, METH_NOARGS, _ssl__SSLSocket_version__doc__},
static PyObject *
_ssl__SSLSocket_version_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_version(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_version_impl(self);
}
#if (HAVE_NPN)
PyDoc_STRVAR(_ssl__SSLSocket_selected_npn_protocol__doc__,
"selected_npn_protocol($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLSOCKET_SELECTED_NPN_PROTOCOL_METHODDEF \
{"selected_npn_protocol", (PyCFunction)_ssl__SSLSocket_selected_npn_protocol, METH_NOARGS, _ssl__SSLSocket_selected_npn_protocol__doc__},
static PyObject *
_ssl__SSLSocket_selected_npn_protocol_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_selected_npn_protocol(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_selected_npn_protocol_impl(self);
}
#endif /* (HAVE_NPN) */
#if (HAVE_ALPN)
PyDoc_STRVAR(_ssl__SSLSocket_selected_alpn_protocol__doc__,
"selected_alpn_protocol($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLSOCKET_SELECTED_ALPN_PROTOCOL_METHODDEF \
{"selected_alpn_protocol", (PyCFunction)_ssl__SSLSocket_selected_alpn_protocol, METH_NOARGS, _ssl__SSLSocket_selected_alpn_protocol__doc__},
static PyObject *
_ssl__SSLSocket_selected_alpn_protocol_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_selected_alpn_protocol(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_selected_alpn_protocol_impl(self);
}
#endif /* (HAVE_ALPN) */
PyDoc_STRVAR(_ssl__SSLSocket_compression__doc__,
"compression($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLSOCKET_COMPRESSION_METHODDEF \
{"compression", (PyCFunction)_ssl__SSLSocket_compression, METH_NOARGS, _ssl__SSLSocket_compression__doc__},
static PyObject *
_ssl__SSLSocket_compression_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_compression(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_compression_impl(self);
}
PyDoc_STRVAR(_ssl__SSLSocket_write__doc__,
"write($self, b, /)\n"
"--\n"
"\n"
"Writes the bytes-like object b into the SSL object.\n"
"\n"
"Returns the number of bytes written.");
#define _SSL__SSLSOCKET_WRITE_METHODDEF \
{"write", (PyCFunction)_ssl__SSLSocket_write, METH_O, _ssl__SSLSocket_write__doc__},
static PyObject *
_ssl__SSLSocket_write_impl(PySSLSocket *self, Py_buffer *b);
static PyObject *
_ssl__SSLSocket_write(PySSLSocket *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer b = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:write", &b)) {
goto exit;
}
return_value = _ssl__SSLSocket_write_impl(self, &b);
exit:
/* Cleanup for b */
if (b.obj) {
PyBuffer_Release(&b);
}
return return_value;
}
PyDoc_STRVAR(_ssl__SSLSocket_pending__doc__,
"pending($self, /)\n"
"--\n"
"\n"
"Returns the number of already decrypted bytes available for read, pending on the connection.");
#define _SSL__SSLSOCKET_PENDING_METHODDEF \
{"pending", (PyCFunction)_ssl__SSLSocket_pending, METH_NOARGS, _ssl__SSLSocket_pending__doc__},
static PyObject *
_ssl__SSLSocket_pending_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_pending(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_pending_impl(self);
}
PyDoc_STRVAR(_ssl__SSLSocket_read__doc__,
"read(size, [buffer])\n"
"Read up to size bytes from the SSL socket.");
#define _SSL__SSLSOCKET_READ_METHODDEF \
{"read", (PyCFunction)_ssl__SSLSocket_read, METH_VARARGS, _ssl__SSLSocket_read__doc__},
static PyObject *
_ssl__SSLSocket_read_impl(PySSLSocket *self, int len, int group_right_1,
Py_buffer *buffer);
static PyObject *
_ssl__SSLSocket_read(PySSLSocket *self, PyObject *args)
{
PyObject *return_value = NULL;
int len;
int group_right_1 = 0;
Py_buffer buffer = {NULL, NULL};
switch (PyTuple_GET_SIZE(args)) {
case 1:
if (!PyArg_ParseTuple(args, "i:read", &len)) {
goto exit;
}
break;
case 2:
if (!PyArg_ParseTuple(args, "iw*:read", &len, &buffer)) {
goto exit;
}
group_right_1 = 1;
break;
default:
PyErr_SetString(PyExc_TypeError, "_ssl._SSLSocket.read requires 1 to 2 arguments");
goto exit;
}
return_value = _ssl__SSLSocket_read_impl(self, len, group_right_1, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_ssl__SSLSocket_shutdown__doc__,
"shutdown($self, /)\n"
"--\n"
"\n"
"Does the SSL shutdown handshake with the remote end.\n"
"\n"
"Returns the underlying socket object.");
#define _SSL__SSLSOCKET_SHUTDOWN_METHODDEF \
{"shutdown", (PyCFunction)_ssl__SSLSocket_shutdown, METH_NOARGS, _ssl__SSLSocket_shutdown__doc__},
static PyObject *
_ssl__SSLSocket_shutdown_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_shutdown(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_shutdown_impl(self);
}
PyDoc_STRVAR(_ssl__SSLSocket_tls_unique_cb__doc__,
"tls_unique_cb($self, /)\n"
"--\n"
"\n"
"Returns the \'tls-unique\' channel binding data, as defined by RFC 5929.\n"
"\n"
"If the TLS handshake is not yet complete, None is returned.");
#define _SSL__SSLSOCKET_TLS_UNIQUE_CB_METHODDEF \
{"tls_unique_cb", (PyCFunction)_ssl__SSLSocket_tls_unique_cb, METH_NOARGS, _ssl__SSLSocket_tls_unique_cb__doc__},
static PyObject *
_ssl__SSLSocket_tls_unique_cb_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_tls_unique_cb(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_tls_unique_cb_impl(self);
}
PyDoc_STRVAR(_ssl__SSLSocket_verify_client_post_handshake__doc__,
"verify_client_post_handshake($self, /)\n"
"--\n"
"\n"
"Initiate TLS 1.3 post-handshake authentication");
#define _SSL__SSLSOCKET_VERIFY_CLIENT_POST_HANDSHAKE_METHODDEF \
{"verify_client_post_handshake", (PyCFunction)_ssl__SSLSocket_verify_client_post_handshake, METH_NOARGS, _ssl__SSLSocket_verify_client_post_handshake__doc__},
static PyObject *
_ssl__SSLSocket_verify_client_post_handshake_impl(PySSLSocket *self);
static PyObject *
_ssl__SSLSocket_verify_client_post_handshake(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLSocket_verify_client_post_handshake_impl(self);
}
static PyObject *
_ssl__SSLContext_impl(PyTypeObject *type, int proto_version);
static PyObject *
_ssl__SSLContext(PyTypeObject *type, PyObject *args, PyObject *kwargs)
{
PyObject *return_value = NULL;
int proto_version;
if ((type == &PySSLContext_Type) &&
!_PyArg_NoKeywords("_SSLContext", kwargs)) {
goto exit;
}
if (!PyArg_ParseTuple(args, "i:_SSLContext",
&proto_version)) {
goto exit;
}
return_value = _ssl__SSLContext_impl(type, proto_version);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl__SSLContext_set_ciphers__doc__,
"set_ciphers($self, cipherlist, /)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT_SET_CIPHERS_METHODDEF \
{"set_ciphers", (PyCFunction)_ssl__SSLContext_set_ciphers, METH_O, _ssl__SSLContext_set_ciphers__doc__},
static PyObject *
_ssl__SSLContext_set_ciphers_impl(PySSLContext *self, const char *cipherlist);
static PyObject *
_ssl__SSLContext_set_ciphers(PySSLContext *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *cipherlist;
if (!PyArg_Parse(arg, "s:set_ciphers", &cipherlist)) {
goto exit;
}
return_value = _ssl__SSLContext_set_ciphers_impl(self, cipherlist);
exit:
return return_value;
}
#if (OPENSSL_VERSION_NUMBER >= 0x10002000UL)
PyDoc_STRVAR(_ssl__SSLContext_get_ciphers__doc__,
"get_ciphers($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT_GET_CIPHERS_METHODDEF \
{"get_ciphers", (PyCFunction)_ssl__SSLContext_get_ciphers, METH_NOARGS, _ssl__SSLContext_get_ciphers__doc__},
static PyObject *
_ssl__SSLContext_get_ciphers_impl(PySSLContext *self);
static PyObject *
_ssl__SSLContext_get_ciphers(PySSLContext *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLContext_get_ciphers_impl(self);
}
#endif /* (OPENSSL_VERSION_NUMBER >= 0x10002000UL) */
PyDoc_STRVAR(_ssl__SSLContext__set_npn_protocols__doc__,
"_set_npn_protocols($self, protos, /)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT__SET_NPN_PROTOCOLS_METHODDEF \
{"_set_npn_protocols", (PyCFunction)_ssl__SSLContext__set_npn_protocols, METH_O, _ssl__SSLContext__set_npn_protocols__doc__},
static PyObject *
_ssl__SSLContext__set_npn_protocols_impl(PySSLContext *self,
Py_buffer *protos);
static PyObject *
_ssl__SSLContext__set_npn_protocols(PySSLContext *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer protos = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:_set_npn_protocols", &protos)) {
goto exit;
}
return_value = _ssl__SSLContext__set_npn_protocols_impl(self, &protos);
exit:
/* Cleanup for protos */
if (protos.obj) {
PyBuffer_Release(&protos);
}
return return_value;
}
PyDoc_STRVAR(_ssl__SSLContext__set_alpn_protocols__doc__,
"_set_alpn_protocols($self, protos, /)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT__SET_ALPN_PROTOCOLS_METHODDEF \
{"_set_alpn_protocols", (PyCFunction)_ssl__SSLContext__set_alpn_protocols, METH_O, _ssl__SSLContext__set_alpn_protocols__doc__},
static PyObject *
_ssl__SSLContext__set_alpn_protocols_impl(PySSLContext *self,
Py_buffer *protos);
static PyObject *
_ssl__SSLContext__set_alpn_protocols(PySSLContext *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer protos = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:_set_alpn_protocols", &protos)) {
goto exit;
}
return_value = _ssl__SSLContext__set_alpn_protocols_impl(self, &protos);
exit:
/* Cleanup for protos */
if (protos.obj) {
PyBuffer_Release(&protos);
}
return return_value;
}
PyDoc_STRVAR(_ssl__SSLContext_load_cert_chain__doc__,
"load_cert_chain($self, /, certfile, keyfile=None, password=None)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT_LOAD_CERT_CHAIN_METHODDEF \
{"load_cert_chain", (PyCFunction)_ssl__SSLContext_load_cert_chain, METH_FASTCALL, _ssl__SSLContext_load_cert_chain__doc__},
static PyObject *
_ssl__SSLContext_load_cert_chain_impl(PySSLContext *self, PyObject *certfile,
PyObject *keyfile, PyObject *password);
static PyObject *
_ssl__SSLContext_load_cert_chain(PySSLContext *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"certfile", "keyfile", "password", NULL};
static _PyArg_Parser _parser = {"O|OO:load_cert_chain", _keywords, 0};
PyObject *certfile;
PyObject *keyfile = NULL;
PyObject *password = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&certfile, &keyfile, &password)) {
goto exit;
}
return_value = _ssl__SSLContext_load_cert_chain_impl(self, certfile, keyfile, password);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl__SSLContext_load_verify_locations__doc__,
"load_verify_locations($self, /, cafile=None, capath=None, cadata=None)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT_LOAD_VERIFY_LOCATIONS_METHODDEF \
{"load_verify_locations", (PyCFunction)_ssl__SSLContext_load_verify_locations, METH_FASTCALL, _ssl__SSLContext_load_verify_locations__doc__},
static PyObject *
_ssl__SSLContext_load_verify_locations_impl(PySSLContext *self,
PyObject *cafile,
PyObject *capath,
PyObject *cadata);
static PyObject *
_ssl__SSLContext_load_verify_locations(PySSLContext *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"cafile", "capath", "cadata", NULL};
static _PyArg_Parser _parser = {"|OOO:load_verify_locations", _keywords, 0};
PyObject *cafile = NULL;
PyObject *capath = NULL;
PyObject *cadata = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&cafile, &capath, &cadata)) {
goto exit;
}
return_value = _ssl__SSLContext_load_verify_locations_impl(self, cafile, capath, cadata);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl__SSLContext_load_dh_params__doc__,
"load_dh_params($self, path, /)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT_LOAD_DH_PARAMS_METHODDEF \
{"load_dh_params", (PyCFunction)_ssl__SSLContext_load_dh_params, METH_O, _ssl__SSLContext_load_dh_params__doc__},
PyDoc_STRVAR(_ssl__SSLContext__wrap_socket__doc__,
"_wrap_socket($self, /, sock, server_side, server_hostname=None)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT__WRAP_SOCKET_METHODDEF \
{"_wrap_socket", (PyCFunction)_ssl__SSLContext__wrap_socket, METH_FASTCALL, _ssl__SSLContext__wrap_socket__doc__},
static PyObject *
_ssl__SSLContext__wrap_socket_impl(PySSLContext *self, PyObject *sock,
int server_side, PyObject *hostname_obj);
static PyObject *
_ssl__SSLContext__wrap_socket(PySSLContext *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"sock", "server_side", "server_hostname", NULL};
static _PyArg_Parser _parser = {"O!i|O:_wrap_socket", _keywords, 0};
PyObject *sock;
int server_side;
PyObject *hostname_obj = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
PySocketModule.Sock_Type, &sock, &server_side, &hostname_obj)) {
goto exit;
}
return_value = _ssl__SSLContext__wrap_socket_impl(self, sock, server_side, hostname_obj);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl__SSLContext__wrap_bio__doc__,
"_wrap_bio($self, /, incoming, outgoing, server_side,\n"
" server_hostname=None)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT__WRAP_BIO_METHODDEF \
{"_wrap_bio", (PyCFunction)_ssl__SSLContext__wrap_bio, METH_FASTCALL, _ssl__SSLContext__wrap_bio__doc__},
static PyObject *
_ssl__SSLContext__wrap_bio_impl(PySSLContext *self, PySSLMemoryBIO *incoming,
PySSLMemoryBIO *outgoing, int server_side,
PyObject *hostname_obj);
static PyObject *
_ssl__SSLContext__wrap_bio(PySSLContext *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"incoming", "outgoing", "server_side", "server_hostname", NULL};
static _PyArg_Parser _parser = {"O!O!i|O:_wrap_bio", _keywords, 0};
PySSLMemoryBIO *incoming;
PySSLMemoryBIO *outgoing;
int server_side;
PyObject *hostname_obj = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&PySSLMemoryBIO_Type, &incoming, &PySSLMemoryBIO_Type, &outgoing, &server_side, &hostname_obj)) {
goto exit;
}
return_value = _ssl__SSLContext__wrap_bio_impl(self, incoming, outgoing, server_side, hostname_obj);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl__SSLContext_session_stats__doc__,
"session_stats($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT_SESSION_STATS_METHODDEF \
{"session_stats", (PyCFunction)_ssl__SSLContext_session_stats, METH_NOARGS, _ssl__SSLContext_session_stats__doc__},
static PyObject *
_ssl__SSLContext_session_stats_impl(PySSLContext *self);
static PyObject *
_ssl__SSLContext_session_stats(PySSLContext *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLContext_session_stats_impl(self);
}
PyDoc_STRVAR(_ssl__SSLContext_set_default_verify_paths__doc__,
"set_default_verify_paths($self, /)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT_SET_DEFAULT_VERIFY_PATHS_METHODDEF \
{"set_default_verify_paths", (PyCFunction)_ssl__SSLContext_set_default_verify_paths, METH_NOARGS, _ssl__SSLContext_set_default_verify_paths__doc__},
static PyObject *
_ssl__SSLContext_set_default_verify_paths_impl(PySSLContext *self);
static PyObject *
_ssl__SSLContext_set_default_verify_paths(PySSLContext *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLContext_set_default_verify_paths_impl(self);
}
#if !defined(OPENSSL_NO_ECDH)
PyDoc_STRVAR(_ssl__SSLContext_set_ecdh_curve__doc__,
"set_ecdh_curve($self, name, /)\n"
"--\n"
"\n");
#define _SSL__SSLCONTEXT_SET_ECDH_CURVE_METHODDEF \
{"set_ecdh_curve", (PyCFunction)_ssl__SSLContext_set_ecdh_curve, METH_O, _ssl__SSLContext_set_ecdh_curve__doc__},
#endif /* !defined(OPENSSL_NO_ECDH) */
PyDoc_STRVAR(_ssl__SSLContext_set_servername_callback__doc__,
"set_servername_callback($self, method, /)\n"
"--\n"
"\n"
"Set a callback that will be called when a server name is provided by the SSL/TLS client in the SNI extension.\n"
"\n"
"If the argument is None then the callback is disabled. The method is called\n"
"with the SSLSocket, the server name as a string, and the SSLContext object.\n"
"See RFC 6066 for details of the SNI extension.");
#define _SSL__SSLCONTEXT_SET_SERVERNAME_CALLBACK_METHODDEF \
{"set_servername_callback", (PyCFunction)_ssl__SSLContext_set_servername_callback, METH_O, _ssl__SSLContext_set_servername_callback__doc__},
PyDoc_STRVAR(_ssl__SSLContext_cert_store_stats__doc__,
"cert_store_stats($self, /)\n"
"--\n"
"\n"
"Returns quantities of loaded X.509 certificates.\n"
"\n"
"X.509 certificates with a CA extension and certificate revocation lists\n"
"inside the context\'s cert store.\n"
"\n"
"NOTE: Certificates in a capath directory aren\'t loaded unless they have\n"
"been used at least once.");
#define _SSL__SSLCONTEXT_CERT_STORE_STATS_METHODDEF \
{"cert_store_stats", (PyCFunction)_ssl__SSLContext_cert_store_stats, METH_NOARGS, _ssl__SSLContext_cert_store_stats__doc__},
static PyObject *
_ssl__SSLContext_cert_store_stats_impl(PySSLContext *self);
static PyObject *
_ssl__SSLContext_cert_store_stats(PySSLContext *self, PyObject *Py_UNUSED(ignored))
{
return _ssl__SSLContext_cert_store_stats_impl(self);
}
PyDoc_STRVAR(_ssl__SSLContext_get_ca_certs__doc__,
"get_ca_certs($self, /, binary_form=False)\n"
"--\n"
"\n"
"Returns a list of dicts with information of loaded CA certs.\n"
"\n"
"If the optional argument is True, returns a DER-encoded copy of the CA\n"
"certificate.\n"
"\n"
"NOTE: Certificates in a capath directory aren\'t loaded unless they have\n"
"been used at least once.");
#define _SSL__SSLCONTEXT_GET_CA_CERTS_METHODDEF \
{"get_ca_certs", (PyCFunction)_ssl__SSLContext_get_ca_certs, METH_FASTCALL, _ssl__SSLContext_get_ca_certs__doc__},
static PyObject *
_ssl__SSLContext_get_ca_certs_impl(PySSLContext *self, int binary_form);
static PyObject *
_ssl__SSLContext_get_ca_certs(PySSLContext *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"binary_form", NULL};
static _PyArg_Parser _parser = {"|p:get_ca_certs", _keywords, 0};
int binary_form = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&binary_form)) {
goto exit;
}
return_value = _ssl__SSLContext_get_ca_certs_impl(self, binary_form);
exit:
return return_value;
}
static PyObject *
_ssl_MemoryBIO_impl(PyTypeObject *type);
static PyObject *
_ssl_MemoryBIO(PyTypeObject *type, PyObject *args, PyObject *kwargs)
{
PyObject *return_value = NULL;
if ((type == &PySSLMemoryBIO_Type) &&
!_PyArg_NoPositional("MemoryBIO", args)) {
goto exit;
}
if ((type == &PySSLMemoryBIO_Type) &&
!_PyArg_NoKeywords("MemoryBIO", kwargs)) {
goto exit;
}
return_value = _ssl_MemoryBIO_impl(type);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl_MemoryBIO_read__doc__,
"read($self, size=-1, /)\n"
"--\n"
"\n"
"Read up to size bytes from the memory BIO.\n"
"\n"
"If size is not specified, read the entire buffer.\n"
"If the return value is an empty bytes instance, this means either\n"
"EOF or that no data is available. Use the \"eof\" property to\n"
"distinguish between the two.");
#define _SSL_MEMORYBIO_READ_METHODDEF \
{"read", (PyCFunction)_ssl_MemoryBIO_read, METH_VARARGS, _ssl_MemoryBIO_read__doc__},
static PyObject *
_ssl_MemoryBIO_read_impl(PySSLMemoryBIO *self, int len);
static PyObject *
_ssl_MemoryBIO_read(PySSLMemoryBIO *self, PyObject *args)
{
PyObject *return_value = NULL;
int len = -1;
if (!PyArg_ParseTuple(args, "|i:read",
&len)) {
goto exit;
}
return_value = _ssl_MemoryBIO_read_impl(self, len);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl_MemoryBIO_write__doc__,
"write($self, b, /)\n"
"--\n"
"\n"
"Writes the bytes b into the memory BIO.\n"
"\n"
"Returns the number of bytes written.");
#define _SSL_MEMORYBIO_WRITE_METHODDEF \
{"write", (PyCFunction)_ssl_MemoryBIO_write, METH_O, _ssl_MemoryBIO_write__doc__},
static PyObject *
_ssl_MemoryBIO_write_impl(PySSLMemoryBIO *self, Py_buffer *b);
static PyObject *
_ssl_MemoryBIO_write(PySSLMemoryBIO *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer b = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:write", &b)) {
goto exit;
}
return_value = _ssl_MemoryBIO_write_impl(self, &b);
exit:
/* Cleanup for b */
if (b.obj) {
PyBuffer_Release(&b);
}
return return_value;
}
PyDoc_STRVAR(_ssl_MemoryBIO_write_eof__doc__,
"write_eof($self, /)\n"
"--\n"
"\n"
"Write an EOF marker to the memory BIO.\n"
"\n"
"When all data has been read, the \"eof\" property will be True.");
#define _SSL_MEMORYBIO_WRITE_EOF_METHODDEF \
{"write_eof", (PyCFunction)_ssl_MemoryBIO_write_eof, METH_NOARGS, _ssl_MemoryBIO_write_eof__doc__},
static PyObject *
_ssl_MemoryBIO_write_eof_impl(PySSLMemoryBIO *self);
static PyObject *
_ssl_MemoryBIO_write_eof(PySSLMemoryBIO *self, PyObject *Py_UNUSED(ignored))
{
return _ssl_MemoryBIO_write_eof_impl(self);
}
PyDoc_STRVAR(_ssl_RAND_add__doc__,
"RAND_add($module, string, entropy, /)\n"
"--\n"
"\n"
"Mix string into the OpenSSL PRNG state.\n"
"\n"
"entropy (a float) is a lower bound on the entropy contained in\n"
"string. See RFC 4086.");
#define _SSL_RAND_ADD_METHODDEF \
{"RAND_add", (PyCFunction)_ssl_RAND_add, METH_VARARGS, _ssl_RAND_add__doc__},
static PyObject *
_ssl_RAND_add_impl(PyObject *module, Py_buffer *view, double entropy);
static PyObject *
_ssl_RAND_add(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
Py_buffer view = {NULL, NULL};
double entropy;
if (!PyArg_ParseTuple(args, "s*d:RAND_add",
&view, &entropy)) {
goto exit;
}
return_value = _ssl_RAND_add_impl(module, &view, entropy);
exit:
/* Cleanup for view */
if (view.obj) {
PyBuffer_Release(&view);
}
return return_value;
}
PyDoc_STRVAR(_ssl_RAND_bytes__doc__,
"RAND_bytes($module, n, /)\n"
"--\n"
"\n"
"Generate n cryptographically strong pseudo-random bytes.");
#define _SSL_RAND_BYTES_METHODDEF \
{"RAND_bytes", (PyCFunction)_ssl_RAND_bytes, METH_O, _ssl_RAND_bytes__doc__},
static PyObject *
_ssl_RAND_bytes_impl(PyObject *module, int n);
static PyObject *
_ssl_RAND_bytes(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int n;
if (!PyArg_Parse(arg, "i:RAND_bytes", &n)) {
goto exit;
}
return_value = _ssl_RAND_bytes_impl(module, n);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl_RAND_pseudo_bytes__doc__,
"RAND_pseudo_bytes($module, n, /)\n"
"--\n"
"\n"
"Generate n pseudo-random bytes.\n"
"\n"
"Return a pair (bytes, is_cryptographic). is_cryptographic is True\n"
"if the bytes generated are cryptographically strong.");
#define _SSL_RAND_PSEUDO_BYTES_METHODDEF \
{"RAND_pseudo_bytes", (PyCFunction)_ssl_RAND_pseudo_bytes, METH_O, _ssl_RAND_pseudo_bytes__doc__},
static PyObject *
_ssl_RAND_pseudo_bytes_impl(PyObject *module, int n);
static PyObject *
_ssl_RAND_pseudo_bytes(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int n;
if (!PyArg_Parse(arg, "i:RAND_pseudo_bytes", &n)) {
goto exit;
}
return_value = _ssl_RAND_pseudo_bytes_impl(module, n);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl_RAND_status__doc__,
"RAND_status($module, /)\n"
"--\n"
"\n"
"Returns 1 if the OpenSSL PRNG has been seeded with enough data and 0 if not.\n"
"\n"
"It is necessary to seed the PRNG with RAND_add() on some platforms before\n"
"using the ssl() function.");
#define _SSL_RAND_STATUS_METHODDEF \
{"RAND_status", (PyCFunction)_ssl_RAND_status, METH_NOARGS, _ssl_RAND_status__doc__},
static PyObject *
_ssl_RAND_status_impl(PyObject *module);
static PyObject *
_ssl_RAND_status(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return _ssl_RAND_status_impl(module);
}
#if !defined(OPENSSL_NO_EGD)
PyDoc_STRVAR(_ssl_RAND_egd__doc__,
"RAND_egd($module, path, /)\n"
"--\n"
"\n"
"Queries the entropy gather daemon (EGD) on the socket named by \'path\'.\n"
"\n"
"Returns number of bytes read. Raises SSLError if connection to EGD\n"
"fails or if it does not provide enough data to seed PRNG.");
#define _SSL_RAND_EGD_METHODDEF \
{"RAND_egd", (PyCFunction)_ssl_RAND_egd, METH_O, _ssl_RAND_egd__doc__},
static PyObject *
_ssl_RAND_egd_impl(PyObject *module, PyObject *path);
static PyObject *
_ssl_RAND_egd(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
PyObject *path;
if (!PyArg_Parse(arg, "O&:RAND_egd", PyUnicode_FSConverter, &path)) {
goto exit;
}
return_value = _ssl_RAND_egd_impl(module, path);
exit:
return return_value;
}
#endif /* !defined(OPENSSL_NO_EGD) */
PyDoc_STRVAR(_ssl_get_default_verify_paths__doc__,
"get_default_verify_paths($module, /)\n"
"--\n"
"\n"
"Return search paths and environment vars that are used by SSLContext\'s set_default_verify_paths() to load default CAs.\n"
"\n"
"The values are \'cert_file_env\', \'cert_file\', \'cert_dir_env\', \'cert_dir\'.");
#define _SSL_GET_DEFAULT_VERIFY_PATHS_METHODDEF \
{"get_default_verify_paths", (PyCFunction)_ssl_get_default_verify_paths, METH_NOARGS, _ssl_get_default_verify_paths__doc__},
static PyObject *
_ssl_get_default_verify_paths_impl(PyObject *module);
static PyObject *
_ssl_get_default_verify_paths(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return _ssl_get_default_verify_paths_impl(module);
}
PyDoc_STRVAR(_ssl_txt2obj__doc__,
"txt2obj($module, /, txt, name=False)\n"
"--\n"
"\n"
"Lookup NID, short name, long name and OID of an ASN1_OBJECT.\n"
"\n"
"By default objects are looked up by OID. With name=True short and\n"
"long name are also matched.");
#define _SSL_TXT2OBJ_METHODDEF \
{"txt2obj", (PyCFunction)_ssl_txt2obj, METH_FASTCALL, _ssl_txt2obj__doc__},
static PyObject *
_ssl_txt2obj_impl(PyObject *module, const char *txt, int name);
static PyObject *
_ssl_txt2obj(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"txt", "name", NULL};
static _PyArg_Parser _parser = {"s|p:txt2obj", _keywords, 0};
const char *txt;
int name = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&txt, &name)) {
goto exit;
}
return_value = _ssl_txt2obj_impl(module, txt, name);
exit:
return return_value;
}
PyDoc_STRVAR(_ssl_nid2obj__doc__,
"nid2obj($module, nid, /)\n"
"--\n"
"\n"
"Lookup NID, short name, long name and OID of an ASN1_OBJECT by NID.");
#define _SSL_NID2OBJ_METHODDEF \
{"nid2obj", (PyCFunction)_ssl_nid2obj, METH_O, _ssl_nid2obj__doc__},
static PyObject *
_ssl_nid2obj_impl(PyObject *module, int nid);
static PyObject *
_ssl_nid2obj(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int nid;
if (!PyArg_Parse(arg, "i:nid2obj", &nid)) {
goto exit;
}
return_value = _ssl_nid2obj_impl(module, nid);
exit:
return return_value;
}
#if defined(_MSC_VER)
PyDoc_STRVAR(_ssl_enum_certificates__doc__,
"enum_certificates($module, /, store_name)\n"
"--\n"
"\n"
"Retrieve certificates from Windows\' cert store.\n"
"\n"
"store_name may be one of \'CA\', \'ROOT\' or \'MY\'. The system may provide\n"
"more cert storages, too. The function returns a list of (bytes,\n"
"encoding_type, trust) tuples. The encoding_type flag can be interpreted\n"
"with X509_ASN_ENCODING or PKCS_7_ASN_ENCODING. The trust setting is either\n"
"a set of OIDs or the boolean True.");
#define _SSL_ENUM_CERTIFICATES_METHODDEF \
{"enum_certificates", (PyCFunction)_ssl_enum_certificates, METH_FASTCALL, _ssl_enum_certificates__doc__},
static PyObject *
_ssl_enum_certificates_impl(PyObject *module, const char *store_name);
static PyObject *
_ssl_enum_certificates(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"store_name", NULL};
static _PyArg_Parser _parser = {"s:enum_certificates", _keywords, 0};
const char *store_name;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&store_name)) {
goto exit;
}
return_value = _ssl_enum_certificates_impl(module, store_name);
exit:
return return_value;
}
#endif /* defined(_MSC_VER) */
#if defined(_MSC_VER)
PyDoc_STRVAR(_ssl_enum_crls__doc__,
"enum_crls($module, /, store_name)\n"
"--\n"
"\n"
"Retrieve CRLs from Windows\' cert store.\n"
"\n"
"store_name may be one of \'CA\', \'ROOT\' or \'MY\'. The system may provide\n"
"more cert storages, too. The function returns a list of (bytes,\n"
"encoding_type) tuples. The encoding_type flag can be interpreted with\n"
"X509_ASN_ENCODING or PKCS_7_ASN_ENCODING.");
#define _SSL_ENUM_CRLS_METHODDEF \
{"enum_crls", (PyCFunction)_ssl_enum_crls, METH_FASTCALL, _ssl_enum_crls__doc__},
static PyObject *
_ssl_enum_crls_impl(PyObject *module, const char *store_name);
static PyObject *
_ssl_enum_crls(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"store_name", NULL};
static _PyArg_Parser _parser = {"s:enum_crls", _keywords, 0};
const char *store_name;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&store_name)) {
goto exit;
}
return_value = _ssl_enum_crls_impl(module, store_name);
exit:
return return_value;
}
#endif /* defined(_MSC_VER) */
#ifndef _SSL__SSLSOCKET_SELECTED_NPN_PROTOCOL_METHODDEF
#define _SSL__SSLSOCKET_SELECTED_NPN_PROTOCOL_METHODDEF
#endif /* !defined(_SSL__SSLSOCKET_SELECTED_NPN_PROTOCOL_METHODDEF) */
#ifndef _SSL__SSLSOCKET_SELECTED_ALPN_PROTOCOL_METHODDEF
#define _SSL__SSLSOCKET_SELECTED_ALPN_PROTOCOL_METHODDEF
#endif /* !defined(_SSL__SSLSOCKET_SELECTED_ALPN_PROTOCOL_METHODDEF) */
#ifndef _SSL__SSLCONTEXT_GET_CIPHERS_METHODDEF
#define _SSL__SSLCONTEXT_GET_CIPHERS_METHODDEF
#endif /* !defined(_SSL__SSLCONTEXT_GET_CIPHERS_METHODDEF) */
#ifndef _SSL__SSLCONTEXT_SET_ECDH_CURVE_METHODDEF
#define _SSL__SSLCONTEXT_SET_ECDH_CURVE_METHODDEF
#endif /* !defined(_SSL__SSLCONTEXT_SET_ECDH_CURVE_METHODDEF) */
#ifndef _SSL_RAND_EGD_METHODDEF
#define _SSL_RAND_EGD_METHODDEF
#endif /* !defined(_SSL_RAND_EGD_METHODDEF) */
#ifndef _SSL_ENUM_CERTIFICATES_METHODDEF
#define _SSL_ENUM_CERTIFICATES_METHODDEF
#endif /* !defined(_SSL_ENUM_CERTIFICATES_METHODDEF) */
#ifndef _SSL_ENUM_CRLS_METHODDEF
#define _SSL_ENUM_CRLS_METHODDEF
#endif /* !defined(_SSL_ENUM_CRLS_METHODDEF) */
/*[clinic end generated code: output=a832758678f4d934 input=a9049054013a1b77]*/
| 35,522 | 1,191 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/binascii.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(binascii_a2b_uu__doc__,
"a2b_uu($module, data, /)\n"
"--\n"
"\n"
"Decode a line of uuencoded data.");
#define BINASCII_A2B_UU_METHODDEF \
{"a2b_uu", (PyCFunction)binascii_a2b_uu, METH_O, binascii_a2b_uu__doc__},
static PyObject *
binascii_a2b_uu_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_a2b_uu(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "O&:a2b_uu", ascii_buffer_converter, &data)) {
goto exit;
}
return_value = binascii_a2b_uu_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj)
PyBuffer_Release(&data);
return return_value;
}
PyDoc_STRVAR(binascii_b2a_uu__doc__,
"b2a_uu($module, data, /)\n"
"--\n"
"\n"
"Uuencode line of data.");
#define BINASCII_B2A_UU_METHODDEF \
{"b2a_uu", (PyCFunction)binascii_b2a_uu, METH_O, binascii_b2a_uu__doc__},
static PyObject *
binascii_b2a_uu_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_b2a_uu(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:b2a_uu", &data)) {
goto exit;
}
return_value = binascii_b2a_uu_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_a2b_base64__doc__,
"a2b_base64($module, data, /)\n"
"--\n"
"\n"
"Decode a line of base64 data.");
#define BINASCII_A2B_BASE64_METHODDEF \
{"a2b_base64", (PyCFunction)binascii_a2b_base64, METH_O, binascii_a2b_base64__doc__},
static PyObject *
binascii_a2b_base64_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_a2b_base64(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "O&:a2b_base64", ascii_buffer_converter, &data)) {
goto exit;
}
return_value = binascii_a2b_base64_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj)
PyBuffer_Release(&data);
return return_value;
}
PyDoc_STRVAR(binascii_b2a_base64__doc__,
"b2a_base64($module, /, data, *, newline=True)\n"
"--\n"
"\n"
"Base64-code line of data.");
#define BINASCII_B2A_BASE64_METHODDEF \
{"b2a_base64", (PyCFunction)binascii_b2a_base64, METH_FASTCALL|METH_KEYWORDS, binascii_b2a_base64__doc__},
static PyObject *
binascii_b2a_base64_impl(PyObject *module, Py_buffer *data, int newline);
static PyObject *
binascii_b2a_base64(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"data", "newline", NULL};
static _PyArg_Parser _parser = {"y*|$i:b2a_base64", _keywords, 0};
Py_buffer data = {NULL, NULL};
int newline = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&data, &newline)) {
goto exit;
}
return_value = binascii_b2a_base64_impl(module, &data, newline);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_a2b_hqx__doc__,
"a2b_hqx($module, data, /)\n"
"--\n"
"\n"
"Decode .hqx coding.");
#define BINASCII_A2B_HQX_METHODDEF \
{"a2b_hqx", (PyCFunction)binascii_a2b_hqx, METH_O, binascii_a2b_hqx__doc__},
static PyObject *
binascii_a2b_hqx_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_a2b_hqx(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "O&:a2b_hqx", ascii_buffer_converter, &data)) {
goto exit;
}
return_value = binascii_a2b_hqx_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj)
PyBuffer_Release(&data);
return return_value;
}
PyDoc_STRVAR(binascii_rlecode_hqx__doc__,
"rlecode_hqx($module, data, /)\n"
"--\n"
"\n"
"Binhex RLE-code binary data.");
#define BINASCII_RLECODE_HQX_METHODDEF \
{"rlecode_hqx", (PyCFunction)binascii_rlecode_hqx, METH_O, binascii_rlecode_hqx__doc__},
static PyObject *
binascii_rlecode_hqx_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_rlecode_hqx(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:rlecode_hqx", &data)) {
goto exit;
}
return_value = binascii_rlecode_hqx_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_b2a_hqx__doc__,
"b2a_hqx($module, data, /)\n"
"--\n"
"\n"
"Encode .hqx data.");
#define BINASCII_B2A_HQX_METHODDEF \
{"b2a_hqx", (PyCFunction)binascii_b2a_hqx, METH_O, binascii_b2a_hqx__doc__},
static PyObject *
binascii_b2a_hqx_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_b2a_hqx(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:b2a_hqx", &data)) {
goto exit;
}
return_value = binascii_b2a_hqx_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_rledecode_hqx__doc__,
"rledecode_hqx($module, data, /)\n"
"--\n"
"\n"
"Decode hexbin RLE-coded string.");
#define BINASCII_RLEDECODE_HQX_METHODDEF \
{"rledecode_hqx", (PyCFunction)binascii_rledecode_hqx, METH_O, binascii_rledecode_hqx__doc__},
static PyObject *
binascii_rledecode_hqx_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_rledecode_hqx(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:rledecode_hqx", &data)) {
goto exit;
}
return_value = binascii_rledecode_hqx_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_crc_hqx__doc__,
"crc_hqx($module, data, crc, /)\n"
"--\n"
"\n"
"Compute CRC-CCITT incrementally.");
#define BINASCII_CRC_HQX_METHODDEF \
{"crc_hqx", (PyCFunction)binascii_crc_hqx, METH_FASTCALL, binascii_crc_hqx__doc__},
static unsigned int
binascii_crc_hqx_impl(PyObject *module, Py_buffer *data, unsigned int crc);
static PyObject *
binascii_crc_hqx(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
unsigned int crc;
unsigned int _return_value;
if (!_PyArg_ParseStack(args, nargs, "y*I:crc_hqx",
&data, &crc)) {
goto exit;
}
_return_value = binascii_crc_hqx_impl(module, &data, crc);
if ((_return_value == (unsigned int)-1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromUnsignedLong((unsigned long)_return_value);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_crc32__doc__,
"crc32($module, data, crc=0, /)\n"
"--\n"
"\n"
"Compute CRC-32 incrementally.");
#define BINASCII_CRC32_METHODDEF \
{"crc32", (PyCFunction)binascii_crc32, METH_FASTCALL, binascii_crc32__doc__},
static unsigned int
binascii_crc32_impl(PyObject *module, Py_buffer *data, unsigned int crc);
static PyObject *
binascii_crc32(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
unsigned int crc = 0;
unsigned int _return_value;
if (!_PyArg_ParseStack(args, nargs, "y*|I:crc32",
&data, &crc)) {
goto exit;
}
_return_value = binascii_crc32_impl(module, &data, crc);
if ((_return_value == (unsigned int)-1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromUnsignedLong((unsigned long)_return_value);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_b2a_hex__doc__,
"b2a_hex($module, data, /)\n"
"--\n"
"\n"
"Hexadecimal representation of binary data.\n"
"\n"
"The return value is a bytes object. This function is also\n"
"available as \"hexlify()\".");
#define BINASCII_B2A_HEX_METHODDEF \
{"b2a_hex", (PyCFunction)binascii_b2a_hex, METH_O, binascii_b2a_hex__doc__},
static PyObject *
binascii_b2a_hex_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_b2a_hex(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:b2a_hex", &data)) {
goto exit;
}
return_value = binascii_b2a_hex_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_hexlify__doc__,
"hexlify($module, data, /)\n"
"--\n"
"\n"
"Hexadecimal representation of binary data.\n"
"\n"
"The return value is a bytes object.");
#define BINASCII_HEXLIFY_METHODDEF \
{"hexlify", (PyCFunction)binascii_hexlify, METH_O, binascii_hexlify__doc__},
static PyObject *
binascii_hexlify_impl(PyObject *module, Py_buffer *data);
static PyObject *
binascii_hexlify(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:hexlify", &data)) {
goto exit;
}
return_value = binascii_hexlify_impl(module, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(binascii_a2b_hex__doc__,
"a2b_hex($module, hexstr, /)\n"
"--\n"
"\n"
"Binary data of hexadecimal representation.\n"
"\n"
"hexstr must contain an even number of hex digits (upper or lower case).\n"
"This function is also available as \"unhexlify()\".");
#define BINASCII_A2B_HEX_METHODDEF \
{"a2b_hex", (PyCFunction)binascii_a2b_hex, METH_O, binascii_a2b_hex__doc__},
static PyObject *
binascii_a2b_hex_impl(PyObject *module, Py_buffer *hexstr);
static PyObject *
binascii_a2b_hex(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer hexstr = {NULL, NULL};
if (!PyArg_Parse(arg, "O&:a2b_hex", ascii_buffer_converter, &hexstr)) {
goto exit;
}
return_value = binascii_a2b_hex_impl(module, &hexstr);
exit:
/* Cleanup for hexstr */
if (hexstr.obj)
PyBuffer_Release(&hexstr);
return return_value;
}
PyDoc_STRVAR(binascii_unhexlify__doc__,
"unhexlify($module, hexstr, /)\n"
"--\n"
"\n"
"Binary data of hexadecimal representation.\n"
"\n"
"hexstr must contain an even number of hex digits (upper or lower case).");
#define BINASCII_UNHEXLIFY_METHODDEF \
{"unhexlify", (PyCFunction)binascii_unhexlify, METH_O, binascii_unhexlify__doc__},
static PyObject *
binascii_unhexlify_impl(PyObject *module, Py_buffer *hexstr);
static PyObject *
binascii_unhexlify(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer hexstr = {NULL, NULL};
if (!PyArg_Parse(arg, "O&:unhexlify", ascii_buffer_converter, &hexstr)) {
goto exit;
}
return_value = binascii_unhexlify_impl(module, &hexstr);
exit:
/* Cleanup for hexstr */
if (hexstr.obj)
PyBuffer_Release(&hexstr);
return return_value;
}
PyDoc_STRVAR(binascii_a2b_qp__doc__,
"a2b_qp($module, /, data, header=False)\n"
"--\n"
"\n"
"Decode a string of qp-encoded data.");
#define BINASCII_A2B_QP_METHODDEF \
{"a2b_qp", (PyCFunction)binascii_a2b_qp, METH_FASTCALL|METH_KEYWORDS, binascii_a2b_qp__doc__},
static PyObject *
binascii_a2b_qp_impl(PyObject *module, Py_buffer *data, int header);
static PyObject *
binascii_a2b_qp(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"data", "header", NULL};
static _PyArg_Parser _parser = {"O&|i:a2b_qp", _keywords, 0};
Py_buffer data = {NULL, NULL};
int header = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
ascii_buffer_converter, &data, &header)) {
goto exit;
}
return_value = binascii_a2b_qp_impl(module, &data, header);
exit:
/* Cleanup for data */
if (data.obj)
PyBuffer_Release(&data);
return return_value;
}
PyDoc_STRVAR(binascii_b2a_qp__doc__,
"b2a_qp($module, /, data, quotetabs=False, istext=True, header=False)\n"
"--\n"
"\n"
"Encode a string using quoted-printable encoding.\n"
"\n"
"On encoding, when istext is set, newlines are not encoded, and white\n"
"space at end of lines is. When istext is not set, \\r and \\n (CR/LF)\n"
"are both encoded. When quotetabs is set, space and tabs are encoded.");
#define BINASCII_B2A_QP_METHODDEF \
{"b2a_qp", (PyCFunction)binascii_b2a_qp, METH_FASTCALL|METH_KEYWORDS, binascii_b2a_qp__doc__},
static PyObject *
binascii_b2a_qp_impl(PyObject *module, Py_buffer *data, int quotetabs,
int istext, int header);
static PyObject *
binascii_b2a_qp(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"data", "quotetabs", "istext", "header", NULL};
static _PyArg_Parser _parser = {"y*|iii:b2a_qp", _keywords, 0};
Py_buffer data = {NULL, NULL};
int quotetabs = 0;
int istext = 1;
int header = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&data, "etabs, &istext, &header)) {
goto exit;
}
return_value = binascii_b2a_qp_impl(module, &data, quotetabs, istext, header);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
/*[clinic end generated code: output=e7dfb211de8cc097 input=a9049054013a1b77]*/
| 14,088 | 555 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/unicodedata.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(unicodedata_UCD_decimal__doc__,
"decimal($self, chr, default=None, /)\n"
"--\n"
"\n"
"Converts a Unicode character into its equivalent decimal value.\n"
"\n"
"Returns the decimal value assigned to the character chr as integer.\n"
"If no such value is defined, default is returned, or, if not given,\n"
"ValueError is raised.");
#define UNICODEDATA_UCD_DECIMAL_METHODDEF \
{"decimal", (PyCFunction)unicodedata_UCD_decimal, METH_FASTCALL, unicodedata_UCD_decimal__doc__},
static PyObject *
unicodedata_UCD_decimal_impl(PyObject *self, int chr,
PyObject *default_value);
static PyObject *
unicodedata_UCD_decimal(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int chr;
PyObject *default_value = NULL;
if (!_PyArg_ParseStack(args, nargs, "C|O:decimal",
&chr, &default_value)) {
goto exit;
}
return_value = unicodedata_UCD_decimal_impl(self, chr, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_digit__doc__,
"digit($self, chr, default=None, /)\n"
"--\n"
"\n"
"Converts a Unicode character into its equivalent digit value.\n"
"\n"
"Returns the digit value assigned to the character chr as integer.\n"
"If no such value is defined, default is returned, or, if not given,\n"
"ValueError is raised.");
#define UNICODEDATA_UCD_DIGIT_METHODDEF \
{"digit", (PyCFunction)unicodedata_UCD_digit, METH_FASTCALL, unicodedata_UCD_digit__doc__},
static PyObject *
unicodedata_UCD_digit_impl(PyObject *self, int chr, PyObject *default_value);
static PyObject *
unicodedata_UCD_digit(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int chr;
PyObject *default_value = NULL;
if (!_PyArg_ParseStack(args, nargs, "C|O:digit",
&chr, &default_value)) {
goto exit;
}
return_value = unicodedata_UCD_digit_impl(self, chr, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_numeric__doc__,
"numeric($self, chr, default=None, /)\n"
"--\n"
"\n"
"Converts a Unicode character into its equivalent numeric value.\n"
"\n"
"Returns the numeric value assigned to the character chr as float.\n"
"If no such value is defined, default is returned, or, if not given,\n"
"ValueError is raised.");
#define UNICODEDATA_UCD_NUMERIC_METHODDEF \
{"numeric", (PyCFunction)unicodedata_UCD_numeric, METH_FASTCALL, unicodedata_UCD_numeric__doc__},
static PyObject *
unicodedata_UCD_numeric_impl(PyObject *self, int chr,
PyObject *default_value);
static PyObject *
unicodedata_UCD_numeric(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int chr;
PyObject *default_value = NULL;
if (!_PyArg_ParseStack(args, nargs, "C|O:numeric",
&chr, &default_value)) {
goto exit;
}
return_value = unicodedata_UCD_numeric_impl(self, chr, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_category__doc__,
"category($self, chr, /)\n"
"--\n"
"\n"
"Returns the general category assigned to the character chr as string.");
#define UNICODEDATA_UCD_CATEGORY_METHODDEF \
{"category", (PyCFunction)unicodedata_UCD_category, METH_O, unicodedata_UCD_category__doc__},
static PyObject *
unicodedata_UCD_category_impl(PyObject *self, int chr);
static PyObject *
unicodedata_UCD_category(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
int chr;
if (!PyArg_Parse(arg, "C:category", &chr)) {
goto exit;
}
return_value = unicodedata_UCD_category_impl(self, chr);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_bidirectional__doc__,
"bidirectional($self, chr, /)\n"
"--\n"
"\n"
"Returns the bidirectional class assigned to the character chr as string.\n"
"\n"
"If no such value is defined, an empty string is returned.");
#define UNICODEDATA_UCD_BIDIRECTIONAL_METHODDEF \
{"bidirectional", (PyCFunction)unicodedata_UCD_bidirectional, METH_O, unicodedata_UCD_bidirectional__doc__},
static PyObject *
unicodedata_UCD_bidirectional_impl(PyObject *self, int chr);
static PyObject *
unicodedata_UCD_bidirectional(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
int chr;
if (!PyArg_Parse(arg, "C:bidirectional", &chr)) {
goto exit;
}
return_value = unicodedata_UCD_bidirectional_impl(self, chr);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_combining__doc__,
"combining($self, chr, /)\n"
"--\n"
"\n"
"Returns the canonical combining class assigned to the character chr as integer.\n"
"\n"
"Returns 0 if no combining class is defined.");
#define UNICODEDATA_UCD_COMBINING_METHODDEF \
{"combining", (PyCFunction)unicodedata_UCD_combining, METH_O, unicodedata_UCD_combining__doc__},
static int
unicodedata_UCD_combining_impl(PyObject *self, int chr);
static PyObject *
unicodedata_UCD_combining(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
int chr;
int _return_value;
if (!PyArg_Parse(arg, "C:combining", &chr)) {
goto exit;
}
_return_value = unicodedata_UCD_combining_impl(self, chr);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_mirrored__doc__,
"mirrored($self, chr, /)\n"
"--\n"
"\n"
"Returns the mirrored property assigned to the character chr as integer.\n"
"\n"
"Returns 1 if the character has been identified as a \"mirrored\"\n"
"character in bidirectional text, 0 otherwise.");
#define UNICODEDATA_UCD_MIRRORED_METHODDEF \
{"mirrored", (PyCFunction)unicodedata_UCD_mirrored, METH_O, unicodedata_UCD_mirrored__doc__},
static int
unicodedata_UCD_mirrored_impl(PyObject *self, int chr);
static PyObject *
unicodedata_UCD_mirrored(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
int chr;
int _return_value;
if (!PyArg_Parse(arg, "C:mirrored", &chr)) {
goto exit;
}
_return_value = unicodedata_UCD_mirrored_impl(self, chr);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_east_asian_width__doc__,
"east_asian_width($self, chr, /)\n"
"--\n"
"\n"
"Returns the east asian width assigned to the character chr as string.");
#define UNICODEDATA_UCD_EAST_ASIAN_WIDTH_METHODDEF \
{"east_asian_width", (PyCFunction)unicodedata_UCD_east_asian_width, METH_O, unicodedata_UCD_east_asian_width__doc__},
static PyObject *
unicodedata_UCD_east_asian_width_impl(PyObject *self, int chr);
static PyObject *
unicodedata_UCD_east_asian_width(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
int chr;
if (!PyArg_Parse(arg, "C:east_asian_width", &chr)) {
goto exit;
}
return_value = unicodedata_UCD_east_asian_width_impl(self, chr);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_decomposition__doc__,
"decomposition($self, chr, /)\n"
"--\n"
"\n"
"Returns the character decomposition mapping assigned to the character chr as string.\n"
"\n"
"An empty string is returned in case no such mapping is defined.");
#define UNICODEDATA_UCD_DECOMPOSITION_METHODDEF \
{"decomposition", (PyCFunction)unicodedata_UCD_decomposition, METH_O, unicodedata_UCD_decomposition__doc__},
static PyObject *
unicodedata_UCD_decomposition_impl(PyObject *self, int chr);
static PyObject *
unicodedata_UCD_decomposition(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
int chr;
if (!PyArg_Parse(arg, "C:decomposition", &chr)) {
goto exit;
}
return_value = unicodedata_UCD_decomposition_impl(self, chr);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_normalize__doc__,
"normalize($self, form, unistr, /)\n"
"--\n"
"\n"
"Return the normal form \'form\' for the Unicode string unistr.\n"
"\n"
"Valid values for form are \'NFC\', \'NFKC\', \'NFD\', and \'NFKD\'.");
#define UNICODEDATA_UCD_NORMALIZE_METHODDEF \
{"normalize", (PyCFunction)unicodedata_UCD_normalize, METH_FASTCALL, unicodedata_UCD_normalize__doc__},
static PyObject *
unicodedata_UCD_normalize_impl(PyObject *self, const char *form,
PyObject *input);
static PyObject *
unicodedata_UCD_normalize(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
const char *form;
PyObject *input;
if (!_PyArg_ParseStack(args, nargs, "sO!:normalize",
&form, &PyUnicode_Type, &input)) {
goto exit;
}
return_value = unicodedata_UCD_normalize_impl(self, form, input);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_name__doc__,
"name($self, chr, default=None, /)\n"
"--\n"
"\n"
"Returns the name assigned to the character chr as a string.\n"
"\n"
"If no name is defined, default is returned, or, if not given,\n"
"ValueError is raised.");
#define UNICODEDATA_UCD_NAME_METHODDEF \
{"name", (PyCFunction)unicodedata_UCD_name, METH_FASTCALL, unicodedata_UCD_name__doc__},
static PyObject *
unicodedata_UCD_name_impl(PyObject *self, int chr, PyObject *default_value);
static PyObject *
unicodedata_UCD_name(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int chr;
PyObject *default_value = NULL;
if (!_PyArg_ParseStack(args, nargs, "C|O:name",
&chr, &default_value)) {
goto exit;
}
return_value = unicodedata_UCD_name_impl(self, chr, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(unicodedata_UCD_lookup__doc__,
"lookup($self, name, /)\n"
"--\n"
"\n"
"Look up character by name.\n"
"\n"
"If a character with the given name is found, return the\n"
"corresponding character. If not found, KeyError is raised.");
#define UNICODEDATA_UCD_LOOKUP_METHODDEF \
{"lookup", (PyCFunction)unicodedata_UCD_lookup, METH_O, unicodedata_UCD_lookup__doc__},
static PyObject *
unicodedata_UCD_lookup_impl(PyObject *self, const char *name,
Py_ssize_clean_t name_length);
static PyObject *
unicodedata_UCD_lookup(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *name;
Py_ssize_clean_t name_length;
if (!PyArg_Parse(arg, "s#:lookup", &name, &name_length)) {
goto exit;
}
return_value = unicodedata_UCD_lookup_impl(self, name, name_length);
exit:
return return_value;
}
/*[clinic end generated code: output=6778b61d41557af3 input=a9049054013a1b77]*/
| 10,790 | 384 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/fcntlmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(fcntl_fcntl__doc__,
"fcntl($module, fd, cmd, arg=0, /)\n"
"--\n"
"\n"
"Perform the operation `cmd` on file descriptor fd.\n"
"\n"
"The values used for `cmd` are operating system dependent, and are available\n"
"as constants in the fcntl module, using the same names as used in\n"
"the relevant C header files. The argument arg is optional, and\n"
"defaults to 0; it may be an int or a string. If arg is given as a string,\n"
"the return value of fcntl is a string of that length, containing the\n"
"resulting value put in the arg buffer by the operating system. The length\n"
"of the arg string is not allowed to exceed 1024 bytes. If the arg given\n"
"is an integer or if none is specified, the result value is an integer\n"
"corresponding to the return value of the fcntl call in the C code.");
#define FCNTL_FCNTL_METHODDEF \
{"fcntl", (PyCFunction)fcntl_fcntl, METH_FASTCALL, fcntl_fcntl__doc__},
static PyObject *
fcntl_fcntl_impl(PyObject *module, int fd, int code, PyObject *arg);
static PyObject *
fcntl_fcntl(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
int code;
PyObject *arg = NULL;
if (!_PyArg_ParseStack(args, nargs, "O&i|O:fcntl",
conv_descriptor, &fd, &code, &arg)) {
goto exit;
}
return_value = fcntl_fcntl_impl(module, fd, code, arg);
exit:
return return_value;
}
PyDoc_STRVAR(fcntl_ioctl__doc__,
"ioctl($module, fd, request, arg=0, mutate_flag=True, /)\n"
"--\n"
"\n"
"Perform the operation `request` on file descriptor `fd`.\n"
"\n"
"The values used for `request` are operating system dependent, and are available\n"
"as constants in the fcntl or termios library modules, using the same names as\n"
"used in the relevant C header files.\n"
"\n"
"The argument `arg` is optional, and defaults to 0; it may be an int or a\n"
"buffer containing character data (most likely a string or an array).\n"
"\n"
"If the argument is a mutable buffer (such as an array) and if the\n"
"mutate_flag argument (which is only allowed in this case) is true then the\n"
"buffer is (in effect) passed to the operating system and changes made by\n"
"the OS will be reflected in the contents of the buffer after the call has\n"
"returned. The return value is the integer returned by the ioctl system\n"
"call.\n"
"\n"
"If the argument is a mutable buffer and the mutable_flag argument is false,\n"
"the behavior is as if a string had been passed.\n"
"\n"
"If the argument is an immutable buffer (most likely a string) then a copy\n"
"of the buffer is passed to the operating system and the return value is a\n"
"string of the same length containing whatever the operating system put in\n"
"the buffer. The length of the arg buffer in this case is not allowed to\n"
"exceed 1024 bytes.\n"
"\n"
"If the arg given is an integer or if none is specified, the result value is\n"
"an integer corresponding to the return value of the ioctl call in the C\n"
"code.");
#define FCNTL_IOCTL_METHODDEF \
{"ioctl", (PyCFunction)fcntl_ioctl, METH_FASTCALL, fcntl_ioctl__doc__},
static PyObject *
fcntl_ioctl_impl(PyObject *module, int fd, unsigned int code,
PyObject *ob_arg, int mutate_arg);
static PyObject *
fcntl_ioctl(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
unsigned int code;
PyObject *ob_arg = NULL;
int mutate_arg = 1;
if (!_PyArg_ParseStack(args, nargs, "O&I|Op:ioctl",
conv_descriptor, &fd, &code, &ob_arg, &mutate_arg)) {
goto exit;
}
return_value = fcntl_ioctl_impl(module, fd, code, ob_arg, mutate_arg);
exit:
return return_value;
}
PyDoc_STRVAR(fcntl_flock__doc__,
"flock($module, fd, operation, /)\n"
"--\n"
"\n"
"Perform the lock operation `operation` on file descriptor `fd`.\n"
"\n"
"See the Unix manual page for flock(2) for details (On some systems, this\n"
"function is emulated using fcntl()).");
#define FCNTL_FLOCK_METHODDEF \
{"flock", (PyCFunction)fcntl_flock, METH_FASTCALL, fcntl_flock__doc__},
static PyObject *
fcntl_flock_impl(PyObject *module, int fd, int code);
static PyObject *
fcntl_flock(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
int code;
if (!_PyArg_ParseStack(args, nargs, "O&i:flock",
conv_descriptor, &fd, &code)) {
goto exit;
}
return_value = fcntl_flock_impl(module, fd, code);
exit:
return return_value;
}
PyDoc_STRVAR(fcntl_lockf__doc__,
"lockf($module, fd, cmd, len=0, start=0, whence=0, /)\n"
"--\n"
"\n"
"A wrapper around the fcntl() locking calls.\n"
"\n"
"`fd` is the file descriptor of the file to lock or unlock, and operation is one\n"
"of the following values:\n"
"\n"
" LOCK_UN - unlock\n"
" LOCK_SH - acquire a shared lock\n"
" LOCK_EX - acquire an exclusive lock\n"
"\n"
"When operation is LOCK_SH or LOCK_EX, it can also be bitwise ORed with\n"
"LOCK_NB to avoid blocking on lock acquisition. If LOCK_NB is used and the\n"
"lock cannot be acquired, an OSError will be raised and the exception will\n"
"have an errno attribute set to EACCES or EAGAIN (depending on the operating\n"
"system -- for portability, check for either value).\n"
"\n"
"`len` is the number of bytes to lock, with the default meaning to lock to\n"
"EOF. `start` is the byte offset, relative to `whence`, to that the lock\n"
"starts. `whence` is as with fileobj.seek(), specifically:\n"
"\n"
" 0 - relative to the start of the file (SEEK_SET)\n"
" 1 - relative to the current buffer position (SEEK_CUR)\n"
" 2 - relative to the end of the file (SEEK_END)");
#define FCNTL_LOCKF_METHODDEF \
{"lockf", (PyCFunction)fcntl_lockf, METH_FASTCALL, fcntl_lockf__doc__},
static PyObject *
fcntl_lockf_impl(PyObject *module, int fd, int code, PyObject *lenobj,
PyObject *startobj, int whence);
static PyObject *
fcntl_lockf(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
int code;
PyObject *lenobj = NULL;
PyObject *startobj = NULL;
int whence = 0;
if (!_PyArg_ParseStack(args, nargs, "O&i|OOi:lockf",
conv_descriptor, &fd, &code, &lenobj, &startobj, &whence)) {
goto exit;
}
return_value = fcntl_lockf_impl(module, fd, code, lenobj, startobj, whence);
exit:
return return_value;
}
/*[clinic end generated code: output=6105e3ada306f434 input=a9049054013a1b77]*/
| 6,572 | 191 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_lzmamodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_lzma_LZMACompressor_compress__doc__,
"compress($self, data, /)\n"
"--\n"
"\n"
"Provide data to the compressor object.\n"
"\n"
"Returns a chunk of compressed data if possible, or b\'\' otherwise.\n"
"\n"
"When you have finished providing data to the compressor, call the\n"
"flush() method to finish the compression process.");
#define _LZMA_LZMACOMPRESSOR_COMPRESS_METHODDEF \
{"compress", (PyCFunction)_lzma_LZMACompressor_compress, METH_O, _lzma_LZMACompressor_compress__doc__},
static PyObject *
_lzma_LZMACompressor_compress_impl(Compressor *self, Py_buffer *data);
static PyObject *
_lzma_LZMACompressor_compress(Compressor *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:compress", &data)) {
goto exit;
}
return_value = _lzma_LZMACompressor_compress_impl(self, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_lzma_LZMACompressor_flush__doc__,
"flush($self, /)\n"
"--\n"
"\n"
"Finish the compression process.\n"
"\n"
"Returns the compressed data left in internal buffers.\n"
"\n"
"The compressor object may not be used after this method is called.");
#define _LZMA_LZMACOMPRESSOR_FLUSH_METHODDEF \
{"flush", (PyCFunction)_lzma_LZMACompressor_flush, METH_NOARGS, _lzma_LZMACompressor_flush__doc__},
static PyObject *
_lzma_LZMACompressor_flush_impl(Compressor *self);
static PyObject *
_lzma_LZMACompressor_flush(Compressor *self, PyObject *Py_UNUSED(ignored))
{
return _lzma_LZMACompressor_flush_impl(self);
}
PyDoc_STRVAR(_lzma_LZMADecompressor_decompress__doc__,
"decompress($self, /, data, max_length=-1)\n"
"--\n"
"\n"
"Decompress *data*, returning uncompressed data as bytes.\n"
"\n"
"If *max_length* is nonnegative, returns at most *max_length* bytes of\n"
"decompressed data. If this limit is reached and further output can be\n"
"produced, *self.needs_input* will be set to ``False``. In this case, the next\n"
"call to *decompress()* may provide *data* as b\'\' to obtain more of the output.\n"
"\n"
"If all of the input data was decompressed and returned (either because this\n"
"was less than *max_length* bytes, or because *max_length* was negative),\n"
"*self.needs_input* will be set to True.\n"
"\n"
"Attempting to decompress data after the end of stream is reached raises an\n"
"EOFError. Any data found after the end of the stream is ignored and saved in\n"
"the unused_data attribute.");
#define _LZMA_LZMADECOMPRESSOR_DECOMPRESS_METHODDEF \
{"decompress", (PyCFunction)_lzma_LZMADecompressor_decompress, METH_FASTCALL|METH_KEYWORDS, _lzma_LZMADecompressor_decompress__doc__},
static PyObject *
_lzma_LZMADecompressor_decompress_impl(Decompressor *self, Py_buffer *data,
Py_ssize_t max_length);
static PyObject *
_lzma_LZMADecompressor_decompress(Decompressor *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"data", "max_length", NULL};
static _PyArg_Parser _parser = {"y*|n:decompress", _keywords, 0};
Py_buffer data = {NULL, NULL};
Py_ssize_t max_length = -1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&data, &max_length)) {
goto exit;
}
return_value = _lzma_LZMADecompressor_decompress_impl(self, &data, max_length);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_lzma_LZMADecompressor___init____doc__,
"LZMADecompressor(format=FORMAT_AUTO, memlimit=None, filters=None)\n"
"--\n"
"\n"
"Create a decompressor object for decompressing data incrementally.\n"
"\n"
" format\n"
" Specifies the container format of the input stream. If this is\n"
" FORMAT_AUTO (the default), the decompressor will automatically detect\n"
" whether the input is FORMAT_XZ or FORMAT_ALONE. Streams created with\n"
" FORMAT_RAW cannot be autodetected.\n"
" memlimit\n"
" Limit the amount of memory used by the decompressor. This will cause\n"
" decompression to fail if the input cannot be decompressed within the\n"
" given limit.\n"
" filters\n"
" A custom filter chain. This argument is required for FORMAT_RAW, and\n"
" not accepted with any other format. When provided, this should be a\n"
" sequence of dicts, each indicating the ID and options for a single\n"
" filter.\n"
"\n"
"For one-shot decompression, use the decompress() function instead.");
static int
_lzma_LZMADecompressor___init___impl(Decompressor *self, int format,
PyObject *memlimit, PyObject *filters);
static int
_lzma_LZMADecompressor___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"format", "memlimit", "filters", NULL};
static _PyArg_Parser _parser = {"|iOO:LZMADecompressor", _keywords, 0};
int format = FORMAT_AUTO;
PyObject *memlimit = Py_None;
PyObject *filters = Py_None;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&format, &memlimit, &filters)) {
goto exit;
}
return_value = _lzma_LZMADecompressor___init___impl((Decompressor *)self, format, memlimit, filters);
exit:
return return_value;
}
PyDoc_STRVAR(_lzma_is_check_supported__doc__,
"is_check_supported($module, check_id, /)\n"
"--\n"
"\n"
"Test whether the given integrity check is supported.\n"
"\n"
"Always returns True for CHECK_NONE and CHECK_CRC32.");
#define _LZMA_IS_CHECK_SUPPORTED_METHODDEF \
{"is_check_supported", (PyCFunction)_lzma_is_check_supported, METH_O, _lzma_is_check_supported__doc__},
static PyObject *
_lzma_is_check_supported_impl(PyObject *module, int check_id);
static PyObject *
_lzma_is_check_supported(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int check_id;
if (!PyArg_Parse(arg, "i:is_check_supported", &check_id)) {
goto exit;
}
return_value = _lzma_is_check_supported_impl(module, check_id);
exit:
return return_value;
}
PyDoc_STRVAR(_lzma__encode_filter_properties__doc__,
"_encode_filter_properties($module, filter, /)\n"
"--\n"
"\n"
"Return a bytes object encoding the options (properties) of the filter specified by *filter* (a dict).\n"
"\n"
"The result does not include the filter ID itself, only the options.");
#define _LZMA__ENCODE_FILTER_PROPERTIES_METHODDEF \
{"_encode_filter_properties", (PyCFunction)_lzma__encode_filter_properties, METH_O, _lzma__encode_filter_properties__doc__},
static PyObject *
_lzma__encode_filter_properties_impl(PyObject *module, lzma_filter filter);
static PyObject *
_lzma__encode_filter_properties(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
lzma_filter filter = {LZMA_VLI_UNKNOWN, NULL};
if (!PyArg_Parse(arg, "O&:_encode_filter_properties", lzma_filter_converter, &filter)) {
goto exit;
}
return_value = _lzma__encode_filter_properties_impl(module, filter);
exit:
/* Cleanup for filter */
if (filter.id != LZMA_VLI_UNKNOWN)
PyMem_Free(filter.options);
return return_value;
}
PyDoc_STRVAR(_lzma__decode_filter_properties__doc__,
"_decode_filter_properties($module, filter_id, encoded_props, /)\n"
"--\n"
"\n"
"Return a bytes object encoding the options (properties) of the filter specified by *filter* (a dict).\n"
"\n"
"The result does not include the filter ID itself, only the options.");
#define _LZMA__DECODE_FILTER_PROPERTIES_METHODDEF \
{"_decode_filter_properties", (PyCFunction)_lzma__decode_filter_properties, METH_FASTCALL, _lzma__decode_filter_properties__doc__},
static PyObject *
_lzma__decode_filter_properties_impl(PyObject *module, lzma_vli filter_id,
Py_buffer *encoded_props);
static PyObject *
_lzma__decode_filter_properties(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
lzma_vli filter_id;
Py_buffer encoded_props = {NULL, NULL};
if (!_PyArg_ParseStack(args, nargs, "O&y*:_decode_filter_properties",
lzma_vli_converter, &filter_id, &encoded_props)) {
goto exit;
}
return_value = _lzma__decode_filter_properties_impl(module, filter_id, &encoded_props);
exit:
/* Cleanup for encoded_props */
if (encoded_props.obj) {
PyBuffer_Release(&encoded_props);
}
return return_value;
}
/*[clinic end generated code: output=d4e3802d0dea9af3 input=a9049054013a1b77]*/
| 8,737 | 261 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_opcode.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_opcode_stack_effect__doc__,
"stack_effect($module, opcode, oparg=None, /)\n"
"--\n"
"\n"
"Compute the stack effect of the opcode.");
#define _OPCODE_STACK_EFFECT_METHODDEF \
{"stack_effect", (PyCFunction)_opcode_stack_effect, METH_FASTCALL, _opcode_stack_effect__doc__},
static int
_opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg);
static PyObject *
_opcode_stack_effect(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int opcode;
PyObject *oparg = Py_None;
int _return_value;
if (!_PyArg_ParseStack(args, nargs, "i|O:stack_effect",
&opcode, &oparg)) {
goto exit;
}
_return_value = _opcode_stack_effect_impl(module, opcode, oparg);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
/*[clinic end generated code: output=616105b05b55eb45 input=a9049054013a1b77]*/
| 1,094 | 40 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/cmathmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(cmath_acos__doc__,
"acos($module, z, /)\n"
"--\n"
"\n"
"Return the arc cosine of z.");
#define CMATH_ACOS_METHODDEF \
{"acos", (PyCFunction)cmath_acos, METH_O, cmath_acos__doc__},
static Py_complex
cmath_acos_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_acos(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:acos", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_acos_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_acosh__doc__,
"acosh($module, z, /)\n"
"--\n"
"\n"
"Return the inverse hyperbolic cosine of z.");
#define CMATH_ACOSH_METHODDEF \
{"acosh", (PyCFunction)cmath_acosh, METH_O, cmath_acosh__doc__},
static Py_complex
cmath_acosh_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_acosh(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:acosh", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_acosh_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_asin__doc__,
"asin($module, z, /)\n"
"--\n"
"\n"
"Return the arc sine of z.");
#define CMATH_ASIN_METHODDEF \
{"asin", (PyCFunction)cmath_asin, METH_O, cmath_asin__doc__},
static Py_complex
cmath_asin_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_asin(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:asin", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_asin_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_asinh__doc__,
"asinh($module, z, /)\n"
"--\n"
"\n"
"Return the inverse hyperbolic sine of z.");
#define CMATH_ASINH_METHODDEF \
{"asinh", (PyCFunction)cmath_asinh, METH_O, cmath_asinh__doc__},
static Py_complex
cmath_asinh_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_asinh(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:asinh", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_asinh_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_atan__doc__,
"atan($module, z, /)\n"
"--\n"
"\n"
"Return the arc tangent of z.");
#define CMATH_ATAN_METHODDEF \
{"atan", (PyCFunction)cmath_atan, METH_O, cmath_atan__doc__},
static Py_complex
cmath_atan_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_atan(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:atan", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_atan_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_atanh__doc__,
"atanh($module, z, /)\n"
"--\n"
"\n"
"Return the inverse hyperbolic tangent of z.");
#define CMATH_ATANH_METHODDEF \
{"atanh", (PyCFunction)cmath_atanh, METH_O, cmath_atanh__doc__},
static Py_complex
cmath_atanh_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_atanh(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:atanh", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_atanh_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_cos__doc__,
"cos($module, z, /)\n"
"--\n"
"\n"
"Return the cosine of z.");
#define CMATH_COS_METHODDEF \
{"cos", (PyCFunction)cmath_cos, METH_O, cmath_cos__doc__},
static Py_complex
cmath_cos_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_cos(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:cos", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_cos_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_cosh__doc__,
"cosh($module, z, /)\n"
"--\n"
"\n"
"Return the hyperbolic cosine of z.");
#define CMATH_COSH_METHODDEF \
{"cosh", (PyCFunction)cmath_cosh, METH_O, cmath_cosh__doc__},
static Py_complex
cmath_cosh_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_cosh(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:cosh", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_cosh_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_exp__doc__,
"exp($module, z, /)\n"
"--\n"
"\n"
"Return the exponential value e**z.");
#define CMATH_EXP_METHODDEF \
{"exp", (PyCFunction)cmath_exp, METH_O, cmath_exp__doc__},
static Py_complex
cmath_exp_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_exp(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:exp", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_exp_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_log10__doc__,
"log10($module, z, /)\n"
"--\n"
"\n"
"Return the base-10 logarithm of z.");
#define CMATH_LOG10_METHODDEF \
{"log10", (PyCFunction)cmath_log10, METH_O, cmath_log10__doc__},
static Py_complex
cmath_log10_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_log10(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:log10", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_log10_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_sin__doc__,
"sin($module, z, /)\n"
"--\n"
"\n"
"Return the sine of z.");
#define CMATH_SIN_METHODDEF \
{"sin", (PyCFunction)cmath_sin, METH_O, cmath_sin__doc__},
static Py_complex
cmath_sin_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_sin(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:sin", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_sin_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_sinh__doc__,
"sinh($module, z, /)\n"
"--\n"
"\n"
"Return the hyperbolic sine of z.");
#define CMATH_SINH_METHODDEF \
{"sinh", (PyCFunction)cmath_sinh, METH_O, cmath_sinh__doc__},
static Py_complex
cmath_sinh_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_sinh(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:sinh", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_sinh_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_sqrt__doc__,
"sqrt($module, z, /)\n"
"--\n"
"\n"
"Return the square root of z.");
#define CMATH_SQRT_METHODDEF \
{"sqrt", (PyCFunction)cmath_sqrt, METH_O, cmath_sqrt__doc__},
static Py_complex
cmath_sqrt_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_sqrt(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:sqrt", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_sqrt_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_tan__doc__,
"tan($module, z, /)\n"
"--\n"
"\n"
"Return the tangent of z.");
#define CMATH_TAN_METHODDEF \
{"tan", (PyCFunction)cmath_tan, METH_O, cmath_tan__doc__},
static Py_complex
cmath_tan_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_tan(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:tan", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_tan_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_tanh__doc__,
"tanh($module, z, /)\n"
"--\n"
"\n"
"Return the hyperbolic tangent of z.");
#define CMATH_TANH_METHODDEF \
{"tanh", (PyCFunction)cmath_tanh, METH_O, cmath_tanh__doc__},
static Py_complex
cmath_tanh_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_tanh(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
Py_complex _return_value;
if (!PyArg_Parse(arg, "D:tanh", &z)) {
goto exit;
}
/* modifications for z */
errno = 0; PyFPE_START_PROTECT("complex function", goto exit);
_return_value = cmath_tanh_impl(module, z);
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
exit:
return return_value;
}
PyDoc_STRVAR(cmath_log__doc__,
"log($module, x, y_obj=None, /)\n"
"--\n"
"\n"
"The logarithm of z to the given base.\n"
"\n"
"If the base not specified, returns the natural logarithm (base e) of z.");
#define CMATH_LOG_METHODDEF \
{"log", (PyCFunction)cmath_log, METH_FASTCALL, cmath_log__doc__},
static PyObject *
cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj);
static PyObject *
cmath_log(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_complex x;
PyObject *y_obj = NULL;
if (!_PyArg_ParseStack(args, nargs, "D|O:log",
&x, &y_obj)) {
goto exit;
}
return_value = cmath_log_impl(module, x, y_obj);
exit:
return return_value;
}
PyDoc_STRVAR(cmath_phase__doc__,
"phase($module, z, /)\n"
"--\n"
"\n"
"Return argument, also known as the phase angle, of a complex.");
#define CMATH_PHASE_METHODDEF \
{"phase", (PyCFunction)cmath_phase, METH_O, cmath_phase__doc__},
static PyObject *
cmath_phase_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_phase(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
if (!PyArg_Parse(arg, "D:phase", &z)) {
goto exit;
}
return_value = cmath_phase_impl(module, z);
exit:
return return_value;
}
PyDoc_STRVAR(cmath_polar__doc__,
"polar($module, z, /)\n"
"--\n"
"\n"
"Convert a complex from rectangular coordinates to polar coordinates.\n"
"\n"
"r is the distance from 0 and phi the phase angle.");
#define CMATH_POLAR_METHODDEF \
{"polar", (PyCFunction)cmath_polar, METH_O, cmath_polar__doc__},
static PyObject *
cmath_polar_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_polar(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
if (!PyArg_Parse(arg, "D:polar", &z)) {
goto exit;
}
return_value = cmath_polar_impl(module, z);
exit:
return return_value;
}
PyDoc_STRVAR(cmath_rect__doc__,
"rect($module, r, phi, /)\n"
"--\n"
"\n"
"Convert from polar coordinates to rectangular coordinates.");
#define CMATH_RECT_METHODDEF \
{"rect", (PyCFunction)cmath_rect, METH_FASTCALL, cmath_rect__doc__},
static PyObject *
cmath_rect_impl(PyObject *module, double r, double phi);
static PyObject *
cmath_rect(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
double r;
double phi;
if (!_PyArg_ParseStack(args, nargs, "dd:rect",
&r, &phi)) {
goto exit;
}
return_value = cmath_rect_impl(module, r, phi);
exit:
return return_value;
}
PyDoc_STRVAR(cmath_isfinite__doc__,
"isfinite($module, z, /)\n"
"--\n"
"\n"
"Return True if both the real and imaginary parts of z are finite, else False.");
#define CMATH_ISFINITE_METHODDEF \
{"isfinite", (PyCFunction)cmath_isfinite, METH_O, cmath_isfinite__doc__},
static PyObject *
cmath_isfinite_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_isfinite(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
if (!PyArg_Parse(arg, "D:isfinite", &z)) {
goto exit;
}
return_value = cmath_isfinite_impl(module, z);
exit:
return return_value;
}
PyDoc_STRVAR(cmath_isnan__doc__,
"isnan($module, z, /)\n"
"--\n"
"\n"
"Checks if the real or imaginary part of z not a number (NaN).");
#define CMATH_ISNAN_METHODDEF \
{"isnan", (PyCFunction)cmath_isnan, METH_O, cmath_isnan__doc__},
static PyObject *
cmath_isnan_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_isnan(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
if (!PyArg_Parse(arg, "D:isnan", &z)) {
goto exit;
}
return_value = cmath_isnan_impl(module, z);
exit:
return return_value;
}
PyDoc_STRVAR(cmath_isinf__doc__,
"isinf($module, z, /)\n"
"--\n"
"\n"
"Checks if the real or imaginary part of z is infinite.");
#define CMATH_ISINF_METHODDEF \
{"isinf", (PyCFunction)cmath_isinf, METH_O, cmath_isinf__doc__},
static PyObject *
cmath_isinf_impl(PyObject *module, Py_complex z);
static PyObject *
cmath_isinf(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_complex z;
if (!PyArg_Parse(arg, "D:isinf", &z)) {
goto exit;
}
return_value = cmath_isinf_impl(module, z);
exit:
return return_value;
}
PyDoc_STRVAR(cmath_isclose__doc__,
"isclose($module, /, a, b, *, rel_tol=1e-09, abs_tol=0.0)\n"
"--\n"
"\n"
"Determine whether two complex numbers are close in value.\n"
"\n"
" rel_tol\n"
" maximum difference for being considered \"close\", relative to the\n"
" magnitude of the input values\n"
" abs_tol\n"
" maximum difference for being considered \"close\", regardless of the\n"
" magnitude of the input values\n"
"\n"
"Return True if a is close in value to b, and False otherwise.\n"
"\n"
"For the values to be considered close, the difference between them must be\n"
"smaller than at least one of the tolerances.\n"
"\n"
"-inf, inf and NaN behave similarly to the IEEE 754 Standard. That is, NaN is\n"
"not close to anything, even itself. inf and -inf are only close to themselves.");
#define CMATH_ISCLOSE_METHODDEF \
{"isclose", (PyCFunction)cmath_isclose, METH_FASTCALL|METH_KEYWORDS, cmath_isclose__doc__},
static int
cmath_isclose_impl(PyObject *module, Py_complex a, Py_complex b,
double rel_tol, double abs_tol);
static PyObject *
cmath_isclose(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"a", "b", "rel_tol", "abs_tol", NULL};
static _PyArg_Parser _parser = {"DD|$dd:isclose", _keywords, 0};
Py_complex a;
Py_complex b;
double rel_tol = 1e-09;
double abs_tol = 0.0;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&a, &b, &rel_tol, &abs_tol)) {
goto exit;
}
_return_value = cmath_isclose_impl(module, a, b, rel_tol, abs_tol);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
/*[clinic end generated code: output=51ba28d27d10264e input=a9049054013a1b77]*/
| 21,790 | 887 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/signalmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
#if defined(HAVE_ALARM)
PyDoc_STRVAR(signal_alarm__doc__,
"alarm($module, seconds, /)\n"
"--\n"
"\n"
"Arrange for SIGALRM to arrive after the given number of seconds.");
#define SIGNAL_ALARM_METHODDEF \
{"alarm", (PyCFunction)signal_alarm, METH_O, signal_alarm__doc__},
static long
signal_alarm_impl(PyObject *module, int seconds);
static PyObject *
signal_alarm(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int seconds;
long _return_value;
if (!PyArg_Parse(arg, "i:alarm", &seconds)) {
goto exit;
}
_return_value = signal_alarm_impl(module, seconds);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_ALARM) */
#if defined(HAVE_PAUSE)
PyDoc_STRVAR(signal_pause__doc__,
"pause($module, /)\n"
"--\n"
"\n"
"Wait until a signal arrives.");
#define SIGNAL_PAUSE_METHODDEF \
{"pause", (PyCFunction)signal_pause, METH_NOARGS, signal_pause__doc__},
static PyObject *
signal_pause_impl(PyObject *module);
static PyObject *
signal_pause(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return signal_pause_impl(module);
}
#endif /* defined(HAVE_PAUSE) */
PyDoc_STRVAR(signal_signal__doc__,
"signal($module, signalnum, handler, /)\n"
"--\n"
"\n"
"Set the action for the given signal.\n"
"\n"
"The action can be SIG_DFL, SIG_IGN, or a callable Python object.\n"
"The previous action is returned. See getsignal() for possible return values.\n"
"\n"
"*** IMPORTANT NOTICE ***\n"
"A signal handler function is called with two arguments:\n"
"the first is the signal number, the second is the interrupted stack frame.");
#define SIGNAL_SIGNAL_METHODDEF \
{"signal", (PyCFunction)signal_signal, METH_FASTCALL, signal_signal__doc__},
static PyObject *
signal_signal_impl(PyObject *module, int signalnum, PyObject *handler);
static PyObject *
signal_signal(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int signalnum;
PyObject *handler;
if (!_PyArg_ParseStack(args, nargs, "iO:signal",
&signalnum, &handler)) {
goto exit;
}
return_value = signal_signal_impl(module, signalnum, handler);
exit:
return return_value;
}
PyDoc_STRVAR(signal_getsignal__doc__,
"getsignal($module, signalnum, /)\n"
"--\n"
"\n"
"Return the current action for the given signal.\n"
"\n"
"The return value can be:\n"
" SIG_IGN -- if the signal is being ignored\n"
" SIG_DFL -- if the default action for the signal is in effect\n"
" None -- if an unknown handler is in effect\n"
" anything else -- the callable Python object used as a handler");
#define SIGNAL_GETSIGNAL_METHODDEF \
{"getsignal", (PyCFunction)signal_getsignal, METH_O, signal_getsignal__doc__},
static PyObject *
signal_getsignal_impl(PyObject *module, int signalnum);
static PyObject *
signal_getsignal(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int signalnum;
if (!PyArg_Parse(arg, "i:getsignal", &signalnum)) {
goto exit;
}
return_value = signal_getsignal_impl(module, signalnum);
exit:
return return_value;
}
#if defined(HAVE_SIGINTERRUPT)
PyDoc_STRVAR(signal_siginterrupt__doc__,
"siginterrupt($module, signalnum, flag, /)\n"
"--\n"
"\n"
"Change system call restart behaviour.\n"
"\n"
"If flag is False, system calls will be restarted when interrupted by\n"
"signal sig, else system calls will be interrupted.");
#define SIGNAL_SIGINTERRUPT_METHODDEF \
{"siginterrupt", (PyCFunction)signal_siginterrupt, METH_FASTCALL, signal_siginterrupt__doc__},
static PyObject *
signal_siginterrupt_impl(PyObject *module, int signalnum, int flag);
static PyObject *
signal_siginterrupt(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int signalnum;
int flag;
if (!_PyArg_ParseStack(args, nargs, "ii:siginterrupt",
&signalnum, &flag)) {
goto exit;
}
return_value = signal_siginterrupt_impl(module, signalnum, flag);
exit:
return return_value;
}
#endif /* defined(HAVE_SIGINTERRUPT) */
#if defined(HAVE_SETITIMER)
PyDoc_STRVAR(signal_setitimer__doc__,
"setitimer($module, which, seconds, interval=0.0, /)\n"
"--\n"
"\n"
"Sets given itimer (one of ITIMER_REAL, ITIMER_VIRTUAL or ITIMER_PROF).\n"
"\n"
"The timer will fire after value seconds and after that every interval seconds.\n"
"The itimer can be cleared by setting seconds to zero.\n"
"\n"
"Returns old values as a tuple: (delay, interval).");
#define SIGNAL_SETITIMER_METHODDEF \
{"setitimer", (PyCFunction)signal_setitimer, METH_FASTCALL, signal_setitimer__doc__},
static PyObject *
signal_setitimer_impl(PyObject *module, int which, double seconds,
double interval);
static PyObject *
signal_setitimer(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int which;
double seconds;
double interval = 0.0;
if (!_PyArg_ParseStack(args, nargs, "id|d:setitimer",
&which, &seconds, &interval)) {
goto exit;
}
return_value = signal_setitimer_impl(module, which, seconds, interval);
exit:
return return_value;
}
#endif /* defined(HAVE_SETITIMER) */
#if defined(HAVE_GETITIMER)
PyDoc_STRVAR(signal_getitimer__doc__,
"getitimer($module, which, /)\n"
"--\n"
"\n"
"Returns current value of given itimer.");
#define SIGNAL_GETITIMER_METHODDEF \
{"getitimer", (PyCFunction)signal_getitimer, METH_O, signal_getitimer__doc__},
static PyObject *
signal_getitimer_impl(PyObject *module, int which);
static PyObject *
signal_getitimer(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int which;
if (!PyArg_Parse(arg, "i:getitimer", &which)) {
goto exit;
}
return_value = signal_getitimer_impl(module, which);
exit:
return return_value;
}
#endif /* defined(HAVE_GETITIMER) */
#if defined(PYPTHREAD_SIGMASK)
PyDoc_STRVAR(signal_pthread_sigmask__doc__,
"pthread_sigmask($module, how, mask, /)\n"
"--\n"
"\n"
"Fetch and/or change the signal mask of the calling thread.");
#define SIGNAL_PTHREAD_SIGMASK_METHODDEF \
{"pthread_sigmask", (PyCFunction)signal_pthread_sigmask, METH_FASTCALL, signal_pthread_sigmask__doc__},
static PyObject *
signal_pthread_sigmask_impl(PyObject *module, int how, PyObject *mask);
static PyObject *
signal_pthread_sigmask(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int how;
PyObject *mask;
if (!_PyArg_ParseStack(args, nargs, "iO:pthread_sigmask",
&how, &mask)) {
goto exit;
}
return_value = signal_pthread_sigmask_impl(module, how, mask);
exit:
return return_value;
}
#endif /* defined(PYPTHREAD_SIGMASK) */
#if defined(HAVE_SIGPENDING)
PyDoc_STRVAR(signal_sigpending__doc__,
"sigpending($module, /)\n"
"--\n"
"\n"
"Examine pending signals.\n"
"\n"
"Returns a set of signal numbers that are pending for delivery to\n"
"the calling thread.");
#define SIGNAL_SIGPENDING_METHODDEF \
{"sigpending", (PyCFunction)signal_sigpending, METH_NOARGS, signal_sigpending__doc__},
static PyObject *
signal_sigpending_impl(PyObject *module);
static PyObject *
signal_sigpending(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return signal_sigpending_impl(module);
}
#endif /* defined(HAVE_SIGPENDING) */
#if defined(HAVE_SIGWAIT)
PyDoc_STRVAR(signal_sigwait__doc__,
"sigwait($module, sigset, /)\n"
"--\n"
"\n"
"Wait for a signal.\n"
"\n"
"Suspend execution of the calling thread until the delivery of one of the\n"
"signals specified in the signal set sigset. The function accepts the signal\n"
"and returns the signal number.");
#define SIGNAL_SIGWAIT_METHODDEF \
{"sigwait", (PyCFunction)signal_sigwait, METH_O, signal_sigwait__doc__},
#endif /* defined(HAVE_SIGWAIT) */
#if defined(HAVE_SIGWAITINFO)
PyDoc_STRVAR(signal_sigwaitinfo__doc__,
"sigwaitinfo($module, sigset, /)\n"
"--\n"
"\n"
"Wait synchronously until one of the signals in *sigset* is delivered.\n"
"\n"
"Returns a struct_siginfo containing information about the signal.");
#define SIGNAL_SIGWAITINFO_METHODDEF \
{"sigwaitinfo", (PyCFunction)signal_sigwaitinfo, METH_O, signal_sigwaitinfo__doc__},
#endif /* defined(HAVE_SIGWAITINFO) */
#if defined(HAVE_SIGTIMEDWAIT)
PyDoc_STRVAR(signal_sigtimedwait__doc__,
"sigtimedwait($module, sigset, timeout, /)\n"
"--\n"
"\n"
"Like sigwaitinfo(), but with a timeout.\n"
"\n"
"The timeout is specified in seconds, with floating point numbers allowed.");
#define SIGNAL_SIGTIMEDWAIT_METHODDEF \
{"sigtimedwait", (PyCFunction)signal_sigtimedwait, METH_FASTCALL, signal_sigtimedwait__doc__},
static PyObject *
signal_sigtimedwait_impl(PyObject *module, PyObject *sigset,
PyObject *timeout_obj);
static PyObject *
signal_sigtimedwait(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *sigset;
PyObject *timeout_obj;
if (!_PyArg_UnpackStack(args, nargs, "sigtimedwait",
2, 2,
&sigset, &timeout_obj)) {
goto exit;
}
return_value = signal_sigtimedwait_impl(module, sigset, timeout_obj);
exit:
return return_value;
}
#endif /* defined(HAVE_SIGTIMEDWAIT) */
#if (defined(HAVE_PTHREAD_KILL) && defined(WITH_THREAD))
PyDoc_STRVAR(signal_pthread_kill__doc__,
"pthread_kill($module, thread_id, signalnum, /)\n"
"--\n"
"\n"
"Send a signal to a thread.");
#define SIGNAL_PTHREAD_KILL_METHODDEF \
{"pthread_kill", (PyCFunction)signal_pthread_kill, METH_FASTCALL, signal_pthread_kill__doc__},
static PyObject *
signal_pthread_kill_impl(PyObject *module, long thread_id, int signalnum);
static PyObject *
signal_pthread_kill(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
long thread_id;
int signalnum;
if (!_PyArg_ParseStack(args, nargs, "li:pthread_kill",
&thread_id, &signalnum)) {
goto exit;
}
return_value = signal_pthread_kill_impl(module, thread_id, signalnum);
exit:
return return_value;
}
#endif /* (defined(HAVE_PTHREAD_KILL) && defined(WITH_THREAD)) */
#ifndef SIGNAL_ALARM_METHODDEF
#define SIGNAL_ALARM_METHODDEF
#endif /* !defined(SIGNAL_ALARM_METHODDEF) */
#ifndef SIGNAL_PAUSE_METHODDEF
#define SIGNAL_PAUSE_METHODDEF
#endif /* !defined(SIGNAL_PAUSE_METHODDEF) */
#ifndef SIGNAL_SIGINTERRUPT_METHODDEF
#define SIGNAL_SIGINTERRUPT_METHODDEF
#endif /* !defined(SIGNAL_SIGINTERRUPT_METHODDEF) */
#ifndef SIGNAL_SETITIMER_METHODDEF
#define SIGNAL_SETITIMER_METHODDEF
#endif /* !defined(SIGNAL_SETITIMER_METHODDEF) */
#ifndef SIGNAL_GETITIMER_METHODDEF
#define SIGNAL_GETITIMER_METHODDEF
#endif /* !defined(SIGNAL_GETITIMER_METHODDEF) */
#ifndef SIGNAL_PTHREAD_SIGMASK_METHODDEF
#define SIGNAL_PTHREAD_SIGMASK_METHODDEF
#endif /* !defined(SIGNAL_PTHREAD_SIGMASK_METHODDEF) */
#ifndef SIGNAL_SIGPENDING_METHODDEF
#define SIGNAL_SIGPENDING_METHODDEF
#endif /* !defined(SIGNAL_SIGPENDING_METHODDEF) */
#ifndef SIGNAL_SIGWAIT_METHODDEF
#define SIGNAL_SIGWAIT_METHODDEF
#endif /* !defined(SIGNAL_SIGWAIT_METHODDEF) */
#ifndef SIGNAL_SIGWAITINFO_METHODDEF
#define SIGNAL_SIGWAITINFO_METHODDEF
#endif /* !defined(SIGNAL_SIGWAITINFO_METHODDEF) */
#ifndef SIGNAL_SIGTIMEDWAIT_METHODDEF
#define SIGNAL_SIGTIMEDWAIT_METHODDEF
#endif /* !defined(SIGNAL_SIGTIMEDWAIT_METHODDEF) */
#ifndef SIGNAL_PTHREAD_KILL_METHODDEF
#define SIGNAL_PTHREAD_KILL_METHODDEF
#endif /* !defined(SIGNAL_PTHREAD_KILL_METHODDEF) */
/*[clinic end generated code: output=99ed1ec3156528ba input=a9049054013a1b77]*/
| 11,825 | 444 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/audioop.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(audioop_getsample__doc__,
"getsample($module, fragment, width, index, /)\n"
"--\n"
"\n"
"Return the value of sample index from the fragment.");
#define AUDIOOP_GETSAMPLE_METHODDEF \
{"getsample", (PyCFunction)audioop_getsample, METH_FASTCALL, audioop_getsample__doc__},
static PyObject *
audioop_getsample_impl(PyObject *module, Py_buffer *fragment, int width,
Py_ssize_t index);
static PyObject *
audioop_getsample(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
Py_ssize_t index;
if (!_PyArg_ParseStack(args, nargs, "y*in:getsample",
&fragment, &width, &index)) {
goto exit;
}
return_value = audioop_getsample_impl(module, &fragment, width, index);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_max__doc__,
"max($module, fragment, width, /)\n"
"--\n"
"\n"
"Return the maximum of the absolute value of all samples in a fragment.");
#define AUDIOOP_MAX_METHODDEF \
{"max", (PyCFunction)audioop_max, METH_FASTCALL, audioop_max__doc__},
static PyObject *
audioop_max_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_max(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:max",
&fragment, &width)) {
goto exit;
}
return_value = audioop_max_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_minmax__doc__,
"minmax($module, fragment, width, /)\n"
"--\n"
"\n"
"Return the minimum and maximum values of all samples in the sound fragment.");
#define AUDIOOP_MINMAX_METHODDEF \
{"minmax", (PyCFunction)audioop_minmax, METH_FASTCALL, audioop_minmax__doc__},
static PyObject *
audioop_minmax_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_minmax(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:minmax",
&fragment, &width)) {
goto exit;
}
return_value = audioop_minmax_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_avg__doc__,
"avg($module, fragment, width, /)\n"
"--\n"
"\n"
"Return the average over all samples in the fragment.");
#define AUDIOOP_AVG_METHODDEF \
{"avg", (PyCFunction)audioop_avg, METH_FASTCALL, audioop_avg__doc__},
static PyObject *
audioop_avg_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_avg(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:avg",
&fragment, &width)) {
goto exit;
}
return_value = audioop_avg_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_rms__doc__,
"rms($module, fragment, width, /)\n"
"--\n"
"\n"
"Return the root-mean-square of the fragment, i.e. sqrt(sum(S_i^2)/n).");
#define AUDIOOP_RMS_METHODDEF \
{"rms", (PyCFunction)audioop_rms, METH_FASTCALL, audioop_rms__doc__},
static PyObject *
audioop_rms_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_rms(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:rms",
&fragment, &width)) {
goto exit;
}
return_value = audioop_rms_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_findfit__doc__,
"findfit($module, fragment, reference, /)\n"
"--\n"
"\n"
"Try to match reference as well as possible to a portion of fragment.");
#define AUDIOOP_FINDFIT_METHODDEF \
{"findfit", (PyCFunction)audioop_findfit, METH_FASTCALL, audioop_findfit__doc__},
static PyObject *
audioop_findfit_impl(PyObject *module, Py_buffer *fragment,
Py_buffer *reference);
static PyObject *
audioop_findfit(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
Py_buffer reference = {NULL, NULL};
if (!_PyArg_ParseStack(args, nargs, "y*y*:findfit",
&fragment, &reference)) {
goto exit;
}
return_value = audioop_findfit_impl(module, &fragment, &reference);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
/* Cleanup for reference */
if (reference.obj) {
PyBuffer_Release(&reference);
}
return return_value;
}
PyDoc_STRVAR(audioop_findfactor__doc__,
"findfactor($module, fragment, reference, /)\n"
"--\n"
"\n"
"Return a factor F such that rms(add(fragment, mul(reference, -F))) is minimal.");
#define AUDIOOP_FINDFACTOR_METHODDEF \
{"findfactor", (PyCFunction)audioop_findfactor, METH_FASTCALL, audioop_findfactor__doc__},
static PyObject *
audioop_findfactor_impl(PyObject *module, Py_buffer *fragment,
Py_buffer *reference);
static PyObject *
audioop_findfactor(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
Py_buffer reference = {NULL, NULL};
if (!_PyArg_ParseStack(args, nargs, "y*y*:findfactor",
&fragment, &reference)) {
goto exit;
}
return_value = audioop_findfactor_impl(module, &fragment, &reference);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
/* Cleanup for reference */
if (reference.obj) {
PyBuffer_Release(&reference);
}
return return_value;
}
PyDoc_STRVAR(audioop_findmax__doc__,
"findmax($module, fragment, length, /)\n"
"--\n"
"\n"
"Search fragment for a slice of specified number of samples with maximum energy.");
#define AUDIOOP_FINDMAX_METHODDEF \
{"findmax", (PyCFunction)audioop_findmax, METH_FASTCALL, audioop_findmax__doc__},
static PyObject *
audioop_findmax_impl(PyObject *module, Py_buffer *fragment,
Py_ssize_t length);
static PyObject *
audioop_findmax(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
Py_ssize_t length;
if (!_PyArg_ParseStack(args, nargs, "y*n:findmax",
&fragment, &length)) {
goto exit;
}
return_value = audioop_findmax_impl(module, &fragment, length);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_avgpp__doc__,
"avgpp($module, fragment, width, /)\n"
"--\n"
"\n"
"Return the average peak-peak value over all samples in the fragment.");
#define AUDIOOP_AVGPP_METHODDEF \
{"avgpp", (PyCFunction)audioop_avgpp, METH_FASTCALL, audioop_avgpp__doc__},
static PyObject *
audioop_avgpp_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_avgpp(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:avgpp",
&fragment, &width)) {
goto exit;
}
return_value = audioop_avgpp_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_maxpp__doc__,
"maxpp($module, fragment, width, /)\n"
"--\n"
"\n"
"Return the maximum peak-peak value in the sound fragment.");
#define AUDIOOP_MAXPP_METHODDEF \
{"maxpp", (PyCFunction)audioop_maxpp, METH_FASTCALL, audioop_maxpp__doc__},
static PyObject *
audioop_maxpp_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_maxpp(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:maxpp",
&fragment, &width)) {
goto exit;
}
return_value = audioop_maxpp_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_cross__doc__,
"cross($module, fragment, width, /)\n"
"--\n"
"\n"
"Return the number of zero crossings in the fragment passed as an argument.");
#define AUDIOOP_CROSS_METHODDEF \
{"cross", (PyCFunction)audioop_cross, METH_FASTCALL, audioop_cross__doc__},
static PyObject *
audioop_cross_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_cross(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:cross",
&fragment, &width)) {
goto exit;
}
return_value = audioop_cross_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_mul__doc__,
"mul($module, fragment, width, factor, /)\n"
"--\n"
"\n"
"Return a fragment that has all samples in the original fragment multiplied by the floating-point value factor.");
#define AUDIOOP_MUL_METHODDEF \
{"mul", (PyCFunction)audioop_mul, METH_FASTCALL, audioop_mul__doc__},
static PyObject *
audioop_mul_impl(PyObject *module, Py_buffer *fragment, int width,
double factor);
static PyObject *
audioop_mul(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
double factor;
if (!_PyArg_ParseStack(args, nargs, "y*id:mul",
&fragment, &width, &factor)) {
goto exit;
}
return_value = audioop_mul_impl(module, &fragment, width, factor);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_tomono__doc__,
"tomono($module, fragment, width, lfactor, rfactor, /)\n"
"--\n"
"\n"
"Convert a stereo fragment to a mono fragment.");
#define AUDIOOP_TOMONO_METHODDEF \
{"tomono", (PyCFunction)audioop_tomono, METH_FASTCALL, audioop_tomono__doc__},
static PyObject *
audioop_tomono_impl(PyObject *module, Py_buffer *fragment, int width,
double lfactor, double rfactor);
static PyObject *
audioop_tomono(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
double lfactor;
double rfactor;
if (!_PyArg_ParseStack(args, nargs, "y*idd:tomono",
&fragment, &width, &lfactor, &rfactor)) {
goto exit;
}
return_value = audioop_tomono_impl(module, &fragment, width, lfactor, rfactor);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_tostereo__doc__,
"tostereo($module, fragment, width, lfactor, rfactor, /)\n"
"--\n"
"\n"
"Generate a stereo fragment from a mono fragment.");
#define AUDIOOP_TOSTEREO_METHODDEF \
{"tostereo", (PyCFunction)audioop_tostereo, METH_FASTCALL, audioop_tostereo__doc__},
static PyObject *
audioop_tostereo_impl(PyObject *module, Py_buffer *fragment, int width,
double lfactor, double rfactor);
static PyObject *
audioop_tostereo(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
double lfactor;
double rfactor;
if (!_PyArg_ParseStack(args, nargs, "y*idd:tostereo",
&fragment, &width, &lfactor, &rfactor)) {
goto exit;
}
return_value = audioop_tostereo_impl(module, &fragment, width, lfactor, rfactor);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_add__doc__,
"add($module, fragment1, fragment2, width, /)\n"
"--\n"
"\n"
"Return a fragment which is the addition of the two samples passed as parameters.");
#define AUDIOOP_ADD_METHODDEF \
{"add", (PyCFunction)audioop_add, METH_FASTCALL, audioop_add__doc__},
static PyObject *
audioop_add_impl(PyObject *module, Py_buffer *fragment1,
Py_buffer *fragment2, int width);
static PyObject *
audioop_add(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment1 = {NULL, NULL};
Py_buffer fragment2 = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*y*i:add",
&fragment1, &fragment2, &width)) {
goto exit;
}
return_value = audioop_add_impl(module, &fragment1, &fragment2, width);
exit:
/* Cleanup for fragment1 */
if (fragment1.obj) {
PyBuffer_Release(&fragment1);
}
/* Cleanup for fragment2 */
if (fragment2.obj) {
PyBuffer_Release(&fragment2);
}
return return_value;
}
PyDoc_STRVAR(audioop_bias__doc__,
"bias($module, fragment, width, bias, /)\n"
"--\n"
"\n"
"Return a fragment that is the original fragment with a bias added to each sample.");
#define AUDIOOP_BIAS_METHODDEF \
{"bias", (PyCFunction)audioop_bias, METH_FASTCALL, audioop_bias__doc__},
static PyObject *
audioop_bias_impl(PyObject *module, Py_buffer *fragment, int width, int bias);
static PyObject *
audioop_bias(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
int bias;
if (!_PyArg_ParseStack(args, nargs, "y*ii:bias",
&fragment, &width, &bias)) {
goto exit;
}
return_value = audioop_bias_impl(module, &fragment, width, bias);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_reverse__doc__,
"reverse($module, fragment, width, /)\n"
"--\n"
"\n"
"Reverse the samples in a fragment and returns the modified fragment.");
#define AUDIOOP_REVERSE_METHODDEF \
{"reverse", (PyCFunction)audioop_reverse, METH_FASTCALL, audioop_reverse__doc__},
static PyObject *
audioop_reverse_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_reverse(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:reverse",
&fragment, &width)) {
goto exit;
}
return_value = audioop_reverse_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_byteswap__doc__,
"byteswap($module, fragment, width, /)\n"
"--\n"
"\n"
"Convert big-endian samples to little-endian and vice versa.");
#define AUDIOOP_BYTESWAP_METHODDEF \
{"byteswap", (PyCFunction)audioop_byteswap, METH_FASTCALL, audioop_byteswap__doc__},
static PyObject *
audioop_byteswap_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_byteswap(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:byteswap",
&fragment, &width)) {
goto exit;
}
return_value = audioop_byteswap_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_lin2lin__doc__,
"lin2lin($module, fragment, width, newwidth, /)\n"
"--\n"
"\n"
"Convert samples between 1-, 2-, 3- and 4-byte formats.");
#define AUDIOOP_LIN2LIN_METHODDEF \
{"lin2lin", (PyCFunction)audioop_lin2lin, METH_FASTCALL, audioop_lin2lin__doc__},
static PyObject *
audioop_lin2lin_impl(PyObject *module, Py_buffer *fragment, int width,
int newwidth);
static PyObject *
audioop_lin2lin(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
int newwidth;
if (!_PyArg_ParseStack(args, nargs, "y*ii:lin2lin",
&fragment, &width, &newwidth)) {
goto exit;
}
return_value = audioop_lin2lin_impl(module, &fragment, width, newwidth);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_ratecv__doc__,
"ratecv($module, fragment, width, nchannels, inrate, outrate, state,\n"
" weightA=1, weightB=0, /)\n"
"--\n"
"\n"
"Convert the frame rate of the input fragment.");
#define AUDIOOP_RATECV_METHODDEF \
{"ratecv", (PyCFunction)audioop_ratecv, METH_FASTCALL, audioop_ratecv__doc__},
static PyObject *
audioop_ratecv_impl(PyObject *module, Py_buffer *fragment, int width,
int nchannels, int inrate, int outrate, PyObject *state,
int weightA, int weightB);
static PyObject *
audioop_ratecv(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
int nchannels;
int inrate;
int outrate;
PyObject *state;
int weightA = 1;
int weightB = 0;
if (!_PyArg_ParseStack(args, nargs, "y*iiiiO|ii:ratecv",
&fragment, &width, &nchannels, &inrate, &outrate, &state, &weightA, &weightB)) {
goto exit;
}
return_value = audioop_ratecv_impl(module, &fragment, width, nchannels, inrate, outrate, state, weightA, weightB);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_lin2ulaw__doc__,
"lin2ulaw($module, fragment, width, /)\n"
"--\n"
"\n"
"Convert samples in the audio fragment to u-LAW encoding.");
#define AUDIOOP_LIN2ULAW_METHODDEF \
{"lin2ulaw", (PyCFunction)audioop_lin2ulaw, METH_FASTCALL, audioop_lin2ulaw__doc__},
static PyObject *
audioop_lin2ulaw_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_lin2ulaw(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:lin2ulaw",
&fragment, &width)) {
goto exit;
}
return_value = audioop_lin2ulaw_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_ulaw2lin__doc__,
"ulaw2lin($module, fragment, width, /)\n"
"--\n"
"\n"
"Convert sound fragments in u-LAW encoding to linearly encoded sound fragments.");
#define AUDIOOP_ULAW2LIN_METHODDEF \
{"ulaw2lin", (PyCFunction)audioop_ulaw2lin, METH_FASTCALL, audioop_ulaw2lin__doc__},
static PyObject *
audioop_ulaw2lin_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_ulaw2lin(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:ulaw2lin",
&fragment, &width)) {
goto exit;
}
return_value = audioop_ulaw2lin_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_lin2alaw__doc__,
"lin2alaw($module, fragment, width, /)\n"
"--\n"
"\n"
"Convert samples in the audio fragment to a-LAW encoding.");
#define AUDIOOP_LIN2ALAW_METHODDEF \
{"lin2alaw", (PyCFunction)audioop_lin2alaw, METH_FASTCALL, audioop_lin2alaw__doc__},
static PyObject *
audioop_lin2alaw_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_lin2alaw(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:lin2alaw",
&fragment, &width)) {
goto exit;
}
return_value = audioop_lin2alaw_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_alaw2lin__doc__,
"alaw2lin($module, fragment, width, /)\n"
"--\n"
"\n"
"Convert sound fragments in a-LAW encoding to linearly encoded sound fragments.");
#define AUDIOOP_ALAW2LIN_METHODDEF \
{"alaw2lin", (PyCFunction)audioop_alaw2lin, METH_FASTCALL, audioop_alaw2lin__doc__},
static PyObject *
audioop_alaw2lin_impl(PyObject *module, Py_buffer *fragment, int width);
static PyObject *
audioop_alaw2lin(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
if (!_PyArg_ParseStack(args, nargs, "y*i:alaw2lin",
&fragment, &width)) {
goto exit;
}
return_value = audioop_alaw2lin_impl(module, &fragment, width);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_lin2adpcm__doc__,
"lin2adpcm($module, fragment, width, state, /)\n"
"--\n"
"\n"
"Convert samples to 4 bit Intel/DVI ADPCM encoding.");
#define AUDIOOP_LIN2ADPCM_METHODDEF \
{"lin2adpcm", (PyCFunction)audioop_lin2adpcm, METH_FASTCALL, audioop_lin2adpcm__doc__},
static PyObject *
audioop_lin2adpcm_impl(PyObject *module, Py_buffer *fragment, int width,
PyObject *state);
static PyObject *
audioop_lin2adpcm(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
PyObject *state;
if (!_PyArg_ParseStack(args, nargs, "y*iO:lin2adpcm",
&fragment, &width, &state)) {
goto exit;
}
return_value = audioop_lin2adpcm_impl(module, &fragment, width, state);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
PyDoc_STRVAR(audioop_adpcm2lin__doc__,
"adpcm2lin($module, fragment, width, state, /)\n"
"--\n"
"\n"
"Decode an Intel/DVI ADPCM coded fragment to a linear fragment.");
#define AUDIOOP_ADPCM2LIN_METHODDEF \
{"adpcm2lin", (PyCFunction)audioop_adpcm2lin, METH_FASTCALL, audioop_adpcm2lin__doc__},
static PyObject *
audioop_adpcm2lin_impl(PyObject *module, Py_buffer *fragment, int width,
PyObject *state);
static PyObject *
audioop_adpcm2lin(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer fragment = {NULL, NULL};
int width;
PyObject *state;
if (!_PyArg_ParseStack(args, nargs, "y*iO:adpcm2lin",
&fragment, &width, &state)) {
goto exit;
}
return_value = audioop_adpcm2lin_impl(module, &fragment, width, state);
exit:
/* Cleanup for fragment */
if (fragment.obj) {
PyBuffer_Release(&fragment);
}
return return_value;
}
/*[clinic end generated code: output=e2076026235d7f0f input=a9049054013a1b77]*/
| 24,350 | 933 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/grpmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(grp_getgrgid__doc__,
"getgrgid($module, /, id)\n"
"--\n"
"\n"
"Return the group database entry for the given numeric group ID.\n"
"\n"
"If id is not valid, raise KeyError.");
#define GRP_GETGRGID_METHODDEF \
{"getgrgid", (PyCFunction)grp_getgrgid, METH_FASTCALL|METH_KEYWORDS, grp_getgrgid__doc__},
static PyObject *
grp_getgrgid_impl(PyObject *module, PyObject *id);
static PyObject *
grp_getgrgid(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"id", NULL};
static _PyArg_Parser _parser = {"O:getgrgid", _keywords, 0};
PyObject *id;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&id)) {
goto exit;
}
return_value = grp_getgrgid_impl(module, id);
exit:
return return_value;
}
PyDoc_STRVAR(grp_getgrnam__doc__,
"getgrnam($module, /, name)\n"
"--\n"
"\n"
"Return the group database entry for the given group name.\n"
"\n"
"If name is not valid, raise KeyError.");
#define GRP_GETGRNAM_METHODDEF \
{"getgrnam", (PyCFunction)grp_getgrnam, METH_FASTCALL|METH_KEYWORDS, grp_getgrnam__doc__},
static PyObject *
grp_getgrnam_impl(PyObject *module, PyObject *name);
static PyObject *
grp_getgrnam(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"name", NULL};
static _PyArg_Parser _parser = {"U:getgrnam", _keywords, 0};
PyObject *name;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&name)) {
goto exit;
}
return_value = grp_getgrnam_impl(module, name);
exit:
return return_value;
}
PyDoc_STRVAR(grp_getgrall__doc__,
"getgrall($module, /)\n"
"--\n"
"\n"
"Return a list of all available group entries, in arbitrary order.\n"
"\n"
"An entry whose name starts with \'+\' or \'-\' represents an instruction\n"
"to use YP/NIS and may not be accessible via getgrnam or getgrgid.");
#define GRP_GETGRALL_METHODDEF \
{"getgrall", (PyCFunction)grp_getgrall, METH_NOARGS, grp_getgrall__doc__},
static PyObject *
grp_getgrall_impl(PyObject *module);
static PyObject *
grp_getgrall(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return grp_getgrall_impl(module);
}
/*[clinic end generated code: output=e7ef2cbc437eedcb input=a9049054013a1b77]*/
| 2,495 | 91 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/pyexpat.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(pyexpat_xmlparser_Parse__doc__,
"Parse($self, data, isfinal=False, /)\n"
"--\n"
"\n"
"Parse XML data.\n"
"\n"
"`isfinal\' should be true at end of input.");
#define PYEXPAT_XMLPARSER_PARSE_METHODDEF \
{"Parse", (PyCFunction)pyexpat_xmlparser_Parse, METH_FASTCALL, pyexpat_xmlparser_Parse__doc__},
static PyObject *
pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyObject *data,
int isfinal);
static PyObject *
pyexpat_xmlparser_Parse(xmlparseobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *data;
int isfinal = 0;
if (!_PyArg_ParseStack(args, nargs, "O|i:Parse",
&data, &isfinal)) {
goto exit;
}
return_value = pyexpat_xmlparser_Parse_impl(self, data, isfinal);
exit:
return return_value;
}
PyDoc_STRVAR(pyexpat_xmlparser_ParseFile__doc__,
"ParseFile($self, file, /)\n"
"--\n"
"\n"
"Parse XML data from file-like object.");
#define PYEXPAT_XMLPARSER_PARSEFILE_METHODDEF \
{"ParseFile", (PyCFunction)pyexpat_xmlparser_ParseFile, METH_O, pyexpat_xmlparser_ParseFile__doc__},
PyDoc_STRVAR(pyexpat_xmlparser_SetBase__doc__,
"SetBase($self, base, /)\n"
"--\n"
"\n"
"Set the base URL for the parser.");
#define PYEXPAT_XMLPARSER_SETBASE_METHODDEF \
{"SetBase", (PyCFunction)pyexpat_xmlparser_SetBase, METH_O, pyexpat_xmlparser_SetBase__doc__},
static PyObject *
pyexpat_xmlparser_SetBase_impl(xmlparseobject *self, const char *base);
static PyObject *
pyexpat_xmlparser_SetBase(xmlparseobject *self, PyObject *arg)
{
PyObject *return_value = NULL;
const char *base;
if (!PyArg_Parse(arg, "s:SetBase", &base)) {
goto exit;
}
return_value = pyexpat_xmlparser_SetBase_impl(self, base);
exit:
return return_value;
}
PyDoc_STRVAR(pyexpat_xmlparser_GetBase__doc__,
"GetBase($self, /)\n"
"--\n"
"\n"
"Return base URL string for the parser.");
#define PYEXPAT_XMLPARSER_GETBASE_METHODDEF \
{"GetBase", (PyCFunction)pyexpat_xmlparser_GetBase, METH_NOARGS, pyexpat_xmlparser_GetBase__doc__},
static PyObject *
pyexpat_xmlparser_GetBase_impl(xmlparseobject *self);
static PyObject *
pyexpat_xmlparser_GetBase(xmlparseobject *self, PyObject *Py_UNUSED(ignored))
{
return pyexpat_xmlparser_GetBase_impl(self);
}
PyDoc_STRVAR(pyexpat_xmlparser_GetInputContext__doc__,
"GetInputContext($self, /)\n"
"--\n"
"\n"
"Return the untranslated text of the input that caused the current event.\n"
"\n"
"If the event was generated by a large amount of text (such as a start tag\n"
"for an element with many attributes), not all of the text may be available.");
#define PYEXPAT_XMLPARSER_GETINPUTCONTEXT_METHODDEF \
{"GetInputContext", (PyCFunction)pyexpat_xmlparser_GetInputContext, METH_NOARGS, pyexpat_xmlparser_GetInputContext__doc__},
static PyObject *
pyexpat_xmlparser_GetInputContext_impl(xmlparseobject *self);
static PyObject *
pyexpat_xmlparser_GetInputContext(xmlparseobject *self, PyObject *Py_UNUSED(ignored))
{
return pyexpat_xmlparser_GetInputContext_impl(self);
}
PyDoc_STRVAR(pyexpat_xmlparser_ExternalEntityParserCreate__doc__,
"ExternalEntityParserCreate($self, context, encoding=None, /)\n"
"--\n"
"\n"
"Create a parser for parsing an external entity based on the information passed to the ExternalEntityRefHandler.");
#define PYEXPAT_XMLPARSER_EXTERNALENTITYPARSERCREATE_METHODDEF \
{"ExternalEntityParserCreate", (PyCFunction)pyexpat_xmlparser_ExternalEntityParserCreate, METH_FASTCALL, pyexpat_xmlparser_ExternalEntityParserCreate__doc__},
static PyObject *
pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self,
const char *context,
const char *encoding);
static PyObject *
pyexpat_xmlparser_ExternalEntityParserCreate(xmlparseobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
const char *context;
const char *encoding = NULL;
if (!_PyArg_ParseStack(args, nargs, "z|s:ExternalEntityParserCreate",
&context, &encoding)) {
goto exit;
}
return_value = pyexpat_xmlparser_ExternalEntityParserCreate_impl(self, context, encoding);
exit:
return return_value;
}
PyDoc_STRVAR(pyexpat_xmlparser_SetParamEntityParsing__doc__,
"SetParamEntityParsing($self, flag, /)\n"
"--\n"
"\n"
"Controls parsing of parameter entities (including the external DTD subset).\n"
"\n"
"Possible flag values are XML_PARAM_ENTITY_PARSING_NEVER,\n"
"XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE and\n"
"XML_PARAM_ENTITY_PARSING_ALWAYS. Returns true if setting the flag\n"
"was successful.");
#define PYEXPAT_XMLPARSER_SETPARAMENTITYPARSING_METHODDEF \
{"SetParamEntityParsing", (PyCFunction)pyexpat_xmlparser_SetParamEntityParsing, METH_O, pyexpat_xmlparser_SetParamEntityParsing__doc__},
static PyObject *
pyexpat_xmlparser_SetParamEntityParsing_impl(xmlparseobject *self, int flag);
static PyObject *
pyexpat_xmlparser_SetParamEntityParsing(xmlparseobject *self, PyObject *arg)
{
PyObject *return_value = NULL;
int flag;
if (!PyArg_Parse(arg, "i:SetParamEntityParsing", &flag)) {
goto exit;
}
return_value = pyexpat_xmlparser_SetParamEntityParsing_impl(self, flag);
exit:
return return_value;
}
#if (XML_COMBINED_VERSION >= 19505)
PyDoc_STRVAR(pyexpat_xmlparser_UseForeignDTD__doc__,
"UseForeignDTD($self, flag=True, /)\n"
"--\n"
"\n"
"Allows the application to provide an artificial external subset if one is not specified as part of the document instance.\n"
"\n"
"This readily allows the use of a \'default\' document type controlled by the\n"
"application, while still getting the advantage of providing document type\n"
"information to the parser. \'flag\' defaults to True if not provided.");
#define PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF \
{"UseForeignDTD", (PyCFunction)pyexpat_xmlparser_UseForeignDTD, METH_FASTCALL, pyexpat_xmlparser_UseForeignDTD__doc__},
static PyObject *
pyexpat_xmlparser_UseForeignDTD_impl(xmlparseobject *self, int flag);
static PyObject *
pyexpat_xmlparser_UseForeignDTD(xmlparseobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int flag = 1;
if (!_PyArg_ParseStack(args, nargs, "|p:UseForeignDTD",
&flag)) {
goto exit;
}
return_value = pyexpat_xmlparser_UseForeignDTD_impl(self, flag);
exit:
return return_value;
}
#endif /* (XML_COMBINED_VERSION >= 19505) */
PyDoc_STRVAR(pyexpat_xmlparser___dir____doc__,
"__dir__($self, /)\n"
"--\n"
"\n");
#define PYEXPAT_XMLPARSER___DIR___METHODDEF \
{"__dir__", (PyCFunction)pyexpat_xmlparser___dir__, METH_NOARGS, pyexpat_xmlparser___dir____doc__},
static PyObject *
pyexpat_xmlparser___dir___impl(xmlparseobject *self);
static PyObject *
pyexpat_xmlparser___dir__(xmlparseobject *self, PyObject *Py_UNUSED(ignored))
{
return pyexpat_xmlparser___dir___impl(self);
}
PyDoc_STRVAR(pyexpat_ParserCreate__doc__,
"ParserCreate($module, /, encoding=None, namespace_separator=None,\n"
" intern=None)\n"
"--\n"
"\n"
"Return a new XML parser object.");
#define PYEXPAT_PARSERCREATE_METHODDEF \
{"ParserCreate", (PyCFunction)pyexpat_ParserCreate, METH_FASTCALL|METH_KEYWORDS, pyexpat_ParserCreate__doc__},
static PyObject *
pyexpat_ParserCreate_impl(PyObject *module, const char *encoding,
const char *namespace_separator, PyObject *intern);
static PyObject *
pyexpat_ParserCreate(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"encoding", "namespace_separator", "intern", NULL};
static _PyArg_Parser _parser = {"|zzO:ParserCreate", _keywords, 0};
const char *encoding = NULL;
const char *namespace_separator = NULL;
PyObject *intern = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&encoding, &namespace_separator, &intern)) {
goto exit;
}
return_value = pyexpat_ParserCreate_impl(module, encoding, namespace_separator, intern);
exit:
return return_value;
}
PyDoc_STRVAR(pyexpat_ErrorString__doc__,
"ErrorString($module, code, /)\n"
"--\n"
"\n"
"Returns string error for given number.");
#define PYEXPAT_ERRORSTRING_METHODDEF \
{"ErrorString", (PyCFunction)pyexpat_ErrorString, METH_O, pyexpat_ErrorString__doc__},
static PyObject *
pyexpat_ErrorString_impl(PyObject *module, long code);
static PyObject *
pyexpat_ErrorString(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
long code;
if (!PyArg_Parse(arg, "l:ErrorString", &code)) {
goto exit;
}
return_value = pyexpat_ErrorString_impl(module, code);
exit:
return return_value;
}
#ifndef PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF
#define PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF
#endif /* !defined(PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF) */
/*[clinic end generated code: output=5d2e355f2b48e6c3 input=a9049054013a1b77]*/
| 9,168 | 294 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_dbmmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_dbm_dbm_close__doc__,
"close($self, /)\n"
"--\n"
"\n"
"Close the database.");
#define _DBM_DBM_CLOSE_METHODDEF \
{"close", (PyCFunction)_dbm_dbm_close, METH_NOARGS, _dbm_dbm_close__doc__},
static PyObject *
_dbm_dbm_close_impl(dbmobject *self);
static PyObject *
_dbm_dbm_close(dbmobject *self, PyObject *Py_UNUSED(ignored))
{
return _dbm_dbm_close_impl(self);
}
PyDoc_STRVAR(_dbm_dbm_keys__doc__,
"keys($self, /)\n"
"--\n"
"\n"
"Return a list of all keys in the database.");
#define _DBM_DBM_KEYS_METHODDEF \
{"keys", (PyCFunction)_dbm_dbm_keys, METH_NOARGS, _dbm_dbm_keys__doc__},
static PyObject *
_dbm_dbm_keys_impl(dbmobject *self);
static PyObject *
_dbm_dbm_keys(dbmobject *self, PyObject *Py_UNUSED(ignored))
{
return _dbm_dbm_keys_impl(self);
}
PyDoc_STRVAR(_dbm_dbm_get__doc__,
"get($self, key, default=None, /)\n"
"--\n"
"\n"
"Return the value for key if present, otherwise default.");
#define _DBM_DBM_GET_METHODDEF \
{"get", (PyCFunction)_dbm_dbm_get, METH_FASTCALL, _dbm_dbm_get__doc__},
static PyObject *
_dbm_dbm_get_impl(dbmobject *self, const char *key,
Py_ssize_clean_t key_length, PyObject *default_value);
static PyObject *
_dbm_dbm_get(dbmobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
const char *key;
Py_ssize_clean_t key_length;
PyObject *default_value = Py_None;
if (!_PyArg_ParseStack(args, nargs, "s#|O:get",
&key, &key_length, &default_value)) {
goto exit;
}
return_value = _dbm_dbm_get_impl(self, key, key_length, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(_dbm_dbm_setdefault__doc__,
"setdefault($self, key, default=b\'\', /)\n"
"--\n"
"\n"
"Return the value for key if present, otherwise default.\n"
"\n"
"If key is not in the database, it is inserted with default as the value.");
#define _DBM_DBM_SETDEFAULT_METHODDEF \
{"setdefault", (PyCFunction)_dbm_dbm_setdefault, METH_FASTCALL, _dbm_dbm_setdefault__doc__},
static PyObject *
_dbm_dbm_setdefault_impl(dbmobject *self, const char *key,
Py_ssize_clean_t key_length,
PyObject *default_value);
static PyObject *
_dbm_dbm_setdefault(dbmobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
const char *key;
Py_ssize_clean_t key_length;
PyObject *default_value = NULL;
if (!_PyArg_ParseStack(args, nargs, "s#|O:setdefault",
&key, &key_length, &default_value)) {
goto exit;
}
return_value = _dbm_dbm_setdefault_impl(self, key, key_length, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(dbmopen__doc__,
"open($module, filename, flags=\'r\', mode=0o666, /)\n"
"--\n"
"\n"
"Return a database object.\n"
"\n"
" filename\n"
" The filename to open.\n"
" flags\n"
" How to open the file. \"r\" for reading, \"w\" for writing, etc.\n"
" mode\n"
" If creating a new file, the mode bits for the new file\n"
" (e.g. os.O_RDWR).");
#define DBMOPEN_METHODDEF \
{"open", (PyCFunction)dbmopen, METH_FASTCALL, dbmopen__doc__},
static PyObject *
dbmopen_impl(PyObject *module, PyObject *filename, const char *flags,
int mode);
static PyObject *
dbmopen(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *filename;
const char *flags = "r";
int mode = 438;
if (!_PyArg_ParseStack(args, nargs, "U|si:open",
&filename, &flags, &mode)) {
goto exit;
}
return_value = dbmopen_impl(module, filename, flags, mode);
exit:
return return_value;
}
/*[clinic end generated code: output=fa1f129675b8e7e5 input=a9049054013a1b77]*/
| 3,819 | 146 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_cryptmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(crypt_crypt__doc__,
"crypt($module, word, salt, /)\n"
"--\n"
"\n"
"Hash a *word* with the given *salt* and return the hashed password.\n"
"\n"
"*word* will usually be a user\'s password. *salt* (either a random 2 or 16\n"
"character string, possibly prefixed with $digit$ to indicate the method)\n"
"will be used to perturb the encryption algorithm and produce distinct\n"
"results for a given *word*.");
#define CRYPT_CRYPT_METHODDEF \
{"crypt", (PyCFunction)crypt_crypt, METH_FASTCALL, crypt_crypt__doc__},
static PyObject *
crypt_crypt_impl(PyObject *module, const char *word, const char *salt);
static PyObject *
crypt_crypt(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
const char *word;
const char *salt;
if (!_PyArg_ParseStack(args, nargs, "ss:crypt",
&word, &salt)) {
goto exit;
}
return_value = crypt_crypt_impl(module, word, salt);
exit:
return return_value;
}
/*[clinic end generated code: output=f5a6aff28d43154f input=a9049054013a1b77]*/
| 1,143 | 40 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_winapi.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_winapi_Overlapped_GetOverlappedResult__doc__,
"GetOverlappedResult($self, wait, /)\n"
"--\n"
"\n");
#define _WINAPI_OVERLAPPED_GETOVERLAPPEDRESULT_METHODDEF \
{"GetOverlappedResult", (PyCFunction)_winapi_Overlapped_GetOverlappedResult, METH_O, _winapi_Overlapped_GetOverlappedResult__doc__},
static PyObject *
_winapi_Overlapped_GetOverlappedResult_impl(OverlappedObject *self, int wait);
static PyObject *
_winapi_Overlapped_GetOverlappedResult(OverlappedObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
int wait;
if (!PyArg_Parse(arg, "p:GetOverlappedResult", &wait)) {
goto exit;
}
return_value = _winapi_Overlapped_GetOverlappedResult_impl(self, wait);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_Overlapped_getbuffer__doc__,
"getbuffer($self, /)\n"
"--\n"
"\n");
#define _WINAPI_OVERLAPPED_GETBUFFER_METHODDEF \
{"getbuffer", (PyCFunction)_winapi_Overlapped_getbuffer, METH_NOARGS, _winapi_Overlapped_getbuffer__doc__},
static PyObject *
_winapi_Overlapped_getbuffer_impl(OverlappedObject *self);
static PyObject *
_winapi_Overlapped_getbuffer(OverlappedObject *self, PyObject *Py_UNUSED(ignored))
{
return _winapi_Overlapped_getbuffer_impl(self);
}
PyDoc_STRVAR(_winapi_Overlapped_cancel__doc__,
"cancel($self, /)\n"
"--\n"
"\n");
#define _WINAPI_OVERLAPPED_CANCEL_METHODDEF \
{"cancel", (PyCFunction)_winapi_Overlapped_cancel, METH_NOARGS, _winapi_Overlapped_cancel__doc__},
static PyObject *
_winapi_Overlapped_cancel_impl(OverlappedObject *self);
static PyObject *
_winapi_Overlapped_cancel(OverlappedObject *self, PyObject *Py_UNUSED(ignored))
{
return _winapi_Overlapped_cancel_impl(self);
}
PyDoc_STRVAR(_winapi_CloseHandle__doc__,
"CloseHandle($module, handle, /)\n"
"--\n"
"\n"
"Close handle.");
#define _WINAPI_CLOSEHANDLE_METHODDEF \
{"CloseHandle", (PyCFunction)_winapi_CloseHandle, METH_O, _winapi_CloseHandle__doc__},
static PyObject *
_winapi_CloseHandle_impl(PyObject *module, int64_t handle);
static PyObject *
_winapi_CloseHandle(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int64_t handle;
if (!PyArg_Parse(arg, "" F_HANDLE ":CloseHandle", &handle)) {
goto exit;
}
return_value = _winapi_CloseHandle_impl(module, handle);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_ConnectNamedPipe__doc__,
"ConnectNamedPipe($module, /, handle, overlapped=False)\n"
"--\n"
"\n");
#define _WINAPI_CONNECTNAMEDPIPE_METHODDEF \
{"ConnectNamedPipe", (PyCFunction)_winapi_ConnectNamedPipe, METH_FASTCALL, _winapi_ConnectNamedPipe__doc__},
static PyObject *
_winapi_ConnectNamedPipe_impl(PyObject *module, int64_t handle,
int use_overlapped);
static PyObject *
_winapi_ConnectNamedPipe(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"handle", "overlapped", NULL};
static _PyArg_Parser _parser = {"" F_HANDLE "|i:ConnectNamedPipe", _keywords, 0};
int64_t handle;
int use_overlapped = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&handle, &use_overlapped)) {
goto exit;
}
return_value = _winapi_ConnectNamedPipe_impl(module, handle, use_overlapped);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_CreateFile__doc__,
"CreateFile($module, file_name, desired_access, share_mode,\n"
" security_attributes, creation_disposition,\n"
" flags_and_attributes, template_file, /)\n"
"--\n"
"\n");
#define _WINAPI_CREATEFILE_METHODDEF \
{"CreateFile", (PyCFunction)_winapi_CreateFile, METH_VARARGS, _winapi_CreateFile__doc__},
static int64_t
_winapi_CreateFile_impl(PyObject *module, const char16_t *file_name,
uint32_t desired_access, uint32_t share_mode,
struct NtSecurityAttributes *security_attributes,
uint32_t creation_disposition,
uint32_t flags_and_attributes, int64_t template_file);
static PyObject *
_winapi_CreateFile(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
const char16_t *file_name;
uint32_t desired_access;
uint32_t share_mode;
struct NtSecurityAttributes *security_attributes;
uint32_t creation_disposition;
uint32_t flags_and_attributes;
int64_t template_file;
int64_t _return_value;
if (!PyArg_ParseTuple(args, "skk" F_POINTER "kk" F_HANDLE ":CreateFile",
&file_name, &desired_access, &share_mode, &security_attributes, &creation_disposition, &flags_and_attributes, &template_file)) {
goto exit;
}
_return_value = _winapi_CreateFile_impl(module, file_name, desired_access, share_mode, security_attributes, creation_disposition, flags_and_attributes, template_file);
if ((_return_value == kNtInvalidHandleValue) && PyErr_Occurred()) {
goto exit;
}
if (!_return_value) {
Py_RETURN_NONE;
}
return_value = HANDLE_TO_PYNUM(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_CreateJunction__doc__,
"CreateJunction($module, src_path, dst_path, /)\n"
"--\n"
"\n");
#define _WINAPI_CREATEJUNCTION_METHODDEF \
{"CreateJunction", (PyCFunction)_winapi_CreateJunction, METH_VARARGS, _winapi_CreateJunction__doc__},
static PyObject *
_winapi_CreateJunction_impl(PyObject *module, char16_t *src_path,
char16_t *dst_path);
static PyObject *
_winapi_CreateJunction(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
char16_t *src_path;
char16_t *dst_path;
if (!PyArg_ParseTuple(args, "uu:CreateJunction",
&src_path, &dst_path)) {
goto exit;
}
return_value = _winapi_CreateJunction_impl(module, src_path, dst_path);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_CreateNamedPipe__doc__,
"CreateNamedPipe($module, name, open_mode, pipe_mode, max_instances,\n"
" out_buffer_size, in_buffer_size, default_timeout,\n"
" security_attributes, /)\n"
"--\n"
"\n");
#define _WINAPI_CREATENAMEDPIPE_METHODDEF \
{"CreateNamedPipe", (PyCFunction)_winapi_CreateNamedPipe, METH_VARARGS, _winapi_CreateNamedPipe__doc__},
static int64_t
_winapi_CreateNamedPipe_impl(PyObject *module, const char16_t *name, uint32_t open_mode,
uint32_t pipe_mode, uint32_t max_instances,
uint32_t out_buffer_size, uint32_t in_buffer_size,
uint32_t default_timeout,
struct NtSecurityAttributes *security_attributes);
static PyObject *
_winapi_CreateNamedPipe(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
const char16_t *name;
uint32_t open_mode;
uint32_t pipe_mode;
uint32_t max_instances;
uint32_t out_buffer_size;
uint32_t in_buffer_size;
uint32_t default_timeout;
struct NtSecurityAttributes *security_attributes;
int64_t _return_value;
if (!PyArg_ParseTuple(args, "skkkkkk" F_POINTER ":CreateNamedPipe",
&name, &open_mode, &pipe_mode, &max_instances, &out_buffer_size, &in_buffer_size, &default_timeout, &security_attributes)) {
goto exit;
}
_return_value = _winapi_CreateNamedPipe_impl(module, name, open_mode, pipe_mode, max_instances, out_buffer_size, in_buffer_size, default_timeout, security_attributes);
if ((_return_value == kNtInvalidHandleValue) && PyErr_Occurred()) {
goto exit;
}
if (!_return_value) {
Py_RETURN_NONE;
}
return_value = HANDLE_TO_PYNUM(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_CreatePipe__doc__,
"CreatePipe($module, pipe_attrs, size, /)\n"
"--\n"
"\n"
"Create an anonymous pipe.\n"
"\n"
" pipe_attrs\n"
" Ignored internally, can be None.\n"
"\n"
"Returns a 2-tuple of handles, to the read and write ends of the pipe.");
#define _WINAPI_CREATEPIPE_METHODDEF \
{"CreatePipe", (PyCFunction)_winapi_CreatePipe, METH_VARARGS, _winapi_CreatePipe__doc__},
static PyObject *
_winapi_CreatePipe_impl(PyObject *module, PyObject *pipe_attrs, uint32_t size);
static PyObject *
_winapi_CreatePipe(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
PyObject *pipe_attrs;
uint32_t size;
if (!PyArg_ParseTuple(args, "Ok:CreatePipe",
&pipe_attrs, &size)) {
goto exit;
}
return_value = _winapi_CreatePipe_impl(module, pipe_attrs, size);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_CreateProcess__doc__,
"CreateProcess($module, application_name, command_line, proc_attrs,\n"
" thread_attrs, inherit_handles, creation_flags,\n"
" env_mapping, current_directory, startup_info, /)\n"
"--\n"
"\n"
"Create a new process and its primary thread.\n"
"\n"
" proc_attrs\n"
" Ignored internally, can be None.\n"
" thread_attrs\n"
" Ignored internally, can be None.\n"
"\n"
"The return value is a tuple of the process handle, thread handle,\n"
"process ID, and thread ID.");
#define _WINAPI_CREATEPROCESS_METHODDEF \
{"CreateProcess", (PyCFunction)_winapi_CreateProcess, METH_VARARGS, _winapi_CreateProcess__doc__},
static PyObject *
_winapi_CreateProcess_impl(PyObject *module, Py_UNICODE *application_name,
Py_UNICODE *command_line, PyObject *proc_attrs,
PyObject *thread_attrs, bool32 inherit_handles,
uint32_t creation_flags, PyObject *env_mapping,
Py_UNICODE *current_directory,
PyObject *startup_info);
static PyObject *
_winapi_CreateProcess(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
Py_UNICODE *application_name;
Py_UNICODE *command_line;
PyObject *proc_attrs;
PyObject *thread_attrs;
bool32 inherit_handles;
uint32_t creation_flags;
PyObject *env_mapping;
Py_UNICODE *current_directory;
PyObject *startup_info;
if (!PyArg_ParseTuple(args, "ZZOOikOZO:CreateProcess",
&application_name, &command_line, &proc_attrs, &thread_attrs, &inherit_handles, &creation_flags, &env_mapping, ¤t_directory, &startup_info)) {
goto exit;
}
return_value = _winapi_CreateProcess_impl(module, application_name, command_line, proc_attrs, thread_attrs, inherit_handles, creation_flags, env_mapping, current_directory, startup_info);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_DuplicateHandle__doc__,
"DuplicateHandle($module, source_process_handle, source_handle,\n"
" target_process_handle, desired_access, inherit_handle,\n"
" options=0, /)\n"
"--\n"
"\n"
"Return a duplicate handle object.\n"
"\n"
"The duplicate handle refers to the same object as the original\n"
"handle. Therefore, any changes to the object are reflected\n"
"through both handles.");
#define _WINAPI_DUPLICATEHANDLE_METHODDEF \
{"DuplicateHandle", (PyCFunction)_winapi_DuplicateHandle, METH_VARARGS, _winapi_DuplicateHandle__doc__},
static int64_t
_winapi_DuplicateHandle_impl(PyObject *module, int64_t source_process_handle,
int64_t source_handle,
int64_t target_process_handle,
uint32_t desired_access, bool32 inherit_handle,
uint32_t options);
static PyObject *
_winapi_DuplicateHandle(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
int64_t source_process_handle;
int64_t source_handle;
int64_t target_process_handle;
uint32_t desired_access;
bool32 inherit_handle;
uint32_t options = 0;
int64_t _return_value;
if (!PyArg_ParseTuple(args, "" F_HANDLE "" F_HANDLE "" F_HANDLE "ki|k:DuplicateHandle",
&source_process_handle, &source_handle, &target_process_handle, &desired_access, &inherit_handle, &options)) {
goto exit;
}
_return_value = _winapi_DuplicateHandle_impl(module, source_process_handle, source_handle, target_process_handle, desired_access, inherit_handle, options);
if ((_return_value == kNtInvalidHandleValue) && PyErr_Occurred()) {
goto exit;
}
if (!_return_value) {
Py_RETURN_NONE;
}
return_value = HANDLE_TO_PYNUM(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_ExitProcess__doc__,
"ExitProcess($module, ExitCode, /)\n"
"--\n"
"\n");
#define _WINAPI_EXITPROCESS_METHODDEF \
{"ExitProcess", (PyCFunction)_winapi_ExitProcess, METH_O, _winapi_ExitProcess__doc__},
static PyObject *
_winapi_ExitProcess_impl(PyObject *module, unsigned ExitCode);
static PyObject *
_winapi_ExitProcess(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
unsigned ExitCode;
if (!PyArg_Parse(arg, "I:ExitProcess", &ExitCode)) {
goto exit;
}
return_value = _winapi_ExitProcess_impl(module, ExitCode);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_GetCurrentProcess__doc__,
"GetCurrentProcess($module, /)\n"
"--\n"
"\n"
"Return a handle object for the current process.");
#define _WINAPI_GETCURRENTPROCESS_METHODDEF \
{"GetCurrentProcess", (PyCFunction)_winapi_GetCurrentProcess, METH_NOARGS, _winapi_GetCurrentProcess__doc__},
static int64_t
_winapi_GetCurrentProcess_impl(PyObject *module);
static PyObject *
_winapi_GetCurrentProcess(PyObject *module, PyObject *Py_UNUSED(ignored))
{
PyObject *return_value = NULL;
int64_t _return_value;
_return_value = _winapi_GetCurrentProcess_impl(module);
if ((_return_value == kNtInvalidHandleValue) && PyErr_Occurred()) {
goto exit;
}
if (!_return_value) {
Py_RETURN_NONE;
}
return_value = HANDLE_TO_PYNUM(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_GetExitCodeProcess__doc__,
"GetExitCodeProcess($module, process, /)\n"
"--\n"
"\n"
"Return the termination status of the specified process.");
#define _WINAPI_GETEXITCODEPROCESS_METHODDEF \
{"GetExitCodeProcess", (PyCFunction)_winapi_GetExitCodeProcess, METH_O, _winapi_GetExitCodeProcess__doc__},
static uint32_t
_winapi_GetExitCodeProcess_impl(PyObject *module, int64_t process);
static PyObject *
_winapi_GetExitCodeProcess(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int64_t process;
uint32_t _return_value;
if (!PyArg_Parse(arg, "" F_HANDLE ":GetExitCodeProcess", &process)) {
goto exit;
}
_return_value = _winapi_GetExitCodeProcess_impl(module, process);
if ((_return_value == UINT_MAX) && PyErr_Occurred()) {
goto exit;
}
return_value = Py_BuildValue("k", _return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_GetLastError__doc__,
"GetLastError($module, /)\n"
"--\n"
"\n");
#define _WINAPI_GETLASTERROR_METHODDEF \
{"GetLastError", (PyCFunction)_winapi_GetLastError, METH_NOARGS, _winapi_GetLastError__doc__},
static uint32_t
_winapi_GetLastError_impl(PyObject *module);
static PyObject *
_winapi_GetLastError(PyObject *module, PyObject *Py_UNUSED(ignored))
{
PyObject *return_value = NULL;
uint32_t _return_value;
_return_value = _winapi_GetLastError_impl(module);
if ((_return_value == UINT_MAX) && PyErr_Occurred()) {
goto exit;
}
return_value = Py_BuildValue("k", _return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_GetModuleFileName__doc__,
"GetModuleFileName($module, module_handle, /)\n"
"--\n"
"\n"
"Return the fully-qualified path for the file that contains module.\n"
"\n"
"The module must have been loaded by the current process.\n"
"\n"
"The module parameter should be a handle to the loaded module\n"
"whose path is being requested. If this parameter is 0,\n"
"GetModuleFileName retrieves the path of the executable file\n"
"of the current process.");
#define _WINAPI_GETMODULEFILENAME_METHODDEF \
{"GetModuleFileName", (PyCFunction)_winapi_GetModuleFileName, METH_O, _winapi_GetModuleFileName__doc__},
static PyObject *
_winapi_GetModuleFileName_impl(PyObject *module, int64_t module_handle);
static PyObject *
_winapi_GetModuleFileName(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int64_t module_handle;
if (!PyArg_Parse(arg, "" F_HANDLE ":GetModuleFileName", &module_handle)) {
goto exit;
}
return_value = _winapi_GetModuleFileName_impl(module, module_handle);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_GetStdHandle__doc__,
"GetStdHandle($module, std_handle, /)\n"
"--\n"
"\n"
"Return a handle to the specified standard device.\n"
"\n"
" std_handle\n"
" One of STD_INPUT_int64_t, STD_OUTPUT_int64_t, or STD_ERROR_int64_t.\n"
"\n"
"The integer associated with the handle object is returned.");
#define _WINAPI_GETSTDHANDLE_METHODDEF \
{"GetStdHandle", (PyCFunction)_winapi_GetStdHandle, METH_O, _winapi_GetStdHandle__doc__},
static int64_t
_winapi_GetStdHandle_impl(PyObject *module, uint32_t std_handle);
static PyObject *
_winapi_GetStdHandle(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
uint32_t std_handle;
int64_t _return_value;
if (!PyArg_Parse(arg, "k:GetStdHandle", &std_handle)) {
goto exit;
}
_return_value = _winapi_GetStdHandle_impl(module, std_handle);
if ((_return_value == kNtInvalidHandleValue) && PyErr_Occurred()) {
goto exit;
}
if (!_return_value) {
Py_RETURN_NONE;
}
return_value = HANDLE_TO_PYNUM(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_GetVersion__doc__,
"GetVersion($module, /)\n"
"--\n"
"\n"
"Return the version number of the current operating system.");
#define _WINAPI_GETVERSION_METHODDEF \
{"GetVersion", (PyCFunction)_winapi_GetVersion, METH_NOARGS, _winapi_GetVersion__doc__},
static long
_winapi_GetVersion_impl(PyObject *module);
static PyObject *
_winapi_GetVersion(PyObject *module, PyObject *Py_UNUSED(ignored))
{
PyObject *return_value = NULL;
long _return_value;
_return_value = _winapi_GetVersion_impl(module);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_OpenProcess__doc__,
"OpenProcess($module, desired_access, inherit_handle, process_id, /)\n"
"--\n"
"\n");
#define _WINAPI_OPENPROCESS_METHODDEF \
{"OpenProcess", (PyCFunction)_winapi_OpenProcess, METH_VARARGS, _winapi_OpenProcess__doc__},
static int64_t
_winapi_OpenProcess_impl(PyObject *module, uint32_t desired_access,
bool32 inherit_handle, uint32_t process_id);
static PyObject *
_winapi_OpenProcess(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
uint32_t desired_access;
bool32 inherit_handle;
uint32_t process_id;
int64_t _return_value;
if (!PyArg_ParseTuple(args, "kik:OpenProcess",
&desired_access, &inherit_handle, &process_id)) {
goto exit;
}
_return_value = _winapi_OpenProcess_impl(module, desired_access, inherit_handle, process_id);
if ((_return_value == kNtInvalidHandleValue) && PyErr_Occurred()) {
goto exit;
}
if (!_return_value) {
Py_RETURN_NONE;
}
return_value = HANDLE_TO_PYNUM(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_PeekNamedPipe__doc__,
"PeekNamedPipe($module, handle, size=0, /)\n"
"--\n"
"\n");
#define _WINAPI_PEEKNAMEDPIPE_METHODDEF \
{"PeekNamedPipe", (PyCFunction)_winapi_PeekNamedPipe, METH_VARARGS, _winapi_PeekNamedPipe__doc__},
static PyObject *
_winapi_PeekNamedPipe_impl(PyObject *module, int64_t handle, int size);
static PyObject *
_winapi_PeekNamedPipe(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
int64_t handle;
int size = 0;
if (!PyArg_ParseTuple(args, "" F_HANDLE "|i:PeekNamedPipe",
&handle, &size)) {
goto exit;
}
return_value = _winapi_PeekNamedPipe_impl(module, handle, size);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_ReadFile__doc__,
"ReadFile($module, /, handle, size, overlapped=False)\n"
"--\n"
"\n");
#define _WINAPI_READFILE_METHODDEF \
{"ReadFile", (PyCFunction)_winapi_ReadFile, METH_FASTCALL, _winapi_ReadFile__doc__},
static PyObject *
_winapi_ReadFile_impl(PyObject *module, int64_t handle, uint32_t size,
int use_overlapped);
static PyObject *
_winapi_ReadFile(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"handle", "size", "overlapped", NULL};
static _PyArg_Parser _parser = {"" F_HANDLE "k|i:ReadFile", _keywords, 0};
int64_t handle;
uint32_t size;
int use_overlapped = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&handle, &size, &use_overlapped)) {
goto exit;
}
return_value = _winapi_ReadFile_impl(module, handle, size, use_overlapped);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_SetNamedPipeHandleState__doc__,
"SetNamedPipeHandleState($module, named_pipe, mode,\n"
" max_collection_count, collect_data_timeout, /)\n"
"--\n"
"\n");
#define _WINAPI_SETNAMEDPIPEHANDLESTATE_METHODDEF \
{"SetNamedPipeHandleState", (PyCFunction)_winapi_SetNamedPipeHandleState, METH_VARARGS, _winapi_SetNamedPipeHandleState__doc__},
static PyObject *
_winapi_SetNamedPipeHandleState_impl(PyObject *module, int64_t named_pipe,
PyObject *mode,
PyObject *max_collection_count,
PyObject *collect_data_timeout);
static PyObject *
_winapi_SetNamedPipeHandleState(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
int64_t named_pipe;
PyObject *mode;
PyObject *max_collection_count;
PyObject *collect_data_timeout;
if (!PyArg_ParseTuple(args, "" F_HANDLE "OOO:SetNamedPipeHandleState",
&named_pipe, &mode, &max_collection_count, &collect_data_timeout)) {
goto exit;
}
return_value = _winapi_SetNamedPipeHandleState_impl(module, named_pipe, mode, max_collection_count, collect_data_timeout);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_TerminateProcess__doc__,
"TerminateProcess($module, handle, exit_code, /)\n"
"--\n"
"\n"
"Terminate the specified process and all of its threads.");
#define _WINAPI_TERMINATEPROCESS_METHODDEF \
{"TerminateProcess", (PyCFunction)_winapi_TerminateProcess, METH_VARARGS, _winapi_TerminateProcess__doc__},
static PyObject *
_winapi_TerminateProcess_impl(PyObject *module, int64_t handle,
unsigned exit_code);
static PyObject *
_winapi_TerminateProcess(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
int64_t handle;
unsigned exit_code;
if (!PyArg_ParseTuple(args, "" F_HANDLE "I:TerminateProcess",
&handle, &exit_code)) {
goto exit;
}
return_value = _winapi_TerminateProcess_impl(module, handle, exit_code);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_WaitNamedPipe__doc__,
"WaitNamedPipe($module, name, timeout, /)\n"
"--\n"
"\n");
#define _WINAPI_WAITNAMEDPIPE_METHODDEF \
{"WaitNamedPipe", (PyCFunction)_winapi_WaitNamedPipe, METH_VARARGS, _winapi_WaitNamedPipe__doc__},
static PyObject *
_winapi_WaitNamedPipe_impl(PyObject *module, const char *name, uint32_t timeout);
static PyObject *
_winapi_WaitNamedPipe(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
const char *name;
uint32_t timeout;
if (!PyArg_ParseTuple(args, "sk:WaitNamedPipe",
&name, &timeout)) {
goto exit;
}
return_value = _winapi_WaitNamedPipe_impl(module, name, timeout);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_WaitForMultipleObjects__doc__,
"WaitForMultipleObjects($module, handle_seq, wait_flag,\n"
" milliseconds=_winapi.INFINITE, /)\n"
"--\n"
"\n");
#define _WINAPI_WAITFORMULTIPLEOBJECTS_METHODDEF \
{"WaitForMultipleObjects", (PyCFunction)_winapi_WaitForMultipleObjects, METH_VARARGS, _winapi_WaitForMultipleObjects__doc__},
static PyObject *
_winapi_WaitForMultipleObjects_impl(PyObject *module, PyObject *handle_seq,
bool32 wait_flag, uint32_t milliseconds);
static PyObject *
_winapi_WaitForMultipleObjects(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
PyObject *handle_seq;
bool32 wait_flag;
uint32_t milliseconds = -1;
if (!PyArg_ParseTuple(args, "Oi|k:WaitForMultipleObjects",
&handle_seq, &wait_flag, &milliseconds)) {
goto exit;
}
return_value = _winapi_WaitForMultipleObjects_impl(module, handle_seq, wait_flag, milliseconds);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_WaitForSingleObject__doc__,
"WaitForSingleObject($module, handle, milliseconds, /)\n"
"--\n"
"\n"
"Wait for a single object.\n"
"\n"
"Wait until the specified object is in the signaled state or\n"
"the time-out interval elapses. The timeout value is specified\n"
"in milliseconds.");
#define _WINAPI_WAITFORSINGLEOBJECT_METHODDEF \
{"WaitForSingleObject", (PyCFunction)_winapi_WaitForSingleObject, METH_VARARGS, _winapi_WaitForSingleObject__doc__},
static long
_winapi_WaitForSingleObject_impl(PyObject *module, int64_t handle,
uint32_t milliseconds);
static PyObject *
_winapi_WaitForSingleObject(PyObject *module, PyObject *args)
{
PyObject *return_value = NULL;
int64_t handle;
uint32_t milliseconds;
long _return_value;
if (!PyArg_ParseTuple(args, "" F_HANDLE "k:WaitForSingleObject",
&handle, &milliseconds)) {
goto exit;
}
_return_value = _winapi_WaitForSingleObject_impl(module, handle, milliseconds);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_winapi_WriteFile__doc__,
"WriteFile($module, /, handle, buffer, overlapped=False)\n"
"--\n"
"\n");
#define _WINAPI_WRITEFILE_METHODDEF \
{"WriteFile", (PyCFunction)_winapi_WriteFile, METH_FASTCALL, _winapi_WriteFile__doc__},
static PyObject *
_winapi_WriteFile_impl(PyObject *module, int64_t handle, PyObject *buffer,
int use_overlapped);
static PyObject *
_winapi_WriteFile(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"handle", "buffer", "overlapped", NULL};
static _PyArg_Parser _parser = {"" F_HANDLE "O|i:WriteFile", _keywords, 0};
int64_t handle;
PyObject *buffer;
int use_overlapped = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&handle, &buffer, &use_overlapped)) {
goto exit;
}
return_value = _winapi_WriteFile_impl(module, handle, buffer, use_overlapped);
exit:
return return_value;
}
/*[clinic end generated code: output=6c5cf8865d381c70 input=a9049054013a1b77]*/
| 27,395 | 892 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_pickle.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_pickle_Pickler_clear_memo__doc__,
"clear_memo($self, /)\n"
"--\n"
"\n"
"Clears the pickler\'s \"memo\".\n"
"\n"
"The memo is the data structure that remembers which objects the\n"
"pickler has already seen, so that shared or recursive objects are\n"
"pickled by reference and not by value. This method is useful when\n"
"re-using picklers.");
#define _PICKLE_PICKLER_CLEAR_MEMO_METHODDEF \
{"clear_memo", (PyCFunction)_pickle_Pickler_clear_memo, METH_NOARGS, _pickle_Pickler_clear_memo__doc__},
static PyObject *
_pickle_Pickler_clear_memo_impl(PicklerObject *self);
static PyObject *
_pickle_Pickler_clear_memo(PicklerObject *self, PyObject *Py_UNUSED(ignored))
{
return _pickle_Pickler_clear_memo_impl(self);
}
PyDoc_STRVAR(_pickle_Pickler_dump__doc__,
"dump($self, obj, /)\n"
"--\n"
"\n"
"Write a pickled representation of the given object to the open file.");
#define _PICKLE_PICKLER_DUMP_METHODDEF \
{"dump", (PyCFunction)_pickle_Pickler_dump, METH_O, _pickle_Pickler_dump__doc__},
PyDoc_STRVAR(_pickle_Pickler___sizeof____doc__,
"__sizeof__($self, /)\n"
"--\n"
"\n"
"Returns size in memory, in bytes.");
#define _PICKLE_PICKLER___SIZEOF___METHODDEF \
{"__sizeof__", (PyCFunction)_pickle_Pickler___sizeof__, METH_NOARGS, _pickle_Pickler___sizeof____doc__},
static Py_ssize_t
_pickle_Pickler___sizeof___impl(PicklerObject *self);
static PyObject *
_pickle_Pickler___sizeof__(PicklerObject *self, PyObject *Py_UNUSED(ignored))
{
PyObject *return_value = NULL;
Py_ssize_t _return_value;
_return_value = _pickle_Pickler___sizeof___impl(self);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_pickle_Pickler___init____doc__,
"Pickler(file, protocol=None, fix_imports=True)\n"
"--\n"
"\n"
"This takes a binary file for writing a pickle data stream.\n"
"\n"
"The optional *protocol* argument tells the pickler to use the given\n"
"protocol; supported protocols are 0, 1, 2, 3 and 4. The default\n"
"protocol is 3; a backward-incompatible protocol designed for Python 3.\n"
"\n"
"Specifying a negative protocol version selects the highest protocol\n"
"version supported. The higher the protocol used, the more recent the\n"
"version of Python needed to read the pickle produced.\n"
"\n"
"The *file* argument must have a write() method that accepts a single\n"
"bytes argument. It can thus be a file object opened for binary\n"
"writing, an io.BytesIO instance, or any other custom object that meets\n"
"this interface.\n"
"\n"
"If *fix_imports* is True and protocol is less than 3, pickle will try\n"
"to map the new Python 3 names to the old module names used in Python\n"
"2, so that the pickle data stream is readable with Python 2.");
static int
_pickle_Pickler___init___impl(PicklerObject *self, PyObject *file,
PyObject *protocol, int fix_imports);
static int
_pickle_Pickler___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"file", "protocol", "fix_imports", NULL};
static _PyArg_Parser _parser = {"O|Op:Pickler", _keywords, 0};
PyObject *file;
PyObject *protocol = NULL;
int fix_imports = 1;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&file, &protocol, &fix_imports)) {
goto exit;
}
return_value = _pickle_Pickler___init___impl((PicklerObject *)self, file, protocol, fix_imports);
exit:
return return_value;
}
PyDoc_STRVAR(_pickle_PicklerMemoProxy_clear__doc__,
"clear($self, /)\n"
"--\n"
"\n"
"Remove all items from memo.");
#define _PICKLE_PICKLERMEMOPROXY_CLEAR_METHODDEF \
{"clear", (PyCFunction)_pickle_PicklerMemoProxy_clear, METH_NOARGS, _pickle_PicklerMemoProxy_clear__doc__},
static PyObject *
_pickle_PicklerMemoProxy_clear_impl(PicklerMemoProxyObject *self);
static PyObject *
_pickle_PicklerMemoProxy_clear(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))
{
return _pickle_PicklerMemoProxy_clear_impl(self);
}
PyDoc_STRVAR(_pickle_PicklerMemoProxy_copy__doc__,
"copy($self, /)\n"
"--\n"
"\n"
"Copy the memo to a new object.");
#define _PICKLE_PICKLERMEMOPROXY_COPY_METHODDEF \
{"copy", (PyCFunction)_pickle_PicklerMemoProxy_copy, METH_NOARGS, _pickle_PicklerMemoProxy_copy__doc__},
static PyObject *
_pickle_PicklerMemoProxy_copy_impl(PicklerMemoProxyObject *self);
static PyObject *
_pickle_PicklerMemoProxy_copy(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))
{
return _pickle_PicklerMemoProxy_copy_impl(self);
}
PyDoc_STRVAR(_pickle_PicklerMemoProxy___reduce____doc__,
"__reduce__($self, /)\n"
"--\n"
"\n"
"Implement pickle support.");
#define _PICKLE_PICKLERMEMOPROXY___REDUCE___METHODDEF \
{"__reduce__", (PyCFunction)_pickle_PicklerMemoProxy___reduce__, METH_NOARGS, _pickle_PicklerMemoProxy___reduce____doc__},
static PyObject *
_pickle_PicklerMemoProxy___reduce___impl(PicklerMemoProxyObject *self);
static PyObject *
_pickle_PicklerMemoProxy___reduce__(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))
{
return _pickle_PicklerMemoProxy___reduce___impl(self);
}
PyDoc_STRVAR(_pickle_Unpickler_load__doc__,
"load($self, /)\n"
"--\n"
"\n"
"Load a pickle.\n"
"\n"
"Read a pickled object representation from the open file object given\n"
"in the constructor, and return the reconstituted object hierarchy\n"
"specified therein.");
#define _PICKLE_UNPICKLER_LOAD_METHODDEF \
{"load", (PyCFunction)_pickle_Unpickler_load, METH_NOARGS, _pickle_Unpickler_load__doc__},
static PyObject *
_pickle_Unpickler_load_impl(UnpicklerObject *self);
static PyObject *
_pickle_Unpickler_load(UnpicklerObject *self, PyObject *Py_UNUSED(ignored))
{
return _pickle_Unpickler_load_impl(self);
}
PyDoc_STRVAR(_pickle_Unpickler_find_class__doc__,
"find_class($self, module_name, global_name, /)\n"
"--\n"
"\n"
"Return an object from a specified module.\n"
"\n"
"If necessary, the module will be imported. Subclasses may override\n"
"this method (e.g. to restrict unpickling of arbitrary classes and\n"
"functions).\n"
"\n"
"This method is called whenever a class or a function object is\n"
"needed. Both arguments passed are str objects.");
#define _PICKLE_UNPICKLER_FIND_CLASS_METHODDEF \
{"find_class", (PyCFunction)_pickle_Unpickler_find_class, METH_FASTCALL, _pickle_Unpickler_find_class__doc__},
static PyObject *
_pickle_Unpickler_find_class_impl(UnpicklerObject *self,
PyObject *module_name,
PyObject *global_name);
static PyObject *
_pickle_Unpickler_find_class(UnpicklerObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *module_name;
PyObject *global_name;
if (!_PyArg_UnpackStack(args, nargs, "find_class",
2, 2,
&module_name, &global_name)) {
goto exit;
}
return_value = _pickle_Unpickler_find_class_impl(self, module_name, global_name);
exit:
return return_value;
}
PyDoc_STRVAR(_pickle_Unpickler___sizeof____doc__,
"__sizeof__($self, /)\n"
"--\n"
"\n"
"Returns size in memory, in bytes.");
#define _PICKLE_UNPICKLER___SIZEOF___METHODDEF \
{"__sizeof__", (PyCFunction)_pickle_Unpickler___sizeof__, METH_NOARGS, _pickle_Unpickler___sizeof____doc__},
static Py_ssize_t
_pickle_Unpickler___sizeof___impl(UnpicklerObject *self);
static PyObject *
_pickle_Unpickler___sizeof__(UnpicklerObject *self, PyObject *Py_UNUSED(ignored))
{
PyObject *return_value = NULL;
Py_ssize_t _return_value;
_return_value = _pickle_Unpickler___sizeof___impl(self);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_pickle_Unpickler___init____doc__,
"Unpickler(file, *, fix_imports=True, encoding=\'ASCII\', errors=\'strict\')\n"
"--\n"
"\n"
"This takes a binary file for reading a pickle data stream.\n"
"\n"
"The protocol version of the pickle is detected automatically, so no\n"
"protocol argument is needed. Bytes past the pickled object\'s\n"
"representation are ignored.\n"
"\n"
"The argument *file* must have two methods, a read() method that takes\n"
"an integer argument, and a readline() method that requires no\n"
"arguments. Both methods should return bytes. Thus *file* can be a\n"
"binary file object opened for reading, an io.BytesIO object, or any\n"
"other custom object that meets this interface.\n"
"\n"
"Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n"
"which are used to control compatibility support for pickle stream\n"
"generated by Python 2. If *fix_imports* is True, pickle will try to\n"
"map the old Python 2 names to the new names used in Python 3. The\n"
"*encoding* and *errors* tell pickle how to decode 8-bit string\n"
"instances pickled by Python 2; these default to \'ASCII\' and \'strict\',\n"
"respectively. The *encoding* can be \'bytes\' to read these 8-bit\n"
"string instances as bytes objects.");
static int
_pickle_Unpickler___init___impl(UnpicklerObject *self, PyObject *file,
int fix_imports, const char *encoding,
const char *errors);
static int
_pickle_Unpickler___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"file", "fix_imports", "encoding", "errors", NULL};
static _PyArg_Parser _parser = {"O|$pss:Unpickler", _keywords, 0};
PyObject *file;
int fix_imports = 1;
const char *encoding = "ASCII";
const char *errors = "strict";
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&file, &fix_imports, &encoding, &errors)) {
goto exit;
}
return_value = _pickle_Unpickler___init___impl((UnpicklerObject *)self, file, fix_imports, encoding, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_pickle_UnpicklerMemoProxy_clear__doc__,
"clear($self, /)\n"
"--\n"
"\n"
"Remove all items from memo.");
#define _PICKLE_UNPICKLERMEMOPROXY_CLEAR_METHODDEF \
{"clear", (PyCFunction)_pickle_UnpicklerMemoProxy_clear, METH_NOARGS, _pickle_UnpicklerMemoProxy_clear__doc__},
static PyObject *
_pickle_UnpicklerMemoProxy_clear_impl(UnpicklerMemoProxyObject *self);
static PyObject *
_pickle_UnpicklerMemoProxy_clear(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))
{
return _pickle_UnpicklerMemoProxy_clear_impl(self);
}
PyDoc_STRVAR(_pickle_UnpicklerMemoProxy_copy__doc__,
"copy($self, /)\n"
"--\n"
"\n"
"Copy the memo to a new object.");
#define _PICKLE_UNPICKLERMEMOPROXY_COPY_METHODDEF \
{"copy", (PyCFunction)_pickle_UnpicklerMemoProxy_copy, METH_NOARGS, _pickle_UnpicklerMemoProxy_copy__doc__},
static PyObject *
_pickle_UnpicklerMemoProxy_copy_impl(UnpicklerMemoProxyObject *self);
static PyObject *
_pickle_UnpicklerMemoProxy_copy(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))
{
return _pickle_UnpicklerMemoProxy_copy_impl(self);
}
PyDoc_STRVAR(_pickle_UnpicklerMemoProxy___reduce____doc__,
"__reduce__($self, /)\n"
"--\n"
"\n"
"Implement pickling support.");
#define _PICKLE_UNPICKLERMEMOPROXY___REDUCE___METHODDEF \
{"__reduce__", (PyCFunction)_pickle_UnpicklerMemoProxy___reduce__, METH_NOARGS, _pickle_UnpicklerMemoProxy___reduce____doc__},
static PyObject *
_pickle_UnpicklerMemoProxy___reduce___impl(UnpicklerMemoProxyObject *self);
static PyObject *
_pickle_UnpicklerMemoProxy___reduce__(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))
{
return _pickle_UnpicklerMemoProxy___reduce___impl(self);
}
PyDoc_STRVAR(_pickle_dump__doc__,
"dump($module, /, obj, file, protocol=None, *, fix_imports=True)\n"
"--\n"
"\n"
"Write a pickled representation of obj to the open file object file.\n"
"\n"
"This is equivalent to ``Pickler(file, protocol).dump(obj)``, but may\n"
"be more efficient.\n"
"\n"
"The optional *protocol* argument tells the pickler to use the given\n"
"protocol supported protocols are 0, 1, 2, 3 and 4. The default\n"
"protocol is 3; a backward-incompatible protocol designed for Python 3.\n"
"\n"
"Specifying a negative protocol version selects the highest protocol\n"
"version supported. The higher the protocol used, the more recent the\n"
"version of Python needed to read the pickle produced.\n"
"\n"
"The *file* argument must have a write() method that accepts a single\n"
"bytes argument. It can thus be a file object opened for binary\n"
"writing, an io.BytesIO instance, or any other custom object that meets\n"
"this interface.\n"
"\n"
"If *fix_imports* is True and protocol is less than 3, pickle will try\n"
"to map the new Python 3 names to the old module names used in Python\n"
"2, so that the pickle data stream is readable with Python 2.");
#define _PICKLE_DUMP_METHODDEF \
{"dump", (PyCFunction)_pickle_dump, METH_FASTCALL|METH_KEYWORDS, _pickle_dump__doc__},
static PyObject *
_pickle_dump_impl(PyObject *module, PyObject *obj, PyObject *file,
PyObject *protocol, int fix_imports);
static PyObject *
_pickle_dump(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"obj", "file", "protocol", "fix_imports", NULL};
static _PyArg_Parser _parser = {"OO|O$p:dump", _keywords, 0};
PyObject *obj;
PyObject *file;
PyObject *protocol = NULL;
int fix_imports = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&obj, &file, &protocol, &fix_imports)) {
goto exit;
}
return_value = _pickle_dump_impl(module, obj, file, protocol, fix_imports);
exit:
return return_value;
}
PyDoc_STRVAR(_pickle_dumps__doc__,
"dumps($module, /, obj, protocol=None, *, fix_imports=True)\n"
"--\n"
"\n"
"Return the pickled representation of the object as a bytes object.\n"
"\n"
"The optional *protocol* argument tells the pickler to use the given\n"
"protocol; supported protocols are 0, 1, 2, 3 and 4. The default\n"
"protocol is 3; a backward-incompatible protocol designed for Python 3.\n"
"\n"
"Specifying a negative protocol version selects the highest protocol\n"
"version supported. The higher the protocol used, the more recent the\n"
"version of Python needed to read the pickle produced.\n"
"\n"
"If *fix_imports* is True and *protocol* is less than 3, pickle will\n"
"try to map the new Python 3 names to the old module names used in\n"
"Python 2, so that the pickle data stream is readable with Python 2.");
#define _PICKLE_DUMPS_METHODDEF \
{"dumps", (PyCFunction)_pickle_dumps, METH_FASTCALL|METH_KEYWORDS, _pickle_dumps__doc__},
static PyObject *
_pickle_dumps_impl(PyObject *module, PyObject *obj, PyObject *protocol,
int fix_imports);
static PyObject *
_pickle_dumps(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"obj", "protocol", "fix_imports", NULL};
static _PyArg_Parser _parser = {"O|O$p:dumps", _keywords, 0};
PyObject *obj;
PyObject *protocol = NULL;
int fix_imports = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&obj, &protocol, &fix_imports)) {
goto exit;
}
return_value = _pickle_dumps_impl(module, obj, protocol, fix_imports);
exit:
return return_value;
}
PyDoc_STRVAR(_pickle_load__doc__,
"load($module, /, file, *, fix_imports=True, encoding=\'ASCII\',\n"
" errors=\'strict\')\n"
"--\n"
"\n"
"Read and return an object from the pickle data stored in a file.\n"
"\n"
"This is equivalent to ``Unpickler(file).load()``, but may be more\n"
"efficient.\n"
"\n"
"The protocol version of the pickle is detected automatically, so no\n"
"protocol argument is needed. Bytes past the pickled object\'s\n"
"representation are ignored.\n"
"\n"
"The argument *file* must have two methods, a read() method that takes\n"
"an integer argument, and a readline() method that requires no\n"
"arguments. Both methods should return bytes. Thus *file* can be a\n"
"binary file object opened for reading, an io.BytesIO object, or any\n"
"other custom object that meets this interface.\n"
"\n"
"Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n"
"which are used to control compatibility support for pickle stream\n"
"generated by Python 2. If *fix_imports* is True, pickle will try to\n"
"map the old Python 2 names to the new names used in Python 3. The\n"
"*encoding* and *errors* tell pickle how to decode 8-bit string\n"
"instances pickled by Python 2; these default to \'ASCII\' and \'strict\',\n"
"respectively. The *encoding* can be \'bytes\' to read these 8-bit\n"
"string instances as bytes objects.");
#define _PICKLE_LOAD_METHODDEF \
{"load", (PyCFunction)_pickle_load, METH_FASTCALL|METH_KEYWORDS, _pickle_load__doc__},
static PyObject *
_pickle_load_impl(PyObject *module, PyObject *file, int fix_imports,
const char *encoding, const char *errors);
static PyObject *
_pickle_load(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"file", "fix_imports", "encoding", "errors", NULL};
static _PyArg_Parser _parser = {"O|$pss:load", _keywords, 0};
PyObject *file;
int fix_imports = 1;
const char *encoding = "ASCII";
const char *errors = "strict";
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&file, &fix_imports, &encoding, &errors)) {
goto exit;
}
return_value = _pickle_load_impl(module, file, fix_imports, encoding, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_pickle_loads__doc__,
"loads($module, /, data, *, fix_imports=True, encoding=\'ASCII\',\n"
" errors=\'strict\')\n"
"--\n"
"\n"
"Read and return an object from the given pickle data.\n"
"\n"
"The protocol version of the pickle is detected automatically, so no\n"
"protocol argument is needed. Bytes past the pickled object\'s\n"
"representation are ignored.\n"
"\n"
"Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n"
"which are used to control compatibility support for pickle stream\n"
"generated by Python 2. If *fix_imports* is True, pickle will try to\n"
"map the old Python 2 names to the new names used in Python 3. The\n"
"*encoding* and *errors* tell pickle how to decode 8-bit string\n"
"instances pickled by Python 2; these default to \'ASCII\' and \'strict\',\n"
"respectively. The *encoding* can be \'bytes\' to read these 8-bit\n"
"string instances as bytes objects.");
#define _PICKLE_LOADS_METHODDEF \
{"loads", (PyCFunction)_pickle_loads, METH_FASTCALL|METH_KEYWORDS, _pickle_loads__doc__},
static PyObject *
_pickle_loads_impl(PyObject *module, PyObject *data, int fix_imports,
const char *encoding, const char *errors);
static PyObject *
_pickle_loads(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"data", "fix_imports", "encoding", "errors", NULL};
static _PyArg_Parser _parser = {"O|$pss:loads", _keywords, 0};
PyObject *data;
int fix_imports = 1;
const char *encoding = "ASCII";
const char *errors = "strict";
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&data, &fix_imports, &encoding, &errors)) {
goto exit;
}
return_value = _pickle_loads_impl(module, data, fix_imports, encoding, errors);
exit:
return return_value;
}
/*[clinic end generated code: output=a6243aaa6ea98732 input=a9049054013a1b77]*/
| 19,967 | 565 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/posixmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(os_stat__doc__,
"stat($module, /, path, *, dir_fd=None, follow_symlinks=True)\n"
"--\n"
"\n"
"Perform a stat system call on the given path.\n"
"\n"
" path\n"
" Path to be examined; can be string, bytes, a path-like object or\n"
" open-file-descriptor int.\n"
" dir_fd\n"
" If not None, it should be a file descriptor open to a directory,\n"
" and path should be a relative string; path will then be relative to\n"
" that directory.\n"
" follow_symlinks\n"
" If False, and the last element of the path is a symbolic link,\n"
" stat will examine the symbolic link itself instead of the file\n"
" the link points to.\n"
"\n"
"dir_fd and follow_symlinks may not be implemented\n"
" on your platform. If they are unavailable, using them will raise a\n"
" NotImplementedError.\n"
"\n"
"It\'s an error to use dir_fd or follow_symlinks when specifying path as\n"
" an open file descriptor.");
#define OS_STAT_METHODDEF \
{"stat", (PyCFunction)os_stat, METH_FASTCALL|METH_KEYWORDS, os_stat__doc__},
static PyObject *
os_stat_impl(PyObject *module, path_t *path, int dir_fd, int follow_symlinks);
static PyObject *
os_stat(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "dir_fd", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&|$O&p:stat", _keywords, 0};
path_t path = PATH_T_INITIALIZE("stat", "path", 0, 1);
int dir_fd = DEFAULT_DIR_FD;
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, FSTATAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) {
goto exit;
}
return_value = os_stat_impl(module, &path, dir_fd, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
PyDoc_STRVAR(os_lstat__doc__,
"lstat($module, /, path, *, dir_fd=None)\n"
"--\n"
"\n"
"Perform a stat system call on the given path, without following symbolic links.\n"
"\n"
"Like stat(), but do not follow symbolic links.\n"
"Equivalent to stat(path, follow_symlinks=False).");
#define OS_LSTAT_METHODDEF \
{"lstat", (PyCFunction)os_lstat, METH_FASTCALL|METH_KEYWORDS, os_lstat__doc__},
static PyObject *
os_lstat_impl(PyObject *module, path_t *path, int dir_fd);
static PyObject *
os_lstat(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&|$O&:lstat", _keywords, 0};
path_t path = PATH_T_INITIALIZE("lstat", "path", 0, 0);
int dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, FSTATAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
return_value = os_lstat_impl(module, &path, dir_fd);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
PyDoc_STRVAR(os_access__doc__,
"access($module, /, path, mode, *, dir_fd=None, effective_ids=False,\n"
" follow_symlinks=True)\n"
"--\n"
"\n"
"Use the real uid/gid to test for access to a path.\n"
"\n"
" path\n"
" Path to be tested; can be string, bytes, or a path-like object.\n"
" mode\n"
" Operating-system mode bitfield. Can be F_OK to test existence,\n"
" or the inclusive-OR of R_OK, W_OK, and X_OK.\n"
" dir_fd\n"
" If not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that\n"
" directory.\n"
" effective_ids\n"
" If True, access will use the effective uid/gid instead of\n"
" the real uid/gid.\n"
" follow_symlinks\n"
" If False, and the last element of the path is a symbolic link,\n"
" access will examine the symbolic link itself instead of the file\n"
" the link points to.\n"
"\n"
"dir_fd, effective_ids, and follow_symlinks may not be implemented\n"
" on your platform. If they are unavailable, using them will raise a\n"
" NotImplementedError.\n"
"\n"
"Note that most operations will use the effective uid/gid, therefore this\n"
" routine can be used in a suid/sgid environment to test if the invoking user\n"
" has the specified access to the path.");
#define OS_ACCESS_METHODDEF \
{"access", (PyCFunction)os_access, METH_FASTCALL|METH_KEYWORDS, os_access__doc__},
static int
os_access_impl(PyObject *module, path_t *path, int mode, int dir_fd,
int effective_ids, int follow_symlinks);
static PyObject *
os_access(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "mode", "dir_fd", "effective_ids", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&i|$O&pp:access", _keywords, 0};
path_t path = PATH_T_INITIALIZE("access", "path", 0, 0);
int mode;
int dir_fd = DEFAULT_DIR_FD;
int effective_ids = 0;
int follow_symlinks = 1;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &mode, FACCESSAT_DIR_FD_CONVERTER, &dir_fd, &effective_ids, &follow_symlinks)) {
goto exit;
}
_return_value = os_access_impl(module, &path, mode, dir_fd, effective_ids, follow_symlinks);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#if defined(HAVE_TTYNAME)
PyDoc_STRVAR(os_ttyname__doc__,
"ttyname($module, fd, /)\n"
"--\n"
"\n"
"Return the name of the terminal device connected to \'fd\'.\n"
"\n"
" fd\n"
" Integer file descriptor handle.");
#define OS_TTYNAME_METHODDEF \
{"ttyname", (PyCFunction)os_ttyname, METH_O, os_ttyname__doc__},
static char *
os_ttyname_impl(PyObject *module, int fd);
static PyObject *
os_ttyname(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int fd;
char *_return_value;
if (!PyArg_Parse(arg, "i:ttyname", &fd)) {
goto exit;
}
_return_value = os_ttyname_impl(module, fd);
if (_return_value == NULL) {
goto exit;
}
return_value = PyUnicode_DecodeFSDefault(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_TTYNAME) */
#if defined(HAVE_CTERMID)
PyDoc_STRVAR(os_ctermid__doc__,
"ctermid($module, /)\n"
"--\n"
"\n"
"Return the name of the controlling terminal for this process.");
#define OS_CTERMID_METHODDEF \
{"ctermid", (PyCFunction)os_ctermid, METH_NOARGS, os_ctermid__doc__},
static PyObject *
os_ctermid_impl(PyObject *module);
static PyObject *
os_ctermid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_ctermid_impl(module);
}
#endif /* defined(HAVE_CTERMID) */
PyDoc_STRVAR(os_chdir__doc__,
"chdir($module, /, path)\n"
"--\n"
"\n"
"Change the current working directory to the specified path.\n"
"\n"
"path may always be specified as a string.\n"
"On some platforms, path may also be specified as an open file descriptor.\n"
" If this functionality is unavailable, using it raises an exception.");
#define OS_CHDIR_METHODDEF \
{"chdir", (PyCFunction)os_chdir, METH_FASTCALL|METH_KEYWORDS, os_chdir__doc__},
static PyObject *
os_chdir_impl(PyObject *module, path_t *path);
static PyObject *
os_chdir(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", NULL};
static _PyArg_Parser _parser = {"O&:chdir", _keywords, 0};
path_t path = PATH_T_INITIALIZE("chdir", "path", 0, PATH_HAVE_FCHDIR);
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path)) {
goto exit;
}
return_value = os_chdir_impl(module, &path);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#if defined(HAVE_FCHDIR)
PyDoc_STRVAR(os_fchdir__doc__,
"fchdir($module, /, fd)\n"
"--\n"
"\n"
"Change to the directory of the given file descriptor.\n"
"\n"
"fd must be opened on a directory, not a file.\n"
"Equivalent to os.chdir(fd).");
#define OS_FCHDIR_METHODDEF \
{"fchdir", (PyCFunction)os_fchdir, METH_FASTCALL|METH_KEYWORDS, os_fchdir__doc__},
static PyObject *
os_fchdir_impl(PyObject *module, int fd);
static PyObject *
os_fchdir(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", NULL};
static _PyArg_Parser _parser = {"O&:fchdir", _keywords, 0};
int fd;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
fildes_converter, &fd)) {
goto exit;
}
return_value = os_fchdir_impl(module, fd);
exit:
return return_value;
}
#endif /* defined(HAVE_FCHDIR) */
PyDoc_STRVAR(os_chmod__doc__,
"chmod($module, /, path, mode, *, dir_fd=None, follow_symlinks=True)\n"
"--\n"
"\n"
"Change the access permissions of a file.\n"
"\n"
" path\n"
" Path to be modified. May always be specified as a str, bytes, or a path-like object.\n"
" On some platforms, path may also be specified as an open file descriptor.\n"
" If this functionality is unavailable, using it raises an exception.\n"
" mode\n"
" Operating-system mode bitfield.\n"
" dir_fd\n"
" If not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that\n"
" directory.\n"
" follow_symlinks\n"
" If False, and the last element of the path is a symbolic link,\n"
" chmod will modify the symbolic link itself instead of the file\n"
" the link points to.\n"
"\n"
"It is an error to use dir_fd or follow_symlinks when specifying path as\n"
" an open file descriptor.\n"
"dir_fd and follow_symlinks may not be implemented on your platform.\n"
" If they are unavailable, using them will raise a NotImplementedError.");
#define OS_CHMOD_METHODDEF \
{"chmod", (PyCFunction)os_chmod, METH_FASTCALL|METH_KEYWORDS, os_chmod__doc__},
static PyObject *
os_chmod_impl(PyObject *module, path_t *path, int mode, int dir_fd,
int follow_symlinks);
static PyObject *
os_chmod(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "mode", "dir_fd", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&i|$O&p:chmod", _keywords, 0};
path_t path = PATH_T_INITIALIZE("chmod", "path", 0, PATH_HAVE_FCHMOD);
int mode;
int dir_fd = DEFAULT_DIR_FD;
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &mode, FCHMODAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) {
goto exit;
}
return_value = os_chmod_impl(module, &path, mode, dir_fd, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#if defined(HAVE_FCHMOD)
PyDoc_STRVAR(os_fchmod__doc__,
"fchmod($module, /, fd, mode)\n"
"--\n"
"\n"
"Change the access permissions of the file given by file descriptor fd.\n"
"\n"
"Equivalent to os.chmod(fd, mode).");
#define OS_FCHMOD_METHODDEF \
{"fchmod", (PyCFunction)os_fchmod, METH_FASTCALL|METH_KEYWORDS, os_fchmod__doc__},
static PyObject *
os_fchmod_impl(PyObject *module, int fd, int mode);
static PyObject *
os_fchmod(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", "mode", NULL};
static _PyArg_Parser _parser = {"ii:fchmod", _keywords, 0};
int fd;
int mode;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&fd, &mode)) {
goto exit;
}
return_value = os_fchmod_impl(module, fd, mode);
exit:
return return_value;
}
#endif /* defined(HAVE_FCHMOD) */
#if defined(HAVE_LCHMOD)
PyDoc_STRVAR(os_lchmod__doc__,
"lchmod($module, /, path, mode)\n"
"--\n"
"\n"
"Change the access permissions of a file, without following symbolic links.\n"
"\n"
"If path is a symlink, this affects the link itself rather than the target.\n"
"Equivalent to chmod(path, mode, follow_symlinks=False).\"");
#define OS_LCHMOD_METHODDEF \
{"lchmod", (PyCFunction)os_lchmod, METH_FASTCALL|METH_KEYWORDS, os_lchmod__doc__},
static PyObject *
os_lchmod_impl(PyObject *module, path_t *path, int mode);
static PyObject *
os_lchmod(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "mode", NULL};
static _PyArg_Parser _parser = {"O&i:lchmod", _keywords, 0};
path_t path = PATH_T_INITIALIZE("lchmod", "path", 0, 0);
int mode;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &mode)) {
goto exit;
}
return_value = os_lchmod_impl(module, &path, mode);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_LCHMOD) */
#if defined(HAVE_CHFLAGS)
PyDoc_STRVAR(os_chflags__doc__,
"chflags($module, /, path, flags, follow_symlinks=True)\n"
"--\n"
"\n"
"Set file flags.\n"
"\n"
"If follow_symlinks is False, and the last element of the path is a symbolic\n"
" link, chflags will change flags on the symbolic link itself instead of the\n"
" file the link points to.\n"
"follow_symlinks may not be implemented on your platform. If it is\n"
"unavailable, using it will raise a NotImplementedError.");
#define OS_CHFLAGS_METHODDEF \
{"chflags", (PyCFunction)os_chflags, METH_FASTCALL|METH_KEYWORDS, os_chflags__doc__},
static PyObject *
os_chflags_impl(PyObject *module, path_t *path, unsigned long flags,
int follow_symlinks);
static PyObject *
os_chflags(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "flags", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&k|p:chflags", _keywords, 0};
path_t path = PATH_T_INITIALIZE("chflags", "path", 0, 0);
unsigned long flags;
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &flags, &follow_symlinks)) {
goto exit;
}
return_value = os_chflags_impl(module, &path, flags, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_CHFLAGS) */
#if defined(HAVE_LCHFLAGS)
PyDoc_STRVAR(os_lchflags__doc__,
"lchflags($module, /, path, flags)\n"
"--\n"
"\n"
"Set file flags.\n"
"\n"
"This function will not follow symbolic links.\n"
"Equivalent to chflags(path, flags, follow_symlinks=False).");
#define OS_LCHFLAGS_METHODDEF \
{"lchflags", (PyCFunction)os_lchflags, METH_FASTCALL|METH_KEYWORDS, os_lchflags__doc__},
static PyObject *
os_lchflags_impl(PyObject *module, path_t *path, unsigned long flags);
static PyObject *
os_lchflags(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "flags", NULL};
static _PyArg_Parser _parser = {"O&k:lchflags", _keywords, 0};
path_t path = PATH_T_INITIALIZE("lchflags", "path", 0, 0);
unsigned long flags;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &flags)) {
goto exit;
}
return_value = os_lchflags_impl(module, &path, flags);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_LCHFLAGS) */
#if defined(HAVE_CHROOT)
PyDoc_STRVAR(os_chroot__doc__,
"chroot($module, /, path)\n"
"--\n"
"\n"
"Change root directory to path.");
#define OS_CHROOT_METHODDEF \
{"chroot", (PyCFunction)os_chroot, METH_FASTCALL|METH_KEYWORDS, os_chroot__doc__},
static PyObject *
os_chroot_impl(PyObject *module, path_t *path);
static PyObject *
os_chroot(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", NULL};
static _PyArg_Parser _parser = {"O&:chroot", _keywords, 0};
path_t path = PATH_T_INITIALIZE("chroot", "path", 0, 0);
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path)) {
goto exit;
}
return_value = os_chroot_impl(module, &path);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_CHROOT) */
#if defined(HAVE_FSYNC)
PyDoc_STRVAR(os_fsync__doc__,
"fsync($module, /, fd)\n"
"--\n"
"\n"
"Force write of fd to disk.");
#define OS_FSYNC_METHODDEF \
{"fsync", (PyCFunction)os_fsync, METH_FASTCALL|METH_KEYWORDS, os_fsync__doc__},
static PyObject *
os_fsync_impl(PyObject *module, int fd);
static PyObject *
os_fsync(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", NULL};
static _PyArg_Parser _parser = {"O&:fsync", _keywords, 0};
int fd;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
fildes_converter, &fd)) {
goto exit;
}
return_value = os_fsync_impl(module, fd);
exit:
return return_value;
}
#endif /* defined(HAVE_FSYNC) */
#if defined(HAVE_SYNC)
PyDoc_STRVAR(os_sync__doc__,
"sync($module, /)\n"
"--\n"
"\n"
"Force write of everything to disk.");
#define OS_SYNC_METHODDEF \
{"sync", (PyCFunction)os_sync, METH_NOARGS, os_sync__doc__},
static PyObject *
os_sync_impl(PyObject *module);
static PyObject *
os_sync(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_sync_impl(module);
}
#endif /* defined(HAVE_SYNC) */
#if defined(HAVE_FDATASYNC)
PyDoc_STRVAR(os_fdatasync__doc__,
"fdatasync($module, /, fd)\n"
"--\n"
"\n"
"Force write of fd to disk without forcing update of metadata.");
#define OS_FDATASYNC_METHODDEF \
{"fdatasync", (PyCFunction)os_fdatasync, METH_FASTCALL|METH_KEYWORDS, os_fdatasync__doc__},
static PyObject *
os_fdatasync_impl(PyObject *module, int fd);
static PyObject *
os_fdatasync(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", NULL};
static _PyArg_Parser _parser = {"O&:fdatasync", _keywords, 0};
int fd;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
fildes_converter, &fd)) {
goto exit;
}
return_value = os_fdatasync_impl(module, fd);
exit:
return return_value;
}
#endif /* defined(HAVE_FDATASYNC) */
#if defined(HAVE_CHOWN)
PyDoc_STRVAR(os_chown__doc__,
"chown($module, /, path, uid, gid, *, dir_fd=None, follow_symlinks=True)\n"
"--\n"
"\n"
"Change the owner and group id of path to the numeric uid and gid.\\\n"
"\n"
" path\n"
" Path to be examined; can be string, bytes, a path-like object, or open-file-descriptor int.\n"
" dir_fd\n"
" If not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that\n"
" directory.\n"
" follow_symlinks\n"
" If False, and the last element of the path is a symbolic link,\n"
" stat will examine the symbolic link itself instead of the file\n"
" the link points to.\n"
"\n"
"path may always be specified as a string.\n"
"On some platforms, path may also be specified as an open file descriptor.\n"
" If this functionality is unavailable, using it raises an exception.\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"If follow_symlinks is False, and the last element of the path is a symbolic\n"
" link, chown will modify the symbolic link itself instead of the file the\n"
" link points to.\n"
"It is an error to use dir_fd or follow_symlinks when specifying path as\n"
" an open file descriptor.\n"
"dir_fd and follow_symlinks may not be implemented on your platform.\n"
" If they are unavailable, using them will raise a NotImplementedError.");
#define OS_CHOWN_METHODDEF \
{"chown", (PyCFunction)os_chown, METH_FASTCALL|METH_KEYWORDS, os_chown__doc__},
static PyObject *
os_chown_impl(PyObject *module, path_t *path, uid_t uid, gid_t gid,
int dir_fd, int follow_symlinks);
static PyObject *
os_chown(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "uid", "gid", "dir_fd", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&O&O&|$O&p:chown", _keywords, 0};
path_t path = PATH_T_INITIALIZE("chown", "path", 0, PATH_HAVE_FCHOWN);
uid_t uid;
gid_t gid;
int dir_fd = DEFAULT_DIR_FD;
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, _Py_Uid_Converter, &uid, _Py_Gid_Converter, &gid, FCHOWNAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) {
goto exit;
}
return_value = os_chown_impl(module, &path, uid, gid, dir_fd, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_CHOWN) */
#if defined(HAVE_FCHOWN)
PyDoc_STRVAR(os_fchown__doc__,
"fchown($module, /, fd, uid, gid)\n"
"--\n"
"\n"
"Change the owner and group id of the file specified by file descriptor.\n"
"\n"
"Equivalent to os.chown(fd, uid, gid).");
#define OS_FCHOWN_METHODDEF \
{"fchown", (PyCFunction)os_fchown, METH_FASTCALL|METH_KEYWORDS, os_fchown__doc__},
static PyObject *
os_fchown_impl(PyObject *module, int fd, uid_t uid, gid_t gid);
static PyObject *
os_fchown(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", "uid", "gid", NULL};
static _PyArg_Parser _parser = {"iO&O&:fchown", _keywords, 0};
int fd;
uid_t uid;
gid_t gid;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&fd, _Py_Uid_Converter, &uid, _Py_Gid_Converter, &gid)) {
goto exit;
}
return_value = os_fchown_impl(module, fd, uid, gid);
exit:
return return_value;
}
#endif /* defined(HAVE_FCHOWN) */
#if defined(HAVE_LCHOWN)
PyDoc_STRVAR(os_lchown__doc__,
"lchown($module, /, path, uid, gid)\n"
"--\n"
"\n"
"Change the owner and group id of path to the numeric uid and gid.\n"
"\n"
"This function will not follow symbolic links.\n"
"Equivalent to os.chown(path, uid, gid, follow_symlinks=False).");
#define OS_LCHOWN_METHODDEF \
{"lchown", (PyCFunction)os_lchown, METH_FASTCALL|METH_KEYWORDS, os_lchown__doc__},
static PyObject *
os_lchown_impl(PyObject *module, path_t *path, uid_t uid, gid_t gid);
static PyObject *
os_lchown(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "uid", "gid", NULL};
static _PyArg_Parser _parser = {"O&O&O&:lchown", _keywords, 0};
path_t path = PATH_T_INITIALIZE("lchown", "path", 0, 0);
uid_t uid;
gid_t gid;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, _Py_Uid_Converter, &uid, _Py_Gid_Converter, &gid)) {
goto exit;
}
return_value = os_lchown_impl(module, &path, uid, gid);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_LCHOWN) */
PyDoc_STRVAR(os_getcwd__doc__,
"getcwd($module, /)\n"
"--\n"
"\n"
"Return a unicode string representing the current working directory.");
#define OS_GETCWD_METHODDEF \
{"getcwd", (PyCFunction)os_getcwd, METH_NOARGS, os_getcwd__doc__},
static PyObject *
os_getcwd_impl(PyObject *module);
static PyObject *
os_getcwd(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getcwd_impl(module);
}
PyDoc_STRVAR(os_getcwdb__doc__,
"getcwdb($module, /)\n"
"--\n"
"\n"
"Return a bytes string representing the current working directory.");
#define OS_GETCWDB_METHODDEF \
{"getcwdb", (PyCFunction)os_getcwdb, METH_NOARGS, os_getcwdb__doc__},
static PyObject *
os_getcwdb_impl(PyObject *module);
static PyObject *
os_getcwdb(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getcwdb_impl(module);
}
#if defined(HAVE_LINK)
PyDoc_STRVAR(os_link__doc__,
"link($module, /, src, dst, *, src_dir_fd=None, dst_dir_fd=None,\n"
" follow_symlinks=True)\n"
"--\n"
"\n"
"Create a hard link to a file.\n"
"\n"
"If either src_dir_fd or dst_dir_fd is not None, it should be a file\n"
" descriptor open to a directory, and the respective path string (src or dst)\n"
" should be relative; the path will then be relative to that directory.\n"
"If follow_symlinks is False, and the last element of src is a symbolic\n"
" link, link will create a link to the symbolic link itself instead of the\n"
" file the link points to.\n"
"src_dir_fd, dst_dir_fd, and follow_symlinks may not be implemented on your\n"
" platform. If they are unavailable, using them will raise a\n"
" NotImplementedError.");
#define OS_LINK_METHODDEF \
{"link", (PyCFunction)os_link, METH_FASTCALL|METH_KEYWORDS, os_link__doc__},
static PyObject *
os_link_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
int dst_dir_fd, int follow_symlinks);
static PyObject *
os_link(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&O&|$O&O&p:link", _keywords, 0};
path_t src = PATH_T_INITIALIZE("link", "src", 0, 0);
path_t dst = PATH_T_INITIALIZE("link", "dst", 0, 0);
int src_dir_fd = DEFAULT_DIR_FD;
int dst_dir_fd = DEFAULT_DIR_FD;
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd, &follow_symlinks)) {
goto exit;
}
return_value = os_link_impl(module, &src, &dst, src_dir_fd, dst_dir_fd, follow_symlinks);
exit:
/* Cleanup for src */
path_cleanup(&src);
/* Cleanup for dst */
path_cleanup(&dst);
return return_value;
}
#endif /* defined(HAVE_LINK) */
PyDoc_STRVAR(os_listdir__doc__,
"listdir($module, /, path=None)\n"
"--\n"
"\n"
"Return a list containing the names of the files in the directory.\n"
"\n"
"path can be specified as either str, bytes, or a path-like object. If path is bytes,\n"
" the filenames returned will also be bytes; in all other circumstances\n"
" the filenames returned will be str.\n"
"If path is None, uses the path=\'.\'.\n"
"On some platforms, path may also be specified as an open file descriptor;\\\n"
" the file descriptor must refer to a directory.\n"
" If this functionality is unavailable, using it raises NotImplementedError.\n"
"\n"
"The list is in arbitrary order. It does not include the special\n"
"entries \'.\' and \'..\' even if they are present in the directory.");
#define OS_LISTDIR_METHODDEF \
{"listdir", (PyCFunction)os_listdir, METH_FASTCALL|METH_KEYWORDS, os_listdir__doc__},
static PyObject *
os_listdir_impl(PyObject *module, path_t *path);
static PyObject *
os_listdir(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", NULL};
static _PyArg_Parser _parser = {"|O&:listdir", _keywords, 0};
path_t path = PATH_T_INITIALIZE("listdir", "path", 1, PATH_HAVE_FDOPENDIR);
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path)) {
goto exit;
}
return_value = os_listdir_impl(module, &path);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
PyDoc_STRVAR(os__getfinalpathname__doc__,
"_getfinalpathname($module, path, /)\n"
"--\n"
"\n"
"A helper function for samepath on windows.");
#define OS__GETFINALPATHNAME_METHODDEF \
{"_getfinalpathname", (PyCFunction)os__getfinalpathname, METH_O, os__getfinalpathname__doc__},
static PyObject *
os__getfinalpathname_impl(PyObject *module, PyObject *path);
static PyObject *
os__getfinalpathname(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
PyObject *path;
if (!PyArg_Parse(arg, "U:_getfinalpathname", &path)) {
goto exit;
}
return_value = os__getfinalpathname_impl(module, path);
exit:
return return_value;
}
#if defined(MS_WINDOWS)
PyDoc_STRVAR(os__getfullpathname__doc__,
"_getfullpathname($module, path, /)\n"
"--\n"
"\n");
#define OS__GETFULLPATHNAME_METHODDEF \
{"_getfullpathname", (PyCFunction)os__getfullpathname, METH_O, os__getfullpathname__doc__},
static PyObject *
os__getfullpathname_impl(PyObject *module, path_t *path);
static PyObject *
os__getfullpathname(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
path_t path = PATH_T_INITIALIZE("_getfullpathname", "path", 0, 0);
if (!PyArg_Parse(arg, "O&:_getfullpathname", path_converter, &path)) {
goto exit;
}
return_value = os__getfullpathname_impl(module, &path);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(MS_WINDOWS) */
#if defined(MS_WINDOWS)
PyDoc_STRVAR(os__isdir__doc__,
"_isdir($module, path, /)\n"
"--\n"
"\n"
"Return true if the pathname refers to an existing directory.");
#define OS__ISDIR_METHODDEF \
{"_isdir", (PyCFunction)os__isdir, METH_O, os__isdir__doc__},
static PyObject *
os__isdir_impl(PyObject *module, path_t *path);
static PyObject *
os__isdir(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
path_t path = PATH_T_INITIALIZE("_isdir", "path", 0, 0);
if (!PyArg_Parse(arg, "O&:_isdir", path_converter, &path)) {
goto exit;
}
return_value = os__isdir_impl(module, &path);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(MS_WINDOWS) */
PyDoc_STRVAR(os__getvolumepathname__doc__,
"_getvolumepathname($module, /, path)\n"
"--\n"
"\n"
"A helper function for ismount on Win32.");
#define OS__GETVOLUMEPATHNAME_METHODDEF \
{"_getvolumepathname", (PyCFunction)os__getvolumepathname, METH_FASTCALL|METH_KEYWORDS, os__getvolumepathname__doc__},
static PyObject *
os__getvolumepathname_impl(PyObject *module, PyObject *path);
static PyObject *
os__getvolumepathname(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", NULL};
static _PyArg_Parser _parser = {"U:_getvolumepathname", _keywords, 0};
PyObject *path;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&path)) {
goto exit;
}
return_value = os__getvolumepathname_impl(module, path);
exit:
return return_value;
}
PyDoc_STRVAR(os_mkdir__doc__,
"mkdir($module, /, path, mode=511, *, dir_fd=None)\n"
"--\n"
"\n"
"Create a directory.\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"dir_fd may not be implemented on your platform.\n"
" If it is unavailable, using it will raise a NotImplementedError.\n"
"\n"
"The mode argument is ignored on Windows.");
#define OS_MKDIR_METHODDEF \
{"mkdir", (PyCFunction)os_mkdir, METH_FASTCALL|METH_KEYWORDS, os_mkdir__doc__},
static PyObject *
os_mkdir_impl(PyObject *module, path_t *path, int mode, int dir_fd);
static PyObject *
os_mkdir(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "mode", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&|i$O&:mkdir", _keywords, 0};
path_t path = PATH_T_INITIALIZE("mkdir", "path", 0, 0);
int mode = 511;
int dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &mode, MKDIRAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
return_value = os_mkdir_impl(module, &path, mode, dir_fd);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#if defined(HAVE_NICE)
PyDoc_STRVAR(os_nice__doc__,
"nice($module, increment, /)\n"
"--\n"
"\n"
"Add increment to the priority of process and return the new priority.");
#define OS_NICE_METHODDEF \
{"nice", (PyCFunction)os_nice, METH_O, os_nice__doc__},
static PyObject *
os_nice_impl(PyObject *module, int increment);
static PyObject *
os_nice(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int increment;
if (!PyArg_Parse(arg, "i:nice", &increment)) {
goto exit;
}
return_value = os_nice_impl(module, increment);
exit:
return return_value;
}
#endif /* defined(HAVE_NICE) */
#if defined(HAVE_GETPRIORITY)
PyDoc_STRVAR(os_getpriority__doc__,
"getpriority($module, /, which, who)\n"
"--\n"
"\n"
"Return program scheduling priority.");
#define OS_GETPRIORITY_METHODDEF \
{"getpriority", (PyCFunction)os_getpriority, METH_FASTCALL|METH_KEYWORDS, os_getpriority__doc__},
static PyObject *
os_getpriority_impl(PyObject *module, int which, int who);
static PyObject *
os_getpriority(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"which", "who", NULL};
static _PyArg_Parser _parser = {"ii:getpriority", _keywords, 0};
int which;
int who;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&which, &who)) {
goto exit;
}
return_value = os_getpriority_impl(module, which, who);
exit:
return return_value;
}
#endif /* defined(HAVE_GETPRIORITY) */
#if defined(HAVE_SETPRIORITY)
PyDoc_STRVAR(os_setpriority__doc__,
"setpriority($module, /, which, who, priority)\n"
"--\n"
"\n"
"Set program scheduling priority.");
#define OS_SETPRIORITY_METHODDEF \
{"setpriority", (PyCFunction)os_setpriority, METH_FASTCALL|METH_KEYWORDS, os_setpriority__doc__},
static PyObject *
os_setpriority_impl(PyObject *module, int which, int who, int priority);
static PyObject *
os_setpriority(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"which", "who", "priority", NULL};
static _PyArg_Parser _parser = {"iii:setpriority", _keywords, 0};
int which;
int who;
int priority;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&which, &who, &priority)) {
goto exit;
}
return_value = os_setpriority_impl(module, which, who, priority);
exit:
return return_value;
}
#endif /* defined(HAVE_SETPRIORITY) */
PyDoc_STRVAR(os_rename__doc__,
"rename($module, /, src, dst, *, src_dir_fd=None, dst_dir_fd=None)\n"
"--\n"
"\n"
"Rename a file or directory.\n"
"\n"
"If either src_dir_fd or dst_dir_fd is not None, it should be a file\n"
" descriptor open to a directory, and the respective path string (src or dst)\n"
" should be relative; the path will then be relative to that directory.\n"
"src_dir_fd and dst_dir_fd, may not be implemented on your platform.\n"
" If they are unavailable, using them will raise a NotImplementedError.");
#define OS_RENAME_METHODDEF \
{"rename", (PyCFunction)os_rename, METH_FASTCALL|METH_KEYWORDS, os_rename__doc__},
static PyObject *
os_rename_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
int dst_dir_fd);
static PyObject *
os_rename(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", NULL};
static _PyArg_Parser _parser = {"O&O&|$O&O&:rename", _keywords, 0};
path_t src = PATH_T_INITIALIZE("rename", "src", 0, 0);
path_t dst = PATH_T_INITIALIZE("rename", "dst", 0, 0);
int src_dir_fd = DEFAULT_DIR_FD;
int dst_dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd)) {
goto exit;
}
return_value = os_rename_impl(module, &src, &dst, src_dir_fd, dst_dir_fd);
exit:
/* Cleanup for src */
path_cleanup(&src);
/* Cleanup for dst */
path_cleanup(&dst);
return return_value;
}
PyDoc_STRVAR(os_replace__doc__,
"replace($module, /, src, dst, *, src_dir_fd=None, dst_dir_fd=None)\n"
"--\n"
"\n"
"Rename a file or directory, overwriting the destination.\n"
"\n"
"If either src_dir_fd or dst_dir_fd is not None, it should be a file\n"
" descriptor open to a directory, and the respective path string (src or dst)\n"
" should be relative; the path will then be relative to that directory.\n"
"src_dir_fd and dst_dir_fd, may not be implemented on your platform.\n"
" If they are unavailable, using them will raise a NotImplementedError.\"");
#define OS_REPLACE_METHODDEF \
{"replace", (PyCFunction)os_replace, METH_FASTCALL|METH_KEYWORDS, os_replace__doc__},
static PyObject *
os_replace_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
int dst_dir_fd);
static PyObject *
os_replace(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", NULL};
static _PyArg_Parser _parser = {"O&O&|$O&O&:replace", _keywords, 0};
path_t src = PATH_T_INITIALIZE("replace", "src", 0, 0);
path_t dst = PATH_T_INITIALIZE("replace", "dst", 0, 0);
int src_dir_fd = DEFAULT_DIR_FD;
int dst_dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd)) {
goto exit;
}
return_value = os_replace_impl(module, &src, &dst, src_dir_fd, dst_dir_fd);
exit:
/* Cleanup for src */
path_cleanup(&src);
/* Cleanup for dst */
path_cleanup(&dst);
return return_value;
}
PyDoc_STRVAR(os_rmdir__doc__,
"rmdir($module, /, path, *, dir_fd=None)\n"
"--\n"
"\n"
"Remove a directory.\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"dir_fd may not be implemented on your platform.\n"
" If it is unavailable, using it will raise a NotImplementedError.");
#define OS_RMDIR_METHODDEF \
{"rmdir", (PyCFunction)os_rmdir, METH_FASTCALL|METH_KEYWORDS, os_rmdir__doc__},
static PyObject *
os_rmdir_impl(PyObject *module, path_t *path, int dir_fd);
static PyObject *
os_rmdir(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&|$O&:rmdir", _keywords, 0};
path_t path = PATH_T_INITIALIZE("rmdir", "path", 0, 0);
int dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
return_value = os_rmdir_impl(module, &path, dir_fd);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#if defined(HAVE_SYSTEM) && defined(MS_WINDOWS)
PyDoc_STRVAR(os_system__doc__,
"system($module, /, command)\n"
"--\n"
"\n"
"Execute the command in a subshell.");
#define OS_SYSTEM_METHODDEF \
{"system", (PyCFunction)os_system, METH_FASTCALL|METH_KEYWORDS, os_system__doc__},
static long
os_system_impl(PyObject *module, Py_UNICODE *command);
static PyObject *
os_system(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"command", NULL};
static _PyArg_Parser _parser = {"u:system", _keywords, 0};
Py_UNICODE *command;
long _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&command)) {
goto exit;
}
_return_value = os_system_impl(module, command);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_SYSTEM) && defined(MS_WINDOWS) */
#if defined(HAVE_SYSTEM) && !defined(MS_WINDOWS)
PyDoc_STRVAR(os_system__doc__,
"system($module, /, command)\n"
"--\n"
"\n"
"Execute the command in a subshell.");
#define OS_SYSTEM_METHODDEF \
{"system", (PyCFunction)os_system, METH_FASTCALL|METH_KEYWORDS, os_system__doc__},
static long
os_system_impl(PyObject *module, PyObject *command);
static PyObject *
os_system(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"command", NULL};
static _PyArg_Parser _parser = {"O&:system", _keywords, 0};
PyObject *command = NULL;
long _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
PyUnicode_FSConverter, &command)) {
goto exit;
}
_return_value = os_system_impl(module, command);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong(_return_value);
exit:
/* Cleanup for command */
Py_XDECREF(command);
return return_value;
}
#endif /* defined(HAVE_SYSTEM) && !defined(MS_WINDOWS) */
PyDoc_STRVAR(os_umask__doc__,
"umask($module, mask, /)\n"
"--\n"
"\n"
"Set the current numeric umask and return the previous umask.");
#define OS_UMASK_METHODDEF \
{"umask", (PyCFunction)os_umask, METH_O, os_umask__doc__},
static PyObject *
os_umask_impl(PyObject *module, int mask);
static PyObject *
os_umask(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int mask;
if (!PyArg_Parse(arg, "i:umask", &mask)) {
goto exit;
}
return_value = os_umask_impl(module, mask);
exit:
return return_value;
}
PyDoc_STRVAR(os_unlink__doc__,
"unlink($module, /, path, *, dir_fd=None)\n"
"--\n"
"\n"
"Remove a file (same as remove()).\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"dir_fd may not be implemented on your platform.\n"
" If it is unavailable, using it will raise a NotImplementedError.");
#define OS_UNLINK_METHODDEF \
{"unlink", (PyCFunction)os_unlink, METH_FASTCALL|METH_KEYWORDS, os_unlink__doc__},
static PyObject *
os_unlink_impl(PyObject *module, path_t *path, int dir_fd);
static PyObject *
os_unlink(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&|$O&:unlink", _keywords, 0};
path_t path = PATH_T_INITIALIZE("unlink", "path", 0, 0);
int dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
return_value = os_unlink_impl(module, &path, dir_fd);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
PyDoc_STRVAR(os_remove__doc__,
"remove($module, /, path, *, dir_fd=None)\n"
"--\n"
"\n"
"Remove a file (same as unlink()).\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"dir_fd may not be implemented on your platform.\n"
" If it is unavailable, using it will raise a NotImplementedError.");
#define OS_REMOVE_METHODDEF \
{"remove", (PyCFunction)os_remove, METH_FASTCALL|METH_KEYWORDS, os_remove__doc__},
static PyObject *
os_remove_impl(PyObject *module, path_t *path, int dir_fd);
static PyObject *
os_remove(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&|$O&:remove", _keywords, 0};
path_t path = PATH_T_INITIALIZE("remove", "path", 0, 0);
int dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
return_value = os_remove_impl(module, &path, dir_fd);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#if defined(HAVE_UNAME)
PyDoc_STRVAR(os_uname__doc__,
"uname($module, /)\n"
"--\n"
"\n"
"Return an object identifying the current operating system.\n"
"\n"
"The object behaves like a named tuple with the following fields:\n"
" (sysname, nodename, release, version, machine)");
#define OS_UNAME_METHODDEF \
{"uname", (PyCFunction)os_uname, METH_NOARGS, os_uname__doc__},
static PyObject *
os_uname_impl(PyObject *module);
static PyObject *
os_uname(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_uname_impl(module);
}
#endif /* defined(HAVE_UNAME) */
PyDoc_STRVAR(os_utime__doc__,
"utime($module, /, path, times=None, *, ns=None, dir_fd=None,\n"
" follow_symlinks=True)\n"
"--\n"
"\n"
"Set the access and modified time of path.\n"
"\n"
"path may always be specified as a string.\n"
"On some platforms, path may also be specified as an open file descriptor.\n"
" If this functionality is unavailable, using it raises an exception.\n"
"\n"
"If times is not None, it must be a tuple (atime, mtime);\n"
" atime and mtime should be expressed as float seconds since the epoch.\n"
"If ns is specified, it must be a tuple (atime_ns, mtime_ns);\n"
" atime_ns and mtime_ns should be expressed as integer nanoseconds\n"
" since the epoch.\n"
"If times is None and ns is unspecified, utime uses the current time.\n"
"Specifying tuples for both times and ns is an error.\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"If follow_symlinks is False, and the last element of the path is a symbolic\n"
" link, utime will modify the symbolic link itself instead of the file the\n"
" link points to.\n"
"It is an error to use dir_fd or follow_symlinks when specifying path\n"
" as an open file descriptor.\n"
"dir_fd and follow_symlinks may not be available on your platform.\n"
" If they are unavailable, using them will raise a NotImplementedError.");
#define OS_UTIME_METHODDEF \
{"utime", (PyCFunction)os_utime, METH_FASTCALL|METH_KEYWORDS, os_utime__doc__},
static PyObject *
os_utime_impl(PyObject *module, path_t *path, PyObject *times, PyObject *ns,
int dir_fd, int follow_symlinks);
static PyObject *
os_utime(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "times", "ns", "dir_fd", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&|O$OO&p:utime", _keywords, 0};
path_t path = PATH_T_INITIALIZE("utime", "path", 0, PATH_UTIME_HAVE_FD);
PyObject *times = NULL;
PyObject *ns = NULL;
int dir_fd = DEFAULT_DIR_FD;
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, ×, &ns, FUTIMENSAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) {
goto exit;
}
return_value = os_utime_impl(module, &path, times, ns, dir_fd, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
PyDoc_STRVAR(os__exit__doc__,
"_exit($module, /, status)\n"
"--\n"
"\n"
"Exit to the system with specified status, without normal exit processing.");
#define OS__EXIT_METHODDEF \
{"_exit", (PyCFunction)os__exit, METH_FASTCALL|METH_KEYWORDS, os__exit__doc__},
static PyObject *
os__exit_impl(PyObject *module, int status);
static PyObject *
os__exit(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"status", NULL};
static _PyArg_Parser _parser = {"i:_exit", _keywords, 0};
int status;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&status)) {
goto exit;
}
return_value = os__exit_impl(module, status);
exit:
return return_value;
}
#if defined(HAVE_EXECV)
PyDoc_STRVAR(os_execv__doc__,
"execv($module, path, argv, /)\n"
"--\n"
"\n"
"Execute an executable path with arguments, replacing current process.\n"
"\n"
" path\n"
" Path of executable file.\n"
" argv\n"
" Tuple or list of strings.");
#define OS_EXECV_METHODDEF \
{"execv", (PyCFunction)os_execv, METH_FASTCALL, os_execv__doc__},
static PyObject *
os_execv_impl(PyObject *module, path_t *path, PyObject *argv);
static PyObject *
os_execv(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
path_t path = PATH_T_INITIALIZE("execv", "path", 0, 0);
PyObject *argv;
if (!_PyArg_ParseStack(args, nargs, "O&O:execv",
path_converter, &path, &argv)) {
goto exit;
}
return_value = os_execv_impl(module, &path, argv);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_EXECV) */
#if defined(HAVE_EXECV)
PyDoc_STRVAR(os_execve__doc__,
"execve($module, /, path, argv, env)\n"
"--\n"
"\n"
"Execute an executable path with arguments, replacing current process.\n"
"\n"
" path\n"
" Path of executable file.\n"
" argv\n"
" Tuple or list of strings.\n"
" env\n"
" Dictionary of strings mapping to strings.");
#define OS_EXECVE_METHODDEF \
{"execve", (PyCFunction)os_execve, METH_FASTCALL|METH_KEYWORDS, os_execve__doc__},
static PyObject *
os_execve_impl(PyObject *module, path_t *path, PyObject *argv, PyObject *env);
static PyObject *
os_execve(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "argv", "env", NULL};
static _PyArg_Parser _parser = {"O&OO:execve", _keywords, 0};
path_t path = PATH_T_INITIALIZE("execve", "path", 0, PATH_HAVE_FEXECVE);
PyObject *argv;
PyObject *env;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &argv, &env)) {
goto exit;
}
return_value = os_execve_impl(module, &path, argv, env);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_EXECV) */
#if (defined(HAVE_SPAWNV) || defined(HAVE_WSPAWNV))
PyDoc_STRVAR(os_spawnv__doc__,
"spawnv($module, mode, path, argv, /)\n"
"--\n"
"\n"
"Execute the program specified by path in a new process.\n"
"\n"
" mode\n"
" Mode of process creation.\n"
" path\n"
" Path of executable file.\n"
" argv\n"
" Tuple or list of strings.");
#define OS_SPAWNV_METHODDEF \
{"spawnv", (PyCFunction)os_spawnv, METH_FASTCALL, os_spawnv__doc__},
static PyObject *
os_spawnv_impl(PyObject *module, int mode, path_t *path, PyObject *argv);
static PyObject *
os_spawnv(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int mode;
path_t path = PATH_T_INITIALIZE("spawnv", "path", 0, 0);
PyObject *argv;
if (!_PyArg_ParseStack(args, nargs, "iO&O:spawnv",
&mode, path_converter, &path, &argv)) {
goto exit;
}
return_value = os_spawnv_impl(module, mode, &path, argv);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* (defined(HAVE_SPAWNV) || defined(HAVE_WSPAWNV)) */
#if (defined(HAVE_SPAWNV) || defined(HAVE_WSPAWNV))
PyDoc_STRVAR(os_spawnve__doc__,
"spawnve($module, mode, path, argv, env, /)\n"
"--\n"
"\n"
"Execute the program specified by path in a new process.\n"
"\n"
" mode\n"
" Mode of process creation.\n"
" path\n"
" Path of executable file.\n"
" argv\n"
" Tuple or list of strings.\n"
" env\n"
" Dictionary of strings mapping to strings.");
#define OS_SPAWNVE_METHODDEF \
{"spawnve", (PyCFunction)os_spawnve, METH_FASTCALL, os_spawnve__doc__},
static PyObject *
os_spawnve_impl(PyObject *module, int mode, path_t *path, PyObject *argv,
PyObject *env);
static PyObject *
os_spawnve(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int mode;
path_t path = PATH_T_INITIALIZE("spawnve", "path", 0, 0);
PyObject *argv;
PyObject *env;
if (!_PyArg_ParseStack(args, nargs, "iO&OO:spawnve",
&mode, path_converter, &path, &argv, &env)) {
goto exit;
}
return_value = os_spawnve_impl(module, mode, &path, argv, env);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* (defined(HAVE_SPAWNV) || defined(HAVE_WSPAWNV)) */
#if defined(HAVE_FORK1)
PyDoc_STRVAR(os_fork1__doc__,
"fork1($module, /)\n"
"--\n"
"\n"
"Fork a child process with a single multiplexed (i.e., not bound) thread.\n"
"\n"
"Return 0 to child process and PID of child to parent process.");
#define OS_FORK1_METHODDEF \
{"fork1", (PyCFunction)os_fork1, METH_NOARGS, os_fork1__doc__},
static PyObject *
os_fork1_impl(PyObject *module);
static PyObject *
os_fork1(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_fork1_impl(module);
}
#endif /* defined(HAVE_FORK1) */
#if defined(HAVE_FORK)
PyDoc_STRVAR(os_fork__doc__,
"fork($module, /)\n"
"--\n"
"\n"
"Fork a child process.\n"
"\n"
"Return 0 to child process and PID of child to parent process.");
#define OS_FORK_METHODDEF \
{"fork", (PyCFunction)os_fork, METH_NOARGS, os_fork__doc__},
static PyObject *
os_fork_impl(PyObject *module);
static PyObject *
os_fork(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_fork_impl(module);
}
#endif /* defined(HAVE_FORK) */
#if defined(HAVE_SCHED_GET_PRIORITY_MAX)
PyDoc_STRVAR(os_sched_get_priority_max__doc__,
"sched_get_priority_max($module, /, policy)\n"
"--\n"
"\n"
"Get the maximum scheduling priority for policy.");
#define OS_SCHED_GET_PRIORITY_MAX_METHODDEF \
{"sched_get_priority_max", (PyCFunction)os_sched_get_priority_max, METH_FASTCALL|METH_KEYWORDS, os_sched_get_priority_max__doc__},
static PyObject *
os_sched_get_priority_max_impl(PyObject *module, int policy);
static PyObject *
os_sched_get_priority_max(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"policy", NULL};
static _PyArg_Parser _parser = {"i:sched_get_priority_max", _keywords, 0};
int policy;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&policy)) {
goto exit;
}
return_value = os_sched_get_priority_max_impl(module, policy);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_GET_PRIORITY_MAX) */
#if defined(HAVE_SCHED_GET_PRIORITY_MAX)
PyDoc_STRVAR(os_sched_get_priority_min__doc__,
"sched_get_priority_min($module, /, policy)\n"
"--\n"
"\n"
"Get the minimum scheduling priority for policy.");
#define OS_SCHED_GET_PRIORITY_MIN_METHODDEF \
{"sched_get_priority_min", (PyCFunction)os_sched_get_priority_min, METH_FASTCALL|METH_KEYWORDS, os_sched_get_priority_min__doc__},
static PyObject *
os_sched_get_priority_min_impl(PyObject *module, int policy);
static PyObject *
os_sched_get_priority_min(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"policy", NULL};
static _PyArg_Parser _parser = {"i:sched_get_priority_min", _keywords, 0};
int policy;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&policy)) {
goto exit;
}
return_value = os_sched_get_priority_min_impl(module, policy);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_GET_PRIORITY_MAX) */
#if defined(HAVE_SCHED_SETSCHEDULER)
PyDoc_STRVAR(os_sched_getscheduler__doc__,
"sched_getscheduler($module, pid, /)\n"
"--\n"
"\n"
"Get the scheduling policy for the process identifiedy by pid.\n"
"\n"
"Passing 0 for pid returns the scheduling policy for the calling process.");
#define OS_SCHED_GETSCHEDULER_METHODDEF \
{"sched_getscheduler", (PyCFunction)os_sched_getscheduler, METH_O, os_sched_getscheduler__doc__},
static PyObject *
os_sched_getscheduler_impl(PyObject *module, pid_t pid);
static PyObject *
os_sched_getscheduler(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
pid_t pid;
if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":sched_getscheduler", &pid)) {
goto exit;
}
return_value = os_sched_getscheduler_impl(module, pid);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_SETSCHEDULER) */
#if (defined(HAVE_SCHED_SETSCHEDULER) || defined(HAVE_SCHED_SETPARAM))
PyDoc_STRVAR(os_sched_param__doc__,
"sched_param(sched_priority)\n"
"--\n"
"\n"
"Current has only one field: sched_priority\");\n"
"\n"
" sched_priority\n"
" A scheduling parameter.");
static PyObject *
os_sched_param_impl(PyTypeObject *type, PyObject *sched_priority);
static PyObject *
os_sched_param(PyTypeObject *type, PyObject *args, PyObject *kwargs)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"sched_priority", NULL};
static _PyArg_Parser _parser = {"O:sched_param", _keywords, 0};
PyObject *sched_priority;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&sched_priority)) {
goto exit;
}
return_value = os_sched_param_impl(type, sched_priority);
exit:
return return_value;
}
#endif /* (defined(HAVE_SCHED_SETSCHEDULER) || defined(HAVE_SCHED_SETPARAM)) */
#if defined(HAVE_SCHED_SETSCHEDULER)
PyDoc_STRVAR(os_sched_setscheduler__doc__,
"sched_setscheduler($module, pid, policy, param, /)\n"
"--\n"
"\n"
"Set the scheduling policy for the process identified by pid.\n"
"\n"
"If pid is 0, the calling process is changed.\n"
"param is an instance of sched_param.");
#define OS_SCHED_SETSCHEDULER_METHODDEF \
{"sched_setscheduler", (PyCFunction)os_sched_setscheduler, METH_FASTCALL, os_sched_setscheduler__doc__},
static PyObject *
os_sched_setscheduler_impl(PyObject *module, pid_t pid, int policy,
struct sched_param *param);
static PyObject *
os_sched_setscheduler(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
pid_t pid;
int policy;
struct sched_param param;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_PID "iO&:sched_setscheduler",
&pid, &policy, convert_sched_param, ¶m)) {
goto exit;
}
return_value = os_sched_setscheduler_impl(module, pid, policy, ¶m);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_SETSCHEDULER) */
#if defined(HAVE_SCHED_SETPARAM)
PyDoc_STRVAR(os_sched_getparam__doc__,
"sched_getparam($module, pid, /)\n"
"--\n"
"\n"
"Returns scheduling parameters for the process identified by pid.\n"
"\n"
"If pid is 0, returns parameters for the calling process.\n"
"Return value is an instance of sched_param.");
#define OS_SCHED_GETPARAM_METHODDEF \
{"sched_getparam", (PyCFunction)os_sched_getparam, METH_O, os_sched_getparam__doc__},
static PyObject *
os_sched_getparam_impl(PyObject *module, pid_t pid);
static PyObject *
os_sched_getparam(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
pid_t pid;
if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":sched_getparam", &pid)) {
goto exit;
}
return_value = os_sched_getparam_impl(module, pid);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_SETPARAM) */
#if defined(HAVE_SCHED_SETPARAM)
PyDoc_STRVAR(os_sched_setparam__doc__,
"sched_setparam($module, pid, param, /)\n"
"--\n"
"\n"
"Set scheduling parameters for the process identified by pid.\n"
"\n"
"If pid is 0, sets parameters for the calling process.\n"
"param should be an instance of sched_param.");
#define OS_SCHED_SETPARAM_METHODDEF \
{"sched_setparam", (PyCFunction)os_sched_setparam, METH_FASTCALL, os_sched_setparam__doc__},
static PyObject *
os_sched_setparam_impl(PyObject *module, pid_t pid,
struct sched_param *param);
static PyObject *
os_sched_setparam(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
pid_t pid;
struct sched_param param;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_PID "O&:sched_setparam",
&pid, convert_sched_param, ¶m)) {
goto exit;
}
return_value = os_sched_setparam_impl(module, pid, ¶m);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_SETPARAM) */
#if defined(HAVE_SCHED_RR_GET_INTERVAL)
PyDoc_STRVAR(os_sched_rr_get_interval__doc__,
"sched_rr_get_interval($module, pid, /)\n"
"--\n"
"\n"
"Return the round-robin quantum for the process identified by pid, in seconds.\n"
"\n"
"Value returned is a float.");
#define OS_SCHED_RR_GET_INTERVAL_METHODDEF \
{"sched_rr_get_interval", (PyCFunction)os_sched_rr_get_interval, METH_O, os_sched_rr_get_interval__doc__},
static double
os_sched_rr_get_interval_impl(PyObject *module, pid_t pid);
static PyObject *
os_sched_rr_get_interval(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
pid_t pid;
double _return_value;
if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":sched_rr_get_interval", &pid)) {
goto exit;
}
_return_value = os_sched_rr_get_interval_impl(module, pid);
if ((_return_value == -1.0) && PyErr_Occurred()) {
goto exit;
}
return_value = PyFloat_FromDouble(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_RR_GET_INTERVAL) */
PyDoc_STRVAR(os_sched_yield__doc__,
"sched_yield($module, /)\n"
"--\n"
"\n"
"Voluntarily relinquish the CPU.");
#define OS_SCHED_YIELD_METHODDEF \
{"sched_yield", (PyCFunction)os_sched_yield, METH_NOARGS, os_sched_yield__doc__},
static PyObject *
os_sched_yield_impl(PyObject *module);
static PyObject *
os_sched_yield(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_sched_yield_impl(module);
}
#if defined(HAVE_SCHED_SETAFFINITY)
PyDoc_STRVAR(os_sched_setaffinity__doc__,
"sched_setaffinity($module, pid, mask, /)\n"
"--\n"
"\n"
"Set the CPU affinity of the process identified by pid to mask.\n"
"\n"
"mask should be an iterable of integers identifying CPUs.");
#define OS_SCHED_SETAFFINITY_METHODDEF \
{"sched_setaffinity", (PyCFunction)os_sched_setaffinity, METH_FASTCALL, os_sched_setaffinity__doc__},
static PyObject *
os_sched_setaffinity_impl(PyObject *module, pid_t pid, PyObject *mask);
static PyObject *
os_sched_setaffinity(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
pid_t pid;
PyObject *mask;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_PID "O:sched_setaffinity",
&pid, &mask)) {
goto exit;
}
return_value = os_sched_setaffinity_impl(module, pid, mask);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_SETAFFINITY) */
#if defined(HAVE_SCHED_SETAFFINITY)
PyDoc_STRVAR(os_sched_getaffinity__doc__,
"sched_getaffinity($module, pid, /)\n"
"--\n"
"\n"
"Return the affinity of the process identified by pid (or the current process if zero).\n"
"\n"
"The affinity is returned as a set of CPU identifiers.");
#define OS_SCHED_GETAFFINITY_METHODDEF \
{"sched_getaffinity", (PyCFunction)os_sched_getaffinity, METH_O, os_sched_getaffinity__doc__},
static PyObject *
os_sched_getaffinity_impl(PyObject *module, pid_t pid);
static PyObject *
os_sched_getaffinity(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
pid_t pid;
if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":sched_getaffinity", &pid)) {
goto exit;
}
return_value = os_sched_getaffinity_impl(module, pid);
exit:
return return_value;
}
#endif /* defined(HAVE_SCHED_SETAFFINITY) */
#if (defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX))
PyDoc_STRVAR(os_openpty__doc__,
"openpty($module, /)\n"
"--\n"
"\n"
"Open a pseudo-terminal.\n"
"\n"
"Return a tuple of (master_fd, slave_fd) containing open file descriptors\n"
"for both the master and slave ends.");
#define OS_OPENPTY_METHODDEF \
{"openpty", (PyCFunction)os_openpty, METH_NOARGS, os_openpty__doc__},
static PyObject *
os_openpty_impl(PyObject *module);
static PyObject *
os_openpty(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_openpty_impl(module);
}
#endif /* (defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)) */
#if (HAVE_FORKPTY)
PyDoc_STRVAR(os_forkpty__doc__,
"forkpty($module, /)\n"
"--\n"
"\n"
"Fork a new process with a new pseudo-terminal as controlling tty.\n"
"\n"
"Returns a tuple of (pid, master_fd).\n"
"Like fork(), return pid of 0 to the child process,\n"
"and pid of child to the parent process.\n"
"To both, return fd of newly opened pseudo-terminal.");
#define OS_FORKPTY_METHODDEF \
{"forkpty", (PyCFunction)os_forkpty, METH_NOARGS, os_forkpty__doc__},
static PyObject *
os_forkpty_impl(PyObject *module);
static PyObject *
os_forkpty(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_forkpty_impl(module);
}
#endif /* (HAVE_FORKPTY) */
#if defined(HAVE_GETEGID)
PyDoc_STRVAR(os_getegid__doc__,
"getegid($module, /)\n"
"--\n"
"\n"
"Return the current process\'s effective group id.");
#define OS_GETEGID_METHODDEF \
{"getegid", (PyCFunction)os_getegid, METH_NOARGS, os_getegid__doc__},
static PyObject *
os_getegid_impl(PyObject *module);
static PyObject *
os_getegid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getegid_impl(module);
}
#endif /* defined(HAVE_GETEGID) */
#if defined(HAVE_GETEUID)
PyDoc_STRVAR(os_geteuid__doc__,
"geteuid($module, /)\n"
"--\n"
"\n"
"Return the current process\'s effective user id.");
#define OS_GETEUID_METHODDEF \
{"geteuid", (PyCFunction)os_geteuid, METH_NOARGS, os_geteuid__doc__},
static PyObject *
os_geteuid_impl(PyObject *module);
static PyObject *
os_geteuid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_geteuid_impl(module);
}
#endif /* defined(HAVE_GETEUID) */
#if defined(HAVE_GETGID)
PyDoc_STRVAR(os_getgid__doc__,
"getgid($module, /)\n"
"--\n"
"\n"
"Return the current process\'s group id.");
#define OS_GETGID_METHODDEF \
{"getgid", (PyCFunction)os_getgid, METH_NOARGS, os_getgid__doc__},
static PyObject *
os_getgid_impl(PyObject *module);
static PyObject *
os_getgid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getgid_impl(module);
}
#endif /* defined(HAVE_GETGID) */
#if defined(HAVE_GETPID)
PyDoc_STRVAR(os_getpid__doc__,
"getpid($module, /)\n"
"--\n"
"\n"
"Return the current process id.");
#define OS_GETPID_METHODDEF \
{"getpid", (PyCFunction)os_getpid, METH_NOARGS, os_getpid__doc__},
static PyObject *
os_getpid_impl(PyObject *module);
static PyObject *
os_getpid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getpid_impl(module);
}
#endif /* defined(HAVE_GETPID) */
#if defined(HAVE_GETGROUPS)
PyDoc_STRVAR(os_getgroups__doc__,
"getgroups($module, /)\n"
"--\n"
"\n"
"Return list of supplemental group IDs for the process.");
#define OS_GETGROUPS_METHODDEF \
{"getgroups", (PyCFunction)os_getgroups, METH_NOARGS, os_getgroups__doc__},
static PyObject *
os_getgroups_impl(PyObject *module);
static PyObject *
os_getgroups(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getgroups_impl(module);
}
#endif /* defined(HAVE_GETGROUPS) */
#if defined(HAVE_GETPGID)
PyDoc_STRVAR(os_getpgid__doc__,
"getpgid($module, /, pid)\n"
"--\n"
"\n"
"Call the system call getpgid(), and return the result.");
#define OS_GETPGID_METHODDEF \
{"getpgid", (PyCFunction)os_getpgid, METH_FASTCALL|METH_KEYWORDS, os_getpgid__doc__},
static PyObject *
os_getpgid_impl(PyObject *module, pid_t pid);
static PyObject *
os_getpgid(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"pid", NULL};
static _PyArg_Parser _parser = {"" _Py_PARSE_PID ":getpgid", _keywords, 0};
pid_t pid;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&pid)) {
goto exit;
}
return_value = os_getpgid_impl(module, pid);
exit:
return return_value;
}
#endif /* defined(HAVE_GETPGID) */
#if defined(HAVE_GETPGRP)
PyDoc_STRVAR(os_getpgrp__doc__,
"getpgrp($module, /)\n"
"--\n"
"\n"
"Return the current process group id.");
#define OS_GETPGRP_METHODDEF \
{"getpgrp", (PyCFunction)os_getpgrp, METH_NOARGS, os_getpgrp__doc__},
static PyObject *
os_getpgrp_impl(PyObject *module);
static PyObject *
os_getpgrp(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getpgrp_impl(module);
}
#endif /* defined(HAVE_GETPGRP) */
#if defined(HAVE_SETPGRP)
PyDoc_STRVAR(os_setpgrp__doc__,
"setpgrp($module, /)\n"
"--\n"
"\n"
"Make the current process the leader of its process group.");
#define OS_SETPGRP_METHODDEF \
{"setpgrp", (PyCFunction)os_setpgrp, METH_NOARGS, os_setpgrp__doc__},
static PyObject *
os_setpgrp_impl(PyObject *module);
static PyObject *
os_setpgrp(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_setpgrp_impl(module);
}
#endif /* defined(HAVE_SETPGRP) */
#if defined(HAVE_GETPPID)
PyDoc_STRVAR(os_getppid__doc__,
"getppid($module, /)\n"
"--\n"
"\n"
"Return the parent\'s process id.\n"
"\n"
"If the parent process has already exited, Windows machines will still\n"
"return its id; others systems will return the id of the \'init\' process (1).");
#define OS_GETPPID_METHODDEF \
{"getppid", (PyCFunction)os_getppid, METH_NOARGS, os_getppid__doc__},
static PyObject *
os_getppid_impl(PyObject *module);
static PyObject *
os_getppid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getppid_impl(module);
}
#endif /* defined(HAVE_GETPPID) */
#if defined(HAVE_GETLOGIN)
PyDoc_STRVAR(os_getlogin__doc__,
"getlogin($module, /)\n"
"--\n"
"\n"
"Return the actual login name.");
#define OS_GETLOGIN_METHODDEF \
{"getlogin", (PyCFunction)os_getlogin, METH_NOARGS, os_getlogin__doc__},
static PyObject *
os_getlogin_impl(PyObject *module);
static PyObject *
os_getlogin(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getlogin_impl(module);
}
#endif /* defined(HAVE_GETLOGIN) */
#if defined(HAVE_GETUID)
PyDoc_STRVAR(os_getuid__doc__,
"getuid($module, /)\n"
"--\n"
"\n"
"Return the current process\'s user id.");
#define OS_GETUID_METHODDEF \
{"getuid", (PyCFunction)os_getuid, METH_NOARGS, os_getuid__doc__},
static PyObject *
os_getuid_impl(PyObject *module);
static PyObject *
os_getuid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getuid_impl(module);
}
#endif /* defined(HAVE_GETUID) */
#if defined(HAVE_KILL)
PyDoc_STRVAR(os_kill__doc__,
"kill($module, pid, signal, /)\n"
"--\n"
"\n"
"Kill a process with a signal.");
#define OS_KILL_METHODDEF \
{"kill", (PyCFunction)os_kill, METH_FASTCALL, os_kill__doc__},
static PyObject *
os_kill_impl(PyObject *module, pid_t pid, Py_ssize_t signal);
static PyObject *
os_kill(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
pid_t pid;
Py_ssize_t signal;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_PID "n:kill",
&pid, &signal)) {
goto exit;
}
return_value = os_kill_impl(module, pid, signal);
exit:
return return_value;
}
#endif /* defined(HAVE_KILL) */
#if defined(HAVE_KILLPG)
PyDoc_STRVAR(os_killpg__doc__,
"killpg($module, pgid, signal, /)\n"
"--\n"
"\n"
"Kill a process group with a signal.");
#define OS_KILLPG_METHODDEF \
{"killpg", (PyCFunction)os_killpg, METH_FASTCALL, os_killpg__doc__},
static PyObject *
os_killpg_impl(PyObject *module, pid_t pgid, int signal);
static PyObject *
os_killpg(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
pid_t pgid;
int signal;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_PID "i:killpg",
&pgid, &signal)) {
goto exit;
}
return_value = os_killpg_impl(module, pgid, signal);
exit:
return return_value;
}
#endif /* defined(HAVE_KILLPG) */
#if defined(HAVE_PLOCK)
PyDoc_STRVAR(os_plock__doc__,
"plock($module, op, /)\n"
"--\n"
"\n"
"Lock program segments into memory.\");");
#define OS_PLOCK_METHODDEF \
{"plock", (PyCFunction)os_plock, METH_O, os_plock__doc__},
static PyObject *
os_plock_impl(PyObject *module, int op);
static PyObject *
os_plock(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int op;
if (!PyArg_Parse(arg, "i:plock", &op)) {
goto exit;
}
return_value = os_plock_impl(module, op);
exit:
return return_value;
}
#endif /* defined(HAVE_PLOCK) */
#if defined(HAVE_SETUID)
PyDoc_STRVAR(os_setuid__doc__,
"setuid($module, uid, /)\n"
"--\n"
"\n"
"Set the current process\'s user id.");
#define OS_SETUID_METHODDEF \
{"setuid", (PyCFunction)os_setuid, METH_O, os_setuid__doc__},
static PyObject *
os_setuid_impl(PyObject *module, uid_t uid);
static PyObject *
os_setuid(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
uid_t uid;
if (!PyArg_Parse(arg, "O&:setuid", _Py_Uid_Converter, &uid)) {
goto exit;
}
return_value = os_setuid_impl(module, uid);
exit:
return return_value;
}
#endif /* defined(HAVE_SETUID) */
#if defined(HAVE_SETEUID)
PyDoc_STRVAR(os_seteuid__doc__,
"seteuid($module, euid, /)\n"
"--\n"
"\n"
"Set the current process\'s effective user id.");
#define OS_SETEUID_METHODDEF \
{"seteuid", (PyCFunction)os_seteuid, METH_O, os_seteuid__doc__},
static PyObject *
os_seteuid_impl(PyObject *module, uid_t euid);
static PyObject *
os_seteuid(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
uid_t euid;
if (!PyArg_Parse(arg, "O&:seteuid", _Py_Uid_Converter, &euid)) {
goto exit;
}
return_value = os_seteuid_impl(module, euid);
exit:
return return_value;
}
#endif /* defined(HAVE_SETEUID) */
#if defined(HAVE_SETEGID)
PyDoc_STRVAR(os_setegid__doc__,
"setegid($module, egid, /)\n"
"--\n"
"\n"
"Set the current process\'s effective group id.");
#define OS_SETEGID_METHODDEF \
{"setegid", (PyCFunction)os_setegid, METH_O, os_setegid__doc__},
static PyObject *
os_setegid_impl(PyObject *module, gid_t egid);
static PyObject *
os_setegid(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
gid_t egid;
if (!PyArg_Parse(arg, "O&:setegid", _Py_Gid_Converter, &egid)) {
goto exit;
}
return_value = os_setegid_impl(module, egid);
exit:
return return_value;
}
#endif /* defined(HAVE_SETEGID) */
#if defined(HAVE_SETREUID)
PyDoc_STRVAR(os_setreuid__doc__,
"setreuid($module, ruid, euid, /)\n"
"--\n"
"\n"
"Set the current process\'s real and effective user ids.");
#define OS_SETREUID_METHODDEF \
{"setreuid", (PyCFunction)os_setreuid, METH_FASTCALL, os_setreuid__doc__},
static PyObject *
os_setreuid_impl(PyObject *module, uid_t ruid, uid_t euid);
static PyObject *
os_setreuid(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
uid_t ruid;
uid_t euid;
if (!_PyArg_ParseStack(args, nargs, "O&O&:setreuid",
_Py_Uid_Converter, &ruid, _Py_Uid_Converter, &euid)) {
goto exit;
}
return_value = os_setreuid_impl(module, ruid, euid);
exit:
return return_value;
}
#endif /* defined(HAVE_SETREUID) */
#if defined(HAVE_SETREGID)
PyDoc_STRVAR(os_setregid__doc__,
"setregid($module, rgid, egid, /)\n"
"--\n"
"\n"
"Set the current process\'s real and effective group ids.");
#define OS_SETREGID_METHODDEF \
{"setregid", (PyCFunction)os_setregid, METH_FASTCALL, os_setregid__doc__},
static PyObject *
os_setregid_impl(PyObject *module, gid_t rgid, gid_t egid);
static PyObject *
os_setregid(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
gid_t rgid;
gid_t egid;
if (!_PyArg_ParseStack(args, nargs, "O&O&:setregid",
_Py_Gid_Converter, &rgid, _Py_Gid_Converter, &egid)) {
goto exit;
}
return_value = os_setregid_impl(module, rgid, egid);
exit:
return return_value;
}
#endif /* defined(HAVE_SETREGID) */
#if defined(HAVE_SETGID)
PyDoc_STRVAR(os_setgid__doc__,
"setgid($module, gid, /)\n"
"--\n"
"\n"
"Set the current process\'s group id.");
#define OS_SETGID_METHODDEF \
{"setgid", (PyCFunction)os_setgid, METH_O, os_setgid__doc__},
static PyObject *
os_setgid_impl(PyObject *module, gid_t gid);
static PyObject *
os_setgid(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
gid_t gid;
if (!PyArg_Parse(arg, "O&:setgid", _Py_Gid_Converter, &gid)) {
goto exit;
}
return_value = os_setgid_impl(module, gid);
exit:
return return_value;
}
#endif /* defined(HAVE_SETGID) */
#if (HAVE_SETGROUPS)
PyDoc_STRVAR(os_setgroups__doc__,
"setgroups($module, groups, /)\n"
"--\n"
"\n"
"Set the groups of the current process to list.");
#define OS_SETGROUPS_METHODDEF \
{"setgroups", (PyCFunction)os_setgroups, METH_O, os_setgroups__doc__},
#endif /* (HAVE_SETGROUPS) */
#if defined(HAVE_WAIT3)
PyDoc_STRVAR(os_wait3__doc__,
"wait3($module, /, options)\n"
"--\n"
"\n"
"Wait for completion of a child process.\n"
"\n"
"Returns a tuple of information about the child process:\n"
" (pid, status, rusage)");
#define OS_WAIT3_METHODDEF \
{"wait3", (PyCFunction)os_wait3, METH_FASTCALL|METH_KEYWORDS, os_wait3__doc__},
static PyObject *
os_wait3_impl(PyObject *module, int options);
static PyObject *
os_wait3(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"options", NULL};
static _PyArg_Parser _parser = {"i:wait3", _keywords, 0};
int options;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&options)) {
goto exit;
}
return_value = os_wait3_impl(module, options);
exit:
return return_value;
}
#endif /* defined(HAVE_WAIT3) */
#if defined(HAVE_WAIT4)
PyDoc_STRVAR(os_wait4__doc__,
"wait4($module, /, pid, options)\n"
"--\n"
"\n"
"Wait for completion of a specific child process.\n"
"\n"
"Returns a tuple of information about the child process:\n"
" (pid, status, rusage)");
#define OS_WAIT4_METHODDEF \
{"wait4", (PyCFunction)os_wait4, METH_FASTCALL|METH_KEYWORDS, os_wait4__doc__},
static PyObject *
os_wait4_impl(PyObject *module, pid_t pid, int options);
static PyObject *
os_wait4(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"pid", "options", NULL};
static _PyArg_Parser _parser = {"" _Py_PARSE_PID "i:wait4", _keywords, 0};
pid_t pid;
int options;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&pid, &options)) {
goto exit;
}
return_value = os_wait4_impl(module, pid, options);
exit:
return return_value;
}
#endif /* defined(HAVE_WAIT4) */
#if (defined(HAVE_WAITID) && !defined(__APPLE__))
PyDoc_STRVAR(os_waitid__doc__,
"waitid($module, idtype, id, options, /)\n"
"--\n"
"\n"
"Returns the result of waiting for a process or processes.\n"
"\n"
" idtype\n"
" Must be one of be P_PID, P_PGID or P_ALL.\n"
" id\n"
" The id to wait on.\n"
" options\n"
" Constructed from the ORing of one or more of WEXITED, WSTOPPED\n"
" or WCONTINUED and additionally may be ORed with WNOHANG or WNOWAIT.\n"
"\n"
"Returns either waitid_result or None if WNOHANG is specified and there are\n"
"no children in a waitable state.");
#define OS_WAITID_METHODDEF \
{"waitid", (PyCFunction)os_waitid, METH_FASTCALL, os_waitid__doc__},
static PyObject *
os_waitid_impl(PyObject *module, idtype_t idtype, id_t id, int options);
static PyObject *
os_waitid(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
idtype_t idtype;
id_t id;
int options;
if (!_PyArg_ParseStack(args, nargs, "i" _Py_PARSE_PID "i:waitid",
&idtype, &id, &options)) {
goto exit;
}
return_value = os_waitid_impl(module, idtype, id, options);
exit:
return return_value;
}
#endif /* (defined(HAVE_WAITID) && !defined(__APPLE__)) */
#if defined(HAVE_WAITPID)
PyDoc_STRVAR(os_waitpid__doc__,
"waitpid($module, pid, options, /)\n"
"--\n"
"\n"
"Wait for completion of a given child process.\n"
"\n"
"Returns a tuple of information regarding the child process:\n"
" (pid, status)\n"
"\n"
"The options argument is ignored on Windows.");
#define OS_WAITPID_METHODDEF \
{"waitpid", (PyCFunction)os_waitpid, METH_FASTCALL, os_waitpid__doc__},
static PyObject *
os_waitpid_impl(PyObject *module, pid_t pid, int options);
static PyObject *
os_waitpid(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
pid_t pid;
int options;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_PID "i:waitpid",
&pid, &options)) {
goto exit;
}
return_value = os_waitpid_impl(module, pid, options);
exit:
return return_value;
}
#endif /* defined(HAVE_WAITPID) */
#if defined(HAVE_CWAIT)
PyDoc_STRVAR(os_waitpid__doc__,
"waitpid($module, pid, options, /)\n"
"--\n"
"\n"
"Wait for completion of a given process.\n"
"\n"
"Returns a tuple of information regarding the process:\n"
" (pid, status << 8)\n"
"\n"
"The options argument is ignored on Windows.");
#define OS_WAITPID_METHODDEF \
{"waitpid", (PyCFunction)os_waitpid, METH_FASTCALL, os_waitpid__doc__},
static PyObject *
os_waitpid_impl(PyObject *module, intptr_t pid, int options);
static PyObject *
os_waitpid(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
intptr_t pid;
int options;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_INTPTR "i:waitpid",
&pid, &options)) {
goto exit;
}
return_value = os_waitpid_impl(module, pid, options);
exit:
return return_value;
}
#endif /* defined(HAVE_CWAIT) */
#if defined(HAVE_WAIT)
PyDoc_STRVAR(os_wait__doc__,
"wait($module, /)\n"
"--\n"
"\n"
"Wait for completion of a child process.\n"
"\n"
"Returns a tuple of information about the child process:\n"
" (pid, status)");
#define OS_WAIT_METHODDEF \
{"wait", (PyCFunction)os_wait, METH_NOARGS, os_wait__doc__},
static PyObject *
os_wait_impl(PyObject *module);
static PyObject *
os_wait(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_wait_impl(module);
}
#endif /* defined(HAVE_WAIT) */
#if defined(HAVE_SYMLINK)
PyDoc_STRVAR(os_symlink__doc__,
"symlink($module, /, src, dst, target_is_directory=False, *, dir_fd=None)\n"
"--\n"
"\n"
"Create a symbolic link pointing to src named dst.\n"
"\n"
"target_is_directory is required on Windows if the target is to be\n"
" interpreted as a directory. (On Windows, symlink requires\n"
" Windows 6.0 or greater, and raises a NotImplementedError otherwise.)\n"
" target_is_directory is ignored on non-Windows platforms.\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"dir_fd may not be implemented on your platform.\n"
" If it is unavailable, using it will raise a NotImplementedError.");
#define OS_SYMLINK_METHODDEF \
{"symlink", (PyCFunction)os_symlink, METH_FASTCALL|METH_KEYWORDS, os_symlink__doc__},
static PyObject *
os_symlink_impl(PyObject *module, path_t *src, path_t *dst,
int target_is_directory, int dir_fd);
static PyObject *
os_symlink(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"src", "dst", "target_is_directory", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&O&|p$O&:symlink", _keywords, 0};
path_t src = PATH_T_INITIALIZE("symlink", "src", 0, 0);
path_t dst = PATH_T_INITIALIZE("symlink", "dst", 0, 0);
int target_is_directory = 0;
int dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &src, path_converter, &dst, &target_is_directory, SYMLINKAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
return_value = os_symlink_impl(module, &src, &dst, target_is_directory, dir_fd);
exit:
/* Cleanup for src */
path_cleanup(&src);
/* Cleanup for dst */
path_cleanup(&dst);
return return_value;
}
#endif /* defined(HAVE_SYMLINK) */
#if defined(HAVE_TIMES)
PyDoc_STRVAR(os_times__doc__,
"times($module, /)\n"
"--\n"
"\n"
"Return a collection containing process timing information.\n"
"\n"
"The object returned behaves like a named tuple with these fields:\n"
" (utime, stime, cutime, cstime, elapsed_time)\n"
"All fields are floating point numbers.");
#define OS_TIMES_METHODDEF \
{"times", (PyCFunction)os_times, METH_NOARGS, os_times__doc__},
static PyObject *
os_times_impl(PyObject *module);
static PyObject *
os_times(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_times_impl(module);
}
#endif /* defined(HAVE_TIMES) */
#if defined(HAVE_GETSID)
PyDoc_STRVAR(os_getsid__doc__,
"getsid($module, pid, /)\n"
"--\n"
"\n"
"Call the system call getsid(pid) and return the result.");
#define OS_GETSID_METHODDEF \
{"getsid", (PyCFunction)os_getsid, METH_O, os_getsid__doc__},
static PyObject *
os_getsid_impl(PyObject *module, pid_t pid);
static PyObject *
os_getsid(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
pid_t pid;
if (!PyArg_Parse(arg, "" _Py_PARSE_PID ":getsid", &pid)) {
goto exit;
}
return_value = os_getsid_impl(module, pid);
exit:
return return_value;
}
#endif /* defined(HAVE_GETSID) */
#if defined(HAVE_SETSID)
PyDoc_STRVAR(os_setsid__doc__,
"setsid($module, /)\n"
"--\n"
"\n"
"Call the system call setsid().");
#define OS_SETSID_METHODDEF \
{"setsid", (PyCFunction)os_setsid, METH_NOARGS, os_setsid__doc__},
static PyObject *
os_setsid_impl(PyObject *module);
static PyObject *
os_setsid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_setsid_impl(module);
}
#endif /* defined(HAVE_SETSID) */
#if defined(HAVE_SETPGID)
PyDoc_STRVAR(os_setpgid__doc__,
"setpgid($module, pid, pgrp, /)\n"
"--\n"
"\n"
"Call the system call setpgid(pid, pgrp).");
#define OS_SETPGID_METHODDEF \
{"setpgid", (PyCFunction)os_setpgid, METH_FASTCALL, os_setpgid__doc__},
static PyObject *
os_setpgid_impl(PyObject *module, pid_t pid, pid_t pgrp);
static PyObject *
os_setpgid(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
pid_t pid;
pid_t pgrp;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_PID "" _Py_PARSE_PID ":setpgid",
&pid, &pgrp)) {
goto exit;
}
return_value = os_setpgid_impl(module, pid, pgrp);
exit:
return return_value;
}
#endif /* defined(HAVE_SETPGID) */
#if defined(HAVE_TCGETPGRP)
PyDoc_STRVAR(os_tcgetpgrp__doc__,
"tcgetpgrp($module, fd, /)\n"
"--\n"
"\n"
"Return the process group associated with the terminal specified by fd.");
#define OS_TCGETPGRP_METHODDEF \
{"tcgetpgrp", (PyCFunction)os_tcgetpgrp, METH_O, os_tcgetpgrp__doc__},
static PyObject *
os_tcgetpgrp_impl(PyObject *module, int fd);
static PyObject *
os_tcgetpgrp(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int fd;
if (!PyArg_Parse(arg, "i:tcgetpgrp", &fd)) {
goto exit;
}
return_value = os_tcgetpgrp_impl(module, fd);
exit:
return return_value;
}
#endif /* defined(HAVE_TCGETPGRP) */
#if defined(HAVE_TCSETPGRP)
PyDoc_STRVAR(os_tcsetpgrp__doc__,
"tcsetpgrp($module, fd, pgid, /)\n"
"--\n"
"\n"
"Set the process group associated with the terminal specified by fd.");
#define OS_TCSETPGRP_METHODDEF \
{"tcsetpgrp", (PyCFunction)os_tcsetpgrp, METH_FASTCALL, os_tcsetpgrp__doc__},
static PyObject *
os_tcsetpgrp_impl(PyObject *module, int fd, pid_t pgid);
static PyObject *
os_tcsetpgrp(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
pid_t pgid;
if (!_PyArg_ParseStack(args, nargs, "i" _Py_PARSE_PID ":tcsetpgrp",
&fd, &pgid)) {
goto exit;
}
return_value = os_tcsetpgrp_impl(module, fd, pgid);
exit:
return return_value;
}
#endif /* defined(HAVE_TCSETPGRP) */
PyDoc_STRVAR(os_open__doc__,
"open($module, /, path, flags, mode=511, *, dir_fd=None)\n"
"--\n"
"\n"
"Open a file for low level IO. Returns a file descriptor (integer).\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"dir_fd may not be implemented on your platform.\n"
" If it is unavailable, using it will raise a NotImplementedError.");
#define OS_OPEN_METHODDEF \
{"open", (PyCFunction)os_open, METH_FASTCALL|METH_KEYWORDS, os_open__doc__},
static int
os_open_impl(PyObject *module, path_t *path, int flags, int mode, int dir_fd);
static PyObject *
os_open(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "flags", "mode", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&i|i$O&:open", _keywords, 0};
path_t path = PATH_T_INITIALIZE("open", "path", 0, 0);
int flags;
int mode = 511;
int dir_fd = DEFAULT_DIR_FD;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &flags, &mode, OPENAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
_return_value = os_open_impl(module, &path, flags, mode, dir_fd);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
PyDoc_STRVAR(os_close__doc__,
"close($module, /, fd)\n"
"--\n"
"\n"
"Close a file descriptor.");
#define OS_CLOSE_METHODDEF \
{"close", (PyCFunction)os_close, METH_FASTCALL|METH_KEYWORDS, os_close__doc__},
static PyObject *
os_close_impl(PyObject *module, int fd);
static PyObject *
os_close(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", NULL};
static _PyArg_Parser _parser = {"i:close", _keywords, 0};
int fd;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&fd)) {
goto exit;
}
return_value = os_close_impl(module, fd);
exit:
return return_value;
}
PyDoc_STRVAR(os_closerange__doc__,
"closerange($module, fd_low, fd_high, /)\n"
"--\n"
"\n"
"Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
#define OS_CLOSERANGE_METHODDEF \
{"closerange", (PyCFunction)os_closerange, METH_FASTCALL, os_closerange__doc__},
static PyObject *
os_closerange_impl(PyObject *module, int fd_low, int fd_high);
static PyObject *
os_closerange(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd_low;
int fd_high;
if (!_PyArg_ParseStack(args, nargs, "ii:closerange",
&fd_low, &fd_high)) {
goto exit;
}
return_value = os_closerange_impl(module, fd_low, fd_high);
exit:
return return_value;
}
PyDoc_STRVAR(os_dup__doc__,
"dup($module, fd, /)\n"
"--\n"
"\n"
"Return a duplicate of a file descriptor.");
#define OS_DUP_METHODDEF \
{"dup", (PyCFunction)os_dup, METH_O, os_dup__doc__},
static int
os_dup_impl(PyObject *module, int fd);
static PyObject *
os_dup(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int fd;
int _return_value;
if (!PyArg_Parse(arg, "i:dup", &fd)) {
goto exit;
}
_return_value = os_dup_impl(module, fd);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(os_dup2__doc__,
"dup2($module, /, fd, fd2, inheritable=True)\n"
"--\n"
"\n"
"Duplicate file descriptor.");
#define OS_DUP2_METHODDEF \
{"dup2", (PyCFunction)os_dup2, METH_FASTCALL|METH_KEYWORDS, os_dup2__doc__},
static PyObject *
os_dup2_impl(PyObject *module, int fd, int fd2, int inheritable);
static PyObject *
os_dup2(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", "fd2", "inheritable", NULL};
static _PyArg_Parser _parser = {"ii|p:dup2", _keywords, 0};
int fd;
int fd2;
int inheritable = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&fd, &fd2, &inheritable)) {
goto exit;
}
return_value = os_dup2_impl(module, fd, fd2, inheritable);
exit:
return return_value;
}
#if defined(HAVE_LOCKF)
PyDoc_STRVAR(os_lockf__doc__,
"lockf($module, fd, command, length, /)\n"
"--\n"
"\n"
"Apply, test or remove a POSIX lock on an open file descriptor.\n"
"\n"
" fd\n"
" An open file descriptor.\n"
" command\n"
" One of F_LOCK, F_TLOCK, F_ULOCK or F_TEST.\n"
" length\n"
" The number of bytes to lock, starting at the current position.");
#define OS_LOCKF_METHODDEF \
{"lockf", (PyCFunction)os_lockf, METH_FASTCALL, os_lockf__doc__},
static PyObject *
os_lockf_impl(PyObject *module, int fd, int command, Py_off_t length);
static PyObject *
os_lockf(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
int command;
Py_off_t length;
if (!_PyArg_ParseStack(args, nargs, "iiO&:lockf",
&fd, &command, Py_off_t_converter, &length)) {
goto exit;
}
return_value = os_lockf_impl(module, fd, command, length);
exit:
return return_value;
}
#endif /* defined(HAVE_LOCKF) */
PyDoc_STRVAR(os_lseek__doc__,
"lseek($module, fd, position, how, /)\n"
"--\n"
"\n"
"Set the position of a file descriptor. Return the new position.\n"
"\n"
"Return the new cursor position in number of bytes\n"
"relative to the beginning of the file.");
#define OS_LSEEK_METHODDEF \
{"lseek", (PyCFunction)os_lseek, METH_FASTCALL, os_lseek__doc__},
static Py_off_t
os_lseek_impl(PyObject *module, int fd, Py_off_t position, int how);
static PyObject *
os_lseek(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
Py_off_t position;
int how;
Py_off_t _return_value;
if (!_PyArg_ParseStack(args, nargs, "iO&i:lseek",
&fd, Py_off_t_converter, &position, &how)) {
goto exit;
}
_return_value = os_lseek_impl(module, fd, position, how);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromPy_off_t(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(os_read__doc__,
"read($module, fd, length, /)\n"
"--\n"
"\n"
"Read from a file descriptor. Returns a bytes object.");
#define OS_READ_METHODDEF \
{"read", (PyCFunction)os_read, METH_FASTCALL, os_read__doc__},
static PyObject *
os_read_impl(PyObject *module, int fd, Py_ssize_t length);
static PyObject *
os_read(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
Py_ssize_t length;
if (!_PyArg_ParseStack(args, nargs, "in:read",
&fd, &length)) {
goto exit;
}
return_value = os_read_impl(module, fd, length);
exit:
return return_value;
}
#if defined(HAVE_READV)
PyDoc_STRVAR(os_readv__doc__,
"readv($module, fd, buffers, /)\n"
"--\n"
"\n"
"Read from a file descriptor fd into an iterable of buffers.\n"
"\n"
"The buffers should be mutable buffers accepting bytes.\n"
"readv will transfer data into each buffer until it is full\n"
"and then move on to the next buffer in the sequence to hold\n"
"the rest of the data.\n"
"\n"
"readv returns the total number of bytes read,\n"
"which may be less than the total capacity of all the buffers.");
#define OS_READV_METHODDEF \
{"readv", (PyCFunction)os_readv, METH_FASTCALL, os_readv__doc__},
static Py_ssize_t
os_readv_impl(PyObject *module, int fd, PyObject *buffers);
static PyObject *
os_readv(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
PyObject *buffers;
Py_ssize_t _return_value;
if (!_PyArg_ParseStack(args, nargs, "iO:readv",
&fd, &buffers)) {
goto exit;
}
_return_value = os_readv_impl(module, fd, buffers);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_READV) */
#if defined(HAVE_PREAD)
PyDoc_STRVAR(os_pread__doc__,
"pread($module, fd, length, offset, /)\n"
"--\n"
"\n"
"Read a number of bytes from a file descriptor starting at a particular offset.\n"
"\n"
"Read length bytes from file descriptor fd, starting at offset bytes from\n"
"the beginning of the file. The file offset remains unchanged.");
#define OS_PREAD_METHODDEF \
{"pread", (PyCFunction)os_pread, METH_FASTCALL, os_pread__doc__},
static PyObject *
os_pread_impl(PyObject *module, int fd, int length, Py_off_t offset);
static PyObject *
os_pread(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
int length;
Py_off_t offset;
if (!_PyArg_ParseStack(args, nargs, "iiO&:pread",
&fd, &length, Py_off_t_converter, &offset)) {
goto exit;
}
return_value = os_pread_impl(module, fd, length, offset);
exit:
return return_value;
}
#endif /* defined(HAVE_PREAD) */
PyDoc_STRVAR(os_write__doc__,
"write($module, fd, data, /)\n"
"--\n"
"\n"
"Write a bytes object to a file descriptor.");
#define OS_WRITE_METHODDEF \
{"write", (PyCFunction)os_write, METH_FASTCALL, os_write__doc__},
static Py_ssize_t
os_write_impl(PyObject *module, int fd, Py_buffer *data);
static PyObject *
os_write(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
Py_buffer data = {NULL, NULL};
Py_ssize_t _return_value;
if (!_PyArg_ParseStack(args, nargs, "iy*:write",
&fd, &data)) {
goto exit;
}
_return_value = os_write_impl(module, fd, &data);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(os_fstat__doc__,
"fstat($module, /, fd)\n"
"--\n"
"\n"
"Perform a stat system call on the given file descriptor.\n"
"\n"
"Like stat(), but for an open file descriptor.\n"
"Equivalent to os.stat(fd).");
#define OS_FSTAT_METHODDEF \
{"fstat", (PyCFunction)os_fstat, METH_FASTCALL|METH_KEYWORDS, os_fstat__doc__},
static PyObject *
os_fstat_impl(PyObject *module, int fd);
static PyObject *
os_fstat(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", NULL};
static _PyArg_Parser _parser = {"i:fstat", _keywords, 0};
int fd;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&fd)) {
goto exit;
}
return_value = os_fstat_impl(module, fd);
exit:
return return_value;
}
PyDoc_STRVAR(os_isatty__doc__,
"isatty($module, fd, /)\n"
"--\n"
"\n"
"Return True if the fd is connected to a terminal.\n"
"\n"
"Return True if the file descriptor is an open file descriptor\n"
"connected to the slave end of a terminal.");
#define OS_ISATTY_METHODDEF \
{"isatty", (PyCFunction)os_isatty, METH_O, os_isatty__doc__},
static int
os_isatty_impl(PyObject *module, int fd);
static PyObject *
os_isatty(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int fd;
int _return_value;
if (!PyArg_Parse(arg, "i:isatty", &fd)) {
goto exit;
}
_return_value = os_isatty_impl(module, fd);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
#if defined(HAVE_PIPE)
PyDoc_STRVAR(os_pipe__doc__,
"pipe($module, /)\n"
"--\n"
"\n"
"Create a pipe.\n"
"\n"
"Returns a tuple of two file descriptors:\n"
" (read_fd, write_fd)");
#define OS_PIPE_METHODDEF \
{"pipe", (PyCFunction)os_pipe, METH_NOARGS, os_pipe__doc__},
static PyObject *
os_pipe_impl(PyObject *module);
static PyObject *
os_pipe(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_pipe_impl(module);
}
#endif /* defined(HAVE_PIPE) */
#if defined(HAVE_PIPE2)
PyDoc_STRVAR(os_pipe2__doc__,
"pipe2($module, flags, /)\n"
"--\n"
"\n"
"Create a pipe with flags set atomically.\n"
"\n"
"Returns a tuple of two file descriptors:\n"
" (read_fd, write_fd)\n"
"\n"
"flags can be constructed by ORing together one or more of these values:\n"
"O_NONBLOCK, O_CLOEXEC.");
#define OS_PIPE2_METHODDEF \
{"pipe2", (PyCFunction)os_pipe2, METH_O, os_pipe2__doc__},
static PyObject *
os_pipe2_impl(PyObject *module, int flags);
static PyObject *
os_pipe2(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int flags;
if (!PyArg_Parse(arg, "i:pipe2", &flags)) {
goto exit;
}
return_value = os_pipe2_impl(module, flags);
exit:
return return_value;
}
#endif /* defined(HAVE_PIPE2) */
#if defined(HAVE_WRITEV)
PyDoc_STRVAR(os_writev__doc__,
"writev($module, fd, buffers, /)\n"
"--\n"
"\n"
"Iterate over buffers, and write the contents of each to a file descriptor.\n"
"\n"
"Returns the total number of bytes written.\n"
"buffers must be a sequence of bytes-like objects.");
#define OS_WRITEV_METHODDEF \
{"writev", (PyCFunction)os_writev, METH_FASTCALL, os_writev__doc__},
static Py_ssize_t
os_writev_impl(PyObject *module, int fd, PyObject *buffers);
static PyObject *
os_writev(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
PyObject *buffers;
Py_ssize_t _return_value;
if (!_PyArg_ParseStack(args, nargs, "iO:writev",
&fd, &buffers)) {
goto exit;
}
_return_value = os_writev_impl(module, fd, buffers);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_WRITEV) */
#if defined(HAVE_PWRITE)
PyDoc_STRVAR(os_pwrite__doc__,
"pwrite($module, fd, buffer, offset, /)\n"
"--\n"
"\n"
"Write bytes to a file descriptor starting at a particular offset.\n"
"\n"
"Write buffer to fd, starting at offset bytes from the beginning of\n"
"the file. Returns the number of bytes writte. Does not change the\n"
"current file offset.");
#define OS_PWRITE_METHODDEF \
{"pwrite", (PyCFunction)os_pwrite, METH_FASTCALL, os_pwrite__doc__},
static Py_ssize_t
os_pwrite_impl(PyObject *module, int fd, Py_buffer *buffer, Py_off_t offset);
static PyObject *
os_pwrite(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
Py_buffer buffer = {NULL, NULL};
Py_off_t offset;
Py_ssize_t _return_value;
if (!_PyArg_ParseStack(args, nargs, "iy*O&:pwrite",
&fd, &buffer, Py_off_t_converter, &offset)) {
goto exit;
}
_return_value = os_pwrite_impl(module, fd, &buffer, offset);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
#endif /* defined(HAVE_PWRITE) */
#if defined(HAVE_MKFIFO)
PyDoc_STRVAR(os_mkfifo__doc__,
"mkfifo($module, /, path, mode=438, *, dir_fd=None)\n"
"--\n"
"\n"
"Create a \"fifo\" (a POSIX named pipe).\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"dir_fd may not be implemented on your platform.\n"
" If it is unavailable, using it will raise a NotImplementedError.");
#define OS_MKFIFO_METHODDEF \
{"mkfifo", (PyCFunction)os_mkfifo, METH_FASTCALL|METH_KEYWORDS, os_mkfifo__doc__},
static PyObject *
os_mkfifo_impl(PyObject *module, path_t *path, int mode, int dir_fd);
static PyObject *
os_mkfifo(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "mode", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&|i$O&:mkfifo", _keywords, 0};
path_t path = PATH_T_INITIALIZE("mkfifo", "path", 0, 0);
int mode = 438;
int dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &mode, MKFIFOAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
return_value = os_mkfifo_impl(module, &path, mode, dir_fd);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_MKFIFO) */
#if (defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV))
PyDoc_STRVAR(os_mknod__doc__,
"mknod($module, /, path, mode=384, device=0, *, dir_fd=None)\n"
"--\n"
"\n"
"Create a node in the file system.\n"
"\n"
"Create a node in the file system (file, device special file or named pipe)\n"
"at path. mode specifies both the permissions to use and the\n"
"type of node to be created, being combined (bitwise OR) with one of\n"
"S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. If S_IFCHR or S_IFBLK is set on mode,\n"
"device defines the newly created device special file (probably using\n"
"os.makedev()). Otherwise device is ignored.\n"
"\n"
"If dir_fd is not None, it should be a file descriptor open to a directory,\n"
" and path should be relative; path will then be relative to that directory.\n"
"dir_fd may not be implemented on your platform.\n"
" If it is unavailable, using it will raise a NotImplementedError.");
#define OS_MKNOD_METHODDEF \
{"mknod", (PyCFunction)os_mknod, METH_FASTCALL|METH_KEYWORDS, os_mknod__doc__},
static PyObject *
os_mknod_impl(PyObject *module, path_t *path, int mode, dev_t device,
int dir_fd);
static PyObject *
os_mknod(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "mode", "device", "dir_fd", NULL};
static _PyArg_Parser _parser = {"O&|iO&$O&:mknod", _keywords, 0};
path_t path = PATH_T_INITIALIZE("mknod", "path", 0, 0);
int mode = 384;
dev_t device = 0;
int dir_fd = DEFAULT_DIR_FD;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &mode, _Py_Dev_Converter, &device, MKNODAT_DIR_FD_CONVERTER, &dir_fd)) {
goto exit;
}
return_value = os_mknod_impl(module, &path, mode, device, dir_fd);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* (defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)) */
#if defined(HAVE_DEVICE_MACROS)
PyDoc_STRVAR(os_major__doc__,
"major($module, device, /)\n"
"--\n"
"\n"
"Extracts a device major number from a raw device number.");
#define OS_MAJOR_METHODDEF \
{"major", (PyCFunction)os_major, METH_O, os_major__doc__},
static unsigned int
os_major_impl(PyObject *module, dev_t device);
static PyObject *
os_major(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
dev_t device;
unsigned int _return_value;
if (!PyArg_Parse(arg, "O&:major", _Py_Dev_Converter, &device)) {
goto exit;
}
_return_value = os_major_impl(module, device);
if ((_return_value == (unsigned int)-1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromUnsignedLong((unsigned long)_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_DEVICE_MACROS) */
#if defined(HAVE_DEVICE_MACROS)
PyDoc_STRVAR(os_minor__doc__,
"minor($module, device, /)\n"
"--\n"
"\n"
"Extracts a device minor number from a raw device number.");
#define OS_MINOR_METHODDEF \
{"minor", (PyCFunction)os_minor, METH_O, os_minor__doc__},
static unsigned int
os_minor_impl(PyObject *module, dev_t device);
static PyObject *
os_minor(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
dev_t device;
unsigned int _return_value;
if (!PyArg_Parse(arg, "O&:minor", _Py_Dev_Converter, &device)) {
goto exit;
}
_return_value = os_minor_impl(module, device);
if ((_return_value == (unsigned int)-1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromUnsignedLong((unsigned long)_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_DEVICE_MACROS) */
#if defined(HAVE_DEVICE_MACROS)
PyDoc_STRVAR(os_makedev__doc__,
"makedev($module, major, minor, /)\n"
"--\n"
"\n"
"Composes a raw device number from the major and minor device numbers.");
#define OS_MAKEDEV_METHODDEF \
{"makedev", (PyCFunction)os_makedev, METH_FASTCALL, os_makedev__doc__},
static dev_t
os_makedev_impl(PyObject *module, int major, int minor);
static PyObject *
os_makedev(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int major;
int minor;
dev_t _return_value;
if (!_PyArg_ParseStack(args, nargs, "ii:makedev",
&major, &minor)) {
goto exit;
}
_return_value = os_makedev_impl(module, major, minor);
if ((_return_value == (dev_t)-1) && PyErr_Occurred()) {
goto exit;
}
return_value = _PyLong_FromDev(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_DEVICE_MACROS) */
#if (defined HAVE_FTRUNCATE || defined MS_WINDOWS)
PyDoc_STRVAR(os_ftruncate__doc__,
"ftruncate($module, fd, length, /)\n"
"--\n"
"\n"
"Truncate a file, specified by file descriptor, to a specific length.");
#define OS_FTRUNCATE_METHODDEF \
{"ftruncate", (PyCFunction)os_ftruncate, METH_FASTCALL, os_ftruncate__doc__},
static PyObject *
os_ftruncate_impl(PyObject *module, int fd, Py_off_t length);
static PyObject *
os_ftruncate(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
Py_off_t length;
if (!_PyArg_ParseStack(args, nargs, "iO&:ftruncate",
&fd, Py_off_t_converter, &length)) {
goto exit;
}
return_value = os_ftruncate_impl(module, fd, length);
exit:
return return_value;
}
#endif /* (defined HAVE_FTRUNCATE || defined MS_WINDOWS) */
#if (defined HAVE_TRUNCATE || defined MS_WINDOWS)
PyDoc_STRVAR(os_truncate__doc__,
"truncate($module, /, path, length)\n"
"--\n"
"\n"
"Truncate a file, specified by path, to a specific length.\n"
"\n"
"On some platforms, path may also be specified as an open file descriptor.\n"
" If this functionality is unavailable, using it raises an exception.");
#define OS_TRUNCATE_METHODDEF \
{"truncate", (PyCFunction)os_truncate, METH_FASTCALL|METH_KEYWORDS, os_truncate__doc__},
static PyObject *
os_truncate_impl(PyObject *module, path_t *path, Py_off_t length);
static PyObject *
os_truncate(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "length", NULL};
static _PyArg_Parser _parser = {"O&O&:truncate", _keywords, 0};
path_t path = PATH_T_INITIALIZE("truncate", "path", 0, PATH_HAVE_FTRUNCATE);
Py_off_t length;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, Py_off_t_converter, &length)) {
goto exit;
}
return_value = os_truncate_impl(module, &path, length);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* (defined HAVE_TRUNCATE || defined MS_WINDOWS) */
#if (defined(HAVE_POSIX_FALLOCATE) && !defined(POSIX_FADVISE_AIX_BUG))
PyDoc_STRVAR(os_posix_fallocate__doc__,
"posix_fallocate($module, fd, offset, length, /)\n"
"--\n"
"\n"
"Ensure a file has allocated at least a particular number of bytes on disk.\n"
"\n"
"Ensure that the file specified by fd encompasses a range of bytes\n"
"starting at offset bytes from the beginning and continuing for length bytes.");
#define OS_POSIX_FALLOCATE_METHODDEF \
{"posix_fallocate", (PyCFunction)os_posix_fallocate, METH_FASTCALL, os_posix_fallocate__doc__},
static PyObject *
os_posix_fallocate_impl(PyObject *module, int fd, Py_off_t offset,
Py_off_t length);
static PyObject *
os_posix_fallocate(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
Py_off_t offset;
Py_off_t length;
if (!_PyArg_ParseStack(args, nargs, "iO&O&:posix_fallocate",
&fd, Py_off_t_converter, &offset, Py_off_t_converter, &length)) {
goto exit;
}
return_value = os_posix_fallocate_impl(module, fd, offset, length);
exit:
return return_value;
}
#endif /* (defined(HAVE_POSIX_FALLOCATE) && !defined(POSIX_FADVISE_AIX_BUG)) */
#if (defined(HAVE_POSIX_FADVISE) && !defined(POSIX_FADVISE_AIX_BUG))
PyDoc_STRVAR(os_posix_fadvise__doc__,
"posix_fadvise($module, fd, offset, length, advice, /)\n"
"--\n"
"\n"
"Announce an intention to access data in a specific pattern.\n"
"\n"
"Announce an intention to access data in a specific pattern, thus allowing\n"
"the kernel to make optimizations.\n"
"The advice applies to the region of the file specified by fd starting at\n"
"offset and continuing for length bytes.\n"
"advice is one of POSIX_FADV_NORMAL, POSIX_FADV_SEQUENTIAL,\n"
"POSIX_FADV_RANDOM, POSIX_FADV_NOREUSE, POSIX_FADV_WILLNEED, or\n"
"POSIX_FADV_DONTNEED.");
#define OS_POSIX_FADVISE_METHODDEF \
{"posix_fadvise", (PyCFunction)os_posix_fadvise, METH_FASTCALL, os_posix_fadvise__doc__},
static PyObject *
os_posix_fadvise_impl(PyObject *module, int fd, Py_off_t offset,
Py_off_t length, int advice);
static PyObject *
os_posix_fadvise(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
Py_off_t offset;
Py_off_t length;
int advice;
if (!_PyArg_ParseStack(args, nargs, "iO&O&i:posix_fadvise",
&fd, Py_off_t_converter, &offset, Py_off_t_converter, &length, &advice)) {
goto exit;
}
return_value = os_posix_fadvise_impl(module, fd, offset, length, advice);
exit:
return return_value;
}
#endif /* (defined(HAVE_POSIX_FADVISE) && !defined(POSIX_FADVISE_AIX_BUG)) */
#if defined(HAVE_PUTENV) && defined(MS_WINDOWS)
PyDoc_STRVAR(os_putenv__doc__,
"putenv($module, name, value, /)\n"
"--\n"
"\n"
"Change or add an environment variable.");
#define OS_PUTENV_METHODDEF \
{"putenv", (PyCFunction)os_putenv, METH_FASTCALL, os_putenv__doc__},
static PyObject *
os_putenv_impl(PyObject *module, PyObject *name, PyObject *value);
static PyObject *
os_putenv(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *name;
PyObject *value;
if (!_PyArg_ParseStack(args, nargs, "UU:putenv",
&name, &value)) {
goto exit;
}
return_value = os_putenv_impl(module, name, value);
exit:
return return_value;
}
#endif /* defined(HAVE_PUTENV) && defined(MS_WINDOWS) */
#if defined(HAVE_PUTENV) && !defined(MS_WINDOWS)
PyDoc_STRVAR(os_putenv__doc__,
"putenv($module, name, value, /)\n"
"--\n"
"\n"
"Change or add an environment variable.");
#define OS_PUTENV_METHODDEF \
{"putenv", (PyCFunction)os_putenv, METH_FASTCALL, os_putenv__doc__},
static PyObject *
os_putenv_impl(PyObject *module, PyObject *name, PyObject *value);
static PyObject *
os_putenv(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *name = NULL;
PyObject *value = NULL;
if (!_PyArg_ParseStack(args, nargs, "O&O&:putenv",
PyUnicode_FSConverter, &name, PyUnicode_FSConverter, &value)) {
goto exit;
}
return_value = os_putenv_impl(module, name, value);
exit:
/* Cleanup for name */
Py_XDECREF(name);
/* Cleanup for value */
Py_XDECREF(value);
return return_value;
}
#endif /* defined(HAVE_PUTENV) && !defined(MS_WINDOWS) */
#if defined(HAVE_UNSETENV)
PyDoc_STRVAR(os_unsetenv__doc__,
"unsetenv($module, name, /)\n"
"--\n"
"\n"
"Delete an environment variable.");
#define OS_UNSETENV_METHODDEF \
{"unsetenv", (PyCFunction)os_unsetenv, METH_O, os_unsetenv__doc__},
static PyObject *
os_unsetenv_impl(PyObject *module, PyObject *name);
static PyObject *
os_unsetenv(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
PyObject *name = NULL;
if (!PyArg_Parse(arg, "O&:unsetenv", PyUnicode_FSConverter, &name)) {
goto exit;
}
return_value = os_unsetenv_impl(module, name);
exit:
/* Cleanup for name */
Py_XDECREF(name);
return return_value;
}
#endif /* defined(HAVE_UNSETENV) */
PyDoc_STRVAR(os_strerror__doc__,
"strerror($module, code, /)\n"
"--\n"
"\n"
"Translate an error code to a message string.");
#define OS_STRERROR_METHODDEF \
{"strerror", (PyCFunction)os_strerror, METH_O, os_strerror__doc__},
static PyObject *
os_strerror_impl(PyObject *module, int code);
static PyObject *
os_strerror(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int code;
if (!PyArg_Parse(arg, "i:strerror", &code)) {
goto exit;
}
return_value = os_strerror_impl(module, code);
exit:
return return_value;
}
#if defined(WCOREDUMP)
PyDoc_STRVAR(os_WCOREDUMP__doc__,
"WCOREDUMP($module, status, /)\n"
"--\n"
"\n"
"Return True if the process returning status was dumped to a core file.");
#define OS_WCOREDUMP_METHODDEF \
{"WCOREDUMP", (PyCFunction)os_WCOREDUMP, METH_O, os_WCOREDUMP__doc__},
static int
os_WCOREDUMP_impl(PyObject *module, int status);
static PyObject *
os_WCOREDUMP(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int status;
int _return_value;
if (!PyArg_Parse(arg, "i:WCOREDUMP", &status)) {
goto exit;
}
_return_value = os_WCOREDUMP_impl(module, status);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(WCOREDUMP) */
#if defined(WIFCONTINUED)
PyDoc_STRVAR(os_WIFCONTINUED__doc__,
"WIFCONTINUED($module, /, status)\n"
"--\n"
"\n"
"Return True if a particular process was continued from a job control stop.\n"
"\n"
"Return True if the process returning status was continued from a\n"
"job control stop.");
#define OS_WIFCONTINUED_METHODDEF \
{"WIFCONTINUED", (PyCFunction)os_WIFCONTINUED, METH_FASTCALL|METH_KEYWORDS, os_WIFCONTINUED__doc__},
static int
os_WIFCONTINUED_impl(PyObject *module, int status);
static PyObject *
os_WIFCONTINUED(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"status", NULL};
static _PyArg_Parser _parser = {"i:WIFCONTINUED", _keywords, 0};
int status;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&status)) {
goto exit;
}
_return_value = os_WIFCONTINUED_impl(module, status);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(WIFCONTINUED) */
#if defined(WIFSTOPPED)
PyDoc_STRVAR(os_WIFSTOPPED__doc__,
"WIFSTOPPED($module, /, status)\n"
"--\n"
"\n"
"Return True if the process returning status was stopped.");
#define OS_WIFSTOPPED_METHODDEF \
{"WIFSTOPPED", (PyCFunction)os_WIFSTOPPED, METH_FASTCALL|METH_KEYWORDS, os_WIFSTOPPED__doc__},
static int
os_WIFSTOPPED_impl(PyObject *module, int status);
static PyObject *
os_WIFSTOPPED(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"status", NULL};
static _PyArg_Parser _parser = {"i:WIFSTOPPED", _keywords, 0};
int status;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&status)) {
goto exit;
}
_return_value = os_WIFSTOPPED_impl(module, status);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(WIFSTOPPED) */
#if defined(WIFSIGNALED)
PyDoc_STRVAR(os_WIFSIGNALED__doc__,
"WIFSIGNALED($module, /, status)\n"
"--\n"
"\n"
"Return True if the process returning status was terminated by a signal.");
#define OS_WIFSIGNALED_METHODDEF \
{"WIFSIGNALED", (PyCFunction)os_WIFSIGNALED, METH_FASTCALL|METH_KEYWORDS, os_WIFSIGNALED__doc__},
static int
os_WIFSIGNALED_impl(PyObject *module, int status);
static PyObject *
os_WIFSIGNALED(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"status", NULL};
static _PyArg_Parser _parser = {"i:WIFSIGNALED", _keywords, 0};
int status;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&status)) {
goto exit;
}
_return_value = os_WIFSIGNALED_impl(module, status);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(WIFSIGNALED) */
#if defined(WIFEXITED)
PyDoc_STRVAR(os_WIFEXITED__doc__,
"WIFEXITED($module, /, status)\n"
"--\n"
"\n"
"Return True if the process returning status exited via the exit() system call.");
#define OS_WIFEXITED_METHODDEF \
{"WIFEXITED", (PyCFunction)os_WIFEXITED, METH_FASTCALL|METH_KEYWORDS, os_WIFEXITED__doc__},
static int
os_WIFEXITED_impl(PyObject *module, int status);
static PyObject *
os_WIFEXITED(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"status", NULL};
static _PyArg_Parser _parser = {"i:WIFEXITED", _keywords, 0};
int status;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&status)) {
goto exit;
}
_return_value = os_WIFEXITED_impl(module, status);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(WIFEXITED) */
#if defined(WEXITSTATUS)
PyDoc_STRVAR(os_WEXITSTATUS__doc__,
"WEXITSTATUS($module, /, status)\n"
"--\n"
"\n"
"Return the process return code from status.");
#define OS_WEXITSTATUS_METHODDEF \
{"WEXITSTATUS", (PyCFunction)os_WEXITSTATUS, METH_FASTCALL|METH_KEYWORDS, os_WEXITSTATUS__doc__},
static int
os_WEXITSTATUS_impl(PyObject *module, int status);
static PyObject *
os_WEXITSTATUS(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"status", NULL};
static _PyArg_Parser _parser = {"i:WEXITSTATUS", _keywords, 0};
int status;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&status)) {
goto exit;
}
_return_value = os_WEXITSTATUS_impl(module, status);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(WEXITSTATUS) */
#if defined(WTERMSIG)
PyDoc_STRVAR(os_WTERMSIG__doc__,
"WTERMSIG($module, /, status)\n"
"--\n"
"\n"
"Return the signal that terminated the process that provided the status value.");
#define OS_WTERMSIG_METHODDEF \
{"WTERMSIG", (PyCFunction)os_WTERMSIG, METH_FASTCALL|METH_KEYWORDS, os_WTERMSIG__doc__},
static int
os_WTERMSIG_impl(PyObject *module, int status);
static PyObject *
os_WTERMSIG(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"status", NULL};
static _PyArg_Parser _parser = {"i:WTERMSIG", _keywords, 0};
int status;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&status)) {
goto exit;
}
_return_value = os_WTERMSIG_impl(module, status);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(WTERMSIG) */
#if defined(WSTOPSIG)
PyDoc_STRVAR(os_WSTOPSIG__doc__,
"WSTOPSIG($module, /, status)\n"
"--\n"
"\n"
"Return the signal that stopped the process that provided the status value.");
#define OS_WSTOPSIG_METHODDEF \
{"WSTOPSIG", (PyCFunction)os_WSTOPSIG, METH_FASTCALL|METH_KEYWORDS, os_WSTOPSIG__doc__},
static int
os_WSTOPSIG_impl(PyObject *module, int status);
static PyObject *
os_WSTOPSIG(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"status", NULL};
static _PyArg_Parser _parser = {"i:WSTOPSIG", _keywords, 0};
int status;
int _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&status)) {
goto exit;
}
_return_value = os_WSTOPSIG_impl(module, status);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(WSTOPSIG) */
#if defined(HAVE_FSTATVFS)
PyDoc_STRVAR(os_fstatvfs__doc__,
"fstatvfs($module, fd, /)\n"
"--\n"
"\n"
"Perform an fstatvfs system call on the given fd.\n"
"\n"
"Equivalent to statvfs(fd).");
#define OS_FSTATVFS_METHODDEF \
{"fstatvfs", (PyCFunction)os_fstatvfs, METH_O, os_fstatvfs__doc__},
static PyObject *
os_fstatvfs_impl(PyObject *module, int fd);
static PyObject *
os_fstatvfs(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int fd;
if (!PyArg_Parse(arg, "i:fstatvfs", &fd)) {
goto exit;
}
return_value = os_fstatvfs_impl(module, fd);
exit:
return return_value;
}
#endif /* defined(HAVE_FSTATVFS) */
#if defined(HAVE_STATVFS)
PyDoc_STRVAR(os_statvfs__doc__,
"statvfs($module, /, path)\n"
"--\n"
"\n"
"Perform a statvfs system call on the given path.\n"
"\n"
"path may always be specified as a string.\n"
"On some platforms, path may also be specified as an open file descriptor.\n"
" If this functionality is unavailable, using it raises an exception.");
#define OS_STATVFS_METHODDEF \
{"statvfs", (PyCFunction)os_statvfs, METH_FASTCALL|METH_KEYWORDS, os_statvfs__doc__},
static PyObject *
os_statvfs_impl(PyObject *module, path_t *path);
static PyObject *
os_statvfs(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", NULL};
static _PyArg_Parser _parser = {"O&:statvfs", _keywords, 0};
path_t path = PATH_T_INITIALIZE("statvfs", "path", 0, PATH_HAVE_FSTATVFS);
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path)) {
goto exit;
}
return_value = os_statvfs_impl(module, &path);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_STATVFS) */
#if defined(MS_WINDOWS)
PyDoc_STRVAR(os__getdiskusage__doc__,
"_getdiskusage($module, /, path)\n"
"--\n"
"\n"
"Return disk usage statistics about the given path as a (total, free) tuple.");
#define OS__GETDISKUSAGE_METHODDEF \
{"_getdiskusage", (PyCFunction)os__getdiskusage, METH_FASTCALL|METH_KEYWORDS, os__getdiskusage__doc__},
static PyObject *
os__getdiskusage_impl(PyObject *module, Py_UNICODE *path);
static PyObject *
os__getdiskusage(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", NULL};
static _PyArg_Parser _parser = {"u:_getdiskusage", _keywords, 0};
Py_UNICODE *path;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&path)) {
goto exit;
}
return_value = os__getdiskusage_impl(module, path);
exit:
return return_value;
}
#endif /* defined(MS_WINDOWS) */
#if defined(HAVE_FPATHCONF)
PyDoc_STRVAR(os_fpathconf__doc__,
"fpathconf($module, fd, name, /)\n"
"--\n"
"\n"
"Return the configuration limit name for the file descriptor fd.\n"
"\n"
"If there is no limit, return -1.");
#define OS_FPATHCONF_METHODDEF \
{"fpathconf", (PyCFunction)os_fpathconf, METH_FASTCALL, os_fpathconf__doc__},
static long
os_fpathconf_impl(PyObject *module, int fd, int name);
static PyObject *
os_fpathconf(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
int name;
long _return_value;
if (!_PyArg_ParseStack(args, nargs, "iO&:fpathconf",
&fd, conv_path_confname, &name)) {
goto exit;
}
_return_value = os_fpathconf_impl(module, fd, name);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_FPATHCONF) */
#if defined(HAVE_PATHCONF)
PyDoc_STRVAR(os_pathconf__doc__,
"pathconf($module, /, path, name)\n"
"--\n"
"\n"
"Return the configuration limit name for the file or directory path.\n"
"\n"
"If there is no limit, return -1.\n"
"On some platforms, path may also be specified as an open file descriptor.\n"
" If this functionality is unavailable, using it raises an exception.");
#define OS_PATHCONF_METHODDEF \
{"pathconf", (PyCFunction)os_pathconf, METH_FASTCALL|METH_KEYWORDS, os_pathconf__doc__},
static long
os_pathconf_impl(PyObject *module, path_t *path, int name);
static PyObject *
os_pathconf(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "name", NULL};
static _PyArg_Parser _parser = {"O&O&:pathconf", _keywords, 0};
path_t path = PATH_T_INITIALIZE("pathconf", "path", 0, PATH_HAVE_FPATHCONF);
int name;
long _return_value;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, conv_path_confname, &name)) {
goto exit;
}
_return_value = os_pathconf_impl(module, &path, name);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong(_return_value);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(HAVE_PATHCONF) */
#if defined(HAVE_CONFSTR)
PyDoc_STRVAR(os_confstr__doc__,
"confstr($module, name, /)\n"
"--\n"
"\n"
"Return a string-valued system configuration variable.");
#define OS_CONFSTR_METHODDEF \
{"confstr", (PyCFunction)os_confstr, METH_O, os_confstr__doc__},
static PyObject *
os_confstr_impl(PyObject *module, int name);
static PyObject *
os_confstr(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int name;
if (!PyArg_Parse(arg, "O&:confstr", conv_confstr_confname, &name)) {
goto exit;
}
return_value = os_confstr_impl(module, name);
exit:
return return_value;
}
#endif /* defined(HAVE_CONFSTR) */
#if defined(HAVE_SYSCONF)
PyDoc_STRVAR(os_sysconf__doc__,
"sysconf($module, name, /)\n"
"--\n"
"\n"
"Return an integer-valued system configuration variable.");
#define OS_SYSCONF_METHODDEF \
{"sysconf", (PyCFunction)os_sysconf, METH_O, os_sysconf__doc__},
static long
os_sysconf_impl(PyObject *module, int name);
static PyObject *
os_sysconf(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int name;
long _return_value;
if (!PyArg_Parse(arg, "O&:sysconf", conv_sysconf_confname, &name)) {
goto exit;
}
_return_value = os_sysconf_impl(module, name);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong(_return_value);
exit:
return return_value;
}
#endif /* defined(HAVE_SYSCONF) */
PyDoc_STRVAR(os_abort__doc__,
"abort($module, /)\n"
"--\n"
"\n"
"Abort the interpreter immediately.\n"
"\n"
"This function \'dumps core\' or otherwise fails in the hardest way possible\n"
"on the hosting operating system. This function never returns.");
#define OS_ABORT_METHODDEF \
{"abort", (PyCFunction)os_abort, METH_NOARGS, os_abort__doc__},
static PyObject *
os_abort_impl(PyObject *module);
static PyObject *
os_abort(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_abort_impl(module);
}
#if defined(MS_WINDOWS)
PyDoc_STRVAR(os_startfile__doc__,
"startfile($module, /, filepath, operation=None)\n"
"--\n"
"\n"
"startfile(filepath [, operation])\n"
"\n"
"Start a file with its associated application.\n"
"\n"
"When \"operation\" is not specified or \"open\", this acts like\n"
"double-clicking the file in Explorer, or giving the file name as an\n"
"argument to the DOS \"start\" command: the file is opened with whatever\n"
"application (if any) its extension is associated.\n"
"When another \"operation\" is given, it specifies what should be done with\n"
"the file. A typical operation is \"print\".\n"
"\n"
"startfile returns as soon as the associated application is launched.\n"
"There is no option to wait for the application to close, and no way\n"
"to retrieve the application\'s exit status.\n"
"\n"
"The filepath is relative to the current directory. If you want to use\n"
"an absolute path, make sure the first character is not a slash (\"/\");\n"
"the underlying Win32 ShellExecute function doesn\'t work if it is.");
#define OS_STARTFILE_METHODDEF \
{"startfile", (PyCFunction)os_startfile, METH_FASTCALL|METH_KEYWORDS, os_startfile__doc__},
static PyObject *
os_startfile_impl(PyObject *module, path_t *filepath, Py_UNICODE *operation);
static PyObject *
os_startfile(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"filepath", "operation", NULL};
static _PyArg_Parser _parser = {"O&|u:startfile", _keywords, 0};
path_t filepath = PATH_T_INITIALIZE("startfile", "filepath", 0, 0);
Py_UNICODE *operation = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &filepath, &operation)) {
goto exit;
}
return_value = os_startfile_impl(module, &filepath, operation);
exit:
/* Cleanup for filepath */
path_cleanup(&filepath);
return return_value;
}
#endif /* defined(MS_WINDOWS) */
#if defined(HAVE_GETLOADAVG)
PyDoc_STRVAR(os_getloadavg__doc__,
"getloadavg($module, /)\n"
"--\n"
"\n"
"Return average recent system load information.\n"
"\n"
"Return the number of processes in the system run queue averaged over\n"
"the last 1, 5, and 15 minutes as a tuple of three floats.\n"
"Raises OSError if the load average was unobtainable.");
#define OS_GETLOADAVG_METHODDEF \
{"getloadavg", (PyCFunction)os_getloadavg, METH_NOARGS, os_getloadavg__doc__},
static PyObject *
os_getloadavg_impl(PyObject *module);
static PyObject *
os_getloadavg(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getloadavg_impl(module);
}
#endif /* defined(HAVE_GETLOADAVG) */
PyDoc_STRVAR(os_device_encoding__doc__,
"device_encoding($module, /, fd)\n"
"--\n"
"\n"
"Return a string describing the encoding of a terminal\'s file descriptor.\n"
"\n"
"The file descriptor must be attached to a terminal.\n"
"If the device is not a terminal, return None.");
#define OS_DEVICE_ENCODING_METHODDEF \
{"device_encoding", (PyCFunction)os_device_encoding, METH_FASTCALL|METH_KEYWORDS, os_device_encoding__doc__},
static PyObject *
os_device_encoding_impl(PyObject *module, int fd);
static PyObject *
os_device_encoding(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"fd", NULL};
static _PyArg_Parser _parser = {"i:device_encoding", _keywords, 0};
int fd;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&fd)) {
goto exit;
}
return_value = os_device_encoding_impl(module, fd);
exit:
return return_value;
}
#if defined(HAVE_SETRESUID)
PyDoc_STRVAR(os_setresuid__doc__,
"setresuid($module, ruid, euid, suid, /)\n"
"--\n"
"\n"
"Set the current process\'s real, effective, and saved user ids.");
#define OS_SETRESUID_METHODDEF \
{"setresuid", (PyCFunction)os_setresuid, METH_FASTCALL, os_setresuid__doc__},
static PyObject *
os_setresuid_impl(PyObject *module, uid_t ruid, uid_t euid, uid_t suid);
static PyObject *
os_setresuid(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
uid_t ruid;
uid_t euid;
uid_t suid;
if (!_PyArg_ParseStack(args, nargs, "O&O&O&:setresuid",
_Py_Uid_Converter, &ruid, _Py_Uid_Converter, &euid, _Py_Uid_Converter, &suid)) {
goto exit;
}
return_value = os_setresuid_impl(module, ruid, euid, suid);
exit:
return return_value;
}
#endif /* defined(HAVE_SETRESUID) */
#if defined(HAVE_SETRESGID)
PyDoc_STRVAR(os_setresgid__doc__,
"setresgid($module, rgid, egid, sgid, /)\n"
"--\n"
"\n"
"Set the current process\'s real, effective, and saved group ids.");
#define OS_SETRESGID_METHODDEF \
{"setresgid", (PyCFunction)os_setresgid, METH_FASTCALL, os_setresgid__doc__},
static PyObject *
os_setresgid_impl(PyObject *module, gid_t rgid, gid_t egid, gid_t sgid);
static PyObject *
os_setresgid(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
gid_t rgid;
gid_t egid;
gid_t sgid;
if (!_PyArg_ParseStack(args, nargs, "O&O&O&:setresgid",
_Py_Gid_Converter, &rgid, _Py_Gid_Converter, &egid, _Py_Gid_Converter, &sgid)) {
goto exit;
}
return_value = os_setresgid_impl(module, rgid, egid, sgid);
exit:
return return_value;
}
#endif /* defined(HAVE_SETRESGID) */
#if defined(HAVE_GETRESUID)
PyDoc_STRVAR(os_getresuid__doc__,
"getresuid($module, /)\n"
"--\n"
"\n"
"Return a tuple of the current process\'s real, effective, and saved user ids.");
#define OS_GETRESUID_METHODDEF \
{"getresuid", (PyCFunction)os_getresuid, METH_NOARGS, os_getresuid__doc__},
static PyObject *
os_getresuid_impl(PyObject *module);
static PyObject *
os_getresuid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getresuid_impl(module);
}
#endif /* defined(HAVE_GETRESUID) */
#if defined(HAVE_GETRESGID)
PyDoc_STRVAR(os_getresgid__doc__,
"getresgid($module, /)\n"
"--\n"
"\n"
"Return a tuple of the current process\'s real, effective, and saved group ids.");
#define OS_GETRESGID_METHODDEF \
{"getresgid", (PyCFunction)os_getresgid, METH_NOARGS, os_getresgid__doc__},
static PyObject *
os_getresgid_impl(PyObject *module);
static PyObject *
os_getresgid(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_getresgid_impl(module);
}
#endif /* defined(HAVE_GETRESGID) */
#if defined(USE_XATTRS)
PyDoc_STRVAR(os_getxattr__doc__,
"getxattr($module, /, path, attribute, *, follow_symlinks=True)\n"
"--\n"
"\n"
"Return the value of extended attribute attribute on path.\n"
"\n"
"path may be either a string, a path-like object, or an open file descriptor.\n"
"If follow_symlinks is False, and the last element of the path is a symbolic\n"
" link, getxattr will examine the symbolic link itself instead of the file\n"
" the link points to.");
#define OS_GETXATTR_METHODDEF \
{"getxattr", (PyCFunction)os_getxattr, METH_FASTCALL|METH_KEYWORDS, os_getxattr__doc__},
static PyObject *
os_getxattr_impl(PyObject *module, path_t *path, path_t *attribute,
int follow_symlinks);
static PyObject *
os_getxattr(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "attribute", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&O&|$p:getxattr", _keywords, 0};
path_t path = PATH_T_INITIALIZE("getxattr", "path", 0, 1);
path_t attribute = PATH_T_INITIALIZE("getxattr", "attribute", 0, 0);
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, path_converter, &attribute, &follow_symlinks)) {
goto exit;
}
return_value = os_getxattr_impl(module, &path, &attribute, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
/* Cleanup for attribute */
path_cleanup(&attribute);
return return_value;
}
#endif /* defined(USE_XATTRS) */
#if defined(USE_XATTRS)
PyDoc_STRVAR(os_setxattr__doc__,
"setxattr($module, /, path, attribute, value, flags=0, *,\n"
" follow_symlinks=True)\n"
"--\n"
"\n"
"Set extended attribute attribute on path to value.\n"
"\n"
"path may be either a string, a path-like object, or an open file descriptor.\n"
"If follow_symlinks is False, and the last element of the path is a symbolic\n"
" link, setxattr will modify the symbolic link itself instead of the file\n"
" the link points to.");
#define OS_SETXATTR_METHODDEF \
{"setxattr", (PyCFunction)os_setxattr, METH_FASTCALL|METH_KEYWORDS, os_setxattr__doc__},
static PyObject *
os_setxattr_impl(PyObject *module, path_t *path, path_t *attribute,
Py_buffer *value, int flags, int follow_symlinks);
static PyObject *
os_setxattr(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "attribute", "value", "flags", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&O&y*|i$p:setxattr", _keywords, 0};
path_t path = PATH_T_INITIALIZE("setxattr", "path", 0, 1);
path_t attribute = PATH_T_INITIALIZE("setxattr", "attribute", 0, 0);
Py_buffer value = {NULL, NULL};
int flags = 0;
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, path_converter, &attribute, &value, &flags, &follow_symlinks)) {
goto exit;
}
return_value = os_setxattr_impl(module, &path, &attribute, &value, flags, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
/* Cleanup for attribute */
path_cleanup(&attribute);
/* Cleanup for value */
if (value.obj) {
PyBuffer_Release(&value);
}
return return_value;
}
#endif /* defined(USE_XATTRS) */
#if defined(USE_XATTRS)
PyDoc_STRVAR(os_removexattr__doc__,
"removexattr($module, /, path, attribute, *, follow_symlinks=True)\n"
"--\n"
"\n"
"Remove extended attribute attribute on path.\n"
"\n"
"path may be either a string, a path-like object, or an open file descriptor.\n"
"If follow_symlinks is False, and the last element of the path is a symbolic\n"
" link, removexattr will modify the symbolic link itself instead of the file\n"
" the link points to.");
#define OS_REMOVEXATTR_METHODDEF \
{"removexattr", (PyCFunction)os_removexattr, METH_FASTCALL|METH_KEYWORDS, os_removexattr__doc__},
static PyObject *
os_removexattr_impl(PyObject *module, path_t *path, path_t *attribute,
int follow_symlinks);
static PyObject *
os_removexattr(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "attribute", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"O&O&|$p:removexattr", _keywords, 0};
path_t path = PATH_T_INITIALIZE("removexattr", "path", 0, 1);
path_t attribute = PATH_T_INITIALIZE("removexattr", "attribute", 0, 0);
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, path_converter, &attribute, &follow_symlinks)) {
goto exit;
}
return_value = os_removexattr_impl(module, &path, &attribute, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
/* Cleanup for attribute */
path_cleanup(&attribute);
return return_value;
}
#endif /* defined(USE_XATTRS) */
#if defined(USE_XATTRS)
PyDoc_STRVAR(os_listxattr__doc__,
"listxattr($module, /, path=None, *, follow_symlinks=True)\n"
"--\n"
"\n"
"Return a list of extended attributes on path.\n"
"\n"
"path may be either None, a string, a path-like object, or an open file descriptor.\n"
"if path is None, listxattr will examine the current directory.\n"
"If follow_symlinks is False, and the last element of the path is a symbolic\n"
" link, listxattr will examine the symbolic link itself instead of the file\n"
" the link points to.");
#define OS_LISTXATTR_METHODDEF \
{"listxattr", (PyCFunction)os_listxattr, METH_FASTCALL|METH_KEYWORDS, os_listxattr__doc__},
static PyObject *
os_listxattr_impl(PyObject *module, path_t *path, int follow_symlinks);
static PyObject *
os_listxattr(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "follow_symlinks", NULL};
static _PyArg_Parser _parser = {"|O&$p:listxattr", _keywords, 0};
path_t path = PATH_T_INITIALIZE("listxattr", "path", 1, 1);
int follow_symlinks = 1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
path_converter, &path, &follow_symlinks)) {
goto exit;
}
return_value = os_listxattr_impl(module, &path, follow_symlinks);
exit:
/* Cleanup for path */
path_cleanup(&path);
return return_value;
}
#endif /* defined(USE_XATTRS) */
PyDoc_STRVAR(os_urandom__doc__,
"urandom($module, size, /)\n"
"--\n"
"\n"
"Return a bytes object containing random bytes suitable for cryptographic use.");
#define OS_URANDOM_METHODDEF \
{"urandom", (PyCFunction)os_urandom, METH_O, os_urandom__doc__},
static PyObject *
os_urandom_impl(PyObject *module, Py_ssize_t size);
static PyObject *
os_urandom(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
Py_ssize_t size;
if (!PyArg_Parse(arg, "n:urandom", &size)) {
goto exit;
}
return_value = os_urandom_impl(module, size);
exit:
return return_value;
}
PyDoc_STRVAR(os_cpu_count__doc__,
"cpu_count($module, /)\n"
"--\n"
"\n"
"Return the number of CPUs in the system; return None if indeterminable.\n"
"\n"
"This number is not equivalent to the number of CPUs the current process can\n"
"use. The number of usable CPUs can be obtained with\n"
"``len(os.sched_getaffinity(0))``");
#define OS_CPU_COUNT_METHODDEF \
{"cpu_count", (PyCFunction)os_cpu_count, METH_NOARGS, os_cpu_count__doc__},
static PyObject *
os_cpu_count_impl(PyObject *module);
static PyObject *
os_cpu_count(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return os_cpu_count_impl(module);
}
PyDoc_STRVAR(os_get_inheritable__doc__,
"get_inheritable($module, fd, /)\n"
"--\n"
"\n"
"Get the close-on-exe flag of the specified file descriptor.");
#define OS_GET_INHERITABLE_METHODDEF \
{"get_inheritable", (PyCFunction)os_get_inheritable, METH_O, os_get_inheritable__doc__},
static int
os_get_inheritable_impl(PyObject *module, int fd);
static PyObject *
os_get_inheritable(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
int fd;
int _return_value;
if (!PyArg_Parse(arg, "i:get_inheritable", &fd)) {
goto exit;
}
_return_value = os_get_inheritable_impl(module, fd);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(os_set_inheritable__doc__,
"set_inheritable($module, fd, inheritable, /)\n"
"--\n"
"\n"
"Set the inheritable flag of the specified file descriptor.");
#define OS_SET_INHERITABLE_METHODDEF \
{"set_inheritable", (PyCFunction)os_set_inheritable, METH_FASTCALL, os_set_inheritable__doc__},
static PyObject *
os_set_inheritable_impl(PyObject *module, int fd, int inheritable);
static PyObject *
os_set_inheritable(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int fd;
int inheritable;
if (!_PyArg_ParseStack(args, nargs, "ii:set_inheritable",
&fd, &inheritable)) {
goto exit;
}
return_value = os_set_inheritable_impl(module, fd, inheritable);
exit:
return return_value;
}
#if defined(MS_WINDOWS)
PyDoc_STRVAR(os_get_handle_inheritable__doc__,
"get_handle_inheritable($module, handle, /)\n"
"--\n"
"\n"
"Get the close-on-exe flag of the specified file descriptor.");
#define OS_GET_HANDLE_INHERITABLE_METHODDEF \
{"get_handle_inheritable", (PyCFunction)os_get_handle_inheritable, METH_O, os_get_handle_inheritable__doc__},
static int
os_get_handle_inheritable_impl(PyObject *module, intptr_t handle);
static PyObject *
os_get_handle_inheritable(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
intptr_t handle;
int _return_value;
if (!PyArg_Parse(arg, "" _Py_PARSE_INTPTR ":get_handle_inheritable", &handle)) {
goto exit;
}
_return_value = os_get_handle_inheritable_impl(module, handle);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyBool_FromLong((long)_return_value);
exit:
return return_value;
}
#endif /* defined(MS_WINDOWS) */
#if defined(MS_WINDOWS)
PyDoc_STRVAR(os_set_handle_inheritable__doc__,
"set_handle_inheritable($module, handle, inheritable, /)\n"
"--\n"
"\n"
"Set the inheritable flag of the specified handle.");
#define OS_SET_HANDLE_INHERITABLE_METHODDEF \
{"set_handle_inheritable", (PyCFunction)os_set_handle_inheritable, METH_FASTCALL, os_set_handle_inheritable__doc__},
static PyObject *
os_set_handle_inheritable_impl(PyObject *module, intptr_t handle,
int inheritable);
static PyObject *
os_set_handle_inheritable(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
intptr_t handle;
int inheritable;
if (!_PyArg_ParseStack(args, nargs, "" _Py_PARSE_INTPTR "p:set_handle_inheritable",
&handle, &inheritable)) {
goto exit;
}
return_value = os_set_handle_inheritable_impl(module, handle, inheritable);
exit:
return return_value;
}
#endif /* defined(MS_WINDOWS) */
PyDoc_STRVAR(os_fspath__doc__,
"fspath($module, /, path)\n"
"--\n"
"\n"
"Return the file system path representation of the object.\n"
"\n"
"If the object is str or bytes, then allow it to pass through as-is. If the\n"
"object defines __fspath__(), then return the result of that method. All other\n"
"types raise a TypeError.");
#define OS_FSPATH_METHODDEF \
{"fspath", (PyCFunction)os_fspath, METH_FASTCALL|METH_KEYWORDS, os_fspath__doc__},
static PyObject *
os_fspath_impl(PyObject *module, PyObject *path);
static PyObject *
os_fspath(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", NULL};
static _PyArg_Parser _parser = {"O:fspath", _keywords, 0};
PyObject *path;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&path)) {
goto exit;
}
return_value = os_fspath_impl(module, path);
exit:
return return_value;
}
#if defined(HAVE_GETRANDOM_SYSCALL)
PyDoc_STRVAR(os_getrandom__doc__,
"getrandom($module, /, size, flags=0)\n"
"--\n"
"\n"
"Obtain a series of random bytes.");
#define OS_GETRANDOM_METHODDEF \
{"getrandom", (PyCFunction)os_getrandom, METH_FASTCALL|METH_KEYWORDS, os_getrandom__doc__},
static PyObject *
os_getrandom_impl(PyObject *module, Py_ssize_t size, int flags);
static PyObject *
os_getrandom(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"size", "flags", NULL};
static _PyArg_Parser _parser = {"n|i:getrandom", _keywords, 0};
Py_ssize_t size;
int flags = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&size, &flags)) {
goto exit;
}
return_value = os_getrandom_impl(module, size, flags);
exit:
return return_value;
}
#endif /* defined(HAVE_GETRANDOM_SYSCALL) */
#ifndef OS_TTYNAME_METHODDEF
#define OS_TTYNAME_METHODDEF
#endif /* !defined(OS_TTYNAME_METHODDEF) */
#ifndef OS_CTERMID_METHODDEF
#define OS_CTERMID_METHODDEF
#endif /* !defined(OS_CTERMID_METHODDEF) */
#ifndef OS_FCHDIR_METHODDEF
#define OS_FCHDIR_METHODDEF
#endif /* !defined(OS_FCHDIR_METHODDEF) */
#ifndef OS_FCHMOD_METHODDEF
#define OS_FCHMOD_METHODDEF
#endif /* !defined(OS_FCHMOD_METHODDEF) */
#ifndef OS_LCHMOD_METHODDEF
#define OS_LCHMOD_METHODDEF
#endif /* !defined(OS_LCHMOD_METHODDEF) */
#ifndef OS_CHFLAGS_METHODDEF
#define OS_CHFLAGS_METHODDEF
#endif /* !defined(OS_CHFLAGS_METHODDEF) */
#ifndef OS_LCHFLAGS_METHODDEF
#define OS_LCHFLAGS_METHODDEF
#endif /* !defined(OS_LCHFLAGS_METHODDEF) */
#ifndef OS_CHROOT_METHODDEF
#define OS_CHROOT_METHODDEF
#endif /* !defined(OS_CHROOT_METHODDEF) */
#ifndef OS_FSYNC_METHODDEF
#define OS_FSYNC_METHODDEF
#endif /* !defined(OS_FSYNC_METHODDEF) */
#ifndef OS_SYNC_METHODDEF
#define OS_SYNC_METHODDEF
#endif /* !defined(OS_SYNC_METHODDEF) */
#ifndef OS_FDATASYNC_METHODDEF
#define OS_FDATASYNC_METHODDEF
#endif /* !defined(OS_FDATASYNC_METHODDEF) */
#ifndef OS_CHOWN_METHODDEF
#define OS_CHOWN_METHODDEF
#endif /* !defined(OS_CHOWN_METHODDEF) */
#ifndef OS_FCHOWN_METHODDEF
#define OS_FCHOWN_METHODDEF
#endif /* !defined(OS_FCHOWN_METHODDEF) */
#ifndef OS_LCHOWN_METHODDEF
#define OS_LCHOWN_METHODDEF
#endif /* !defined(OS_LCHOWN_METHODDEF) */
#ifndef OS_LINK_METHODDEF
#define OS_LINK_METHODDEF
#endif /* !defined(OS_LINK_METHODDEF) */
#ifndef OS__GETFULLPATHNAME_METHODDEF
#define OS__GETFULLPATHNAME_METHODDEF
#endif /* !defined(OS__GETFULLPATHNAME_METHODDEF) */
#ifndef OS__ISDIR_METHODDEF
#define OS__ISDIR_METHODDEF
#endif /* !defined(OS__ISDIR_METHODDEF) */
#ifndef OS_NICE_METHODDEF
#define OS_NICE_METHODDEF
#endif /* !defined(OS_NICE_METHODDEF) */
#ifndef OS_GETPRIORITY_METHODDEF
#define OS_GETPRIORITY_METHODDEF
#endif /* !defined(OS_GETPRIORITY_METHODDEF) */
#ifndef OS_SETPRIORITY_METHODDEF
#define OS_SETPRIORITY_METHODDEF
#endif /* !defined(OS_SETPRIORITY_METHODDEF) */
#ifndef OS_SYSTEM_METHODDEF
#define OS_SYSTEM_METHODDEF
#endif /* !defined(OS_SYSTEM_METHODDEF) */
#ifndef OS_UNAME_METHODDEF
#define OS_UNAME_METHODDEF
#endif /* !defined(OS_UNAME_METHODDEF) */
#ifndef OS_EXECV_METHODDEF
#define OS_EXECV_METHODDEF
#endif /* !defined(OS_EXECV_METHODDEF) */
#ifndef OS_EXECVE_METHODDEF
#define OS_EXECVE_METHODDEF
#endif /* !defined(OS_EXECVE_METHODDEF) */
#ifndef OS_SPAWNV_METHODDEF
#define OS_SPAWNV_METHODDEF
#endif /* !defined(OS_SPAWNV_METHODDEF) */
#ifndef OS_SPAWNVE_METHODDEF
#define OS_SPAWNVE_METHODDEF
#endif /* !defined(OS_SPAWNVE_METHODDEF) */
#ifndef OS_FORK1_METHODDEF
#define OS_FORK1_METHODDEF
#endif /* !defined(OS_FORK1_METHODDEF) */
#ifndef OS_FORK_METHODDEF
#define OS_FORK_METHODDEF
#endif /* !defined(OS_FORK_METHODDEF) */
#ifndef OS_SCHED_GET_PRIORITY_MAX_METHODDEF
#define OS_SCHED_GET_PRIORITY_MAX_METHODDEF
#endif /* !defined(OS_SCHED_GET_PRIORITY_MAX_METHODDEF) */
#ifndef OS_SCHED_GET_PRIORITY_MIN_METHODDEF
#define OS_SCHED_GET_PRIORITY_MIN_METHODDEF
#endif /* !defined(OS_SCHED_GET_PRIORITY_MIN_METHODDEF) */
#ifndef OS_SCHED_GETSCHEDULER_METHODDEF
#define OS_SCHED_GETSCHEDULER_METHODDEF
#endif /* !defined(OS_SCHED_GETSCHEDULER_METHODDEF) */
#ifndef OS_SCHED_SETSCHEDULER_METHODDEF
#define OS_SCHED_SETSCHEDULER_METHODDEF
#endif /* !defined(OS_SCHED_SETSCHEDULER_METHODDEF) */
#ifndef OS_SCHED_GETPARAM_METHODDEF
#define OS_SCHED_GETPARAM_METHODDEF
#endif /* !defined(OS_SCHED_GETPARAM_METHODDEF) */
#ifndef OS_SCHED_SETPARAM_METHODDEF
#define OS_SCHED_SETPARAM_METHODDEF
#endif /* !defined(OS_SCHED_SETPARAM_METHODDEF) */
#ifndef OS_SCHED_RR_GET_INTERVAL_METHODDEF
#define OS_SCHED_RR_GET_INTERVAL_METHODDEF
#endif /* !defined(OS_SCHED_RR_GET_INTERVAL_METHODDEF) */
#ifndef OS_SCHED_SETAFFINITY_METHODDEF
#define OS_SCHED_SETAFFINITY_METHODDEF
#endif /* !defined(OS_SCHED_SETAFFINITY_METHODDEF) */
#ifndef OS_SCHED_GETAFFINITY_METHODDEF
#define OS_SCHED_GETAFFINITY_METHODDEF
#endif /* !defined(OS_SCHED_GETAFFINITY_METHODDEF) */
#ifndef OS_OPENPTY_METHODDEF
#define OS_OPENPTY_METHODDEF
#endif /* !defined(OS_OPENPTY_METHODDEF) */
#ifndef OS_FORKPTY_METHODDEF
#define OS_FORKPTY_METHODDEF
#endif /* !defined(OS_FORKPTY_METHODDEF) */
#ifndef OS_GETEGID_METHODDEF
#define OS_GETEGID_METHODDEF
#endif /* !defined(OS_GETEGID_METHODDEF) */
#ifndef OS_GETEUID_METHODDEF
#define OS_GETEUID_METHODDEF
#endif /* !defined(OS_GETEUID_METHODDEF) */
#ifndef OS_GETGID_METHODDEF
#define OS_GETGID_METHODDEF
#endif /* !defined(OS_GETGID_METHODDEF) */
#ifndef OS_GETPID_METHODDEF
#define OS_GETPID_METHODDEF
#endif /* !defined(OS_GETPID_METHODDEF) */
#ifndef OS_GETGROUPS_METHODDEF
#define OS_GETGROUPS_METHODDEF
#endif /* !defined(OS_GETGROUPS_METHODDEF) */
#ifndef OS_GETPGID_METHODDEF
#define OS_GETPGID_METHODDEF
#endif /* !defined(OS_GETPGID_METHODDEF) */
#ifndef OS_GETPGRP_METHODDEF
#define OS_GETPGRP_METHODDEF
#endif /* !defined(OS_GETPGRP_METHODDEF) */
#ifndef OS_SETPGRP_METHODDEF
#define OS_SETPGRP_METHODDEF
#endif /* !defined(OS_SETPGRP_METHODDEF) */
#ifndef OS_GETPPID_METHODDEF
#define OS_GETPPID_METHODDEF
#endif /* !defined(OS_GETPPID_METHODDEF) */
#ifndef OS_GETLOGIN_METHODDEF
#define OS_GETLOGIN_METHODDEF
#endif /* !defined(OS_GETLOGIN_METHODDEF) */
#ifndef OS_GETUID_METHODDEF
#define OS_GETUID_METHODDEF
#endif /* !defined(OS_GETUID_METHODDEF) */
#ifndef OS_KILL_METHODDEF
#define OS_KILL_METHODDEF
#endif /* !defined(OS_KILL_METHODDEF) */
#ifndef OS_KILLPG_METHODDEF
#define OS_KILLPG_METHODDEF
#endif /* !defined(OS_KILLPG_METHODDEF) */
#ifndef OS_PLOCK_METHODDEF
#define OS_PLOCK_METHODDEF
#endif /* !defined(OS_PLOCK_METHODDEF) */
#ifndef OS_SETUID_METHODDEF
#define OS_SETUID_METHODDEF
#endif /* !defined(OS_SETUID_METHODDEF) */
#ifndef OS_SETEUID_METHODDEF
#define OS_SETEUID_METHODDEF
#endif /* !defined(OS_SETEUID_METHODDEF) */
#ifndef OS_SETEGID_METHODDEF
#define OS_SETEGID_METHODDEF
#endif /* !defined(OS_SETEGID_METHODDEF) */
#ifndef OS_SETREUID_METHODDEF
#define OS_SETREUID_METHODDEF
#endif /* !defined(OS_SETREUID_METHODDEF) */
#ifndef OS_SETREGID_METHODDEF
#define OS_SETREGID_METHODDEF
#endif /* !defined(OS_SETREGID_METHODDEF) */
#ifndef OS_SETGID_METHODDEF
#define OS_SETGID_METHODDEF
#endif /* !defined(OS_SETGID_METHODDEF) */
#ifndef OS_SETGROUPS_METHODDEF
#define OS_SETGROUPS_METHODDEF
#endif /* !defined(OS_SETGROUPS_METHODDEF) */
#ifndef OS_WAIT3_METHODDEF
#define OS_WAIT3_METHODDEF
#endif /* !defined(OS_WAIT3_METHODDEF) */
#ifndef OS_WAIT4_METHODDEF
#define OS_WAIT4_METHODDEF
#endif /* !defined(OS_WAIT4_METHODDEF) */
#ifndef OS_WAITID_METHODDEF
#define OS_WAITID_METHODDEF
#endif /* !defined(OS_WAITID_METHODDEF) */
#ifndef OS_WAITPID_METHODDEF
#define OS_WAITPID_METHODDEF
#endif /* !defined(OS_WAITPID_METHODDEF) */
#ifndef OS_WAIT_METHODDEF
#define OS_WAIT_METHODDEF
#endif /* !defined(OS_WAIT_METHODDEF) */
#ifndef OS_SYMLINK_METHODDEF
#define OS_SYMLINK_METHODDEF
#endif /* !defined(OS_SYMLINK_METHODDEF) */
#ifndef OS_TIMES_METHODDEF
#define OS_TIMES_METHODDEF
#endif /* !defined(OS_TIMES_METHODDEF) */
#ifndef OS_GETSID_METHODDEF
#define OS_GETSID_METHODDEF
#endif /* !defined(OS_GETSID_METHODDEF) */
#ifndef OS_SETSID_METHODDEF
#define OS_SETSID_METHODDEF
#endif /* !defined(OS_SETSID_METHODDEF) */
#ifndef OS_SETPGID_METHODDEF
#define OS_SETPGID_METHODDEF
#endif /* !defined(OS_SETPGID_METHODDEF) */
#ifndef OS_TCGETPGRP_METHODDEF
#define OS_TCGETPGRP_METHODDEF
#endif /* !defined(OS_TCGETPGRP_METHODDEF) */
#ifndef OS_TCSETPGRP_METHODDEF
#define OS_TCSETPGRP_METHODDEF
#endif /* !defined(OS_TCSETPGRP_METHODDEF) */
#ifndef OS_LOCKF_METHODDEF
#define OS_LOCKF_METHODDEF
#endif /* !defined(OS_LOCKF_METHODDEF) */
#ifndef OS_READV_METHODDEF
#define OS_READV_METHODDEF
#endif /* !defined(OS_READV_METHODDEF) */
#ifndef OS_PREAD_METHODDEF
#define OS_PREAD_METHODDEF
#endif /* !defined(OS_PREAD_METHODDEF) */
#ifndef OS_PIPE_METHODDEF
#define OS_PIPE_METHODDEF
#endif /* !defined(OS_PIPE_METHODDEF) */
#ifndef OS_PIPE2_METHODDEF
#define OS_PIPE2_METHODDEF
#endif /* !defined(OS_PIPE2_METHODDEF) */
#ifndef OS_WRITEV_METHODDEF
#define OS_WRITEV_METHODDEF
#endif /* !defined(OS_WRITEV_METHODDEF) */
#ifndef OS_PWRITE_METHODDEF
#define OS_PWRITE_METHODDEF
#endif /* !defined(OS_PWRITE_METHODDEF) */
#ifndef OS_MKFIFO_METHODDEF
#define OS_MKFIFO_METHODDEF
#endif /* !defined(OS_MKFIFO_METHODDEF) */
#ifndef OS_MKNOD_METHODDEF
#define OS_MKNOD_METHODDEF
#endif /* !defined(OS_MKNOD_METHODDEF) */
#ifndef OS_MAJOR_METHODDEF
#define OS_MAJOR_METHODDEF
#endif /* !defined(OS_MAJOR_METHODDEF) */
#ifndef OS_MINOR_METHODDEF
#define OS_MINOR_METHODDEF
#endif /* !defined(OS_MINOR_METHODDEF) */
#ifndef OS_MAKEDEV_METHODDEF
#define OS_MAKEDEV_METHODDEF
#endif /* !defined(OS_MAKEDEV_METHODDEF) */
#ifndef OS_FTRUNCATE_METHODDEF
#define OS_FTRUNCATE_METHODDEF
#endif /* !defined(OS_FTRUNCATE_METHODDEF) */
#ifndef OS_TRUNCATE_METHODDEF
#define OS_TRUNCATE_METHODDEF
#endif /* !defined(OS_TRUNCATE_METHODDEF) */
#ifndef OS_POSIX_FALLOCATE_METHODDEF
#define OS_POSIX_FALLOCATE_METHODDEF
#endif /* !defined(OS_POSIX_FALLOCATE_METHODDEF) */
#ifndef OS_POSIX_FADVISE_METHODDEF
#define OS_POSIX_FADVISE_METHODDEF
#endif /* !defined(OS_POSIX_FADVISE_METHODDEF) */
#ifndef OS_PUTENV_METHODDEF
#define OS_PUTENV_METHODDEF
#endif /* !defined(OS_PUTENV_METHODDEF) */
#ifndef OS_UNSETENV_METHODDEF
#define OS_UNSETENV_METHODDEF
#endif /* !defined(OS_UNSETENV_METHODDEF) */
#ifndef OS_WCOREDUMP_METHODDEF
#define OS_WCOREDUMP_METHODDEF
#endif /* !defined(OS_WCOREDUMP_METHODDEF) */
#ifndef OS_WIFCONTINUED_METHODDEF
#define OS_WIFCONTINUED_METHODDEF
#endif /* !defined(OS_WIFCONTINUED_METHODDEF) */
#ifndef OS_WIFSTOPPED_METHODDEF
#define OS_WIFSTOPPED_METHODDEF
#endif /* !defined(OS_WIFSTOPPED_METHODDEF) */
#ifndef OS_WIFSIGNALED_METHODDEF
#define OS_WIFSIGNALED_METHODDEF
#endif /* !defined(OS_WIFSIGNALED_METHODDEF) */
#ifndef OS_WIFEXITED_METHODDEF
#define OS_WIFEXITED_METHODDEF
#endif /* !defined(OS_WIFEXITED_METHODDEF) */
#ifndef OS_WEXITSTATUS_METHODDEF
#define OS_WEXITSTATUS_METHODDEF
#endif /* !defined(OS_WEXITSTATUS_METHODDEF) */
#ifndef OS_WTERMSIG_METHODDEF
#define OS_WTERMSIG_METHODDEF
#endif /* !defined(OS_WTERMSIG_METHODDEF) */
#ifndef OS_WSTOPSIG_METHODDEF
#define OS_WSTOPSIG_METHODDEF
#endif /* !defined(OS_WSTOPSIG_METHODDEF) */
#ifndef OS_FSTATVFS_METHODDEF
#define OS_FSTATVFS_METHODDEF
#endif /* !defined(OS_FSTATVFS_METHODDEF) */
#ifndef OS_STATVFS_METHODDEF
#define OS_STATVFS_METHODDEF
#endif /* !defined(OS_STATVFS_METHODDEF) */
#ifndef OS__GETDISKUSAGE_METHODDEF
#define OS__GETDISKUSAGE_METHODDEF
#endif /* !defined(OS__GETDISKUSAGE_METHODDEF) */
#ifndef OS_FPATHCONF_METHODDEF
#define OS_FPATHCONF_METHODDEF
#endif /* !defined(OS_FPATHCONF_METHODDEF) */
#ifndef OS_PATHCONF_METHODDEF
#define OS_PATHCONF_METHODDEF
#endif /* !defined(OS_PATHCONF_METHODDEF) */
#ifndef OS_CONFSTR_METHODDEF
#define OS_CONFSTR_METHODDEF
#endif /* !defined(OS_CONFSTR_METHODDEF) */
#ifndef OS_SYSCONF_METHODDEF
#define OS_SYSCONF_METHODDEF
#endif /* !defined(OS_SYSCONF_METHODDEF) */
#ifndef OS_STARTFILE_METHODDEF
#define OS_STARTFILE_METHODDEF
#endif /* !defined(OS_STARTFILE_METHODDEF) */
#ifndef OS_GETLOADAVG_METHODDEF
#define OS_GETLOADAVG_METHODDEF
#endif /* !defined(OS_GETLOADAVG_METHODDEF) */
#ifndef OS_SETRESUID_METHODDEF
#define OS_SETRESUID_METHODDEF
#endif /* !defined(OS_SETRESUID_METHODDEF) */
#ifndef OS_SETRESGID_METHODDEF
#define OS_SETRESGID_METHODDEF
#endif /* !defined(OS_SETRESGID_METHODDEF) */
#ifndef OS_GETRESUID_METHODDEF
#define OS_GETRESUID_METHODDEF
#endif /* !defined(OS_GETRESUID_METHODDEF) */
#ifndef OS_GETRESGID_METHODDEF
#define OS_GETRESGID_METHODDEF
#endif /* !defined(OS_GETRESGID_METHODDEF) */
#ifndef OS_GETXATTR_METHODDEF
#define OS_GETXATTR_METHODDEF
#endif /* !defined(OS_GETXATTR_METHODDEF) */
#ifndef OS_SETXATTR_METHODDEF
#define OS_SETXATTR_METHODDEF
#endif /* !defined(OS_SETXATTR_METHODDEF) */
#ifndef OS_REMOVEXATTR_METHODDEF
#define OS_REMOVEXATTR_METHODDEF
#endif /* !defined(OS_REMOVEXATTR_METHODDEF) */
#ifndef OS_LISTXATTR_METHODDEF
#define OS_LISTXATTR_METHODDEF
#endif /* !defined(OS_LISTXATTR_METHODDEF) */
#ifndef OS_GET_HANDLE_INHERITABLE_METHODDEF
#define OS_GET_HANDLE_INHERITABLE_METHODDEF
#endif /* !defined(OS_GET_HANDLE_INHERITABLE_METHODDEF) */
#ifndef OS_SET_HANDLE_INHERITABLE_METHODDEF
#define OS_SET_HANDLE_INHERITABLE_METHODDEF
#endif /* !defined(OS_SET_HANDLE_INHERITABLE_METHODDEF) */
#ifndef OS_GETRANDOM_METHODDEF
#define OS_GETRANDOM_METHODDEF
#endif /* !defined(OS_GETRANDOM_METHODDEF) */
/*[clinic end generated code: output=aad3db55309db309 input=a9049054013a1b77]*/
| 168,411 | 6,131 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_codecsmodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_codecs_register__doc__,
"register($module, search_function, /)\n"
"--\n"
"\n"
"Register a codec search function.\n"
"\n"
"Search functions are expected to take one argument, the encoding name in\n"
"all lower case letters, and either return None, or a tuple of functions\n"
"(encoder, decoder, stream_reader, stream_writer) (or a CodecInfo object).");
#define _CODECS_REGISTER_METHODDEF \
{"register", (PyCFunction)_codecs_register, METH_O, _codecs_register__doc__},
PyDoc_STRVAR(_codecs_lookup__doc__,
"lookup($module, encoding, /)\n"
"--\n"
"\n"
"Looks up a codec tuple in the Python codec registry and returns a CodecInfo object.");
#define _CODECS_LOOKUP_METHODDEF \
{"lookup", (PyCFunction)_codecs_lookup, METH_O, _codecs_lookup__doc__},
static PyObject *
_codecs_lookup_impl(PyObject *module, const char *encoding);
static PyObject *
_codecs_lookup(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
const char *encoding;
if (!PyArg_Parse(arg, "s:lookup", &encoding)) {
goto exit;
}
return_value = _codecs_lookup_impl(module, encoding);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_encode__doc__,
"encode($module, /, obj, encoding=\'utf-8\', errors=\'strict\')\n"
"--\n"
"\n"
"Encodes obj using the codec registered for encoding.\n"
"\n"
"The default encoding is \'utf-8\'. errors may be given to set a\n"
"different error handling scheme. Default is \'strict\' meaning that encoding\n"
"errors raise a ValueError. Other possible values are \'ignore\', \'replace\'\n"
"and \'backslashreplace\' as well as any other name registered with\n"
"codecs.register_error that can handle ValueErrors.");
#define _CODECS_ENCODE_METHODDEF \
{"encode", (PyCFunction)_codecs_encode, METH_FASTCALL|METH_KEYWORDS, _codecs_encode__doc__},
static PyObject *
_codecs_encode_impl(PyObject *module, PyObject *obj, const char *encoding,
const char *errors);
static PyObject *
_codecs_encode(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"obj", "encoding", "errors", NULL};
static _PyArg_Parser _parser = {"O|ss:encode", _keywords, 0};
PyObject *obj;
const char *encoding = NULL;
const char *errors = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&obj, &encoding, &errors)) {
goto exit;
}
return_value = _codecs_encode_impl(module, obj, encoding, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_decode__doc__,
"decode($module, /, obj, encoding=\'utf-8\', errors=\'strict\')\n"
"--\n"
"\n"
"Decodes obj using the codec registered for encoding.\n"
"\n"
"Default encoding is \'utf-8\'. errors may be given to set a\n"
"different error handling scheme. Default is \'strict\' meaning that encoding\n"
"errors raise a ValueError. Other possible values are \'ignore\', \'replace\'\n"
"and \'backslashreplace\' as well as any other name registered with\n"
"codecs.register_error that can handle ValueErrors.");
#define _CODECS_DECODE_METHODDEF \
{"decode", (PyCFunction)_codecs_decode, METH_FASTCALL|METH_KEYWORDS, _codecs_decode__doc__},
static PyObject *
_codecs_decode_impl(PyObject *module, PyObject *obj, const char *encoding,
const char *errors);
static PyObject *
_codecs_decode(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"obj", "encoding", "errors", NULL};
static _PyArg_Parser _parser = {"O|ss:decode", _keywords, 0};
PyObject *obj;
const char *encoding = NULL;
const char *errors = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&obj, &encoding, &errors)) {
goto exit;
}
return_value = _codecs_decode_impl(module, obj, encoding, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs__forget_codec__doc__,
"_forget_codec($module, encoding, /)\n"
"--\n"
"\n"
"Purge the named codec from the internal codec lookup cache");
#define _CODECS__FORGET_CODEC_METHODDEF \
{"_forget_codec", (PyCFunction)_codecs__forget_codec, METH_O, _codecs__forget_codec__doc__},
static PyObject *
_codecs__forget_codec_impl(PyObject *module, const char *encoding);
static PyObject *
_codecs__forget_codec(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
const char *encoding;
if (!PyArg_Parse(arg, "s:_forget_codec", &encoding)) {
goto exit;
}
return_value = _codecs__forget_codec_impl(module, encoding);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_escape_decode__doc__,
"escape_decode($module, data, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_ESCAPE_DECODE_METHODDEF \
{"escape_decode", (PyCFunction)_codecs_escape_decode, METH_FASTCALL, _codecs_escape_decode__doc__},
static PyObject *
_codecs_escape_decode_impl(PyObject *module, Py_buffer *data,
const char *errors);
static PyObject *
_codecs_escape_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "s*|z:escape_decode",
&data, &errors)) {
goto exit;
}
return_value = _codecs_escape_decode_impl(module, &data, errors);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_escape_encode__doc__,
"escape_encode($module, data, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_ESCAPE_ENCODE_METHODDEF \
{"escape_encode", (PyCFunction)_codecs_escape_encode, METH_FASTCALL, _codecs_escape_encode__doc__},
static PyObject *
_codecs_escape_encode_impl(PyObject *module, PyObject *data,
const char *errors);
static PyObject *
_codecs_escape_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *data;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "O!|z:escape_encode",
&PyBytes_Type, &data, &errors)) {
goto exit;
}
return_value = _codecs_escape_encode_impl(module, data, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_unicode_internal_decode__doc__,
"unicode_internal_decode($module, obj, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UNICODE_INTERNAL_DECODE_METHODDEF \
{"unicode_internal_decode", (PyCFunction)_codecs_unicode_internal_decode, METH_FASTCALL, _codecs_unicode_internal_decode__doc__},
static PyObject *
_codecs_unicode_internal_decode_impl(PyObject *module, PyObject *obj,
const char *errors);
static PyObject *
_codecs_unicode_internal_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *obj;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "O|z:unicode_internal_decode",
&obj, &errors)) {
goto exit;
}
return_value = _codecs_unicode_internal_decode_impl(module, obj, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_7_decode__doc__,
"utf_7_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_7_DECODE_METHODDEF \
{"utf_7_decode", (PyCFunction)_codecs_utf_7_decode, METH_FASTCALL, _codecs_utf_7_decode__doc__},
static PyObject *
_codecs_utf_7_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_utf_7_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:utf_7_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_utf_7_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_8_decode__doc__,
"utf_8_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_8_DECODE_METHODDEF \
{"utf_8_decode", (PyCFunction)_codecs_utf_8_decode, METH_FASTCALL, _codecs_utf_8_decode__doc__},
static PyObject *
_codecs_utf_8_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_utf_8_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:utf_8_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_utf_8_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_16_decode__doc__,
"utf_16_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_16_DECODE_METHODDEF \
{"utf_16_decode", (PyCFunction)_codecs_utf_16_decode, METH_FASTCALL, _codecs_utf_16_decode__doc__},
static PyObject *
_codecs_utf_16_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_utf_16_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:utf_16_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_utf_16_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_16_le_decode__doc__,
"utf_16_le_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_16_LE_DECODE_METHODDEF \
{"utf_16_le_decode", (PyCFunction)_codecs_utf_16_le_decode, METH_FASTCALL, _codecs_utf_16_le_decode__doc__},
static PyObject *
_codecs_utf_16_le_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_utf_16_le_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:utf_16_le_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_utf_16_le_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_16_be_decode__doc__,
"utf_16_be_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_16_BE_DECODE_METHODDEF \
{"utf_16_be_decode", (PyCFunction)_codecs_utf_16_be_decode, METH_FASTCALL, _codecs_utf_16_be_decode__doc__},
static PyObject *
_codecs_utf_16_be_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_utf_16_be_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:utf_16_be_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_utf_16_be_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_16_ex_decode__doc__,
"utf_16_ex_decode($module, data, errors=None, byteorder=0, final=False,\n"
" /)\n"
"--\n"
"\n");
#define _CODECS_UTF_16_EX_DECODE_METHODDEF \
{"utf_16_ex_decode", (PyCFunction)_codecs_utf_16_ex_decode, METH_FASTCALL, _codecs_utf_16_ex_decode__doc__},
static PyObject *
_codecs_utf_16_ex_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int byteorder, int final);
static PyObject *
_codecs_utf_16_ex_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int byteorder = 0;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zii:utf_16_ex_decode",
&data, &errors, &byteorder, &final)) {
goto exit;
}
return_value = _codecs_utf_16_ex_decode_impl(module, &data, errors, byteorder, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_32_decode__doc__,
"utf_32_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_32_DECODE_METHODDEF \
{"utf_32_decode", (PyCFunction)_codecs_utf_32_decode, METH_FASTCALL, _codecs_utf_32_decode__doc__},
static PyObject *
_codecs_utf_32_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_utf_32_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:utf_32_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_utf_32_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_32_le_decode__doc__,
"utf_32_le_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_32_LE_DECODE_METHODDEF \
{"utf_32_le_decode", (PyCFunction)_codecs_utf_32_le_decode, METH_FASTCALL, _codecs_utf_32_le_decode__doc__},
static PyObject *
_codecs_utf_32_le_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_utf_32_le_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:utf_32_le_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_utf_32_le_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_32_be_decode__doc__,
"utf_32_be_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_32_BE_DECODE_METHODDEF \
{"utf_32_be_decode", (PyCFunction)_codecs_utf_32_be_decode, METH_FASTCALL, _codecs_utf_32_be_decode__doc__},
static PyObject *
_codecs_utf_32_be_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_utf_32_be_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:utf_32_be_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_utf_32_be_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_utf_32_ex_decode__doc__,
"utf_32_ex_decode($module, data, errors=None, byteorder=0, final=False,\n"
" /)\n"
"--\n"
"\n");
#define _CODECS_UTF_32_EX_DECODE_METHODDEF \
{"utf_32_ex_decode", (PyCFunction)_codecs_utf_32_ex_decode, METH_FASTCALL, _codecs_utf_32_ex_decode__doc__},
static PyObject *
_codecs_utf_32_ex_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int byteorder, int final);
static PyObject *
_codecs_utf_32_ex_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int byteorder = 0;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zii:utf_32_ex_decode",
&data, &errors, &byteorder, &final)) {
goto exit;
}
return_value = _codecs_utf_32_ex_decode_impl(module, &data, errors, byteorder, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_unicode_escape_decode__doc__,
"unicode_escape_decode($module, data, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UNICODE_ESCAPE_DECODE_METHODDEF \
{"unicode_escape_decode", (PyCFunction)_codecs_unicode_escape_decode, METH_FASTCALL, _codecs_unicode_escape_decode__doc__},
static PyObject *
_codecs_unicode_escape_decode_impl(PyObject *module, Py_buffer *data,
const char *errors);
static PyObject *
_codecs_unicode_escape_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "s*|z:unicode_escape_decode",
&data, &errors)) {
goto exit;
}
return_value = _codecs_unicode_escape_decode_impl(module, &data, errors);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_raw_unicode_escape_decode__doc__,
"raw_unicode_escape_decode($module, data, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_RAW_UNICODE_ESCAPE_DECODE_METHODDEF \
{"raw_unicode_escape_decode", (PyCFunction)_codecs_raw_unicode_escape_decode, METH_FASTCALL, _codecs_raw_unicode_escape_decode__doc__},
static PyObject *
_codecs_raw_unicode_escape_decode_impl(PyObject *module, Py_buffer *data,
const char *errors);
static PyObject *
_codecs_raw_unicode_escape_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "s*|z:raw_unicode_escape_decode",
&data, &errors)) {
goto exit;
}
return_value = _codecs_raw_unicode_escape_decode_impl(module, &data, errors);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_latin_1_decode__doc__,
"latin_1_decode($module, data, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_LATIN_1_DECODE_METHODDEF \
{"latin_1_decode", (PyCFunction)_codecs_latin_1_decode, METH_FASTCALL, _codecs_latin_1_decode__doc__},
static PyObject *
_codecs_latin_1_decode_impl(PyObject *module, Py_buffer *data,
const char *errors);
static PyObject *
_codecs_latin_1_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "y*|z:latin_1_decode",
&data, &errors)) {
goto exit;
}
return_value = _codecs_latin_1_decode_impl(module, &data, errors);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_ascii_decode__doc__,
"ascii_decode($module, data, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_ASCII_DECODE_METHODDEF \
{"ascii_decode", (PyCFunction)_codecs_ascii_decode, METH_FASTCALL, _codecs_ascii_decode__doc__},
static PyObject *
_codecs_ascii_decode_impl(PyObject *module, Py_buffer *data,
const char *errors);
static PyObject *
_codecs_ascii_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "y*|z:ascii_decode",
&data, &errors)) {
goto exit;
}
return_value = _codecs_ascii_decode_impl(module, &data, errors);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_charmap_decode__doc__,
"charmap_decode($module, data, errors=None, mapping=None, /)\n"
"--\n"
"\n");
#define _CODECS_CHARMAP_DECODE_METHODDEF \
{"charmap_decode", (PyCFunction)_codecs_charmap_decode, METH_FASTCALL, _codecs_charmap_decode__doc__},
static PyObject *
_codecs_charmap_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, PyObject *mapping);
static PyObject *
_codecs_charmap_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
PyObject *mapping = NULL;
if (!_PyArg_ParseStack(args, nargs, "y*|zO:charmap_decode",
&data, &errors, &mapping)) {
goto exit;
}
return_value = _codecs_charmap_decode_impl(module, &data, errors, mapping);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
#if defined(MS_WINDOWS)
PyDoc_STRVAR(_codecs_mbcs_decode__doc__,
"mbcs_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_MBCS_DECODE_METHODDEF \
{"mbcs_decode", (PyCFunction)_codecs_mbcs_decode, METH_FASTCALL, _codecs_mbcs_decode__doc__},
static PyObject *
_codecs_mbcs_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_mbcs_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:mbcs_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_mbcs_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
#endif /* defined(MS_WINDOWS) */
#if defined(MS_WINDOWS)
PyDoc_STRVAR(_codecs_oem_decode__doc__,
"oem_decode($module, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_OEM_DECODE_METHODDEF \
{"oem_decode", (PyCFunction)_codecs_oem_decode, METH_FASTCALL, _codecs_oem_decode__doc__},
static PyObject *
_codecs_oem_decode_impl(PyObject *module, Py_buffer *data,
const char *errors, int final);
static PyObject *
_codecs_oem_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "y*|zi:oem_decode",
&data, &errors, &final)) {
goto exit;
}
return_value = _codecs_oem_decode_impl(module, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
#endif /* defined(MS_WINDOWS) */
#if defined(MS_WINDOWS)
PyDoc_STRVAR(_codecs_code_page_decode__doc__,
"code_page_decode($module, codepage, data, errors=None, final=False, /)\n"
"--\n"
"\n");
#define _CODECS_CODE_PAGE_DECODE_METHODDEF \
{"code_page_decode", (PyCFunction)_codecs_code_page_decode, METH_FASTCALL, _codecs_code_page_decode__doc__},
static PyObject *
_codecs_code_page_decode_impl(PyObject *module, int codepage,
Py_buffer *data, const char *errors, int final);
static PyObject *
_codecs_code_page_decode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int codepage;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
int final = 0;
if (!_PyArg_ParseStack(args, nargs, "iy*|zi:code_page_decode",
&codepage, &data, &errors, &final)) {
goto exit;
}
return_value = _codecs_code_page_decode_impl(module, codepage, &data, errors, final);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
#endif /* defined(MS_WINDOWS) */
PyDoc_STRVAR(_codecs_readbuffer_encode__doc__,
"readbuffer_encode($module, data, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_READBUFFER_ENCODE_METHODDEF \
{"readbuffer_encode", (PyCFunction)_codecs_readbuffer_encode, METH_FASTCALL, _codecs_readbuffer_encode__doc__},
static PyObject *
_codecs_readbuffer_encode_impl(PyObject *module, Py_buffer *data,
const char *errors);
static PyObject *
_codecs_readbuffer_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "s*|z:readbuffer_encode",
&data, &errors)) {
goto exit;
}
return_value = _codecs_readbuffer_encode_impl(module, &data, errors);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_codecs_unicode_internal_encode__doc__,
"unicode_internal_encode($module, obj, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UNICODE_INTERNAL_ENCODE_METHODDEF \
{"unicode_internal_encode", (PyCFunction)_codecs_unicode_internal_encode, METH_FASTCALL, _codecs_unicode_internal_encode__doc__},
static PyObject *
_codecs_unicode_internal_encode_impl(PyObject *module, PyObject *obj,
const char *errors);
static PyObject *
_codecs_unicode_internal_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *obj;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "O|z:unicode_internal_encode",
&obj, &errors)) {
goto exit;
}
return_value = _codecs_unicode_internal_encode_impl(module, obj, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_7_encode__doc__,
"utf_7_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_7_ENCODE_METHODDEF \
{"utf_7_encode", (PyCFunction)_codecs_utf_7_encode, METH_FASTCALL, _codecs_utf_7_encode__doc__},
static PyObject *
_codecs_utf_7_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_utf_7_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:utf_7_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_utf_7_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_8_encode__doc__,
"utf_8_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_8_ENCODE_METHODDEF \
{"utf_8_encode", (PyCFunction)_codecs_utf_8_encode, METH_FASTCALL, _codecs_utf_8_encode__doc__},
static PyObject *
_codecs_utf_8_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_utf_8_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:utf_8_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_utf_8_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_16_encode__doc__,
"utf_16_encode($module, str, errors=None, byteorder=0, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_16_ENCODE_METHODDEF \
{"utf_16_encode", (PyCFunction)_codecs_utf_16_encode, METH_FASTCALL, _codecs_utf_16_encode__doc__},
static PyObject *
_codecs_utf_16_encode_impl(PyObject *module, PyObject *str,
const char *errors, int byteorder);
static PyObject *
_codecs_utf_16_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
int byteorder = 0;
if (!_PyArg_ParseStack(args, nargs, "U|zi:utf_16_encode",
&str, &errors, &byteorder)) {
goto exit;
}
return_value = _codecs_utf_16_encode_impl(module, str, errors, byteorder);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_16_le_encode__doc__,
"utf_16_le_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_16_LE_ENCODE_METHODDEF \
{"utf_16_le_encode", (PyCFunction)_codecs_utf_16_le_encode, METH_FASTCALL, _codecs_utf_16_le_encode__doc__},
static PyObject *
_codecs_utf_16_le_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_utf_16_le_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:utf_16_le_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_utf_16_le_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_16_be_encode__doc__,
"utf_16_be_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_16_BE_ENCODE_METHODDEF \
{"utf_16_be_encode", (PyCFunction)_codecs_utf_16_be_encode, METH_FASTCALL, _codecs_utf_16_be_encode__doc__},
static PyObject *
_codecs_utf_16_be_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_utf_16_be_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:utf_16_be_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_utf_16_be_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_32_encode__doc__,
"utf_32_encode($module, str, errors=None, byteorder=0, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_32_ENCODE_METHODDEF \
{"utf_32_encode", (PyCFunction)_codecs_utf_32_encode, METH_FASTCALL, _codecs_utf_32_encode__doc__},
static PyObject *
_codecs_utf_32_encode_impl(PyObject *module, PyObject *str,
const char *errors, int byteorder);
static PyObject *
_codecs_utf_32_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
int byteorder = 0;
if (!_PyArg_ParseStack(args, nargs, "U|zi:utf_32_encode",
&str, &errors, &byteorder)) {
goto exit;
}
return_value = _codecs_utf_32_encode_impl(module, str, errors, byteorder);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_32_le_encode__doc__,
"utf_32_le_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_32_LE_ENCODE_METHODDEF \
{"utf_32_le_encode", (PyCFunction)_codecs_utf_32_le_encode, METH_FASTCALL, _codecs_utf_32_le_encode__doc__},
static PyObject *
_codecs_utf_32_le_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_utf_32_le_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:utf_32_le_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_utf_32_le_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_utf_32_be_encode__doc__,
"utf_32_be_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UTF_32_BE_ENCODE_METHODDEF \
{"utf_32_be_encode", (PyCFunction)_codecs_utf_32_be_encode, METH_FASTCALL, _codecs_utf_32_be_encode__doc__},
static PyObject *
_codecs_utf_32_be_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_utf_32_be_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:utf_32_be_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_utf_32_be_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_unicode_escape_encode__doc__,
"unicode_escape_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_UNICODE_ESCAPE_ENCODE_METHODDEF \
{"unicode_escape_encode", (PyCFunction)_codecs_unicode_escape_encode, METH_FASTCALL, _codecs_unicode_escape_encode__doc__},
static PyObject *
_codecs_unicode_escape_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_unicode_escape_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:unicode_escape_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_unicode_escape_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_raw_unicode_escape_encode__doc__,
"raw_unicode_escape_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_RAW_UNICODE_ESCAPE_ENCODE_METHODDEF \
{"raw_unicode_escape_encode", (PyCFunction)_codecs_raw_unicode_escape_encode, METH_FASTCALL, _codecs_raw_unicode_escape_encode__doc__},
static PyObject *
_codecs_raw_unicode_escape_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_raw_unicode_escape_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:raw_unicode_escape_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_raw_unicode_escape_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_latin_1_encode__doc__,
"latin_1_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_LATIN_1_ENCODE_METHODDEF \
{"latin_1_encode", (PyCFunction)_codecs_latin_1_encode, METH_FASTCALL, _codecs_latin_1_encode__doc__},
static PyObject *
_codecs_latin_1_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_latin_1_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:latin_1_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_latin_1_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_ascii_encode__doc__,
"ascii_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_ASCII_ENCODE_METHODDEF \
{"ascii_encode", (PyCFunction)_codecs_ascii_encode, METH_FASTCALL, _codecs_ascii_encode__doc__},
static PyObject *
_codecs_ascii_encode_impl(PyObject *module, PyObject *str,
const char *errors);
static PyObject *
_codecs_ascii_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:ascii_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_ascii_encode_impl(module, str, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_charmap_encode__doc__,
"charmap_encode($module, str, errors=None, mapping=None, /)\n"
"--\n"
"\n");
#define _CODECS_CHARMAP_ENCODE_METHODDEF \
{"charmap_encode", (PyCFunction)_codecs_charmap_encode, METH_FASTCALL, _codecs_charmap_encode__doc__},
static PyObject *
_codecs_charmap_encode_impl(PyObject *module, PyObject *str,
const char *errors, PyObject *mapping);
static PyObject *
_codecs_charmap_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
PyObject *mapping = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|zO:charmap_encode",
&str, &errors, &mapping)) {
goto exit;
}
return_value = _codecs_charmap_encode_impl(module, str, errors, mapping);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_charmap_build__doc__,
"charmap_build($module, map, /)\n"
"--\n"
"\n");
#define _CODECS_CHARMAP_BUILD_METHODDEF \
{"charmap_build", (PyCFunction)_codecs_charmap_build, METH_O, _codecs_charmap_build__doc__},
static PyObject *
_codecs_charmap_build_impl(PyObject *module, PyObject *map);
static PyObject *
_codecs_charmap_build(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
PyObject *map;
if (!PyArg_Parse(arg, "U:charmap_build", &map)) {
goto exit;
}
return_value = _codecs_charmap_build_impl(module, map);
exit:
return return_value;
}
#if defined(MS_WINDOWS)
PyDoc_STRVAR(_codecs_mbcs_encode__doc__,
"mbcs_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_MBCS_ENCODE_METHODDEF \
{"mbcs_encode", (PyCFunction)_codecs_mbcs_encode, METH_FASTCALL, _codecs_mbcs_encode__doc__},
static PyObject *
_codecs_mbcs_encode_impl(PyObject *module, PyObject *str, const char *errors);
static PyObject *
_codecs_mbcs_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:mbcs_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_mbcs_encode_impl(module, str, errors);
exit:
return return_value;
}
#endif /* defined(MS_WINDOWS) */
#if defined(MS_WINDOWS)
PyDoc_STRVAR(_codecs_oem_encode__doc__,
"oem_encode($module, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_OEM_ENCODE_METHODDEF \
{"oem_encode", (PyCFunction)_codecs_oem_encode, METH_FASTCALL, _codecs_oem_encode__doc__},
static PyObject *
_codecs_oem_encode_impl(PyObject *module, PyObject *str, const char *errors);
static PyObject *
_codecs_oem_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "U|z:oem_encode",
&str, &errors)) {
goto exit;
}
return_value = _codecs_oem_encode_impl(module, str, errors);
exit:
return return_value;
}
#endif /* defined(MS_WINDOWS) */
#if defined(MS_WINDOWS)
PyDoc_STRVAR(_codecs_code_page_encode__doc__,
"code_page_encode($module, code_page, str, errors=None, /)\n"
"--\n"
"\n");
#define _CODECS_CODE_PAGE_ENCODE_METHODDEF \
{"code_page_encode", (PyCFunction)_codecs_code_page_encode, METH_FASTCALL, _codecs_code_page_encode__doc__},
static PyObject *
_codecs_code_page_encode_impl(PyObject *module, int code_page, PyObject *str,
const char *errors);
static PyObject *
_codecs_code_page_encode(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int code_page;
PyObject *str;
const char *errors = NULL;
if (!_PyArg_ParseStack(args, nargs, "iU|z:code_page_encode",
&code_page, &str, &errors)) {
goto exit;
}
return_value = _codecs_code_page_encode_impl(module, code_page, str, errors);
exit:
return return_value;
}
#endif /* defined(MS_WINDOWS) */
PyDoc_STRVAR(_codecs_register_error__doc__,
"register_error($module, errors, handler, /)\n"
"--\n"
"\n"
"Register the specified error handler under the name errors.\n"
"\n"
"handler must be a callable object, that will be called with an exception\n"
"instance containing information about the location of the encoding/decoding\n"
"error and must return a (replacement, new position) tuple.");
#define _CODECS_REGISTER_ERROR_METHODDEF \
{"register_error", (PyCFunction)_codecs_register_error, METH_FASTCALL, _codecs_register_error__doc__},
static PyObject *
_codecs_register_error_impl(PyObject *module, const char *errors,
PyObject *handler);
static PyObject *
_codecs_register_error(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
const char *errors;
PyObject *handler;
if (!_PyArg_ParseStack(args, nargs, "sO:register_error",
&errors, &handler)) {
goto exit;
}
return_value = _codecs_register_error_impl(module, errors, handler);
exit:
return return_value;
}
PyDoc_STRVAR(_codecs_lookup_error__doc__,
"lookup_error($module, name, /)\n"
"--\n"
"\n"
"lookup_error(errors) -> handler\n"
"\n"
"Return the error handler for the specified error handling name or raise a\n"
"LookupError, if no handler exists under this name.");
#define _CODECS_LOOKUP_ERROR_METHODDEF \
{"lookup_error", (PyCFunction)_codecs_lookup_error, METH_O, _codecs_lookup_error__doc__},
static PyObject *
_codecs_lookup_error_impl(PyObject *module, const char *name);
static PyObject *
_codecs_lookup_error(PyObject *module, PyObject *arg)
{
PyObject *return_value = NULL;
const char *name;
if (!PyArg_Parse(arg, "s:lookup_error", &name)) {
goto exit;
}
return_value = _codecs_lookup_error_impl(module, name);
exit:
return return_value;
}
#ifndef _CODECS_MBCS_DECODE_METHODDEF
#define _CODECS_MBCS_DECODE_METHODDEF
#endif /* !defined(_CODECS_MBCS_DECODE_METHODDEF) */
#ifndef _CODECS_OEM_DECODE_METHODDEF
#define _CODECS_OEM_DECODE_METHODDEF
#endif /* !defined(_CODECS_OEM_DECODE_METHODDEF) */
#ifndef _CODECS_CODE_PAGE_DECODE_METHODDEF
#define _CODECS_CODE_PAGE_DECODE_METHODDEF
#endif /* !defined(_CODECS_CODE_PAGE_DECODE_METHODDEF) */
#ifndef _CODECS_MBCS_ENCODE_METHODDEF
#define _CODECS_MBCS_ENCODE_METHODDEF
#endif /* !defined(_CODECS_MBCS_ENCODE_METHODDEF) */
#ifndef _CODECS_OEM_ENCODE_METHODDEF
#define _CODECS_OEM_ENCODE_METHODDEF
#endif /* !defined(_CODECS_OEM_ENCODE_METHODDEF) */
#ifndef _CODECS_CODE_PAGE_ENCODE_METHODDEF
#define _CODECS_CODE_PAGE_ENCODE_METHODDEF
#endif /* !defined(_CODECS_CODE_PAGE_ENCODE_METHODDEF) */
/*[clinic end generated code: output=894910ed4900eeae input=a9049054013a1b77]*/
| 43,446 | 1,541 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_struct.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(Struct___init____doc__,
"Struct(format)\n"
"--\n"
"\n"
"Create a compiled struct object.\n"
"\n"
"Return a new Struct object which writes and reads binary data according to\n"
"the format string.\n"
"\n"
"See help(struct) for more on format strings.");
static int
Struct___init___impl(PyStructObject *self, PyObject *format);
static int
Struct___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"format", NULL};
static _PyArg_Parser _parser = {"O:Struct", _keywords, 0};
PyObject *format;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&format)) {
goto exit;
}
return_value = Struct___init___impl((PyStructObject *)self, format);
exit:
return return_value;
}
PyDoc_STRVAR(Struct_unpack__doc__,
"unpack($self, buffer, /)\n"
"--\n"
"\n"
"Return a tuple containing unpacked values.\n"
"\n"
"Unpack according to the format string Struct.format. The buffer\'s size\n"
"in bytes must be Struct.size.\n"
"\n"
"See help(struct) for more on format strings.");
#define STRUCT_UNPACK_METHODDEF \
{"unpack", (PyCFunction)Struct_unpack, METH_O, Struct_unpack__doc__},
static PyObject *
Struct_unpack_impl(PyStructObject *self, Py_buffer *buffer);
static PyObject *
Struct_unpack(PyStructObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:unpack", &buffer)) {
goto exit;
}
return_value = Struct_unpack_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(Struct_unpack_from__doc__,
"unpack_from($self, /, buffer, offset=0)\n"
"--\n"
"\n"
"Return a tuple containing unpacked values.\n"
"\n"
"Values are unpacked according to the format string Struct.format.\n"
"\n"
"The buffer\'s size in bytes, minus offset, must be at least Struct.size.\n"
"\n"
"See help(struct) for more on format strings.");
#define STRUCT_UNPACK_FROM_METHODDEF \
{"unpack_from", (PyCFunction)Struct_unpack_from, METH_FASTCALL|METH_KEYWORDS, Struct_unpack_from__doc__},
static PyObject *
Struct_unpack_from_impl(PyStructObject *self, Py_buffer *buffer,
Py_ssize_t offset);
static PyObject *
Struct_unpack_from(PyStructObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"buffer", "offset", NULL};
static _PyArg_Parser _parser = {"y*|n:unpack_from", _keywords, 0};
Py_buffer buffer = {NULL, NULL};
Py_ssize_t offset = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&buffer, &offset)) {
goto exit;
}
return_value = Struct_unpack_from_impl(self, &buffer, offset);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(Struct_iter_unpack__doc__,
"iter_unpack($self, buffer, /)\n"
"--\n"
"\n"
"Return an iterator yielding tuples.\n"
"\n"
"Tuples are unpacked from the given bytes source, like a repeated\n"
"invocation of unpack_from().\n"
"\n"
"Requires that the bytes length be a multiple of the struct size.");
#define STRUCT_ITER_UNPACK_METHODDEF \
{"iter_unpack", (PyCFunction)Struct_iter_unpack, METH_O, Struct_iter_unpack__doc__},
PyDoc_STRVAR(_clearcache__doc__,
"_clearcache($module, /)\n"
"--\n"
"\n"
"Clear the internal cache.");
#define _CLEARCACHE_METHODDEF \
{"_clearcache", (PyCFunction)_clearcache, METH_NOARGS, _clearcache__doc__},
static PyObject *
_clearcache_impl(PyObject *module);
static PyObject *
_clearcache(PyObject *module, PyObject *Py_UNUSED(ignored))
{
return _clearcache_impl(module);
}
PyDoc_STRVAR(calcsize__doc__,
"calcsize($module, format, /)\n"
"--\n"
"\n"
"Return size in bytes of the struct described by the format string.");
#define CALCSIZE_METHODDEF \
{"calcsize", (PyCFunction)calcsize, METH_O, calcsize__doc__},
PyDoc_STRVAR(unpack__doc__,
"unpack($module, format, inputstr, /)\n"
"--\n"
"\n"
"Return a tuple containing values unpacked according to the format string.\n"
"\n"
"The buffer\'s size in bytes must be calcsize(format).\n"
"\n"
"See help(struct) for more on format strings.");
#define UNPACK_METHODDEF \
{"unpack", (PyCFunction)unpack, METH_FASTCALL, unpack__doc__},
static PyObject *
unpack_impl(PyObject *module, PyObject *format, PyObject *inputstr);
static PyObject *
unpack(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *format;
PyObject *inputstr;
if (!_PyArg_UnpackStack(args, nargs, "unpack",
2, 2,
&format, &inputstr)) {
goto exit;
}
return_value = unpack_impl(module, format, inputstr);
exit:
return return_value;
}
PyDoc_STRVAR(unpack_from__doc__,
"unpack_from($module, format, /, buffer, offset=0)\n"
"--\n"
"\n"
"Return a tuple containing values unpacked according to the format string.\n"
"\n"
"The buffer\'s size, minus offset, must be at least calcsize(format).\n"
"\n"
"See help(struct) for more on format strings.");
#define UNPACK_FROM_METHODDEF \
{"unpack_from", (PyCFunction)unpack_from, METH_FASTCALL|METH_KEYWORDS, unpack_from__doc__},
static PyObject *
unpack_from_impl(PyObject *module, PyObject *format, Py_buffer *buffer,
Py_ssize_t offset);
static PyObject *
unpack_from(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"", "buffer", "offset", NULL};
static _PyArg_Parser _parser = {"Oy*|n:unpack_from", _keywords, 0};
PyObject *format;
Py_buffer buffer = {NULL, NULL};
Py_ssize_t offset = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&format, &buffer, &offset)) {
goto exit;
}
return_value = unpack_from_impl(module, format, &buffer, offset);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(iter_unpack__doc__,
"iter_unpack($module, format, buffer, /)\n"
"--\n"
"\n"
"Return an iterator yielding tuples unpacked from the given bytes.\n"
"\n"
"The bytes are unpacked according to the format string, like\n"
"a repeated invocation of unpack_from().\n"
"\n"
"Requires that the bytes length be a multiple of the format struct size.");
#define ITER_UNPACK_METHODDEF \
{"iter_unpack", (PyCFunction)iter_unpack, METH_FASTCALL, iter_unpack__doc__},
static PyObject *
iter_unpack_impl(PyObject *module, PyObject *format, PyObject *buffer);
static PyObject *
iter_unpack(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *format;
PyObject *buffer;
if (!_PyArg_UnpackStack(args, nargs, "iter_unpack",
2, 2,
&format, &buffer)) {
goto exit;
}
return_value = iter_unpack_impl(module, format, buffer);
exit:
return return_value;
}
/*[clinic end generated code: output=c891fcba70dba650 input=a9049054013a1b77]*/
| 7,315 | 270 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_elementtree.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_elementtree_Element_append__doc__,
"append($self, subelement, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_APPEND_METHODDEF \
{"append", (PyCFunction)_elementtree_Element_append, METH_O, _elementtree_Element_append__doc__},
static PyObject *
_elementtree_Element_append_impl(ElementObject *self, PyObject *subelement);
static PyObject *
_elementtree_Element_append(ElementObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
PyObject *subelement;
if (!PyArg_Parse(arg, "O!:append", &Element_Type, &subelement)) {
goto exit;
}
return_value = _elementtree_Element_append_impl(self, subelement);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_clear__doc__,
"clear($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_CLEAR_METHODDEF \
{"clear", (PyCFunction)_elementtree_Element_clear, METH_NOARGS, _elementtree_Element_clear__doc__},
static PyObject *
_elementtree_Element_clear_impl(ElementObject *self);
static PyObject *
_elementtree_Element_clear(ElementObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_Element_clear_impl(self);
}
PyDoc_STRVAR(_elementtree_Element___copy____doc__,
"__copy__($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT___COPY___METHODDEF \
{"__copy__", (PyCFunction)_elementtree_Element___copy__, METH_NOARGS, _elementtree_Element___copy____doc__},
static PyObject *
_elementtree_Element___copy___impl(ElementObject *self);
static PyObject *
_elementtree_Element___copy__(ElementObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_Element___copy___impl(self);
}
PyDoc_STRVAR(_elementtree_Element___deepcopy____doc__,
"__deepcopy__($self, memo, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT___DEEPCOPY___METHODDEF \
{"__deepcopy__", (PyCFunction)_elementtree_Element___deepcopy__, METH_O, _elementtree_Element___deepcopy____doc__},
PyDoc_STRVAR(_elementtree_Element___sizeof____doc__,
"__sizeof__($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT___SIZEOF___METHODDEF \
{"__sizeof__", (PyCFunction)_elementtree_Element___sizeof__, METH_NOARGS, _elementtree_Element___sizeof____doc__},
static Py_ssize_t
_elementtree_Element___sizeof___impl(ElementObject *self);
static PyObject *
_elementtree_Element___sizeof__(ElementObject *self, PyObject *Py_UNUSED(ignored))
{
PyObject *return_value = NULL;
Py_ssize_t _return_value;
_return_value = _elementtree_Element___sizeof___impl(self);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element___getstate____doc__,
"__getstate__($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT___GETSTATE___METHODDEF \
{"__getstate__", (PyCFunction)_elementtree_Element___getstate__, METH_NOARGS, _elementtree_Element___getstate____doc__},
static PyObject *
_elementtree_Element___getstate___impl(ElementObject *self);
static PyObject *
_elementtree_Element___getstate__(ElementObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_Element___getstate___impl(self);
}
PyDoc_STRVAR(_elementtree_Element___setstate____doc__,
"__setstate__($self, state, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT___SETSTATE___METHODDEF \
{"__setstate__", (PyCFunction)_elementtree_Element___setstate__, METH_O, _elementtree_Element___setstate____doc__},
PyDoc_STRVAR(_elementtree_Element_extend__doc__,
"extend($self, elements, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_EXTEND_METHODDEF \
{"extend", (PyCFunction)_elementtree_Element_extend, METH_O, _elementtree_Element_extend__doc__},
PyDoc_STRVAR(_elementtree_Element_find__doc__,
"find($self, /, path, namespaces=None)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_FIND_METHODDEF \
{"find", (PyCFunction)_elementtree_Element_find, METH_FASTCALL|METH_KEYWORDS, _elementtree_Element_find__doc__},
static PyObject *
_elementtree_Element_find_impl(ElementObject *self, PyObject *path,
PyObject *namespaces);
static PyObject *
_elementtree_Element_find(ElementObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "namespaces", NULL};
static _PyArg_Parser _parser = {"O|O:find", _keywords, 0};
PyObject *path;
PyObject *namespaces = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&path, &namespaces)) {
goto exit;
}
return_value = _elementtree_Element_find_impl(self, path, namespaces);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_findtext__doc__,
"findtext($self, /, path, default=None, namespaces=None)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_FINDTEXT_METHODDEF \
{"findtext", (PyCFunction)_elementtree_Element_findtext, METH_FASTCALL|METH_KEYWORDS, _elementtree_Element_findtext__doc__},
static PyObject *
_elementtree_Element_findtext_impl(ElementObject *self, PyObject *path,
PyObject *default_value,
PyObject *namespaces);
static PyObject *
_elementtree_Element_findtext(ElementObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "default", "namespaces", NULL};
static _PyArg_Parser _parser = {"O|OO:findtext", _keywords, 0};
PyObject *path;
PyObject *default_value = Py_None;
PyObject *namespaces = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&path, &default_value, &namespaces)) {
goto exit;
}
return_value = _elementtree_Element_findtext_impl(self, path, default_value, namespaces);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_findall__doc__,
"findall($self, /, path, namespaces=None)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_FINDALL_METHODDEF \
{"findall", (PyCFunction)_elementtree_Element_findall, METH_FASTCALL|METH_KEYWORDS, _elementtree_Element_findall__doc__},
static PyObject *
_elementtree_Element_findall_impl(ElementObject *self, PyObject *path,
PyObject *namespaces);
static PyObject *
_elementtree_Element_findall(ElementObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "namespaces", NULL};
static _PyArg_Parser _parser = {"O|O:findall", _keywords, 0};
PyObject *path;
PyObject *namespaces = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&path, &namespaces)) {
goto exit;
}
return_value = _elementtree_Element_findall_impl(self, path, namespaces);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_iterfind__doc__,
"iterfind($self, /, path, namespaces=None)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_ITERFIND_METHODDEF \
{"iterfind", (PyCFunction)_elementtree_Element_iterfind, METH_FASTCALL|METH_KEYWORDS, _elementtree_Element_iterfind__doc__},
static PyObject *
_elementtree_Element_iterfind_impl(ElementObject *self, PyObject *path,
PyObject *namespaces);
static PyObject *
_elementtree_Element_iterfind(ElementObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"path", "namespaces", NULL};
static _PyArg_Parser _parser = {"O|O:iterfind", _keywords, 0};
PyObject *path;
PyObject *namespaces = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&path, &namespaces)) {
goto exit;
}
return_value = _elementtree_Element_iterfind_impl(self, path, namespaces);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_get__doc__,
"get($self, /, key, default=None)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_GET_METHODDEF \
{"get", (PyCFunction)_elementtree_Element_get, METH_FASTCALL|METH_KEYWORDS, _elementtree_Element_get__doc__},
static PyObject *
_elementtree_Element_get_impl(ElementObject *self, PyObject *key,
PyObject *default_value);
static PyObject *
_elementtree_Element_get(ElementObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"key", "default", NULL};
static _PyArg_Parser _parser = {"O|O:get", _keywords, 0};
PyObject *key;
PyObject *default_value = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&key, &default_value)) {
goto exit;
}
return_value = _elementtree_Element_get_impl(self, key, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_getchildren__doc__,
"getchildren($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_GETCHILDREN_METHODDEF \
{"getchildren", (PyCFunction)_elementtree_Element_getchildren, METH_NOARGS, _elementtree_Element_getchildren__doc__},
static PyObject *
_elementtree_Element_getchildren_impl(ElementObject *self);
static PyObject *
_elementtree_Element_getchildren(ElementObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_Element_getchildren_impl(self);
}
PyDoc_STRVAR(_elementtree_Element_iter__doc__,
"iter($self, /, tag=None)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_ITER_METHODDEF \
{"iter", (PyCFunction)_elementtree_Element_iter, METH_FASTCALL|METH_KEYWORDS, _elementtree_Element_iter__doc__},
static PyObject *
_elementtree_Element_iter_impl(ElementObject *self, PyObject *tag);
static PyObject *
_elementtree_Element_iter(ElementObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"tag", NULL};
static _PyArg_Parser _parser = {"|O:iter", _keywords, 0};
PyObject *tag = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&tag)) {
goto exit;
}
return_value = _elementtree_Element_iter_impl(self, tag);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_itertext__doc__,
"itertext($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_ITERTEXT_METHODDEF \
{"itertext", (PyCFunction)_elementtree_Element_itertext, METH_NOARGS, _elementtree_Element_itertext__doc__},
static PyObject *
_elementtree_Element_itertext_impl(ElementObject *self);
static PyObject *
_elementtree_Element_itertext(ElementObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_Element_itertext_impl(self);
}
PyDoc_STRVAR(_elementtree_Element_insert__doc__,
"insert($self, index, subelement, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_INSERT_METHODDEF \
{"insert", (PyCFunction)_elementtree_Element_insert, METH_FASTCALL, _elementtree_Element_insert__doc__},
static PyObject *
_elementtree_Element_insert_impl(ElementObject *self, Py_ssize_t index,
PyObject *subelement);
static PyObject *
_elementtree_Element_insert(ElementObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t index;
PyObject *subelement;
if (!_PyArg_ParseStack(args, nargs, "nO!:insert",
&index, &Element_Type, &subelement)) {
goto exit;
}
return_value = _elementtree_Element_insert_impl(self, index, subelement);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_items__doc__,
"items($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_ITEMS_METHODDEF \
{"items", (PyCFunction)_elementtree_Element_items, METH_NOARGS, _elementtree_Element_items__doc__},
static PyObject *
_elementtree_Element_items_impl(ElementObject *self);
static PyObject *
_elementtree_Element_items(ElementObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_Element_items_impl(self);
}
PyDoc_STRVAR(_elementtree_Element_keys__doc__,
"keys($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_KEYS_METHODDEF \
{"keys", (PyCFunction)_elementtree_Element_keys, METH_NOARGS, _elementtree_Element_keys__doc__},
static PyObject *
_elementtree_Element_keys_impl(ElementObject *self);
static PyObject *
_elementtree_Element_keys(ElementObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_Element_keys_impl(self);
}
PyDoc_STRVAR(_elementtree_Element_makeelement__doc__,
"makeelement($self, tag, attrib, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_MAKEELEMENT_METHODDEF \
{"makeelement", (PyCFunction)_elementtree_Element_makeelement, METH_FASTCALL, _elementtree_Element_makeelement__doc__},
static PyObject *
_elementtree_Element_makeelement_impl(ElementObject *self, PyObject *tag,
PyObject *attrib);
static PyObject *
_elementtree_Element_makeelement(ElementObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *tag;
PyObject *attrib;
if (!_PyArg_UnpackStack(args, nargs, "makeelement",
2, 2,
&tag, &attrib)) {
goto exit;
}
return_value = _elementtree_Element_makeelement_impl(self, tag, attrib);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_remove__doc__,
"remove($self, subelement, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_REMOVE_METHODDEF \
{"remove", (PyCFunction)_elementtree_Element_remove, METH_O, _elementtree_Element_remove__doc__},
static PyObject *
_elementtree_Element_remove_impl(ElementObject *self, PyObject *subelement);
static PyObject *
_elementtree_Element_remove(ElementObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
PyObject *subelement;
if (!PyArg_Parse(arg, "O!:remove", &Element_Type, &subelement)) {
goto exit;
}
return_value = _elementtree_Element_remove_impl(self, subelement);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_Element_set__doc__,
"set($self, key, value, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_ELEMENT_SET_METHODDEF \
{"set", (PyCFunction)_elementtree_Element_set, METH_FASTCALL, _elementtree_Element_set__doc__},
static PyObject *
_elementtree_Element_set_impl(ElementObject *self, PyObject *key,
PyObject *value);
static PyObject *
_elementtree_Element_set(ElementObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *key;
PyObject *value;
if (!_PyArg_UnpackStack(args, nargs, "set",
2, 2,
&key, &value)) {
goto exit;
}
return_value = _elementtree_Element_set_impl(self, key, value);
exit:
return return_value;
}
static int
_elementtree_TreeBuilder___init___impl(TreeBuilderObject *self,
PyObject *element_factory);
static int
_elementtree_TreeBuilder___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"element_factory", NULL};
static _PyArg_Parser _parser = {"|O:TreeBuilder", _keywords, 0};
PyObject *element_factory = NULL;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&element_factory)) {
goto exit;
}
return_value = _elementtree_TreeBuilder___init___impl((TreeBuilderObject *)self, element_factory);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_TreeBuilder_data__doc__,
"data($self, data, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_TREEBUILDER_DATA_METHODDEF \
{"data", (PyCFunction)_elementtree_TreeBuilder_data, METH_O, _elementtree_TreeBuilder_data__doc__},
PyDoc_STRVAR(_elementtree_TreeBuilder_end__doc__,
"end($self, tag, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_TREEBUILDER_END_METHODDEF \
{"end", (PyCFunction)_elementtree_TreeBuilder_end, METH_O, _elementtree_TreeBuilder_end__doc__},
PyDoc_STRVAR(_elementtree_TreeBuilder_close__doc__,
"close($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_TREEBUILDER_CLOSE_METHODDEF \
{"close", (PyCFunction)_elementtree_TreeBuilder_close, METH_NOARGS, _elementtree_TreeBuilder_close__doc__},
static PyObject *
_elementtree_TreeBuilder_close_impl(TreeBuilderObject *self);
static PyObject *
_elementtree_TreeBuilder_close(TreeBuilderObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_TreeBuilder_close_impl(self);
}
PyDoc_STRVAR(_elementtree_TreeBuilder_start__doc__,
"start($self, tag, attrs=None, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_TREEBUILDER_START_METHODDEF \
{"start", (PyCFunction)_elementtree_TreeBuilder_start, METH_FASTCALL, _elementtree_TreeBuilder_start__doc__},
static PyObject *
_elementtree_TreeBuilder_start_impl(TreeBuilderObject *self, PyObject *tag,
PyObject *attrs);
static PyObject *
_elementtree_TreeBuilder_start(TreeBuilderObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *tag;
PyObject *attrs = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "start",
1, 2,
&tag, &attrs)) {
goto exit;
}
return_value = _elementtree_TreeBuilder_start_impl(self, tag, attrs);
exit:
return return_value;
}
static int
_elementtree_XMLParser___init___impl(XMLParserObject *self, PyObject *html,
PyObject *target, const char *encoding);
static int
_elementtree_XMLParser___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"html", "target", "encoding", NULL};
static _PyArg_Parser _parser = {"|OOz:XMLParser", _keywords, 0};
PyObject *html = NULL;
PyObject *target = NULL;
const char *encoding = NULL;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&html, &target, &encoding)) {
goto exit;
}
return_value = _elementtree_XMLParser___init___impl((XMLParserObject *)self, html, target, encoding);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_XMLParser_close__doc__,
"close($self, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_XMLPARSER_CLOSE_METHODDEF \
{"close", (PyCFunction)_elementtree_XMLParser_close, METH_NOARGS, _elementtree_XMLParser_close__doc__},
static PyObject *
_elementtree_XMLParser_close_impl(XMLParserObject *self);
static PyObject *
_elementtree_XMLParser_close(XMLParserObject *self, PyObject *Py_UNUSED(ignored))
{
return _elementtree_XMLParser_close_impl(self);
}
PyDoc_STRVAR(_elementtree_XMLParser_feed__doc__,
"feed($self, data, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_XMLPARSER_FEED_METHODDEF \
{"feed", (PyCFunction)_elementtree_XMLParser_feed, METH_O, _elementtree_XMLParser_feed__doc__},
PyDoc_STRVAR(_elementtree_XMLParser__parse_whole__doc__,
"_parse_whole($self, file, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_XMLPARSER__PARSE_WHOLE_METHODDEF \
{"_parse_whole", (PyCFunction)_elementtree_XMLParser__parse_whole, METH_O, _elementtree_XMLParser__parse_whole__doc__},
PyDoc_STRVAR(_elementtree_XMLParser_doctype__doc__,
"doctype($self, name, pubid, system, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_XMLPARSER_DOCTYPE_METHODDEF \
{"doctype", (PyCFunction)_elementtree_XMLParser_doctype, METH_FASTCALL, _elementtree_XMLParser_doctype__doc__},
static PyObject *
_elementtree_XMLParser_doctype_impl(XMLParserObject *self, PyObject *name,
PyObject *pubid, PyObject *system);
static PyObject *
_elementtree_XMLParser_doctype(XMLParserObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *name;
PyObject *pubid;
PyObject *system;
if (!_PyArg_UnpackStack(args, nargs, "doctype",
3, 3,
&name, &pubid, &system)) {
goto exit;
}
return_value = _elementtree_XMLParser_doctype_impl(self, name, pubid, system);
exit:
return return_value;
}
PyDoc_STRVAR(_elementtree_XMLParser__setevents__doc__,
"_setevents($self, events_queue, events_to_report=None, /)\n"
"--\n"
"\n");
#define _ELEMENTTREE_XMLPARSER__SETEVENTS_METHODDEF \
{"_setevents", (PyCFunction)_elementtree_XMLParser__setevents, METH_FASTCALL, _elementtree_XMLParser__setevents__doc__},
static PyObject *
_elementtree_XMLParser__setevents_impl(XMLParserObject *self,
PyObject *events_queue,
PyObject *events_to_report);
static PyObject *
_elementtree_XMLParser__setevents(XMLParserObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *events_queue;
PyObject *events_to_report = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "_setevents",
1, 2,
&events_queue, &events_to_report)) {
goto exit;
}
return_value = _elementtree_XMLParser__setevents_impl(self, events_queue, events_to_report);
exit:
return return_value;
}
/*[clinic end generated code: output=834a6b1d4032cea2 input=a9049054013a1b77]*/
| 21,341 | 707 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/arraymodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(array_array___copy____doc__,
"__copy__($self, /)\n"
"--\n"
"\n"
"Return a copy of the array.");
#define ARRAY_ARRAY___COPY___METHODDEF \
{"__copy__", (PyCFunction)array_array___copy__, METH_NOARGS, array_array___copy____doc__},
static PyObject *
array_array___copy___impl(arrayobject *self);
static PyObject *
array_array___copy__(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array___copy___impl(self);
}
PyDoc_STRVAR(array_array___deepcopy____doc__,
"__deepcopy__($self, unused, /)\n"
"--\n"
"\n"
"Return a copy of the array.");
#define ARRAY_ARRAY___DEEPCOPY___METHODDEF \
{"__deepcopy__", (PyCFunction)array_array___deepcopy__, METH_O, array_array___deepcopy____doc__},
PyDoc_STRVAR(array_array_count__doc__,
"count($self, v, /)\n"
"--\n"
"\n"
"Return number of occurrences of v in the array.");
#define ARRAY_ARRAY_COUNT_METHODDEF \
{"count", (PyCFunction)array_array_count, METH_O, array_array_count__doc__},
PyDoc_STRVAR(array_array_index__doc__,
"index($self, v, /)\n"
"--\n"
"\n"
"Return index of first occurrence of v in the array.");
#define ARRAY_ARRAY_INDEX_METHODDEF \
{"index", (PyCFunction)array_array_index, METH_O, array_array_index__doc__},
PyDoc_STRVAR(array_array_remove__doc__,
"remove($self, v, /)\n"
"--\n"
"\n"
"Remove the first occurrence of v in the array.");
#define ARRAY_ARRAY_REMOVE_METHODDEF \
{"remove", (PyCFunction)array_array_remove, METH_O, array_array_remove__doc__},
PyDoc_STRVAR(array_array_pop__doc__,
"pop($self, i=-1, /)\n"
"--\n"
"\n"
"Return the i-th element and delete it from the array.\n"
"\n"
"i defaults to -1.");
#define ARRAY_ARRAY_POP_METHODDEF \
{"pop", (PyCFunction)array_array_pop, METH_FASTCALL, array_array_pop__doc__},
static PyObject *
array_array_pop_impl(arrayobject *self, Py_ssize_t i);
static PyObject *
array_array_pop(arrayobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t i = -1;
if (!_PyArg_ParseStack(args, nargs, "|n:pop",
&i)) {
goto exit;
}
return_value = array_array_pop_impl(self, i);
exit:
return return_value;
}
PyDoc_STRVAR(array_array_extend__doc__,
"extend($self, bb, /)\n"
"--\n"
"\n"
"Append items to the end of the array.");
#define ARRAY_ARRAY_EXTEND_METHODDEF \
{"extend", (PyCFunction)array_array_extend, METH_O, array_array_extend__doc__},
PyDoc_STRVAR(array_array_insert__doc__,
"insert($self, i, v, /)\n"
"--\n"
"\n"
"Insert a new item v into the array before position i.");
#define ARRAY_ARRAY_INSERT_METHODDEF \
{"insert", (PyCFunction)array_array_insert, METH_FASTCALL, array_array_insert__doc__},
static PyObject *
array_array_insert_impl(arrayobject *self, Py_ssize_t i, PyObject *v);
static PyObject *
array_array_insert(arrayobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t i;
PyObject *v;
if (!_PyArg_ParseStack(args, nargs, "nO:insert",
&i, &v)) {
goto exit;
}
return_value = array_array_insert_impl(self, i, v);
exit:
return return_value;
}
PyDoc_STRVAR(array_array_buffer_info__doc__,
"buffer_info($self, /)\n"
"--\n"
"\n"
"Return a tuple (address, length) giving the current memory address and the length in items of the buffer used to hold array\'s contents.\n"
"\n"
"The length should be multiplied by the itemsize attribute to calculate\n"
"the buffer length in bytes.");
#define ARRAY_ARRAY_BUFFER_INFO_METHODDEF \
{"buffer_info", (PyCFunction)array_array_buffer_info, METH_NOARGS, array_array_buffer_info__doc__},
static PyObject *
array_array_buffer_info_impl(arrayobject *self);
static PyObject *
array_array_buffer_info(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array_buffer_info_impl(self);
}
PyDoc_STRVAR(array_array_append__doc__,
"append($self, v, /)\n"
"--\n"
"\n"
"Append new value v to the end of the array.");
#define ARRAY_ARRAY_APPEND_METHODDEF \
{"append", (PyCFunction)array_array_append, METH_O, array_array_append__doc__},
PyDoc_STRVAR(array_array_byteswap__doc__,
"byteswap($self, /)\n"
"--\n"
"\n"
"Byteswap all items of the array.\n"
"\n"
"If the items in the array are not 1, 2, 4, or 8 bytes in size, RuntimeError is\n"
"raised.");
#define ARRAY_ARRAY_BYTESWAP_METHODDEF \
{"byteswap", (PyCFunction)array_array_byteswap, METH_NOARGS, array_array_byteswap__doc__},
static PyObject *
array_array_byteswap_impl(arrayobject *self);
static PyObject *
array_array_byteswap(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array_byteswap_impl(self);
}
PyDoc_STRVAR(array_array_reverse__doc__,
"reverse($self, /)\n"
"--\n"
"\n"
"Reverse the order of the items in the array.");
#define ARRAY_ARRAY_REVERSE_METHODDEF \
{"reverse", (PyCFunction)array_array_reverse, METH_NOARGS, array_array_reverse__doc__},
static PyObject *
array_array_reverse_impl(arrayobject *self);
static PyObject *
array_array_reverse(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array_reverse_impl(self);
}
PyDoc_STRVAR(array_array_fromfile__doc__,
"fromfile($self, f, n, /)\n"
"--\n"
"\n"
"Read n objects from the file object f and append them to the end of the array.");
#define ARRAY_ARRAY_FROMFILE_METHODDEF \
{"fromfile", (PyCFunction)array_array_fromfile, METH_FASTCALL, array_array_fromfile__doc__},
static PyObject *
array_array_fromfile_impl(arrayobject *self, PyObject *f, Py_ssize_t n);
static PyObject *
array_array_fromfile(arrayobject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *f;
Py_ssize_t n;
if (!_PyArg_ParseStack(args, nargs, "On:fromfile",
&f, &n)) {
goto exit;
}
return_value = array_array_fromfile_impl(self, f, n);
exit:
return return_value;
}
PyDoc_STRVAR(array_array_tofile__doc__,
"tofile($self, f, /)\n"
"--\n"
"\n"
"Write all items (as machine values) to the file object f.");
#define ARRAY_ARRAY_TOFILE_METHODDEF \
{"tofile", (PyCFunction)array_array_tofile, METH_O, array_array_tofile__doc__},
PyDoc_STRVAR(array_array_fromlist__doc__,
"fromlist($self, list, /)\n"
"--\n"
"\n"
"Append items to array from list.");
#define ARRAY_ARRAY_FROMLIST_METHODDEF \
{"fromlist", (PyCFunction)array_array_fromlist, METH_O, array_array_fromlist__doc__},
PyDoc_STRVAR(array_array_tolist__doc__,
"tolist($self, /)\n"
"--\n"
"\n"
"Convert array to an ordinary list with the same items.");
#define ARRAY_ARRAY_TOLIST_METHODDEF \
{"tolist", (PyCFunction)array_array_tolist, METH_NOARGS, array_array_tolist__doc__},
static PyObject *
array_array_tolist_impl(arrayobject *self);
static PyObject *
array_array_tolist(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array_tolist_impl(self);
}
PyDoc_STRVAR(array_array_fromstring__doc__,
"fromstring($self, buffer, /)\n"
"--\n"
"\n"
"Appends items from the string, interpreting it as an array of machine values, as if it had been read from a file using the fromfile() method).\n"
"\n"
"This method is deprecated. Use frombytes instead.");
#define ARRAY_ARRAY_FROMSTRING_METHODDEF \
{"fromstring", (PyCFunction)array_array_fromstring, METH_O, array_array_fromstring__doc__},
static PyObject *
array_array_fromstring_impl(arrayobject *self, Py_buffer *buffer);
static PyObject *
array_array_fromstring(arrayobject *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "s*:fromstring", &buffer)) {
goto exit;
}
return_value = array_array_fromstring_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(array_array_frombytes__doc__,
"frombytes($self, buffer, /)\n"
"--\n"
"\n"
"Appends items from the string, interpreting it as an array of machine values, as if it had been read from a file using the fromfile() method).");
#define ARRAY_ARRAY_FROMBYTES_METHODDEF \
{"frombytes", (PyCFunction)array_array_frombytes, METH_O, array_array_frombytes__doc__},
static PyObject *
array_array_frombytes_impl(arrayobject *self, Py_buffer *buffer);
static PyObject *
array_array_frombytes(arrayobject *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:frombytes", &buffer)) {
goto exit;
}
return_value = array_array_frombytes_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(array_array_tobytes__doc__,
"tobytes($self, /)\n"
"--\n"
"\n"
"Convert the array to an array of machine values and return the bytes representation.");
#define ARRAY_ARRAY_TOBYTES_METHODDEF \
{"tobytes", (PyCFunction)array_array_tobytes, METH_NOARGS, array_array_tobytes__doc__},
static PyObject *
array_array_tobytes_impl(arrayobject *self);
static PyObject *
array_array_tobytes(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array_tobytes_impl(self);
}
PyDoc_STRVAR(array_array_tostring__doc__,
"tostring($self, /)\n"
"--\n"
"\n"
"Convert the array to an array of machine values and return the bytes representation.\n"
"\n"
"This method is deprecated. Use tobytes instead.");
#define ARRAY_ARRAY_TOSTRING_METHODDEF \
{"tostring", (PyCFunction)array_array_tostring, METH_NOARGS, array_array_tostring__doc__},
static PyObject *
array_array_tostring_impl(arrayobject *self);
static PyObject *
array_array_tostring(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array_tostring_impl(self);
}
PyDoc_STRVAR(array_array_fromunicode__doc__,
"fromunicode($self, ustr, /)\n"
"--\n"
"\n"
"Extends this array with data from the unicode string ustr.\n"
"\n"
"The array must be a unicode type array; otherwise a ValueError is raised.\n"
"Use array.frombytes(ustr.encode(...)) to append Unicode data to an array of\n"
"some other type.");
#define ARRAY_ARRAY_FROMUNICODE_METHODDEF \
{"fromunicode", (PyCFunction)array_array_fromunicode, METH_O, array_array_fromunicode__doc__},
static PyObject *
array_array_fromunicode_impl(arrayobject *self, Py_UNICODE *ustr,
Py_ssize_clean_t ustr_length);
static PyObject *
array_array_fromunicode(arrayobject *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_UNICODE *ustr;
Py_ssize_clean_t ustr_length;
if (!PyArg_Parse(arg, "u#:fromunicode", &ustr, &ustr_length)) {
goto exit;
}
return_value = array_array_fromunicode_impl(self, ustr, ustr_length);
exit:
return return_value;
}
PyDoc_STRVAR(array_array_tounicode__doc__,
"tounicode($self, /)\n"
"--\n"
"\n"
"Extends this array with data from the unicode string ustr.\n"
"\n"
"Convert the array to a unicode string. The array must be a unicode type array;\n"
"otherwise a ValueError is raised. Use array.tobytes().decode() to obtain a\n"
"unicode string from an array of some other type.");
#define ARRAY_ARRAY_TOUNICODE_METHODDEF \
{"tounicode", (PyCFunction)array_array_tounicode, METH_NOARGS, array_array_tounicode__doc__},
static PyObject *
array_array_tounicode_impl(arrayobject *self);
static PyObject *
array_array_tounicode(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array_tounicode_impl(self);
}
PyDoc_STRVAR(array_array___sizeof____doc__,
"__sizeof__($self, /)\n"
"--\n"
"\n"
"Size of the array in memory, in bytes.");
#define ARRAY_ARRAY___SIZEOF___METHODDEF \
{"__sizeof__", (PyCFunction)array_array___sizeof__, METH_NOARGS, array_array___sizeof____doc__},
static PyObject *
array_array___sizeof___impl(arrayobject *self);
static PyObject *
array_array___sizeof__(arrayobject *self, PyObject *Py_UNUSED(ignored))
{
return array_array___sizeof___impl(self);
}
PyDoc_STRVAR(array__array_reconstructor__doc__,
"_array_reconstructor($module, arraytype, typecode, mformat_code, items,\n"
" /)\n"
"--\n"
"\n"
"Internal. Used for pickling support.");
#define ARRAY__ARRAY_RECONSTRUCTOR_METHODDEF \
{"_array_reconstructor", (PyCFunction)array__array_reconstructor, METH_FASTCALL, array__array_reconstructor__doc__},
static PyObject *
array__array_reconstructor_impl(PyObject *module, PyTypeObject *arraytype,
int typecode,
enum machine_format_code mformat_code,
PyObject *items);
static PyObject *
array__array_reconstructor(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyTypeObject *arraytype;
int typecode;
enum machine_format_code mformat_code;
PyObject *items;
if (!_PyArg_ParseStack(args, nargs, "OCiO:_array_reconstructor",
&arraytype, &typecode, &mformat_code, &items)) {
goto exit;
}
return_value = array__array_reconstructor_impl(module, arraytype, typecode, mformat_code, items);
exit:
return return_value;
}
PyDoc_STRVAR(array_array___reduce_ex____doc__,
"__reduce_ex__($self, value, /)\n"
"--\n"
"\n"
"Return state information for pickling.");
#define ARRAY_ARRAY___REDUCE_EX___METHODDEF \
{"__reduce_ex__", (PyCFunction)array_array___reduce_ex__, METH_O, array_array___reduce_ex____doc__},
PyDoc_STRVAR(array_arrayiterator___reduce____doc__,
"__reduce__($self, /)\n"
"--\n"
"\n"
"Return state information for pickling.");
#define ARRAY_ARRAYITERATOR___REDUCE___METHODDEF \
{"__reduce__", (PyCFunction)array_arrayiterator___reduce__, METH_NOARGS, array_arrayiterator___reduce____doc__},
static PyObject *
array_arrayiterator___reduce___impl(arrayiterobject *self);
static PyObject *
array_arrayiterator___reduce__(arrayiterobject *self, PyObject *Py_UNUSED(ignored))
{
return array_arrayiterator___reduce___impl(self);
}
PyDoc_STRVAR(array_arrayiterator___setstate____doc__,
"__setstate__($self, state, /)\n"
"--\n"
"\n"
"Set state information for unpickling.");
#define ARRAY_ARRAYITERATOR___SETSTATE___METHODDEF \
{"__setstate__", (PyCFunction)array_arrayiterator___setstate__, METH_O, array_arrayiterator___setstate____doc__},
/*[clinic end generated code: output=c7dfe61312b236a9 input=a9049054013a1b77]*/
| 14,413 | 510 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_sre.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_sre_getcodesize__doc__,
"getcodesize($module, /)\n"
"--\n"
"\n");
#define _SRE_GETCODESIZE_METHODDEF \
{"getcodesize", (PyCFunction)_sre_getcodesize, METH_NOARGS, _sre_getcodesize__doc__},
static int
_sre_getcodesize_impl(PyObject *module);
static PyObject *
_sre_getcodesize(PyObject *module, PyObject *Py_UNUSED(ignored))
{
PyObject *return_value = NULL;
int _return_value;
_return_value = _sre_getcodesize_impl(module);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_getlower__doc__,
"getlower($module, character, flags, /)\n"
"--\n"
"\n");
#define _SRE_GETLOWER_METHODDEF \
{"getlower", (PyCFunction)_sre_getlower, METH_FASTCALL, _sre_getlower__doc__},
static int
_sre_getlower_impl(PyObject *module, int character, int flags);
static PyObject *
_sre_getlower(PyObject *module, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
int character;
int flags;
int _return_value;
if (!_PyArg_ParseStack(args, nargs, "ii:getlower",
&character, &flags)) {
goto exit;
}
_return_value = _sre_getlower_impl(module, character, flags);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromLong((long)_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_match__doc__,
"match($self, /, string=None, pos=0, endpos=sys.maxsize, *, pattern=None)\n"
"--\n"
"\n"
"Matches zero or more characters at the beginning of the string.");
#define _SRE_SRE_PATTERN_MATCH_METHODDEF \
{"match", (PyCFunction)_sre_SRE_Pattern_match, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_match__doc__},
static PyObject *
_sre_SRE_Pattern_match_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos,
PyObject *pattern);
static PyObject *
_sre_SRE_Pattern_match(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"string", "pos", "endpos", "pattern", NULL};
static _PyArg_Parser _parser = {"|Onn$O:match", _keywords, 0};
PyObject *string = NULL;
Py_ssize_t pos = 0;
Py_ssize_t endpos = PY_SSIZE_T_MAX;
PyObject *pattern = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&string, &pos, &endpos, &pattern)) {
goto exit;
}
return_value = _sre_SRE_Pattern_match_impl(self, string, pos, endpos, pattern);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_fullmatch__doc__,
"fullmatch($self, /, string=None, pos=0, endpos=sys.maxsize, *,\n"
" pattern=None)\n"
"--\n"
"\n"
"Matches against all of the string");
#define _SRE_SRE_PATTERN_FULLMATCH_METHODDEF \
{"fullmatch", (PyCFunction)_sre_SRE_Pattern_fullmatch, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_fullmatch__doc__},
static PyObject *
_sre_SRE_Pattern_fullmatch_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos,
PyObject *pattern);
static PyObject *
_sre_SRE_Pattern_fullmatch(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"string", "pos", "endpos", "pattern", NULL};
static _PyArg_Parser _parser = {"|Onn$O:fullmatch", _keywords, 0};
PyObject *string = NULL;
Py_ssize_t pos = 0;
Py_ssize_t endpos = PY_SSIZE_T_MAX;
PyObject *pattern = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&string, &pos, &endpos, &pattern)) {
goto exit;
}
return_value = _sre_SRE_Pattern_fullmatch_impl(self, string, pos, endpos, pattern);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_search__doc__,
"search($self, /, string=None, pos=0, endpos=sys.maxsize, *,\n"
" pattern=None)\n"
"--\n"
"\n"
"Scan through string looking for a match, and return a corresponding match object instance.\n"
"\n"
"Return None if no position in the string matches.");
#define _SRE_SRE_PATTERN_SEARCH_METHODDEF \
{"search", (PyCFunction)_sre_SRE_Pattern_search, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_search__doc__},
static PyObject *
_sre_SRE_Pattern_search_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos,
PyObject *pattern);
static PyObject *
_sre_SRE_Pattern_search(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"string", "pos", "endpos", "pattern", NULL};
static _PyArg_Parser _parser = {"|Onn$O:search", _keywords, 0};
PyObject *string = NULL;
Py_ssize_t pos = 0;
Py_ssize_t endpos = PY_SSIZE_T_MAX;
PyObject *pattern = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&string, &pos, &endpos, &pattern)) {
goto exit;
}
return_value = _sre_SRE_Pattern_search_impl(self, string, pos, endpos, pattern);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_findall__doc__,
"findall($self, /, string=None, pos=0, endpos=sys.maxsize, *,\n"
" source=None)\n"
"--\n"
"\n"
"Return a list of all non-overlapping matches of pattern in string.");
#define _SRE_SRE_PATTERN_FINDALL_METHODDEF \
{"findall", (PyCFunction)_sre_SRE_Pattern_findall, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_findall__doc__},
static PyObject *
_sre_SRE_Pattern_findall_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos,
PyObject *source);
static PyObject *
_sre_SRE_Pattern_findall(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"string", "pos", "endpos", "source", NULL};
static _PyArg_Parser _parser = {"|Onn$O:findall", _keywords, 0};
PyObject *string = NULL;
Py_ssize_t pos = 0;
Py_ssize_t endpos = PY_SSIZE_T_MAX;
PyObject *source = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&string, &pos, &endpos, &source)) {
goto exit;
}
return_value = _sre_SRE_Pattern_findall_impl(self, string, pos, endpos, source);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_finditer__doc__,
"finditer($self, /, string, pos=0, endpos=sys.maxsize)\n"
"--\n"
"\n"
"Return an iterator over all non-overlapping matches for the RE pattern in string.\n"
"\n"
"For each match, the iterator returns a match object.");
#define _SRE_SRE_PATTERN_FINDITER_METHODDEF \
{"finditer", (PyCFunction)_sre_SRE_Pattern_finditer, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_finditer__doc__},
static PyObject *
_sre_SRE_Pattern_finditer_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos);
static PyObject *
_sre_SRE_Pattern_finditer(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
static _PyArg_Parser _parser = {"O|nn:finditer", _keywords, 0};
PyObject *string;
Py_ssize_t pos = 0;
Py_ssize_t endpos = PY_SSIZE_T_MAX;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&string, &pos, &endpos)) {
goto exit;
}
return_value = _sre_SRE_Pattern_finditer_impl(self, string, pos, endpos);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_scanner__doc__,
"scanner($self, /, string, pos=0, endpos=sys.maxsize)\n"
"--\n"
"\n");
#define _SRE_SRE_PATTERN_SCANNER_METHODDEF \
{"scanner", (PyCFunction)_sre_SRE_Pattern_scanner, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_scanner__doc__},
static PyObject *
_sre_SRE_Pattern_scanner_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos);
static PyObject *
_sre_SRE_Pattern_scanner(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
static _PyArg_Parser _parser = {"O|nn:scanner", _keywords, 0};
PyObject *string;
Py_ssize_t pos = 0;
Py_ssize_t endpos = PY_SSIZE_T_MAX;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&string, &pos, &endpos)) {
goto exit;
}
return_value = _sre_SRE_Pattern_scanner_impl(self, string, pos, endpos);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_split__doc__,
"split($self, /, string=None, maxsplit=0, *, source=None)\n"
"--\n"
"\n"
"Split string by the occurrences of pattern.");
#define _SRE_SRE_PATTERN_SPLIT_METHODDEF \
{"split", (PyCFunction)_sre_SRE_Pattern_split, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_split__doc__},
static PyObject *
_sre_SRE_Pattern_split_impl(PatternObject *self, PyObject *string,
Py_ssize_t maxsplit, PyObject *source);
static PyObject *
_sre_SRE_Pattern_split(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"string", "maxsplit", "source", NULL};
static _PyArg_Parser _parser = {"|On$O:split", _keywords, 0};
PyObject *string = NULL;
Py_ssize_t maxsplit = 0;
PyObject *source = NULL;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&string, &maxsplit, &source)) {
goto exit;
}
return_value = _sre_SRE_Pattern_split_impl(self, string, maxsplit, source);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_sub__doc__,
"sub($self, /, repl, string, count=0)\n"
"--\n"
"\n"
"Return the string obtained by replacing the leftmost non-overlapping occurrences of pattern in string by the replacement repl.");
#define _SRE_SRE_PATTERN_SUB_METHODDEF \
{"sub", (PyCFunction)_sre_SRE_Pattern_sub, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_sub__doc__},
static PyObject *
_sre_SRE_Pattern_sub_impl(PatternObject *self, PyObject *repl,
PyObject *string, Py_ssize_t count);
static PyObject *
_sre_SRE_Pattern_sub(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"repl", "string", "count", NULL};
static _PyArg_Parser _parser = {"OO|n:sub", _keywords, 0};
PyObject *repl;
PyObject *string;
Py_ssize_t count = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&repl, &string, &count)) {
goto exit;
}
return_value = _sre_SRE_Pattern_sub_impl(self, repl, string, count);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern_subn__doc__,
"subn($self, /, repl, string, count=0)\n"
"--\n"
"\n"
"Return the tuple (new_string, number_of_subs_made) found by replacing the leftmost non-overlapping occurrences of pattern with the replacement repl.");
#define _SRE_SRE_PATTERN_SUBN_METHODDEF \
{"subn", (PyCFunction)_sre_SRE_Pattern_subn, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_subn__doc__},
static PyObject *
_sre_SRE_Pattern_subn_impl(PatternObject *self, PyObject *repl,
PyObject *string, Py_ssize_t count);
static PyObject *
_sre_SRE_Pattern_subn(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"repl", "string", "count", NULL};
static _PyArg_Parser _parser = {"OO|n:subn", _keywords, 0};
PyObject *repl;
PyObject *string;
Py_ssize_t count = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&repl, &string, &count)) {
goto exit;
}
return_value = _sre_SRE_Pattern_subn_impl(self, repl, string, count);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Pattern___copy____doc__,
"__copy__($self, /)\n"
"--\n"
"\n");
#define _SRE_SRE_PATTERN___COPY___METHODDEF \
{"__copy__", (PyCFunction)_sre_SRE_Pattern___copy__, METH_NOARGS, _sre_SRE_Pattern___copy____doc__},
static PyObject *
_sre_SRE_Pattern___copy___impl(PatternObject *self);
static PyObject *
_sre_SRE_Pattern___copy__(PatternObject *self, PyObject *Py_UNUSED(ignored))
{
return _sre_SRE_Pattern___copy___impl(self);
}
PyDoc_STRVAR(_sre_SRE_Pattern___deepcopy____doc__,
"__deepcopy__($self, /, memo)\n"
"--\n"
"\n");
#define _SRE_SRE_PATTERN___DEEPCOPY___METHODDEF \
{"__deepcopy__", (PyCFunction)_sre_SRE_Pattern___deepcopy__, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern___deepcopy____doc__},
static PyObject *
_sre_SRE_Pattern___deepcopy___impl(PatternObject *self, PyObject *memo);
static PyObject *
_sre_SRE_Pattern___deepcopy__(PatternObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"memo", NULL};
static _PyArg_Parser _parser = {"O:__deepcopy__", _keywords, 0};
PyObject *memo;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&memo)) {
goto exit;
}
return_value = _sre_SRE_Pattern___deepcopy___impl(self, memo);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_compile__doc__,
"compile($module, /, pattern, flags, code, groups, groupindex,\n"
" indexgroup)\n"
"--\n"
"\n");
#define _SRE_COMPILE_METHODDEF \
{"compile", (PyCFunction)_sre_compile, METH_FASTCALL|METH_KEYWORDS, _sre_compile__doc__},
static PyObject *
_sre_compile_impl(PyObject *module, PyObject *pattern, int flags,
PyObject *code, Py_ssize_t groups, PyObject *groupindex,
PyObject *indexgroup);
static PyObject *
_sre_compile(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"pattern", "flags", "code", "groups", "groupindex", "indexgroup", NULL};
static _PyArg_Parser _parser = {"OiO!nOO:compile", _keywords, 0};
PyObject *pattern;
int flags;
PyObject *code;
Py_ssize_t groups;
PyObject *groupindex;
PyObject *indexgroup;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&pattern, &flags, &PyList_Type, &code, &groups, &groupindex, &indexgroup)) {
goto exit;
}
return_value = _sre_compile_impl(module, pattern, flags, code, groups, groupindex, indexgroup);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Match_expand__doc__,
"expand($self, /, template)\n"
"--\n"
"\n"
"Return the string obtained by doing backslash substitution on the string template, as done by the sub() method.");
#define _SRE_SRE_MATCH_EXPAND_METHODDEF \
{"expand", (PyCFunction)_sre_SRE_Match_expand, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Match_expand__doc__},
static PyObject *
_sre_SRE_Match_expand_impl(MatchObject *self, PyObject *template);
static PyObject *
_sre_SRE_Match_expand(MatchObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"template", NULL};
static _PyArg_Parser _parser = {"O:expand", _keywords, 0};
PyObject *template;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&template)) {
goto exit;
}
return_value = _sre_SRE_Match_expand_impl(self, template);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Match_groups__doc__,
"groups($self, /, default=None)\n"
"--\n"
"\n"
"Return a tuple containing all the subgroups of the match, from 1.\n"
"\n"
" default\n"
" Is used for groups that did not participate in the match.");
#define _SRE_SRE_MATCH_GROUPS_METHODDEF \
{"groups", (PyCFunction)_sre_SRE_Match_groups, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Match_groups__doc__},
static PyObject *
_sre_SRE_Match_groups_impl(MatchObject *self, PyObject *default_value);
static PyObject *
_sre_SRE_Match_groups(MatchObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"default", NULL};
static _PyArg_Parser _parser = {"|O:groups", _keywords, 0};
PyObject *default_value = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&default_value)) {
goto exit;
}
return_value = _sre_SRE_Match_groups_impl(self, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Match_groupdict__doc__,
"groupdict($self, /, default=None)\n"
"--\n"
"\n"
"Return a dictionary containing all the named subgroups of the match, keyed by the subgroup name.\n"
"\n"
" default\n"
" Is used for groups that did not participate in the match.");
#define _SRE_SRE_MATCH_GROUPDICT_METHODDEF \
{"groupdict", (PyCFunction)_sre_SRE_Match_groupdict, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Match_groupdict__doc__},
static PyObject *
_sre_SRE_Match_groupdict_impl(MatchObject *self, PyObject *default_value);
static PyObject *
_sre_SRE_Match_groupdict(MatchObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"default", NULL};
static _PyArg_Parser _parser = {"|O:groupdict", _keywords, 0};
PyObject *default_value = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&default_value)) {
goto exit;
}
return_value = _sre_SRE_Match_groupdict_impl(self, default_value);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Match_start__doc__,
"start($self, group=0, /)\n"
"--\n"
"\n"
"Return index of the start of the substring matched by group.");
#define _SRE_SRE_MATCH_START_METHODDEF \
{"start", (PyCFunction)_sre_SRE_Match_start, METH_FASTCALL, _sre_SRE_Match_start__doc__},
static Py_ssize_t
_sre_SRE_Match_start_impl(MatchObject *self, PyObject *group);
static PyObject *
_sre_SRE_Match_start(MatchObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *group = NULL;
Py_ssize_t _return_value;
if (!_PyArg_UnpackStack(args, nargs, "start",
0, 1,
&group)) {
goto exit;
}
_return_value = _sre_SRE_Match_start_impl(self, group);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Match_end__doc__,
"end($self, group=0, /)\n"
"--\n"
"\n"
"Return index of the end of the substring matched by group.");
#define _SRE_SRE_MATCH_END_METHODDEF \
{"end", (PyCFunction)_sre_SRE_Match_end, METH_FASTCALL, _sre_SRE_Match_end__doc__},
static Py_ssize_t
_sre_SRE_Match_end_impl(MatchObject *self, PyObject *group);
static PyObject *
_sre_SRE_Match_end(MatchObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *group = NULL;
Py_ssize_t _return_value;
if (!_PyArg_UnpackStack(args, nargs, "end",
0, 1,
&group)) {
goto exit;
}
_return_value = _sre_SRE_Match_end_impl(self, group);
if ((_return_value == -1) && PyErr_Occurred()) {
goto exit;
}
return_value = PyLong_FromSsize_t(_return_value);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Match_span__doc__,
"span($self, group=0, /)\n"
"--\n"
"\n"
"For MatchObject m, return the 2-tuple (m.start(group), m.end(group)).");
#define _SRE_SRE_MATCH_SPAN_METHODDEF \
{"span", (PyCFunction)_sre_SRE_Match_span, METH_FASTCALL, _sre_SRE_Match_span__doc__},
static PyObject *
_sre_SRE_Match_span_impl(MatchObject *self, PyObject *group);
static PyObject *
_sre_SRE_Match_span(MatchObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *group = NULL;
if (!_PyArg_UnpackStack(args, nargs, "span",
0, 1,
&group)) {
goto exit;
}
return_value = _sre_SRE_Match_span_impl(self, group);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Match___copy____doc__,
"__copy__($self, /)\n"
"--\n"
"\n");
#define _SRE_SRE_MATCH___COPY___METHODDEF \
{"__copy__", (PyCFunction)_sre_SRE_Match___copy__, METH_NOARGS, _sre_SRE_Match___copy____doc__},
static PyObject *
_sre_SRE_Match___copy___impl(MatchObject *self);
static PyObject *
_sre_SRE_Match___copy__(MatchObject *self, PyObject *Py_UNUSED(ignored))
{
return _sre_SRE_Match___copy___impl(self);
}
PyDoc_STRVAR(_sre_SRE_Match___deepcopy____doc__,
"__deepcopy__($self, /, memo)\n"
"--\n"
"\n");
#define _SRE_SRE_MATCH___DEEPCOPY___METHODDEF \
{"__deepcopy__", (PyCFunction)_sre_SRE_Match___deepcopy__, METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Match___deepcopy____doc__},
static PyObject *
_sre_SRE_Match___deepcopy___impl(MatchObject *self, PyObject *memo);
static PyObject *
_sre_SRE_Match___deepcopy__(MatchObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"memo", NULL};
static _PyArg_Parser _parser = {"O:__deepcopy__", _keywords, 0};
PyObject *memo;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&memo)) {
goto exit;
}
return_value = _sre_SRE_Match___deepcopy___impl(self, memo);
exit:
return return_value;
}
PyDoc_STRVAR(_sre_SRE_Scanner_match__doc__,
"match($self, /)\n"
"--\n"
"\n");
#define _SRE_SRE_SCANNER_MATCH_METHODDEF \
{"match", (PyCFunction)_sre_SRE_Scanner_match, METH_NOARGS, _sre_SRE_Scanner_match__doc__},
static PyObject *
_sre_SRE_Scanner_match_impl(ScannerObject *self);
static PyObject *
_sre_SRE_Scanner_match(ScannerObject *self, PyObject *Py_UNUSED(ignored))
{
return _sre_SRE_Scanner_match_impl(self);
}
PyDoc_STRVAR(_sre_SRE_Scanner_search__doc__,
"search($self, /)\n"
"--\n"
"\n");
#define _SRE_SRE_SCANNER_SEARCH_METHODDEF \
{"search", (PyCFunction)_sre_SRE_Scanner_search, METH_NOARGS, _sre_SRE_Scanner_search__doc__},
static PyObject *
_sre_SRE_Scanner_search_impl(ScannerObject *self);
static PyObject *
_sre_SRE_Scanner_search(ScannerObject *self, PyObject *Py_UNUSED(ignored))
{
return _sre_SRE_Scanner_search_impl(self);
}
/*[clinic end generated code: output=af7684e3e708200f input=a9049054013a1b77]*/
| 22,889 | 733 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/clinic/_bz2module.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_bz2_BZ2Compressor_compress__doc__,
"compress($self, data, /)\n"
"--\n"
"\n"
"Provide data to the compressor object.\n"
"\n"
"Returns a chunk of compressed data if possible, or b\'\' otherwise.\n"
"\n"
"When you have finished providing data to the compressor, call the\n"
"flush() method to finish the compression process.");
#define _BZ2_BZ2COMPRESSOR_COMPRESS_METHODDEF \
{"compress", (PyCFunction)_bz2_BZ2Compressor_compress, METH_O, _bz2_BZ2Compressor_compress__doc__},
static PyObject *
_bz2_BZ2Compressor_compress_impl(BZ2Compressor *self, Py_buffer *data);
static PyObject *
_bz2_BZ2Compressor_compress(BZ2Compressor *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer data = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:compress", &data)) {
goto exit;
}
return_value = _bz2_BZ2Compressor_compress_impl(self, &data);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_bz2_BZ2Compressor_flush__doc__,
"flush($self, /)\n"
"--\n"
"\n"
"Finish the compression process.\n"
"\n"
"Returns the compressed data left in internal buffers.\n"
"\n"
"The compressor object may not be used after this method is called.");
#define _BZ2_BZ2COMPRESSOR_FLUSH_METHODDEF \
{"flush", (PyCFunction)_bz2_BZ2Compressor_flush, METH_NOARGS, _bz2_BZ2Compressor_flush__doc__},
static PyObject *
_bz2_BZ2Compressor_flush_impl(BZ2Compressor *self);
static PyObject *
_bz2_BZ2Compressor_flush(BZ2Compressor *self, PyObject *Py_UNUSED(ignored))
{
return _bz2_BZ2Compressor_flush_impl(self);
}
PyDoc_STRVAR(_bz2_BZ2Compressor___init____doc__,
"BZ2Compressor(compresslevel=9, /)\n"
"--\n"
"\n"
"Create a compressor object for compressing data incrementally.\n"
"\n"
" compresslevel\n"
" Compression level, as a number between 1 and 9.\n"
"\n"
"For one-shot compression, use the compress() function instead.");
static int
_bz2_BZ2Compressor___init___impl(BZ2Compressor *self, int compresslevel);
static int
_bz2_BZ2Compressor___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
int compresslevel = 9;
if ((Py_TYPE(self) == &BZ2Compressor_Type) &&
!_PyArg_NoKeywords("BZ2Compressor", kwargs)) {
goto exit;
}
if (!PyArg_ParseTuple(args, "|i:BZ2Compressor",
&compresslevel)) {
goto exit;
}
return_value = _bz2_BZ2Compressor___init___impl((BZ2Compressor *)self, compresslevel);
exit:
return return_value;
}
PyDoc_STRVAR(_bz2_BZ2Decompressor_decompress__doc__,
"decompress($self, /, data, max_length=-1)\n"
"--\n"
"\n"
"Decompress *data*, returning uncompressed data as bytes.\n"
"\n"
"If *max_length* is nonnegative, returns at most *max_length* bytes of\n"
"decompressed data. If this limit is reached and further output can be\n"
"produced, *self.needs_input* will be set to ``False``. In this case, the next\n"
"call to *decompress()* may provide *data* as b\'\' to obtain more of the output.\n"
"\n"
"If all of the input data was decompressed and returned (either because this\n"
"was less than *max_length* bytes, or because *max_length* was negative),\n"
"*self.needs_input* will be set to True.\n"
"\n"
"Attempting to decompress data after the end of stream is reached raises an\n"
"EOFError. Any data found after the end of the stream is ignored and saved in\n"
"the unused_data attribute.");
#define _BZ2_BZ2DECOMPRESSOR_DECOMPRESS_METHODDEF \
{"decompress", (PyCFunction)_bz2_BZ2Decompressor_decompress, METH_FASTCALL|METH_KEYWORDS, _bz2_BZ2Decompressor_decompress__doc__},
static PyObject *
_bz2_BZ2Decompressor_decompress_impl(BZ2Decompressor *self, Py_buffer *data,
Py_ssize_t max_length);
static PyObject *
_bz2_BZ2Decompressor_decompress(BZ2Decompressor *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"data", "max_length", NULL};
static _PyArg_Parser _parser = {"y*|n:decompress", _keywords, 0};
Py_buffer data = {NULL, NULL};
Py_ssize_t max_length = -1;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&data, &max_length)) {
goto exit;
}
return_value = _bz2_BZ2Decompressor_decompress_impl(self, &data, max_length);
exit:
/* Cleanup for data */
if (data.obj) {
PyBuffer_Release(&data);
}
return return_value;
}
PyDoc_STRVAR(_bz2_BZ2Decompressor___init____doc__,
"BZ2Decompressor()\n"
"--\n"
"\n"
"Create a decompressor object for decompressing data incrementally.\n"
"\n"
"For one-shot decompression, use the decompress() function instead.");
static int
_bz2_BZ2Decompressor___init___impl(BZ2Decompressor *self);
static int
_bz2_BZ2Decompressor___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
if ((Py_TYPE(self) == &BZ2Decompressor_Type) &&
!_PyArg_NoPositional("BZ2Decompressor", args)) {
goto exit;
}
if ((Py_TYPE(self) == &BZ2Decompressor_Type) &&
!_PyArg_NoKeywords("BZ2Decompressor", kwargs)) {
goto exit;
}
return_value = _bz2_BZ2Decompressor___init___impl((BZ2Decompressor *)self);
exit:
return return_value;
}
/*[clinic end generated code: output=835673574cf12cc4 input=a9049054013a1b77]*/
| 5,456 | 179 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/fileio.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/calls/calls.h"
#include "libc/errno.h"
#include "libc/sysv/consts/o.h"
#include "libc/sysv/consts/s.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/fileutils.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/warnings.h"
#include "third_party/python/Modules/_io/_iomodule.h"
/* clang-format off */
/*
* Author: Daniel Stutzbach
*
* Known likely problems:
*
* - Files larger then 2**32-1
* - Files with unicode filenames
* - Passing numbers greater than 2**32-1 when an integer is expected
* - Making it work on Windows and other oddball platforms
*
* To Do:
*
* - autoconfify header file inclusion
*/
#ifdef MS_WINDOWS
/* can simulate truncate with Win32 API functions; see file_truncate */
#define HAVE_FTRUNCATE
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
#if BUFSIZ < (8*1024)
#define SMALLCHUNK (8*1024)
#elif (BUFSIZ >= (2 << 25))
#error "unreasonable BUFSIZ > 64MB defined"
#else
#define SMALLCHUNK BUFSIZ
#endif
/*[clinic input]
module _io
class _io.FileIO "fileio *" "&PyFileIO_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=1c77708b41fda70c]*/
/*[python input]
class io_ssize_t_converter(CConverter):
type = 'Py_ssize_t'
converter = '_PyIO_ConvertSsize_t'
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=d0a811d3cbfd1b33]*/
typedef struct {
PyObject_HEAD
int fd;
unsigned int created : 1;
unsigned int readable : 1;
unsigned int writable : 1;
unsigned int appending : 1;
signed int seekable : 2; /* -1 means unknown */
unsigned int closefd : 1;
char finalizing;
unsigned int blksize;
PyObject *weakreflist;
PyObject *dict;
} fileio;
PyTypeObject PyFileIO_Type;
_Py_IDENTIFIER(name);
#define PyFileIO_Check(op) (PyObject_TypeCheck((op), &PyFileIO_Type))
int
_PyFileIO_closed(PyObject *self)
{
return ((fileio *)self)->fd < 0;
}
/* Because this can call arbitrary code, it shouldn't be called when
the refcount is 0 (that is, not directly from tp_dealloc unless
the refcount has been temporarily re-incremented). */
static PyObject *
fileio_dealloc_warn(fileio *self, PyObject *source)
{
if (self->fd >= 0 && self->closefd) {
PyObject *exc, *val, *tb;
PyErr_Fetch(&exc, &val, &tb);
if (PyErr_ResourceWarning(source, 1, "unclosed file %R", source)) {
/* Spurious errors can appear at shutdown */
if (PyErr_ExceptionMatches(PyExc_Warning))
PyErr_WriteUnraisable((PyObject *) self);
}
PyErr_Restore(exc, val, tb);
}
Py_RETURN_NONE;
}
static PyObject *
portable_lseek(int fd, PyObject *posobj, int whence);
/* Returns 0 on success, -1 with exception set on failure. */
static int
internal_close(fileio *self)
{
int err = 0;
int save_errno = 0;
if (self->fd >= 0) {
int fd = self->fd;
self->fd = -1;
/* fd is accessible and someone else may have closed it */
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
err = close(fd);
if (err < 0)
save_errno = errno;
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
}
if (err < 0) {
errno = save_errno;
PyErr_SetFromErrno(PyExc_IOError);
return -1;
}
return 0;
}
/*[clinic input]
_io.FileIO.close
Close the file.
A closed file cannot be used for further I/O operations. close() may be
called more than once without error.
[clinic start generated code]*/
static PyObject *
_io_FileIO_close_impl(fileio *self)
/*[clinic end generated code: output=7737a319ef3bad0b input=f35231760d54a522]*/
{
PyObject *res;
PyObject *exc, *val, *tb;
int rc;
_Py_IDENTIFIER(close);
res = _PyObject_CallMethodId((PyObject*)&PyRawIOBase_Type,
&PyId_close, "O", self);
if (!self->closefd) {
self->fd = -1;
return res;
}
if (res == NULL)
PyErr_Fetch(&exc, &val, &tb);
if (self->finalizing) {
PyObject *r = fileio_dealloc_warn(self, (PyObject *) self);
if (r)
Py_DECREF(r);
else
PyErr_Clear();
}
rc = internal_close(self);
if (res == NULL)
_PyErr_ChainExceptions(exc, val, tb);
if (rc < 0)
Py_CLEAR(res);
return res;
}
static PyObject *
fileio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
fileio *self;
assert(type != NULL && type->tp_alloc != NULL);
self = (fileio *) type->tp_alloc(type, 0);
if (self != NULL) {
self->fd = -1;
self->created = 0;
self->readable = 0;
self->writable = 0;
self->appending = 0;
self->seekable = -1;
self->blksize = 0;
self->closefd = 1;
self->weakreflist = NULL;
}
return (PyObject *) self;
}
#ifdef O_CLOEXEC
extern int _Py_open_cloexec_works;
#endif
/*[clinic input]
_io.FileIO.__init__
file as nameobj: object
mode: str = "r"
closefd: int(c_default="1") = True
opener: object = None
Open a file.
The mode can be 'r' (default), 'w', 'x' or 'a' for reading,
writing, exclusive creation or appending. The file will be created if it
doesn't exist when opened for writing or appending; it will be truncated
when opened for writing. A FileExistsError will be raised if it already
exists when opened for creating. Opening a file for creating implies
writing so this mode behaves in a similar way to 'w'.Add a '+' to the mode
to allow simultaneous reading and writing. A custom opener can be used by
passing a callable as *opener*. The underlying file descriptor for the file
object is then obtained by calling opener with (*name*, *flags*).
*opener* must return an open file descriptor (passing os.open as *opener*
results in functionality similar to passing None).
[clinic start generated code]*/
static int
_io_FileIO___init___impl(fileio *self, PyObject *nameobj, const char *mode,
int closefd, PyObject *opener)
/*[clinic end generated code: output=23413f68e6484bbd input=193164e293d6c097]*/
{
#ifdef MS_WINDOWS
Py_UNICODE *widename = NULL;
#else
const char *name = NULL;
#endif
PyObject *stringobj = NULL;
const char *s;
int ret = 0;
int rwa = 0, plus = 0;
int flags = 0;
int fd = -1;
int fd_is_own = 0;
#ifdef O_CLOEXEC
int *atomic_flag_works = &_Py_open_cloexec_works;
#elif !defined(MS_WINDOWS)
int *atomic_flag_works = NULL;
#endif
struct _Py_stat_struct fdfstat;
int fstat_result;
int async_err = 0;
assert(PyFileIO_Check(self));
if (self->fd >= 0) {
if (self->closefd) {
/* Have to close the existing file first. */
if (internal_close(self) < 0)
return -1;
}
else
self->fd = -1;
}
if (PyFloat_Check(nameobj)) {
PyErr_SetString(PyExc_TypeError,
"integer argument expected, got float");
return -1;
}
fd = _PyLong_AsInt(nameobj);
if (fd < 0) {
if (!PyErr_Occurred()) {
PyErr_SetString(PyExc_ValueError,
"negative file descriptor");
return -1;
}
PyErr_Clear();
}
if (fd < 0) {
#ifdef MS_WINDOWS
if (!PyUnicode_FSDecoder(nameobj, &stringobj)) {
return -1;
}
widename = PyUnicode_AsUnicode(stringobj);
if (widename == NULL)
return -1;
#else
if (!PyUnicode_FSConverter(nameobj, &stringobj)) {
return -1;
}
name = PyBytes_AS_STRING(stringobj);
#endif
}
s = mode;
while (*s) {
switch (*s++) {
case 'x':
if (rwa) {
bad_mode:
PyErr_SetString(PyExc_ValueError,
"Must have exactly one of create/read/write/append "
"mode and at most one plus");
goto error;
}
rwa = 1;
self->created = 1;
self->writable = 1;
flags |= O_EXCL | O_CREAT;
break;
case 'r':
if (rwa)
goto bad_mode;
rwa = 1;
self->readable = 1;
break;
case 'w':
if (rwa)
goto bad_mode;
rwa = 1;
self->writable = 1;
flags |= O_CREAT | O_TRUNC;
break;
case 'a':
if (rwa)
goto bad_mode;
rwa = 1;
self->writable = 1;
self->appending = 1;
flags |= O_APPEND | O_CREAT;
break;
case 'b':
break;
case '+':
if (plus)
goto bad_mode;
self->readable = self->writable = 1;
plus = 1;
break;
default:
PyErr_Format(PyExc_ValueError,
"invalid mode: %.200s", mode);
goto error;
}
}
if (!rwa)
goto bad_mode;
if (self->readable && self->writable)
flags |= O_RDWR;
else if (self->readable)
flags |= O_RDONLY;
else
flags |= O_WRONLY;
#ifdef O_BINARY
flags |= O_BINARY;
#endif
#ifdef MS_WINDOWS
flags |= O_NOINHERIT;
#elif defined(O_CLOEXEC)
flags |= O_CLOEXEC;
#endif
if (fd >= 0) {
self->fd = fd;
self->closefd = closefd;
}
else {
self->closefd = 1;
if (!closefd) {
PyErr_SetString(PyExc_ValueError,
"Cannot use closefd=False with file name");
goto error;
}
errno = 0;
if (opener == Py_None) {
do {
Py_BEGIN_ALLOW_THREADS
#ifdef MS_WINDOWS
self->fd = _wopen(widename, flags, 0666);
#else
self->fd = open(name, flags, 0666);
#endif
Py_END_ALLOW_THREADS
} while (self->fd < 0 && errno == EINTR &&
!(async_err = PyErr_CheckSignals()));
if (async_err)
goto error;
}
else {
PyObject *fdobj;
#ifndef MS_WINDOWS
/* the opener may clear the atomic flag */
atomic_flag_works = NULL;
#endif
fdobj = PyObject_CallFunction(opener, "Oi", nameobj, flags);
if (fdobj == NULL)
goto error;
if (!PyLong_Check(fdobj)) {
Py_DECREF(fdobj);
PyErr_SetString(PyExc_TypeError,
"expected integer from opener");
goto error;
}
self->fd = _PyLong_AsInt(fdobj);
Py_DECREF(fdobj);
if (self->fd < 0) {
if (!PyErr_Occurred()) {
/* The opener returned a negative but didn't set an
exception. See issue #27066 */
PyErr_Format(PyExc_ValueError,
"opener returned %d", self->fd);
}
goto error;
}
}
fd_is_own = 1;
if (self->fd < 0) {
PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, nameobj);
goto error;
}
#ifndef MS_WINDOWS
if (_Py_set_inheritable(self->fd, 0, atomic_flag_works) < 0)
goto error;
#endif
}
self->blksize = DEFAULT_BUFFER_SIZE;
Py_BEGIN_ALLOW_THREADS
fstat_result = _Py_fstat_noraise(self->fd, &fdfstat);
Py_END_ALLOW_THREADS
if (fstat_result < 0) {
/* Tolerate fstat() errors other than EBADF. See Issue #25717, where
an anonymous file on a Virtual Box shared folder filesystem would
raise ENOENT. */
#ifdef MS_WINDOWS
if (GetLastError() == ERROR_INVALID_HANDLE) {
PyErr_SetFromWindowsErr(0);
#else
if (errno == EBADF) {
PyErr_SetFromErrno(PyExc_OSError);
#endif
goto error;
}
}
else {
#if defined(S_ISDIR) && defined(EISDIR)
/* On Unix, open will succeed for directories.
In Python, there should be no file objects referring to
directories, so we need a check. */
if (S_ISDIR(fdfstat.st_mode)) {
errno = EISDIR;
PyErr_SetFromErrnoWithFilenameObject(PyExc_IOError, nameobj);
goto error;
}
#endif /* defined(S_ISDIR) */
#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
if (fdfstat.st_blksize > 1)
self->blksize = fdfstat.st_blksize;
#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
}
#if defined(MS_WINDOWS) || defined(__CYGWIN__)
/* don't translate newlines (\r\n <=> \n) */
_setmode(self->fd, O_BINARY);
#endif
if (_PyObject_SetAttrId((PyObject *)self, &PyId_name, nameobj) < 0)
goto error;
if (self->appending) {
/* For consistent behaviour, we explicitly seek to the
end of file (otherwise, it might be done only on the
first write()). */
PyObject *pos = portable_lseek(self->fd, NULL, 2);
if (pos == NULL)
goto error;
Py_DECREF(pos);
}
goto done;
error:
ret = -1;
if (!fd_is_own)
self->fd = -1;
if (self->fd >= 0)
internal_close(self);
done:
Py_CLEAR(stringobj);
return ret;
}
static int
fileio_traverse(fileio *self, visitproc visit, void *arg)
{
Py_VISIT(self->dict);
return 0;
}
static int
fileio_clear(fileio *self)
{
Py_CLEAR(self->dict);
return 0;
}
static void
fileio_dealloc(fileio *self)
{
self->finalizing = 1;
if (_PyIOBase_finalize((PyObject *) self) < 0)
return;
_PyObject_GC_UNTRACK(self);
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) self);
Py_CLEAR(self->dict);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyObject *
err_closed(void)
{
PyErr_SetString(PyExc_ValueError, "I/O operation on closed file");
return NULL;
}
static PyObject *
err_mode(const char *action)
{
_PyIO_State *state = IO_STATE();
if (state != NULL)
PyErr_Format(state->unsupported_operation,
"File not open for %s", action);
return NULL;
}
/*[clinic input]
_io.FileIO.fileno
Return the underlying file descriptor (an integer).
[clinic start generated code]*/
static PyObject *
_io_FileIO_fileno_impl(fileio *self)
/*[clinic end generated code: output=a9626ce5398ece90 input=0b9b2de67335ada3]*/
{
if (self->fd < 0)
return err_closed();
return PyLong_FromLong((long) self->fd);
}
/*[clinic input]
_io.FileIO.readable
True if file was opened in a read mode.
[clinic start generated code]*/
static PyObject *
_io_FileIO_readable_impl(fileio *self)
/*[clinic end generated code: output=640744a6150fe9ba input=a3fdfed6eea721c5]*/
{
if (self->fd < 0)
return err_closed();
return PyBool_FromLong((long) self->readable);
}
/*[clinic input]
_io.FileIO.writable
True if file was opened in a write mode.
[clinic start generated code]*/
static PyObject *
_io_FileIO_writable_impl(fileio *self)
/*[clinic end generated code: output=96cefc5446e89977 input=c204a808ca2e1748]*/
{
if (self->fd < 0)
return err_closed();
return PyBool_FromLong((long) self->writable);
}
/*[clinic input]
_io.FileIO.seekable
True if file supports random-access.
[clinic start generated code]*/
static PyObject *
_io_FileIO_seekable_impl(fileio *self)
/*[clinic end generated code: output=47909ca0a42e9287 input=c8e5554d2fd63c7f]*/
{
if (self->fd < 0)
return err_closed();
if (self->seekable < 0) {
PyObject *pos = portable_lseek(self->fd, NULL, SEEK_CUR);
if (pos == NULL) {
PyErr_Clear();
self->seekable = 0;
} else {
Py_DECREF(pos);
self->seekable = 1;
}
}
return PyBool_FromLong((long) self->seekable);
}
/*[clinic input]
_io.FileIO.readinto
buffer: Py_buffer(accept={rwbuffer})
/
Same as RawIOBase.readinto().
[clinic start generated code]*/
static PyObject *
_io_FileIO_readinto_impl(fileio *self, Py_buffer *buffer)
/*[clinic end generated code: output=b01a5a22c8415cb4 input=4721d7b68b154eaf]*/
{
Py_ssize_t n;
int err;
if (self->fd < 0)
return err_closed();
if (!self->readable)
return err_mode("reading");
n = _Py_read(self->fd, buffer->buf, buffer->len);
/* copy errno because PyBuffer_Release() can indirectly modify it */
err = errno;
if (n == -1) {
if (err == EAGAIN) {
PyErr_Clear();
Py_RETURN_NONE;
}
return NULL;
}
return PyLong_FromSsize_t(n);
}
static size_t
new_buffersize(fileio *self, size_t currentsize)
{
size_t addend;
/* Expand the buffer by an amount proportional to the current size,
giving us amortized linear-time behavior. For bigger sizes, use a
less-than-double growth factor to avoid excessive allocation. */
assert(currentsize <= PY_SSIZE_T_MAX);
if (currentsize > 65536)
addend = currentsize >> 3;
else
addend = 256 + currentsize;
if (addend < SMALLCHUNK)
/* Avoid tiny read() calls. */
addend = SMALLCHUNK;
return addend + currentsize;
}
/*[clinic input]
_io.FileIO.readall
Read all data from the file, returned as bytes.
In non-blocking mode, returns as much as is immediately available,
or None if no data is available. Return an empty bytes object at EOF.
[clinic start generated code]*/
static PyObject *
_io_FileIO_readall_impl(fileio *self)
/*[clinic end generated code: output=faa0292b213b4022 input=dbdc137f55602834]*/
{
struct _Py_stat_struct status;
Py_off_t pos, end;
PyObject *result;
Py_ssize_t bytes_read = 0;
Py_ssize_t n;
size_t bufsize;
int fstat_result;
if (self->fd < 0)
return err_closed();
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
#ifdef MS_WINDOWS
pos = _lseeki64(self->fd, 0L, SEEK_CUR);
#else
pos = lseek(self->fd, 0L, SEEK_CUR);
#endif
_Py_END_SUPPRESS_IPH
fstat_result = _Py_fstat_noraise(self->fd, &status);
Py_END_ALLOW_THREADS
if (fstat_result == 0)
end = status.st_size;
else
end = (Py_off_t)-1;
if (end > 0 && end >= pos && pos >= 0 && end - pos < PY_SSIZE_T_MAX) {
/* This is probably a real file, so we try to allocate a
buffer one byte larger than the rest of the file. If the
calculation is right then we should get EOF without having
to enlarge the buffer. */
bufsize = (size_t)(end - pos + 1);
} else {
bufsize = SMALLCHUNK;
}
result = PyBytes_FromStringAndSize(NULL, bufsize);
if (result == NULL)
return NULL;
while (1) {
if (bytes_read >= (Py_ssize_t)bufsize) {
bufsize = new_buffersize(self, bytes_read);
if (bufsize > PY_SSIZE_T_MAX || bufsize <= 0) {
PyErr_SetString(PyExc_OverflowError,
"unbounded read returned more bytes "
"than a Python bytes object can hold");
Py_DECREF(result);
return NULL;
}
if (PyBytes_GET_SIZE(result) < (Py_ssize_t)bufsize) {
if (_PyBytes_Resize(&result, bufsize) < 0)
return NULL;
}
}
n = _Py_read(self->fd,
PyBytes_AS_STRING(result) + bytes_read,
bufsize - bytes_read);
if (n == 0)
break;
if (n == -1) {
if (errno == EAGAIN) {
PyErr_Clear();
if (bytes_read > 0)
break;
Py_DECREF(result);
Py_RETURN_NONE;
}
Py_DECREF(result);
return NULL;
}
bytes_read += n;
pos += n;
}
if (PyBytes_GET_SIZE(result) > bytes_read) {
if (_PyBytes_Resize(&result, bytes_read) < 0)
return NULL;
}
return result;
}
/*[clinic input]
_io.FileIO.read
size: io_ssize_t = -1
/
Read at most size bytes, returned as bytes.
Only makes one system call, so less data may be returned than requested.
In non-blocking mode, returns None if no data is available.
Return an empty bytes object at EOF.
[clinic start generated code]*/
static PyObject *
_io_FileIO_read_impl(fileio *self, Py_ssize_t size)
/*[clinic end generated code: output=42528d39dd0ca641 input=5c6caa5490c13a9b]*/
{
char *ptr;
Py_ssize_t n;
PyObject *bytes;
if (self->fd < 0)
return err_closed();
if (!self->readable)
return err_mode("reading");
if (size < 0)
return _io_FileIO_readall_impl(self);
if (size > _PY_READ_MAX) {
size = _PY_READ_MAX;
}
bytes = PyBytes_FromStringAndSize(NULL, size);
if (bytes == NULL)
return NULL;
ptr = PyBytes_AS_STRING(bytes);
n = _Py_read(self->fd, ptr, size);
if (n == -1) {
/* copy errno because Py_DECREF() can indirectly modify it */
int err = errno;
Py_DECREF(bytes);
if (err == EAGAIN) {
PyErr_Clear();
Py_RETURN_NONE;
}
return NULL;
}
if (n != size) {
if (_PyBytes_Resize(&bytes, n) < 0) {
Py_CLEAR(bytes);
return NULL;
}
}
return (PyObject *) bytes;
}
/*[clinic input]
_io.FileIO.write
b: Py_buffer
/
Write buffer b to file, return number of bytes written.
Only makes one system call, so not all of the data may be written.
The number of bytes actually written is returned. In non-blocking mode,
returns None if the write would block.
[clinic start generated code]*/
static PyObject *
_io_FileIO_write_impl(fileio *self, Py_buffer *b)
/*[clinic end generated code: output=b4059db3d363a2f7 input=6e7908b36f0ce74f]*/
{
Py_ssize_t n;
int err;
if (self->fd < 0)
return err_closed();
if (!self->writable)
return err_mode("writing");
n = _Py_write(self->fd, b->buf, b->len);
/* copy errno because PyBuffer_Release() can indirectly modify it */
err = errno;
if (n < 0) {
if (err == EAGAIN) {
PyErr_Clear();
Py_RETURN_NONE;
}
return NULL;
}
return PyLong_FromSsize_t(n);
}
/* XXX Windows support below is likely incomplete */
/* Cribbed from posix_lseek() */
static PyObject *
portable_lseek(int fd, PyObject *posobj, int whence)
{
Py_off_t pos, res;
#ifdef SEEK_SET
/* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
switch (whence) {
#if SEEK_SET != 0
case 0: whence = SEEK_SET; break;
#endif
#if SEEK_CUR != 1
case 1: whence = SEEK_CUR; break;
#endif
#if SEEK_END != 2
case 2: whence = SEEK_END; break;
#endif
}
#endif /* SEEK_SET */
if (posobj == NULL)
pos = 0;
else {
if(PyFloat_Check(posobj)) {
PyErr_SetString(PyExc_TypeError, "an integer is required");
return NULL;
}
#if defined(HAVE_LARGEFILE_SUPPORT)
pos = PyLong_AsLongLong(posobj);
#else
pos = PyLong_AsLong(posobj);
#endif
if (PyErr_Occurred())
return NULL;
}
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
#ifdef MS_WINDOWS
res = _lseeki64(fd, pos, whence);
#else
res = lseek(fd, pos, whence);
#endif
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
if (res < 0)
return PyErr_SetFromErrno(PyExc_IOError);
#if defined(HAVE_LARGEFILE_SUPPORT)
return PyLong_FromLongLong(res);
#else
return PyLong_FromLong(res);
#endif
}
/*[clinic input]
_io.FileIO.seek
pos: object
whence: int = 0
/
Move to new file position and return the file position.
Argument offset is a byte count. Optional argument whence defaults to
SEEK_SET or 0 (offset from start of file, offset should be >= 0); other values
are SEEK_CUR or 1 (move relative to current position, positive or negative),
and SEEK_END or 2 (move relative to end of file, usually negative, although
many platforms allow seeking beyond the end of a file).
Note that not all file objects are seekable.
[clinic start generated code]*/
static PyObject *
_io_FileIO_seek_impl(fileio *self, PyObject *pos, int whence)
/*[clinic end generated code: output=c976acdf054e6655 input=0439194b0774d454]*/
{
if (self->fd < 0)
return err_closed();
return portable_lseek(self->fd, pos, whence);
}
/*[clinic input]
_io.FileIO.tell
Current file position.
Can raise OSError for non seekable files.
[clinic start generated code]*/
static PyObject *
_io_FileIO_tell_impl(fileio *self)
/*[clinic end generated code: output=ffe2147058809d0b input=807e24ead4cec2f9]*/
{
if (self->fd < 0)
return err_closed();
return portable_lseek(self->fd, NULL, 1);
}
#ifdef HAVE_FTRUNCATE
/*[clinic input]
_io.FileIO.truncate
size as posobj: object = NULL
/
Truncate the file to at most size bytes and return the truncated size.
Size defaults to the current file position, as returned by tell().
The current file position is changed to the value of size.
[clinic start generated code]*/
static PyObject *
_io_FileIO_truncate_impl(fileio *self, PyObject *posobj)
/*[clinic end generated code: output=e49ca7a916c176fa input=9026af44686b7318]*/
{
Py_off_t pos;
int ret;
int fd;
fd = self->fd;
if (fd < 0)
return err_closed();
if (!self->writable)
return err_mode("writing");
if (posobj == Py_None || posobj == NULL) {
/* Get the current position. */
posobj = portable_lseek(fd, NULL, 1);
if (posobj == NULL)
return NULL;
}
else {
Py_INCREF(posobj);
}
#if defined(HAVE_LARGEFILE_SUPPORT)
pos = PyLong_AsLongLong(posobj);
#else
pos = PyLong_AsLong(posobj);
#endif
if (PyErr_Occurred()){
Py_DECREF(posobj);
return NULL;
}
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
errno = 0;
#ifdef MS_WINDOWS
ret = _chsize_s(fd, pos);
#else
ret = ftruncate(fd, pos);
#endif
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
if (ret != 0) {
Py_DECREF(posobj);
PyErr_SetFromErrno(PyExc_IOError);
return NULL;
}
return posobj;
}
#endif /* HAVE_FTRUNCATE */
static const char *
mode_string(fileio *self)
{
if (self->created) {
if (self->readable)
return "xb+";
else
return "xb";
}
if (self->appending) {
if (self->readable)
return "ab+";
else
return "ab";
}
else if (self->readable) {
if (self->writable)
return "rb+";
else
return "rb";
}
else
return "wb";
}
static PyObject *
fileio_repr(fileio *self)
{
PyObject *nameobj, *res;
if (self->fd < 0)
return PyUnicode_FromFormat("<_io.FileIO [closed]>");
nameobj = _PyObject_GetAttrId((PyObject *) self, &PyId_name);
if (nameobj == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError))
PyErr_Clear();
else
return NULL;
res = PyUnicode_FromFormat(
"<_io.FileIO fd=%d mode='%s' closefd=%s>",
self->fd, mode_string(self), self->closefd ? "True" : "False");
}
else {
int status = Py_ReprEnter((PyObject *)self);
res = NULL;
if (status == 0) {
res = PyUnicode_FromFormat(
"<_io.FileIO name=%R mode='%s' closefd=%s>",
nameobj, mode_string(self), self->closefd ? "True" : "False");
Py_ReprLeave((PyObject *)self);
}
else if (status > 0) {
PyErr_Format(PyExc_RuntimeError,
"reentrant call inside %s.__repr__",
Py_TYPE(self)->tp_name);
}
Py_DECREF(nameobj);
}
return res;
}
/*[clinic input]
_io.FileIO.isatty
True if the file is connected to a TTY device.
[clinic start generated code]*/
static PyObject *
_io_FileIO_isatty_impl(fileio *self)
/*[clinic end generated code: output=932c39924e9a8070 input=cd94ca1f5e95e843]*/
{
long res;
if (self->fd < 0)
return err_closed();
Py_BEGIN_ALLOW_THREADS
_Py_BEGIN_SUPPRESS_IPH
res = isatty(self->fd);
_Py_END_SUPPRESS_IPH
Py_END_ALLOW_THREADS
return PyBool_FromLong(res);
}
static PyObject *
fileio_getstate(fileio *self)
{
PyErr_Format(PyExc_TypeError,
"cannot serialize '%s' object", Py_TYPE(self)->tp_name);
return NULL;
}
#include "third_party/python/Modules/_io/clinic/fileio.inc"
static PyMethodDef fileio_methods[] = {
_IO_FILEIO_READ_METHODDEF
_IO_FILEIO_READALL_METHODDEF
_IO_FILEIO_READINTO_METHODDEF
_IO_FILEIO_WRITE_METHODDEF
_IO_FILEIO_SEEK_METHODDEF
_IO_FILEIO_TELL_METHODDEF
_IO_FILEIO_TRUNCATE_METHODDEF
_IO_FILEIO_CLOSE_METHODDEF
_IO_FILEIO_SEEKABLE_METHODDEF
_IO_FILEIO_READABLE_METHODDEF
_IO_FILEIO_WRITABLE_METHODDEF
_IO_FILEIO_FILENO_METHODDEF
_IO_FILEIO_ISATTY_METHODDEF
{"_dealloc_warn", (PyCFunction)fileio_dealloc_warn, METH_O, NULL},
{"__getstate__", (PyCFunction)fileio_getstate, METH_NOARGS, NULL},
{NULL, NULL} /* sentinel */
};
/* 'closed' and 'mode' are attributes for backwards compatibility reasons. */
static PyObject *
get_closed(fileio *self, void *closure)
{
return PyBool_FromLong((long)(self->fd < 0));
}
static PyObject *
get_closefd(fileio *self, void *closure)
{
return PyBool_FromLong((long)(self->closefd));
}
static PyObject *
get_mode(fileio *self, void *closure)
{
return PyUnicode_FromString(mode_string(self));
}
static PyGetSetDef fileio_getsetlist[] = {
{"closed", (getter)get_closed, NULL, "True if the file is closed"},
{"closefd", (getter)get_closefd, NULL,
"True if the file descriptor will be closed by close()."},
{"mode", (getter)get_mode, NULL, "String giving the file mode"},
{NULL},
};
static PyMemberDef fileio_members[] = {
{"_blksize", T_UINT, offsetof(fileio, blksize), 0},
{"_finalizing", T_BOOL, offsetof(fileio, finalizing), 0},
{NULL}
};
PyTypeObject PyFileIO_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.FileIO",
sizeof(fileio),
0,
(destructor)fileio_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)fileio_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /* tp_flags */
_io_FileIO___init____doc__, /* tp_doc */
(traverseproc)fileio_traverse, /* tp_traverse */
(inquiry)fileio_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(fileio, weakreflist), /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
fileio_methods, /* tp_methods */
fileio_members, /* tp_members */
fileio_getsetlist, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(fileio, dict), /* tp_dictoffset */
_io_FileIO___init__, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
fileio_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
| 34,687 | 1,248 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/textio.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/codecs.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/fileutils.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Modules/_io/_iomodule.h"
/* clang-format off */
/*
An implementation of Text I/O as defined by PEP 3116 - "New I/O"
Classes defined here: TextIOBase, IncrementalNewlineDecoder, TextIOWrapper.
Written by Amaury Forgeot d'Arc and Antoine Pitrou
*/
/*[clinic input]
module _io
class _io.IncrementalNewlineDecoder "nldecoder_object *" "&PyIncrementalNewlineDecoder_Type"
class _io.TextIOWrapper "textio *" "&TextIOWrapper_TYpe"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=2097a4fc85670c26]*/
/*[python input]
class io_ssize_t_converter(CConverter):
type = 'Py_ssize_t'
converter = '_PyIO_ConvertSsize_t'
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=d0a811d3cbfd1b33]*/
_Py_IDENTIFIER(close);
_Py_IDENTIFIER(_dealloc_warn);
_Py_IDENTIFIER(decode);
_Py_IDENTIFIER(fileno);
_Py_IDENTIFIER(flush);
_Py_IDENTIFIER(getpreferredencoding);
_Py_IDENTIFIER(isatty);
_Py_IDENTIFIER(mode);
_Py_IDENTIFIER(name);
_Py_IDENTIFIER(raw);
_Py_IDENTIFIER(read);
_Py_IDENTIFIER(read1);
_Py_IDENTIFIER(readable);
_Py_IDENTIFIER(replace);
_Py_IDENTIFIER(reset);
_Py_IDENTIFIER(seek);
_Py_IDENTIFIER(seekable);
_Py_IDENTIFIER(setstate);
_Py_IDENTIFIER(tell);
_Py_IDENTIFIER(writable);
/* TextIOBase */
PyDoc_STRVAR(textiobase_doc,
"Base class for text I/O.\n"
"\n"
"This class provides a character and line based interface to stream\n"
"I/O. There is no readinto method because Python's character strings\n"
"are immutable. There is no public constructor.\n"
);
static PyObject *
_unsupported(const char *message)
{
_PyIO_State *state = IO_STATE();
if (state != NULL)
PyErr_SetString(state->unsupported_operation, message);
return NULL;
}
PyDoc_STRVAR(textiobase_detach_doc,
"Separate the underlying buffer from the TextIOBase and return it.\n"
"\n"
"After the underlying buffer has been detached, the TextIO is in an\n"
"unusable state.\n"
);
static PyObject *
textiobase_detach(PyObject *self)
{
return _unsupported("detach");
}
PyDoc_STRVAR(textiobase_read_doc,
"Read at most n characters from stream.\n"
"\n"
"Read from underlying buffer until we have n characters or we hit EOF.\n"
"If n is negative or omitted, read until EOF.\n"
);
static PyObject *
textiobase_read(PyObject *self, PyObject *args)
{
return _unsupported("read");
}
PyDoc_STRVAR(textiobase_readline_doc,
"Read until newline or EOF.\n"
"\n"
"Returns an empty string if EOF is hit immediately.\n"
);
static PyObject *
textiobase_readline(PyObject *self, PyObject *args)
{
return _unsupported("readline");
}
PyDoc_STRVAR(textiobase_write_doc,
"Write string to stream.\n"
"Returns the number of characters written (which is always equal to\n"
"the length of the string).\n"
);
static PyObject *
textiobase_write(PyObject *self, PyObject *args)
{
return _unsupported("write");
}
PyDoc_STRVAR(textiobase_encoding_doc,
"Encoding of the text stream.\n"
"\n"
"Subclasses should override.\n"
);
static PyObject *
textiobase_encoding_get(PyObject *self, void *context)
{
Py_RETURN_NONE;
}
PyDoc_STRVAR(textiobase_newlines_doc,
"Line endings translated so far.\n"
"\n"
"Only line endings translated during reading are considered.\n"
"\n"
"Subclasses should override.\n"
);
static PyObject *
textiobase_newlines_get(PyObject *self, void *context)
{
Py_RETURN_NONE;
}
PyDoc_STRVAR(textiobase_errors_doc,
"The error setting of the decoder or encoder.\n"
"\n"
"Subclasses should override.\n"
);
static PyObject *
textiobase_errors_get(PyObject *self, void *context)
{
Py_RETURN_NONE;
}
static PyMethodDef textiobase_methods[] = {
{"detach", (PyCFunction)textiobase_detach, METH_NOARGS, textiobase_detach_doc},
{"read", textiobase_read, METH_VARARGS, textiobase_read_doc},
{"readline", textiobase_readline, METH_VARARGS, textiobase_readline_doc},
{"write", textiobase_write, METH_VARARGS, textiobase_write_doc},
{NULL, NULL}
};
static PyGetSetDef textiobase_getset[] = {
{"encoding", (getter)textiobase_encoding_get, NULL, textiobase_encoding_doc},
{"newlines", (getter)textiobase_newlines_get, NULL, textiobase_newlines_doc},
{"errors", (getter)textiobase_errors_get, NULL, textiobase_errors_doc},
{NULL}
};
PyTypeObject PyTextIOBase_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io._TextIOBase", /*tp_name*/
0, /*tp_basicsize*/
0, /*tp_itemsize*/
0, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_FINALIZE, /*tp_flags*/
textiobase_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
textiobase_methods, /* tp_methods */
0, /* tp_members */
textiobase_getset, /* tp_getset */
&PyIOBase_Type, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
/* IncrementalNewlineDecoder */
typedef struct {
PyObject_HEAD
PyObject *decoder;
PyObject *errors;
unsigned int pendingcr: 1;
unsigned int translate: 1;
unsigned int seennl: 3;
} nldecoder_object;
/*[clinic input]
_io.IncrementalNewlineDecoder.__init__
decoder: object
translate: int
errors: object(c_default="NULL") = "strict"
Codec used when reading a file in universal newlines mode.
It wraps another incremental decoder, translating \r\n and \r into \n.
It also records the types of newlines encountered. When used with
translate=False, it ensures that the newline sequence is returned in
one piece. When used with decoder=None, it expects unicode strings as
decode input and translates newlines without first invoking an external
decoder.
[clinic start generated code]*/
static int
_io_IncrementalNewlineDecoder___init___impl(nldecoder_object *self,
PyObject *decoder, int translate,
PyObject *errors)
/*[clinic end generated code: output=fbd04d443e764ec2 input=89db6b19c6b126bf]*/
{
self->decoder = decoder;
Py_INCREF(decoder);
if (errors == NULL) {
self->errors = PyUnicode_FromString("strict");
if (self->errors == NULL)
return -1;
}
else {
Py_INCREF(errors);
self->errors = errors;
}
self->translate = translate ? 1 : 0;
self->seennl = 0;
self->pendingcr = 0;
return 0;
}
static void
incrementalnewlinedecoder_dealloc(nldecoder_object *self)
{
Py_CLEAR(self->decoder);
Py_CLEAR(self->errors);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static int
check_decoded(PyObject *decoded)
{
if (decoded == NULL)
return -1;
if (!PyUnicode_Check(decoded)) {
PyErr_Format(PyExc_TypeError,
"decoder should return a string result, not '%.200s'",
Py_TYPE(decoded)->tp_name);
Py_DECREF(decoded);
return -1;
}
if (PyUnicode_READY(decoded) < 0) {
Py_DECREF(decoded);
return -1;
}
return 0;
}
#define SEEN_CR 1
#define SEEN_LF 2
#define SEEN_CRLF 4
#define SEEN_ALL (SEEN_CR | SEEN_LF | SEEN_CRLF)
PyObject *
_PyIncrementalNewlineDecoder_decode(PyObject *myself,
PyObject *input, int final)
{
PyObject *output;
Py_ssize_t output_len;
nldecoder_object *self = (nldecoder_object *) myself;
if (self->decoder == NULL) {
PyErr_SetString(PyExc_ValueError,
"IncrementalNewlineDecoder.__init__ not called");
return NULL;
}
/* decode input (with the eventual \r from a previous pass) */
if (self->decoder != Py_None) {
output = PyObject_CallMethodObjArgs(self->decoder,
_PyIO_str_decode, input, final ? Py_True : Py_False, NULL);
}
else {
output = input;
Py_INCREF(output);
}
if (check_decoded(output) < 0)
return NULL;
output_len = PyUnicode_GET_LENGTH(output);
if (self->pendingcr && (final || output_len > 0)) {
/* Prefix output with CR */
int kind;
PyObject *modified;
char *out;
modified = PyUnicode_New(output_len + 1,
PyUnicode_MAX_CHAR_VALUE(output));
if (modified == NULL)
goto error;
kind = PyUnicode_KIND(modified);
out = PyUnicode_DATA(modified);
PyUnicode_WRITE(kind, PyUnicode_DATA(modified), 0, '\r');
memcpy(out + kind, PyUnicode_DATA(output), kind * output_len);
Py_DECREF(output);
output = modified; /* output remains ready */
self->pendingcr = 0;
output_len++;
}
/* retain last \r even when not translating data:
* then readline() is sure to get \r\n in one pass
*/
if (!final) {
if (output_len > 0
&& PyUnicode_READ_CHAR(output, output_len - 1) == '\r')
{
PyObject *modified = PyUnicode_Substring(output, 0, output_len -1);
if (modified == NULL)
goto error;
Py_DECREF(output);
output = modified;
self->pendingcr = 1;
}
}
/* Record which newlines are read and do newline translation if desired,
all in one pass. */
{
void *in_str;
Py_ssize_t len;
int seennl = self->seennl;
int only_lf = 0;
int kind;
in_str = PyUnicode_DATA(output);
len = PyUnicode_GET_LENGTH(output);
kind = PyUnicode_KIND(output);
if (len == 0)
return output;
/* If, up to now, newlines are consistently \n, do a quick check
for the \r *byte* with the libc's optimized memchr.
*/
if (seennl == SEEN_LF || seennl == 0) {
only_lf = (memchr(in_str, '\r', kind * len) == NULL);
}
if (only_lf) {
/* If not already seen, quick scan for a possible "\n" character.
(there's nothing else to be done, even when in translation mode)
*/
if (seennl == 0 &&
memchr(in_str, '\n', kind * len) != NULL) {
if (kind == PyUnicode_1BYTE_KIND)
seennl |= SEEN_LF;
else {
Py_ssize_t i = 0;
for (;;) {
Py_UCS4 c;
/* Fast loop for non-control characters */
while (PyUnicode_READ(kind, in_str, i) > '\n')
i++;
c = PyUnicode_READ(kind, in_str, i++);
if (c == '\n') {
seennl |= SEEN_LF;
break;
}
if (i >= len)
break;
}
}
}
/* Finished: we have scanned for newlines, and none of them
need translating */
}
else if (!self->translate) {
Py_ssize_t i = 0;
/* We have already seen all newline types, no need to scan again */
if (seennl == SEEN_ALL)
goto endscan;
for (;;) {
Py_UCS4 c;
/* Fast loop for non-control characters */
while (PyUnicode_READ(kind, in_str, i) > '\r')
i++;
c = PyUnicode_READ(kind, in_str, i++);
if (c == '\n')
seennl |= SEEN_LF;
else if (c == '\r') {
if (PyUnicode_READ(kind, in_str, i) == '\n') {
seennl |= SEEN_CRLF;
i++;
}
else
seennl |= SEEN_CR;
}
if (i >= len)
break;
if (seennl == SEEN_ALL)
break;
}
endscan:
;
}
else {
void *translated;
int kind = PyUnicode_KIND(output);
void *in_str = PyUnicode_DATA(output);
Py_ssize_t in, out;
/* XXX: Previous in-place translation here is disabled as
resizing is not possible anymore */
/* We could try to optimize this so that we only do a copy
when there is something to translate. On the other hand,
we already know there is a \r byte, so chances are high
that something needs to be done. */
translated = PyMem_Malloc(kind * len);
if (translated == NULL) {
PyErr_NoMemory();
goto error;
}
in = out = 0;
for (;;) {
Py_UCS4 c;
/* Fast loop for non-control characters */
while ((c = PyUnicode_READ(kind, in_str, in++)) > '\r')
PyUnicode_WRITE(kind, translated, out++, c);
if (c == '\n') {
PyUnicode_WRITE(kind, translated, out++, c);
seennl |= SEEN_LF;
continue;
}
if (c == '\r') {
if (PyUnicode_READ(kind, in_str, in) == '\n') {
in++;
seennl |= SEEN_CRLF;
}
else
seennl |= SEEN_CR;
PyUnicode_WRITE(kind, translated, out++, '\n');
continue;
}
if (in > len)
break;
PyUnicode_WRITE(kind, translated, out++, c);
}
Py_DECREF(output);
output = PyUnicode_FromKindAndData(kind, translated, out);
PyMem_Free(translated);
if (!output)
return NULL;
}
self->seennl |= seennl;
}
return output;
error:
Py_DECREF(output);
return NULL;
}
/*[clinic input]
_io.IncrementalNewlineDecoder.decode
input: object
final: int(c_default="0") = False
[clinic start generated code]*/
static PyObject *
_io_IncrementalNewlineDecoder_decode_impl(nldecoder_object *self,
PyObject *input, int final)
/*[clinic end generated code: output=0d486755bb37a66e input=d65677385bfd6827]*/
{
return _PyIncrementalNewlineDecoder_decode((PyObject *) self, input, final);
}
/*[clinic input]
_io.IncrementalNewlineDecoder.getstate
[clinic start generated code]*/
static PyObject *
_io_IncrementalNewlineDecoder_getstate_impl(nldecoder_object *self)
/*[clinic end generated code: output=f0d2c9c136f4e0d0 input=f8ff101825e32e7f]*/
{
PyObject *buffer;
unsigned long long flag;
if (self->decoder != Py_None) {
PyObject *state = PyObject_CallMethodObjArgs(self->decoder,
_PyIO_str_getstate, NULL);
if (state == NULL)
return NULL;
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError,
"illegal decoder state");
Py_DECREF(state);
return NULL;
}
if (!PyArg_ParseTuple(state, "OK", &buffer, &flag)) {
Py_DECREF(state);
return NULL;
}
Py_INCREF(buffer);
Py_DECREF(state);
}
else {
buffer = PyBytes_FromString("");
flag = 0;
}
flag <<= 1;
if (self->pendingcr)
flag |= 1;
return Py_BuildValue("NK", buffer, flag);
}
/*[clinic input]
_io.IncrementalNewlineDecoder.setstate
state: object
/
[clinic start generated code]*/
static PyObject *
_io_IncrementalNewlineDecoder_setstate(nldecoder_object *self,
PyObject *state)
/*[clinic end generated code: output=c10c622508b576cb input=c53fb505a76dbbe2]*/
{
PyObject *buffer;
unsigned long long flag;
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state argument must be a tuple");
return NULL;
}
if (!PyArg_ParseTuple(state, "OK", &buffer, &flag))
return NULL;
self->pendingcr = (int) (flag & 1);
flag >>= 1;
if (self->decoder != Py_None)
return _PyObject_CallMethodId(self->decoder,
&PyId_setstate, "((OK))", buffer, flag);
else
Py_RETURN_NONE;
}
/*[clinic input]
_io.IncrementalNewlineDecoder.reset
[clinic start generated code]*/
static PyObject *
_io_IncrementalNewlineDecoder_reset_impl(nldecoder_object *self)
/*[clinic end generated code: output=32fa40c7462aa8ff input=728678ddaea776df]*/
{
self->seennl = 0;
self->pendingcr = 0;
if (self->decoder != Py_None)
return PyObject_CallMethodObjArgs(self->decoder, _PyIO_str_reset, NULL);
else
Py_RETURN_NONE;
}
static PyObject *
incrementalnewlinedecoder_newlines_get(nldecoder_object *self, void *context)
{
switch (self->seennl) {
case SEEN_CR:
return PyUnicode_FromString("\r");
case SEEN_LF:
return PyUnicode_FromString("\n");
case SEEN_CRLF:
return PyUnicode_FromString("\r\n");
case SEEN_CR | SEEN_LF:
return Py_BuildValue("ss", "\r", "\n");
case SEEN_CR | SEEN_CRLF:
return Py_BuildValue("ss", "\r", "\r\n");
case SEEN_LF | SEEN_CRLF:
return Py_BuildValue("ss", "\n", "\r\n");
case SEEN_CR | SEEN_LF | SEEN_CRLF:
return Py_BuildValue("sss", "\r", "\n", "\r\n");
default:
Py_RETURN_NONE;
}
}
/* TextIOWrapper */
typedef PyObject *
(*encodefunc_t)(PyObject *, PyObject *);
typedef struct
{
PyObject_HEAD
int ok; /* initialized? */
int detached;
Py_ssize_t chunk_size;
PyObject *buffer;
PyObject *encoding;
PyObject *encoder;
PyObject *decoder;
PyObject *readnl;
PyObject *errors;
const char *writenl; /* utf-8 encoded, NULL stands for \n */
char line_buffering;
char write_through;
char readuniversal;
char readtranslate;
char writetranslate;
char seekable;
char has_read1;
char telling;
char finalizing;
/* Specialized encoding func (see below) */
encodefunc_t encodefunc;
/* Whether or not it's the start of the stream */
char encoding_start_of_stream;
/* Reads and writes are internally buffered in order to speed things up.
However, any read will first flush the write buffer if itsn't empty.
Please also note that text to be written is first encoded before being
buffered. This is necessary so that encoding errors are immediately
reported to the caller, but it unfortunately means that the
IncrementalEncoder (whose encode() method is always written in Python)
becomes a bottleneck for small writes.
*/
PyObject *decoded_chars; /* buffer for text returned from decoder */
Py_ssize_t decoded_chars_used; /* offset into _decoded_chars for read() */
PyObject *pending_bytes; /* list of bytes objects waiting to be
written, or NULL */
Py_ssize_t pending_bytes_count;
/* snapshot is either None, or a tuple (dec_flags, next_input) where
* dec_flags is the second (integer) item of the decoder state and
* next_input is the chunk of input bytes that comes next after the
* snapshot point. We use this to reconstruct decoder states in tell().
*/
PyObject *snapshot;
/* Bytes-to-characters ratio for the current chunk. Serves as input for
the heuristic in tell(). */
double b2cratio;
/* Cache raw object if it's a FileIO object */
PyObject *raw;
PyObject *weakreflist;
PyObject *dict;
} textio;
static void
textiowrapper_set_decoded_chars(textio *self, PyObject *chars);
/* A couple of specialized cases in order to bypass the slow incremental
encoding methods for the most popular encodings. */
static PyObject *
ascii_encode(textio *self, PyObject *text)
{
return _PyUnicode_AsASCIIString(text, PyBytes_AS_STRING(self->errors));
}
static PyObject *
utf16be_encode(textio *self, PyObject *text)
{
return _PyUnicode_EncodeUTF16(text,
PyBytes_AS_STRING(self->errors), 1);
}
static PyObject *
utf16le_encode(textio *self, PyObject *text)
{
return _PyUnicode_EncodeUTF16(text,
PyBytes_AS_STRING(self->errors), -1);
}
static PyObject *
utf16_encode(textio *self, PyObject *text)
{
if (!self->encoding_start_of_stream) {
/* Skip the BOM and use native byte ordering */
#if PY_BIG_ENDIAN
return utf16be_encode(self, text);
#else
return utf16le_encode(self, text);
#endif
}
return _PyUnicode_EncodeUTF16(text,
PyBytes_AS_STRING(self->errors), 0);
}
static PyObject *
utf32be_encode(textio *self, PyObject *text)
{
return _PyUnicode_EncodeUTF32(text,
PyBytes_AS_STRING(self->errors), 1);
}
static PyObject *
utf32le_encode(textio *self, PyObject *text)
{
return _PyUnicode_EncodeUTF32(text,
PyBytes_AS_STRING(self->errors), -1);
}
static PyObject *
utf32_encode(textio *self, PyObject *text)
{
if (!self->encoding_start_of_stream) {
/* Skip the BOM and use native byte ordering */
#if PY_BIG_ENDIAN
return utf32be_encode(self, text);
#else
return utf32le_encode(self, text);
#endif
}
return _PyUnicode_EncodeUTF32(text,
PyBytes_AS_STRING(self->errors), 0);
}
static PyObject *
utf8_encode(textio *self, PyObject *text)
{
return _PyUnicode_AsUTF8String(text, PyBytes_AS_STRING(self->errors));
}
static PyObject *
latin1_encode(textio *self, PyObject *text)
{
return _PyUnicode_AsLatin1String(text, PyBytes_AS_STRING(self->errors));
}
/* Map normalized encoding names onto the specialized encoding funcs */
typedef struct {
const char *name;
encodefunc_t encodefunc;
} encodefuncentry;
static const encodefuncentry encodefuncs[] = {
{"ascii", (encodefunc_t) ascii_encode},
{"iso8859-1", (encodefunc_t) latin1_encode},
{"utf-8", (encodefunc_t) utf8_encode},
{"utf-16-be", (encodefunc_t) utf16be_encode},
{"utf-16-le", (encodefunc_t) utf16le_encode},
{"utf-16", (encodefunc_t) utf16_encode},
{"utf-32-be", (encodefunc_t) utf32be_encode},
{"utf-32-le", (encodefunc_t) utf32le_encode},
{"utf-32", (encodefunc_t) utf32_encode},
{NULL, NULL}
};
/*[clinic input]
_io.TextIOWrapper.__init__
buffer: object
encoding: str(accept={str, NoneType}) = NULL
errors: str(accept={str, NoneType}) = NULL
newline: str(accept={str, NoneType}) = NULL
line_buffering: int(c_default="0") = False
write_through: int(c_default="0") = False
Character and line based layer over a BufferedIOBase object, buffer.
encoding gives the name of the encoding that the stream will be
decoded or encoded with. It defaults to locale.getpreferredencoding(False).
errors determines the strictness of encoding and decoding (see
help(codecs.Codec) or the documentation for codecs.register) and
defaults to "strict".
newline controls how line endings are handled. It can be None, '',
'\n', '\r', and '\r\n'. It works as follows:
* On input, if newline is None, universal newlines mode is
enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
these are translated into '\n' before being returned to the
caller. If it is '', universal newline mode is enabled, but line
endings are returned to the caller untranslated. If it has any of
the other legal values, input lines are only terminated by the given
string, and the line ending is returned to the caller untranslated.
* On output, if newline is None, any '\n' characters written are
translated to the system default line separator, os.linesep. If
newline is '' or '\n', no translation takes place. If newline is any
of the other legal values, any '\n' characters written are translated
to the given string.
If line_buffering is True, a call to flush is implied when a call to
write contains a newline character.
[clinic start generated code]*/
static int
_io_TextIOWrapper___init___impl(textio *self, PyObject *buffer,
const char *encoding, const char *errors,
const char *newline, int line_buffering,
int write_through)
/*[clinic end generated code: output=56a83402ce2a8381 input=3126cb3101a2c99b]*/
{
PyObject *raw, *codec_info = NULL;
_PyIO_State *state = NULL;
PyObject *res;
int r;
self->ok = 0;
self->detached = 0;
if (newline && newline[0] != '\0'
&& !(newline[0] == '\n' && newline[1] == '\0')
&& !(newline[0] == '\r' && newline[1] == '\0')
&& !(newline[0] == '\r' && newline[1] == '\n' && newline[2] == '\0')) {
PyErr_Format(PyExc_ValueError,
"illegal newline value: %s", newline);
return -1;
}
Py_CLEAR(self->buffer);
Py_CLEAR(self->encoding);
Py_CLEAR(self->encoder);
Py_CLEAR(self->decoder);
Py_CLEAR(self->readnl);
Py_CLEAR(self->decoded_chars);
Py_CLEAR(self->pending_bytes);
Py_CLEAR(self->snapshot);
Py_CLEAR(self->errors);
Py_CLEAR(self->raw);
self->decoded_chars_used = 0;
self->pending_bytes_count = 0;
self->encodefunc = NULL;
self->b2cratio = 0.0;
if (encoding == NULL) {
/* Try os.device_encoding(fileno) */
PyObject *fileno;
state = IO_STATE();
if (state == NULL)
goto error;
fileno = _PyObject_CallMethodId(buffer, &PyId_fileno, NULL);
/* Ignore only AttributeError and UnsupportedOperation */
if (fileno == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError) ||
PyErr_ExceptionMatches(state->unsupported_operation)) {
PyErr_Clear();
}
else {
goto error;
}
}
else {
int fd = _PyLong_AsInt(fileno);
Py_DECREF(fileno);
if (fd == -1 && PyErr_Occurred()) {
goto error;
}
self->encoding = _Py_device_encoding(fd);
if (self->encoding == NULL)
goto error;
else if (!PyUnicode_Check(self->encoding))
Py_CLEAR(self->encoding);
}
}
if (encoding == NULL && self->encoding == NULL) {
PyObject *locale_module = _PyIO_get_locale_module(state);
if (locale_module == NULL)
goto catch_ImportError;
self->encoding = _PyObject_CallMethodId(
locale_module, &PyId_getpreferredencoding, "O", Py_False);
Py_DECREF(locale_module);
if (self->encoding == NULL) {
catch_ImportError:
/*
Importing locale can raise an ImportError because of
_functools, and locale.getpreferredencoding can raise an
ImportError if _locale is not available. These will happen
during module building.
*/
if (PyErr_ExceptionMatches(PyExc_ImportError)) {
PyErr_Clear();
self->encoding = PyUnicode_FromString("ascii");
}
else
goto error;
}
else if (!PyUnicode_Check(self->encoding))
Py_CLEAR(self->encoding);
}
if (self->encoding != NULL) {
encoding = PyUnicode_AsUTF8(self->encoding);
if (encoding == NULL)
goto error;
}
else if (encoding != NULL) {
self->encoding = PyUnicode_FromString(encoding);
if (self->encoding == NULL)
goto error;
}
else {
PyErr_SetString(PyExc_IOError,
"could not determine default encoding");
goto error;
}
/* Check we have been asked for a real text encoding */
codec_info = _PyCodec_LookupTextEncoding(encoding, "codecs.open()");
if (codec_info == NULL) {
Py_CLEAR(self->encoding);
goto error;
}
/* XXX: Failures beyond this point have the potential to leak elements
* of the partially constructed object (like self->encoding)
*/
if (errors == NULL)
errors = "strict";
self->errors = PyBytes_FromString(errors);
if (self->errors == NULL)
goto error;
self->chunk_size = 8192;
self->readuniversal = (newline == NULL || newline[0] == '\0');
self->line_buffering = line_buffering;
self->write_through = write_through;
self->readtranslate = (newline == NULL);
if (newline) {
self->readnl = PyUnicode_FromString(newline);
if (self->readnl == NULL)
goto error;
}
self->writetranslate = (newline == NULL || newline[0] != '\0');
if (!self->readuniversal && self->readnl) {
self->writenl = PyUnicode_AsUTF8(self->readnl);
if (self->writenl == NULL)
goto error;
if (!strcmp(self->writenl, "\n"))
self->writenl = NULL;
}
#ifdef MS_WINDOWS
else
self->writenl = "\r\n";
#endif
/* Build the decoder object */
res = _PyObject_CallMethodId(buffer, &PyId_readable, NULL);
if (res == NULL)
goto error;
r = PyObject_IsTrue(res);
Py_DECREF(res);
if (r == -1)
goto error;
if (r == 1) {
self->decoder = _PyCodecInfo_GetIncrementalDecoder(codec_info,
errors);
if (self->decoder == NULL)
goto error;
if (self->readuniversal) {
PyObject *incrementalDecoder = PyObject_CallFunction(
(PyObject *)&PyIncrementalNewlineDecoder_Type,
"Oi", self->decoder, (int)self->readtranslate);
if (incrementalDecoder == NULL)
goto error;
Py_XSETREF(self->decoder, incrementalDecoder);
}
}
/* Build the encoder object */
res = _PyObject_CallMethodId(buffer, &PyId_writable, NULL);
if (res == NULL)
goto error;
r = PyObject_IsTrue(res);
Py_DECREF(res);
if (r == -1)
goto error;
if (r == 1) {
self->encoder = _PyCodecInfo_GetIncrementalEncoder(codec_info,
errors);
if (self->encoder == NULL)
goto error;
/* Get the normalized name of the codec */
res = _PyObject_GetAttrId(codec_info, &PyId_name);
if (res == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError))
PyErr_Clear();
else
goto error;
}
else if (PyUnicode_Check(res)) {
const encodefuncentry *e = encodefuncs;
while (e->name != NULL) {
if (_PyUnicode_EqualToASCIIString(res, e->name)) {
self->encodefunc = e->encodefunc;
break;
}
e++;
}
}
Py_XDECREF(res);
}
/* Finished sorting out the codec details */
Py_CLEAR(codec_info);
self->buffer = buffer;
Py_INCREF(buffer);
if (Py_TYPE(buffer) == &PyBufferedReader_Type ||
Py_TYPE(buffer) == &PyBufferedWriter_Type ||
Py_TYPE(buffer) == &PyBufferedRandom_Type) {
raw = _PyObject_GetAttrId(buffer, &PyId_raw);
/* Cache the raw FileIO object to speed up 'closed' checks */
if (raw == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError))
PyErr_Clear();
else
goto error;
}
else if (Py_TYPE(raw) == &PyFileIO_Type)
self->raw = raw;
else
Py_DECREF(raw);
}
res = _PyObject_CallMethodId(buffer, &PyId_seekable, NULL);
if (res == NULL)
goto error;
r = PyObject_IsTrue(res);
Py_DECREF(res);
if (r < 0)
goto error;
self->seekable = self->telling = r;
self->has_read1 = _PyObject_HasAttrId(buffer, &PyId_read1);
self->encoding_start_of_stream = 0;
if (self->seekable && self->encoder) {
PyObject *cookieObj;
int cmp;
self->encoding_start_of_stream = 1;
cookieObj = PyObject_CallMethodObjArgs(buffer, _PyIO_str_tell, NULL);
if (cookieObj == NULL)
goto error;
cmp = PyObject_RichCompareBool(cookieObj, _PyIO_zero, Py_EQ);
Py_DECREF(cookieObj);
if (cmp < 0) {
goto error;
}
if (cmp == 0) {
self->encoding_start_of_stream = 0;
res = PyObject_CallMethodObjArgs(self->encoder, _PyIO_str_setstate,
_PyIO_zero, NULL);
if (res == NULL)
goto error;
Py_DECREF(res);
}
}
self->ok = 1;
return 0;
error:
Py_XDECREF(codec_info);
return -1;
}
static int
textiowrapper_clear(textio *self)
{
self->ok = 0;
Py_CLEAR(self->buffer);
Py_CLEAR(self->encoding);
Py_CLEAR(self->encoder);
Py_CLEAR(self->decoder);
Py_CLEAR(self->readnl);
Py_CLEAR(self->decoded_chars);
Py_CLEAR(self->pending_bytes);
Py_CLEAR(self->snapshot);
Py_CLEAR(self->errors);
Py_CLEAR(self->raw);
Py_CLEAR(self->dict);
return 0;
}
static void
textiowrapper_dealloc(textio *self)
{
self->finalizing = 1;
if (_PyIOBase_finalize((PyObject *) self) < 0)
return;
self->ok = 0;
_PyObject_GC_UNTRACK(self);
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *)self);
textiowrapper_clear(self);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static int
textiowrapper_traverse(textio *self, visitproc visit, void *arg)
{
Py_VISIT(self->buffer);
Py_VISIT(self->encoding);
Py_VISIT(self->encoder);
Py_VISIT(self->decoder);
Py_VISIT(self->readnl);
Py_VISIT(self->decoded_chars);
Py_VISIT(self->pending_bytes);
Py_VISIT(self->snapshot);
Py_VISIT(self->errors);
Py_VISIT(self->raw);
Py_VISIT(self->dict);
return 0;
}
static PyObject *
textiowrapper_closed_get(textio *self, void *context);
/* This macro takes some shortcuts to make the common case faster. */
#define CHECK_CLOSED(self) \
do { \
int r; \
PyObject *_res; \
if (Py_TYPE(self) == &PyTextIOWrapper_Type) { \
if (self->raw != NULL) \
r = _PyFileIO_closed(self->raw); \
else { \
_res = textiowrapper_closed_get(self, NULL); \
if (_res == NULL) \
return NULL; \
r = PyObject_IsTrue(_res); \
Py_DECREF(_res); \
if (r < 0) \
return NULL; \
} \
if (r > 0) { \
PyErr_SetString(PyExc_ValueError, \
"I/O operation on closed file."); \
return NULL; \
} \
} \
else if (_PyIOBase_check_closed((PyObject *)self, Py_True) == NULL) \
return NULL; \
} while (0)
#define CHECK_INITIALIZED(self) \
if (self->ok <= 0) { \
PyErr_SetString(PyExc_ValueError, \
"I/O operation on uninitialized object"); \
return NULL; \
}
#define CHECK_ATTACHED(self) \
CHECK_INITIALIZED(self); \
if (self->detached) { \
PyErr_SetString(PyExc_ValueError, \
"underlying buffer has been detached"); \
return NULL; \
}
#define CHECK_ATTACHED_INT(self) \
if (self->ok <= 0) { \
PyErr_SetString(PyExc_ValueError, \
"I/O operation on uninitialized object"); \
return -1; \
} else if (self->detached) { \
PyErr_SetString(PyExc_ValueError, \
"underlying buffer has been detached"); \
return -1; \
}
/*[clinic input]
_io.TextIOWrapper.detach
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_detach_impl(textio *self)
/*[clinic end generated code: output=7ba3715cd032d5f2 input=e5a71fbda9e1d9f9]*/
{
PyObject *buffer, *res;
CHECK_ATTACHED(self);
res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL);
if (res == NULL)
return NULL;
Py_DECREF(res);
buffer = self->buffer;
self->buffer = NULL;
self->detached = 1;
return buffer;
}
/* Flush the internal write buffer. This doesn't explicitly flush the
underlying buffered object, though. */
static int
_textiowrapper_writeflush(textio *self)
{
PyObject *pending, *b, *ret;
if (self->pending_bytes == NULL)
return 0;
pending = self->pending_bytes;
Py_INCREF(pending);
self->pending_bytes_count = 0;
Py_CLEAR(self->pending_bytes);
b = _PyBytes_Join(_PyIO_empty_bytes, pending);
Py_DECREF(pending);
if (b == NULL)
return -1;
ret = NULL;
do {
ret = PyObject_CallMethodObjArgs(self->buffer,
_PyIO_str_write, b, NULL);
} while (ret == NULL && _PyIO_trap_eintr());
Py_DECREF(b);
if (ret == NULL)
return -1;
Py_DECREF(ret);
return 0;
}
/*[clinic input]
_io.TextIOWrapper.write
text: unicode
/
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_write_impl(textio *self, PyObject *text)
/*[clinic end generated code: output=d2deb0d50771fcec input=fdf19153584a0e44]*/
{
PyObject *ret;
PyObject *b;
Py_ssize_t textlen;
int haslf = 0;
int needflush = 0, text_needflush = 0;
if (PyUnicode_READY(text) == -1)
return NULL;
CHECK_ATTACHED(self);
CHECK_CLOSED(self);
if (self->encoder == NULL)
return _unsupported("not writable");
Py_INCREF(text);
textlen = PyUnicode_GET_LENGTH(text);
if ((self->writetranslate && self->writenl != NULL) || self->line_buffering)
if (PyUnicode_FindChar(text, '\n', 0, PyUnicode_GET_LENGTH(text), 1) != -1)
haslf = 1;
if (haslf && self->writetranslate && self->writenl != NULL) {
PyObject *newtext = _PyObject_CallMethodId(
text, &PyId_replace, "ss", "\n", self->writenl);
Py_DECREF(text);
if (newtext == NULL)
return NULL;
text = newtext;
}
if (self->write_through)
text_needflush = 1;
if (self->line_buffering &&
(haslf ||
PyUnicode_FindChar(text, '\r', 0, PyUnicode_GET_LENGTH(text), 1) != -1))
needflush = 1;
/* XXX What if we were just reading? */
if (self->encodefunc != NULL) {
b = (*self->encodefunc)((PyObject *) self, text);
self->encoding_start_of_stream = 0;
}
else
b = PyObject_CallMethodObjArgs(self->encoder,
_PyIO_str_encode, text, NULL);
Py_DECREF(text);
if (b == NULL)
return NULL;
if (!PyBytes_Check(b)) {
PyErr_Format(PyExc_TypeError,
"encoder should return a bytes object, not '%.200s'",
Py_TYPE(b)->tp_name);
Py_DECREF(b);
return NULL;
}
if (self->pending_bytes == NULL) {
self->pending_bytes = PyList_New(0);
if (self->pending_bytes == NULL) {
Py_DECREF(b);
return NULL;
}
self->pending_bytes_count = 0;
}
if (PyList_Append(self->pending_bytes, b) < 0) {
Py_DECREF(b);
return NULL;
}
self->pending_bytes_count += PyBytes_GET_SIZE(b);
Py_DECREF(b);
if (self->pending_bytes_count > self->chunk_size || needflush ||
text_needflush) {
if (_textiowrapper_writeflush(self) < 0)
return NULL;
}
if (needflush) {
ret = PyObject_CallMethodObjArgs(self->buffer, _PyIO_str_flush, NULL);
if (ret == NULL)
return NULL;
Py_DECREF(ret);
}
textiowrapper_set_decoded_chars(self, NULL);
Py_CLEAR(self->snapshot);
if (self->decoder) {
ret = _PyObject_CallMethodId(self->decoder, &PyId_reset, NULL);
if (ret == NULL)
return NULL;
Py_DECREF(ret);
}
return PyLong_FromSsize_t(textlen);
}
/* Steal a reference to chars and store it in the decoded_char buffer;
*/
static void
textiowrapper_set_decoded_chars(textio *self, PyObject *chars)
{
Py_XSETREF(self->decoded_chars, chars);
self->decoded_chars_used = 0;
}
static PyObject *
textiowrapper_get_decoded_chars(textio *self, Py_ssize_t n)
{
PyObject *chars;
Py_ssize_t avail;
if (self->decoded_chars == NULL)
return PyUnicode_FromStringAndSize(NULL, 0);
/* decoded_chars is guaranteed to be "ready". */
avail = (PyUnicode_GET_LENGTH(self->decoded_chars)
- self->decoded_chars_used);
assert(avail >= 0);
if (n < 0 || n > avail)
n = avail;
if (self->decoded_chars_used > 0 || n < avail) {
chars = PyUnicode_Substring(self->decoded_chars,
self->decoded_chars_used,
self->decoded_chars_used + n);
if (chars == NULL)
return NULL;
}
else {
chars = self->decoded_chars;
Py_INCREF(chars);
}
self->decoded_chars_used += n;
return chars;
}
/* Read and decode the next chunk of data from the BufferedReader.
*/
static int
textiowrapper_read_chunk(textio *self, Py_ssize_t size_hint)
{
PyObject *dec_buffer = NULL;
PyObject *dec_flags = NULL;
PyObject *input_chunk = NULL;
Py_buffer input_chunk_buf;
PyObject *decoded_chars, *chunk_size;
Py_ssize_t nbytes, nchars;
int eof;
/* The return value is True unless EOF was reached. The decoded string is
* placed in self._decoded_chars (replacing its previous value). The
* entire input chunk is sent to the decoder, though some of it may remain
* buffered in the decoder, yet to be converted.
*/
if (self->decoder == NULL) {
_unsupported("not readable");
return -1;
}
if (self->telling) {
/* To prepare for tell(), we need to snapshot a point in the file
* where the decoder's input buffer is empty.
*/
PyObject *state = PyObject_CallMethodObjArgs(self->decoder,
_PyIO_str_getstate, NULL);
if (state == NULL)
return -1;
/* Given this, we know there was a valid snapshot point
* len(dec_buffer) bytes ago with decoder state (b'', dec_flags).
*/
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError,
"illegal decoder state");
Py_DECREF(state);
return -1;
}
if (!PyArg_ParseTuple(state,
"OO;illegal decoder state", &dec_buffer, &dec_flags))
{
Py_DECREF(state);
return -1;
}
if (!PyBytes_Check(dec_buffer)) {
PyErr_Format(PyExc_TypeError,
"illegal decoder state: the first item should be a "
"bytes object, not '%.200s'",
Py_TYPE(dec_buffer)->tp_name);
Py_DECREF(state);
return -1;
}
Py_INCREF(dec_buffer);
Py_INCREF(dec_flags);
Py_DECREF(state);
}
/* Read a chunk, decode it, and put the result in self._decoded_chars. */
if (size_hint > 0) {
size_hint = (Py_ssize_t)(Py_MAX(self->b2cratio, 1.0) * size_hint);
}
chunk_size = PyLong_FromSsize_t(Py_MAX(self->chunk_size, size_hint));
if (chunk_size == NULL)
goto fail;
input_chunk = PyObject_CallMethodObjArgs(self->buffer,
(self->has_read1 ? _PyIO_str_read1: _PyIO_str_read),
chunk_size, NULL);
Py_DECREF(chunk_size);
if (input_chunk == NULL)
goto fail;
if (PyObject_GetBuffer(input_chunk, &input_chunk_buf, 0) != 0) {
PyErr_Format(PyExc_TypeError,
"underlying %s() should have returned a bytes-like object, "
"not '%.200s'", (self->has_read1 ? "read1": "read"),
Py_TYPE(input_chunk)->tp_name);
goto fail;
}
nbytes = input_chunk_buf.len;
eof = (nbytes == 0);
if (Py_TYPE(self->decoder) == &PyIncrementalNewlineDecoder_Type) {
decoded_chars = _PyIncrementalNewlineDecoder_decode(
self->decoder, input_chunk, eof);
}
else {
decoded_chars = PyObject_CallMethodObjArgs(self->decoder,
_PyIO_str_decode, input_chunk, eof ? Py_True : Py_False, NULL);
}
PyBuffer_Release(&input_chunk_buf);
if (check_decoded(decoded_chars) < 0)
goto fail;
textiowrapper_set_decoded_chars(self, decoded_chars);
nchars = PyUnicode_GET_LENGTH(decoded_chars);
if (nchars > 0)
self->b2cratio = (double) nbytes / nchars;
else
self->b2cratio = 0.0;
if (nchars > 0)
eof = 0;
if (self->telling) {
/* At the snapshot point, len(dec_buffer) bytes before the read, the
* next input to be decoded is dec_buffer + input_chunk.
*/
PyObject *next_input = dec_buffer;
PyBytes_Concat(&next_input, input_chunk);
dec_buffer = NULL; /* Reference lost to PyBytes_Concat */
if (next_input == NULL) {
goto fail;
}
PyObject *snapshot = Py_BuildValue("NN", dec_flags, next_input);
if (snapshot == NULL) {
dec_flags = NULL;
goto fail;
}
Py_XSETREF(self->snapshot, snapshot);
}
Py_DECREF(input_chunk);
return (eof == 0);
fail:
Py_XDECREF(dec_buffer);
Py_XDECREF(dec_flags);
Py_XDECREF(input_chunk);
return -1;
}
/*[clinic input]
_io.TextIOWrapper.read
size as n: io_ssize_t = -1
/
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_read_impl(textio *self, Py_ssize_t n)
/*[clinic end generated code: output=7e651ce6cc6a25a6 input=8c09398424085cca]*/
{
PyObject *result = NULL, *chunks = NULL;
CHECK_ATTACHED(self);
CHECK_CLOSED(self);
if (self->decoder == NULL)
return _unsupported("not readable");
if (_textiowrapper_writeflush(self) < 0)
return NULL;
if (n < 0) {
/* Read everything */
PyObject *bytes = _PyObject_CallMethodId(self->buffer, &PyId_read, NULL);
PyObject *decoded;
if (bytes == NULL)
goto fail;
if (Py_TYPE(self->decoder) == &PyIncrementalNewlineDecoder_Type)
decoded = _PyIncrementalNewlineDecoder_decode(self->decoder,
bytes, 1);
else
decoded = PyObject_CallMethodObjArgs(
self->decoder, _PyIO_str_decode, bytes, Py_True, NULL);
Py_DECREF(bytes);
if (check_decoded(decoded) < 0)
goto fail;
result = textiowrapper_get_decoded_chars(self, -1);
if (result == NULL) {
Py_DECREF(decoded);
return NULL;
}
PyUnicode_AppendAndDel(&result, decoded);
if (result == NULL)
goto fail;
textiowrapper_set_decoded_chars(self, NULL);
Py_CLEAR(self->snapshot);
return result;
}
else {
int res = 1;
Py_ssize_t remaining = n;
result = textiowrapper_get_decoded_chars(self, n);
if (result == NULL)
goto fail;
if (PyUnicode_READY(result) == -1)
goto fail;
remaining -= PyUnicode_GET_LENGTH(result);
/* Keep reading chunks until we have n characters to return */
while (remaining > 0) {
res = textiowrapper_read_chunk(self, remaining);
if (res < 0) {
/* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals()
when EINTR occurs so we needn't do it ourselves. */
if (_PyIO_trap_eintr()) {
continue;
}
goto fail;
}
if (res == 0) /* EOF */
break;
if (chunks == NULL) {
chunks = PyList_New(0);
if (chunks == NULL)
goto fail;
}
if (PyUnicode_GET_LENGTH(result) > 0 &&
PyList_Append(chunks, result) < 0)
goto fail;
Py_DECREF(result);
result = textiowrapper_get_decoded_chars(self, remaining);
if (result == NULL)
goto fail;
remaining -= PyUnicode_GET_LENGTH(result);
}
if (chunks != NULL) {
if (result != NULL && PyList_Append(chunks, result) < 0)
goto fail;
Py_XSETREF(result, PyUnicode_Join(_PyIO_empty_str, chunks));
if (result == NULL)
goto fail;
Py_CLEAR(chunks);
}
return result;
}
fail:
Py_XDECREF(result);
Py_XDECREF(chunks);
return NULL;
}
/* NOTE: `end` must point to the real end of the Py_UCS4 storage,
that is to the NUL character. Otherwise the function will produce
incorrect results. */
static const char *
find_control_char(int kind, const char *s, const char *end, Py_UCS4 ch)
{
if (kind == PyUnicode_1BYTE_KIND) {
assert(ch < 256);
return (char *) memchr((void *) s, (char) ch, end - s);
}
for (;;) {
while (PyUnicode_READ(kind, s, 0) > ch)
s += kind;
if (PyUnicode_READ(kind, s, 0) == ch)
return s;
if (s == end)
return NULL;
s += kind;
}
}
Py_ssize_t
_PyIO_find_line_ending(
int translated, int universal, PyObject *readnl,
int kind, const char *start, const char *end, Py_ssize_t *consumed)
{
Py_ssize_t len = ((char*)end - (char*)start)/kind;
if (translated) {
/* Newlines are already translated, only search for \n */
const char *pos = find_control_char(kind, start, end, '\n');
if (pos != NULL)
return (pos - start)/kind + 1;
else {
*consumed = len;
return -1;
}
}
else if (universal) {
/* Universal newline search. Find any of \r, \r\n, \n
* The decoder ensures that \r\n are not split in two pieces
*/
const char *s = start;
for (;;) {
Py_UCS4 ch;
/* Fast path for non-control chars. The loop always ends
since the Unicode string is NUL-terminated. */
while (PyUnicode_READ(kind, s, 0) > '\r')
s += kind;
if (s >= end) {
*consumed = len;
return -1;
}
ch = PyUnicode_READ(kind, s, 0);
s += kind;
if (ch == '\n')
return (s - start)/kind;
if (ch == '\r') {
if (PyUnicode_READ(kind, s, 0) == '\n')
return (s - start)/kind + 1;
else
return (s - start)/kind;
}
}
}
else {
/* Non-universal mode. */
Py_ssize_t readnl_len = PyUnicode_GET_LENGTH(readnl);
Py_UCS1 *nl = PyUnicode_1BYTE_DATA(readnl);
/* Assume that readnl is an ASCII character. */
assert(PyUnicode_KIND(readnl) == PyUnicode_1BYTE_KIND);
if (readnl_len == 1) {
const char *pos = find_control_char(kind, start, end, nl[0]);
if (pos != NULL)
return (pos - start)/kind + 1;
*consumed = len;
return -1;
}
else {
const char *s = start;
const char *e = end - (readnl_len - 1)*kind;
const char *pos;
if (e < s)
e = s;
while (s < e) {
Py_ssize_t i;
const char *pos = find_control_char(kind, s, end, nl[0]);
if (pos == NULL || pos >= e)
break;
for (i = 1; i < readnl_len; i++) {
if (PyUnicode_READ(kind, pos, i) != nl[i])
break;
}
if (i == readnl_len)
return (pos - start)/kind + readnl_len;
s = pos + kind;
}
pos = find_control_char(kind, e, end, nl[0]);
if (pos == NULL)
*consumed = len;
else
*consumed = (pos - start)/kind;
return -1;
}
}
}
static PyObject *
_textiowrapper_readline(textio *self, Py_ssize_t limit)
{
PyObject *line = NULL, *chunks = NULL, *remaining = NULL;
Py_ssize_t start, endpos, chunked, offset_to_buffer;
int res;
CHECK_CLOSED(self);
if (_textiowrapper_writeflush(self) < 0)
return NULL;
chunked = 0;
while (1) {
char *ptr;
Py_ssize_t line_len;
int kind;
Py_ssize_t consumed = 0;
/* First, get some data if necessary */
res = 1;
while (!self->decoded_chars ||
!PyUnicode_GET_LENGTH(self->decoded_chars)) {
res = textiowrapper_read_chunk(self, 0);
if (res < 0) {
/* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals()
when EINTR occurs so we needn't do it ourselves. */
if (_PyIO_trap_eintr()) {
continue;
}
goto error;
}
if (res == 0)
break;
}
if (res == 0) {
/* end of file */
textiowrapper_set_decoded_chars(self, NULL);
Py_CLEAR(self->snapshot);
start = endpos = offset_to_buffer = 0;
break;
}
if (remaining == NULL) {
line = self->decoded_chars;
start = self->decoded_chars_used;
offset_to_buffer = 0;
Py_INCREF(line);
}
else {
assert(self->decoded_chars_used == 0);
line = PyUnicode_Concat(remaining, self->decoded_chars);
start = 0;
offset_to_buffer = PyUnicode_GET_LENGTH(remaining);
Py_CLEAR(remaining);
if (line == NULL)
goto error;
if (PyUnicode_READY(line) == -1)
goto error;
}
ptr = PyUnicode_DATA(line);
line_len = PyUnicode_GET_LENGTH(line);
kind = PyUnicode_KIND(line);
endpos = _PyIO_find_line_ending(
self->readtranslate, self->readuniversal, self->readnl,
kind,
ptr + kind * start,
ptr + kind * line_len,
&consumed);
if (endpos >= 0) {
endpos += start;
if (limit >= 0 && (endpos - start) + chunked >= limit)
endpos = start + limit - chunked;
break;
}
/* We can put aside up to `endpos` */
endpos = consumed + start;
if (limit >= 0 && (endpos - start) + chunked >= limit) {
/* Didn't find line ending, but reached length limit */
endpos = start + limit - chunked;
break;
}
if (endpos > start) {
/* No line ending seen yet - put aside current data */
PyObject *s;
if (chunks == NULL) {
chunks = PyList_New(0);
if (chunks == NULL)
goto error;
}
s = PyUnicode_Substring(line, start, endpos);
if (s == NULL)
goto error;
if (PyList_Append(chunks, s) < 0) {
Py_DECREF(s);
goto error;
}
chunked += PyUnicode_GET_LENGTH(s);
Py_DECREF(s);
}
/* There may be some remaining bytes we'll have to prepend to the
next chunk of data */
if (endpos < line_len) {
remaining = PyUnicode_Substring(line, endpos, line_len);
if (remaining == NULL)
goto error;
}
Py_CLEAR(line);
/* We have consumed the buffer */
textiowrapper_set_decoded_chars(self, NULL);
}
if (line != NULL) {
/* Our line ends in the current buffer */
self->decoded_chars_used = endpos - offset_to_buffer;
if (start > 0 || endpos < PyUnicode_GET_LENGTH(line)) {
PyObject *s = PyUnicode_Substring(line, start, endpos);
Py_CLEAR(line);
if (s == NULL)
goto error;
line = s;
}
}
if (remaining != NULL) {
if (chunks == NULL) {
chunks = PyList_New(0);
if (chunks == NULL)
goto error;
}
if (PyList_Append(chunks, remaining) < 0)
goto error;
Py_CLEAR(remaining);
}
if (chunks != NULL) {
if (line != NULL) {
if (PyList_Append(chunks, line) < 0)
goto error;
Py_DECREF(line);
}
line = PyUnicode_Join(_PyIO_empty_str, chunks);
if (line == NULL)
goto error;
Py_CLEAR(chunks);
}
if (line == NULL) {
Py_INCREF(_PyIO_empty_str);
line = _PyIO_empty_str;
}
return line;
error:
Py_XDECREF(chunks);
Py_XDECREF(remaining);
Py_XDECREF(line);
return NULL;
}
/*[clinic input]
_io.TextIOWrapper.readline
size: Py_ssize_t = -1
/
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_readline_impl(textio *self, Py_ssize_t size)
/*[clinic end generated code: output=344afa98804e8b25 input=56c7172483b36db6]*/
{
CHECK_ATTACHED(self);
return _textiowrapper_readline(self, size);
}
/* Seek and Tell */
typedef struct {
Py_off_t start_pos;
int dec_flags;
int bytes_to_feed;
int chars_to_skip;
char need_eof;
} cookie_type;
/*
To speed up cookie packing/unpacking, we store the fields in a temporary
string and call _PyLong_FromByteArray() or _PyLong_AsByteArray (resp.).
The following macros define at which offsets in the intermediary byte
string the various CookieStruct fields will be stored.
*/
#define COOKIE_BUF_LEN (sizeof(Py_off_t) + 3 * sizeof(int) + sizeof(char))
#if PY_BIG_ENDIAN
/* We want the least significant byte of start_pos to also be the least
significant byte of the cookie, which means that in big-endian mode we
must copy the fields in reverse order. */
# define OFF_START_POS (sizeof(char) + 3 * sizeof(int))
# define OFF_DEC_FLAGS (sizeof(char) + 2 * sizeof(int))
# define OFF_BYTES_TO_FEED (sizeof(char) + sizeof(int))
# define OFF_CHARS_TO_SKIP (sizeof(char))
# define OFF_NEED_EOF 0
#else
/* Little-endian mode: the least significant byte of start_pos will
naturally end up the least significant byte of the cookie. */
# define OFF_START_POS 0
# define OFF_DEC_FLAGS (sizeof(Py_off_t))
# define OFF_BYTES_TO_FEED (sizeof(Py_off_t) + sizeof(int))
# define OFF_CHARS_TO_SKIP (sizeof(Py_off_t) + 2 * sizeof(int))
# define OFF_NEED_EOF (sizeof(Py_off_t) + 3 * sizeof(int))
#endif
static int
textiowrapper_parse_cookie(cookie_type *cookie, PyObject *cookieObj)
{
unsigned char buffer[COOKIE_BUF_LEN];
PyLongObject *cookieLong = (PyLongObject *)PyNumber_Long(cookieObj);
if (cookieLong == NULL)
return -1;
if (_PyLong_AsByteArray(cookieLong, buffer, sizeof(buffer),
PY_LITTLE_ENDIAN, 0) < 0) {
Py_DECREF(cookieLong);
return -1;
}
Py_DECREF(cookieLong);
memcpy(&cookie->start_pos, buffer + OFF_START_POS, sizeof(cookie->start_pos));
memcpy(&cookie->dec_flags, buffer + OFF_DEC_FLAGS, sizeof(cookie->dec_flags));
memcpy(&cookie->bytes_to_feed, buffer + OFF_BYTES_TO_FEED, sizeof(cookie->bytes_to_feed));
memcpy(&cookie->chars_to_skip, buffer + OFF_CHARS_TO_SKIP, sizeof(cookie->chars_to_skip));
memcpy(&cookie->need_eof, buffer + OFF_NEED_EOF, sizeof(cookie->need_eof));
return 0;
}
static PyObject *
textiowrapper_build_cookie(cookie_type *cookie)
{
unsigned char buffer[COOKIE_BUF_LEN];
memcpy(buffer + OFF_START_POS, &cookie->start_pos, sizeof(cookie->start_pos));
memcpy(buffer + OFF_DEC_FLAGS, &cookie->dec_flags, sizeof(cookie->dec_flags));
memcpy(buffer + OFF_BYTES_TO_FEED, &cookie->bytes_to_feed, sizeof(cookie->bytes_to_feed));
memcpy(buffer + OFF_CHARS_TO_SKIP, &cookie->chars_to_skip, sizeof(cookie->chars_to_skip));
memcpy(buffer + OFF_NEED_EOF, &cookie->need_eof, sizeof(cookie->need_eof));
return _PyLong_FromByteArray(buffer, sizeof(buffer),
PY_LITTLE_ENDIAN, 0);
}
static int
_textiowrapper_decoder_setstate(textio *self, cookie_type *cookie)
{
PyObject *res;
/* When seeking to the start of the stream, we call decoder.reset()
rather than decoder.getstate().
This is for a few decoders such as utf-16 for which the state value
at start is not (b"", 0) but e.g. (b"", 2) (meaning, in the case of
utf-16, that we are expecting a BOM).
*/
if (cookie->start_pos == 0 && cookie->dec_flags == 0)
res = PyObject_CallMethodObjArgs(self->decoder, _PyIO_str_reset, NULL);
else
res = _PyObject_CallMethodId(self->decoder, &PyId_setstate,
"((yi))", "", cookie->dec_flags);
if (res == NULL)
return -1;
Py_DECREF(res);
return 0;
}
static int
_textiowrapper_encoder_reset(textio *self, int start_of_stream)
{
PyObject *res;
if (start_of_stream) {
res = PyObject_CallMethodObjArgs(self->encoder, _PyIO_str_reset, NULL);
self->encoding_start_of_stream = 1;
}
else {
res = PyObject_CallMethodObjArgs(self->encoder, _PyIO_str_setstate,
_PyIO_zero, NULL);
self->encoding_start_of_stream = 0;
}
if (res == NULL)
return -1;
Py_DECREF(res);
return 0;
}
static int
_textiowrapper_encoder_setstate(textio *self, cookie_type *cookie)
{
/* Same as _textiowrapper_decoder_setstate() above. */
return _textiowrapper_encoder_reset(
self, cookie->start_pos == 0 && cookie->dec_flags == 0);
}
/*[clinic input]
_io.TextIOWrapper.seek
cookie as cookieObj: object
whence: int = 0
/
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence)
/*[clinic end generated code: output=0a15679764e2d04d input=0458abeb3d7842be]*/
{
PyObject *posobj;
cookie_type cookie;
PyObject *res;
int cmp;
PyObject *snapshot;
CHECK_ATTACHED(self);
CHECK_CLOSED(self);
Py_INCREF(cookieObj);
if (!self->seekable) {
_unsupported("underlying stream is not seekable");
goto fail;
}
if (whence == 1) {
/* seek relative to current position */
cmp = PyObject_RichCompareBool(cookieObj, _PyIO_zero, Py_EQ);
if (cmp < 0)
goto fail;
if (cmp == 0) {
_unsupported("can't do nonzero cur-relative seeks");
goto fail;
}
/* Seeking to the current position should attempt to
* sync the underlying buffer with the current position.
*/
Py_DECREF(cookieObj);
cookieObj = _PyObject_CallMethodId((PyObject *)self, &PyId_tell, NULL);
if (cookieObj == NULL)
goto fail;
}
else if (whence == 2) {
/* seek relative to end of file */
cmp = PyObject_RichCompareBool(cookieObj, _PyIO_zero, Py_EQ);
if (cmp < 0)
goto fail;
if (cmp == 0) {
_unsupported("can't do nonzero end-relative seeks");
goto fail;
}
res = _PyObject_CallMethodId((PyObject *)self, &PyId_flush, NULL);
if (res == NULL)
goto fail;
Py_DECREF(res);
textiowrapper_set_decoded_chars(self, NULL);
Py_CLEAR(self->snapshot);
if (self->decoder) {
res = _PyObject_CallMethodId(self->decoder, &PyId_reset, NULL);
if (res == NULL)
goto fail;
Py_DECREF(res);
}
res = _PyObject_CallMethodId(self->buffer, &PyId_seek, "ii", 0, 2);
Py_CLEAR(cookieObj);
if (res == NULL)
goto fail;
if (self->encoder) {
/* If seek() == 0, we are at the start of stream, otherwise not */
cmp = PyObject_RichCompareBool(res, _PyIO_zero, Py_EQ);
if (cmp < 0 || _textiowrapper_encoder_reset(self, cmp)) {
Py_DECREF(res);
goto fail;
}
}
return res;
}
else if (whence != 0) {
PyErr_Format(PyExc_ValueError,
"invalid whence (%d, should be 0, 1 or 2)", whence);
goto fail;
}
cmp = PyObject_RichCompareBool(cookieObj, _PyIO_zero, Py_LT);
if (cmp < 0)
goto fail;
if (cmp == 1) {
PyErr_Format(PyExc_ValueError,
"negative seek position %R", cookieObj);
goto fail;
}
res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL);
if (res == NULL)
goto fail;
Py_DECREF(res);
/* The strategy of seek() is to go back to the safe start point
* and replay the effect of read(chars_to_skip) from there.
*/
if (textiowrapper_parse_cookie(&cookie, cookieObj) < 0)
goto fail;
/* Seek back to the safe start point. */
posobj = PyLong_FromOff_t(cookie.start_pos);
if (posobj == NULL)
goto fail;
res = PyObject_CallMethodObjArgs(self->buffer,
_PyIO_str_seek, posobj, NULL);
Py_DECREF(posobj);
if (res == NULL)
goto fail;
Py_DECREF(res);
textiowrapper_set_decoded_chars(self, NULL);
Py_CLEAR(self->snapshot);
/* Restore the decoder to its state from the safe start point. */
if (self->decoder) {
if (_textiowrapper_decoder_setstate(self, &cookie) < 0)
goto fail;
}
if (cookie.chars_to_skip) {
/* Just like _read_chunk, feed the decoder and save a snapshot. */
PyObject *input_chunk = _PyObject_CallMethodId(
self->buffer, &PyId_read, "i", cookie.bytes_to_feed);
PyObject *decoded;
if (input_chunk == NULL)
goto fail;
if (!PyBytes_Check(input_chunk)) {
PyErr_Format(PyExc_TypeError,
"underlying read() should have returned a bytes "
"object, not '%.200s'",
Py_TYPE(input_chunk)->tp_name);
Py_DECREF(input_chunk);
goto fail;
}
snapshot = Py_BuildValue("iN", cookie.dec_flags, input_chunk);
if (snapshot == NULL) {
goto fail;
}
Py_XSETREF(self->snapshot, snapshot);
decoded = _PyObject_CallMethodId(self->decoder, &PyId_decode,
"Oi", input_chunk, (int)cookie.need_eof);
if (check_decoded(decoded) < 0)
goto fail;
textiowrapper_set_decoded_chars(self, decoded);
/* Skip chars_to_skip of the decoded characters. */
if (PyUnicode_GetLength(self->decoded_chars) < cookie.chars_to_skip) {
PyErr_SetString(PyExc_IOError, "can't restore logical file position");
goto fail;
}
self->decoded_chars_used = cookie.chars_to_skip;
}
else {
snapshot = Py_BuildValue("iy", cookie.dec_flags, "");
if (snapshot == NULL)
goto fail;
Py_XSETREF(self->snapshot, snapshot);
}
/* Finally, reset the encoder (merely useful for proper BOM handling) */
if (self->encoder) {
if (_textiowrapper_encoder_setstate(self, &cookie) < 0)
goto fail;
}
return cookieObj;
fail:
Py_XDECREF(cookieObj);
return NULL;
}
/*[clinic input]
_io.TextIOWrapper.tell
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_tell_impl(textio *self)
/*[clinic end generated code: output=4f168c08bf34ad5f input=9a2caf88c24f9ddf]*/
{
PyObject *res;
PyObject *posobj = NULL;
cookie_type cookie = {0,0,0,0,0};
PyObject *next_input;
Py_ssize_t chars_to_skip, chars_decoded;
Py_ssize_t skip_bytes, skip_back;
PyObject *saved_state = NULL;
char *input, *input_end;
Py_ssize_t dec_buffer_len;
int dec_flags;
CHECK_ATTACHED(self);
CHECK_CLOSED(self);
if (!self->seekable) {
_unsupported("underlying stream is not seekable");
goto fail;
}
if (!self->telling) {
PyErr_SetString(PyExc_IOError,
"telling position disabled by next() call");
goto fail;
}
if (_textiowrapper_writeflush(self) < 0)
return NULL;
res = _PyObject_CallMethodId((PyObject *)self, &PyId_flush, NULL);
if (res == NULL)
goto fail;
Py_DECREF(res);
posobj = _PyObject_CallMethodId(self->buffer, &PyId_tell, NULL);
if (posobj == NULL)
goto fail;
if (self->decoder == NULL || self->snapshot == NULL) {
assert (self->decoded_chars == NULL || PyUnicode_GetLength(self->decoded_chars) == 0);
return posobj;
}
#if defined(HAVE_LARGEFILE_SUPPORT)
cookie.start_pos = PyLong_AsLongLong(posobj);
#else
cookie.start_pos = PyLong_AsLong(posobj);
#endif
Py_DECREF(posobj);
if (PyErr_Occurred())
goto fail;
/* Skip backward to the snapshot point (see _read_chunk). */
if (!PyArg_ParseTuple(self->snapshot, "iO", &cookie.dec_flags, &next_input))
goto fail;
assert (PyBytes_Check(next_input));
cookie.start_pos -= PyBytes_GET_SIZE(next_input);
/* How many decoded characters have been used up since the snapshot? */
if (self->decoded_chars_used == 0) {
/* We haven't moved from the snapshot point. */
return textiowrapper_build_cookie(&cookie);
}
chars_to_skip = self->decoded_chars_used;
/* Decoder state will be restored at the end */
saved_state = PyObject_CallMethodObjArgs(self->decoder,
_PyIO_str_getstate, NULL);
if (saved_state == NULL)
goto fail;
#define DECODER_GETSTATE() do { \
PyObject *dec_buffer; \
PyObject *_state = PyObject_CallMethodObjArgs(self->decoder, \
_PyIO_str_getstate, NULL); \
if (_state == NULL) \
goto fail; \
if (!PyTuple_Check(_state)) { \
PyErr_SetString(PyExc_TypeError, \
"illegal decoder state"); \
Py_DECREF(_state); \
goto fail; \
} \
if (!PyArg_ParseTuple(_state, "Oi", &dec_buffer, &dec_flags)) { \
Py_DECREF(_state); \
goto fail; \
} \
if (!PyBytes_Check(dec_buffer)) { \
PyErr_Format(PyExc_TypeError, \
"illegal decoder state: the first item should be a " \
"bytes object, not '%.200s'", \
Py_TYPE(dec_buffer)->tp_name); \
Py_DECREF(_state); \
goto fail; \
} \
dec_buffer_len = PyBytes_GET_SIZE(dec_buffer); \
Py_DECREF(_state); \
} while (0)
#define DECODER_DECODE(start, len, res) do { \
PyObject *_decoded = _PyObject_CallMethodId( \
self->decoder, &PyId_decode, "y#", start, len); \
if (check_decoded(_decoded) < 0) \
goto fail; \
res = PyUnicode_GET_LENGTH(_decoded); \
Py_DECREF(_decoded); \
} while (0)
/* Fast search for an acceptable start point, close to our
current pos */
skip_bytes = (Py_ssize_t) (self->b2cratio * chars_to_skip);
skip_back = 1;
assert(skip_back <= PyBytes_GET_SIZE(next_input));
input = PyBytes_AS_STRING(next_input);
while (skip_bytes > 0) {
/* Decode up to temptative start point */
if (_textiowrapper_decoder_setstate(self, &cookie) < 0)
goto fail;
DECODER_DECODE(input, skip_bytes, chars_decoded);
if (chars_decoded <= chars_to_skip) {
DECODER_GETSTATE();
if (dec_buffer_len == 0) {
/* Before pos and no bytes buffered in decoder => OK */
cookie.dec_flags = dec_flags;
chars_to_skip -= chars_decoded;
break;
}
/* Skip back by buffered amount and reset heuristic */
skip_bytes -= dec_buffer_len;
skip_back = 1;
}
else {
/* We're too far ahead, skip back a bit */
skip_bytes -= skip_back;
skip_back *= 2;
}
}
if (skip_bytes <= 0) {
skip_bytes = 0;
if (_textiowrapper_decoder_setstate(self, &cookie) < 0)
goto fail;
}
/* Note our initial start point. */
cookie.start_pos += skip_bytes;
cookie.chars_to_skip = Py_SAFE_DOWNCAST(chars_to_skip, Py_ssize_t, int);
if (chars_to_skip == 0)
goto finally;
/* We should be close to the desired position. Now feed the decoder one
* byte at a time until we reach the `chars_to_skip` target.
* As we go, note the nearest "safe start point" before the current
* location (a point where the decoder has nothing buffered, so seek()
* can safely start from there and advance to this location).
*/
chars_decoded = 0;
input = PyBytes_AS_STRING(next_input);
input_end = input + PyBytes_GET_SIZE(next_input);
input += skip_bytes;
while (input < input_end) {
Py_ssize_t n;
DECODER_DECODE(input, (Py_ssize_t)1, n);
/* We got n chars for 1 byte */
chars_decoded += n;
cookie.bytes_to_feed += 1;
DECODER_GETSTATE();
if (dec_buffer_len == 0 && chars_decoded <= chars_to_skip) {
/* Decoder buffer is empty, so this is a safe start point. */
cookie.start_pos += cookie.bytes_to_feed;
chars_to_skip -= chars_decoded;
cookie.dec_flags = dec_flags;
cookie.bytes_to_feed = 0;
chars_decoded = 0;
}
if (chars_decoded >= chars_to_skip)
break;
input++;
}
if (input == input_end) {
/* We didn't get enough decoded data; signal EOF to get more. */
PyObject *decoded = _PyObject_CallMethodId(
self->decoder, &PyId_decode, "yi", "", /* final = */ 1);
if (check_decoded(decoded) < 0)
goto fail;
chars_decoded += PyUnicode_GET_LENGTH(decoded);
Py_DECREF(decoded);
cookie.need_eof = 1;
if (chars_decoded < chars_to_skip) {
PyErr_SetString(PyExc_IOError,
"can't reconstruct logical file position");
goto fail;
}
}
finally:
res = _PyObject_CallMethodId(self->decoder, &PyId_setstate, "(O)", saved_state);
Py_DECREF(saved_state);
if (res == NULL)
return NULL;
Py_DECREF(res);
/* The returned cookie corresponds to the last safe start point. */
cookie.chars_to_skip = Py_SAFE_DOWNCAST(chars_to_skip, Py_ssize_t, int);
return textiowrapper_build_cookie(&cookie);
fail:
if (saved_state) {
PyObject *type, *value, *traceback;
PyErr_Fetch(&type, &value, &traceback);
res = _PyObject_CallMethodId(self->decoder, &PyId_setstate, "(O)", saved_state);
_PyErr_ChainExceptions(type, value, traceback);
Py_DECREF(saved_state);
Py_XDECREF(res);
}
return NULL;
}
/*[clinic input]
_io.TextIOWrapper.truncate
pos: object = None
/
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_truncate_impl(textio *self, PyObject *pos)
/*[clinic end generated code: output=90ec2afb9bb7745f input=56ec8baa65aea377]*/
{
PyObject *res;
CHECK_ATTACHED(self)
res = PyObject_CallMethodObjArgs((PyObject *) self, _PyIO_str_flush, NULL);
if (res == NULL)
return NULL;
Py_DECREF(res);
return PyObject_CallMethodObjArgs(self->buffer, _PyIO_str_truncate, pos, NULL);
}
static PyObject *
textiowrapper_repr(textio *self)
{
PyObject *nameobj, *modeobj, *res, *s;
int status;
CHECK_INITIALIZED(self);
res = PyUnicode_FromString("<_io.TextIOWrapper");
if (res == NULL)
return NULL;
status = Py_ReprEnter((PyObject *)self);
if (status != 0) {
if (status > 0) {
PyErr_Format(PyExc_RuntimeError,
"reentrant call inside %s.__repr__",
Py_TYPE(self)->tp_name);
}
goto error;
}
nameobj = _PyObject_GetAttrId((PyObject *) self, &PyId_name);
if (nameobj == NULL) {
if (PyErr_ExceptionMatches(PyExc_Exception))
PyErr_Clear();
else
goto error;
}
else {
s = PyUnicode_FromFormat(" name=%R", nameobj);
Py_DECREF(nameobj);
if (s == NULL)
goto error;
PyUnicode_AppendAndDel(&res, s);
if (res == NULL)
goto error;
}
modeobj = _PyObject_GetAttrId((PyObject *) self, &PyId_mode);
if (modeobj == NULL) {
if (PyErr_ExceptionMatches(PyExc_Exception))
PyErr_Clear();
else
goto error;
}
else {
s = PyUnicode_FromFormat(" mode=%R", modeobj);
Py_DECREF(modeobj);
if (s == NULL)
goto error;
PyUnicode_AppendAndDel(&res, s);
if (res == NULL)
goto error;
}
s = PyUnicode_FromFormat("%U encoding=%R>",
res, self->encoding);
Py_DECREF(res);
if (status == 0) {
Py_ReprLeave((PyObject *)self);
}
return s;
error:
Py_XDECREF(res);
if (status == 0) {
Py_ReprLeave((PyObject *)self);
}
return NULL;
}
/* Inquiries */
/*[clinic input]
_io.TextIOWrapper.fileno
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_fileno_impl(textio *self)
/*[clinic end generated code: output=21490a4c3da13e6c input=c488ca83d0069f9b]*/
{
CHECK_ATTACHED(self);
return _PyObject_CallMethodId(self->buffer, &PyId_fileno, NULL);
}
/*[clinic input]
_io.TextIOWrapper.seekable
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_seekable_impl(textio *self)
/*[clinic end generated code: output=ab223dbbcffc0f00 input=8b005ca06e1fca13]*/
{
CHECK_ATTACHED(self);
return _PyObject_CallMethodId(self->buffer, &PyId_seekable, NULL);
}
/*[clinic input]
_io.TextIOWrapper.readable
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_readable_impl(textio *self)
/*[clinic end generated code: output=72ff7ba289a8a91b input=0704ea7e01b0d3eb]*/
{
CHECK_ATTACHED(self);
return _PyObject_CallMethodId(self->buffer, &PyId_readable, NULL);
}
/*[clinic input]
_io.TextIOWrapper.writable
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_writable_impl(textio *self)
/*[clinic end generated code: output=a728c71790d03200 input=c41740bc9d8636e8]*/
{
CHECK_ATTACHED(self);
return _PyObject_CallMethodId(self->buffer, &PyId_writable, NULL);
}
/*[clinic input]
_io.TextIOWrapper.isatty
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_isatty_impl(textio *self)
/*[clinic end generated code: output=12be1a35bace882e input=fb68d9f2c99bbfff]*/
{
CHECK_ATTACHED(self);
return _PyObject_CallMethodId(self->buffer, &PyId_isatty, NULL);
}
static PyObject *
textiowrapper_getstate(textio *self, PyObject *args)
{
PyErr_Format(PyExc_TypeError,
"cannot serialize '%s' object", Py_TYPE(self)->tp_name);
return NULL;
}
/*[clinic input]
_io.TextIOWrapper.flush
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_flush_impl(textio *self)
/*[clinic end generated code: output=59de9165f9c2e4d2 input=928c60590694ab85]*/
{
CHECK_ATTACHED(self);
CHECK_CLOSED(self);
self->telling = self->seekable;
if (_textiowrapper_writeflush(self) < 0)
return NULL;
return _PyObject_CallMethodId(self->buffer, &PyId_flush, NULL);
}
/*[clinic input]
_io.TextIOWrapper.close
[clinic start generated code]*/
static PyObject *
_io_TextIOWrapper_close_impl(textio *self)
/*[clinic end generated code: output=056ccf8b4876e4f4 input=9c2114315eae1948]*/
{
PyObject *res;
int r;
CHECK_ATTACHED(self);
res = textiowrapper_closed_get(self, NULL);
if (res == NULL)
return NULL;
r = PyObject_IsTrue(res);
Py_DECREF(res);
if (r < 0)
return NULL;
if (r > 0) {
Py_RETURN_NONE; /* stream already closed */
}
else {
PyObject *exc = NULL, *val, *tb;
if (self->finalizing) {
res = _PyObject_CallMethodId(self->buffer, &PyId__dealloc_warn, "O", self);
if (res)
Py_DECREF(res);
else
PyErr_Clear();
}
res = _PyObject_CallMethodId((PyObject *)self, &PyId_flush, NULL);
if (res == NULL)
PyErr_Fetch(&exc, &val, &tb);
else
Py_DECREF(res);
res = _PyObject_CallMethodId(self->buffer, &PyId_close, NULL);
if (exc != NULL) {
_PyErr_ChainExceptions(exc, val, tb);
Py_CLEAR(res);
}
return res;
}
}
static PyObject *
textiowrapper_iternext(textio *self)
{
PyObject *line;
CHECK_ATTACHED(self);
self->telling = 0;
if (Py_TYPE(self) == &PyTextIOWrapper_Type) {
/* Skip method call overhead for speed */
line = _textiowrapper_readline(self, -1);
}
else {
line = PyObject_CallMethodObjArgs((PyObject *)self,
_PyIO_str_readline, NULL);
if (line && !PyUnicode_Check(line)) {
PyErr_Format(PyExc_IOError,
"readline() should have returned a str object, "
"not '%.200s'", Py_TYPE(line)->tp_name);
Py_DECREF(line);
return NULL;
}
}
if (line == NULL || PyUnicode_READY(line) == -1)
return NULL;
if (PyUnicode_GET_LENGTH(line) == 0) {
/* Reached EOF or would have blocked */
Py_DECREF(line);
Py_CLEAR(self->snapshot);
self->telling = self->seekable;
return NULL;
}
return line;
}
static PyObject *
textiowrapper_name_get(textio *self, void *context)
{
CHECK_ATTACHED(self);
return _PyObject_GetAttrId(self->buffer, &PyId_name);
}
static PyObject *
textiowrapper_closed_get(textio *self, void *context)
{
CHECK_ATTACHED(self);
return PyObject_GetAttr(self->buffer, _PyIO_str_closed);
}
static PyObject *
textiowrapper_newlines_get(textio *self, void *context)
{
PyObject *res;
CHECK_ATTACHED(self);
if (self->decoder == NULL)
Py_RETURN_NONE;
res = PyObject_GetAttr(self->decoder, _PyIO_str_newlines);
if (res == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
PyErr_Clear();
Py_RETURN_NONE;
}
else {
return NULL;
}
}
return res;
}
static PyObject *
textiowrapper_errors_get(textio *self, void *context)
{
CHECK_INITIALIZED(self);
return PyUnicode_FromString(PyBytes_AS_STRING(self->errors));
}
static PyObject *
textiowrapper_chunk_size_get(textio *self, void *context)
{
CHECK_ATTACHED(self);
return PyLong_FromSsize_t(self->chunk_size);
}
static int
textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context)
{
Py_ssize_t n;
CHECK_ATTACHED_INT(self);
n = PyNumber_AsSsize_t(arg, PyExc_ValueError);
if (n == -1 && PyErr_Occurred())
return -1;
if (n <= 0) {
PyErr_SetString(PyExc_ValueError,
"a strictly positive integer is required");
return -1;
}
self->chunk_size = n;
return 0;
}
#include "third_party/python/Modules/_io/clinic/textio.inc"
static PyMethodDef incrementalnewlinedecoder_methods[] = {
_IO_INCREMENTALNEWLINEDECODER_DECODE_METHODDEF
_IO_INCREMENTALNEWLINEDECODER_GETSTATE_METHODDEF
_IO_INCREMENTALNEWLINEDECODER_SETSTATE_METHODDEF
_IO_INCREMENTALNEWLINEDECODER_RESET_METHODDEF
{NULL}
};
static PyGetSetDef incrementalnewlinedecoder_getset[] = {
{"newlines", (getter)incrementalnewlinedecoder_newlines_get, NULL, NULL},
{NULL}
};
PyTypeObject PyIncrementalNewlineDecoder_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.IncrementalNewlineDecoder", /*tp_name*/
sizeof(nldecoder_object), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)incrementalnewlinedecoder_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
_io_IncrementalNewlineDecoder___init____doc__, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /*tp_weaklistoffset*/
0, /* tp_iter */
0, /* tp_iternext */
incrementalnewlinedecoder_methods, /* tp_methods */
0, /* tp_members */
incrementalnewlinedecoder_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
_io_IncrementalNewlineDecoder___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
};
static PyMethodDef textiowrapper_methods[] = {
_IO_TEXTIOWRAPPER_DETACH_METHODDEF
_IO_TEXTIOWRAPPER_WRITE_METHODDEF
_IO_TEXTIOWRAPPER_READ_METHODDEF
_IO_TEXTIOWRAPPER_READLINE_METHODDEF
_IO_TEXTIOWRAPPER_FLUSH_METHODDEF
_IO_TEXTIOWRAPPER_CLOSE_METHODDEF
_IO_TEXTIOWRAPPER_FILENO_METHODDEF
_IO_TEXTIOWRAPPER_SEEKABLE_METHODDEF
_IO_TEXTIOWRAPPER_READABLE_METHODDEF
_IO_TEXTIOWRAPPER_WRITABLE_METHODDEF
_IO_TEXTIOWRAPPER_ISATTY_METHODDEF
{"__getstate__", (PyCFunction)textiowrapper_getstate, METH_NOARGS},
_IO_TEXTIOWRAPPER_SEEK_METHODDEF
_IO_TEXTIOWRAPPER_TELL_METHODDEF
_IO_TEXTIOWRAPPER_TRUNCATE_METHODDEF
{NULL, NULL}
};
static PyMemberDef textiowrapper_members[] = {
{"encoding", T_OBJECT, offsetof(textio, encoding), READONLY},
{"buffer", T_OBJECT, offsetof(textio, buffer), READONLY},
{"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY},
{"_finalizing", T_BOOL, offsetof(textio, finalizing), 0},
{NULL}
};
static PyGetSetDef textiowrapper_getset[] = {
{"name", (getter)textiowrapper_name_get, NULL, NULL},
{"closed", (getter)textiowrapper_closed_get, NULL, NULL},
/* {"mode", (getter)TextIOWrapper_mode_get, NULL, NULL},
*/
{"newlines", (getter)textiowrapper_newlines_get, NULL, NULL},
{"errors", (getter)textiowrapper_errors_get, NULL, NULL},
{"_CHUNK_SIZE", (getter)textiowrapper_chunk_size_get,
(setter)textiowrapper_chunk_size_set, NULL},
{NULL}
};
PyTypeObject PyTextIOWrapper_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.TextIOWrapper", /*tp_name*/
sizeof(textio), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)textiowrapper_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tps_etattr*/
0, /*tp_compare */
(reprfunc)textiowrapper_repr,/*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /*tp_flags*/
_io_TextIOWrapper___init____doc__, /* tp_doc */
(traverseproc)textiowrapper_traverse, /* tp_traverse */
(inquiry)textiowrapper_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(textio, weakreflist), /*tp_weaklistoffset*/
0, /* tp_iter */
(iternextfunc)textiowrapper_iternext, /* tp_iternext */
textiowrapper_methods, /* tp_methods */
textiowrapper_members, /* tp_members */
textiowrapper_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(textio, dict), /*tp_dictoffset*/
_io_TextIOWrapper___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
| 94,014 | 3,001 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/_iomodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/osmodule.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pystate.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/unicodeobject.h"
#include "third_party/python/Include/warnings.h"
#include "third_party/python/Include/weakrefobject.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/_io/_iomodule.h"
/* clang-format off */
PYTHON_PROVIDE("_io");
PYTHON_PROVIDE("_io.BlockingIOError");
PYTHON_PROVIDE("_io.BufferedRWPair");
PYTHON_PROVIDE("_io.BufferedRandom");
PYTHON_PROVIDE("_io.BufferedReader");
PYTHON_PROVIDE("_io.BufferedWriter");
PYTHON_PROVIDE("_io.BytesIO");
PYTHON_PROVIDE("_io.DEFAULT_BUFFER_SIZE");
PYTHON_PROVIDE("_io.FileIO");
PYTHON_PROVIDE("_io.IncrementalNewlineDecoder");
PYTHON_PROVIDE("_io.StringIO");
PYTHON_PROVIDE("_io.TextIOWrapper");
PYTHON_PROVIDE("_io.UnsupportedOperation");
PYTHON_PROVIDE("_io._BufferedIOBase");
PYTHON_PROVIDE("_io._IOBase");
PYTHON_PROVIDE("_io._RawIOBase");
PYTHON_PROVIDE("_io._TextIOBase");
PYTHON_PROVIDE("_io.open");
/*
An implementation of the new I/O lib as defined by PEP 3116 - "New I/O"
Classes defined here: UnsupportedOperation, BlockingIOError.
Functions defined here: open().
Mostly written by Amaury Forgeot d'Arc
*/
/* Various interned strings */
PyObject *_PyIO_str_close;
PyObject *_PyIO_str_closed;
PyObject *_PyIO_str_decode;
PyObject *_PyIO_str_encode;
PyObject *_PyIO_str_fileno;
PyObject *_PyIO_str_flush;
PyObject *_PyIO_str_getstate;
PyObject *_PyIO_str_isatty;
PyObject *_PyIO_str_newlines;
PyObject *_PyIO_str_nl;
PyObject *_PyIO_str_read;
PyObject *_PyIO_str_read1;
PyObject *_PyIO_str_readable;
PyObject *_PyIO_str_readall;
PyObject *_PyIO_str_readinto;
PyObject *_PyIO_str_readline;
PyObject *_PyIO_str_reset;
PyObject *_PyIO_str_seek;
PyObject *_PyIO_str_seekable;
PyObject *_PyIO_str_setstate;
PyObject *_PyIO_str_tell;
PyObject *_PyIO_str_truncate;
PyObject *_PyIO_str_writable;
PyObject *_PyIO_str_write;
PyObject *_PyIO_empty_str;
PyObject *_PyIO_empty_bytes;
PyObject *_PyIO_zero;
PyDoc_STRVAR(module_doc,
"The io module provides the Python interfaces to stream handling. The\n"
"builtin open function is defined in this module.\n"
"\n"
"At the top of the I/O hierarchy is the abstract base class IOBase. It\n"
"defines the basic interface to a stream. Note, however, that there is no\n"
"separation between reading and writing to streams; implementations are\n"
"allowed to raise an IOError if they do not support a given operation.\n"
"\n"
"Extending IOBase is RawIOBase which deals simply with the reading and\n"
"writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide\n"
"an interface to OS files.\n"
"\n"
"BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\n"
"subclasses, BufferedWriter, BufferedReader, and BufferedRWPair buffer\n"
"streams that are readable, writable, and both respectively.\n"
"BufferedRandom provides a buffered interface to random access\n"
"streams. BytesIO is a simple stream of in-memory bytes.\n"
"\n"
"Another IOBase subclass, TextIOBase, deals with the encoding and decoding\n"
"of streams into text. TextIOWrapper, which extends it, is a buffered text\n"
"interface to a buffered raw stream (`BufferedIOBase`). Finally, StringIO\n"
"is an in-memory stream for text.\n"
"\n"
"Argument names are not part of the specification, and only the arguments\n"
"of open() are intended to be used as keyword arguments.\n"
"\n"
"data:\n"
"\n"
"DEFAULT_BUFFER_SIZE\n"
"\n"
" An int containing the default buffer size used by the module's buffered\n"
" I/O classes. open() uses the file's blksize (as obtained by os.stat) if\n"
" possible.\n"
);
/*
* The main open() function
*/
/*[clinic input]
module _io
_io.open
file: object
mode: str = "r"
buffering: int = -1
encoding: str(accept={str, NoneType}) = NULL
errors: str(accept={str, NoneType}) = NULL
newline: str(accept={str, NoneType}) = NULL
closefd: int(c_default="1") = True
opener: object = None
Open file and return a stream. Raise IOError upon failure.
file is either a text or byte string giving the name (and the path
if the file isn't in the current working directory) of the file to
be opened or an integer file descriptor of the file to be
wrapped. (If a file descriptor is given, it is closed when the
returned I/O object is closed, unless closefd is set to False.)
mode is an optional string that specifies the mode in which the file
is opened. It defaults to 'r' which means open for reading in text
mode. Other common values are 'w' for writing (truncating the file if
it already exists), 'x' for creating and writing to a new file, and
'a' for appending (which on some Unix systems, means that all writes
append to the end of the file regardless of the current seek position).
In text mode, if encoding is not specified the encoding used is platform
dependent: locale.getpreferredencoding(False) is called to get the
current locale encoding. (For reading and writing raw bytes use binary
mode and leave encoding unspecified.) The available modes are:
========= ===============================================================
Character Meaning
--------- ---------------------------------------------------------------
'r' open for reading (default)
'w' open for writing, truncating the file first
'x' create a new file and open it for writing
'a' open for writing, appending to the end of the file if it exists
'b' binary mode
't' text mode (default)
'+' open a disk file for updating (reading and writing)
'U' universal newline mode (deprecated)
========= ===============================================================
The default mode is 'rt' (open for reading text). For binary random
access, the mode 'w+b' opens and truncates the file to 0 bytes, while
'r+b' opens the file without truncation. The 'x' mode implies 'w' and
raises an `FileExistsError` if the file already exists.
Python distinguishes between files opened in binary and text modes,
even when the underlying operating system doesn't. Files opened in
binary mode (appending 'b' to the mode argument) return contents as
bytes objects without any decoding. In text mode (the default, or when
't' is appended to the mode argument), the contents of the file are
returned as strings, the bytes having been first decoded using a
platform-dependent encoding or using the specified encoding if given.
'U' mode is deprecated and will raise an exception in future versions
of Python. It has no effect in Python 3. Use newline to control
universal newlines mode.
buffering is an optional integer used to set the buffering policy.
Pass 0 to switch buffering off (only allowed in binary mode), 1 to select
line buffering (only usable in text mode), and an integer > 1 to indicate
the size of a fixed-size chunk buffer. When no buffering argument is
given, the default buffering policy works as follows:
* Binary files are buffered in fixed-size chunks; the size of the buffer
is chosen using a heuristic trying to determine the underlying device's
"block size" and falling back on `io.DEFAULT_BUFFER_SIZE`.
On many systems, the buffer will typically be 4096 or 8192 bytes long.
* "Interactive" text files (files for which isatty() returns True)
use line buffering. Other text files use the policy described above
for binary files.
encoding is the name of the encoding used to decode or encode the
file. This should only be used in text mode. The default encoding is
platform dependent, but any encoding supported by Python can be
passed. See the codecs module for the list of supported encodings.
errors is an optional string that specifies how encoding errors are to
be handled---this argument should not be used in binary mode. Pass
'strict' to raise a ValueError exception if there is an encoding error
(the default of None has the same effect), or pass 'ignore' to ignore
errors. (Note that ignoring encoding errors can lead to data loss.)
See the documentation for codecs.register or run 'help(codecs.Codec)'
for a list of the permitted encoding error strings.
newline controls how universal newlines works (it only applies to text
mode). It can be None, '', '\n', '\r', and '\r\n'. It works as
follows:
* On input, if newline is None, universal newlines mode is
enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
these are translated into '\n' before being returned to the
caller. If it is '', universal newline mode is enabled, but line
endings are returned to the caller untranslated. If it has any of
the other legal values, input lines are only terminated by the given
string, and the line ending is returned to the caller untranslated.
* On output, if newline is None, any '\n' characters written are
translated to the system default line separator, os.linesep. If
newline is '' or '\n', no translation takes place. If newline is any
of the other legal values, any '\n' characters written are translated
to the given string.
If closefd is False, the underlying file descriptor will be kept open
when the file is closed. This does not work when a file name is given
and must be True in that case.
A custom opener can be used by passing a callable as *opener*. The
underlying file descriptor for the file object is then obtained by
calling *opener* with (*file*, *flags*). *opener* must return an open
file descriptor (passing os.open as *opener* results in functionality
similar to passing None).
open() returns a file object whose type depends on the mode, and
through which the standard file operations such as reading and writing
are performed. When open() is used to open a file in a text mode ('w',
'r', 'wt', 'rt', etc.), it returns a TextIOWrapper. When used to open
a file in a binary mode, the returned class varies: in read binary
mode, it returns a BufferedReader; in write binary and append binary
modes, it returns a BufferedWriter, and in read/write mode, it returns
a BufferedRandom.
It is also possible to use a string or bytearray as a file for both
reading and writing. For strings StringIO can be used like a file
opened in a text mode, and for bytes a BytesIO can be used like a file
opened in a binary mode.
[clinic start generated code]*/
static PyObject *
_io_open_impl(PyObject *module, PyObject *file, const char *mode,
int buffering, const char *encoding, const char *errors,
const char *newline, int closefd, PyObject *opener)
/*[clinic end generated code: output=aefafc4ce2b46dc0 input=f4e1ca75223987bc]*/
{
unsigned i;
int creating = 0, reading = 0, writing = 0, appending = 0, updating = 0;
int text = 0, binary = 0, universal = 0;
char rawmode[6], *m;
int line_buffering, is_number;
long isatty;
PyObject *raw, *modeobj = NULL, *buffer, *wrapper, *result = NULL, *path_or_fd = NULL;
_Py_IDENTIFIER(_blksize);
_Py_IDENTIFIER(isatty);
_Py_IDENTIFIER(mode);
_Py_IDENTIFIER(close);
is_number = PyNumber_Check(file);
if (is_number) {
path_or_fd = file;
Py_INCREF(path_or_fd);
} else {
path_or_fd = PyOS_FSPath(file);
if (path_or_fd == NULL) {
return NULL;
}
}
if (!is_number &&
!PyUnicode_Check(path_or_fd) &&
!PyBytes_Check(path_or_fd)) {
PyErr_Format(PyExc_TypeError, "invalid file: %R", file);
goto error;
}
/* Decode mode */
for (i = 0; i < strlen(mode); i++) {
char c = mode[i];
switch (c) {
case 'x':
creating = 1;
break;
case 'r':
reading = 1;
break;
case 'w':
writing = 1;
break;
case 'a':
appending = 1;
break;
case '+':
updating = 1;
break;
case 't':
text = 1;
break;
case 'b':
binary = 1;
break;
case 'U':
universal = 1;
reading = 1;
break;
default:
goto invalid_mode;
}
/* c must not be duplicated */
if (strchr(mode+i+1, c)) {
invalid_mode:
PyErr_Format(PyExc_ValueError, "invalid mode: '%s'", mode);
goto error;
}
}
m = rawmode;
if (creating) *(m++) = 'x';
if (reading) *(m++) = 'r';
if (writing) *(m++) = 'w';
if (appending) *(m++) = 'a';
if (updating) *(m++) = '+';
*m = '\0';
/* Parameters validation */
if (universal) {
if (creating || writing || appending || updating) {
PyErr_SetString(PyExc_ValueError,
"mode U cannot be combined with x', 'w', 'a', or '+'");
goto error;
}
if (PyErr_WarnEx(PyExc_DeprecationWarning,
"'U' mode is deprecated", 1) < 0)
goto error;
reading = 1;
}
if (text && binary) {
PyErr_SetString(PyExc_ValueError,
"can't have text and binary mode at once");
goto error;
}
if (creating + reading + writing + appending > 1) {
PyErr_SetString(PyExc_ValueError,
"must have exactly one of create/read/write/append mode");
goto error;
}
if (binary && encoding != NULL) {
PyErr_SetString(PyExc_ValueError,
"binary mode doesn't take an encoding argument");
goto error;
}
if (binary && errors != NULL) {
PyErr_SetString(PyExc_ValueError,
"binary mode doesn't take an errors argument");
goto error;
}
if (binary && newline != NULL) {
PyErr_SetString(PyExc_ValueError,
"binary mode doesn't take a newline argument");
goto error;
}
/* Create the Raw file stream */
{
PyObject *RawIO_class = (PyObject *)&PyFileIO_Type;
#ifdef MS_WINDOWS
if (!Py_LegacyWindowsStdioFlag && _PyIO_get_console_type(path_or_fd) != '\0') {
RawIO_class = (PyObject *)&PyWindowsConsoleIO_Type;
encoding = "utf-8";
}
#endif
raw = PyObject_CallFunction(RawIO_class,
"OsiO", path_or_fd, rawmode, closefd, opener);
}
if (raw == NULL)
goto error;
result = raw;
Py_DECREF(path_or_fd);
path_or_fd = NULL;
modeobj = PyUnicode_FromString(mode);
if (modeobj == NULL)
goto error;
/* buffering */
{
PyObject *res = _PyObject_CallMethodId(raw, &PyId_isatty, NULL);
if (res == NULL)
goto error;
isatty = PyLong_AsLong(res);
Py_DECREF(res);
if (isatty == -1 && PyErr_Occurred())
goto error;
}
if (buffering == 1 || (buffering < 0 && isatty)) {
buffering = -1;
line_buffering = 1;
}
else
line_buffering = 0;
if (buffering < 0) {
PyObject *blksize_obj;
blksize_obj = _PyObject_GetAttrId(raw, &PyId__blksize);
if (blksize_obj == NULL)
goto error;
buffering = PyLong_AsLong(blksize_obj);
Py_DECREF(blksize_obj);
if (buffering == -1 && PyErr_Occurred())
goto error;
}
if (buffering < 0) {
PyErr_SetString(PyExc_ValueError,
"invalid buffering size");
goto error;
}
/* if not buffering, returns the raw file object */
if (buffering == 0) {
if (!binary) {
PyErr_SetString(PyExc_ValueError,
"can't have unbuffered text I/O");
goto error;
}
Py_DECREF(modeobj);
return result;
}
/* wraps into a buffered file */
{
PyObject *Buffered_class;
if (updating)
Buffered_class = (PyObject *)&PyBufferedRandom_Type;
else if (creating || writing || appending)
Buffered_class = (PyObject *)&PyBufferedWriter_Type;
else if (reading)
Buffered_class = (PyObject *)&PyBufferedReader_Type;
else {
PyErr_Format(PyExc_ValueError,
"unknown mode: '%s'", mode);
goto error;
}
buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);
}
if (buffer == NULL)
goto error;
result = buffer;
Py_DECREF(raw);
/* if binary, returns the buffered file */
if (binary) {
Py_DECREF(modeobj);
return result;
}
/* wraps into a TextIOWrapper */
wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type,
"Osssi",
buffer,
encoding, errors, newline,
line_buffering);
if (wrapper == NULL)
goto error;
result = wrapper;
Py_DECREF(buffer);
if (_PyObject_SetAttrId(wrapper, &PyId_mode, modeobj) < 0)
goto error;
Py_DECREF(modeobj);
return result;
error:
if (result != NULL) {
PyObject *exc, *val, *tb, *close_result;
PyErr_Fetch(&exc, &val, &tb);
close_result = _PyObject_CallMethodId(result, &PyId_close, NULL);
_PyErr_ChainExceptions(exc, val, tb);
Py_XDECREF(close_result);
Py_DECREF(result);
}
Py_XDECREF(path_or_fd);
Py_XDECREF(modeobj);
return NULL;
}
/*
* Private helpers for the io module.
*/
Py_off_t
PyNumber_AsOff_t(PyObject *item, PyObject *err)
{
Py_off_t result;
PyObject *runerr;
PyObject *value = PyNumber_Index(item);
if (value == NULL)
return -1;
/* We're done if PyLong_AsSsize_t() returns without error. */
result = PyLong_AsOff_t(value);
if (result != -1 || !(runerr = PyErr_Occurred()))
goto finish;
/* Error handling code -- only manage OverflowError differently */
if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError))
goto finish;
PyErr_Clear();
/* If no error-handling desired then the default clipping
is sufficient.
*/
if (!err) {
assert(PyLong_Check(value));
/* Whether or not it is less than or equal to
zero is determined by the sign of ob_size
*/
if (_PyLong_Sign(value) < 0)
result = PY_OFF_T_MIN;
else
result = PY_OFF_T_MAX;
}
else {
/* Otherwise replace the error with caller's error object. */
PyErr_Format(err,
"cannot fit '%.200s' into an offset-sized integer",
item->ob_type->tp_name);
}
finish:
Py_DECREF(value);
return result;
}
/* Basically the "n" format code with the ability to turn None into -1. */
int
_PyIO_ConvertSsize_t(PyObject *obj, void *result) {
Py_ssize_t limit;
if (obj == Py_None) {
limit = -1;
}
else if (PyNumber_Check(obj)) {
limit = PyNumber_AsSsize_t(obj, PyExc_OverflowError);
if (limit == -1 && PyErr_Occurred())
return 0;
}
else {
PyErr_Format(PyExc_TypeError,
"integer argument expected, got '%.200s'",
Py_TYPE(obj)->tp_name);
return 0;
}
*((Py_ssize_t *)result) = limit;
return 1;
}
_PyIO_State *
_PyIO_get_module_state(void)
{
PyObject *mod = PyState_FindModule(&_PyIO_Module);
_PyIO_State *state;
if (mod == NULL || (state = IO_MOD_STATE(mod)) == NULL) {
PyErr_SetString(PyExc_RuntimeError,
"could not find io module state "
"(interpreter shutdown?)");
return NULL;
}
return state;
}
PyObject *
_PyIO_get_locale_module(_PyIO_State *state)
{
PyObject *mod;
if (state->locale_module != NULL) {
assert(PyWeakref_CheckRef(state->locale_module));
mod = PyWeakref_GET_OBJECT(state->locale_module);
if (mod != Py_None) {
Py_INCREF(mod);
return mod;
}
Py_CLEAR(state->locale_module);
}
mod = PyImport_ImportModule("_bootlocale");
if (mod == NULL)
return NULL;
state->locale_module = PyWeakref_NewRef(mod, NULL);
if (state->locale_module == NULL) {
Py_DECREF(mod);
return NULL;
}
return mod;
}
static int
iomodule_traverse(PyObject *mod, visitproc visit, void *arg) {
_PyIO_State *state = IO_MOD_STATE(mod);
if (!state->initialized)
return 0;
if (state->locale_module != NULL) {
Py_VISIT(state->locale_module);
}
Py_VISIT(state->unsupported_operation);
return 0;
}
static int
iomodule_clear(PyObject *mod) {
_PyIO_State *state = IO_MOD_STATE(mod);
if (!state->initialized)
return 0;
if (state->locale_module != NULL)
Py_CLEAR(state->locale_module);
Py_CLEAR(state->unsupported_operation);
return 0;
}
static void
iomodule_free(PyObject *mod) {
iomodule_clear(mod);
}
/*
* Module definition
*/
#include "third_party/python/Modules/_io/clinic/_iomodule.inc"
static PyMethodDef module_methods[] = {
_IO_OPEN_METHODDEF
{NULL, NULL}
};
struct PyModuleDef _PyIO_Module = {
PyModuleDef_HEAD_INIT,
"io",
module_doc,
sizeof(_PyIO_State),
module_methods,
NULL,
iomodule_traverse,
iomodule_clear,
(freefunc)iomodule_free,
};
PyMODINIT_FUNC
PyInit__io(void)
{
PyObject *m = PyModule_Create(&_PyIO_Module);
_PyIO_State *state = NULL;
if (m == NULL)
return NULL;
state = IO_MOD_STATE(m);
state->initialized = 0;
#define ADD_TYPE(type, name) \
if (PyType_Ready(type) < 0) \
goto fail; \
Py_INCREF(type); \
if (PyModule_AddObject(m, name, (PyObject *)type) < 0) { \
Py_DECREF(type); \
goto fail; \
}
/* DEFAULT_BUFFER_SIZE */
if (PyModule_AddIntMacro(m, DEFAULT_BUFFER_SIZE) < 0)
goto fail;
/* UnsupportedOperation inherits from ValueError and IOError */
state->unsupported_operation = PyObject_CallFunction(
(PyObject *)&PyType_Type, "s(OO){}",
"UnsupportedOperation", PyExc_OSError, PyExc_ValueError);
if (state->unsupported_operation == NULL)
goto fail;
Py_INCREF(state->unsupported_operation);
if (PyModule_AddObject(m, "UnsupportedOperation",
state->unsupported_operation) < 0)
goto fail;
/* BlockingIOError, for compatibility */
Py_INCREF(PyExc_BlockingIOError);
if (PyModule_AddObject(m, "BlockingIOError",
(PyObject *) PyExc_BlockingIOError) < 0)
goto fail;
/* Concrete base types of the IO ABCs.
(the ABCs themselves are declared through inheritance in io.py)
*/
ADD_TYPE(&PyIOBase_Type, "_IOBase");
ADD_TYPE(&PyRawIOBase_Type, "_RawIOBase");
ADD_TYPE(&PyBufferedIOBase_Type, "_BufferedIOBase");
ADD_TYPE(&PyTextIOBase_Type, "_TextIOBase");
/* Implementation of concrete IO objects. */
/* FileIO */
PyFileIO_Type.tp_base = &PyRawIOBase_Type;
ADD_TYPE(&PyFileIO_Type, "FileIO");
/* BytesIO */
PyBytesIO_Type.tp_base = &PyBufferedIOBase_Type;
ADD_TYPE(&PyBytesIO_Type, "BytesIO");
if (PyType_Ready(&_PyBytesIOBuffer_Type) < 0)
goto fail;
/* StringIO */
PyStringIO_Type.tp_base = &PyTextIOBase_Type;
ADD_TYPE(&PyStringIO_Type, "StringIO");
#ifdef MS_WINDOWS
/* WindowsConsoleIO */
PyWindowsConsoleIO_Type.tp_base = &PyRawIOBase_Type;
ADD_TYPE(&PyWindowsConsoleIO_Type, "_WindowsConsoleIO");
#endif
/* BufferedReader */
PyBufferedReader_Type.tp_base = &PyBufferedIOBase_Type;
ADD_TYPE(&PyBufferedReader_Type, "BufferedReader");
/* BufferedWriter */
PyBufferedWriter_Type.tp_base = &PyBufferedIOBase_Type;
ADD_TYPE(&PyBufferedWriter_Type, "BufferedWriter");
/* BufferedRWPair */
PyBufferedRWPair_Type.tp_base = &PyBufferedIOBase_Type;
ADD_TYPE(&PyBufferedRWPair_Type, "BufferedRWPair");
/* BufferedRandom */
PyBufferedRandom_Type.tp_base = &PyBufferedIOBase_Type;
ADD_TYPE(&PyBufferedRandom_Type, "BufferedRandom");
/* TextIOWrapper */
PyTextIOWrapper_Type.tp_base = &PyTextIOBase_Type;
ADD_TYPE(&PyTextIOWrapper_Type, "TextIOWrapper");
/* IncrementalNewlineDecoder */
ADD_TYPE(&PyIncrementalNewlineDecoder_Type, "IncrementalNewlineDecoder");
/* Interned strings */
#define ADD_INTERNED(name) \
if (!_PyIO_str_ ## name && \
!(_PyIO_str_ ## name = PyUnicode_InternFromString(# name))) \
goto fail;
ADD_INTERNED(close)
ADD_INTERNED(closed)
ADD_INTERNED(decode)
ADD_INTERNED(encode)
ADD_INTERNED(fileno)
ADD_INTERNED(flush)
ADD_INTERNED(getstate)
ADD_INTERNED(isatty)
ADD_INTERNED(newlines)
ADD_INTERNED(read)
ADD_INTERNED(read1)
ADD_INTERNED(readable)
ADD_INTERNED(readall)
ADD_INTERNED(readinto)
ADD_INTERNED(readline)
ADD_INTERNED(reset)
ADD_INTERNED(seek)
ADD_INTERNED(seekable)
ADD_INTERNED(setstate)
ADD_INTERNED(tell)
ADD_INTERNED(truncate)
ADD_INTERNED(write)
ADD_INTERNED(writable)
if (!_PyIO_str_nl &&
!(_PyIO_str_nl = PyUnicode_InternFromString("\n")))
goto fail;
if (!_PyIO_empty_str &&
!(_PyIO_empty_str = PyUnicode_FromStringAndSize(NULL, 0)))
goto fail;
if (!_PyIO_empty_bytes &&
!(_PyIO_empty_bytes = PyBytes_FromStringAndSize(NULL, 0)))
goto fail;
if (!_PyIO_zero &&
!(_PyIO_zero = PyLong_FromLong(0L)))
goto fail;
state->initialized = 1;
return m;
fail:
Py_XDECREF(state->unsupported_operation);
Py_DECREF(m);
return NULL;
}
| 27,082 | 832 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/stringio.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/accu.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/unicodeobject.h"
#include "third_party/python/Modules/_io/_iomodule.h"
/* clang-format off */
/* Implementation note: the buffer is always at least one character longer
than the enclosed string, for proper functioning of _PyIO_find_line_ending.
*/
#define STATE_REALIZED 1
#define STATE_ACCUMULATING 2
/*[clinic input]
module _io
class _io.StringIO "stringio *" "&PyStringIO_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=c17bc0f42165cd7d]*/
typedef struct {
PyObject_HEAD
Py_UCS4 *buf;
Py_ssize_t pos;
Py_ssize_t string_size;
size_t buf_size;
/* The stringio object can be in two states: accumulating or realized.
In accumulating state, the internal buffer contains nothing and
the contents are given by the embedded _PyAccu structure.
In realized state, the internal buffer is meaningful and the
_PyAccu is destroyed.
*/
int state;
_PyAccu accu;
char ok; /* initialized? */
char closed;
char readuniversal;
char readtranslate;
PyObject *decoder;
PyObject *readnl;
PyObject *writenl;
PyObject *dict;
PyObject *weakreflist;
} stringio;
static int _io_StringIO___init__(PyObject *self, PyObject *args, PyObject *kwargs);
#define CHECK_INITIALIZED(self) \
if (self->ok <= 0) { \
PyErr_SetString(PyExc_ValueError, \
"I/O operation on uninitialized object"); \
return NULL; \
}
#define CHECK_CLOSED(self) \
if (self->closed) { \
PyErr_SetString(PyExc_ValueError, \
"I/O operation on closed file"); \
return NULL; \
}
#define ENSURE_REALIZED(self) \
if (realize(self) < 0) { \
return NULL; \
}
/* Internal routine for changing the size, in terms of characters, of the
buffer of StringIO objects. The caller should ensure that the 'size'
argument is non-negative. Returns 0 on success, -1 otherwise. */
static int
resize_buffer(stringio *self, size_t size)
{
/* Here, unsigned types are used to avoid dealing with signed integer
overflow, which is undefined in C. */
size_t alloc = self->buf_size;
Py_UCS4 *new_buf = NULL;
assert(self->buf != NULL);
/* Reserve one more char for line ending detection. */
size = size + 1;
/* For simplicity, stay in the range of the signed type. Anyway, Python
doesn't allow strings to be longer than this. */
if (size > PY_SSIZE_T_MAX)
goto overflow;
if (size < alloc / 2) {
/* Major downsize; resize down to exact size. */
alloc = size + 1;
}
else if (size < alloc) {
/* Within allocated size; quick exit */
return 0;
}
else if (size <= alloc * 1.125) {
/* Moderate upsize; overallocate similar to list_resize() */
alloc = size + (size >> 3) + (size < 9 ? 3 : 6);
}
else {
/* Major upsize; resize up to exact size */
alloc = size + 1;
}
if (alloc > PY_SIZE_MAX / sizeof(Py_UCS4))
goto overflow;
new_buf = (Py_UCS4 *)PyMem_Realloc(self->buf, alloc * sizeof(Py_UCS4));
if (new_buf == NULL) {
PyErr_NoMemory();
return -1;
}
self->buf_size = alloc;
self->buf = new_buf;
return 0;
overflow:
PyErr_SetString(PyExc_OverflowError,
"new buffer size too large");
return -1;
}
static PyObject *
make_intermediate(stringio *self)
{
PyObject *intermediate = _PyAccu_Finish(&self->accu);
self->state = STATE_REALIZED;
if (intermediate == NULL)
return NULL;
if (_PyAccu_Init(&self->accu) ||
_PyAccu_Accumulate(&self->accu, intermediate)) {
Py_DECREF(intermediate);
return NULL;
}
self->state = STATE_ACCUMULATING;
return intermediate;
}
static int
realize(stringio *self)
{
Py_ssize_t len;
PyObject *intermediate;
if (self->state == STATE_REALIZED)
return 0;
assert(self->state == STATE_ACCUMULATING);
self->state = STATE_REALIZED;
intermediate = _PyAccu_Finish(&self->accu);
if (intermediate == NULL)
return -1;
/* Append the intermediate string to the internal buffer.
The length should be equal to the current cursor position.
*/
len = PyUnicode_GET_LENGTH(intermediate);
if (resize_buffer(self, len) < 0) {
Py_DECREF(intermediate);
return -1;
}
if (!PyUnicode_AsUCS4(intermediate, self->buf, len, 0)) {
Py_DECREF(intermediate);
return -1;
}
Py_DECREF(intermediate);
return 0;
}
/* Internal routine for writing a whole PyUnicode object to the buffer of a
StringIO object. Returns 0 on success, or -1 on error. */
static Py_ssize_t
write_str(stringio *self, PyObject *obj)
{
Py_ssize_t len;
PyObject *decoded = NULL;
assert(self->buf != NULL);
assert(self->pos >= 0);
if (self->decoder != NULL) {
decoded = _PyIncrementalNewlineDecoder_decode(
self->decoder, obj, 1 /* always final */);
}
else {
decoded = obj;
Py_INCREF(decoded);
}
if (self->writenl) {
PyObject *translated = PyUnicode_Replace(
decoded, _PyIO_str_nl, self->writenl, -1);
Py_DECREF(decoded);
decoded = translated;
}
if (decoded == NULL)
return -1;
assert(PyUnicode_Check(decoded));
if (PyUnicode_READY(decoded)) {
Py_DECREF(decoded);
return -1;
}
len = PyUnicode_GET_LENGTH(decoded);
assert(len >= 0);
/* This overflow check is not strictly necessary. However, it avoids us to
deal with funky things like comparing an unsigned and a signed
integer. */
if (self->pos > PY_SSIZE_T_MAX - len) {
PyErr_SetString(PyExc_OverflowError,
"new position too large");
goto fail;
}
if (self->state == STATE_ACCUMULATING) {
if (self->string_size == self->pos) {
if (_PyAccu_Accumulate(&self->accu, decoded))
goto fail;
goto success;
}
if (realize(self))
goto fail;
}
if (self->pos + len > self->string_size) {
if (resize_buffer(self, self->pos + len) < 0)
goto fail;
}
if (self->pos > self->string_size) {
/* In case of overseek, pad with null bytes the buffer region between
the end of stream and the current position.
0 lo string_size hi
| |<---used--->|<----------available----------->|
| | <--to pad-->|<---to write---> |
0 buf position
*/
bzero(self->buf + self->string_size,
(self->pos - self->string_size) * sizeof(Py_UCS4));
}
/* Copy the data to the internal buffer, overwriting some of the
existing data if self->pos < self->string_size. */
if (!PyUnicode_AsUCS4(decoded,
self->buf + self->pos,
self->buf_size - self->pos,
0))
goto fail;
success:
/* Set the new length of the internal string if it has changed. */
self->pos += len;
if (self->string_size < self->pos)
self->string_size = self->pos;
Py_DECREF(decoded);
return 0;
fail:
Py_XDECREF(decoded);
return -1;
}
/*[clinic input]
_io.StringIO.getvalue
Retrieve the entire contents of the object.
[clinic start generated code]*/
static PyObject *
_io_StringIO_getvalue_impl(stringio *self)
/*[clinic end generated code: output=27b6a7bfeaebce01 input=d23cb81d6791cf88]*/
{
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
if (self->state == STATE_ACCUMULATING)
return make_intermediate(self);
return PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, self->buf,
self->string_size);
}
/*[clinic input]
_io.StringIO.tell
Tell the current file position.
[clinic start generated code]*/
static PyObject *
_io_StringIO_tell_impl(stringio *self)
/*[clinic end generated code: output=2e87ac67b116c77b input=ec866ebaff02f405]*/
{
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
return PyLong_FromSsize_t(self->pos);
}
/*[clinic input]
_io.StringIO.read
size as arg: object = None
/
Read at most size characters, returned as a string.
If the argument is negative or omitted, read until EOF
is reached. Return an empty string at EOF.
[clinic start generated code]*/
static PyObject *
_io_StringIO_read_impl(stringio *self, PyObject *arg)
/*[clinic end generated code: output=3676864773746f68 input=9a319015f6f3965c]*/
{
Py_ssize_t size, n;
Py_UCS4 *output;
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
if (PyNumber_Check(arg)) {
size = PyNumber_AsSsize_t(arg, PyExc_OverflowError);
if (size == -1 && PyErr_Occurred())
return NULL;
}
else if (arg == Py_None) {
/* Read until EOF is reached, by default. */
size = -1;
}
else {
PyErr_Format(PyExc_TypeError, "integer argument expected, got '%s'",
Py_TYPE(arg)->tp_name);
return NULL;
}
/* adjust invalid sizes */
n = self->string_size - self->pos;
if (size < 0 || size > n) {
size = n;
if (size < 0)
size = 0;
}
/* Optimization for seek(0); read() */
if (self->state == STATE_ACCUMULATING && self->pos == 0 && size == n) {
PyObject *result = make_intermediate(self);
self->pos = self->string_size;
return result;
}
ENSURE_REALIZED(self);
output = self->buf + self->pos;
self->pos += size;
return PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, output, size);
}
/* Internal helper, used by stringio_readline and stringio_iternext */
static PyObject *
_stringio_readline(stringio *self, Py_ssize_t limit)
{
Py_UCS4 *start, *end, old_char;
Py_ssize_t len, consumed;
/* In case of overseek, return the empty string */
if (self->pos >= self->string_size)
return PyUnicode_New(0, 0);
start = self->buf + self->pos;
if (limit < 0 || limit > self->string_size - self->pos)
limit = self->string_size - self->pos;
end = start + limit;
old_char = *end;
*end = '\0';
len = _PyIO_find_line_ending(
self->readtranslate, self->readuniversal, self->readnl,
PyUnicode_4BYTE_KIND, (char*)start, (char*)end, &consumed);
*end = old_char;
/* If we haven't found any line ending, we just return everything
(`consumed` is ignored). */
if (len < 0)
len = limit;
self->pos += len;
return PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, start, len);
}
/*[clinic input]
_io.StringIO.readline
size as arg: object = None
/
Read until newline or EOF.
Returns an empty string if EOF is hit immediately.
[clinic start generated code]*/
static PyObject *
_io_StringIO_readline_impl(stringio *self, PyObject *arg)
/*[clinic end generated code: output=99fdcac03a3dee81 input=e0e0ed4042040176]*/
{
Py_ssize_t limit = -1;
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
ENSURE_REALIZED(self);
if (PyNumber_Check(arg)) {
limit = PyNumber_AsSsize_t(arg, PyExc_OverflowError);
if (limit == -1 && PyErr_Occurred())
return NULL;
}
else if (arg != Py_None) {
PyErr_Format(PyExc_TypeError, "integer argument expected, got '%s'",
Py_TYPE(arg)->tp_name);
return NULL;
}
return _stringio_readline(self, limit);
}
static PyObject *
stringio_iternext(stringio *self)
{
PyObject *line;
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
ENSURE_REALIZED(self);
if (Py_TYPE(self) == &PyStringIO_Type) {
/* Skip method call overhead for speed */
line = _stringio_readline(self, -1);
}
else {
/* XXX is subclassing StringIO really supported? */
line = PyObject_CallMethodObjArgs((PyObject *)self,
_PyIO_str_readline, NULL);
if (line && !PyUnicode_Check(line)) {
PyErr_Format(PyExc_IOError,
"readline() should have returned a str object, "
"not '%.200s'", Py_TYPE(line)->tp_name);
Py_DECREF(line);
return NULL;
}
}
if (line == NULL)
return NULL;
if (PyUnicode_GET_LENGTH(line) == 0) {
/* Reached EOF */
Py_DECREF(line);
return NULL;
}
return line;
}
/*[clinic input]
_io.StringIO.truncate
pos as arg: object = None
/
Truncate size to pos.
The pos argument defaults to the current file position, as
returned by tell(). The current file position is unchanged.
Returns the new absolute position.
[clinic start generated code]*/
static PyObject *
_io_StringIO_truncate_impl(stringio *self, PyObject *arg)
/*[clinic end generated code: output=6072439c2b01d306 input=748619a494ba53ad]*/
{
Py_ssize_t size;
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
if (PyNumber_Check(arg)) {
size = PyNumber_AsSsize_t(arg, PyExc_OverflowError);
if (size == -1 && PyErr_Occurred())
return NULL;
}
else if (arg == Py_None) {
/* Truncate to current position if no argument is passed. */
size = self->pos;
}
else {
PyErr_Format(PyExc_TypeError, "integer argument expected, got '%s'",
Py_TYPE(arg)->tp_name);
return NULL;
}
if (size < 0) {
PyErr_Format(PyExc_ValueError,
"Negative size value %zd", size);
return NULL;
}
if (size < self->string_size) {
ENSURE_REALIZED(self);
if (resize_buffer(self, size) < 0)
return NULL;
self->string_size = size;
}
return PyLong_FromSsize_t(size);
}
/*[clinic input]
_io.StringIO.seek
pos: Py_ssize_t
whence: int = 0
/
Change stream position.
Seek to character offset pos relative to position indicated by whence:
0 Start of stream (the default). pos should be >= 0;
1 Current position - pos must be 0;
2 End of stream - pos must be 0.
Returns the new absolute position.
[clinic start generated code]*/
static PyObject *
_io_StringIO_seek_impl(stringio *self, Py_ssize_t pos, int whence)
/*[clinic end generated code: output=e9e0ac9a8ae71c25 input=e3855b24e7cae06a]*/
{
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
if (whence != 0 && whence != 1 && whence != 2) {
PyErr_Format(PyExc_ValueError,
"Invalid whence (%i, should be 0, 1 or 2)", whence);
return NULL;
}
else if (pos < 0 && whence == 0) {
PyErr_Format(PyExc_ValueError,
"Negative seek position %zd", pos);
return NULL;
}
else if (whence != 0 && pos != 0) {
PyErr_SetString(PyExc_IOError,
"Can't do nonzero cur-relative seeks");
return NULL;
}
/* whence = 0: offset relative to beginning of the string.
whence = 1: no change to current position.
whence = 2: change position to end of file. */
if (whence == 1) {
pos = self->pos;
}
else if (whence == 2) {
pos = self->string_size;
}
self->pos = pos;
return PyLong_FromSsize_t(self->pos);
}
/*[clinic input]
_io.StringIO.write
s as obj: object
/
Write string to file.
Returns the number of characters written, which is always equal to
the length of the string.
[clinic start generated code]*/
static PyObject *
_io_StringIO_write(stringio *self, PyObject *obj)
/*[clinic end generated code: output=0deaba91a15b94da input=cf96f3b16586e669]*/
{
Py_ssize_t size;
CHECK_INITIALIZED(self);
if (!PyUnicode_Check(obj)) {
PyErr_Format(PyExc_TypeError, "string argument expected, got '%s'",
Py_TYPE(obj)->tp_name);
return NULL;
}
if (PyUnicode_READY(obj))
return NULL;
CHECK_CLOSED(self);
size = PyUnicode_GET_LENGTH(obj);
if (size > 0 && write_str(self, obj) < 0)
return NULL;
return PyLong_FromSsize_t(size);
}
/*[clinic input]
_io.StringIO.close
Close the IO object.
Attempting any further operation after the object is closed
will raise a ValueError.
This method has no effect if the file is already closed.
[clinic start generated code]*/
static PyObject *
_io_StringIO_close_impl(stringio *self)
/*[clinic end generated code: output=04399355cbe518f1 input=cbc10b45f35d6d46]*/
{
self->closed = 1;
/* Free up some memory */
if (resize_buffer(self, 0) < 0)
return NULL;
_PyAccu_Destroy(&self->accu);
Py_CLEAR(self->readnl);
Py_CLEAR(self->writenl);
Py_CLEAR(self->decoder);
Py_RETURN_NONE;
}
static int
stringio_traverse(stringio *self, visitproc visit, void *arg)
{
Py_VISIT(self->dict);
return 0;
}
static int
stringio_clear(stringio *self)
{
Py_CLEAR(self->dict);
return 0;
}
static void
stringio_dealloc(stringio *self)
{
_PyObject_GC_UNTRACK(self);
self->ok = 0;
if (self->buf) {
PyMem_Free(self->buf);
self->buf = NULL;
}
_PyAccu_Destroy(&self->accu);
Py_CLEAR(self->readnl);
Py_CLEAR(self->writenl);
Py_CLEAR(self->decoder);
Py_CLEAR(self->dict);
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) self);
Py_TYPE(self)->tp_free(self);
}
static PyObject *
stringio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
stringio *self;
assert(type != NULL && type->tp_alloc != NULL);
self = (stringio *)type->tp_alloc(type, 0);
if (self == NULL)
return NULL;
/* tp_alloc initializes all the fields to zero. So we don't have to
initialize them here. */
self->buf = (Py_UCS4 *)PyMem_Malloc(0);
if (self->buf == NULL) {
Py_DECREF(self);
return PyErr_NoMemory();
}
return (PyObject *)self;
}
/*[clinic input]
_io.StringIO.__init__
initial_value as value: object(c_default="NULL") = ''
newline as newline_obj: object(c_default="NULL") = '\n'
Text I/O implementation using an in-memory buffer.
The initial_value argument sets the value of object. The newline
argument is like the one of TextIOWrapper's constructor.
[clinic start generated code]*/
static int
_io_StringIO___init___impl(stringio *self, PyObject *value,
PyObject *newline_obj)
/*[clinic end generated code: output=a421ea023b22ef4e input=cee2d9181b2577a3]*/
{
char *newline = "\n";
Py_ssize_t value_len;
/* Parse the newline argument. We only want to allow unicode objects or
None. */
if (newline_obj == Py_None) {
newline = NULL;
}
else if (newline_obj) {
if (!PyUnicode_Check(newline_obj)) {
PyErr_Format(PyExc_TypeError,
"newline must be str or None, not %.200s",
Py_TYPE(newline_obj)->tp_name);
return -1;
}
newline = PyUnicode_AsUTF8(newline_obj);
if (newline == NULL)
return -1;
}
if (newline && newline[0] != '\0'
&& !(newline[0] == '\n' && newline[1] == '\0')
&& !(newline[0] == '\r' && newline[1] == '\0')
&& !(newline[0] == '\r' && newline[1] == '\n' && newline[2] == '\0')) {
PyErr_Format(PyExc_ValueError,
"illegal newline value: %R", newline_obj);
return -1;
}
if (value && value != Py_None && !PyUnicode_Check(value)) {
PyErr_Format(PyExc_TypeError,
"initial_value must be str or None, not %.200s",
Py_TYPE(value)->tp_name);
return -1;
}
self->ok = 0;
_PyAccu_Destroy(&self->accu);
Py_CLEAR(self->readnl);
Py_CLEAR(self->writenl);
Py_CLEAR(self->decoder);
assert((newline != NULL && newline_obj != Py_None) ||
(newline == NULL && newline_obj == Py_None));
if (newline) {
self->readnl = PyUnicode_FromString(newline);
if (self->readnl == NULL)
return -1;
}
self->readuniversal = (newline == NULL || newline[0] == '\0');
self->readtranslate = (newline == NULL);
/* If newline == "", we don't translate anything.
If newline == "\n" or newline == None, we translate to "\n", which is
a no-op.
(for newline == None, TextIOWrapper translates to os.linesep, but it
is pointless for StringIO)
*/
if (newline != NULL && newline[0] == '\r') {
self->writenl = self->readnl;
Py_INCREF(self->writenl);
}
if (self->readuniversal) {
self->decoder = PyObject_CallFunction(
(PyObject *)&PyIncrementalNewlineDecoder_Type,
"Oi", Py_None, (int) self->readtranslate);
if (self->decoder == NULL)
return -1;
}
/* Now everything is set up, resize buffer to size of initial value,
and copy it */
self->string_size = 0;
if (value && value != Py_None)
value_len = PyUnicode_GetLength(value);
else
value_len = 0;
if (value_len > 0) {
/* This is a heuristic, for newline translation might change
the string length. */
if (resize_buffer(self, 0) < 0)
return -1;
self->state = STATE_REALIZED;
self->pos = 0;
if (write_str(self, value) < 0)
return -1;
}
else {
/* Empty stringio object, we can start by accumulating */
if (resize_buffer(self, 0) < 0)
return -1;
if (_PyAccu_Init(&self->accu))
return -1;
self->state = STATE_ACCUMULATING;
}
self->pos = 0;
self->closed = 0;
self->ok = 1;
return 0;
}
/* Properties and pseudo-properties */
/*[clinic input]
_io.StringIO.readable
Returns True if the IO object can be read.
[clinic start generated code]*/
static PyObject *
_io_StringIO_readable_impl(stringio *self)
/*[clinic end generated code: output=b19d44dd8b1ceb99 input=39ce068b224c21ad]*/
{
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
Py_RETURN_TRUE;
}
/*[clinic input]
_io.StringIO.writable
Returns True if the IO object can be written.
[clinic start generated code]*/
static PyObject *
_io_StringIO_writable_impl(stringio *self)
/*[clinic end generated code: output=13e4dd77187074ca input=7a691353aac38835]*/
{
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
Py_RETURN_TRUE;
}
/*[clinic input]
_io.StringIO.seekable
Returns True if the IO object can be seeked.
[clinic start generated code]*/
static PyObject *
_io_StringIO_seekable_impl(stringio *self)
/*[clinic end generated code: output=4d20b4641c756879 input=4c606d05b32952e6]*/
{
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
Py_RETURN_TRUE;
}
/* Pickling support.
The implementation of __getstate__ is similar to the one for BytesIO,
except that we also save the newline parameter. For __setstate__ and unlike
BytesIO, we call __init__ to restore the object's state. Doing so allows us
to avoid decoding the complex newline state while keeping the object
representation compact.
See comment in bytesio.c regarding why only pickle protocols and onward are
supported.
*/
static PyObject *
stringio_getstate(stringio *self)
{
PyObject *initvalue = _io_StringIO_getvalue_impl(self);
PyObject *dict;
PyObject *state;
if (initvalue == NULL)
return NULL;
if (self->dict == NULL) {
Py_INCREF(Py_None);
dict = Py_None;
}
else {
dict = PyDict_Copy(self->dict);
if (dict == NULL) {
Py_DECREF(initvalue);
return NULL;
}
}
state = Py_BuildValue("(OOnN)", initvalue,
self->readnl ? self->readnl : Py_None,
self->pos, dict);
Py_DECREF(initvalue);
return state;
}
static PyObject *
stringio_setstate(stringio *self, PyObject *state)
{
PyObject *initarg;
PyObject *position_obj;
PyObject *dict;
Py_ssize_t pos;
assert(state != NULL);
CHECK_CLOSED(self);
/* We allow the state tuple to be longer than 4, because we may need
someday to extend the object's state without breaking
backward-compatibility. */
if (!PyTuple_Check(state) || Py_SIZE(state) < 4) {
PyErr_Format(PyExc_TypeError,
"%.200s.__setstate__ argument should be 4-tuple, got %.200s",
Py_TYPE(self)->tp_name, Py_TYPE(state)->tp_name);
return NULL;
}
/* Initialize the object's state. */
initarg = PyTuple_GetSlice(state, 0, 2);
if (initarg == NULL)
return NULL;
if (_io_StringIO___init__((PyObject *)self, initarg, NULL) < 0) {
Py_DECREF(initarg);
return NULL;
}
Py_DECREF(initarg);
/* Restore the buffer state. Even if __init__ did initialize the buffer,
we have to initialize it again since __init__ may translate the
newlines in the initial_value string. We clearly do not want that
because the string value in the state tuple has already been translated
once by __init__. So we do not take any chance and replace object's
buffer completely. */
{
PyObject *item;
Py_UCS4 *buf;
Py_ssize_t bufsize;
item = PyTuple_GET_ITEM(state, 0);
buf = PyUnicode_AsUCS4Copy(item);
if (buf == NULL)
return NULL;
bufsize = PyUnicode_GET_LENGTH(item);
if (resize_buffer(self, bufsize) < 0) {
PyMem_Free(buf);
return NULL;
}
memcpy(self->buf, buf, bufsize * sizeof(Py_UCS4));
PyMem_Free(buf);
self->string_size = bufsize;
}
/* Set carefully the position value. Alternatively, we could use the seek
method instead of modifying self->pos directly to better protect the
object internal state against errneous (or malicious) inputs. */
position_obj = PyTuple_GET_ITEM(state, 2);
if (!PyLong_Check(position_obj)) {
PyErr_Format(PyExc_TypeError,
"third item of state must be an integer, got %.200s",
Py_TYPE(position_obj)->tp_name);
return NULL;
}
pos = PyLong_AsSsize_t(position_obj);
if (pos == -1 && PyErr_Occurred())
return NULL;
if (pos < 0) {
PyErr_SetString(PyExc_ValueError,
"position value cannot be negative");
return NULL;
}
self->pos = pos;
/* Set the dictionary of the instance variables. */
dict = PyTuple_GET_ITEM(state, 3);
if (dict != Py_None) {
if (!PyDict_Check(dict)) {
PyErr_Format(PyExc_TypeError,
"fourth item of state should be a dict, got a %.200s",
Py_TYPE(dict)->tp_name);
return NULL;
}
if (self->dict) {
/* Alternatively, we could replace the internal dictionary
completely. However, it seems more practical to just update it. */
if (PyDict_Update(self->dict, dict) < 0)
return NULL;
}
else {
Py_INCREF(dict);
self->dict = dict;
}
}
Py_RETURN_NONE;
}
static PyObject *
stringio_closed(stringio *self, void *context)
{
CHECK_INITIALIZED(self);
return PyBool_FromLong(self->closed);
}
static PyObject *
stringio_line_buffering(stringio *self, void *context)
{
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
Py_RETURN_FALSE;
}
static PyObject *
stringio_newlines(stringio *self, void *context)
{
CHECK_INITIALIZED(self);
CHECK_CLOSED(self);
if (self->decoder == NULL)
Py_RETURN_NONE;
return PyObject_GetAttr(self->decoder, _PyIO_str_newlines);
}
#include "third_party/python/Modules/_io/clinic/stringio.inc"
static struct PyMethodDef stringio_methods[] = {
_IO_STRINGIO_CLOSE_METHODDEF
_IO_STRINGIO_GETVALUE_METHODDEF
_IO_STRINGIO_READ_METHODDEF
_IO_STRINGIO_READLINE_METHODDEF
_IO_STRINGIO_TELL_METHODDEF
_IO_STRINGIO_TRUNCATE_METHODDEF
_IO_STRINGIO_SEEK_METHODDEF
_IO_STRINGIO_WRITE_METHODDEF
_IO_STRINGIO_SEEKABLE_METHODDEF
_IO_STRINGIO_READABLE_METHODDEF
_IO_STRINGIO_WRITABLE_METHODDEF
{"__getstate__", (PyCFunction)stringio_getstate, METH_NOARGS},
{"__setstate__", (PyCFunction)stringio_setstate, METH_O},
{NULL, NULL} /* sentinel */
};
static PyGetSetDef stringio_getset[] = {
{"closed", (getter)stringio_closed, NULL, NULL},
{"newlines", (getter)stringio_newlines, NULL, NULL},
/* (following comments straight off of the original Python wrapper:)
XXX Cruft to support the TextIOWrapper API. This would only
be meaningful if StringIO supported the buffer attribute.
Hopefully, a better solution, than adding these pseudo-attributes,
will be found.
*/
{"line_buffering", (getter)stringio_line_buffering, NULL, NULL},
{NULL}
};
PyTypeObject PyStringIO_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.StringIO", /*tp_name*/
sizeof(stringio), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)stringio_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC, /*tp_flags*/
_io_StringIO___init____doc__, /*tp_doc*/
(traverseproc)stringio_traverse, /*tp_traverse*/
(inquiry)stringio_clear, /*tp_clear*/
0, /*tp_richcompare*/
offsetof(stringio, weakreflist), /*tp_weaklistoffset*/
0, /*tp_iter*/
(iternextfunc)stringio_iternext, /*tp_iternext*/
stringio_methods, /*tp_methods*/
0, /*tp_members*/
stringio_getset, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
offsetof(stringio, dict), /*tp_dictoffset*/
_io_StringIO___init__, /*tp_init*/
0, /*tp_alloc*/
stringio_new, /*tp_new*/
};
| 33,015 | 1,105 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/bytesio.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/assert.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/memoryobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pythonrun.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/sysmodule.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Modules/_io/_iomodule.h"
/* clang-format off */
/*[clinic input]
module _io
class _io.BytesIO "bytesio *" "&PyBytesIO_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=7f50ec034f5c0b26]*/
typedef struct {
PyObject_HEAD
PyObject *buf;
Py_ssize_t pos;
Py_ssize_t string_size;
PyObject *dict;
PyObject *weakreflist;
Py_ssize_t exports;
} bytesio;
typedef struct {
PyObject_HEAD
bytesio *source;
} bytesiobuf;
/* The bytesio object can be in three states:
* Py_REFCNT(buf) == 1, exports == 0.
* Py_REFCNT(buf) > 1. exports == 0,
first modification or export causes the internal buffer copying.
* exports > 0. Py_REFCNT(buf) == 1, any modifications are forbidden.
*/
#define CHECK_CLOSED(self) \
if ((self)->buf == NULL) { \
PyErr_SetString(PyExc_ValueError, \
"I/O operation on closed file."); \
return NULL; \
}
#define CHECK_EXPORTS(self) \
if ((self)->exports > 0) { \
PyErr_SetString(PyExc_BufferError, \
"Existing exports of data: object cannot be re-sized"); \
return NULL; \
}
#define SHARED_BUF(self) (Py_REFCNT((self)->buf) > 1)
/* Internal routine to get a line from the buffer of a BytesIO
object. Returns the length between the current position to the
next newline character. */
static Py_ssize_t
scan_eol(bytesio *self, Py_ssize_t len)
{
const char *start, *n;
Py_ssize_t maxlen;
assert(self->buf != NULL);
assert(self->pos >= 0);
if (self->pos >= self->string_size)
return 0;
/* Move to the end of the line, up to the end of the string, s. */
maxlen = self->string_size - self->pos;
if (len < 0 || len > maxlen)
len = maxlen;
if (len) {
start = PyBytes_AS_STRING(self->buf) + self->pos;
n = memchr(start, '\n', len);
if (n)
/* Get the length from the current position to the end of
the line. */
len = n - start + 1;
}
assert(len >= 0);
assert(self->pos < PY_SSIZE_T_MAX - len);
return len;
}
/* Internal routine for detaching the shared buffer of BytesIO objects.
The caller should ensure that the 'size' argument is non-negative and
not lesser than self->string_size. Returns 0 on success, -1 otherwise. */
static int
unshare_buffer(bytesio *self, size_t size)
{
PyObject *new_buf;
assert(SHARED_BUF(self));
assert(self->exports == 0);
assert(size >= (size_t)self->string_size);
new_buf = PyBytes_FromStringAndSize(NULL, size);
if (new_buf == NULL)
return -1;
memcpy(PyBytes_AS_STRING(new_buf), PyBytes_AS_STRING(self->buf),
self->string_size);
Py_SETREF(self->buf, new_buf);
return 0;
}
/* Internal routine for changing the size of the buffer of BytesIO objects.
The caller should ensure that the 'size' argument is non-negative. Returns
0 on success, -1 otherwise. */
static int
resize_buffer(bytesio *self, size_t size)
{
/* Here, unsigned types are used to avoid dealing with signed integer
overflow, which is undefined in C. */
size_t alloc = PyBytes_GET_SIZE(self->buf);
assert(self->buf != NULL);
/* For simplicity, stay in the range of the signed type. Anyway, Python
doesn't allow strings to be longer than this. */
if (size > PY_SSIZE_T_MAX)
goto overflow;
if (size < alloc / 2) {
/* Major downsize; resize down to exact size. */
alloc = size + 1;
}
else if (size < alloc) {
/* Within allocated size; quick exit */
return 0;
}
else if (size <= alloc * 1.125) {
/* Moderate upsize; overallocate similar to list_resize() */
alloc = size + (size >> 3) + (size < 9 ? 3 : 6);
}
else {
/* Major upsize; resize up to exact size */
alloc = size + 1;
}
if (alloc > ((size_t)-1) / sizeof(char))
goto overflow;
if (SHARED_BUF(self)) {
if (unshare_buffer(self, alloc) < 0)
return -1;
}
else {
if (_PyBytes_Resize(&self->buf, alloc) < 0)
return -1;
}
return 0;
overflow:
PyErr_SetString(PyExc_OverflowError,
"new buffer size too large");
return -1;
}
/* Internal routine for writing a string of bytes to the buffer of a BytesIO
object. Returns the number of bytes written, or -1 on error. */
static Py_ssize_t
write_bytes(bytesio *self, const char *bytes, Py_ssize_t len)
{
size_t endpos;
assert(self->buf != NULL);
assert(self->pos >= 0);
assert(len >= 0);
endpos = (size_t)self->pos + len;
if (endpos > (size_t)PyBytes_GET_SIZE(self->buf)) {
if (resize_buffer(self, endpos) < 0)
return -1;
}
else if (SHARED_BUF(self)) {
if (unshare_buffer(self, Py_MAX(endpos, (size_t)self->string_size)) < 0)
return -1;
}
if (self->pos > self->string_size) {
/* In case of overseek, pad with null bytes the buffer region between
the end of stream and the current position.
0 lo string_size hi
| |<---used--->|<----------available----------->|
| | <--to pad-->|<---to write---> |
0 buf position
*/
bzero(PyBytes_AS_STRING(self->buf) + self->string_size,
(self->pos - self->string_size) * sizeof(char));
}
/* Copy the data to the internal buffer, overwriting some of the existing
data if self->pos < self->string_size. */
memcpy(PyBytes_AS_STRING(self->buf) + self->pos, bytes, len);
self->pos = endpos;
/* Set the new length of the internal string if it has changed. */
if ((size_t)self->string_size < endpos) {
self->string_size = endpos;
}
return len;
}
static PyObject *
bytesio_get_closed(bytesio *self, void *Py_UNUSED(ignored))
{
if (self->buf == NULL) {
Py_RETURN_TRUE;
}
else {
Py_RETURN_FALSE;
}
}
/*[clinic input]
_io.BytesIO.readable
Returns True if the IO object can be read.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_readable_impl(bytesio *self)
/*[clinic end generated code: output=4e93822ad5b62263 input=96c5d0cccfb29f5c]*/
{
CHECK_CLOSED(self);
Py_RETURN_TRUE;
}
/*[clinic input]
_io.BytesIO.writable
Returns True if the IO object can be written.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_writable_impl(bytesio *self)
/*[clinic end generated code: output=64ff6a254b1150b8 input=700eed808277560a]*/
{
CHECK_CLOSED(self);
Py_RETURN_TRUE;
}
/*[clinic input]
_io.BytesIO.seekable
Returns True if the IO object can be seeked.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_seekable_impl(bytesio *self)
/*[clinic end generated code: output=6b417f46dcc09b56 input=9421f65627a344dd]*/
{
CHECK_CLOSED(self);
Py_RETURN_TRUE;
}
/*[clinic input]
_io.BytesIO.flush
Does nothing.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_flush_impl(bytesio *self)
/*[clinic end generated code: output=187e3d781ca134a0 input=561ea490be4581a7]*/
{
CHECK_CLOSED(self);
Py_RETURN_NONE;
}
/*[clinic input]
_io.BytesIO.getbuffer
Get a read-write view over the contents of the BytesIO object.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_getbuffer_impl(bytesio *self)
/*[clinic end generated code: output=72cd7c6e13aa09ed input=8f738ef615865176]*/
{
PyTypeObject *type = &_PyBytesIOBuffer_Type;
bytesiobuf *buf;
PyObject *view;
CHECK_CLOSED(self);
buf = (bytesiobuf *) type->tp_alloc(type, 0);
if (buf == NULL)
return NULL;
Py_INCREF(self);
buf->source = self;
view = PyMemoryView_FromObject((PyObject *) buf);
Py_DECREF(buf);
return view;
}
/*[clinic input]
_io.BytesIO.getvalue
Retrieve the entire contents of the BytesIO object.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_getvalue_impl(bytesio *self)
/*[clinic end generated code: output=b3f6a3233c8fd628 input=4b403ac0af3973ed]*/
{
CHECK_CLOSED(self);
if (self->string_size <= 1 || self->exports > 0)
return PyBytes_FromStringAndSize(PyBytes_AS_STRING(self->buf),
self->string_size);
if (self->string_size != PyBytes_GET_SIZE(self->buf)) {
if (SHARED_BUF(self)) {
if (unshare_buffer(self, self->string_size) < 0)
return NULL;
}
else {
if (_PyBytes_Resize(&self->buf, self->string_size) < 0)
return NULL;
}
}
Py_INCREF(self->buf);
return self->buf;
}
/*[clinic input]
_io.BytesIO.isatty
Always returns False.
BytesIO objects are not connected to a TTY-like device.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_isatty_impl(bytesio *self)
/*[clinic end generated code: output=df67712e669f6c8f input=6f97f0985d13f827]*/
{
CHECK_CLOSED(self);
Py_RETURN_FALSE;
}
/*[clinic input]
_io.BytesIO.tell
Current file position, an integer.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_tell_impl(bytesio *self)
/*[clinic end generated code: output=b54b0f93cd0e5e1d input=b106adf099cb3657]*/
{
CHECK_CLOSED(self);
return PyLong_FromSsize_t(self->pos);
}
static PyObject *
read_bytes(bytesio *self, Py_ssize_t size)
{
char *output;
assert(self->buf != NULL);
assert(size <= self->string_size);
if (size > 1 &&
self->pos == 0 && size == PyBytes_GET_SIZE(self->buf) &&
self->exports == 0) {
self->pos += size;
Py_INCREF(self->buf);
return self->buf;
}
output = PyBytes_AS_STRING(self->buf) + self->pos;
self->pos += size;
return PyBytes_FromStringAndSize(output, size);
}
/*[clinic input]
_io.BytesIO.read
size as arg: object = None
/
Read at most size bytes, returned as a bytes object.
If the size argument is negative, read until EOF is reached.
Return an empty bytes object at EOF.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_read_impl(bytesio *self, PyObject *arg)
/*[clinic end generated code: output=85dacb535c1e1781 input=cc7ba4a797bb1555]*/
{
Py_ssize_t size, n;
CHECK_CLOSED(self);
if (PyLong_Check(arg)) {
size = PyLong_AsSsize_t(arg);
if (size == -1 && PyErr_Occurred())
return NULL;
}
else if (arg == Py_None) {
/* Read until EOF is reached, by default. */
size = -1;
}
else {
PyErr_Format(PyExc_TypeError, "integer argument expected, got '%s'",
Py_TYPE(arg)->tp_name);
return NULL;
}
/* adjust invalid sizes */
n = self->string_size - self->pos;
if (size < 0 || size > n) {
size = n;
if (size < 0)
size = 0;
}
return read_bytes(self, size);
}
/*[clinic input]
_io.BytesIO.read1
size: object
/
Read at most size bytes, returned as a bytes object.
If the size argument is negative or omitted, read until EOF is reached.
Return an empty bytes object at EOF.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_read1(bytesio *self, PyObject *size)
/*[clinic end generated code: output=16021f5d0ac3d4e2 input=d4f40bb8f2f99418]*/
{
return _io_BytesIO_read_impl(self, size);
}
/*[clinic input]
_io.BytesIO.readline
size as arg: object = None
/
Next line from the file, as a bytes object.
Retain newline. A non-negative size argument limits the maximum
number of bytes to return (an incomplete line may be returned then).
Return an empty bytes object at EOF.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_readline_impl(bytesio *self, PyObject *arg)
/*[clinic end generated code: output=1c2115534a4f9276 input=ca31f06de6eab257]*/
{
Py_ssize_t size, n;
CHECK_CLOSED(self);
if (PyLong_Check(arg)) {
size = PyLong_AsSsize_t(arg);
if (size == -1 && PyErr_Occurred())
return NULL;
}
else if (arg == Py_None) {
/* No size limit, by default. */
size = -1;
}
else {
PyErr_Format(PyExc_TypeError, "integer argument expected, got '%s'",
Py_TYPE(arg)->tp_name);
return NULL;
}
n = scan_eol(self, size);
return read_bytes(self, n);
}
/*[clinic input]
_io.BytesIO.readlines
size as arg: object = None
/
List of bytes objects, each a line from the file.
Call readline() repeatedly and return a list of the lines so read.
The optional size argument, if given, is an approximate bound on the
total number of bytes in the lines returned.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_readlines_impl(bytesio *self, PyObject *arg)
/*[clinic end generated code: output=09b8e34c880808ff input=691aa1314f2c2a87]*/
{
Py_ssize_t maxsize, size, n;
PyObject *result, *line;
char *output;
CHECK_CLOSED(self);
if (PyLong_Check(arg)) {
maxsize = PyLong_AsSsize_t(arg);
if (maxsize == -1 && PyErr_Occurred())
return NULL;
}
else if (arg == Py_None) {
/* No size limit, by default. */
maxsize = -1;
}
else {
PyErr_Format(PyExc_TypeError, "integer argument expected, got '%s'",
Py_TYPE(arg)->tp_name);
return NULL;
}
size = 0;
result = PyList_New(0);
if (!result)
return NULL;
output = PyBytes_AS_STRING(self->buf) + self->pos;
while ((n = scan_eol(self, -1)) != 0) {
self->pos += n;
line = PyBytes_FromStringAndSize(output, n);
if (!line)
goto on_error;
if (PyList_Append(result, line) == -1) {
Py_DECREF(line);
goto on_error;
}
Py_DECREF(line);
size += n;
if (maxsize > 0 && size >= maxsize)
break;
output += n;
}
return result;
on_error:
Py_DECREF(result);
return NULL;
}
/*[clinic input]
_io.BytesIO.readinto
buffer: Py_buffer(accept={rwbuffer})
/
Read bytes into buffer.
Returns number of bytes read (0 for EOF), or None if the object
is set not to block and has no data to read.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_readinto_impl(bytesio *self, Py_buffer *buffer)
/*[clinic end generated code: output=a5d407217dcf0639 input=1424d0fdce857919]*/
{
Py_ssize_t len, n;
CHECK_CLOSED(self);
/* adjust invalid sizes */
len = buffer->len;
n = self->string_size - self->pos;
if (len > n) {
len = n;
if (len < 0)
len = 0;
}
memcpy(buffer->buf, PyBytes_AS_STRING(self->buf) + self->pos, len);
assert(self->pos + len < PY_SSIZE_T_MAX);
assert(len >= 0);
self->pos += len;
return PyLong_FromSsize_t(len);
}
/*[clinic input]
_io.BytesIO.truncate
size as arg: object = None
/
Truncate the file to at most size bytes.
Size defaults to the current file position, as returned by tell().
The current file position is unchanged. Returns the new size.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_truncate_impl(bytesio *self, PyObject *arg)
/*[clinic end generated code: output=81e6be60e67ddd66 input=11ed1966835462ba]*/
{
Py_ssize_t size;
CHECK_CLOSED(self);
CHECK_EXPORTS(self);
if (PyLong_Check(arg)) {
size = PyLong_AsSsize_t(arg);
if (size == -1 && PyErr_Occurred())
return NULL;
}
else if (arg == Py_None) {
/* Truncate to current position if no argument is passed. */
size = self->pos;
}
else {
PyErr_Format(PyExc_TypeError, "integer argument expected, got '%s'",
Py_TYPE(arg)->tp_name);
return NULL;
}
if (size < 0) {
PyErr_Format(PyExc_ValueError,
"negative size value %zd", size);
return NULL;
}
if (size < self->string_size) {
self->string_size = size;
if (resize_buffer(self, size) < 0)
return NULL;
}
return PyLong_FromSsize_t(size);
}
static PyObject *
bytesio_iternext(bytesio *self)
{
Py_ssize_t n;
CHECK_CLOSED(self);
n = scan_eol(self, -1);
if (n == 0)
return NULL;
return read_bytes(self, n);
}
/*[clinic input]
_io.BytesIO.seek
pos: Py_ssize_t
whence: int = 0
/
Change stream position.
Seek to byte offset pos relative to position indicated by whence:
0 Start of stream (the default). pos should be >= 0;
1 Current position - pos may be negative;
2 End of stream - pos usually negative.
Returns the new absolute position.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_seek_impl(bytesio *self, Py_ssize_t pos, int whence)
/*[clinic end generated code: output=c26204a68e9190e4 input=1e875e6ebc652948]*/
{
CHECK_CLOSED(self);
if (pos < 0 && whence == 0) {
PyErr_Format(PyExc_ValueError,
"negative seek value %zd", pos);
return NULL;
}
/* whence = 0: offset relative to beginning of the string.
whence = 1: offset relative to current position.
whence = 2: offset relative the end of the string. */
if (whence == 1) {
if (pos > PY_SSIZE_T_MAX - self->pos) {
PyErr_SetString(PyExc_OverflowError,
"new position too large");
return NULL;
}
pos += self->pos;
}
else if (whence == 2) {
if (pos > PY_SSIZE_T_MAX - self->string_size) {
PyErr_SetString(PyExc_OverflowError,
"new position too large");
return NULL;
}
pos += self->string_size;
}
else if (whence != 0) {
PyErr_Format(PyExc_ValueError,
"invalid whence (%i, should be 0, 1 or 2)", whence);
return NULL;
}
if (pos < 0)
pos = 0;
self->pos = pos;
return PyLong_FromSsize_t(self->pos);
}
/*[clinic input]
_io.BytesIO.write
b: object
/
Write bytes to file.
Return the number of bytes written.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_write(bytesio *self, PyObject *b)
/*[clinic end generated code: output=53316d99800a0b95 input=f5ec7c8c64ed720a]*/
{
Py_ssize_t n = 0;
Py_buffer buf;
CHECK_CLOSED(self);
CHECK_EXPORTS(self);
if (PyObject_GetBuffer(b, &buf, PyBUF_CONTIG_RO) < 0)
return NULL;
if (buf.len != 0)
n = write_bytes(self, buf.buf, buf.len);
PyBuffer_Release(&buf);
return n >= 0 ? PyLong_FromSsize_t(n) : NULL;
}
/*[clinic input]
_io.BytesIO.writelines
lines: object
/
Write lines to the file.
Note that newlines are not added. lines can be any iterable object
producing bytes-like objects. This is equivalent to calling write() for
each element.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_writelines(bytesio *self, PyObject *lines)
/*[clinic end generated code: output=7f33aa3271c91752 input=e972539176fc8fc1]*/
{
PyObject *it, *item;
PyObject *ret;
CHECK_CLOSED(self);
it = PyObject_GetIter(lines);
if (it == NULL)
return NULL;
while ((item = PyIter_Next(it)) != NULL) {
ret = _io_BytesIO_write(self, item);
Py_DECREF(item);
if (ret == NULL) {
Py_DECREF(it);
return NULL;
}
Py_DECREF(ret);
}
Py_DECREF(it);
/* See if PyIter_Next failed */
if (PyErr_Occurred())
return NULL;
Py_RETURN_NONE;
}
/*[clinic input]
_io.BytesIO.close
Disable all I/O operations.
[clinic start generated code]*/
static PyObject *
_io_BytesIO_close_impl(bytesio *self)
/*[clinic end generated code: output=1471bb9411af84a0 input=37e1f55556e61f60]*/
{
CHECK_EXPORTS(self);
Py_CLEAR(self->buf);
Py_RETURN_NONE;
}
/* Pickling support.
Note that only pickle protocol 2 and onward are supported since we use
extended __reduce__ API of PEP 307 to make BytesIO instances picklable.
Providing support for protocol < 2 would require the __reduce_ex__ method
which is notably long-winded when defined properly.
For BytesIO, the implementation would similar to one coded for
object.__reduce_ex__, but slightly less general. To be more specific, we
could call bytesio_getstate directly and avoid checking for the presence of
a fallback __reduce__ method. However, we would still need a __newobj__
function to use the efficient instance representation of PEP 307.
*/
static PyObject *
bytesio_getstate(bytesio *self)
{
PyObject *initvalue = _io_BytesIO_getvalue_impl(self);
PyObject *dict;
PyObject *state;
if (initvalue == NULL)
return NULL;
if (self->dict == NULL) {
Py_INCREF(Py_None);
dict = Py_None;
}
else {
dict = PyDict_Copy(self->dict);
if (dict == NULL) {
Py_DECREF(initvalue);
return NULL;
}
}
state = Py_BuildValue("(OnN)", initvalue, self->pos, dict);
Py_DECREF(initvalue);
return state;
}
static PyObject *
bytesio_setstate(bytesio *self, PyObject *state)
{
PyObject *result;
PyObject *position_obj;
PyObject *dict;
Py_ssize_t pos;
assert(state != NULL);
/* We allow the state tuple to be longer than 3, because we may need
someday to extend the object's state without breaking
backward-compatibility. */
if (!PyTuple_Check(state) || Py_SIZE(state) < 3) {
PyErr_Format(PyExc_TypeError,
"%.200s.__setstate__ argument should be 3-tuple, got %.200s",
Py_TYPE(self)->tp_name, Py_TYPE(state)->tp_name);
return NULL;
}
CHECK_EXPORTS(self);
/* Reset the object to its default state. This is only needed to handle
the case of repeated calls to __setstate__. */
self->string_size = 0;
self->pos = 0;
/* Set the value of the internal buffer. If state[0] does not support the
buffer protocol, bytesio_write will raise the appropriate TypeError. */
result = _io_BytesIO_write(self, PyTuple_GET_ITEM(state, 0));
if (result == NULL)
return NULL;
Py_DECREF(result);
/* Set carefully the position value. Alternatively, we could use the seek
method instead of modifying self->pos directly to better protect the
object internal state against errneous (or malicious) inputs. */
position_obj = PyTuple_GET_ITEM(state, 1);
if (!PyLong_Check(position_obj)) {
PyErr_Format(PyExc_TypeError,
"second item of state must be an integer, not %.200s",
Py_TYPE(position_obj)->tp_name);
return NULL;
}
pos = PyLong_AsSsize_t(position_obj);
if (pos == -1 && PyErr_Occurred())
return NULL;
if (pos < 0) {
PyErr_SetString(PyExc_ValueError,
"position value cannot be negative");
return NULL;
}
self->pos = pos;
/* Set the dictionary of the instance variables. */
dict = PyTuple_GET_ITEM(state, 2);
if (dict != Py_None) {
if (!PyDict_Check(dict)) {
PyErr_Format(PyExc_TypeError,
"third item of state should be a dict, got a %.200s",
Py_TYPE(dict)->tp_name);
return NULL;
}
if (self->dict) {
/* Alternatively, we could replace the internal dictionary
completely. However, it seems more practical to just update it. */
if (PyDict_Update(self->dict, dict) < 0)
return NULL;
}
else {
Py_INCREF(dict);
self->dict = dict;
}
}
Py_RETURN_NONE;
}
static void
bytesio_dealloc(bytesio *self)
{
_PyObject_GC_UNTRACK(self);
if (self->exports > 0) {
PyErr_SetString(PyExc_SystemError,
"deallocated BytesIO object has exported buffers");
PyErr_Print();
}
Py_CLEAR(self->buf);
Py_CLEAR(self->dict);
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) self);
Py_TYPE(self)->tp_free(self);
}
static PyObject *
bytesio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
bytesio *self;
assert(type != NULL && type->tp_alloc != NULL);
self = (bytesio *)type->tp_alloc(type, 0);
if (self == NULL)
return NULL;
/* tp_alloc initializes all the fields to zero. So we don't have to
initialize them here. */
self->buf = PyBytes_FromStringAndSize(NULL, 0);
if (self->buf == NULL) {
Py_DECREF(self);
return PyErr_NoMemory();
}
return (PyObject *)self;
}
/*[clinic input]
_io.BytesIO.__init__
initial_bytes as initvalue: object(c_default="NULL") = b''
Buffered I/O implementation using an in-memory bytes buffer.
[clinic start generated code]*/
static int
_io_BytesIO___init___impl(bytesio *self, PyObject *initvalue)
/*[clinic end generated code: output=65c0c51e24c5b621 input=aac7f31b67bf0fb6]*/
{
/* In case, __init__ is called multiple times. */
self->string_size = 0;
self->pos = 0;
if (self->exports > 0) {
PyErr_SetString(PyExc_BufferError,
"Existing exports of data: object cannot be re-sized");
return -1;
}
if (initvalue && initvalue != Py_None) {
if (PyBytes_CheckExact(initvalue)) {
Py_INCREF(initvalue);
Py_XSETREF(self->buf, initvalue);
self->string_size = PyBytes_GET_SIZE(initvalue);
}
else {
PyObject *res;
res = _io_BytesIO_write(self, initvalue);
if (res == NULL)
return -1;
Py_DECREF(res);
self->pos = 0;
}
}
return 0;
}
static PyObject *
bytesio_sizeof(bytesio *self, void *unused)
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(self));
if (self->buf && !SHARED_BUF(self))
res += _PySys_GetSizeOf(self->buf);
return PyLong_FromSsize_t(res);
}
static int
bytesio_traverse(bytesio *self, visitproc visit, void *arg)
{
Py_VISIT(self->dict);
return 0;
}
static int
bytesio_clear(bytesio *self)
{
Py_CLEAR(self->dict);
return 0;
}
#include "third_party/python/Modules/_io/clinic/bytesio.inc"
static PyGetSetDef bytesio_getsetlist[] = {
{"closed", (getter)bytesio_get_closed, NULL,
"True if the file is closed."},
{NULL}, /* sentinel */
};
static struct PyMethodDef bytesio_methods[] = {
_IO_BYTESIO_READABLE_METHODDEF
_IO_BYTESIO_SEEKABLE_METHODDEF
_IO_BYTESIO_WRITABLE_METHODDEF
_IO_BYTESIO_CLOSE_METHODDEF
_IO_BYTESIO_FLUSH_METHODDEF
_IO_BYTESIO_ISATTY_METHODDEF
_IO_BYTESIO_TELL_METHODDEF
_IO_BYTESIO_WRITE_METHODDEF
_IO_BYTESIO_WRITELINES_METHODDEF
_IO_BYTESIO_READ1_METHODDEF
_IO_BYTESIO_READINTO_METHODDEF
_IO_BYTESIO_READLINE_METHODDEF
_IO_BYTESIO_READLINES_METHODDEF
_IO_BYTESIO_READ_METHODDEF
_IO_BYTESIO_GETBUFFER_METHODDEF
_IO_BYTESIO_GETVALUE_METHODDEF
_IO_BYTESIO_SEEK_METHODDEF
_IO_BYTESIO_TRUNCATE_METHODDEF
{"__getstate__", (PyCFunction)bytesio_getstate, METH_NOARGS, NULL},
{"__setstate__", (PyCFunction)bytesio_setstate, METH_O, NULL},
{"__sizeof__", (PyCFunction)bytesio_sizeof, METH_NOARGS, NULL},
{NULL, NULL} /* sentinel */
};
PyTypeObject PyBytesIO_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.BytesIO", /*tp_name*/
sizeof(bytesio), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)bytesio_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE |
Py_TPFLAGS_HAVE_GC, /*tp_flags*/
_io_BytesIO___init____doc__, /*tp_doc*/
(traverseproc)bytesio_traverse, /*tp_traverse*/
(inquiry)bytesio_clear, /*tp_clear*/
0, /*tp_richcompare*/
offsetof(bytesio, weakreflist), /*tp_weaklistoffset*/
PyObject_SelfIter, /*tp_iter*/
(iternextfunc)bytesio_iternext, /*tp_iternext*/
bytesio_methods, /*tp_methods*/
0, /*tp_members*/
bytesio_getsetlist, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
offsetof(bytesio, dict), /*tp_dictoffset*/
_io_BytesIO___init__, /*tp_init*/
0, /*tp_alloc*/
bytesio_new, /*tp_new*/
};
/*
* Implementation of the small intermediate object used by getbuffer().
* getbuffer() returns a memoryview over this object, which should make it
* invisible from Python code.
*/
static int
bytesiobuf_getbuffer(bytesiobuf *obj, Py_buffer *view, int flags)
{
bytesio *b = (bytesio *) obj->source;
if (view == NULL) {
PyErr_SetString(PyExc_BufferError,
"bytesiobuf_getbuffer: view==NULL argument is obsolete");
return -1;
}
if (SHARED_BUF(b)) {
if (unshare_buffer(b, b->string_size) < 0)
return -1;
}
/* cannot fail if view != NULL and readonly == 0 */
(void)PyBuffer_FillInfo(view, (PyObject*)obj,
PyBytes_AS_STRING(b->buf), b->string_size,
0, flags);
b->exports++;
return 0;
}
static void
bytesiobuf_releasebuffer(bytesiobuf *obj, Py_buffer *view)
{
bytesio *b = (bytesio *) obj->source;
b->exports--;
}
static int
bytesiobuf_traverse(bytesiobuf *self, visitproc visit, void *arg)
{
Py_VISIT(self->source);
return 0;
}
static void
bytesiobuf_dealloc(bytesiobuf *self)
{
/* bpo-31095: UnTrack is needed before calling any callbacks */
PyObject_GC_UnTrack(self);
Py_CLEAR(self->source);
Py_TYPE(self)->tp_free(self);
}
static PyBufferProcs bytesiobuf_as_buffer = {
(getbufferproc) bytesiobuf_getbuffer,
(releasebufferproc) bytesiobuf_releasebuffer,
};
PyTypeObject _PyBytesIOBuffer_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io._BytesIOBuffer", /*tp_name*/
sizeof(bytesiobuf), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)bytesiobuf_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
&bytesiobuf_as_buffer, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /*tp_flags*/
0, /*tp_doc*/
(traverseproc)bytesiobuf_traverse, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
0, /*tp_methods*/
0, /*tp_members*/
0, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
0, /*tp_init*/
0, /*tp_alloc*/
0, /*tp_new*/
};
| 35,522 | 1,208 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/_iomodule.h | #ifndef COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES__IO__IOMODULE_H_
#define COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES__IO__IOMODULE_H_
#include "libc/calls/weirdtypes.h"
#include "third_party/python/Include/moduleobject.h"
#include "third_party/python/Include/object.h"
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
/* clang-format off */
/* ABCs */
extern PyTypeObject PyIOBase_Type;
extern PyTypeObject PyRawIOBase_Type;
extern PyTypeObject PyBufferedIOBase_Type;
extern PyTypeObject PyTextIOBase_Type;
/* Concrete classes */
extern PyTypeObject PyFileIO_Type;
extern PyTypeObject PyBytesIO_Type;
extern PyTypeObject PyStringIO_Type;
extern PyTypeObject PyBufferedReader_Type;
extern PyTypeObject PyBufferedWriter_Type;
extern PyTypeObject PyBufferedRWPair_Type;
extern PyTypeObject PyBufferedRandom_Type;
extern PyTypeObject PyTextIOWrapper_Type;
extern PyTypeObject PyIncrementalNewlineDecoder_Type;
#ifndef Py_LIMITED_API
#ifdef MS_WINDOWS
extern PyTypeObject PyWindowsConsoleIO_Type;
extern PyObject * _PyWindowsConsoleIO_Type;
#define PyWindowsConsoleIO_Check(op) (PyObject_TypeCheck((op), (PyTypeObject*)_PyWindowsConsoleIO_Type))
#endif /* MS_WINDOWS */
#endif /* Py_LIMITED_API */
extern int _PyIO_ConvertSsize_t(PyObject *, void *);
/* These functions are used as METH_NOARGS methods, are normally called
* with args=NULL, and return a new reference.
* BUT when args=Py_True is passed, they return a borrowed reference.
*/
PyObject* _PyIOBase_check_readable(PyObject *, PyObject *);
PyObject* _PyIOBase_check_writable(PyObject *, PyObject *);
PyObject* _PyIOBase_check_seekable(PyObject *, PyObject *);
PyObject* _PyIOBase_check_closed(PyObject *, PyObject *);
/* Helper for finalization.
This function will revive an object ready to be deallocated and try to
close() it. It returns 0 if the object can be destroyed, or -1 if it
is alive again. */
extern int _PyIOBase_finalize(PyObject *self);
/* Returns true if the given FileIO object is closed.
Doesn't check the argument type, so be careful! */
extern int _PyFileIO_closed(PyObject *self);
/* Shortcut to the core of the IncrementalNewlineDecoder.decode method */
extern PyObject *_PyIncrementalNewlineDecoder_decode(
PyObject *self, PyObject *input, int final);
/* Finds the first line ending between `start` and `end`.
If found, returns the index after the line ending and doesn't touch
`*consumed`.
If not found, returns -1 and sets `*consumed` to the number of characters
which can be safely put aside until another search.
NOTE: for performance reasons, `end` must point to a NUL character ('\0').
Otherwise, the function will scan further and return garbage.
There are three modes, in order of priority:
* translated: Only find \n (assume newlines already translated)
* universal: Use universal newlines algorithm
* Otherwise, the line ending is specified by readnl, a str object */
extern Py_ssize_t _PyIO_find_line_ending(
int translated, int universal, PyObject *readnl,
int kind, const char *start, const char *end, Py_ssize_t *consumed);
/* Return 1 if an EnvironmentError with errno == EINTR is set (and then
clears the error indicator), 0 otherwise.
Should only be called when PyErr_Occurred() is true.
*/
extern int _PyIO_trap_eintr(void);
#define DEFAULT_BUFFER_SIZE (8 * 1024) /* bytes */
/*
* Offset type for positioning.
*/
/* Printing a variable of type off_t (with e.g., PyUnicode_FromFormat)
correctly and without producing compiler warnings is surprisingly painful.
We identify an integer type whose size matches off_t and then: (1) cast the
off_t to that integer type and (2) use the appropriate conversion
specification. The cast is necessary: gcc complains about formatting a
long with "%lld" even when both long and long long have the same
precision. */
#ifdef MS_WINDOWS
/* Windows uses long long for offsets */
typedef long long Py_off_t;
# define PyLong_AsOff_t PyLong_AsLongLong
# define PyLong_FromOff_t PyLong_FromLongLong
# define PY_OFF_T_MAX LLONG_MAX
# define PY_OFF_T_MIN LLONG_MIN
# define PY_OFF_T_COMPAT long long /* type compatible with off_t */
# define PY_PRIdOFF "lld" /* format to use for that type */
#else
/* Other platforms use off_t */
typedef off_t Py_off_t;
#if (SIZEOF_OFF_T == SIZEOF_SIZE_T)
# define PyLong_AsOff_t PyLong_AsSsize_t
# define PyLong_FromOff_t PyLong_FromSsize_t
# define PY_OFF_T_MAX PY_SSIZE_T_MAX
# define PY_OFF_T_MIN PY_SSIZE_T_MIN
# define PY_OFF_T_COMPAT Py_ssize_t
# define PY_PRIdOFF "zd"
#elif (SIZEOF_OFF_T == SIZEOF_LONG_LONG)
# define PyLong_AsOff_t PyLong_AsLongLong
# define PyLong_FromOff_t PyLong_FromLongLong
# define PY_OFF_T_MAX LLONG_MAX
# define PY_OFF_T_MIN LLONG_MIN
# define PY_OFF_T_COMPAT long long
# define PY_PRIdOFF "lld"
#elif (SIZEOF_OFF_T == SIZEOF_LONG)
# define PyLong_AsOff_t PyLong_AsLong
# define PyLong_FromOff_t PyLong_FromLong
# define PY_OFF_T_MAX LONG_MAX
# define PY_OFF_T_MIN LONG_MIN
# define PY_OFF_T_COMPAT long
# define PY_PRIdOFF "ld"
#else
# error off_t does not match either size_t, long, or long long!
#endif
#endif
extern Py_off_t PyNumber_AsOff_t(PyObject *item, PyObject *err);
/* Implementation details */
/* IO module structure */
extern PyModuleDef _PyIO_Module;
typedef struct {
int initialized;
PyObject *locale_module;
PyObject *unsupported_operation;
} _PyIO_State;
#define IO_MOD_STATE(mod) ((_PyIO_State *)PyModule_GetState(mod))
#define IO_STATE() _PyIO_get_module_state()
extern _PyIO_State *_PyIO_get_module_state(void);
extern PyObject *_PyIO_get_locale_module(_PyIO_State *);
#ifdef MS_WINDOWS
extern char _PyIO_get_console_type(PyObject *);
#endif
extern PyObject *_PyIO_str_close;
extern PyObject *_PyIO_str_closed;
extern PyObject *_PyIO_str_decode;
extern PyObject *_PyIO_str_encode;
extern PyObject *_PyIO_str_fileno;
extern PyObject *_PyIO_str_flush;
extern PyObject *_PyIO_str_getstate;
extern PyObject *_PyIO_str_isatty;
extern PyObject *_PyIO_str_newlines;
extern PyObject *_PyIO_str_nl;
extern PyObject *_PyIO_str_read;
extern PyObject *_PyIO_str_read1;
extern PyObject *_PyIO_str_readable;
extern PyObject *_PyIO_str_readall;
extern PyObject *_PyIO_str_readinto;
extern PyObject *_PyIO_str_readline;
extern PyObject *_PyIO_str_reset;
extern PyObject *_PyIO_str_seek;
extern PyObject *_PyIO_str_seekable;
extern PyObject *_PyIO_str_setstate;
extern PyObject *_PyIO_str_tell;
extern PyObject *_PyIO_str_truncate;
extern PyObject *_PyIO_str_writable;
extern PyObject *_PyIO_str_write;
extern PyObject *_PyIO_empty_str;
extern PyObject *_PyIO_empty_bytes;
extern PyObject *_PyIO_zero;
extern PyTypeObject _PyBytesIOBuffer_Type;
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES__IO__IOMODULE_H_ */
| 6,941 | 198 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/winconsoleio.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Modules/_io/_iomodule.h"
/* clang-format off */
/*
An implementation of Windows console I/O
Classes defined here: _WindowsConsoleIO
Written by Steve Dower
*/
/* BUFSIZ determines how many characters can be typed at the console
before it starts blocking. */
#if BUFSIZ < (16*1024)
#define SMALLCHUNK (2*1024)
#elif (BUFSIZ >= (2 << 25))
#error "unreasonable BUFSIZ > 64MB defined"
#else
#define SMALLCHUNK BUFSIZ
#endif
/* BUFMAX determines how many bytes can be read in one go. */
#define BUFMAX (32*1024*1024)
/* SMALLBUF determines how many utf-8 characters will be
buffered within the stream, in order to support reads
of less than one character */
#define SMALLBUF 4
char _get_console_type(HANDLE handle) {
DWORD mode, peek_count;
if (handle == INVALID_HANDLE_VALUE)
return '\0';
if (!GetConsoleMode(handle, &mode))
return '\0';
/* Peek at the handle to see whether it is an input or output handle */
if (GetNumberOfConsoleInputEvents(handle, &peek_count))
return 'r';
return 'w';
}
char _PyIO_get_console_type(PyObject *path_or_fd) {
int fd = PyLong_AsLong(path_or_fd);
PyErr_Clear();
if (fd >= 0) {
HANDLE handle;
_Py_BEGIN_SUPPRESS_IPH
handle = (HANDLE)_get_osfhandle(fd);
_Py_END_SUPPRESS_IPH
if (handle == INVALID_HANDLE_VALUE)
return '\0';
return _get_console_type(handle);
}
PyObject *decoded;
wchar_t *decoded_wstr;
if (!PyUnicode_FSDecoder(path_or_fd, &decoded)) {
PyErr_Clear();
return '\0';
}
decoded_wstr = _PyUnicode_AsWideCharString(decoded);
Py_CLEAR(decoded);
if (!decoded_wstr) {
PyErr_Clear();
return '\0';
}
char m = '\0';
if (!_wcsicmp(decoded_wstr, L"CONIN$")) {
m = 'r';
} else if (!_wcsicmp(decoded_wstr, L"CONOUT$")) {
m = 'w';
} else if (!_wcsicmp(decoded_wstr, L"CON")) {
m = 'x';
}
if (m) {
PyMem_Free(decoded_wstr);
return m;
}
DWORD length;
wchar_t name_buf[MAX_PATH], *pname_buf = name_buf;
length = GetFullPathNameW(decoded_wstr, MAX_PATH, pname_buf, NULL);
if (length > MAX_PATH) {
pname_buf = PyMem_New(wchar_t, length);
if (pname_buf)
length = GetFullPathNameW(decoded_wstr, length, pname_buf, NULL);
else
length = 0;
}
PyMem_Free(decoded_wstr);
if (length) {
wchar_t *name = pname_buf;
if (length >= 4 && name[3] == L'\\' &&
(name[2] == L'.' || name[2] == L'?') &&
name[1] == L'\\' && name[0] == L'\\') {
name += 4;
}
if (!_wcsicmp(name, L"CONIN$")) {
m = 'r';
} else if (!_wcsicmp(name, L"CONOUT$")) {
m = 'w';
} else if (!_wcsicmp(name, L"CON")) {
m = 'x';
}
}
if (pname_buf != name_buf)
PyMem_Free(pname_buf);
return m;
}
/*[clinic input]
module _io
class _io._WindowsConsoleIO "winconsoleio *" "&PyWindowsConsoleIO_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=e897fdc1fba4e131]*/
/*[python input]
class io_ssize_t_converter(CConverter):
type = 'Py_ssize_t'
converter = '_PyIO_ConvertSsize_t'
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=d0a811d3cbfd1b33]*/
typedef struct {
PyObject_HEAD
HANDLE handle;
int fd;
unsigned int created : 1;
unsigned int readable : 1;
unsigned int writable : 1;
unsigned int closehandle : 1;
char finalizing;
unsigned int blksize;
PyObject *weakreflist;
PyObject *dict;
char buf[SMALLBUF];
wchar_t wbuf;
} winconsoleio;
PyTypeObject PyWindowsConsoleIO_Type;
_Py_IDENTIFIER(name);
int
_PyWindowsConsoleIO_closed(PyObject *self)
{
return ((winconsoleio *)self)->handle == INVALID_HANDLE_VALUE;
}
/* Returns 0 on success, -1 with exception set on failure. */
static int
internal_close(winconsoleio *self)
{
if (self->handle != INVALID_HANDLE_VALUE) {
if (self->closehandle) {
if (self->fd >= 0) {
_Py_BEGIN_SUPPRESS_IPH
close(self->fd);
_Py_END_SUPPRESS_IPH
}
CloseHandle(self->handle);
}
self->handle = INVALID_HANDLE_VALUE;
self->fd = -1;
}
return 0;
}
/*[clinic input]
_io._WindowsConsoleIO.close
Close the handle.
A closed handle cannot be used for further I/O operations. close() may be
called more than once without error.
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_close_impl(winconsoleio *self)
/*[clinic end generated code: output=27ef95b66c29057b input=185617e349ae4c7b]*/
{
PyObject *res;
PyObject *exc, *val, *tb;
int rc;
_Py_IDENTIFIER(close);
res = _PyObject_CallMethodId((PyObject*)&PyRawIOBase_Type,
&PyId_close, "O", self);
if (!self->closehandle) {
self->handle = INVALID_HANDLE_VALUE;
return res;
}
if (res == NULL)
PyErr_Fetch(&exc, &val, &tb);
rc = internal_close(self);
if (res == NULL)
_PyErr_ChainExceptions(exc, val, tb);
if (rc < 0)
Py_CLEAR(res);
return res;
}
static PyObject *
winconsoleio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
winconsoleio *self;
assert(type != NULL && type->tp_alloc != NULL);
self = (winconsoleio *) type->tp_alloc(type, 0);
if (self != NULL) {
self->handle = INVALID_HANDLE_VALUE;
self->fd = -1;
self->created = 0;
self->readable = 0;
self->writable = 0;
self->closehandle = 0;
self->blksize = 0;
self->weakreflist = NULL;
}
return (PyObject *) self;
}
/*[clinic input]
_io._WindowsConsoleIO.__init__
file as nameobj: object
mode: str = "r"
closefd: int(c_default="1") = True
opener: object = None
Open a console buffer by file descriptor.
The mode can be 'rb' (default), or 'wb' for reading or writing bytes. All
other mode characters will be ignored. Mode 'b' will be assumed if it is
omitted. The *opener* parameter is always ignored.
[clinic start generated code]*/
static int
_io__WindowsConsoleIO___init___impl(winconsoleio *self, PyObject *nameobj,
const char *mode, int closefd,
PyObject *opener)
/*[clinic end generated code: output=3fd9cbcdd8d95429 input=61be39633a86f5d7]*/
{
const char *s;
wchar_t *name = NULL;
char console_type = '\0';
int ret = 0;
int rwa = 0;
int fd = -1;
int fd_is_own = 0;
assert(PyWindowsConsoleIO_Check(self));
if (self->handle >= 0) {
if (self->closehandle) {
/* Have to close the existing file first. */
if (internal_close(self) < 0)
return -1;
}
else
self->handle = INVALID_HANDLE_VALUE;
}
if (PyFloat_Check(nameobj)) {
PyErr_SetString(PyExc_TypeError,
"integer argument expected, got float");
return -1;
}
fd = _PyLong_AsInt(nameobj);
if (fd < 0) {
if (!PyErr_Occurred()) {
PyErr_SetString(PyExc_ValueError,
"negative file descriptor");
return -1;
}
PyErr_Clear();
}
self->fd = fd;
if (fd < 0) {
PyObject *decodedname;
int d = PyUnicode_FSDecoder(nameobj, (void*)&decodedname);
if (!d)
return -1;
name = _PyUnicode_AsWideCharString(decodedname);
console_type = _PyIO_get_console_type(decodedname);
Py_CLEAR(decodedname);
if (name == NULL)
return -1;
if (console_type == '\0') {
PyMem_Free(name);
PyErr_SetString(PyExc_ValueError,
"Cannot open non-console file");
return -1;
}
}
s = mode;
while (*s) {
switch (*s++) {
case '+':
case 'a':
case 'b':
case 'x':
break;
case 'r':
if (rwa)
goto bad_mode;
rwa = 1;
self->readable = 1;
if (console_type == 'x')
console_type = 'r';
break;
case 'w':
if (rwa)
goto bad_mode;
rwa = 1;
self->writable = 1;
if (console_type == 'x')
console_type = 'w';
break;
default:
PyErr_Format(PyExc_ValueError,
"invalid mode: %.200s", mode);
goto error;
}
}
if (!rwa)
goto bad_mode;
if (fd >= 0) {
_Py_BEGIN_SUPPRESS_IPH
self->handle = (HANDLE)_get_osfhandle(fd);
_Py_END_SUPPRESS_IPH
self->closehandle = 0;
} else {
DWORD access = GENERIC_READ;
self->closehandle = 1;
if (!closefd) {
PyErr_SetString(PyExc_ValueError,
"Cannot use closefd=False with file name");
goto error;
}
if (self->writable)
access = GENERIC_WRITE;
Py_BEGIN_ALLOW_THREADS
/* Attempt to open for read/write initially, then fall back
on the specific access. This is required for modern names
CONIN$ and CONOUT$, which allow reading/writing state as
well as reading/writing content. */
self->handle = CreateFileW(name, GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
if (self->handle == INVALID_HANDLE_VALUE)
self->handle = CreateFileW(name, access,
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
Py_END_ALLOW_THREADS
if (self->handle == INVALID_HANDLE_VALUE) {
PyErr_SetExcFromWindowsErrWithFilenameObject(PyExc_OSError, GetLastError(), nameobj);
goto error;
}
}
if (console_type == '\0')
console_type = _get_console_type(self->handle);
if (console_type == '\0') {
PyErr_SetString(PyExc_ValueError,
"Cannot open non-console file");
goto error;
}
if (self->writable && console_type != 'w') {
PyErr_SetString(PyExc_ValueError,
"Cannot open console input buffer for writing");
goto error;
}
if (self->readable && console_type != 'r') {
PyErr_SetString(PyExc_ValueError,
"Cannot open console output buffer for reading");
goto error;
}
self->blksize = DEFAULT_BUFFER_SIZE;
bzero(self->buf, 4);
if (_PyObject_SetAttrId((PyObject *)self, &PyId_name, nameobj) < 0)
goto error;
goto done;
bad_mode:
PyErr_SetString(PyExc_ValueError,
"Must have exactly one of read or write mode");
error:
ret = -1;
internal_close(self);
done:
PyMem_Free(name);
return ret;
}
static int
winconsoleio_traverse(winconsoleio *self, visitproc visit, void *arg)
{
Py_VISIT(self->dict);
return 0;
}
static int
winconsoleio_clear(winconsoleio *self)
{
Py_CLEAR(self->dict);
return 0;
}
static void
winconsoleio_dealloc(winconsoleio *self)
{
self->finalizing = 1;
if (_PyIOBase_finalize((PyObject *) self) < 0)
return;
_PyObject_GC_UNTRACK(self);
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) self);
Py_CLEAR(self->dict);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyObject *
err_closed(void)
{
PyErr_SetString(PyExc_ValueError, "I/O operation on closed file");
return NULL;
}
static PyObject *
err_mode(const char *action)
{
_PyIO_State *state = IO_STATE();
if (state != NULL)
PyErr_Format(state->unsupported_operation,
"Console buffer does not support %s", action);
return NULL;
}
/*[clinic input]
_io._WindowsConsoleIO.fileno
Return the underlying file descriptor (an integer).
fileno is only set when a file descriptor is used to open
one of the standard streams.
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_fileno_impl(winconsoleio *self)
/*[clinic end generated code: output=006fa74ce3b5cfbf input=079adc330ddaabe6]*/
{
if (self->fd < 0 && self->handle != INVALID_HANDLE_VALUE) {
_Py_BEGIN_SUPPRESS_IPH
if (self->writable)
self->fd = _open_osfhandle((intptr_t)self->handle, _O_WRONLY | _O_BINARY);
else
self->fd = _open_osfhandle((intptr_t)self->handle, _O_RDONLY | _O_BINARY);
_Py_END_SUPPRESS_IPH
}
if (self->fd < 0)
return err_mode("fileno");
return PyLong_FromLong(self->fd);
}
/*[clinic input]
_io._WindowsConsoleIO.readable
True if console is an input buffer.
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_readable_impl(winconsoleio *self)
/*[clinic end generated code: output=daf9cef2743becf0 input=6be9defb5302daae]*/
{
if (self->handle == INVALID_HANDLE_VALUE)
return err_closed();
return PyBool_FromLong((long) self->readable);
}
/*[clinic input]
_io._WindowsConsoleIO.writable
True if console is an output buffer.
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_writable_impl(winconsoleio *self)
/*[clinic end generated code: output=e0a2ad7eae5abf67 input=cefbd8abc24df6a0]*/
{
if (self->handle == INVALID_HANDLE_VALUE)
return err_closed();
return PyBool_FromLong((long) self->writable);
}
static DWORD
_buflen(winconsoleio *self)
{
for (DWORD i = 0; i < SMALLBUF; ++i) {
if (!self->buf[i])
return i;
}
return SMALLBUF;
}
static DWORD
_copyfrombuf(winconsoleio *self, char *buf, DWORD len)
{
DWORD n = 0;
while (self->buf[0] && len--) {
buf[n++] = self->buf[0];
for (int i = 1; i < SMALLBUF; ++i)
self->buf[i - 1] = self->buf[i];
self->buf[SMALLBUF - 1] = 0;
}
return n;
}
static wchar_t *
read_console_w(HANDLE handle, DWORD maxlen, DWORD *readlen) {
int err = 0, sig = 0;
wchar_t *buf = (wchar_t*)PyMem_Malloc(maxlen * sizeof(wchar_t));
if (!buf)
goto error;
*readlen = 0;
Py_BEGIN_ALLOW_THREADS
DWORD off = 0;
while (off < maxlen) {
DWORD n = (DWORD)-1;
DWORD len = min(maxlen - off, BUFSIZ);
SetLastError(0);
BOOL res = ReadConsoleW(handle, &buf[off], len, &n, NULL);
if (!res) {
err = GetLastError();
break;
}
if (n == (DWORD)-1 && (err = GetLastError()) == ERROR_OPERATION_ABORTED) {
break;
}
if (n == 0) {
err = GetLastError();
if (err != ERROR_OPERATION_ABORTED)
break;
err = 0;
HANDLE hInterruptEvent = _PyOS_SigintEvent();
if (WaitForSingleObjectEx(hInterruptEvent, 100, FALSE)
== WAIT_OBJECT_0) {
ResetEvent(hInterruptEvent);
Py_BLOCK_THREADS
sig = PyErr_CheckSignals();
Py_UNBLOCK_THREADS
if (sig < 0)
break;
}
}
*readlen += n;
/* If we didn't read a full buffer that time, don't try
again or we will block a second time. */
if (n < len)
break;
/* If the buffer ended with a newline, break out */
if (buf[*readlen - 1] == '\n')
break;
/* If the buffer ends with a high surrogate, expand the
buffer and read an extra character. */
WORD char_type;
if (off + BUFSIZ >= maxlen &&
GetStringTypeW(CT_CTYPE3, &buf[*readlen - 1], 1, &char_type) &&
char_type == C3_HIGHSURROGATE) {
wchar_t *newbuf;
maxlen += 1;
Py_BLOCK_THREADS
newbuf = (wchar_t*)PyMem_Realloc(buf, maxlen * sizeof(wchar_t));
Py_UNBLOCK_THREADS
if (!newbuf) {
sig = -1;
break;
}
buf = newbuf;
/* Only advance by n and not BUFSIZ in this case */
off += n;
continue;
}
off += BUFSIZ;
}
Py_END_ALLOW_THREADS
if (sig)
goto error;
if (err) {
PyErr_SetFromWindowsErr(err);
goto error;
}
if (*readlen > 0 && buf[0] == L'\x1a') {
PyMem_Free(buf);
buf = (wchar_t *)PyMem_Malloc(sizeof(wchar_t));
if (!buf)
goto error;
buf[0] = L'\0';
*readlen = 0;
}
return buf;
error:
if (buf)
PyMem_Free(buf);
return NULL;
}
static Py_ssize_t
readinto(winconsoleio *self, char *buf, Py_ssize_t len)
{
if (self->handle == INVALID_HANDLE_VALUE) {
err_closed();
return -1;
}
if (!self->readable) {
err_mode("reading");
return -1;
}
if (len == 0)
return 0;
if (len > BUFMAX) {
PyErr_Format(PyExc_ValueError, "cannot read more than %d bytes", BUFMAX);
return -1;
}
/* Each character may take up to 4 bytes in the final buffer.
This is highly conservative, but necessary to avoid
failure for any given Unicode input (e.g. \U0010ffff).
If the caller requests fewer than 4 bytes, we buffer one
character.
*/
DWORD wlen = (DWORD)(len / 4);
if (wlen == 0) {
wlen = 1;
}
DWORD read_len = _copyfrombuf(self, buf, (DWORD)len);
if (read_len) {
buf = &buf[read_len];
len -= read_len;
wlen -= 1;
}
if (len == read_len || wlen == 0)
return read_len;
DWORD n;
wchar_t *wbuf = read_console_w(self->handle, wlen, &n);
if (wbuf == NULL)
return -1;
if (n == 0) {
PyMem_Free(wbuf);
return read_len;
}
int err = 0;
DWORD u8n = 0;
Py_BEGIN_ALLOW_THREADS
if (len < 4) {
if (WideCharToMultiByte(CP_UTF8, 0, wbuf, n,
self->buf, sizeof(self->buf) / sizeof(self->buf[0]),
NULL, NULL))
u8n = _copyfrombuf(self, buf, (DWORD)len);
} else {
u8n = WideCharToMultiByte(CP_UTF8, 0, wbuf, n,
buf, (DWORD)len, NULL, NULL);
}
if (u8n) {
read_len += u8n;
u8n = 0;
} else {
err = GetLastError();
if (err == ERROR_INSUFFICIENT_BUFFER) {
/* Calculate the needed buffer for a more useful error, as this
means our "/ 4" logic above is insufficient for some input.
*/
u8n = WideCharToMultiByte(CP_UTF8, 0, wbuf, n,
NULL, 0, NULL, NULL);
}
}
Py_END_ALLOW_THREADS
PyMem_Free(wbuf);
if (u8n) {
PyErr_Format(PyExc_SystemError,
"Buffer had room for %d bytes but %d bytes required",
len, u8n);
return -1;
}
if (err) {
PyErr_SetFromWindowsErr(err);
return -1;
}
return read_len;
}
/*[clinic input]
_io._WindowsConsoleIO.readinto
buffer: Py_buffer(accept={rwbuffer})
/
Same as RawIOBase.readinto().
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_readinto_impl(winconsoleio *self, Py_buffer *buffer)
/*[clinic end generated code: output=66d1bdfa3f20af39 input=4ed68da48a6baffe]*/
{
Py_ssize_t len = readinto(self, buffer->buf, buffer->len);
if (len < 0)
return NULL;
return PyLong_FromSsize_t(len);
}
static DWORD
new_buffersize(winconsoleio *self, DWORD currentsize)
{
DWORD addend;
/* Expand the buffer by an amount proportional to the current size,
giving us amortized linear-time behavior. For bigger sizes, use a
less-than-double growth factor to avoid excessive allocation. */
if (currentsize > 65536)
addend = currentsize >> 3;
else
addend = 256 + currentsize;
if (addend < SMALLCHUNK)
/* Avoid tiny read() calls. */
addend = SMALLCHUNK;
return addend + currentsize;
}
/*[clinic input]
_io._WindowsConsoleIO.readall
Read all data from the console, returned as bytes.
Return an empty bytes object at EOF.
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_readall_impl(winconsoleio *self)
/*[clinic end generated code: output=e6d312c684f6e23b input=4024d649a1006e69]*/
{
wchar_t *buf;
DWORD bufsize, n, len = 0;
PyObject *bytes;
DWORD bytes_size, rn;
if (self->handle == INVALID_HANDLE_VALUE)
return err_closed();
bufsize = BUFSIZ;
buf = (wchar_t*)PyMem_Malloc((bufsize + 1) * sizeof(wchar_t));
if (buf == NULL)
return NULL;
while (1) {
wchar_t *subbuf;
if (len >= (Py_ssize_t)bufsize) {
DWORD newsize = new_buffersize(self, len);
if (newsize > BUFMAX)
break;
if (newsize < bufsize) {
PyErr_SetString(PyExc_OverflowError,
"unbounded read returned more bytes "
"than a Python bytes object can hold");
PyMem_Free(buf);
return NULL;
}
bufsize = newsize;
wchar_t *tmp = PyMem_Realloc(buf,
(bufsize + 1) * sizeof(wchar_t));
if (tmp == NULL) {
PyMem_Free(buf);
return NULL;
}
buf = tmp;
}
subbuf = read_console_w(self->handle, bufsize - len, &n);
if (subbuf == NULL) {
PyMem_Free(buf);
return NULL;
}
if (n > 0)
wcsncpy_s(&buf[len], bufsize - len + 1, subbuf, n);
PyMem_Free(subbuf);
/* when the read is empty we break */
if (n == 0)
break;
len += n;
}
if (len == 0 && _buflen(self) == 0) {
/* when the result starts with ^Z we return an empty buffer */
PyMem_Free(buf);
return PyBytes_FromStringAndSize(NULL, 0);
}
if (len) {
Py_BEGIN_ALLOW_THREADS
bytes_size = WideCharToMultiByte(CP_UTF8, 0, buf, len,
NULL, 0, NULL, NULL);
Py_END_ALLOW_THREADS
if (!bytes_size) {
DWORD err = GetLastError();
PyMem_Free(buf);
return PyErr_SetFromWindowsErr(err);
}
} else {
bytes_size = 0;
}
bytes_size += _buflen(self);
bytes = PyBytes_FromStringAndSize(NULL, bytes_size);
rn = _copyfrombuf(self, PyBytes_AS_STRING(bytes), bytes_size);
if (len) {
Py_BEGIN_ALLOW_THREADS
bytes_size = WideCharToMultiByte(CP_UTF8, 0, buf, len,
&PyBytes_AS_STRING(bytes)[rn], bytes_size - rn, NULL, NULL);
Py_END_ALLOW_THREADS
if (!bytes_size) {
DWORD err = GetLastError();
PyMem_Free(buf);
Py_CLEAR(bytes);
return PyErr_SetFromWindowsErr(err);
}
/* add back the number of preserved bytes */
bytes_size += rn;
}
PyMem_Free(buf);
if (bytes_size < (size_t)PyBytes_GET_SIZE(bytes)) {
if (_PyBytes_Resize(&bytes, n * sizeof(wchar_t)) < 0) {
Py_CLEAR(bytes);
return NULL;
}
}
return bytes;
}
/*[clinic input]
_io._WindowsConsoleIO.read
size: io_ssize_t = -1
/
Read at most size bytes, returned as bytes.
Only makes one system call when size is a positive integer,
so less data may be returned than requested.
Return an empty bytes object at EOF.
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_read_impl(winconsoleio *self, Py_ssize_t size)
/*[clinic end generated code: output=57df68af9f4b22d0 input=6c56fceec460f1dd]*/
{
PyObject *bytes;
Py_ssize_t bytes_size;
if (self->handle == INVALID_HANDLE_VALUE)
return err_closed();
if (!self->readable)
return err_mode("reading");
if (size < 0)
return _io__WindowsConsoleIO_readall_impl(self);
if (size > BUFMAX) {
PyErr_Format(PyExc_ValueError, "cannot read more than %d bytes", BUFMAX);
return NULL;
}
bytes = PyBytes_FromStringAndSize(NULL, size);
if (bytes == NULL)
return NULL;
bytes_size = readinto(self, PyBytes_AS_STRING(bytes), PyBytes_GET_SIZE(bytes));
if (bytes_size < 0) {
Py_CLEAR(bytes);
return NULL;
}
if (bytes_size < PyBytes_GET_SIZE(bytes)) {
if (_PyBytes_Resize(&bytes, bytes_size) < 0) {
Py_CLEAR(bytes);
return NULL;
}
}
return bytes;
}
/*[clinic input]
_io._WindowsConsoleIO.write
b: Py_buffer
/
Write buffer b to file, return number of bytes written.
Only makes one system call, so not all of the data may be written.
The number of bytes actually written is returned.
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_write_impl(winconsoleio *self, Py_buffer *b)
/*[clinic end generated code: output=775bdb16fbf9137b input=be35fb624f97c941]*/
{
BOOL res = TRUE;
wchar_t *wbuf;
DWORD len, wlen, n = 0;
if (self->handle == INVALID_HANDLE_VALUE)
return err_closed();
if (!self->writable)
return err_mode("writing");
if (!b->len) {
return PyLong_FromLong(0);
}
if (b->len > BUFMAX)
len = BUFMAX;
else
len = (DWORD)b->len;
Py_BEGIN_ALLOW_THREADS
wlen = MultiByteToWideChar(CP_UTF8, 0, b->buf, len, NULL, 0);
/* issue11395 there is an unspecified upper bound on how many bytes
can be written at once. We cap at 32k - the caller will have to
handle partial writes.
Since we don't know how many input bytes are being ignored, we
have to reduce and recalculate. */
while (wlen > 32766 / sizeof(wchar_t)) {
len /= 2;
wlen = MultiByteToWideChar(CP_UTF8, 0, b->buf, len, NULL, 0);
}
Py_END_ALLOW_THREADS
if (!wlen)
return PyErr_SetFromWindowsErr(0);
wbuf = (wchar_t*)PyMem_Malloc(wlen * sizeof(wchar_t));
Py_BEGIN_ALLOW_THREADS
wlen = MultiByteToWideChar(CP_UTF8, 0, b->buf, len, wbuf, wlen);
if (wlen) {
res = WriteConsoleW(self->handle, wbuf, wlen, &n, NULL);
if (res && n < wlen) {
/* Wrote fewer characters than expected, which means our
* len value may be wrong. So recalculate it from the
* characters that were written. As this could potentially
* result in a different value, we also validate that value.
*/
len = WideCharToMultiByte(CP_UTF8, 0, wbuf, n,
NULL, 0, NULL, NULL);
if (len) {
wlen = MultiByteToWideChar(CP_UTF8, 0, b->buf, len,
NULL, 0);
assert(wlen == len);
}
}
} else
res = 0;
Py_END_ALLOW_THREADS
if (!res) {
DWORD err = GetLastError();
PyMem_Free(wbuf);
return PyErr_SetFromWindowsErr(err);
}
PyMem_Free(wbuf);
return PyLong_FromSsize_t(len);
}
static PyObject *
winconsoleio_repr(winconsoleio *self)
{
if (self->handle == INVALID_HANDLE_VALUE)
return PyUnicode_FromFormat("<_io._WindowsConsoleIO [closed]>");
if (self->readable)
return PyUnicode_FromFormat("<_io._WindowsConsoleIO mode='rb' closefd=%s>",
self->closehandle ? "True" : "False");
if (self->writable)
return PyUnicode_FromFormat("<_io._WindowsConsoleIO mode='wb' closefd=%s>",
self->closehandle ? "True" : "False");
PyErr_SetString(PyExc_SystemError, "_WindowsConsoleIO has invalid mode");
return NULL;
}
/*[clinic input]
_io._WindowsConsoleIO.isatty
Always True.
[clinic start generated code]*/
static PyObject *
_io__WindowsConsoleIO_isatty_impl(winconsoleio *self)
/*[clinic end generated code: output=9eac09d287c11bd7 input=9b91591dbe356f86]*/
{
if (self->handle == INVALID_HANDLE_VALUE)
return err_closed();
Py_RETURN_TRUE;
}
static PyObject *
winconsoleio_getstate(winconsoleio *self)
{
PyErr_Format(PyExc_TypeError,
"cannot serialize '%s' object", Py_TYPE(self)->tp_name);
return NULL;
}
#include "third_party/python/Modules/_io/clinic/winconsoleio.inc"
static PyMethodDef winconsoleio_methods[] = {
_IO__WINDOWSCONSOLEIO_READ_METHODDEF
_IO__WINDOWSCONSOLEIO_READALL_METHODDEF
_IO__WINDOWSCONSOLEIO_READINTO_METHODDEF
_IO__WINDOWSCONSOLEIO_WRITE_METHODDEF
_IO__WINDOWSCONSOLEIO_CLOSE_METHODDEF
_IO__WINDOWSCONSOLEIO_READABLE_METHODDEF
_IO__WINDOWSCONSOLEIO_WRITABLE_METHODDEF
_IO__WINDOWSCONSOLEIO_FILENO_METHODDEF
_IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF
{"__getstate__", (PyCFunction)winconsoleio_getstate, METH_NOARGS, NULL},
{NULL, NULL} /* sentinel */
};
/* 'closed' and 'mode' are attributes for compatibility with FileIO. */
static PyObject *
get_closed(winconsoleio *self, void *closure)
{
return PyBool_FromLong((long)(self->handle == INVALID_HANDLE_VALUE));
}
static PyObject *
get_closefd(winconsoleio *self, void *closure)
{
return PyBool_FromLong((long)(self->closehandle));
}
static PyObject *
get_mode(winconsoleio *self, void *closure)
{
return PyUnicode_FromString(self->readable ? "rb" : "wb");
}
static PyGetSetDef winconsoleio_getsetlist[] = {
{"closed", (getter)get_closed, NULL, "True if the file is closed"},
{"closefd", (getter)get_closefd, NULL,
"True if the file descriptor will be closed by close()."},
{"mode", (getter)get_mode, NULL, "String giving the file mode"},
{NULL},
};
static PyMemberDef winconsoleio_members[] = {
{"_blksize", T_UINT, offsetof(winconsoleio, blksize), 0},
{"_finalizing", T_BOOL, offsetof(winconsoleio, finalizing), 0},
{NULL}
};
PyTypeObject PyWindowsConsoleIO_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io._WindowsConsoleIO",
sizeof(winconsoleio),
0,
(destructor)winconsoleio_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)winconsoleio_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /* tp_flags */
_io__WindowsConsoleIO___init____doc__, /* tp_doc */
(traverseproc)winconsoleio_traverse, /* tp_traverse */
(inquiry)winconsoleio_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(winconsoleio, weakreflist), /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
winconsoleio_methods, /* tp_methods */
winconsoleio_members, /* tp_members */
winconsoleio_getsetlist, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(winconsoleio, dict), /* tp_dictoffset */
_io__WindowsConsoleIO___init__, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
winconsoleio_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
PyAPI_DATA(PyObject *) _PyWindowsConsoleIO_Type = (PyObject*)&PyWindowsConsoleIO_Type;
| 34,016 | 1,182 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/bufferedio.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/errno.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/memoryobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pylifecycle.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pythread.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Modules/_io/_iomodule.h"
/* clang-format off */
/*
An implementation of Buffered I/O as defined by PEP 3116 - "New I/O"
Classes defined here: BufferedIOBase, BufferedReader, BufferedWriter,
BufferedRandom.
Written by Amaury Forgeot d'Arc and Antoine Pitrou
*/
/*[clinic input]
module _io
class _io._BufferedIOBase "PyObject *" "&PyBufferedIOBase_Type"
class _io._Buffered "buffered *" "&PyBufferedIOBase_Type"
class _io.BufferedReader "buffered *" "&PyBufferedReader_Type"
class _io.BufferedWriter "buffered *" "&PyBufferedWriter_Type"
class _io.BufferedRWPair "rwpair *" "&PyBufferedRWPair_Type"
class _io.BufferedRandom "buffered *" "&PyBufferedRandom_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=59460b9c5639984d]*/
/*[python input]
class io_ssize_t_converter(CConverter):
type = 'Py_ssize_t'
converter = '_PyIO_ConvertSsize_t'
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=d0a811d3cbfd1b33]*/
_Py_IDENTIFIER(close);
_Py_IDENTIFIER(_dealloc_warn);
_Py_IDENTIFIER(flush);
_Py_IDENTIFIER(isatty);
_Py_IDENTIFIER(mode);
_Py_IDENTIFIER(name);
_Py_IDENTIFIER(peek);
_Py_IDENTIFIER(read);
_Py_IDENTIFIER(read1);
_Py_IDENTIFIER(readable);
_Py_IDENTIFIER(readinto);
_Py_IDENTIFIER(readinto1);
_Py_IDENTIFIER(writable);
_Py_IDENTIFIER(write);
/*
* BufferedIOBase class, inherits from IOBase.
*/
PyDoc_STRVAR(bufferediobase_doc,
"Base class for buffered IO objects.\n"
"\n"
"The main difference with RawIOBase is that the read() method\n"
"supports omitting the size argument, and does not have a default\n"
"implementation that defers to readinto().\n"
"\n"
"In addition, read(), readinto() and write() may raise\n"
"BlockingIOError if the underlying raw stream is in non-blocking\n"
"mode and not ready; unlike their raw counterparts, they will never\n"
"return None.\n"
"\n"
"A typical implementation should not inherit from a RawIOBase\n"
"implementation, but wrap one.\n"
);
static PyObject *
_bufferediobase_readinto_generic(PyObject *self, Py_buffer *buffer, char readinto1)
{
Py_ssize_t len;
PyObject *data;
data = _PyObject_CallMethodId(self,
readinto1 ? &PyId_read1 : &PyId_read,
"n", buffer->len);
if (data == NULL)
return NULL;
if (!PyBytes_Check(data)) {
Py_DECREF(data);
PyErr_SetString(PyExc_TypeError, "read() should return bytes");
return NULL;
}
len = Py_SIZE(data);
if (len > buffer->len) {
PyErr_Format(PyExc_ValueError,
"read() returned too much data: "
"%zd bytes requested, %zd returned",
buffer->len, len);
Py_DECREF(data);
return NULL;
}
memcpy(buffer->buf, PyBytes_AS_STRING(data), len);
Py_DECREF(data);
return PyLong_FromSsize_t(len);
}
/*[clinic input]
_io._BufferedIOBase.readinto
buffer: Py_buffer(accept={rwbuffer})
/
[clinic start generated code]*/
static PyObject *
_io__BufferedIOBase_readinto_impl(PyObject *self, Py_buffer *buffer)
/*[clinic end generated code: output=8c8cda6684af8038 input=00a6b9a38f29830a]*/
{
return _bufferediobase_readinto_generic(self, buffer, 0);
}
/*[clinic input]
_io._BufferedIOBase.readinto1
buffer: Py_buffer(accept={rwbuffer})
/
[clinic start generated code]*/
static PyObject *
_io__BufferedIOBase_readinto1_impl(PyObject *self, Py_buffer *buffer)
/*[clinic end generated code: output=358623e4fd2b69d3 input=ebad75b4aadfb9be]*/
{
return _bufferediobase_readinto_generic(self, buffer, 1);
}
static PyObject *
bufferediobase_unsupported(const char *message)
{
_PyIO_State *state = IO_STATE();
if (state != NULL)
PyErr_SetString(state->unsupported_operation, message);
return NULL;
}
/*[clinic input]
_io._BufferedIOBase.detach
Disconnect this buffer from its underlying raw stream and return it.
After the raw stream has been detached, the buffer is in an unusable
state.
[clinic start generated code]*/
static PyObject *
_io__BufferedIOBase_detach_impl(PyObject *self)
/*[clinic end generated code: output=754977c8d10ed88c input=822427fb58fe4169]*/
{
return bufferediobase_unsupported("detach");
}
PyDoc_STRVAR(bufferediobase_read_doc,
"Read and return up to n bytes.\n"
"\n"
"If the argument is omitted, None, or negative, reads and\n"
"returns all data until EOF.\n"
"\n"
"If the argument is positive, and the underlying raw stream is\n"
"not 'interactive', multiple raw reads may be issued to satisfy\n"
"the byte count (unless EOF is reached first). But for\n"
"interactive raw streams (as well as sockets and pipes), at most\n"
"one raw read will be issued, and a short result does not imply\n"
"that EOF is imminent.\n"
"\n"
"Returns an empty bytes object on EOF.\n"
"\n"
"Returns None if the underlying raw stream was open in non-blocking\n"
"mode and no data is available at the moment.\n");
static PyObject *
bufferediobase_read(PyObject *self, PyObject *args)
{
return bufferediobase_unsupported("read");
}
PyDoc_STRVAR(bufferediobase_read1_doc,
"Read and return up to n bytes, with at most one read() call\n"
"to the underlying raw stream. A short result does not imply\n"
"that EOF is imminent.\n"
"\n"
"Returns an empty bytes object on EOF.\n");
static PyObject *
bufferediobase_read1(PyObject *self, PyObject *args)
{
return bufferediobase_unsupported("read1");
}
PyDoc_STRVAR(bufferediobase_write_doc,
"Write the given buffer to the IO stream.\n"
"\n"
"Returns the number of bytes written, which is always the length of b\n"
"in bytes.\n"
"\n"
"Raises BlockingIOError if the buffer is full and the\n"
"underlying raw stream cannot accept more data at the moment.\n");
static PyObject *
bufferediobase_write(PyObject *self, PyObject *args)
{
return bufferediobase_unsupported("write");
}
typedef struct {
PyObject_HEAD
PyObject *raw;
int ok; /* Initialized? */
int detached;
int readable;
int writable;
char finalizing;
/* True if this is a vanilla Buffered object (rather than a user derived
class) *and* the raw stream is a vanilla FileIO object. */
int fast_closed_checks;
/* Absolute position inside the raw stream (-1 if unknown). */
Py_off_t abs_pos;
/* A static buffer of size `buffer_size` */
char *buffer;
/* Current logical position in the buffer. */
Py_off_t pos;
/* Position of the raw stream in the buffer. */
Py_off_t raw_pos;
/* Just after the last buffered byte in the buffer, or -1 if the buffer
isn't ready for reading. */
Py_off_t read_end;
/* Just after the last byte actually written */
Py_off_t write_pos;
/* Just after the last byte waiting to be written, or -1 if the buffer
isn't ready for writing. */
Py_off_t write_end;
#ifdef WITH_THREAD
PyThread_type_lock lock;
volatile long owner;
#endif
Py_ssize_t buffer_size;
Py_ssize_t buffer_mask;
PyObject *dict;
PyObject *weakreflist;
} buffered;
/*
Implementation notes:
* BufferedReader, BufferedWriter and BufferedRandom try to share most
methods (this is helped by the members `readable` and `writable`, which
are initialized in the respective constructors)
* They also share a single buffer for reading and writing. This enables
interleaved reads and writes without flushing. It also makes the logic
a bit trickier to get right.
* The absolute position of the raw stream is cached, if possible, in the
`abs_pos` member. It must be updated every time an operation is done
on the raw stream. If not sure, it can be reinitialized by calling
_buffered_raw_tell(), which queries the raw stream (_buffered_raw_seek()
also does it). To read it, use RAW_TELL().
* Three helpers, _bufferedreader_raw_read, _bufferedwriter_raw_write and
_bufferedwriter_flush_unlocked do a lot of useful housekeeping.
NOTE: we should try to maintain block alignment of reads and writes to the
raw stream (according to the buffer size), but for now it is only done
in read() and friends.
*/
/* These macros protect the buffered object against concurrent operations. */
#ifdef WITH_THREAD
static int
_enter_buffered_busy(buffered *self)
{
int relax_locking;
PyLockStatus st;
if (self->owner == PyThread_get_thread_ident()) {
PyErr_Format(PyExc_RuntimeError,
"reentrant call inside %R", self);
return 0;
}
relax_locking = (_Py_Finalizing != NULL);
Py_BEGIN_ALLOW_THREADS
if (!relax_locking)
st = PyThread_acquire_lock(self->lock, 1);
else {
/* When finalizing, we don't want a deadlock to happen with daemon
* threads abruptly shut down while they owned the lock.
* Therefore, only wait for a grace period (1 s.).
* Note that non-daemon threads have already exited here, so this
* shouldn't affect carefully written threaded I/O code.
*/
st = PyThread_acquire_lock_timed(self->lock, (PY_TIMEOUT_T)1e6, 0);
}
Py_END_ALLOW_THREADS
if (relax_locking && st != PY_LOCK_ACQUIRED) {
PyObject *msgobj = PyUnicode_FromFormat(
"could not acquire lock for %A at interpreter "
"shutdown, possibly due to daemon threads",
(PyObject *) self);
char *msg = PyUnicode_AsUTF8(msgobj);
Py_FatalError(msg);
}
return 1;
}
#define ENTER_BUFFERED(self) \
( (PyThread_acquire_lock(self->lock, 0) ? \
1 : _enter_buffered_busy(self)) \
&& (self->owner = PyThread_get_thread_ident(), 1) )
#define LEAVE_BUFFERED(self) \
do { \
self->owner = 0; \
PyThread_release_lock(self->lock); \
} while(0);
#else
#define ENTER_BUFFERED(self) 1
#define LEAVE_BUFFERED(self)
#endif
#define CHECK_INITIALIZED(self) \
if (self->ok <= 0) { \
if (self->detached) { \
PyErr_SetString(PyExc_ValueError, \
"raw stream has been detached"); \
} else { \
PyErr_SetString(PyExc_ValueError, \
"I/O operation on uninitialized object"); \
} \
return NULL; \
}
#define CHECK_INITIALIZED_INT(self) \
if (self->ok <= 0) { \
if (self->detached) { \
PyErr_SetString(PyExc_ValueError, \
"raw stream has been detached"); \
} else { \
PyErr_SetString(PyExc_ValueError, \
"I/O operation on uninitialized object"); \
} \
return -1; \
}
#define IS_CLOSED(self) \
(self->fast_closed_checks \
? _PyFileIO_closed(self->raw) \
: buffered_closed(self))
#define CHECK_CLOSED(self, error_msg) \
if (IS_CLOSED(self)) { \
PyErr_SetString(PyExc_ValueError, error_msg); \
return NULL; \
}
#define VALID_READ_BUFFER(self) \
(self->readable && self->read_end != -1)
#define VALID_WRITE_BUFFER(self) \
(self->writable && self->write_end != -1)
#define ADJUST_POSITION(self, _new_pos) \
do { \
self->pos = _new_pos; \
if (VALID_READ_BUFFER(self) && self->read_end < self->pos) \
self->read_end = self->pos; \
} while(0)
#define READAHEAD(self) \
((self->readable && VALID_READ_BUFFER(self)) \
? (self->read_end - self->pos) : 0)
#define RAW_OFFSET(self) \
(((VALID_READ_BUFFER(self) || VALID_WRITE_BUFFER(self)) \
&& self->raw_pos >= 0) ? self->raw_pos - self->pos : 0)
#define RAW_TELL(self) \
(self->abs_pos != -1 ? self->abs_pos : _buffered_raw_tell(self))
#define MINUS_LAST_BLOCK(self, size) \
(self->buffer_mask ? \
(size & ~self->buffer_mask) : \
(self->buffer_size * (size / self->buffer_size)))
static void
buffered_dealloc(buffered *self)
{
self->finalizing = 1;
if (_PyIOBase_finalize((PyObject *) self) < 0)
return;
_PyObject_GC_UNTRACK(self);
self->ok = 0;
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *)self);
Py_CLEAR(self->raw);
if (self->buffer) {
PyMem_Free(self->buffer);
self->buffer = NULL;
}
#ifdef WITH_THREAD
if (self->lock) {
PyThread_free_lock(self->lock);
self->lock = NULL;
}
#endif
Py_CLEAR(self->dict);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyObject *
buffered_sizeof(buffered *self, void *unused)
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(self));
if (self->buffer)
res += self->buffer_size;
return PyLong_FromSsize_t(res);
}
static int
buffered_traverse(buffered *self, visitproc visit, void *arg)
{
Py_VISIT(self->raw);
Py_VISIT(self->dict);
return 0;
}
static int
buffered_clear(buffered *self)
{
self->ok = 0;
Py_CLEAR(self->raw);
Py_CLEAR(self->dict);
return 0;
}
/* Because this can call arbitrary code, it shouldn't be called when
the refcount is 0 (that is, not directly from tp_dealloc unless
the refcount has been temporarily re-incremented). */
static PyObject *
buffered_dealloc_warn(buffered *self, PyObject *source)
{
if (self->ok && self->raw) {
PyObject *r;
r = _PyObject_CallMethodId(self->raw, &PyId__dealloc_warn, "O", source);
if (r)
Py_DECREF(r);
else
PyErr_Clear();
}
Py_RETURN_NONE;
}
/*
* _BufferedIOMixin methods
* This is not a class, just a collection of methods that will be reused
* by BufferedReader and BufferedWriter
*/
/* Flush and close */
static PyObject *
buffered_simple_flush(buffered *self, PyObject *args)
{
CHECK_INITIALIZED(self)
return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL);
}
static int
buffered_closed(buffered *self)
{
int closed;
PyObject *res;
CHECK_INITIALIZED_INT(self)
res = PyObject_GetAttr(self->raw, _PyIO_str_closed);
if (res == NULL)
return -1;
closed = PyObject_IsTrue(res);
Py_DECREF(res);
return closed;
}
static PyObject *
buffered_closed_get(buffered *self, void *context)
{
CHECK_INITIALIZED(self)
return PyObject_GetAttr(self->raw, _PyIO_str_closed);
}
static PyObject *
buffered_close(buffered *self, PyObject *args)
{
PyObject *res = NULL, *exc = NULL, *val, *tb;
int r;
CHECK_INITIALIZED(self)
if (!ENTER_BUFFERED(self))
return NULL;
r = buffered_closed(self);
if (r < 0)
goto end;
if (r > 0) {
res = Py_None;
Py_INCREF(res);
goto end;
}
if (self->finalizing) {
PyObject *r = buffered_dealloc_warn(self, (PyObject *) self);
if (r)
Py_DECREF(r);
else
PyErr_Clear();
}
/* flush() will most probably re-take the lock, so drop it first */
LEAVE_BUFFERED(self)
res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL);
if (!ENTER_BUFFERED(self))
return NULL;
if (res == NULL)
PyErr_Fetch(&exc, &val, &tb);
else
Py_DECREF(res);
res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL);
if (self->buffer) {
PyMem_Free(self->buffer);
self->buffer = NULL;
}
if (exc != NULL) {
_PyErr_ChainExceptions(exc, val, tb);
Py_CLEAR(res);
}
end:
LEAVE_BUFFERED(self)
return res;
}
/* detach */
static PyObject *
buffered_detach(buffered *self, PyObject *args)
{
PyObject *raw, *res;
CHECK_INITIALIZED(self)
res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL);
if (res == NULL)
return NULL;
Py_DECREF(res);
raw = self->raw;
self->raw = NULL;
self->detached = 1;
self->ok = 0;
return raw;
}
/* Inquiries */
static PyObject *
buffered_seekable(buffered *self, PyObject *args)
{
CHECK_INITIALIZED(self)
return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seekable, NULL);
}
static PyObject *
buffered_readable(buffered *self, PyObject *args)
{
CHECK_INITIALIZED(self)
return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readable, NULL);
}
static PyObject *
buffered_writable(buffered *self, PyObject *args)
{
CHECK_INITIALIZED(self)
return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_writable, NULL);
}
static PyObject *
buffered_name_get(buffered *self, void *context)
{
CHECK_INITIALIZED(self)
return _PyObject_GetAttrId(self->raw, &PyId_name);
}
static PyObject *
buffered_mode_get(buffered *self, void *context)
{
CHECK_INITIALIZED(self)
return _PyObject_GetAttrId(self->raw, &PyId_mode);
}
/* Lower-level APIs */
static PyObject *
buffered_fileno(buffered *self, PyObject *args)
{
CHECK_INITIALIZED(self)
return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_fileno, NULL);
}
static PyObject *
buffered_isatty(buffered *self, PyObject *args)
{
CHECK_INITIALIZED(self)
return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_isatty, NULL);
}
/* Serialization */
static PyObject *
buffered_getstate(buffered *self, PyObject *args)
{
PyErr_Format(PyExc_TypeError,
"cannot serialize '%s' object", Py_TYPE(self)->tp_name);
return NULL;
}
/* Forward decls */
static PyObject *
_bufferedwriter_flush_unlocked(buffered *);
static Py_ssize_t
_bufferedreader_fill_buffer(buffered *self);
static void
_bufferedreader_reset_buf(buffered *self);
static void
_bufferedwriter_reset_buf(buffered *self);
static PyObject *
_bufferedreader_peek_unlocked(buffered *self);
static PyObject *
_bufferedreader_read_all(buffered *self);
static PyObject *
_bufferedreader_read_fast(buffered *self, Py_ssize_t);
static PyObject *
_bufferedreader_read_generic(buffered *self, Py_ssize_t);
static Py_ssize_t
_bufferedreader_raw_read(buffered *self, char *start, Py_ssize_t len);
/*
* Helpers
*/
/* Sets the current error to BlockingIOError */
static void
_set_BlockingIOError(const char *msg, Py_ssize_t written)
{
PyObject *err;
PyErr_Clear();
err = PyObject_CallFunction(PyExc_BlockingIOError, "isn",
errno, msg, written);
if (err)
PyErr_SetObject(PyExc_BlockingIOError, err);
Py_XDECREF(err);
}
/* Returns the address of the `written` member if a BlockingIOError was
raised, NULL otherwise. The error is always re-raised. */
static Py_ssize_t *
_buffered_check_blocking_error(void)
{
PyObject *t, *v, *tb;
PyOSErrorObject *err;
PyErr_Fetch(&t, &v, &tb);
if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) {
PyErr_Restore(t, v, tb);
return NULL;
}
err = (PyOSErrorObject *) v;
/* TODO: sanity check (err->written >= 0) */
PyErr_Restore(t, v, tb);
return &err->written;
}
static Py_off_t
_buffered_raw_tell(buffered *self)
{
Py_off_t n;
PyObject *res;
res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_tell, NULL);
if (res == NULL)
return -1;
n = PyNumber_AsOff_t(res, PyExc_ValueError);
Py_DECREF(res);
if (n < 0) {
if (!PyErr_Occurred())
PyErr_Format(PyExc_IOError,
"Raw stream returned invalid position %" PY_PRIdOFF,
(PY_OFF_T_COMPAT)n);
return -1;
}
self->abs_pos = n;
return n;
}
static Py_off_t
_buffered_raw_seek(buffered *self, Py_off_t target, int whence)
{
PyObject *res, *posobj, *whenceobj;
Py_off_t n;
posobj = PyLong_FromOff_t(target);
if (posobj == NULL)
return -1;
whenceobj = PyLong_FromLong(whence);
if (whenceobj == NULL) {
Py_DECREF(posobj);
return -1;
}
res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seek,
posobj, whenceobj, NULL);
Py_DECREF(posobj);
Py_DECREF(whenceobj);
if (res == NULL)
return -1;
n = PyNumber_AsOff_t(res, PyExc_ValueError);
Py_DECREF(res);
if (n < 0) {
if (!PyErr_Occurred())
PyErr_Format(PyExc_IOError,
"Raw stream returned invalid position %" PY_PRIdOFF,
(PY_OFF_T_COMPAT)n);
return -1;
}
self->abs_pos = n;
return n;
}
static int
_buffered_init(buffered *self)
{
Py_ssize_t n;
if (self->buffer_size <= 0) {
PyErr_SetString(PyExc_ValueError,
"buffer size must be strictly positive");
return -1;
}
if (self->buffer)
PyMem_Free(self->buffer);
self->buffer = PyMem_Malloc(self->buffer_size);
if (self->buffer == NULL) {
PyErr_NoMemory();
return -1;
}
#ifdef WITH_THREAD
if (self->lock)
PyThread_free_lock(self->lock);
self->lock = PyThread_allocate_lock();
if (self->lock == NULL) {
PyErr_SetString(PyExc_RuntimeError, "can't allocate read lock");
return -1;
}
self->owner = 0;
#endif
/* Find out whether buffer_size is a power of 2 */
/* XXX is this optimization useful? */
for (n = self->buffer_size - 1; n & 1; n >>= 1)
;
if (n == 0)
self->buffer_mask = self->buffer_size - 1;
else
self->buffer_mask = 0;
if (_buffered_raw_tell(self) == -1)
PyErr_Clear();
return 0;
}
/* Return 1 if an EnvironmentError with errno == EINTR is set (and then
clears the error indicator), 0 otherwise.
Should only be called when PyErr_Occurred() is true.
*/
int
_PyIO_trap_eintr(void)
{
static PyObject *eintr_int = NULL;
PyObject *typ, *val, *tb;
PyEnvironmentErrorObject *env_err;
if (eintr_int == NULL) {
eintr_int = PyLong_FromLong(EINTR);
assert(eintr_int != NULL);
}
if (!PyErr_ExceptionMatches(PyExc_EnvironmentError))
return 0;
PyErr_Fetch(&typ, &val, &tb);
PyErr_NormalizeException(&typ, &val, &tb);
env_err = (PyEnvironmentErrorObject *) val;
assert(env_err != NULL);
if (env_err->myerrno != NULL &&
PyObject_RichCompareBool(env_err->myerrno, eintr_int, Py_EQ) > 0) {
Py_DECREF(typ);
Py_DECREF(val);
Py_XDECREF(tb);
return 1;
}
/* This silences any error set by PyObject_RichCompareBool() */
PyErr_Restore(typ, val, tb);
return 0;
}
/*
* Shared methods and wrappers
*/
static PyObject *
buffered_flush_and_rewind_unlocked(buffered *self)
{
PyObject *res;
res = _bufferedwriter_flush_unlocked(self);
if (res == NULL)
return NULL;
Py_DECREF(res);
if (self->readable) {
/* Rewind the raw stream so that its position corresponds to
the current logical position. */
Py_off_t n;
n = _buffered_raw_seek(self, -RAW_OFFSET(self), 1);
_bufferedreader_reset_buf(self);
if (n == -1)
return NULL;
}
Py_RETURN_NONE;
}
static PyObject *
buffered_flush(buffered *self, PyObject *args)
{
PyObject *res;
CHECK_INITIALIZED(self)
CHECK_CLOSED(self, "flush of closed file")
if (!ENTER_BUFFERED(self))
return NULL;
res = buffered_flush_and_rewind_unlocked(self);
LEAVE_BUFFERED(self)
return res;
}
/*[clinic input]
_io._Buffered.peek
size: Py_ssize_t = 0
/
[clinic start generated code]*/
static PyObject *
_io__Buffered_peek_impl(buffered *self, Py_ssize_t size)
/*[clinic end generated code: output=ba7a097ca230102b input=37ffb97d06ff4adb]*/
{
PyObject *res = NULL;
CHECK_INITIALIZED(self)
CHECK_CLOSED(self, "peek of closed file")
if (!ENTER_BUFFERED(self))
return NULL;
if (self->writable) {
res = buffered_flush_and_rewind_unlocked(self);
if (res == NULL)
goto end;
Py_CLEAR(res);
}
res = _bufferedreader_peek_unlocked(self);
end:
LEAVE_BUFFERED(self)
return res;
}
/*[clinic input]
_io._Buffered.read
size as n: io_ssize_t = -1
/
[clinic start generated code]*/
static PyObject *
_io__Buffered_read_impl(buffered *self, Py_ssize_t n)
/*[clinic end generated code: output=f41c78bb15b9bbe9 input=c0939ec7f9e9354f]*/
{
PyObject *res;
CHECK_INITIALIZED(self)
if (n < -1) {
PyErr_SetString(PyExc_ValueError,
"read length must be positive or -1");
return NULL;
}
CHECK_CLOSED(self, "read of closed file")
if (n == -1) {
/* The number of bytes is unspecified, read until the end of stream */
if (!ENTER_BUFFERED(self))
return NULL;
res = _bufferedreader_read_all(self);
}
else {
res = _bufferedreader_read_fast(self, n);
if (res != Py_None)
return res;
Py_DECREF(res);
if (!ENTER_BUFFERED(self))
return NULL;
res = _bufferedreader_read_generic(self, n);
}
LEAVE_BUFFERED(self)
return res;
}
/*[clinic input]
_io._Buffered.read1
size as n: Py_ssize_t
/
[clinic start generated code]*/
static PyObject *
_io__Buffered_read1_impl(buffered *self, Py_ssize_t n)
/*[clinic end generated code: output=bcc4fb4e54d103a3 input=8d2869c18b983184]*/
{
Py_ssize_t have, r;
PyObject *res = NULL;
CHECK_INITIALIZED(self)
if (n < 0) {
PyErr_SetString(PyExc_ValueError,
"read length must be positive");
return NULL;
}
CHECK_CLOSED(self, "read of closed file")
if (n == 0)
return PyBytes_FromStringAndSize(NULL, 0);
/* Return up to n bytes. If at least one byte is buffered, we
only return buffered bytes. Otherwise, we do one raw read. */
have = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t);
if (have > 0) {
n = Py_MIN(have, n);
res = _bufferedreader_read_fast(self, n);
assert(res != Py_None);
return res;
}
res = PyBytes_FromStringAndSize(NULL, n);
if (res == NULL)
return NULL;
if (!ENTER_BUFFERED(self)) {
Py_DECREF(res);
return NULL;
}
_bufferedreader_reset_buf(self);
r = _bufferedreader_raw_read(self, PyBytes_AS_STRING(res), n);
LEAVE_BUFFERED(self)
if (r == -1) {
Py_DECREF(res);
return NULL;
}
if (r == -2)
r = 0;
if (n > r)
_PyBytes_Resize(&res, r);
return res;
}
static PyObject *
_buffered_readinto_generic(buffered *self, Py_buffer *buffer, char readinto1)
{
Py_ssize_t n, written = 0, remaining;
PyObject *res = NULL;
CHECK_INITIALIZED(self)
CHECK_CLOSED(self, "readinto of closed file")
n = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t);
if (n > 0) {
if (n >= buffer->len) {
memcpy(buffer->buf, self->buffer + self->pos, buffer->len);
self->pos += buffer->len;
return PyLong_FromSsize_t(buffer->len);
}
memcpy(buffer->buf, self->buffer + self->pos, n);
self->pos += n;
written = n;
}
if (!ENTER_BUFFERED(self))
return NULL;
if (self->writable) {
res = buffered_flush_and_rewind_unlocked(self);
if (res == NULL)
goto end;
Py_CLEAR(res);
}
_bufferedreader_reset_buf(self);
self->pos = 0;
for (remaining = buffer->len - written;
remaining > 0;
written += n, remaining -= n) {
/* If remaining bytes is larger than internal buffer size, copy
* directly into caller's buffer. */
if (remaining > self->buffer_size) {
n = _bufferedreader_raw_read(self, (char *) buffer->buf + written,
remaining);
}
/* In readinto1 mode, we do not want to fill the internal
buffer if we already have some data to return */
else if (!(readinto1 && written)) {
n = _bufferedreader_fill_buffer(self);
if (n > 0) {
if (n > remaining)
n = remaining;
memcpy((char *) buffer->buf + written,
self->buffer + self->pos, n);
self->pos += n;
continue; /* short circuit */
}
}
else
n = 0;
if (n == 0 || (n == -2 && written > 0))
break;
if (n < 0) {
if (n == -2) {
Py_INCREF(Py_None);
res = Py_None;
}
goto end;
}
/* At most one read in readinto1 mode */
if (readinto1) {
written += n;
break;
}
}
res = PyLong_FromSsize_t(written);
end:
LEAVE_BUFFERED(self);
return res;
}
/*[clinic input]
_io._Buffered.readinto
buffer: Py_buffer(accept={rwbuffer})
/
[clinic start generated code]*/
static PyObject *
_io__Buffered_readinto_impl(buffered *self, Py_buffer *buffer)
/*[clinic end generated code: output=bcb376580b1d8170 input=ed6b98b7a20a3008]*/
{
return _buffered_readinto_generic(self, buffer, 0);
}
/*[clinic input]
_io._Buffered.readinto1
buffer: Py_buffer(accept={rwbuffer})
/
[clinic start generated code]*/
static PyObject *
_io__Buffered_readinto1_impl(buffered *self, Py_buffer *buffer)
/*[clinic end generated code: output=6e5c6ac5868205d6 input=4455c5d55fdf1687]*/
{
return _buffered_readinto_generic(self, buffer, 1);
}
static PyObject *
_buffered_readline(buffered *self, Py_ssize_t limit)
{
PyObject *res = NULL;
PyObject *chunks = NULL;
Py_ssize_t n, written = 0;
const char *start, *s, *end;
CHECK_CLOSED(self, "readline of closed file")
/* First, try to find a line in the buffer. This can run unlocked because
the calls to the C API are simple enough that they can't trigger
any thread switch. */
n = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t);
if (limit >= 0 && n > limit)
n = limit;
start = self->buffer + self->pos;
s = memchr(start, '\n', n);
if (s != NULL) {
res = PyBytes_FromStringAndSize(start, s - start + 1);
if (res != NULL)
self->pos += s - start + 1;
goto end_unlocked;
}
if (n == limit) {
res = PyBytes_FromStringAndSize(start, n);
if (res != NULL)
self->pos += n;
goto end_unlocked;
}
if (!ENTER_BUFFERED(self))
goto end_unlocked;
/* Now we try to get some more from the raw stream */
chunks = PyList_New(0);
if (chunks == NULL)
goto end;
if (n > 0) {
res = PyBytes_FromStringAndSize(start, n);
if (res == NULL)
goto end;
if (PyList_Append(chunks, res) < 0) {
Py_CLEAR(res);
goto end;
}
Py_CLEAR(res);
written += n;
self->pos += n;
if (limit >= 0)
limit -= n;
}
if (self->writable) {
PyObject *r = buffered_flush_and_rewind_unlocked(self);
if (r == NULL)
goto end;
Py_DECREF(r);
}
for (;;) {
_bufferedreader_reset_buf(self);
n = _bufferedreader_fill_buffer(self);
if (n == -1)
goto end;
if (n <= 0)
break;
if (limit >= 0 && n > limit)
n = limit;
start = self->buffer;
end = start + n;
s = start;
while (s < end) {
if (*s++ == '\n') {
res = PyBytes_FromStringAndSize(start, s - start);
if (res == NULL)
goto end;
self->pos = s - start;
goto found;
}
}
res = PyBytes_FromStringAndSize(start, n);
if (res == NULL)
goto end;
if (n == limit) {
self->pos = n;
break;
}
if (PyList_Append(chunks, res) < 0) {
Py_CLEAR(res);
goto end;
}
Py_CLEAR(res);
written += n;
if (limit >= 0)
limit -= n;
}
found:
if (res != NULL && PyList_Append(chunks, res) < 0) {
Py_CLEAR(res);
goto end;
}
Py_XSETREF(res, _PyBytes_Join(_PyIO_empty_bytes, chunks));
end:
LEAVE_BUFFERED(self)
end_unlocked:
Py_XDECREF(chunks);
return res;
}
/*[clinic input]
_io._Buffered.readline
size: io_ssize_t = -1
/
[clinic start generated code]*/
static PyObject *
_io__Buffered_readline_impl(buffered *self, Py_ssize_t size)
/*[clinic end generated code: output=24dd2aa6e33be83c input=ff1e0df821cb4e5c]*/
{
CHECK_INITIALIZED(self)
return _buffered_readline(self, size);
}
static PyObject *
buffered_tell(buffered *self, PyObject *args)
{
Py_off_t pos;
CHECK_INITIALIZED(self)
pos = _buffered_raw_tell(self);
if (pos == -1)
return NULL;
pos -= RAW_OFFSET(self);
/* TODO: sanity check (pos >= 0) */
return PyLong_FromOff_t(pos);
}
/*[clinic input]
_io._Buffered.seek
target as targetobj: object
whence: int = 0
/
[clinic start generated code]*/
static PyObject *
_io__Buffered_seek_impl(buffered *self, PyObject *targetobj, int whence)
/*[clinic end generated code: output=7ae0e8dc46efdefb input=a9c4920bfcba6163]*/
{
Py_off_t target, n;
PyObject *res = NULL;
CHECK_INITIALIZED(self)
/* Do some error checking instead of trusting OS 'seek()'
** error detection, just in case.
*/
if ((whence < 0 || whence >2)
#ifdef SEEK_HOLE
&& (whence != SEEK_HOLE)
#endif
#ifdef SEEK_DATA
&& (whence != SEEK_DATA)
#endif
) {
PyErr_Format(PyExc_ValueError,
"whence value %d unsupported", whence);
return NULL;
}
CHECK_CLOSED(self, "seek of closed file")
if (_PyIOBase_check_seekable(self->raw, Py_True) == NULL)
return NULL;
target = PyNumber_AsOff_t(targetobj, PyExc_ValueError);
if (target == -1 && PyErr_Occurred())
return NULL;
/* SEEK_SET and SEEK_CUR are special because we could seek inside the
buffer. Other whence values must be managed without this optimization.
Some Operating Systems can provide additional values, like
SEEK_HOLE/SEEK_DATA. */
if (((whence == 0) || (whence == 1)) && self->readable) {
Py_off_t current, avail;
/* Check if seeking leaves us inside the current buffer,
so as to return quickly if possible. Also, we needn't take the
lock in this fast path.
Don't know how to do that when whence == 2, though. */
/* NOTE: RAW_TELL() can release the GIL but the object is in a stable
state at this point. */
current = RAW_TELL(self);
avail = READAHEAD(self);
if (avail > 0) {
Py_off_t offset;
if (whence == 0)
offset = target - (current - RAW_OFFSET(self));
else
offset = target;
if (offset >= -self->pos && offset <= avail) {
self->pos += offset;
return PyLong_FromOff_t(current - avail + offset);
}
}
}
if (!ENTER_BUFFERED(self))
return NULL;
/* Fallback: invoke raw seek() method and clear buffer */
if (self->writable) {
res = _bufferedwriter_flush_unlocked(self);
if (res == NULL)
goto end;
Py_CLEAR(res);
}
/* TODO: align on block boundary and read buffer if needed? */
if (whence == 1)
target -= RAW_OFFSET(self);
n = _buffered_raw_seek(self, target, whence);
if (n == -1)
goto end;
self->raw_pos = -1;
res = PyLong_FromOff_t(n);
if (res != NULL && self->readable)
_bufferedreader_reset_buf(self);
end:
LEAVE_BUFFERED(self)
return res;
}
/*[clinic input]
_io._Buffered.truncate
pos: object = None
/
[clinic start generated code]*/
static PyObject *
_io__Buffered_truncate_impl(buffered *self, PyObject *pos)
/*[clinic end generated code: output=667ca03c60c270de input=8a1be34d57cca2d3]*/
{
PyObject *res = NULL;
CHECK_INITIALIZED(self)
if (!ENTER_BUFFERED(self))
return NULL;
if (self->writable) {
res = buffered_flush_and_rewind_unlocked(self);
if (res == NULL)
goto end;
Py_CLEAR(res);
}
res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_truncate, pos, NULL);
if (res == NULL)
goto end;
/* Reset cached position */
if (_buffered_raw_tell(self) == -1)
PyErr_Clear();
end:
LEAVE_BUFFERED(self)
return res;
}
static PyObject *
buffered_iternext(buffered *self)
{
PyObject *line;
PyTypeObject *tp;
CHECK_INITIALIZED(self);
tp = Py_TYPE(self);
if (tp == &PyBufferedReader_Type ||
tp == &PyBufferedRandom_Type) {
/* Skip method call overhead for speed */
line = _buffered_readline(self, -1);
}
else {
line = PyObject_CallMethodObjArgs((PyObject *)self,
_PyIO_str_readline, NULL);
if (line && !PyBytes_Check(line)) {
PyErr_Format(PyExc_IOError,
"readline() should have returned a bytes object, "
"not '%.200s'", Py_TYPE(line)->tp_name);
Py_DECREF(line);
return NULL;
}
}
if (line == NULL)
return NULL;
if (PyBytes_GET_SIZE(line) == 0) {
/* Reached EOF or would have blocked */
Py_DECREF(line);
return NULL;
}
return line;
}
static PyObject *
buffered_repr(buffered *self)
{
PyObject *nameobj, *res;
nameobj = _PyObject_GetAttrId((PyObject *) self, &PyId_name);
if (nameobj == NULL) {
if (PyErr_ExceptionMatches(PyExc_Exception))
PyErr_Clear();
else
return NULL;
res = PyUnicode_FromFormat("<%s>", Py_TYPE(self)->tp_name);
}
else {
int status = Py_ReprEnter((PyObject *)self);
res = NULL;
if (status == 0) {
res = PyUnicode_FromFormat("<%s name=%R>",
Py_TYPE(self)->tp_name, nameobj);
Py_ReprLeave((PyObject *)self);
}
else if (status > 0) {
PyErr_Format(PyExc_RuntimeError,
"reentrant call inside %s.__repr__",
Py_TYPE(self)->tp_name);
}
Py_DECREF(nameobj);
}
return res;
}
/*
* class BufferedReader
*/
static void _bufferedreader_reset_buf(buffered *self)
{
self->read_end = -1;
}
/*[clinic input]
_io.BufferedReader.__init__
raw: object
buffer_size: Py_ssize_t(c_default="DEFAULT_BUFFER_SIZE") = DEFAULT_BUFFER_SIZE
Create a new buffered reader using the given readable raw IO object.
[clinic start generated code]*/
static int
_io_BufferedReader___init___impl(buffered *self, PyObject *raw,
Py_ssize_t buffer_size)
/*[clinic end generated code: output=cddcfefa0ed294c4 input=fb887e06f11b4e48]*/
{
self->ok = 0;
self->detached = 0;
if (_PyIOBase_check_readable(raw, Py_True) == NULL)
return -1;
Py_INCREF(raw);
Py_XSETREF(self->raw, raw);
self->buffer_size = buffer_size;
self->readable = 1;
self->writable = 0;
if (_buffered_init(self) < 0)
return -1;
_bufferedreader_reset_buf(self);
self->fast_closed_checks = (Py_TYPE(self) == &PyBufferedReader_Type &&
Py_TYPE(raw) == &PyFileIO_Type);
self->ok = 1;
return 0;
}
static Py_ssize_t
_bufferedreader_raw_read(buffered *self, char *start, Py_ssize_t len)
{
Py_buffer buf;
PyObject *memobj, *res;
Py_ssize_t n;
/* NOTE: the buffer needn't be released as its object is NULL. */
if (PyBuffer_FillInfo(&buf, NULL, start, len, 0, PyBUF_CONTIG) == -1)
return -1;
memobj = PyMemoryView_FromBuffer(&buf);
if (memobj == NULL)
return -1;
/* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals() when EINTR
occurs so we needn't do it ourselves.
We then retry reading, ignoring the signal if no handler has
raised (see issue #10956).
*/
do {
res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readinto, memobj, NULL);
} while (res == NULL && _PyIO_trap_eintr());
Py_DECREF(memobj);
if (res == NULL)
return -1;
if (res == Py_None) {
/* Non-blocking stream would have blocked. Special return code! */
Py_DECREF(res);
return -2;
}
n = PyNumber_AsSsize_t(res, PyExc_ValueError);
Py_DECREF(res);
if (n < 0 || n > len) {
PyErr_Format(PyExc_IOError,
"raw readinto() returned invalid length %zd "
"(should have been between 0 and %zd)", n, len);
return -1;
}
if (n > 0 && self->abs_pos != -1)
self->abs_pos += n;
return n;
}
static Py_ssize_t
_bufferedreader_fill_buffer(buffered *self)
{
Py_ssize_t start, len, n;
if (VALID_READ_BUFFER(self))
start = Py_SAFE_DOWNCAST(self->read_end, Py_off_t, Py_ssize_t);
else
start = 0;
len = self->buffer_size - start;
n = _bufferedreader_raw_read(self, self->buffer + start, len);
if (n <= 0)
return n;
self->read_end = start + n;
self->raw_pos = start + n;
return n;
}
static PyObject *
_bufferedreader_read_all(buffered *self)
{
Py_ssize_t current_size;
PyObject *res = NULL, *data = NULL, *tmp = NULL, *chunks = NULL;
/* First copy what we have in the current buffer. */
current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t);
if (current_size) {
data = PyBytes_FromStringAndSize(
self->buffer + self->pos, current_size);
if (data == NULL)
return NULL;
self->pos += current_size;
}
/* We're going past the buffer's bounds, flush it */
if (self->writable) {
tmp = buffered_flush_and_rewind_unlocked(self);
if (tmp == NULL)
goto cleanup;
Py_CLEAR(tmp);
}
_bufferedreader_reset_buf(self);
if (PyObject_HasAttr(self->raw, _PyIO_str_readall)) {
tmp = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readall, NULL);
if (tmp == NULL)
goto cleanup;
if (tmp != Py_None && !PyBytes_Check(tmp)) {
PyErr_SetString(PyExc_TypeError, "readall() should return bytes");
goto cleanup;
}
if (tmp == Py_None) {
if (current_size == 0) {
res = Py_None;
goto cleanup;
} else {
res = data;
goto cleanup;
}
}
else if (current_size) {
PyBytes_Concat(&data, tmp);
res = data;
goto cleanup;
}
else {
res = tmp;
goto cleanup;
}
}
chunks = PyList_New(0);
if (chunks == NULL)
goto cleanup;
while (1) {
if (data) {
if (PyList_Append(chunks, data) < 0)
goto cleanup;
Py_CLEAR(data);
}
/* Read until EOF or until read() would block. */
data = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_read, NULL);
if (data == NULL)
goto cleanup;
if (data != Py_None && !PyBytes_Check(data)) {
PyErr_SetString(PyExc_TypeError, "read() should return bytes");
goto cleanup;
}
if (data == Py_None || PyBytes_GET_SIZE(data) == 0) {
if (current_size == 0) {
res = data;
goto cleanup;
}
else {
tmp = _PyBytes_Join(_PyIO_empty_bytes, chunks);
res = tmp;
goto cleanup;
}
}
current_size += PyBytes_GET_SIZE(data);
if (self->abs_pos != -1)
self->abs_pos += PyBytes_GET_SIZE(data);
}
cleanup:
/* res is either NULL or a borrowed ref */
Py_XINCREF(res);
Py_XDECREF(data);
Py_XDECREF(tmp);
Py_XDECREF(chunks);
return res;
}
/* Read n bytes from the buffer if it can, otherwise return None.
This function is simple enough that it can run unlocked. */
static PyObject *
_bufferedreader_read_fast(buffered *self, Py_ssize_t n)
{
Py_ssize_t current_size;
current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t);
if (n <= current_size) {
/* Fast path: the data to read is fully buffered. */
PyObject *res = PyBytes_FromStringAndSize(self->buffer + self->pos, n);
if (res != NULL)
self->pos += n;
return res;
}
Py_RETURN_NONE;
}
/* Generic read function: read from the stream until enough bytes are read,
* or until an EOF occurs or until read() would block.
*/
static PyObject *
_bufferedreader_read_generic(buffered *self, Py_ssize_t n)
{
PyObject *res = NULL;
Py_ssize_t current_size, remaining, written;
char *out;
current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t);
if (n <= current_size)
return _bufferedreader_read_fast(self, n);
res = PyBytes_FromStringAndSize(NULL, n);
if (res == NULL)
goto error;
out = PyBytes_AS_STRING(res);
remaining = n;
written = 0;
if (current_size > 0) {
memcpy(out, self->buffer + self->pos, current_size);
remaining -= current_size;
written += current_size;
self->pos += current_size;
}
/* Flush the write buffer if necessary */
if (self->writable) {
PyObject *r = buffered_flush_and_rewind_unlocked(self);
if (r == NULL)
goto error;
Py_DECREF(r);
}
_bufferedreader_reset_buf(self);
while (remaining > 0) {
/* We want to read a whole block at the end into buffer.
If we had readv() we could do this in one pass. */
Py_ssize_t r = MINUS_LAST_BLOCK(self, remaining);
if (r == 0)
break;
r = _bufferedreader_raw_read(self, out + written, r);
if (r == -1)
goto error;
if (r == 0 || r == -2) {
/* EOF occurred or read() would block. */
if (r == 0 || written > 0) {
if (_PyBytes_Resize(&res, written))
goto error;
return res;
}
Py_DECREF(res);
Py_INCREF(Py_None);
return Py_None;
}
remaining -= r;
written += r;
}
assert(remaining <= self->buffer_size);
self->pos = 0;
self->raw_pos = 0;
self->read_end = 0;
/* NOTE: when the read is satisfied, we avoid issuing any additional
reads, which could block indefinitely (e.g. on a socket).
See issue #9550. */
while (remaining > 0 && self->read_end < self->buffer_size) {
Py_ssize_t r = _bufferedreader_fill_buffer(self);
if (r == -1)
goto error;
if (r == 0 || r == -2) {
/* EOF occurred or read() would block. */
if (r == 0 || written > 0) {
if (_PyBytes_Resize(&res, written))
goto error;
return res;
}
Py_DECREF(res);
Py_INCREF(Py_None);
return Py_None;
}
if (remaining > r) {
memcpy(out + written, self->buffer + self->pos, r);
written += r;
self->pos += r;
remaining -= r;
}
else if (remaining > 0) {
memcpy(out + written, self->buffer + self->pos, remaining);
written += remaining;
self->pos += remaining;
remaining = 0;
}
if (remaining == 0)
break;
}
return res;
error:
Py_XDECREF(res);
return NULL;
}
static PyObject *
_bufferedreader_peek_unlocked(buffered *self)
{
Py_ssize_t have, r;
have = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t);
/* Constraints:
1. we don't want to advance the file position.
2. we don't want to lose block alignment, so we can't shift the buffer
to make some place.
Therefore, we either return `have` bytes (if > 0), or a full buffer.
*/
if (have > 0) {
return PyBytes_FromStringAndSize(self->buffer + self->pos, have);
}
/* Fill the buffer from the raw stream, and copy it to the result. */
_bufferedreader_reset_buf(self);
r = _bufferedreader_fill_buffer(self);
if (r == -1)
return NULL;
if (r == -2)
r = 0;
self->pos = 0;
return PyBytes_FromStringAndSize(self->buffer, r);
}
/*
* class BufferedWriter
*/
static void
_bufferedwriter_reset_buf(buffered *self)
{
self->write_pos = 0;
self->write_end = -1;
}
/*[clinic input]
_io.BufferedWriter.__init__
raw: object
buffer_size: Py_ssize_t(c_default="DEFAULT_BUFFER_SIZE") = DEFAULT_BUFFER_SIZE
A buffer for a writeable sequential RawIO object.
The constructor creates a BufferedWriter for the given writeable raw
stream. If the buffer_size is not given, it defaults to
DEFAULT_BUFFER_SIZE.
[clinic start generated code]*/
static int
_io_BufferedWriter___init___impl(buffered *self, PyObject *raw,
Py_ssize_t buffer_size)
/*[clinic end generated code: output=c8942a020c0dee64 input=914be9b95e16007b]*/
{
self->ok = 0;
self->detached = 0;
if (_PyIOBase_check_writable(raw, Py_True) == NULL)
return -1;
Py_INCREF(raw);
Py_XSETREF(self->raw, raw);
self->readable = 0;
self->writable = 1;
self->buffer_size = buffer_size;
if (_buffered_init(self) < 0)
return -1;
_bufferedwriter_reset_buf(self);
self->pos = 0;
self->fast_closed_checks = (Py_TYPE(self) == &PyBufferedWriter_Type &&
Py_TYPE(raw) == &PyFileIO_Type);
self->ok = 1;
return 0;
}
static Py_ssize_t
_bufferedwriter_raw_write(buffered *self, char *start, Py_ssize_t len)
{
Py_buffer buf;
PyObject *memobj, *res;
Py_ssize_t n;
int errnum;
/* NOTE: the buffer needn't be released as its object is NULL. */
if (PyBuffer_FillInfo(&buf, NULL, start, len, 1, PyBUF_CONTIG_RO) == -1)
return -1;
memobj = PyMemoryView_FromBuffer(&buf);
if (memobj == NULL)
return -1;
/* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals() when EINTR
occurs so we needn't do it ourselves.
We then retry writing, ignoring the signal if no handler has
raised (see issue #10956).
*/
do {
errno = 0;
res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_write, memobj, NULL);
errnum = errno;
} while (res == NULL && _PyIO_trap_eintr());
Py_DECREF(memobj);
if (res == NULL)
return -1;
if (res == Py_None) {
/* Non-blocking stream would have blocked. Special return code!
Being paranoid we reset errno in case it is changed by code
triggered by a decref. errno is used by _set_BlockingIOError(). */
Py_DECREF(res);
errno = errnum;
return -2;
}
n = PyNumber_AsSsize_t(res, PyExc_ValueError);
Py_DECREF(res);
if (n < 0 || n > len) {
PyErr_Format(PyExc_IOError,
"raw write() returned invalid length %zd "
"(should have been between 0 and %zd)", n, len);
return -1;
}
if (n > 0 && self->abs_pos != -1)
self->abs_pos += n;
return n;
}
static PyObject *
_bufferedwriter_flush_unlocked(buffered *self)
{
Py_ssize_t written = 0;
Py_off_t n, rewind;
if (!VALID_WRITE_BUFFER(self) || self->write_pos == self->write_end)
goto end;
/* First, rewind */
rewind = RAW_OFFSET(self) + (self->pos - self->write_pos);
if (rewind != 0) {
n = _buffered_raw_seek(self, -rewind, 1);
if (n < 0) {
goto error;
}
self->raw_pos -= rewind;
}
while (self->write_pos < self->write_end) {
n = _bufferedwriter_raw_write(self,
self->buffer + self->write_pos,
Py_SAFE_DOWNCAST(self->write_end - self->write_pos,
Py_off_t, Py_ssize_t));
if (n == -1) {
goto error;
}
else if (n == -2) {
_set_BlockingIOError("write could not complete without blocking",
0);
goto error;
}
self->write_pos += n;
self->raw_pos = self->write_pos;
written += Py_SAFE_DOWNCAST(n, Py_off_t, Py_ssize_t);
/* Partial writes can return successfully when interrupted by a
signal (see write(2)). We must run signal handlers before
blocking another time, possibly indefinitely. */
if (PyErr_CheckSignals() < 0)
goto error;
}
end:
/* This ensures that after return from this function,
VALID_WRITE_BUFFER(self) returns false.
This is a required condition because when a tell() is called
after flushing and if VALID_READ_BUFFER(self) is false, we need
VALID_WRITE_BUFFER(self) to be false to have
RAW_OFFSET(self) == 0.
Issue: https://bugs.python.org/issue32228 */
_bufferedwriter_reset_buf(self);
Py_RETURN_NONE;
error:
return NULL;
}
/*[clinic input]
_io.BufferedWriter.write
buffer: Py_buffer
/
[clinic start generated code]*/
static PyObject *
_io_BufferedWriter_write_impl(buffered *self, Py_buffer *buffer)
/*[clinic end generated code: output=7f8d1365759bfc6b input=dd87dd85fc7f8850]*/
{
PyObject *res = NULL;
Py_ssize_t written, avail, remaining;
Py_off_t offset;
CHECK_INITIALIZED(self)
if (IS_CLOSED(self)) {
PyErr_SetString(PyExc_ValueError, "write to closed file");
return NULL;
}
if (!ENTER_BUFFERED(self))
return NULL;
/* Fast path: the data to write can be fully buffered. */
if (!VALID_READ_BUFFER(self) && !VALID_WRITE_BUFFER(self)) {
self->pos = 0;
self->raw_pos = 0;
}
avail = Py_SAFE_DOWNCAST(self->buffer_size - self->pos, Py_off_t, Py_ssize_t);
if (buffer->len <= avail) {
memcpy(self->buffer + self->pos, buffer->buf, buffer->len);
if (!VALID_WRITE_BUFFER(self) || self->write_pos > self->pos) {
self->write_pos = self->pos;
}
ADJUST_POSITION(self, self->pos + buffer->len);
if (self->pos > self->write_end)
self->write_end = self->pos;
written = buffer->len;
goto end;
}
/* First write the current buffer */
res = _bufferedwriter_flush_unlocked(self);
if (res == NULL) {
Py_ssize_t *w = _buffered_check_blocking_error();
if (w == NULL)
goto error;
if (self->readable)
_bufferedreader_reset_buf(self);
/* Make some place by shifting the buffer. */
assert(VALID_WRITE_BUFFER(self));
memmove(self->buffer, self->buffer + self->write_pos,
Py_SAFE_DOWNCAST(self->write_end - self->write_pos,
Py_off_t, Py_ssize_t));
self->write_end -= self->write_pos;
self->raw_pos -= self->write_pos;
self->pos -= self->write_pos;
self->write_pos = 0;
avail = Py_SAFE_DOWNCAST(self->buffer_size - self->write_end,
Py_off_t, Py_ssize_t);
if (buffer->len <= avail) {
/* Everything can be buffered */
PyErr_Clear();
memcpy(self->buffer + self->write_end, buffer->buf, buffer->len);
self->write_end += buffer->len;
self->pos += buffer->len;
written = buffer->len;
goto end;
}
/* Buffer as much as possible. */
memcpy(self->buffer + self->write_end, buffer->buf, avail);
self->write_end += avail;
self->pos += avail;
/* XXX Modifying the existing exception e using the pointer w
will change e.characters_written but not e.args[2].
Therefore we just replace with a new error. */
_set_BlockingIOError("write could not complete without blocking",
avail);
goto error;
}
Py_CLEAR(res);
/* Adjust the raw stream position if it is away from the logical stream
position. This happens if the read buffer has been filled but not
modified (and therefore _bufferedwriter_flush_unlocked() didn't rewind
the raw stream by itself).
Fixes issue #6629.
*/
offset = RAW_OFFSET(self);
if (offset != 0) {
if (_buffered_raw_seek(self, -offset, 1) < 0)
goto error;
self->raw_pos -= offset;
}
/* Then write buf itself. At this point the buffer has been emptied. */
remaining = buffer->len;
written = 0;
while (remaining > self->buffer_size) {
Py_ssize_t n = _bufferedwriter_raw_write(
self, (char *) buffer->buf + written, buffer->len - written);
if (n == -1) {
goto error;
} else if (n == -2) {
/* Write failed because raw file is non-blocking */
if (remaining > self->buffer_size) {
/* Can't buffer everything, still buffer as much as possible */
memcpy(self->buffer,
(char *) buffer->buf + written, self->buffer_size);
self->raw_pos = 0;
ADJUST_POSITION(self, self->buffer_size);
self->write_end = self->buffer_size;
written += self->buffer_size;
_set_BlockingIOError("write could not complete without "
"blocking", written);
goto error;
}
PyErr_Clear();
break;
}
written += n;
remaining -= n;
/* Partial writes can return successfully when interrupted by a
signal (see write(2)). We must run signal handlers before
blocking another time, possibly indefinitely. */
if (PyErr_CheckSignals() < 0)
goto error;
}
if (self->readable)
_bufferedreader_reset_buf(self);
if (remaining > 0) {
memcpy(self->buffer, (char *) buffer->buf + written, remaining);
written += remaining;
}
self->write_pos = 0;
/* TODO: sanity check (remaining >= 0) */
self->write_end = remaining;
ADJUST_POSITION(self, remaining);
self->raw_pos = 0;
end:
res = PyLong_FromSsize_t(written);
error:
LEAVE_BUFFERED(self)
return res;
}
/*
* BufferedRWPair
*/
/* XXX The usefulness of this (compared to having two separate IO objects) is
* questionable.
*/
typedef struct {
PyObject_HEAD
buffered *reader;
buffered *writer;
PyObject *dict;
PyObject *weakreflist;
} rwpair;
/*[clinic input]
_io.BufferedRWPair.__init__
reader: object
writer: object
buffer_size: Py_ssize_t(c_default="DEFAULT_BUFFER_SIZE") = DEFAULT_BUFFER_SIZE
/
A buffered reader and writer object together.
A buffered reader object and buffered writer object put together to
form a sequential IO object that can read and write. This is typically
used with a socket or two-way pipe.
reader and writer are RawIOBase objects that are readable and
writeable respectively. If the buffer_size is omitted it defaults to
DEFAULT_BUFFER_SIZE.
[clinic start generated code]*/
static int
_io_BufferedRWPair___init___impl(rwpair *self, PyObject *reader,
PyObject *writer, Py_ssize_t buffer_size)
/*[clinic end generated code: output=327e73d1aee8f984 input=620d42d71f33a031]*/
{
if (_PyIOBase_check_readable(reader, Py_True) == NULL)
return -1;
if (_PyIOBase_check_writable(writer, Py_True) == NULL)
return -1;
self->reader = (buffered *) PyObject_CallFunction(
(PyObject *) &PyBufferedReader_Type, "On", reader, buffer_size);
if (self->reader == NULL)
return -1;
self->writer = (buffered *) PyObject_CallFunction(
(PyObject *) &PyBufferedWriter_Type, "On", writer, buffer_size);
if (self->writer == NULL) {
Py_CLEAR(self->reader);
return -1;
}
return 0;
}
static int
bufferedrwpair_traverse(rwpair *self, visitproc visit, void *arg)
{
Py_VISIT(self->dict);
return 0;
}
static int
bufferedrwpair_clear(rwpair *self)
{
Py_CLEAR(self->reader);
Py_CLEAR(self->writer);
Py_CLEAR(self->dict);
return 0;
}
static void
bufferedrwpair_dealloc(rwpair *self)
{
_PyObject_GC_UNTRACK(self);
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *)self);
Py_CLEAR(self->reader);
Py_CLEAR(self->writer);
Py_CLEAR(self->dict);
Py_TYPE(self)->tp_free((PyObject *) self);
}
static PyObject *
_forward_call(buffered *self, _Py_Identifier *name, PyObject *args)
{
PyObject *func, *ret;
if (self == NULL) {
PyErr_SetString(PyExc_ValueError,
"I/O operation on uninitialized object");
return NULL;
}
func = _PyObject_GetAttrId((PyObject *)self, name);
if (func == NULL) {
PyErr_SetString(PyExc_AttributeError, name->string);
return NULL;
}
ret = PyObject_CallObject(func, args);
Py_DECREF(func);
return ret;
}
static PyObject *
bufferedrwpair_read(rwpair *self, PyObject *args)
{
return _forward_call(self->reader, &PyId_read, args);
}
static PyObject *
bufferedrwpair_peek(rwpair *self, PyObject *args)
{
return _forward_call(self->reader, &PyId_peek, args);
}
static PyObject *
bufferedrwpair_read1(rwpair *self, PyObject *args)
{
return _forward_call(self->reader, &PyId_read1, args);
}
static PyObject *
bufferedrwpair_readinto(rwpair *self, PyObject *args)
{
return _forward_call(self->reader, &PyId_readinto, args);
}
static PyObject *
bufferedrwpair_readinto1(rwpair *self, PyObject *args)
{
return _forward_call(self->reader, &PyId_readinto1, args);
}
static PyObject *
bufferedrwpair_write(rwpair *self, PyObject *args)
{
return _forward_call(self->writer, &PyId_write, args);
}
static PyObject *
bufferedrwpair_flush(rwpair *self, PyObject *args)
{
return _forward_call(self->writer, &PyId_flush, args);
}
static PyObject *
bufferedrwpair_readable(rwpair *self, PyObject *args)
{
return _forward_call(self->reader, &PyId_readable, args);
}
static PyObject *
bufferedrwpair_writable(rwpair *self, PyObject *args)
{
return _forward_call(self->writer, &PyId_writable, args);
}
static PyObject *
bufferedrwpair_close(rwpair *self, PyObject *args)
{
PyObject *exc = NULL, *val, *tb;
PyObject *ret = _forward_call(self->writer, &PyId_close, args);
if (ret == NULL)
PyErr_Fetch(&exc, &val, &tb);
else
Py_DECREF(ret);
ret = _forward_call(self->reader, &PyId_close, args);
if (exc != NULL) {
_PyErr_ChainExceptions(exc, val, tb);
Py_CLEAR(ret);
}
return ret;
}
static PyObject *
bufferedrwpair_isatty(rwpair *self, PyObject *args)
{
PyObject *ret = _forward_call(self->writer, &PyId_isatty, args);
if (ret != Py_False) {
/* either True or exception */
return ret;
}
Py_DECREF(ret);
return _forward_call(self->reader, &PyId_isatty, args);
}
static PyObject *
bufferedrwpair_closed_get(rwpair *self, void *context)
{
if (self->writer == NULL) {
PyErr_SetString(PyExc_RuntimeError,
"the BufferedRWPair object is being garbage-collected");
return NULL;
}
return PyObject_GetAttr((PyObject *) self->writer, _PyIO_str_closed);
}
/*
* BufferedRandom
*/
/*[clinic input]
_io.BufferedRandom.__init__
raw: object
buffer_size: Py_ssize_t(c_default="DEFAULT_BUFFER_SIZE") = DEFAULT_BUFFER_SIZE
A buffered interface to random access streams.
The constructor creates a reader and writer for a seekable stream,
raw, given in the first argument. If the buffer_size is omitted it
defaults to DEFAULT_BUFFER_SIZE.
[clinic start generated code]*/
static int
_io_BufferedRandom___init___impl(buffered *self, PyObject *raw,
Py_ssize_t buffer_size)
/*[clinic end generated code: output=d3d64eb0f64e64a3 input=a4e818fb86d0e50c]*/
{
self->ok = 0;
self->detached = 0;
if (_PyIOBase_check_seekable(raw, Py_True) == NULL)
return -1;
if (_PyIOBase_check_readable(raw, Py_True) == NULL)
return -1;
if (_PyIOBase_check_writable(raw, Py_True) == NULL)
return -1;
Py_INCREF(raw);
Py_XSETREF(self->raw, raw);
self->buffer_size = buffer_size;
self->readable = 1;
self->writable = 1;
if (_buffered_init(self) < 0)
return -1;
_bufferedreader_reset_buf(self);
_bufferedwriter_reset_buf(self);
self->pos = 0;
self->fast_closed_checks = (Py_TYPE(self) == &PyBufferedRandom_Type &&
Py_TYPE(raw) == &PyFileIO_Type);
self->ok = 1;
return 0;
}
#include "third_party/python/Modules/_io/clinic/bufferedio.inc"
static PyMethodDef bufferediobase_methods[] = {
_IO__BUFFEREDIOBASE_DETACH_METHODDEF
{"read", bufferediobase_read, METH_VARARGS, bufferediobase_read_doc},
{"read1", bufferediobase_read1, METH_VARARGS, bufferediobase_read1_doc},
_IO__BUFFEREDIOBASE_READINTO_METHODDEF
_IO__BUFFEREDIOBASE_READINTO1_METHODDEF
{"write", bufferediobase_write, METH_VARARGS, bufferediobase_write_doc},
{NULL, NULL}
};
PyTypeObject PyBufferedIOBase_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io._BufferedIOBase", /*tp_name*/
0, /*tp_basicsize*/
0, /*tp_itemsize*/
0, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_FINALIZE, /*tp_flags*/
bufferediobase_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
bufferediobase_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
&PyIOBase_Type, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
static PyMethodDef bufferedreader_methods[] = {
/* BufferedIOMixin methods */
{"detach", (PyCFunction)buffered_detach, METH_NOARGS},
{"flush", (PyCFunction)buffered_simple_flush, METH_NOARGS},
{"close", (PyCFunction)buffered_close, METH_NOARGS},
{"seekable", (PyCFunction)buffered_seekable, METH_NOARGS},
{"readable", (PyCFunction)buffered_readable, METH_NOARGS},
{"fileno", (PyCFunction)buffered_fileno, METH_NOARGS},
{"isatty", (PyCFunction)buffered_isatty, METH_NOARGS},
{"_dealloc_warn", (PyCFunction)buffered_dealloc_warn, METH_O},
{"__getstate__", (PyCFunction)buffered_getstate, METH_NOARGS},
_IO__BUFFERED_READ_METHODDEF
_IO__BUFFERED_PEEK_METHODDEF
_IO__BUFFERED_READ1_METHODDEF
_IO__BUFFERED_READINTO_METHODDEF
_IO__BUFFERED_READINTO1_METHODDEF
_IO__BUFFERED_READLINE_METHODDEF
_IO__BUFFERED_SEEK_METHODDEF
{"tell", (PyCFunction)buffered_tell, METH_NOARGS},
_IO__BUFFERED_TRUNCATE_METHODDEF
{"__sizeof__", (PyCFunction)buffered_sizeof, METH_NOARGS},
{NULL, NULL}
};
static PyMemberDef bufferedreader_members[] = {
{"raw", T_OBJECT, offsetof(buffered, raw), READONLY},
{"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0},
{NULL}
};
static PyGetSetDef bufferedreader_getset[] = {
{"closed", (getter)buffered_closed_get, NULL, NULL},
{"name", (getter)buffered_name_get, NULL, NULL},
{"mode", (getter)buffered_mode_get, NULL, NULL},
{NULL}
};
PyTypeObject PyBufferedReader_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.BufferedReader", /*tp_name*/
sizeof(buffered), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)buffered_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
(reprfunc)buffered_repr, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /*tp_flags*/
_io_BufferedReader___init____doc__, /* tp_doc */
(traverseproc)buffered_traverse, /* tp_traverse */
(inquiry)buffered_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(buffered, weakreflist), /*tp_weaklistoffset*/
0, /* tp_iter */
(iternextfunc)buffered_iternext, /* tp_iternext */
bufferedreader_methods, /* tp_methods */
bufferedreader_members, /* tp_members */
bufferedreader_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(buffered, dict), /* tp_dictoffset */
_io_BufferedReader___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
static PyMethodDef bufferedwriter_methods[] = {
/* BufferedIOMixin methods */
{"close", (PyCFunction)buffered_close, METH_NOARGS},
{"detach", (PyCFunction)buffered_detach, METH_NOARGS},
{"seekable", (PyCFunction)buffered_seekable, METH_NOARGS},
{"writable", (PyCFunction)buffered_writable, METH_NOARGS},
{"fileno", (PyCFunction)buffered_fileno, METH_NOARGS},
{"isatty", (PyCFunction)buffered_isatty, METH_NOARGS},
{"_dealloc_warn", (PyCFunction)buffered_dealloc_warn, METH_O},
{"__getstate__", (PyCFunction)buffered_getstate, METH_NOARGS},
_IO_BUFFEREDWRITER_WRITE_METHODDEF
_IO__BUFFERED_TRUNCATE_METHODDEF
{"flush", (PyCFunction)buffered_flush, METH_NOARGS},
_IO__BUFFERED_SEEK_METHODDEF
{"tell", (PyCFunction)buffered_tell, METH_NOARGS},
{"__sizeof__", (PyCFunction)buffered_sizeof, METH_NOARGS},
{NULL, NULL}
};
static PyMemberDef bufferedwriter_members[] = {
{"raw", T_OBJECT, offsetof(buffered, raw), READONLY},
{"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0},
{NULL}
};
static PyGetSetDef bufferedwriter_getset[] = {
{"closed", (getter)buffered_closed_get, NULL, NULL},
{"name", (getter)buffered_name_get, NULL, NULL},
{"mode", (getter)buffered_mode_get, NULL, NULL},
{NULL}
};
PyTypeObject PyBufferedWriter_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.BufferedWriter", /*tp_name*/
sizeof(buffered), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)buffered_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
(reprfunc)buffered_repr, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /*tp_flags*/
_io_BufferedWriter___init____doc__, /* tp_doc */
(traverseproc)buffered_traverse, /* tp_traverse */
(inquiry)buffered_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(buffered, weakreflist), /*tp_weaklistoffset*/
0, /* tp_iter */
0, /* tp_iternext */
bufferedwriter_methods, /* tp_methods */
bufferedwriter_members, /* tp_members */
bufferedwriter_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(buffered, dict), /* tp_dictoffset */
_io_BufferedWriter___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
static PyMethodDef bufferedrwpair_methods[] = {
{"read", (PyCFunction)bufferedrwpair_read, METH_VARARGS},
{"peek", (PyCFunction)bufferedrwpair_peek, METH_VARARGS},
{"read1", (PyCFunction)bufferedrwpair_read1, METH_VARARGS},
{"readinto", (PyCFunction)bufferedrwpair_readinto, METH_VARARGS},
{"readinto1", (PyCFunction)bufferedrwpair_readinto1, METH_VARARGS},
{"write", (PyCFunction)bufferedrwpair_write, METH_VARARGS},
{"flush", (PyCFunction)bufferedrwpair_flush, METH_NOARGS},
{"readable", (PyCFunction)bufferedrwpair_readable, METH_NOARGS},
{"writable", (PyCFunction)bufferedrwpair_writable, METH_NOARGS},
{"close", (PyCFunction)bufferedrwpair_close, METH_NOARGS},
{"isatty", (PyCFunction)bufferedrwpair_isatty, METH_NOARGS},
{"__getstate__", (PyCFunction)buffered_getstate, METH_NOARGS},
{NULL, NULL}
};
static PyGetSetDef bufferedrwpair_getset[] = {
{"closed", (getter)bufferedrwpair_closed_get, NULL, NULL},
{NULL}
};
PyTypeObject PyBufferedRWPair_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.BufferedRWPair", /*tp_name*/
sizeof(rwpair), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)bufferedrwpair_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /* tp_flags */
_io_BufferedRWPair___init____doc__, /* tp_doc */
(traverseproc)bufferedrwpair_traverse, /* tp_traverse */
(inquiry)bufferedrwpair_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(rwpair, weakreflist), /*tp_weaklistoffset*/
0, /* tp_iter */
0, /* tp_iternext */
bufferedrwpair_methods, /* tp_methods */
0, /* tp_members */
bufferedrwpair_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(rwpair, dict), /* tp_dictoffset */
_io_BufferedRWPair___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
static PyMethodDef bufferedrandom_methods[] = {
/* BufferedIOMixin methods */
{"close", (PyCFunction)buffered_close, METH_NOARGS},
{"detach", (PyCFunction)buffered_detach, METH_NOARGS},
{"seekable", (PyCFunction)buffered_seekable, METH_NOARGS},
{"readable", (PyCFunction)buffered_readable, METH_NOARGS},
{"writable", (PyCFunction)buffered_writable, METH_NOARGS},
{"fileno", (PyCFunction)buffered_fileno, METH_NOARGS},
{"isatty", (PyCFunction)buffered_isatty, METH_NOARGS},
{"_dealloc_warn", (PyCFunction)buffered_dealloc_warn, METH_O},
{"__getstate__", (PyCFunction)buffered_getstate, METH_NOARGS},
{"flush", (PyCFunction)buffered_flush, METH_NOARGS},
_IO__BUFFERED_SEEK_METHODDEF
{"tell", (PyCFunction)buffered_tell, METH_NOARGS},
_IO__BUFFERED_TRUNCATE_METHODDEF
_IO__BUFFERED_READ_METHODDEF
_IO__BUFFERED_READ1_METHODDEF
_IO__BUFFERED_READINTO_METHODDEF
_IO__BUFFERED_READINTO1_METHODDEF
_IO__BUFFERED_READLINE_METHODDEF
_IO__BUFFERED_PEEK_METHODDEF
_IO_BUFFEREDWRITER_WRITE_METHODDEF
{"__sizeof__", (PyCFunction)buffered_sizeof, METH_NOARGS},
{NULL, NULL}
};
static PyMemberDef bufferedrandom_members[] = {
{"raw", T_OBJECT, offsetof(buffered, raw), READONLY},
{"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0},
{NULL}
};
static PyGetSetDef bufferedrandom_getset[] = {
{"closed", (getter)buffered_closed_get, NULL, NULL},
{"name", (getter)buffered_name_get, NULL, NULL},
{"mode", (getter)buffered_mode_get, NULL, NULL},
{NULL}
};
PyTypeObject PyBufferedRandom_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io.BufferedRandom", /*tp_name*/
sizeof(buffered), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)buffered_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
(reprfunc)buffered_repr, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /*tp_flags*/
_io_BufferedRandom___init____doc__, /* tp_doc */
(traverseproc)buffered_traverse, /* tp_traverse */
(inquiry)buffered_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(buffered, weakreflist), /*tp_weaklistoffset*/
0, /* tp_iter */
(iternextfunc)buffered_iternext, /* tp_iternext */
bufferedrandom_methods, /* tp_methods */
bufferedrandom_members, /* tp_members */
bufferedrandom_getset, /* tp_getset */
0, /* tp_base */
0, /*tp_dict*/
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(buffered, dict), /*tp_dictoffset*/
_io_BufferedRandom___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
| 84,764 | 2,783 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/iobase.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytearrayobject.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Modules/_io/_iomodule.h"
/* clang-format off */
/*
An implementation of the I/O abstract base classes hierarchy
as defined by PEP 3116 - "New I/O"
Classes defined here: IOBase, RawIOBase.
Written by Amaury Forgeot d'Arc and Antoine Pitrou
*/
/*[clinic input]
module _io
class _io._IOBase "PyObject *" "&PyIOBase_Type"
class _io._RawIOBase "PyObject *" "&PyRawIOBase_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=d29a4d076c2b211c]*/
/*[python input]
class io_ssize_t_converter(CConverter):
type = 'Py_ssize_t'
converter = '_PyIO_ConvertSsize_t'
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=d0a811d3cbfd1b33]*/
/*
* IOBase class, an abstract class
*/
typedef struct {
PyObject_HEAD
PyObject *dict;
PyObject *weakreflist;
} iobase;
PyDoc_STRVAR(iobase_doc,
"The abstract base class for all I/O classes, acting on streams of\n"
"bytes. There is no public constructor.\n"
"\n"
"This class provides dummy implementations for many methods that\n"
"derived classes can override selectively; the default implementations\n"
"represent a file that cannot be read, written or seeked.\n"
"\n"
"Even though IOBase does not declare read, readinto, or write because\n"
"their signatures will vary, implementations and clients should\n"
"consider those methods part of the interface. Also, implementations\n"
"may raise UnsupportedOperation when operations they do not support are\n"
"called.\n"
"\n"
"The basic type used for binary data read from or written to a file is\n"
"bytes. Other bytes-like objects are accepted as method arguments too.\n"
"In some cases (such as readinto), a writable object is required. Text\n"
"I/O classes work with str data.\n"
"\n"
"Note that calling any method (except additional calls to close(),\n"
"which are ignored) on a closed stream should raise a ValueError.\n"
"\n"
"IOBase (and its subclasses) support the iterator protocol, meaning\n"
"that an IOBase object can be iterated over yielding the lines in a\n"
"stream.\n"
"\n"
"IOBase also supports the :keyword:`with` statement. In this example,\n"
"fp is closed after the suite of the with statement is complete:\n"
"\n"
"with open('spam.txt', 'r') as fp:\n"
" fp.write('Spam and eggs!')\n");
/* Use this macro whenever you want to check the internal `closed` status
of the IOBase object rather than the virtual `closed` attribute as returned
by whatever subclass. */
_Py_IDENTIFIER(__IOBase_closed);
#define IS_CLOSED(self) \
_PyObject_HasAttrId(self, &PyId___IOBase_closed)
_Py_IDENTIFIER(read);
/* Internal methods */
static PyObject *
iobase_unsupported(const char *message)
{
_PyIO_State *state = IO_STATE();
if (state != NULL)
PyErr_SetString(state->unsupported_operation, message);
return NULL;
}
/* Positioning */
PyDoc_STRVAR(iobase_seek_doc,
"Change stream position.\n"
"\n"
"Change the stream position to the given byte offset. The offset is\n"
"interpreted relative to the position indicated by whence. Values\n"
"for whence are:\n"
"\n"
"* 0 -- start of stream (the default); offset should be zero or positive\n"
"* 1 -- current stream position; offset may be negative\n"
"* 2 -- end of stream; offset is usually negative\n"
"\n"
"Return the new absolute position.");
static PyObject *
iobase_seek(PyObject *self, PyObject *args)
{
return iobase_unsupported("seek");
}
/*[clinic input]
_io._IOBase.tell
Return current stream position.
[clinic start generated code]*/
static PyObject *
_io__IOBase_tell_impl(PyObject *self)
/*[clinic end generated code: output=89a1c0807935abe2 input=04e615fec128801f]*/
{
_Py_IDENTIFIER(seek);
return _PyObject_CallMethodId(self, &PyId_seek, "ii", 0, 1);
}
PyDoc_STRVAR(iobase_truncate_doc,
"Truncate file to size bytes.\n"
"\n"
"File pointer is left unchanged. Size defaults to the current IO\n"
"position as reported by tell(). Returns the new size.");
static PyObject *
iobase_truncate(PyObject *self, PyObject *args)
{
return iobase_unsupported("truncate");
}
/* Flush and close methods */
/*[clinic input]
_io._IOBase.flush
Flush write buffers, if applicable.
This is not implemented for read-only and non-blocking streams.
[clinic start generated code]*/
static PyObject *
_io__IOBase_flush_impl(PyObject *self)
/*[clinic end generated code: output=7cef4b4d54656a3b input=773be121abe270aa]*/
{
/* XXX Should this return the number of bytes written??? */
if (IS_CLOSED(self)) {
PyErr_SetString(PyExc_ValueError, "I/O operation on closed file.");
return NULL;
}
Py_RETURN_NONE;
}
static int
iobase_closed(PyObject *self)
{
PyObject *res;
int closed;
/* This gets the derived attribute, which is *not* __IOBase_closed
in most cases! */
res = PyObject_GetAttr(self, _PyIO_str_closed);
if (res == NULL)
return 0;
closed = PyObject_IsTrue(res);
Py_DECREF(res);
return closed;
}
static PyObject *
iobase_closed_get(PyObject *self, void *context)
{
return PyBool_FromLong(IS_CLOSED(self));
}
PyObject *
_PyIOBase_check_closed(PyObject *self, PyObject *args)
{
if (iobase_closed(self)) {
PyErr_SetString(PyExc_ValueError, "I/O operation on closed file.");
return NULL;
}
if (args == Py_True)
return Py_None;
else
Py_RETURN_NONE;
}
/* XXX: IOBase thinks it has to maintain its own internal state in
`__IOBase_closed` and call flush() by itself, but it is redundant with
whatever behaviour a non-trivial derived class will implement. */
/*[clinic input]
_io._IOBase.close
Flush and close the IO object.
This method has no effect if the file is already closed.
[clinic start generated code]*/
static PyObject *
_io__IOBase_close_impl(PyObject *self)
/*[clinic end generated code: output=63c6a6f57d783d6d input=f4494d5c31dbc6b7]*/
{
PyObject *res, *exc, *val, *tb;
int rc;
if (IS_CLOSED(self))
Py_RETURN_NONE;
res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL);
PyErr_Fetch(&exc, &val, &tb);
rc = _PyObject_SetAttrId(self, &PyId___IOBase_closed, Py_True);
_PyErr_ChainExceptions(exc, val, tb);
if (rc < 0) {
Py_CLEAR(res);
}
if (res == NULL)
return NULL;
Py_DECREF(res);
Py_RETURN_NONE;
}
/* Finalization and garbage collection support */
static void
iobase_finalize(PyObject *self)
{
PyObject *res;
PyObject *error_type, *error_value, *error_traceback;
int closed;
_Py_IDENTIFIER(_finalizing);
/* Save the current exception, if any. */
PyErr_Fetch(&error_type, &error_value, &error_traceback);
/* If `closed` doesn't exist or can't be evaluated as bool, then the
object is probably in an unusable state, so ignore. */
res = PyObject_GetAttr(self, _PyIO_str_closed);
if (res == NULL) {
PyErr_Clear();
closed = -1;
}
else {
closed = PyObject_IsTrue(res);
Py_DECREF(res);
if (closed == -1)
PyErr_Clear();
}
if (closed == 0) {
/* Signal close() that it was called as part of the object
finalization process. */
if (_PyObject_SetAttrId(self, &PyId__finalizing, Py_True))
PyErr_Clear();
res = PyObject_CallMethodObjArgs((PyObject *) self, _PyIO_str_close,
NULL);
/* Silencing I/O errors is bad, but printing spurious tracebacks is
equally as bad, and potentially more frequent (because of
shutdown issues). */
if (res == NULL)
PyErr_Clear();
else
Py_DECREF(res);
}
/* Restore the saved exception. */
PyErr_Restore(error_type, error_value, error_traceback);
}
int
_PyIOBase_finalize(PyObject *self)
{
int is_zombie;
/* If _PyIOBase_finalize() is called from a destructor, we need to
resurrect the object as calling close() can invoke arbitrary code. */
is_zombie = (Py_REFCNT(self) == 0);
if (is_zombie)
return PyObject_CallFinalizerFromDealloc(self);
else {
PyObject_CallFinalizer(self);
return 0;
}
}
static int
iobase_traverse(iobase *self, visitproc visit, void *arg)
{
Py_VISIT(self->dict);
return 0;
}
static int
iobase_clear(iobase *self)
{
Py_CLEAR(self->dict);
return 0;
}
/* Destructor */
static void
iobase_dealloc(iobase *self)
{
/* NOTE: since IOBaseObject has its own dict, Python-defined attributes
are still available here for close() to use.
However, if the derived class declares a __slots__, those slots are
already gone.
*/
if (_PyIOBase_finalize((PyObject *) self) < 0) {
/* When called from a heap type's dealloc, the type will be
decref'ed on return (see e.g. subtype_dealloc in typeobject.c). */
if (PyType_HasFeature(Py_TYPE(self), Py_TPFLAGS_HEAPTYPE))
Py_INCREF(Py_TYPE(self));
return;
}
_PyObject_GC_UNTRACK(self);
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) self);
Py_CLEAR(self->dict);
Py_TYPE(self)->tp_free((PyObject *) self);
}
/* Inquiry methods */
/*[clinic input]
_io._IOBase.seekable
Return whether object supports random access.
If False, seek(), tell() and truncate() will raise OSError.
This method may need to do a test seek().
[clinic start generated code]*/
static PyObject *
_io__IOBase_seekable_impl(PyObject *self)
/*[clinic end generated code: output=4c24c67f5f32a43d input=b976622f7fdf3063]*/
{
Py_RETURN_FALSE;
}
PyObject *
_PyIOBase_check_seekable(PyObject *self, PyObject *args)
{
PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_seekable, NULL);
if (res == NULL)
return NULL;
if (res != Py_True) {
Py_CLEAR(res);
iobase_unsupported("File or stream is not seekable.");
return NULL;
}
if (args == Py_True) {
Py_DECREF(res);
}
return res;
}
/*[clinic input]
_io._IOBase.readable
Return whether object was opened for reading.
If False, read() will raise OSError.
[clinic start generated code]*/
static PyObject *
_io__IOBase_readable_impl(PyObject *self)
/*[clinic end generated code: output=e48089250686388b input=285b3b866a0ec35f]*/
{
Py_RETURN_FALSE;
}
/* May be called with any object */
PyObject *
_PyIOBase_check_readable(PyObject *self, PyObject *args)
{
PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_readable, NULL);
if (res == NULL)
return NULL;
if (res != Py_True) {
Py_CLEAR(res);
iobase_unsupported("File or stream is not readable.");
return NULL;
}
if (args == Py_True) {
Py_DECREF(res);
}
return res;
}
/*[clinic input]
_io._IOBase.writable
Return whether object was opened for writing.
If False, write() will raise OSError.
[clinic start generated code]*/
static PyObject *
_io__IOBase_writable_impl(PyObject *self)
/*[clinic end generated code: output=406001d0985be14f input=9dcac18a013a05b5]*/
{
Py_RETURN_FALSE;
}
/* May be called with any object */
PyObject *
_PyIOBase_check_writable(PyObject *self, PyObject *args)
{
PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_writable, NULL);
if (res == NULL)
return NULL;
if (res != Py_True) {
Py_CLEAR(res);
iobase_unsupported("File or stream is not writable.");
return NULL;
}
if (args == Py_True) {
Py_DECREF(res);
}
return res;
}
/* Context manager */
static PyObject *
iobase_enter(PyObject *self, PyObject *args)
{
if (_PyIOBase_check_closed(self, Py_True) == NULL)
return NULL;
Py_INCREF(self);
return self;
}
static PyObject *
iobase_exit(PyObject *self, PyObject *args)
{
return PyObject_CallMethodObjArgs(self, _PyIO_str_close, NULL);
}
/* Lower-level APIs */
/* XXX Should these be present even if unimplemented? */
/*[clinic input]
_io._IOBase.fileno
Returns underlying file descriptor if one exists.
OSError is raised if the IO object does not use a file descriptor.
[clinic start generated code]*/
static PyObject *
_io__IOBase_fileno_impl(PyObject *self)
/*[clinic end generated code: output=7cc0973f0f5f3b73 input=4e37028947dc1cc8]*/
{
return iobase_unsupported("fileno");
}
/*[clinic input]
_io._IOBase.isatty
Return whether this is an 'interactive' stream.
Return False if it can't be determined.
[clinic start generated code]*/
static PyObject *
_io__IOBase_isatty_impl(PyObject *self)
/*[clinic end generated code: output=60cab77cede41cdd input=9ef76530d368458b]*/
{
if (_PyIOBase_check_closed(self, Py_True) == NULL)
return NULL;
Py_RETURN_FALSE;
}
/* Readline(s) and writelines */
/*[clinic input]
_io._IOBase.readline
size as limit: io_ssize_t = -1
/
Read and return a line from the stream.
If size is specified, at most size bytes will be read.
The line terminator is always b'\n' for binary files; for text
files, the newlines argument to open can be used to select the line
terminator(s) recognized.
[clinic start generated code]*/
static PyObject *
_io__IOBase_readline_impl(PyObject *self, Py_ssize_t limit)
/*[clinic end generated code: output=4479f79b58187840 input=df4cc8884f553cab]*/
{
/* For backwards compatibility, a (slowish) readline(). */
int has_peek = 0;
PyObject *buffer, *result;
Py_ssize_t old_size = -1;
_Py_IDENTIFIER(peek);
if (_PyObject_HasAttrId(self, &PyId_peek))
has_peek = 1;
buffer = PyByteArray_FromStringAndSize(NULL, 0);
if (buffer == NULL)
return NULL;
while (limit < 0 || Py_SIZE(buffer) < limit) {
Py_ssize_t nreadahead = 1;
PyObject *b;
if (has_peek) {
PyObject *readahead = _PyObject_CallMethodId(self, &PyId_peek, "i", 1);
if (readahead == NULL) {
/* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals()
when EINTR occurs so we needn't do it ourselves. */
if (_PyIO_trap_eintr()) {
continue;
}
goto fail;
}
if (!PyBytes_Check(readahead)) {
PyErr_Format(PyExc_IOError,
"peek() should have returned a bytes object, "
"not '%.200s'", Py_TYPE(readahead)->tp_name);
Py_DECREF(readahead);
goto fail;
}
if (PyBytes_GET_SIZE(readahead) > 0) {
Py_ssize_t n = 0;
const char *buf = PyBytes_AS_STRING(readahead);
if (limit >= 0) {
do {
if (n >= PyBytes_GET_SIZE(readahead) || n >= limit)
break;
if (buf[n++] == '\n')
break;
} while (1);
}
else {
do {
if (n >= PyBytes_GET_SIZE(readahead))
break;
if (buf[n++] == '\n')
break;
} while (1);
}
nreadahead = n;
}
Py_DECREF(readahead);
}
b = _PyObject_CallMethodId(self, &PyId_read, "n", nreadahead);
if (b == NULL) {
/* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals()
when EINTR occurs so we needn't do it ourselves. */
if (_PyIO_trap_eintr()) {
continue;
}
goto fail;
}
if (!PyBytes_Check(b)) {
PyErr_Format(PyExc_IOError,
"read() should have returned a bytes object, "
"not '%.200s'", Py_TYPE(b)->tp_name);
Py_DECREF(b);
goto fail;
}
if (PyBytes_GET_SIZE(b) == 0) {
Py_DECREF(b);
break;
}
old_size = PyByteArray_GET_SIZE(buffer);
if (PyByteArray_Resize(buffer, old_size + PyBytes_GET_SIZE(b)) < 0) {
Py_DECREF(b);
goto fail;
}
memcpy(PyByteArray_AS_STRING(buffer) + old_size,
PyBytes_AS_STRING(b), PyBytes_GET_SIZE(b));
Py_DECREF(b);
if (PyByteArray_AS_STRING(buffer)[PyByteArray_GET_SIZE(buffer) - 1] == '\n')
break;
}
result = PyBytes_FromStringAndSize(PyByteArray_AS_STRING(buffer),
PyByteArray_GET_SIZE(buffer));
Py_DECREF(buffer);
return result;
fail:
Py_DECREF(buffer);
return NULL;
}
static PyObject *
iobase_iter(PyObject *self)
{
if (_PyIOBase_check_closed(self, Py_True) == NULL)
return NULL;
Py_INCREF(self);
return self;
}
static PyObject *
iobase_iternext(PyObject *self)
{
PyObject *line = PyObject_CallMethodObjArgs(self, _PyIO_str_readline, NULL);
if (line == NULL)
return NULL;
if (PyObject_Size(line) <= 0) {
/* Error or empty */
Py_DECREF(line);
return NULL;
}
return line;
}
/*[clinic input]
_io._IOBase.readlines
hint: io_ssize_t = -1
/
Return a list of lines from the stream.
hint can be specified to control the number of lines read: no more
lines will be read if the total size (in bytes/characters) of all
lines so far exceeds hint.
[clinic start generated code]*/
static PyObject *
_io__IOBase_readlines_impl(PyObject *self, Py_ssize_t hint)
/*[clinic end generated code: output=2f50421677fa3dea input=1961c4a95e96e661]*/
{
Py_ssize_t length = 0;
PyObject *result, *it = NULL;
result = PyList_New(0);
if (result == NULL)
return NULL;
if (hint <= 0) {
/* XXX special-casing this made sense in the Python version in order
to remove the bytecode interpretation overhead, but it could
probably be removed here. */
_Py_IDENTIFIER(extend);
PyObject *ret = _PyObject_CallMethodId(result, &PyId_extend, "O", self);
if (ret == NULL) {
goto error;
}
Py_DECREF(ret);
return result;
}
it = PyObject_GetIter(self);
if (it == NULL) {
goto error;
}
while (1) {
Py_ssize_t line_length;
PyObject *line = PyIter_Next(it);
if (line == NULL) {
if (PyErr_Occurred()) {
goto error;
}
else
break; /* StopIteration raised */
}
if (PyList_Append(result, line) < 0) {
Py_DECREF(line);
goto error;
}
line_length = PyObject_Size(line);
Py_DECREF(line);
if (line_length < 0) {
goto error;
}
if (line_length > hint - length)
break;
length += line_length;
}
Py_DECREF(it);
return result;
error:
Py_XDECREF(it);
Py_DECREF(result);
return NULL;
}
/*[clinic input]
_io._IOBase.writelines
lines: object
/
[clinic start generated code]*/
static PyObject *
_io__IOBase_writelines(PyObject *self, PyObject *lines)
/*[clinic end generated code: output=976eb0a9b60a6628 input=432e729a8450b3cb]*/
{
PyObject *iter, *res;
if (_PyIOBase_check_closed(self, Py_True) == NULL)
return NULL;
iter = PyObject_GetIter(lines);
if (iter == NULL)
return NULL;
while (1) {
PyObject *line = PyIter_Next(iter);
if (line == NULL) {
if (PyErr_Occurred()) {
Py_DECREF(iter);
return NULL;
}
else
break; /* Stop Iteration */
}
res = NULL;
do {
res = PyObject_CallMethodObjArgs(self, _PyIO_str_write, line, NULL);
} while (res == NULL && _PyIO_trap_eintr());
Py_DECREF(line);
if (res == NULL) {
Py_DECREF(iter);
return NULL;
}
Py_DECREF(res);
}
Py_DECREF(iter);
Py_RETURN_NONE;
}
#include "third_party/python/Modules/_io/clinic/iobase.inc"
static PyMethodDef iobase_methods[] = {
{"seek", iobase_seek, METH_VARARGS, iobase_seek_doc},
_IO__IOBASE_TELL_METHODDEF
{"truncate", iobase_truncate, METH_VARARGS, iobase_truncate_doc},
_IO__IOBASE_FLUSH_METHODDEF
_IO__IOBASE_CLOSE_METHODDEF
_IO__IOBASE_SEEKABLE_METHODDEF
_IO__IOBASE_READABLE_METHODDEF
_IO__IOBASE_WRITABLE_METHODDEF
{"_checkClosed", _PyIOBase_check_closed, METH_NOARGS},
{"_checkSeekable", _PyIOBase_check_seekable, METH_NOARGS},
{"_checkReadable", _PyIOBase_check_readable, METH_NOARGS},
{"_checkWritable", _PyIOBase_check_writable, METH_NOARGS},
_IO__IOBASE_FILENO_METHODDEF
_IO__IOBASE_ISATTY_METHODDEF
{"__enter__", iobase_enter, METH_NOARGS},
{"__exit__", iobase_exit, METH_VARARGS},
_IO__IOBASE_READLINE_METHODDEF
_IO__IOBASE_READLINES_METHODDEF
_IO__IOBASE_WRITELINES_METHODDEF
{NULL, NULL}
};
static PyGetSetDef iobase_getset[] = {
{"__dict__", PyObject_GenericGetDict, NULL, NULL},
{"closed", (getter)iobase_closed_get, NULL, NULL},
{NULL}
};
PyTypeObject PyIOBase_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io._IOBase", /*tp_name*/
sizeof(iobase), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)iobase_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /*tp_flags*/
iobase_doc, /* tp_doc */
(traverseproc)iobase_traverse, /* tp_traverse */
(inquiry)iobase_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(iobase, weakreflist), /* tp_weaklistoffset */
iobase_iter, /* tp_iter */
iobase_iternext, /* tp_iternext */
iobase_methods, /* tp_methods */
0, /* tp_members */
iobase_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(iobase, dict), /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
iobase_finalize, /* tp_finalize */
};
/*
* RawIOBase class, Inherits from IOBase.
*/
PyDoc_STRVAR(rawiobase_doc,
"Base class for raw binary I/O.");
/*
* The read() method is implemented by calling readinto(); derived classes
* that want to support read() only need to implement readinto() as a
* primitive operation. In general, readinto() can be more efficient than
* read().
*
* (It would be tempting to also provide an implementation of readinto() in
* terms of read(), in case the latter is a more suitable primitive operation,
* but that would lead to nasty recursion in case a subclass doesn't implement
* either.)
*/
/*[clinic input]
_io._RawIOBase.read
size as n: Py_ssize_t = -1
/
[clinic start generated code]*/
static PyObject *
_io__RawIOBase_read_impl(PyObject *self, Py_ssize_t n)
/*[clinic end generated code: output=6cdeb731e3c9f13c input=b6d0dcf6417d1374]*/
{
PyObject *b, *res;
if (n < 0) {
_Py_IDENTIFIER(readall);
return _PyObject_CallMethodId(self, &PyId_readall, NULL);
}
/* TODO: allocate a bytes object directly instead and manually construct
a writable memoryview pointing to it. */
b = PyByteArray_FromStringAndSize(NULL, n);
if (b == NULL)
return NULL;
res = PyObject_CallMethodObjArgs(self, _PyIO_str_readinto, b, NULL);
if (res == NULL || res == Py_None) {
Py_DECREF(b);
return res;
}
n = PyNumber_AsSsize_t(res, PyExc_ValueError);
Py_DECREF(res);
if (n == -1 && PyErr_Occurred()) {
Py_DECREF(b);
return NULL;
}
res = PyBytes_FromStringAndSize(PyByteArray_AsString(b), n);
Py_DECREF(b);
return res;
}
/*[clinic input]
_io._RawIOBase.readall
Read until EOF, using multiple read() call.
[clinic start generated code]*/
static PyObject *
_io__RawIOBase_readall_impl(PyObject *self)
/*[clinic end generated code: output=1987b9ce929425a0 input=688874141213622a]*/
{
int r;
PyObject *chunks = PyList_New(0);
PyObject *result;
if (chunks == NULL)
return NULL;
while (1) {
PyObject *data = _PyObject_CallMethodId(self, &PyId_read,
"i", DEFAULT_BUFFER_SIZE);
if (!data) {
/* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals()
when EINTR occurs so we needn't do it ourselves. */
if (_PyIO_trap_eintr()) {
continue;
}
Py_DECREF(chunks);
return NULL;
}
if (data == Py_None) {
if (PyList_GET_SIZE(chunks) == 0) {
Py_DECREF(chunks);
return data;
}
Py_DECREF(data);
break;
}
if (!PyBytes_Check(data)) {
Py_DECREF(chunks);
Py_DECREF(data);
PyErr_SetString(PyExc_TypeError, "read() should return bytes");
return NULL;
}
if (PyBytes_GET_SIZE(data) == 0) {
/* EOF */
Py_DECREF(data);
break;
}
r = PyList_Append(chunks, data);
Py_DECREF(data);
if (r < 0) {
Py_DECREF(chunks);
return NULL;
}
}
result = _PyBytes_Join(_PyIO_empty_bytes, chunks);
Py_DECREF(chunks);
return result;
}
static PyObject *
rawiobase_readinto(PyObject *self, PyObject *args)
{
PyErr_SetNone(PyExc_NotImplementedError);
return NULL;
}
static PyObject *
rawiobase_write(PyObject *self, PyObject *args)
{
PyErr_SetNone(PyExc_NotImplementedError);
return NULL;
}
static PyMethodDef rawiobase_methods[] = {
_IO__RAWIOBASE_READ_METHODDEF
_IO__RAWIOBASE_READALL_METHODDEF
{"readinto", rawiobase_readinto, METH_VARARGS},
{"write", rawiobase_write, METH_VARARGS},
{NULL, NULL}
};
PyTypeObject PyRawIOBase_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_io._RawIOBase", /*tp_name*/
0, /*tp_basicsize*/
0, /*tp_itemsize*/
0, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare */
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_FINALIZE, /*tp_flags*/
rawiobase_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
rawiobase_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
&PyIOBase_Type, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
0, /* tp_finalize */
};
| 31,471 | 1,061 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/clinic/fileio.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_io_FileIO_close__doc__,
"close($self, /)\n"
"--\n"
"\n"
"Close the file.\n"
"\n"
"A closed file cannot be used for further I/O operations. close() may be\n"
"called more than once without error.");
#define _IO_FILEIO_CLOSE_METHODDEF \
{"close", (PyCFunction)_io_FileIO_close, METH_NOARGS, _io_FileIO_close__doc__},
static PyObject *
_io_FileIO_close_impl(fileio *self);
static PyObject *
_io_FileIO_close(fileio *self, PyObject *Py_UNUSED(ignored))
{
return _io_FileIO_close_impl(self);
}
PyDoc_STRVAR(_io_FileIO___init____doc__,
"FileIO(file, mode=\'r\', closefd=True, opener=None)\n"
"--\n"
"\n"
"Open a file.\n"
"\n"
"The mode can be \'r\' (default), \'w\', \'x\' or \'a\' for reading,\n"
"writing, exclusive creation or appending. The file will be created if it\n"
"doesn\'t exist when opened for writing or appending; it will be truncated\n"
"when opened for writing. A FileExistsError will be raised if it already\n"
"exists when opened for creating. Opening a file for creating implies\n"
"writing so this mode behaves in a similar way to \'w\'.Add a \'+\' to the mode\n"
"to allow simultaneous reading and writing. A custom opener can be used by\n"
"passing a callable as *opener*. The underlying file descriptor for the file\n"
"object is then obtained by calling opener with (*name*, *flags*).\n"
"*opener* must return an open file descriptor (passing os.open as *opener*\n"
"results in functionality similar to passing None).");
static int
_io_FileIO___init___impl(fileio *self, PyObject *nameobj, const char *mode,
int closefd, PyObject *opener);
static int
_io_FileIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"file", "mode", "closefd", "opener", NULL};
static _PyArg_Parser _parser = {"O|siO:FileIO", _keywords, 0};
PyObject *nameobj;
const char *mode = "r";
int closefd = 1;
PyObject *opener = Py_None;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&nameobj, &mode, &closefd, &opener)) {
goto exit;
}
return_value = _io_FileIO___init___impl((fileio *)self, nameobj, mode, closefd, opener);
exit:
return return_value;
}
PyDoc_STRVAR(_io_FileIO_fileno__doc__,
"fileno($self, /)\n"
"--\n"
"\n"
"Return the underlying file descriptor (an integer).");
#define _IO_FILEIO_FILENO_METHODDEF \
{"fileno", (PyCFunction)_io_FileIO_fileno, METH_NOARGS, _io_FileIO_fileno__doc__},
static PyObject *
_io_FileIO_fileno_impl(fileio *self);
static PyObject *
_io_FileIO_fileno(fileio *self, PyObject *Py_UNUSED(ignored))
{
return _io_FileIO_fileno_impl(self);
}
PyDoc_STRVAR(_io_FileIO_readable__doc__,
"readable($self, /)\n"
"--\n"
"\n"
"True if file was opened in a read mode.");
#define _IO_FILEIO_READABLE_METHODDEF \
{"readable", (PyCFunction)_io_FileIO_readable, METH_NOARGS, _io_FileIO_readable__doc__},
static PyObject *
_io_FileIO_readable_impl(fileio *self);
static PyObject *
_io_FileIO_readable(fileio *self, PyObject *Py_UNUSED(ignored))
{
return _io_FileIO_readable_impl(self);
}
PyDoc_STRVAR(_io_FileIO_writable__doc__,
"writable($self, /)\n"
"--\n"
"\n"
"True if file was opened in a write mode.");
#define _IO_FILEIO_WRITABLE_METHODDEF \
{"writable", (PyCFunction)_io_FileIO_writable, METH_NOARGS, _io_FileIO_writable__doc__},
static PyObject *
_io_FileIO_writable_impl(fileio *self);
static PyObject *
_io_FileIO_writable(fileio *self, PyObject *Py_UNUSED(ignored))
{
return _io_FileIO_writable_impl(self);
}
PyDoc_STRVAR(_io_FileIO_seekable__doc__,
"seekable($self, /)\n"
"--\n"
"\n"
"True if file supports random-access.");
#define _IO_FILEIO_SEEKABLE_METHODDEF \
{"seekable", (PyCFunction)_io_FileIO_seekable, METH_NOARGS, _io_FileIO_seekable__doc__},
static PyObject *
_io_FileIO_seekable_impl(fileio *self);
static PyObject *
_io_FileIO_seekable(fileio *self, PyObject *Py_UNUSED(ignored))
{
return _io_FileIO_seekable_impl(self);
}
PyDoc_STRVAR(_io_FileIO_readinto__doc__,
"readinto($self, buffer, /)\n"
"--\n"
"\n"
"Same as RawIOBase.readinto().");
#define _IO_FILEIO_READINTO_METHODDEF \
{"readinto", (PyCFunction)_io_FileIO_readinto, METH_O, _io_FileIO_readinto__doc__},
static PyObject *
_io_FileIO_readinto_impl(fileio *self, Py_buffer *buffer);
static PyObject *
_io_FileIO_readinto(fileio *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "w*:readinto", &buffer)) {
goto exit;
}
return_value = _io_FileIO_readinto_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_io_FileIO_readall__doc__,
"readall($self, /)\n"
"--\n"
"\n"
"Read all data from the file, returned as bytes.\n"
"\n"
"In non-blocking mode, returns as much as is immediately available,\n"
"or None if no data is available. Return an empty bytes object at EOF.");
#define _IO_FILEIO_READALL_METHODDEF \
{"readall", (PyCFunction)_io_FileIO_readall, METH_NOARGS, _io_FileIO_readall__doc__},
static PyObject *
_io_FileIO_readall_impl(fileio *self);
static PyObject *
_io_FileIO_readall(fileio *self, PyObject *Py_UNUSED(ignored))
{
return _io_FileIO_readall_impl(self);
}
PyDoc_STRVAR(_io_FileIO_read__doc__,
"read($self, size=-1, /)\n"
"--\n"
"\n"
"Read at most size bytes, returned as bytes.\n"
"\n"
"Only makes one system call, so less data may be returned than requested.\n"
"In non-blocking mode, returns None if no data is available.\n"
"Return an empty bytes object at EOF.");
#define _IO_FILEIO_READ_METHODDEF \
{"read", (PyCFunction)_io_FileIO_read, METH_FASTCALL, _io_FileIO_read__doc__},
static PyObject *
_io_FileIO_read_impl(fileio *self, Py_ssize_t size);
static PyObject *
_io_FileIO_read(fileio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t size = -1;
if (!_PyArg_ParseStack(args, nargs, "|O&:read",
_PyIO_ConvertSsize_t, &size)) {
goto exit;
}
return_value = _io_FileIO_read_impl(self, size);
exit:
return return_value;
}
PyDoc_STRVAR(_io_FileIO_write__doc__,
"write($self, b, /)\n"
"--\n"
"\n"
"Write buffer b to file, return number of bytes written.\n"
"\n"
"Only makes one system call, so not all of the data may be written.\n"
"The number of bytes actually written is returned. In non-blocking mode,\n"
"returns None if the write would block.");
#define _IO_FILEIO_WRITE_METHODDEF \
{"write", (PyCFunction)_io_FileIO_write, METH_O, _io_FileIO_write__doc__},
static PyObject *
_io_FileIO_write_impl(fileio *self, Py_buffer *b);
static PyObject *
_io_FileIO_write(fileio *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer b = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:write", &b)) {
goto exit;
}
return_value = _io_FileIO_write_impl(self, &b);
exit:
/* Cleanup for b */
if (b.obj) {
PyBuffer_Release(&b);
}
return return_value;
}
PyDoc_STRVAR(_io_FileIO_seek__doc__,
"seek($self, pos, whence=0, /)\n"
"--\n"
"\n"
"Move to new file position and return the file position.\n"
"\n"
"Argument offset is a byte count. Optional argument whence defaults to\n"
"SEEK_SET or 0 (offset from start of file, offset should be >= 0); other values\n"
"are SEEK_CUR or 1 (move relative to current position, positive or negative),\n"
"and SEEK_END or 2 (move relative to end of file, usually negative, although\n"
"many platforms allow seeking beyond the end of a file).\n"
"\n"
"Note that not all file objects are seekable.");
#define _IO_FILEIO_SEEK_METHODDEF \
{"seek", (PyCFunction)_io_FileIO_seek, METH_FASTCALL, _io_FileIO_seek__doc__},
static PyObject *
_io_FileIO_seek_impl(fileio *self, PyObject *pos, int whence);
static PyObject *
_io_FileIO_seek(fileio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *pos;
int whence = 0;
if (!_PyArg_ParseStack(args, nargs, "O|i:seek",
&pos, &whence)) {
goto exit;
}
return_value = _io_FileIO_seek_impl(self, pos, whence);
exit:
return return_value;
}
PyDoc_STRVAR(_io_FileIO_tell__doc__,
"tell($self, /)\n"
"--\n"
"\n"
"Current file position.\n"
"\n"
"Can raise OSError for non seekable files.");
#define _IO_FILEIO_TELL_METHODDEF \
{"tell", (PyCFunction)_io_FileIO_tell, METH_NOARGS, _io_FileIO_tell__doc__},
static PyObject *
_io_FileIO_tell_impl(fileio *self);
static PyObject *
_io_FileIO_tell(fileio *self, PyObject *Py_UNUSED(ignored))
{
return _io_FileIO_tell_impl(self);
}
#if defined(HAVE_FTRUNCATE)
PyDoc_STRVAR(_io_FileIO_truncate__doc__,
"truncate($self, size=None, /)\n"
"--\n"
"\n"
"Truncate the file to at most size bytes and return the truncated size.\n"
"\n"
"Size defaults to the current file position, as returned by tell().\n"
"The current file position is changed to the value of size.");
#define _IO_FILEIO_TRUNCATE_METHODDEF \
{"truncate", (PyCFunction)_io_FileIO_truncate, METH_FASTCALL, _io_FileIO_truncate__doc__},
static PyObject *
_io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
static PyObject *
_io_FileIO_truncate(fileio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *posobj = NULL;
if (!_PyArg_UnpackStack(args, nargs, "truncate",
0, 1,
&posobj)) {
goto exit;
}
return_value = _io_FileIO_truncate_impl(self, posobj);
exit:
return return_value;
}
#endif /* defined(HAVE_FTRUNCATE) */
PyDoc_STRVAR(_io_FileIO_isatty__doc__,
"isatty($self, /)\n"
"--\n"
"\n"
"True if the file is connected to a TTY device.");
#define _IO_FILEIO_ISATTY_METHODDEF \
{"isatty", (PyCFunction)_io_FileIO_isatty, METH_NOARGS, _io_FileIO_isatty__doc__},
static PyObject *
_io_FileIO_isatty_impl(fileio *self);
static PyObject *
_io_FileIO_isatty(fileio *self, PyObject *Py_UNUSED(ignored))
{
return _io_FileIO_isatty_impl(self);
}
#ifndef _IO_FILEIO_TRUNCATE_METHODDEF
#define _IO_FILEIO_TRUNCATE_METHODDEF
#endif /* !defined(_IO_FILEIO_TRUNCATE_METHODDEF) */
/*[clinic end generated code: output=9d282c5eb1399024 input=a9049054013a1b77]*/
| 10,382 | 378 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/clinic/_iomodule.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_io_open__doc__,
"open($module, /, file, mode=\'r\', buffering=-1, encoding=None,\n"
" errors=None, newline=None, closefd=True, opener=None)\n"
"--\n"
"\n"
"Open file and return a stream. Raise IOError upon failure.\n"
"\n"
"file is either a text or byte string giving the name (and the path\n"
"if the file isn\'t in the current working directory) of the file to\n"
"be opened or an integer file descriptor of the file to be\n"
"wrapped. (If a file descriptor is given, it is closed when the\n"
"returned I/O object is closed, unless closefd is set to False.)\n"
"\n"
"mode is an optional string that specifies the mode in which the file\n"
"is opened. It defaults to \'r\' which means open for reading in text\n"
"mode. Other common values are \'w\' for writing (truncating the file if\n"
"it already exists), \'x\' for creating and writing to a new file, and\n"
"\'a\' for appending (which on some Unix systems, means that all writes\n"
"append to the end of the file regardless of the current seek position).\n"
"In text mode, if encoding is not specified the encoding used is platform\n"
"dependent: locale.getpreferredencoding(False) is called to get the\n"
"current locale encoding. (For reading and writing raw bytes use binary\n"
"mode and leave encoding unspecified.) The available modes are:\n"
"\n"
"========= ===============================================================\n"
"Character Meaning\n"
"--------- ---------------------------------------------------------------\n"
"\'r\' open for reading (default)\n"
"\'w\' open for writing, truncating the file first\n"
"\'x\' create a new file and open it for writing\n"
"\'a\' open for writing, appending to the end of the file if it exists\n"
"\'b\' binary mode\n"
"\'t\' text mode (default)\n"
"\'+\' open a disk file for updating (reading and writing)\n"
"\'U\' universal newline mode (deprecated)\n"
"========= ===============================================================\n"
"\n"
"The default mode is \'rt\' (open for reading text). For binary random\n"
"access, the mode \'w+b\' opens and truncates the file to 0 bytes, while\n"
"\'r+b\' opens the file without truncation. The \'x\' mode implies \'w\' and\n"
"raises an `FileExistsError` if the file already exists.\n"
"\n"
"Python distinguishes between files opened in binary and text modes,\n"
"even when the underlying operating system doesn\'t. Files opened in\n"
"binary mode (appending \'b\' to the mode argument) return contents as\n"
"bytes objects without any decoding. In text mode (the default, or when\n"
"\'t\' is appended to the mode argument), the contents of the file are\n"
"returned as strings, the bytes having been first decoded using a\n"
"platform-dependent encoding or using the specified encoding if given.\n"
"\n"
"\'U\' mode is deprecated and will raise an exception in future versions\n"
"of Python. It has no effect in Python 3. Use newline to control\n"
"universal newlines mode.\n"
"\n"
"buffering is an optional integer used to set the buffering policy.\n"
"Pass 0 to switch buffering off (only allowed in binary mode), 1 to select\n"
"line buffering (only usable in text mode), and an integer > 1 to indicate\n"
"the size of a fixed-size chunk buffer. When no buffering argument is\n"
"given, the default buffering policy works as follows:\n"
"\n"
"* Binary files are buffered in fixed-size chunks; the size of the buffer\n"
" is chosen using a heuristic trying to determine the underlying device\'s\n"
" \"block size\" and falling back on `io.DEFAULT_BUFFER_SIZE`.\n"
" On many systems, the buffer will typically be 4096 or 8192 bytes long.\n"
"\n"
"* \"Interactive\" text files (files for which isatty() returns True)\n"
" use line buffering. Other text files use the policy described above\n"
" for binary files.\n"
"\n"
"encoding is the name of the encoding used to decode or encode the\n"
"file. This should only be used in text mode. The default encoding is\n"
"platform dependent, but any encoding supported by Python can be\n"
"passed. See the codecs module for the list of supported encodings.\n"
"\n"
"errors is an optional string that specifies how encoding errors are to\n"
"be handled---this argument should not be used in binary mode. Pass\n"
"\'strict\' to raise a ValueError exception if there is an encoding error\n"
"(the default of None has the same effect), or pass \'ignore\' to ignore\n"
"errors. (Note that ignoring encoding errors can lead to data loss.)\n"
"See the documentation for codecs.register or run \'help(codecs.Codec)\'\n"
"for a list of the permitted encoding error strings.\n"
"\n"
"newline controls how universal newlines works (it only applies to text\n"
"mode). It can be None, \'\', \'\\n\', \'\\r\', and \'\\r\\n\'. It works as\n"
"follows:\n"
"\n"
"* On input, if newline is None, universal newlines mode is\n"
" enabled. Lines in the input can end in \'\\n\', \'\\r\', or \'\\r\\n\', and\n"
" these are translated into \'\\n\' before being returned to the\n"
" caller. If it is \'\', universal newline mode is enabled, but line\n"
" endings are returned to the caller untranslated. If it has any of\n"
" the other legal values, input lines are only terminated by the given\n"
" string, and the line ending is returned to the caller untranslated.\n"
"\n"
"* On output, if newline is None, any \'\\n\' characters written are\n"
" translated to the system default line separator, os.linesep. If\n"
" newline is \'\' or \'\\n\', no translation takes place. If newline is any\n"
" of the other legal values, any \'\\n\' characters written are translated\n"
" to the given string.\n"
"\n"
"If closefd is False, the underlying file descriptor will be kept open\n"
"when the file is closed. This does not work when a file name is given\n"
"and must be True in that case.\n"
"\n"
"A custom opener can be used by passing a callable as *opener*. The\n"
"underlying file descriptor for the file object is then obtained by\n"
"calling *opener* with (*file*, *flags*). *opener* must return an open\n"
"file descriptor (passing os.open as *opener* results in functionality\n"
"similar to passing None).\n"
"\n"
"open() returns a file object whose type depends on the mode, and\n"
"through which the standard file operations such as reading and writing\n"
"are performed. When open() is used to open a file in a text mode (\'w\',\n"
"\'r\', \'wt\', \'rt\', etc.), it returns a TextIOWrapper. When used to open\n"
"a file in a binary mode, the returned class varies: in read binary\n"
"mode, it returns a BufferedReader; in write binary and append binary\n"
"modes, it returns a BufferedWriter, and in read/write mode, it returns\n"
"a BufferedRandom.\n"
"\n"
"It is also possible to use a string or bytearray as a file for both\n"
"reading and writing. For strings StringIO can be used like a file\n"
"opened in a text mode, and for bytes a BytesIO can be used like a file\n"
"opened in a binary mode.");
#define _IO_OPEN_METHODDEF \
{"open", (PyCFunction)_io_open, METH_FASTCALL|METH_KEYWORDS, _io_open__doc__},
static PyObject *
_io_open_impl(PyObject *module, PyObject *file, const char *mode,
int buffering, const char *encoding, const char *errors,
const char *newline, int closefd, PyObject *opener);
static PyObject *
_io_open(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"file", "mode", "buffering", "encoding", "errors", "newline", "closefd", "opener", NULL};
static _PyArg_Parser _parser = {"O|sizzziO:open", _keywords, 0};
PyObject *file;
const char *mode = "r";
int buffering = -1;
const char *encoding = NULL;
const char *errors = NULL;
const char *newline = NULL;
int closefd = 1;
PyObject *opener = Py_None;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&file, &mode, &buffering, &encoding, &errors, &newline, &closefd, &opener)) {
goto exit;
}
return_value = _io_open_impl(module, file, mode, buffering, encoding, errors, newline, closefd, opener);
exit:
return return_value;
}
/*[clinic end generated code: output=a748395f9589de02 input=a9049054013a1b77]*/
| 8,361 | 163 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/clinic/stringio.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_io_StringIO_getvalue__doc__,
"getvalue($self, /)\n"
"--\n"
"\n"
"Retrieve the entire contents of the object.");
#define _IO_STRINGIO_GETVALUE_METHODDEF \
{"getvalue", (PyCFunction)_io_StringIO_getvalue, METH_NOARGS, _io_StringIO_getvalue__doc__},
static PyObject *
_io_StringIO_getvalue_impl(stringio *self);
static PyObject *
_io_StringIO_getvalue(stringio *self, PyObject *Py_UNUSED(ignored))
{
return _io_StringIO_getvalue_impl(self);
}
PyDoc_STRVAR(_io_StringIO_tell__doc__,
"tell($self, /)\n"
"--\n"
"\n"
"Tell the current file position.");
#define _IO_STRINGIO_TELL_METHODDEF \
{"tell", (PyCFunction)_io_StringIO_tell, METH_NOARGS, _io_StringIO_tell__doc__},
static PyObject *
_io_StringIO_tell_impl(stringio *self);
static PyObject *
_io_StringIO_tell(stringio *self, PyObject *Py_UNUSED(ignored))
{
return _io_StringIO_tell_impl(self);
}
PyDoc_STRVAR(_io_StringIO_read__doc__,
"read($self, size=None, /)\n"
"--\n"
"\n"
"Read at most size characters, returned as a string.\n"
"\n"
"If the argument is negative or omitted, read until EOF\n"
"is reached. Return an empty string at EOF.");
#define _IO_STRINGIO_READ_METHODDEF \
{"read", (PyCFunction)_io_StringIO_read, METH_FASTCALL, _io_StringIO_read__doc__},
static PyObject *
_io_StringIO_read_impl(stringio *self, PyObject *arg);
static PyObject *
_io_StringIO_read(stringio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *arg = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "read",
0, 1,
&arg)) {
goto exit;
}
return_value = _io_StringIO_read_impl(self, arg);
exit:
return return_value;
}
PyDoc_STRVAR(_io_StringIO_readline__doc__,
"readline($self, size=None, /)\n"
"--\n"
"\n"
"Read until newline or EOF.\n"
"\n"
"Returns an empty string if EOF is hit immediately.");
#define _IO_STRINGIO_READLINE_METHODDEF \
{"readline", (PyCFunction)_io_StringIO_readline, METH_FASTCALL, _io_StringIO_readline__doc__},
static PyObject *
_io_StringIO_readline_impl(stringio *self, PyObject *arg);
static PyObject *
_io_StringIO_readline(stringio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *arg = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "readline",
0, 1,
&arg)) {
goto exit;
}
return_value = _io_StringIO_readline_impl(self, arg);
exit:
return return_value;
}
PyDoc_STRVAR(_io_StringIO_truncate__doc__,
"truncate($self, pos=None, /)\n"
"--\n"
"\n"
"Truncate size to pos.\n"
"\n"
"The pos argument defaults to the current file position, as\n"
"returned by tell(). The current file position is unchanged.\n"
"Returns the new absolute position.");
#define _IO_STRINGIO_TRUNCATE_METHODDEF \
{"truncate", (PyCFunction)_io_StringIO_truncate, METH_FASTCALL, _io_StringIO_truncate__doc__},
static PyObject *
_io_StringIO_truncate_impl(stringio *self, PyObject *arg);
static PyObject *
_io_StringIO_truncate(stringio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *arg = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "truncate",
0, 1,
&arg)) {
goto exit;
}
return_value = _io_StringIO_truncate_impl(self, arg);
exit:
return return_value;
}
PyDoc_STRVAR(_io_StringIO_seek__doc__,
"seek($self, pos, whence=0, /)\n"
"--\n"
"\n"
"Change stream position.\n"
"\n"
"Seek to character offset pos relative to position indicated by whence:\n"
" 0 Start of stream (the default). pos should be >= 0;\n"
" 1 Current position - pos must be 0;\n"
" 2 End of stream - pos must be 0.\n"
"Returns the new absolute position.");
#define _IO_STRINGIO_SEEK_METHODDEF \
{"seek", (PyCFunction)_io_StringIO_seek, METH_FASTCALL, _io_StringIO_seek__doc__},
static PyObject *
_io_StringIO_seek_impl(stringio *self, Py_ssize_t pos, int whence);
static PyObject *
_io_StringIO_seek(stringio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t pos;
int whence = 0;
if (!_PyArg_ParseStack(args, nargs, "n|i:seek",
&pos, &whence)) {
goto exit;
}
return_value = _io_StringIO_seek_impl(self, pos, whence);
exit:
return return_value;
}
PyDoc_STRVAR(_io_StringIO_write__doc__,
"write($self, s, /)\n"
"--\n"
"\n"
"Write string to file.\n"
"\n"
"Returns the number of characters written, which is always equal to\n"
"the length of the string.");
#define _IO_STRINGIO_WRITE_METHODDEF \
{"write", (PyCFunction)_io_StringIO_write, METH_O, _io_StringIO_write__doc__},
PyDoc_STRVAR(_io_StringIO_close__doc__,
"close($self, /)\n"
"--\n"
"\n"
"Close the IO object.\n"
"\n"
"Attempting any further operation after the object is closed\n"
"will raise a ValueError.\n"
"\n"
"This method has no effect if the file is already closed.");
#define _IO_STRINGIO_CLOSE_METHODDEF \
{"close", (PyCFunction)_io_StringIO_close, METH_NOARGS, _io_StringIO_close__doc__},
static PyObject *
_io_StringIO_close_impl(stringio *self);
static PyObject *
_io_StringIO_close(stringio *self, PyObject *Py_UNUSED(ignored))
{
return _io_StringIO_close_impl(self);
}
PyDoc_STRVAR(_io_StringIO___init____doc__,
"StringIO(initial_value=\'\', newline=\'\\n\')\n"
"--\n"
"\n"
"Text I/O implementation using an in-memory buffer.\n"
"\n"
"The initial_value argument sets the value of object. The newline\n"
"argument is like the one of TextIOWrapper\'s constructor.");
static int
_io_StringIO___init___impl(stringio *self, PyObject *value,
PyObject *newline_obj);
static int
_io_StringIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"initial_value", "newline", NULL};
static _PyArg_Parser _parser = {"|OO:StringIO", _keywords, 0};
PyObject *value = NULL;
PyObject *newline_obj = NULL;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&value, &newline_obj)) {
goto exit;
}
return_value = _io_StringIO___init___impl((stringio *)self, value, newline_obj);
exit:
return return_value;
}
PyDoc_STRVAR(_io_StringIO_readable__doc__,
"readable($self, /)\n"
"--\n"
"\n"
"Returns True if the IO object can be read.");
#define _IO_STRINGIO_READABLE_METHODDEF \
{"readable", (PyCFunction)_io_StringIO_readable, METH_NOARGS, _io_StringIO_readable__doc__},
static PyObject *
_io_StringIO_readable_impl(stringio *self);
static PyObject *
_io_StringIO_readable(stringio *self, PyObject *Py_UNUSED(ignored))
{
return _io_StringIO_readable_impl(self);
}
PyDoc_STRVAR(_io_StringIO_writable__doc__,
"writable($self, /)\n"
"--\n"
"\n"
"Returns True if the IO object can be written.");
#define _IO_STRINGIO_WRITABLE_METHODDEF \
{"writable", (PyCFunction)_io_StringIO_writable, METH_NOARGS, _io_StringIO_writable__doc__},
static PyObject *
_io_StringIO_writable_impl(stringio *self);
static PyObject *
_io_StringIO_writable(stringio *self, PyObject *Py_UNUSED(ignored))
{
return _io_StringIO_writable_impl(self);
}
PyDoc_STRVAR(_io_StringIO_seekable__doc__,
"seekable($self, /)\n"
"--\n"
"\n"
"Returns True if the IO object can be seeked.");
#define _IO_STRINGIO_SEEKABLE_METHODDEF \
{"seekable", (PyCFunction)_io_StringIO_seekable, METH_NOARGS, _io_StringIO_seekable__doc__},
static PyObject *
_io_StringIO_seekable_impl(stringio *self);
static PyObject *
_io_StringIO_seekable(stringio *self, PyObject *Py_UNUSED(ignored))
{
return _io_StringIO_seekable_impl(self);
}
/*[clinic end generated code: output=d69e0df410070292 input=a9049054013a1b77]*/
| 7,762 | 294 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/clinic/bufferedio.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_io__BufferedIOBase_readinto__doc__,
"readinto($self, buffer, /)\n"
"--\n"
"\n");
#define _IO__BUFFEREDIOBASE_READINTO_METHODDEF \
{"readinto", (PyCFunction)_io__BufferedIOBase_readinto, METH_O, _io__BufferedIOBase_readinto__doc__},
static PyObject *
_io__BufferedIOBase_readinto_impl(PyObject *self, Py_buffer *buffer);
static PyObject *
_io__BufferedIOBase_readinto(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "w*:readinto", &buffer)) {
goto exit;
}
return_value = _io__BufferedIOBase_readinto_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_io__BufferedIOBase_readinto1__doc__,
"readinto1($self, buffer, /)\n"
"--\n"
"\n");
#define _IO__BUFFEREDIOBASE_READINTO1_METHODDEF \
{"readinto1", (PyCFunction)_io__BufferedIOBase_readinto1, METH_O, _io__BufferedIOBase_readinto1__doc__},
static PyObject *
_io__BufferedIOBase_readinto1_impl(PyObject *self, Py_buffer *buffer);
static PyObject *
_io__BufferedIOBase_readinto1(PyObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "w*:readinto1", &buffer)) {
goto exit;
}
return_value = _io__BufferedIOBase_readinto1_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_io__BufferedIOBase_detach__doc__,
"detach($self, /)\n"
"--\n"
"\n"
"Disconnect this buffer from its underlying raw stream and return it.\n"
"\n"
"After the raw stream has been detached, the buffer is in an unusable\n"
"state.");
#define _IO__BUFFEREDIOBASE_DETACH_METHODDEF \
{"detach", (PyCFunction)_io__BufferedIOBase_detach, METH_NOARGS, _io__BufferedIOBase_detach__doc__},
static PyObject *
_io__BufferedIOBase_detach_impl(PyObject *self);
static PyObject *
_io__BufferedIOBase_detach(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__BufferedIOBase_detach_impl(self);
}
PyDoc_STRVAR(_io__Buffered_peek__doc__,
"peek($self, size=0, /)\n"
"--\n"
"\n");
#define _IO__BUFFERED_PEEK_METHODDEF \
{"peek", (PyCFunction)_io__Buffered_peek, METH_FASTCALL, _io__Buffered_peek__doc__},
static PyObject *
_io__Buffered_peek_impl(buffered *self, Py_ssize_t size);
static PyObject *
_io__Buffered_peek(buffered *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t size = 0;
if (!_PyArg_ParseStack(args, nargs, "|n:peek",
&size)) {
goto exit;
}
return_value = _io__Buffered_peek_impl(self, size);
exit:
return return_value;
}
PyDoc_STRVAR(_io__Buffered_read__doc__,
"read($self, size=-1, /)\n"
"--\n"
"\n");
#define _IO__BUFFERED_READ_METHODDEF \
{"read", (PyCFunction)_io__Buffered_read, METH_FASTCALL, _io__Buffered_read__doc__},
static PyObject *
_io__Buffered_read_impl(buffered *self, Py_ssize_t n);
static PyObject *
_io__Buffered_read(buffered *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t n = -1;
if (!_PyArg_ParseStack(args, nargs, "|O&:read",
_PyIO_ConvertSsize_t, &n)) {
goto exit;
}
return_value = _io__Buffered_read_impl(self, n);
exit:
return return_value;
}
PyDoc_STRVAR(_io__Buffered_read1__doc__,
"read1($self, size, /)\n"
"--\n"
"\n");
#define _IO__BUFFERED_READ1_METHODDEF \
{"read1", (PyCFunction)_io__Buffered_read1, METH_O, _io__Buffered_read1__doc__},
static PyObject *
_io__Buffered_read1_impl(buffered *self, Py_ssize_t n);
static PyObject *
_io__Buffered_read1(buffered *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_ssize_t n;
if (!PyArg_Parse(arg, "n:read1", &n)) {
goto exit;
}
return_value = _io__Buffered_read1_impl(self, n);
exit:
return return_value;
}
PyDoc_STRVAR(_io__Buffered_readinto__doc__,
"readinto($self, buffer, /)\n"
"--\n"
"\n");
#define _IO__BUFFERED_READINTO_METHODDEF \
{"readinto", (PyCFunction)_io__Buffered_readinto, METH_O, _io__Buffered_readinto__doc__},
static PyObject *
_io__Buffered_readinto_impl(buffered *self, Py_buffer *buffer);
static PyObject *
_io__Buffered_readinto(buffered *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "w*:readinto", &buffer)) {
goto exit;
}
return_value = _io__Buffered_readinto_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_io__Buffered_readinto1__doc__,
"readinto1($self, buffer, /)\n"
"--\n"
"\n");
#define _IO__BUFFERED_READINTO1_METHODDEF \
{"readinto1", (PyCFunction)_io__Buffered_readinto1, METH_O, _io__Buffered_readinto1__doc__},
static PyObject *
_io__Buffered_readinto1_impl(buffered *self, Py_buffer *buffer);
static PyObject *
_io__Buffered_readinto1(buffered *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "w*:readinto1", &buffer)) {
goto exit;
}
return_value = _io__Buffered_readinto1_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_io__Buffered_readline__doc__,
"readline($self, size=-1, /)\n"
"--\n"
"\n");
#define _IO__BUFFERED_READLINE_METHODDEF \
{"readline", (PyCFunction)_io__Buffered_readline, METH_FASTCALL, _io__Buffered_readline__doc__},
static PyObject *
_io__Buffered_readline_impl(buffered *self, Py_ssize_t size);
static PyObject *
_io__Buffered_readline(buffered *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t size = -1;
if (!_PyArg_ParseStack(args, nargs, "|O&:readline",
_PyIO_ConvertSsize_t, &size)) {
goto exit;
}
return_value = _io__Buffered_readline_impl(self, size);
exit:
return return_value;
}
PyDoc_STRVAR(_io__Buffered_seek__doc__,
"seek($self, target, whence=0, /)\n"
"--\n"
"\n");
#define _IO__BUFFERED_SEEK_METHODDEF \
{"seek", (PyCFunction)_io__Buffered_seek, METH_FASTCALL, _io__Buffered_seek__doc__},
static PyObject *
_io__Buffered_seek_impl(buffered *self, PyObject *targetobj, int whence);
static PyObject *
_io__Buffered_seek(buffered *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *targetobj;
int whence = 0;
if (!_PyArg_ParseStack(args, nargs, "O|i:seek",
&targetobj, &whence)) {
goto exit;
}
return_value = _io__Buffered_seek_impl(self, targetobj, whence);
exit:
return return_value;
}
PyDoc_STRVAR(_io__Buffered_truncate__doc__,
"truncate($self, pos=None, /)\n"
"--\n"
"\n");
#define _IO__BUFFERED_TRUNCATE_METHODDEF \
{"truncate", (PyCFunction)_io__Buffered_truncate, METH_FASTCALL, _io__Buffered_truncate__doc__},
static PyObject *
_io__Buffered_truncate_impl(buffered *self, PyObject *pos);
static PyObject *
_io__Buffered_truncate(buffered *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *pos = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "truncate",
0, 1,
&pos)) {
goto exit;
}
return_value = _io__Buffered_truncate_impl(self, pos);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BufferedReader___init____doc__,
"BufferedReader(raw, buffer_size=DEFAULT_BUFFER_SIZE)\n"
"--\n"
"\n"
"Create a new buffered reader using the given readable raw IO object.");
static int
_io_BufferedReader___init___impl(buffered *self, PyObject *raw,
Py_ssize_t buffer_size);
static int
_io_BufferedReader___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"raw", "buffer_size", NULL};
static _PyArg_Parser _parser = {"O|n:BufferedReader", _keywords, 0};
PyObject *raw;
Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&raw, &buffer_size)) {
goto exit;
}
return_value = _io_BufferedReader___init___impl((buffered *)self, raw, buffer_size);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BufferedWriter___init____doc__,
"BufferedWriter(raw, buffer_size=DEFAULT_BUFFER_SIZE)\n"
"--\n"
"\n"
"A buffer for a writeable sequential RawIO object.\n"
"\n"
"The constructor creates a BufferedWriter for the given writeable raw\n"
"stream. If the buffer_size is not given, it defaults to\n"
"DEFAULT_BUFFER_SIZE.");
static int
_io_BufferedWriter___init___impl(buffered *self, PyObject *raw,
Py_ssize_t buffer_size);
static int
_io_BufferedWriter___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"raw", "buffer_size", NULL};
static _PyArg_Parser _parser = {"O|n:BufferedWriter", _keywords, 0};
PyObject *raw;
Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&raw, &buffer_size)) {
goto exit;
}
return_value = _io_BufferedWriter___init___impl((buffered *)self, raw, buffer_size);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BufferedWriter_write__doc__,
"write($self, buffer, /)\n"
"--\n"
"\n");
#define _IO_BUFFEREDWRITER_WRITE_METHODDEF \
{"write", (PyCFunction)_io_BufferedWriter_write, METH_O, _io_BufferedWriter_write__doc__},
static PyObject *
_io_BufferedWriter_write_impl(buffered *self, Py_buffer *buffer);
static PyObject *
_io_BufferedWriter_write(buffered *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:write", &buffer)) {
goto exit;
}
return_value = _io_BufferedWriter_write_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_io_BufferedRWPair___init____doc__,
"BufferedRWPair(reader, writer, buffer_size=DEFAULT_BUFFER_SIZE, /)\n"
"--\n"
"\n"
"A buffered reader and writer object together.\n"
"\n"
"A buffered reader object and buffered writer object put together to\n"
"form a sequential IO object that can read and write. This is typically\n"
"used with a socket or two-way pipe.\n"
"\n"
"reader and writer are RawIOBase objects that are readable and\n"
"writeable respectively. If the buffer_size is omitted it defaults to\n"
"DEFAULT_BUFFER_SIZE.");
static int
_io_BufferedRWPair___init___impl(rwpair *self, PyObject *reader,
PyObject *writer, Py_ssize_t buffer_size);
static int
_io_BufferedRWPair___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
PyObject *reader;
PyObject *writer;
Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
if ((Py_TYPE(self) == &PyBufferedRWPair_Type) &&
!_PyArg_NoKeywords("BufferedRWPair", kwargs)) {
goto exit;
}
if (!PyArg_ParseTuple(args, "OO|n:BufferedRWPair",
&reader, &writer, &buffer_size)) {
goto exit;
}
return_value = _io_BufferedRWPair___init___impl((rwpair *)self, reader, writer, buffer_size);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BufferedRandom___init____doc__,
"BufferedRandom(raw, buffer_size=DEFAULT_BUFFER_SIZE)\n"
"--\n"
"\n"
"A buffered interface to random access streams.\n"
"\n"
"The constructor creates a reader and writer for a seekable stream,\n"
"raw, given in the first argument. If the buffer_size is omitted it\n"
"defaults to DEFAULT_BUFFER_SIZE.");
static int
_io_BufferedRandom___init___impl(buffered *self, PyObject *raw,
Py_ssize_t buffer_size);
static int
_io_BufferedRandom___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"raw", "buffer_size", NULL};
static _PyArg_Parser _parser = {"O|n:BufferedRandom", _keywords, 0};
PyObject *raw;
Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&raw, &buffer_size)) {
goto exit;
}
return_value = _io_BufferedRandom___init___impl((buffered *)self, raw, buffer_size);
exit:
return return_value;
}
/*[clinic end generated code: output=5239e4eaff6306f3 input=a9049054013a1b77]*/
| 12,766 | 480 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/clinic/textio.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_io_IncrementalNewlineDecoder___init____doc__,
"IncrementalNewlineDecoder(decoder, translate, errors=\'strict\')\n"
"--\n"
"\n"
"Codec used when reading a file in universal newlines mode.\n"
"\n"
"It wraps another incremental decoder, translating \\r\\n and \\r into \\n.\n"
"It also records the types of newlines encountered. When used with\n"
"translate=False, it ensures that the newline sequence is returned in\n"
"one piece. When used with decoder=None, it expects unicode strings as\n"
"decode input and translates newlines without first invoking an external\n"
"decoder.");
static int
_io_IncrementalNewlineDecoder___init___impl(nldecoder_object *self,
PyObject *decoder, int translate,
PyObject *errors);
static int
_io_IncrementalNewlineDecoder___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"decoder", "translate", "errors", NULL};
static _PyArg_Parser _parser = {"Oi|O:IncrementalNewlineDecoder", _keywords, 0};
PyObject *decoder;
int translate;
PyObject *errors = NULL;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&decoder, &translate, &errors)) {
goto exit;
}
return_value = _io_IncrementalNewlineDecoder___init___impl((nldecoder_object *)self, decoder, translate, errors);
exit:
return return_value;
}
PyDoc_STRVAR(_io_IncrementalNewlineDecoder_decode__doc__,
"decode($self, /, input, final=False)\n"
"--\n"
"\n");
#define _IO_INCREMENTALNEWLINEDECODER_DECODE_METHODDEF \
{"decode", (PyCFunction)_io_IncrementalNewlineDecoder_decode, METH_FASTCALL|METH_KEYWORDS, _io_IncrementalNewlineDecoder_decode__doc__},
static PyObject *
_io_IncrementalNewlineDecoder_decode_impl(nldecoder_object *self,
PyObject *input, int final);
static PyObject *
_io_IncrementalNewlineDecoder_decode(nldecoder_object *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"input", "final", NULL};
static _PyArg_Parser _parser = {"O|i:decode", _keywords, 0};
PyObject *input;
int final = 0;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&input, &final)) {
goto exit;
}
return_value = _io_IncrementalNewlineDecoder_decode_impl(self, input, final);
exit:
return return_value;
}
PyDoc_STRVAR(_io_IncrementalNewlineDecoder_getstate__doc__,
"getstate($self, /)\n"
"--\n"
"\n");
#define _IO_INCREMENTALNEWLINEDECODER_GETSTATE_METHODDEF \
{"getstate", (PyCFunction)_io_IncrementalNewlineDecoder_getstate, METH_NOARGS, _io_IncrementalNewlineDecoder_getstate__doc__},
static PyObject *
_io_IncrementalNewlineDecoder_getstate_impl(nldecoder_object *self);
static PyObject *
_io_IncrementalNewlineDecoder_getstate(nldecoder_object *self, PyObject *Py_UNUSED(ignored))
{
return _io_IncrementalNewlineDecoder_getstate_impl(self);
}
PyDoc_STRVAR(_io_IncrementalNewlineDecoder_setstate__doc__,
"setstate($self, state, /)\n"
"--\n"
"\n");
#define _IO_INCREMENTALNEWLINEDECODER_SETSTATE_METHODDEF \
{"setstate", (PyCFunction)_io_IncrementalNewlineDecoder_setstate, METH_O, _io_IncrementalNewlineDecoder_setstate__doc__},
PyDoc_STRVAR(_io_IncrementalNewlineDecoder_reset__doc__,
"reset($self, /)\n"
"--\n"
"\n");
#define _IO_INCREMENTALNEWLINEDECODER_RESET_METHODDEF \
{"reset", (PyCFunction)_io_IncrementalNewlineDecoder_reset, METH_NOARGS, _io_IncrementalNewlineDecoder_reset__doc__},
static PyObject *
_io_IncrementalNewlineDecoder_reset_impl(nldecoder_object *self);
static PyObject *
_io_IncrementalNewlineDecoder_reset(nldecoder_object *self, PyObject *Py_UNUSED(ignored))
{
return _io_IncrementalNewlineDecoder_reset_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper___init____doc__,
"TextIOWrapper(buffer, encoding=None, errors=None, newline=None,\n"
" line_buffering=False, write_through=False)\n"
"--\n"
"\n"
"Character and line based layer over a BufferedIOBase object, buffer.\n"
"\n"
"encoding gives the name of the encoding that the stream will be\n"
"decoded or encoded with. It defaults to locale.getpreferredencoding(False).\n"
"\n"
"errors determines the strictness of encoding and decoding (see\n"
"help(codecs.Codec) or the documentation for codecs.register) and\n"
"defaults to \"strict\".\n"
"\n"
"newline controls how line endings are handled. It can be None, \'\',\n"
"\'\\n\', \'\\r\', and \'\\r\\n\'. It works as follows:\n"
"\n"
"* On input, if newline is None, universal newlines mode is\n"
" enabled. Lines in the input can end in \'\\n\', \'\\r\', or \'\\r\\n\', and\n"
" these are translated into \'\\n\' before being returned to the\n"
" caller. If it is \'\', universal newline mode is enabled, but line\n"
" endings are returned to the caller untranslated. If it has any of\n"
" the other legal values, input lines are only terminated by the given\n"
" string, and the line ending is returned to the caller untranslated.\n"
"\n"
"* On output, if newline is None, any \'\\n\' characters written are\n"
" translated to the system default line separator, os.linesep. If\n"
" newline is \'\' or \'\\n\', no translation takes place. If newline is any\n"
" of the other legal values, any \'\\n\' characters written are translated\n"
" to the given string.\n"
"\n"
"If line_buffering is True, a call to flush is implied when a call to\n"
"write contains a newline character.");
static int
_io_TextIOWrapper___init___impl(textio *self, PyObject *buffer,
const char *encoding, const char *errors,
const char *newline, int line_buffering,
int write_through);
static int
_io_TextIOWrapper___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"buffer", "encoding", "errors", "newline", "line_buffering", "write_through", NULL};
static _PyArg_Parser _parser = {"O|zzzii:TextIOWrapper", _keywords, 0};
PyObject *buffer;
const char *encoding = NULL;
const char *errors = NULL;
const char *newline = NULL;
int line_buffering = 0;
int write_through = 0;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&buffer, &encoding, &errors, &newline, &line_buffering, &write_through)) {
goto exit;
}
return_value = _io_TextIOWrapper___init___impl((textio *)self, buffer, encoding, errors, newline, line_buffering, write_through);
exit:
return return_value;
}
PyDoc_STRVAR(_io_TextIOWrapper_detach__doc__,
"detach($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_DETACH_METHODDEF \
{"detach", (PyCFunction)_io_TextIOWrapper_detach, METH_NOARGS, _io_TextIOWrapper_detach__doc__},
static PyObject *
_io_TextIOWrapper_detach_impl(textio *self);
static PyObject *
_io_TextIOWrapper_detach(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_detach_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper_write__doc__,
"write($self, text, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_WRITE_METHODDEF \
{"write", (PyCFunction)_io_TextIOWrapper_write, METH_O, _io_TextIOWrapper_write__doc__},
static PyObject *
_io_TextIOWrapper_write_impl(textio *self, PyObject *text);
static PyObject *
_io_TextIOWrapper_write(textio *self, PyObject *arg)
{
PyObject *return_value = NULL;
PyObject *text;
if (!PyArg_Parse(arg, "U:write", &text)) {
goto exit;
}
return_value = _io_TextIOWrapper_write_impl(self, text);
exit:
return return_value;
}
PyDoc_STRVAR(_io_TextIOWrapper_read__doc__,
"read($self, size=-1, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_READ_METHODDEF \
{"read", (PyCFunction)_io_TextIOWrapper_read, METH_FASTCALL, _io_TextIOWrapper_read__doc__},
static PyObject *
_io_TextIOWrapper_read_impl(textio *self, Py_ssize_t n);
static PyObject *
_io_TextIOWrapper_read(textio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t n = -1;
if (!_PyArg_ParseStack(args, nargs, "|O&:read",
_PyIO_ConvertSsize_t, &n)) {
goto exit;
}
return_value = _io_TextIOWrapper_read_impl(self, n);
exit:
return return_value;
}
PyDoc_STRVAR(_io_TextIOWrapper_readline__doc__,
"readline($self, size=-1, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_READLINE_METHODDEF \
{"readline", (PyCFunction)_io_TextIOWrapper_readline, METH_FASTCALL, _io_TextIOWrapper_readline__doc__},
static PyObject *
_io_TextIOWrapper_readline_impl(textio *self, Py_ssize_t size);
static PyObject *
_io_TextIOWrapper_readline(textio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t size = -1;
if (!_PyArg_ParseStack(args, nargs, "|n:readline",
&size)) {
goto exit;
}
return_value = _io_TextIOWrapper_readline_impl(self, size);
exit:
return return_value;
}
PyDoc_STRVAR(_io_TextIOWrapper_seek__doc__,
"seek($self, cookie, whence=0, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_SEEK_METHODDEF \
{"seek", (PyCFunction)_io_TextIOWrapper_seek, METH_FASTCALL, _io_TextIOWrapper_seek__doc__},
static PyObject *
_io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence);
static PyObject *
_io_TextIOWrapper_seek(textio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *cookieObj;
int whence = 0;
if (!_PyArg_ParseStack(args, nargs, "O|i:seek",
&cookieObj, &whence)) {
goto exit;
}
return_value = _io_TextIOWrapper_seek_impl(self, cookieObj, whence);
exit:
return return_value;
}
PyDoc_STRVAR(_io_TextIOWrapper_tell__doc__,
"tell($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_TELL_METHODDEF \
{"tell", (PyCFunction)_io_TextIOWrapper_tell, METH_NOARGS, _io_TextIOWrapper_tell__doc__},
static PyObject *
_io_TextIOWrapper_tell_impl(textio *self);
static PyObject *
_io_TextIOWrapper_tell(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_tell_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper_truncate__doc__,
"truncate($self, pos=None, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_TRUNCATE_METHODDEF \
{"truncate", (PyCFunction)_io_TextIOWrapper_truncate, METH_FASTCALL, _io_TextIOWrapper_truncate__doc__},
static PyObject *
_io_TextIOWrapper_truncate_impl(textio *self, PyObject *pos);
static PyObject *
_io_TextIOWrapper_truncate(textio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *pos = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "truncate",
0, 1,
&pos)) {
goto exit;
}
return_value = _io_TextIOWrapper_truncate_impl(self, pos);
exit:
return return_value;
}
PyDoc_STRVAR(_io_TextIOWrapper_fileno__doc__,
"fileno($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_FILENO_METHODDEF \
{"fileno", (PyCFunction)_io_TextIOWrapper_fileno, METH_NOARGS, _io_TextIOWrapper_fileno__doc__},
static PyObject *
_io_TextIOWrapper_fileno_impl(textio *self);
static PyObject *
_io_TextIOWrapper_fileno(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_fileno_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper_seekable__doc__,
"seekable($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_SEEKABLE_METHODDEF \
{"seekable", (PyCFunction)_io_TextIOWrapper_seekable, METH_NOARGS, _io_TextIOWrapper_seekable__doc__},
static PyObject *
_io_TextIOWrapper_seekable_impl(textio *self);
static PyObject *
_io_TextIOWrapper_seekable(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_seekable_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper_readable__doc__,
"readable($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_READABLE_METHODDEF \
{"readable", (PyCFunction)_io_TextIOWrapper_readable, METH_NOARGS, _io_TextIOWrapper_readable__doc__},
static PyObject *
_io_TextIOWrapper_readable_impl(textio *self);
static PyObject *
_io_TextIOWrapper_readable(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_readable_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper_writable__doc__,
"writable($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_WRITABLE_METHODDEF \
{"writable", (PyCFunction)_io_TextIOWrapper_writable, METH_NOARGS, _io_TextIOWrapper_writable__doc__},
static PyObject *
_io_TextIOWrapper_writable_impl(textio *self);
static PyObject *
_io_TextIOWrapper_writable(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_writable_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper_isatty__doc__,
"isatty($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_ISATTY_METHODDEF \
{"isatty", (PyCFunction)_io_TextIOWrapper_isatty, METH_NOARGS, _io_TextIOWrapper_isatty__doc__},
static PyObject *
_io_TextIOWrapper_isatty_impl(textio *self);
static PyObject *
_io_TextIOWrapper_isatty(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_isatty_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper_flush__doc__,
"flush($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_FLUSH_METHODDEF \
{"flush", (PyCFunction)_io_TextIOWrapper_flush, METH_NOARGS, _io_TextIOWrapper_flush__doc__},
static PyObject *
_io_TextIOWrapper_flush_impl(textio *self);
static PyObject *
_io_TextIOWrapper_flush(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_flush_impl(self);
}
PyDoc_STRVAR(_io_TextIOWrapper_close__doc__,
"close($self, /)\n"
"--\n"
"\n");
#define _IO_TEXTIOWRAPPER_CLOSE_METHODDEF \
{"close", (PyCFunction)_io_TextIOWrapper_close, METH_NOARGS, _io_TextIOWrapper_close__doc__},
static PyObject *
_io_TextIOWrapper_close_impl(textio *self);
static PyObject *
_io_TextIOWrapper_close(textio *self, PyObject *Py_UNUSED(ignored))
{
return _io_TextIOWrapper_close_impl(self);
}
/*[clinic end generated code: output=eee57db91b6b0550 input=a9049054013a1b77]*/
| 14,210 | 469 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/clinic/bytesio.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_io_BytesIO_readable__doc__,
"readable($self, /)\n"
"--\n"
"\n"
"Returns True if the IO object can be read.");
#define _IO_BYTESIO_READABLE_METHODDEF \
{"readable", (PyCFunction)_io_BytesIO_readable, METH_NOARGS, _io_BytesIO_readable__doc__},
static PyObject *
_io_BytesIO_readable_impl(bytesio *self);
static PyObject *
_io_BytesIO_readable(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_readable_impl(self);
}
PyDoc_STRVAR(_io_BytesIO_writable__doc__,
"writable($self, /)\n"
"--\n"
"\n"
"Returns True if the IO object can be written.");
#define _IO_BYTESIO_WRITABLE_METHODDEF \
{"writable", (PyCFunction)_io_BytesIO_writable, METH_NOARGS, _io_BytesIO_writable__doc__},
static PyObject *
_io_BytesIO_writable_impl(bytesio *self);
static PyObject *
_io_BytesIO_writable(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_writable_impl(self);
}
PyDoc_STRVAR(_io_BytesIO_seekable__doc__,
"seekable($self, /)\n"
"--\n"
"\n"
"Returns True if the IO object can be seeked.");
#define _IO_BYTESIO_SEEKABLE_METHODDEF \
{"seekable", (PyCFunction)_io_BytesIO_seekable, METH_NOARGS, _io_BytesIO_seekable__doc__},
static PyObject *
_io_BytesIO_seekable_impl(bytesio *self);
static PyObject *
_io_BytesIO_seekable(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_seekable_impl(self);
}
PyDoc_STRVAR(_io_BytesIO_flush__doc__,
"flush($self, /)\n"
"--\n"
"\n"
"Does nothing.");
#define _IO_BYTESIO_FLUSH_METHODDEF \
{"flush", (PyCFunction)_io_BytesIO_flush, METH_NOARGS, _io_BytesIO_flush__doc__},
static PyObject *
_io_BytesIO_flush_impl(bytesio *self);
static PyObject *
_io_BytesIO_flush(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_flush_impl(self);
}
PyDoc_STRVAR(_io_BytesIO_getbuffer__doc__,
"getbuffer($self, /)\n"
"--\n"
"\n"
"Get a read-write view over the contents of the BytesIO object.");
#define _IO_BYTESIO_GETBUFFER_METHODDEF \
{"getbuffer", (PyCFunction)_io_BytesIO_getbuffer, METH_NOARGS, _io_BytesIO_getbuffer__doc__},
static PyObject *
_io_BytesIO_getbuffer_impl(bytesio *self);
static PyObject *
_io_BytesIO_getbuffer(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_getbuffer_impl(self);
}
PyDoc_STRVAR(_io_BytesIO_getvalue__doc__,
"getvalue($self, /)\n"
"--\n"
"\n"
"Retrieve the entire contents of the BytesIO object.");
#define _IO_BYTESIO_GETVALUE_METHODDEF \
{"getvalue", (PyCFunction)_io_BytesIO_getvalue, METH_NOARGS, _io_BytesIO_getvalue__doc__},
static PyObject *
_io_BytesIO_getvalue_impl(bytesio *self);
static PyObject *
_io_BytesIO_getvalue(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_getvalue_impl(self);
}
PyDoc_STRVAR(_io_BytesIO_isatty__doc__,
"isatty($self, /)\n"
"--\n"
"\n"
"Always returns False.\n"
"\n"
"BytesIO objects are not connected to a TTY-like device.");
#define _IO_BYTESIO_ISATTY_METHODDEF \
{"isatty", (PyCFunction)_io_BytesIO_isatty, METH_NOARGS, _io_BytesIO_isatty__doc__},
static PyObject *
_io_BytesIO_isatty_impl(bytesio *self);
static PyObject *
_io_BytesIO_isatty(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_isatty_impl(self);
}
PyDoc_STRVAR(_io_BytesIO_tell__doc__,
"tell($self, /)\n"
"--\n"
"\n"
"Current file position, an integer.");
#define _IO_BYTESIO_TELL_METHODDEF \
{"tell", (PyCFunction)_io_BytesIO_tell, METH_NOARGS, _io_BytesIO_tell__doc__},
static PyObject *
_io_BytesIO_tell_impl(bytesio *self);
static PyObject *
_io_BytesIO_tell(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_tell_impl(self);
}
PyDoc_STRVAR(_io_BytesIO_read__doc__,
"read($self, size=None, /)\n"
"--\n"
"\n"
"Read at most size bytes, returned as a bytes object.\n"
"\n"
"If the size argument is negative, read until EOF is reached.\n"
"Return an empty bytes object at EOF.");
#define _IO_BYTESIO_READ_METHODDEF \
{"read", (PyCFunction)_io_BytesIO_read, METH_FASTCALL, _io_BytesIO_read__doc__},
static PyObject *
_io_BytesIO_read_impl(bytesio *self, PyObject *arg);
static PyObject *
_io_BytesIO_read(bytesio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *arg = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "read",
0, 1,
&arg)) {
goto exit;
}
return_value = _io_BytesIO_read_impl(self, arg);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BytesIO_read1__doc__,
"read1($self, size, /)\n"
"--\n"
"\n"
"Read at most size bytes, returned as a bytes object.\n"
"\n"
"If the size argument is negative or omitted, read until EOF is reached.\n"
"Return an empty bytes object at EOF.");
#define _IO_BYTESIO_READ1_METHODDEF \
{"read1", (PyCFunction)_io_BytesIO_read1, METH_O, _io_BytesIO_read1__doc__},
PyDoc_STRVAR(_io_BytesIO_readline__doc__,
"readline($self, size=None, /)\n"
"--\n"
"\n"
"Next line from the file, as a bytes object.\n"
"\n"
"Retain newline. A non-negative size argument limits the maximum\n"
"number of bytes to return (an incomplete line may be returned then).\n"
"Return an empty bytes object at EOF.");
#define _IO_BYTESIO_READLINE_METHODDEF \
{"readline", (PyCFunction)_io_BytesIO_readline, METH_FASTCALL, _io_BytesIO_readline__doc__},
static PyObject *
_io_BytesIO_readline_impl(bytesio *self, PyObject *arg);
static PyObject *
_io_BytesIO_readline(bytesio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *arg = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "readline",
0, 1,
&arg)) {
goto exit;
}
return_value = _io_BytesIO_readline_impl(self, arg);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BytesIO_readlines__doc__,
"readlines($self, size=None, /)\n"
"--\n"
"\n"
"List of bytes objects, each a line from the file.\n"
"\n"
"Call readline() repeatedly and return a list of the lines so read.\n"
"The optional size argument, if given, is an approximate bound on the\n"
"total number of bytes in the lines returned.");
#define _IO_BYTESIO_READLINES_METHODDEF \
{"readlines", (PyCFunction)_io_BytesIO_readlines, METH_FASTCALL, _io_BytesIO_readlines__doc__},
static PyObject *
_io_BytesIO_readlines_impl(bytesio *self, PyObject *arg);
static PyObject *
_io_BytesIO_readlines(bytesio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *arg = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "readlines",
0, 1,
&arg)) {
goto exit;
}
return_value = _io_BytesIO_readlines_impl(self, arg);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BytesIO_readinto__doc__,
"readinto($self, buffer, /)\n"
"--\n"
"\n"
"Read bytes into buffer.\n"
"\n"
"Returns number of bytes read (0 for EOF), or None if the object\n"
"is set not to block and has no data to read.");
#define _IO_BYTESIO_READINTO_METHODDEF \
{"readinto", (PyCFunction)_io_BytesIO_readinto, METH_O, _io_BytesIO_readinto__doc__},
static PyObject *
_io_BytesIO_readinto_impl(bytesio *self, Py_buffer *buffer);
static PyObject *
_io_BytesIO_readinto(bytesio *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "w*:readinto", &buffer)) {
goto exit;
}
return_value = _io_BytesIO_readinto_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_io_BytesIO_truncate__doc__,
"truncate($self, size=None, /)\n"
"--\n"
"\n"
"Truncate the file to at most size bytes.\n"
"\n"
"Size defaults to the current file position, as returned by tell().\n"
"The current file position is unchanged. Returns the new size.");
#define _IO_BYTESIO_TRUNCATE_METHODDEF \
{"truncate", (PyCFunction)_io_BytesIO_truncate, METH_FASTCALL, _io_BytesIO_truncate__doc__},
static PyObject *
_io_BytesIO_truncate_impl(bytesio *self, PyObject *arg);
static PyObject *
_io_BytesIO_truncate(bytesio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
PyObject *arg = Py_None;
if (!_PyArg_UnpackStack(args, nargs, "truncate",
0, 1,
&arg)) {
goto exit;
}
return_value = _io_BytesIO_truncate_impl(self, arg);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BytesIO_seek__doc__,
"seek($self, pos, whence=0, /)\n"
"--\n"
"\n"
"Change stream position.\n"
"\n"
"Seek to byte offset pos relative to position indicated by whence:\n"
" 0 Start of stream (the default). pos should be >= 0;\n"
" 1 Current position - pos may be negative;\n"
" 2 End of stream - pos usually negative.\n"
"Returns the new absolute position.");
#define _IO_BYTESIO_SEEK_METHODDEF \
{"seek", (PyCFunction)_io_BytesIO_seek, METH_FASTCALL, _io_BytesIO_seek__doc__},
static PyObject *
_io_BytesIO_seek_impl(bytesio *self, Py_ssize_t pos, int whence);
static PyObject *
_io_BytesIO_seek(bytesio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t pos;
int whence = 0;
if (!_PyArg_ParseStack(args, nargs, "n|i:seek",
&pos, &whence)) {
goto exit;
}
return_value = _io_BytesIO_seek_impl(self, pos, whence);
exit:
return return_value;
}
PyDoc_STRVAR(_io_BytesIO_write__doc__,
"write($self, b, /)\n"
"--\n"
"\n"
"Write bytes to file.\n"
"\n"
"Return the number of bytes written.");
#define _IO_BYTESIO_WRITE_METHODDEF \
{"write", (PyCFunction)_io_BytesIO_write, METH_O, _io_BytesIO_write__doc__},
PyDoc_STRVAR(_io_BytesIO_writelines__doc__,
"writelines($self, lines, /)\n"
"--\n"
"\n"
"Write lines to the file.\n"
"\n"
"Note that newlines are not added. lines can be any iterable object\n"
"producing bytes-like objects. This is equivalent to calling write() for\n"
"each element.");
#define _IO_BYTESIO_WRITELINES_METHODDEF \
{"writelines", (PyCFunction)_io_BytesIO_writelines, METH_O, _io_BytesIO_writelines__doc__},
PyDoc_STRVAR(_io_BytesIO_close__doc__,
"close($self, /)\n"
"--\n"
"\n"
"Disable all I/O operations.");
#define _IO_BYTESIO_CLOSE_METHODDEF \
{"close", (PyCFunction)_io_BytesIO_close, METH_NOARGS, _io_BytesIO_close__doc__},
static PyObject *
_io_BytesIO_close_impl(bytesio *self);
static PyObject *
_io_BytesIO_close(bytesio *self, PyObject *Py_UNUSED(ignored))
{
return _io_BytesIO_close_impl(self);
}
PyDoc_STRVAR(_io_BytesIO___init____doc__,
"BytesIO(initial_bytes=b\'\')\n"
"--\n"
"\n"
"Buffered I/O implementation using an in-memory bytes buffer.");
static int
_io_BytesIO___init___impl(bytesio *self, PyObject *initvalue);
static int
_io_BytesIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"initial_bytes", NULL};
static _PyArg_Parser _parser = {"|O:BytesIO", _keywords, 0};
PyObject *initvalue = NULL;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&initvalue)) {
goto exit;
}
return_value = _io_BytesIO___init___impl((bytesio *)self, initvalue);
exit:
return return_value;
}
/*[clinic end generated code: output=c8184aac612e063e input=a9049054013a1b77]*/
| 11,325 | 433 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/clinic/iobase.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_io__IOBase_tell__doc__,
"tell($self, /)\n"
"--\n"
"\n"
"Return current stream position.");
#define _IO__IOBASE_TELL_METHODDEF \
{"tell", (PyCFunction)_io__IOBase_tell, METH_NOARGS, _io__IOBase_tell__doc__},
static PyObject *
_io__IOBase_tell_impl(PyObject *self);
static PyObject *
_io__IOBase_tell(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__IOBase_tell_impl(self);
}
PyDoc_STRVAR(_io__IOBase_flush__doc__,
"flush($self, /)\n"
"--\n"
"\n"
"Flush write buffers, if applicable.\n"
"\n"
"This is not implemented for read-only and non-blocking streams.");
#define _IO__IOBASE_FLUSH_METHODDEF \
{"flush", (PyCFunction)_io__IOBase_flush, METH_NOARGS, _io__IOBase_flush__doc__},
static PyObject *
_io__IOBase_flush_impl(PyObject *self);
static PyObject *
_io__IOBase_flush(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__IOBase_flush_impl(self);
}
PyDoc_STRVAR(_io__IOBase_close__doc__,
"close($self, /)\n"
"--\n"
"\n"
"Flush and close the IO object.\n"
"\n"
"This method has no effect if the file is already closed.");
#define _IO__IOBASE_CLOSE_METHODDEF \
{"close", (PyCFunction)_io__IOBase_close, METH_NOARGS, _io__IOBase_close__doc__},
static PyObject *
_io__IOBase_close_impl(PyObject *self);
static PyObject *
_io__IOBase_close(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__IOBase_close_impl(self);
}
PyDoc_STRVAR(_io__IOBase_seekable__doc__,
"seekable($self, /)\n"
"--\n"
"\n"
"Return whether object supports random access.\n"
"\n"
"If False, seek(), tell() and truncate() will raise OSError.\n"
"This method may need to do a test seek().");
#define _IO__IOBASE_SEEKABLE_METHODDEF \
{"seekable", (PyCFunction)_io__IOBase_seekable, METH_NOARGS, _io__IOBase_seekable__doc__},
static PyObject *
_io__IOBase_seekable_impl(PyObject *self);
static PyObject *
_io__IOBase_seekable(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__IOBase_seekable_impl(self);
}
PyDoc_STRVAR(_io__IOBase_readable__doc__,
"readable($self, /)\n"
"--\n"
"\n"
"Return whether object was opened for reading.\n"
"\n"
"If False, read() will raise OSError.");
#define _IO__IOBASE_READABLE_METHODDEF \
{"readable", (PyCFunction)_io__IOBase_readable, METH_NOARGS, _io__IOBase_readable__doc__},
static PyObject *
_io__IOBase_readable_impl(PyObject *self);
static PyObject *
_io__IOBase_readable(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__IOBase_readable_impl(self);
}
PyDoc_STRVAR(_io__IOBase_writable__doc__,
"writable($self, /)\n"
"--\n"
"\n"
"Return whether object was opened for writing.\n"
"\n"
"If False, write() will raise OSError.");
#define _IO__IOBASE_WRITABLE_METHODDEF \
{"writable", (PyCFunction)_io__IOBase_writable, METH_NOARGS, _io__IOBase_writable__doc__},
static PyObject *
_io__IOBase_writable_impl(PyObject *self);
static PyObject *
_io__IOBase_writable(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__IOBase_writable_impl(self);
}
PyDoc_STRVAR(_io__IOBase_fileno__doc__,
"fileno($self, /)\n"
"--\n"
"\n"
"Returns underlying file descriptor if one exists.\n"
"\n"
"OSError is raised if the IO object does not use a file descriptor.");
#define _IO__IOBASE_FILENO_METHODDEF \
{"fileno", (PyCFunction)_io__IOBase_fileno, METH_NOARGS, _io__IOBase_fileno__doc__},
static PyObject *
_io__IOBase_fileno_impl(PyObject *self);
static PyObject *
_io__IOBase_fileno(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__IOBase_fileno_impl(self);
}
PyDoc_STRVAR(_io__IOBase_isatty__doc__,
"isatty($self, /)\n"
"--\n"
"\n"
"Return whether this is an \'interactive\' stream.\n"
"\n"
"Return False if it can\'t be determined.");
#define _IO__IOBASE_ISATTY_METHODDEF \
{"isatty", (PyCFunction)_io__IOBase_isatty, METH_NOARGS, _io__IOBase_isatty__doc__},
static PyObject *
_io__IOBase_isatty_impl(PyObject *self);
static PyObject *
_io__IOBase_isatty(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__IOBase_isatty_impl(self);
}
PyDoc_STRVAR(_io__IOBase_readline__doc__,
"readline($self, size=-1, /)\n"
"--\n"
"\n"
"Read and return a line from the stream.\n"
"\n"
"If size is specified, at most size bytes will be read.\n"
"\n"
"The line terminator is always b\'\\n\' for binary files; for text\n"
"files, the newlines argument to open can be used to select the line\n"
"terminator(s) recognized.");
#define _IO__IOBASE_READLINE_METHODDEF \
{"readline", (PyCFunction)_io__IOBase_readline, METH_FASTCALL, _io__IOBase_readline__doc__},
static PyObject *
_io__IOBase_readline_impl(PyObject *self, Py_ssize_t limit);
static PyObject *
_io__IOBase_readline(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t limit = -1;
if (!_PyArg_ParseStack(args, nargs, "|O&:readline",
_PyIO_ConvertSsize_t, &limit)) {
goto exit;
}
return_value = _io__IOBase_readline_impl(self, limit);
exit:
return return_value;
}
PyDoc_STRVAR(_io__IOBase_readlines__doc__,
"readlines($self, hint=-1, /)\n"
"--\n"
"\n"
"Return a list of lines from the stream.\n"
"\n"
"hint can be specified to control the number of lines read: no more\n"
"lines will be read if the total size (in bytes/characters) of all\n"
"lines so far exceeds hint.");
#define _IO__IOBASE_READLINES_METHODDEF \
{"readlines", (PyCFunction)_io__IOBase_readlines, METH_FASTCALL, _io__IOBase_readlines__doc__},
static PyObject *
_io__IOBase_readlines_impl(PyObject *self, Py_ssize_t hint);
static PyObject *
_io__IOBase_readlines(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t hint = -1;
if (!_PyArg_ParseStack(args, nargs, "|O&:readlines",
_PyIO_ConvertSsize_t, &hint)) {
goto exit;
}
return_value = _io__IOBase_readlines_impl(self, hint);
exit:
return return_value;
}
PyDoc_STRVAR(_io__IOBase_writelines__doc__,
"writelines($self, lines, /)\n"
"--\n"
"\n");
#define _IO__IOBASE_WRITELINES_METHODDEF \
{"writelines", (PyCFunction)_io__IOBase_writelines, METH_O, _io__IOBase_writelines__doc__},
PyDoc_STRVAR(_io__RawIOBase_read__doc__,
"read($self, size=-1, /)\n"
"--\n"
"\n");
#define _IO__RAWIOBASE_READ_METHODDEF \
{"read", (PyCFunction)_io__RawIOBase_read, METH_FASTCALL, _io__RawIOBase_read__doc__},
static PyObject *
_io__RawIOBase_read_impl(PyObject *self, Py_ssize_t n);
static PyObject *
_io__RawIOBase_read(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t n = -1;
if (!_PyArg_ParseStack(args, nargs, "|n:read",
&n)) {
goto exit;
}
return_value = _io__RawIOBase_read_impl(self, n);
exit:
return return_value;
}
PyDoc_STRVAR(_io__RawIOBase_readall__doc__,
"readall($self, /)\n"
"--\n"
"\n"
"Read until EOF, using multiple read() call.");
#define _IO__RAWIOBASE_READALL_METHODDEF \
{"readall", (PyCFunction)_io__RawIOBase_readall, METH_NOARGS, _io__RawIOBase_readall__doc__},
static PyObject *
_io__RawIOBase_readall_impl(PyObject *self);
static PyObject *
_io__RawIOBase_readall(PyObject *self, PyObject *Py_UNUSED(ignored))
{
return _io__RawIOBase_readall_impl(self);
}
/*[clinic end generated code: output=ec8a2ef87208ce4c input=a9049054013a1b77]*/
| 7,393 | 284 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_io/clinic/winconsoleio.inc | /* clang-format off */
/*[clinic input]
preserve
[clinic start generated code]*/
PyDoc_STRVAR(_io__WindowsConsoleIO_close__doc__,
"close($self, /)\n"
"--\n"
"\n"
"Close the handle.\n"
"\n"
"A closed handle cannot be used for further I/O operations. close() may be\n"
"called more than once without error.");
#define _IO__WINDOWSCONSOLEIO_CLOSE_METHODDEF \
{"close", (PyCFunction)_io__WindowsConsoleIO_close, METH_NOARGS, _io__WindowsConsoleIO_close__doc__},
static PyObject *
_io__WindowsConsoleIO_close_impl(winconsoleio *self);
static PyObject *
_io__WindowsConsoleIO_close(winconsoleio *self, PyObject *Py_UNUSED(ignored))
{
return _io__WindowsConsoleIO_close_impl(self);
}
PyDoc_STRVAR(_io__WindowsConsoleIO___init____doc__,
"_WindowsConsoleIO(file, mode=\'r\', closefd=True, opener=None)\n"
"--\n"
"\n"
"Open a console buffer by file descriptor.\n"
"\n"
"The mode can be \'rb\' (default), or \'wb\' for reading or writing bytes. All\n"
"other mode characters will be ignored. Mode \'b\' will be assumed if it is\n"
"omitted. The *opener* parameter is always ignored.");
static int
_io__WindowsConsoleIO___init___impl(winconsoleio *self, PyObject *nameobj,
const char *mode, int closefd,
PyObject *opener);
static int
_io__WindowsConsoleIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)
{
int return_value = -1;
static const char * const _keywords[] = {"file", "mode", "closefd", "opener", NULL};
static _PyArg_Parser _parser = {"O|siO:_WindowsConsoleIO", _keywords, 0};
PyObject *nameobj;
const char *mode = "r";
int closefd = 1;
PyObject *opener = Py_None;
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
&nameobj, &mode, &closefd, &opener)) {
goto exit;
}
return_value = _io__WindowsConsoleIO___init___impl((winconsoleio *)self, nameobj, mode, closefd, opener);
exit:
return return_value;
}
PyDoc_STRVAR(_io__WindowsConsoleIO_fileno__doc__,
"fileno($self, /)\n"
"--\n"
"\n"
"Return the underlying file descriptor (an integer).\n"
"\n"
"fileno is only set when a file descriptor is used to open\n"
"one of the standard streams.");
#define _IO__WINDOWSCONSOLEIO_FILENO_METHODDEF \
{"fileno", (PyCFunction)_io__WindowsConsoleIO_fileno, METH_NOARGS, _io__WindowsConsoleIO_fileno__doc__},
static PyObject *
_io__WindowsConsoleIO_fileno_impl(winconsoleio *self);
static PyObject *
_io__WindowsConsoleIO_fileno(winconsoleio *self, PyObject *Py_UNUSED(ignored))
{
return _io__WindowsConsoleIO_fileno_impl(self);
}
PyDoc_STRVAR(_io__WindowsConsoleIO_readable__doc__,
"readable($self, /)\n"
"--\n"
"\n"
"True if console is an input buffer.");
#define _IO__WINDOWSCONSOLEIO_READABLE_METHODDEF \
{"readable", (PyCFunction)_io__WindowsConsoleIO_readable, METH_NOARGS, _io__WindowsConsoleIO_readable__doc__},
static PyObject *
_io__WindowsConsoleIO_readable_impl(winconsoleio *self);
static PyObject *
_io__WindowsConsoleIO_readable(winconsoleio *self, PyObject *Py_UNUSED(ignored))
{
return _io__WindowsConsoleIO_readable_impl(self);
}
PyDoc_STRVAR(_io__WindowsConsoleIO_writable__doc__,
"writable($self, /)\n"
"--\n"
"\n"
"True if console is an output buffer.");
#define _IO__WINDOWSCONSOLEIO_WRITABLE_METHODDEF \
{"writable", (PyCFunction)_io__WindowsConsoleIO_writable, METH_NOARGS, _io__WindowsConsoleIO_writable__doc__},
static PyObject *
_io__WindowsConsoleIO_writable_impl(winconsoleio *self);
static PyObject *
_io__WindowsConsoleIO_writable(winconsoleio *self, PyObject *Py_UNUSED(ignored))
{
return _io__WindowsConsoleIO_writable_impl(self);
}
PyDoc_STRVAR(_io__WindowsConsoleIO_readinto__doc__,
"readinto($self, buffer, /)\n"
"--\n"
"\n"
"Same as RawIOBase.readinto().");
#define _IO__WINDOWSCONSOLEIO_READINTO_METHODDEF \
{"readinto", (PyCFunction)_io__WindowsConsoleIO_readinto, METH_O, _io__WindowsConsoleIO_readinto__doc__},
static PyObject *
_io__WindowsConsoleIO_readinto_impl(winconsoleio *self, Py_buffer *buffer);
static PyObject *
_io__WindowsConsoleIO_readinto(winconsoleio *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer buffer = {NULL, NULL};
if (!PyArg_Parse(arg, "w*:readinto", &buffer)) {
goto exit;
}
return_value = _io__WindowsConsoleIO_readinto_impl(self, &buffer);
exit:
/* Cleanup for buffer */
if (buffer.obj) {
PyBuffer_Release(&buffer);
}
return return_value;
}
PyDoc_STRVAR(_io__WindowsConsoleIO_readall__doc__,
"readall($self, /)\n"
"--\n"
"\n"
"Read all data from the console, returned as bytes.\n"
"\n"
"Return an empty bytes object at EOF.");
#define _IO__WINDOWSCONSOLEIO_READALL_METHODDEF \
{"readall", (PyCFunction)_io__WindowsConsoleIO_readall, METH_NOARGS, _io__WindowsConsoleIO_readall__doc__},
static PyObject *
_io__WindowsConsoleIO_readall_impl(winconsoleio *self);
static PyObject *
_io__WindowsConsoleIO_readall(winconsoleio *self, PyObject *Py_UNUSED(ignored))
{
return _io__WindowsConsoleIO_readall_impl(self);
}
PyDoc_STRVAR(_io__WindowsConsoleIO_read__doc__,
"read($self, size=-1, /)\n"
"--\n"
"\n"
"Read at most size bytes, returned as bytes.\n"
"\n"
"Only makes one system call when size is a positive integer,\n"
"so less data may be returned than requested.\n"
"Return an empty bytes object at EOF.");
#define _IO__WINDOWSCONSOLEIO_READ_METHODDEF \
{"read", (PyCFunction)_io__WindowsConsoleIO_read, METH_FASTCALL, _io__WindowsConsoleIO_read__doc__},
static PyObject *
_io__WindowsConsoleIO_read_impl(winconsoleio *self, Py_ssize_t size);
static PyObject *
_io__WindowsConsoleIO_read(winconsoleio *self, PyObject **args, Py_ssize_t nargs)
{
PyObject *return_value = NULL;
Py_ssize_t size = -1;
if (!_PyArg_ParseStack(args, nargs, "|O&:read",
_PyIO_ConvertSsize_t, &size)) {
goto exit;
}
return_value = _io__WindowsConsoleIO_read_impl(self, size);
exit:
return return_value;
}
PyDoc_STRVAR(_io__WindowsConsoleIO_write__doc__,
"write($self, b, /)\n"
"--\n"
"\n"
"Write buffer b to file, return number of bytes written.\n"
"\n"
"Only makes one system call, so not all of the data may be written.\n"
"The number of bytes actually written is returned.");
#define _IO__WINDOWSCONSOLEIO_WRITE_METHODDEF \
{"write", (PyCFunction)_io__WindowsConsoleIO_write, METH_O, _io__WindowsConsoleIO_write__doc__},
static PyObject *
_io__WindowsConsoleIO_write_impl(winconsoleio *self, Py_buffer *b);
static PyObject *
_io__WindowsConsoleIO_write(winconsoleio *self, PyObject *arg)
{
PyObject *return_value = NULL;
Py_buffer b = {NULL, NULL};
if (!PyArg_Parse(arg, "y*:write", &b)) {
goto exit;
}
return_value = _io__WindowsConsoleIO_write_impl(self, &b);
exit:
/* Cleanup for b */
if (b.obj) {
PyBuffer_Release(&b);
}
return return_value;
}
PyDoc_STRVAR(_io__WindowsConsoleIO_isatty__doc__,
"isatty($self, /)\n"
"--\n"
"\n"
"Always True.");
#define _IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF \
{"isatty", (PyCFunction)_io__WindowsConsoleIO_isatty, METH_NOARGS, _io__WindowsConsoleIO_isatty__doc__},
static PyObject *
_io__WindowsConsoleIO_isatty_impl(winconsoleio *self);
static PyObject *
_io__WindowsConsoleIO_isatty(winconsoleio *self, PyObject *Py_UNUSED(ignored))
{
return _io__WindowsConsoleIO_isatty_impl(self);
}
/*[clinic end generated code: output=178c491c15ee794c input=a9049054013a1b77]*/
| 7,484 | 257 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/cjkcodecs.h | #ifndef _CJKCODECS_H_
#define _CJKCODECS_H_
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/methodobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/pycapsule.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Modules/cjkcodecs/multibytecodec.h"
#include "third_party/python/Modules/cjkcodecs/somanyencodings.h"
/* clang-format off */
/* a unicode "undefined" code point */
#define UNIINV 0xFFFE
/* internal-use DBCS code points which aren't used by any charsets */
#define NOCHAR 0xFFFF
#define MULTIC 0xFFFE
#define DBCINV 0xFFFD
/* shorter macros to save source size of mapping tables */
#define U UNIINV
#define N NOCHAR
#define M MULTIC
#define D DBCINV
static const MultibyteCodec *codec_list;
#define CODEC_INIT(encoding) \
static int encoding##_codec_init(const void *config)
#define ENCODER_INIT(encoding) \
static int encoding##_encode_init( \
MultibyteCodec_State *state, const void *config)
#define ENCODER(encoding) \
static Py_ssize_t encoding##_encode( \
MultibyteCodec_State *state, const void *config, \
int kind, void *data, \
Py_ssize_t *inpos, Py_ssize_t inlen, \
unsigned char **outbuf, Py_ssize_t outleft, int flags)
#define ENCODER_RESET(encoding) \
static Py_ssize_t encoding##_encode_reset( \
MultibyteCodec_State *state, const void *config, \
unsigned char **outbuf, Py_ssize_t outleft)
#define DECODER_INIT(encoding) \
static int encoding##_decode_init( \
MultibyteCodec_State *state, const void *config)
#define DECODER(encoding) \
static Py_ssize_t encoding##_decode( \
MultibyteCodec_State *state, const void *config, \
const unsigned char **inbuf, Py_ssize_t inleft, \
_PyUnicodeWriter *writer)
#define DECODER_RESET(encoding) \
static Py_ssize_t encoding##_decode_reset( \
MultibyteCodec_State *state, const void *config)
#define NEXT_IN(i) \
do { \
(*inbuf) += (i); \
(inleft) -= (i); \
} while (0)
#define NEXT_INCHAR(i) \
do { \
(*inpos) += (i); \
} while (0)
#define NEXT_OUT(o) \
do { \
(*outbuf) += (o); \
(outleft) -= (o); \
} while (0)
#define NEXT(i, o) \
do { \
NEXT_INCHAR(i); \
NEXT_OUT(o); \
} while (0)
#define REQUIRE_INBUF(n) \
do { \
if (inleft < (n)) \
return MBERR_TOOFEW; \
} while (0)
#define REQUIRE_OUTBUF(n) \
do { \
if (outleft < (n)) \
return MBERR_TOOSMALL; \
} while (0)
#define INBYTE1 ((*inbuf)[0])
#define INBYTE2 ((*inbuf)[1])
#define INBYTE3 ((*inbuf)[2])
#define INBYTE4 ((*inbuf)[3])
#define INCHAR1 (PyUnicode_READ(kind, data, *inpos))
#define INCHAR2 (PyUnicode_READ(kind, data, *inpos + 1))
#define OUTCHAR(c) \
do { \
if (_PyUnicodeWriter_WriteChar(writer, (c)) < 0) \
return MBERR_EXCEPTION; \
} while (0)
#define OUTCHAR2(c1, c2) \
do { \
Py_UCS4 _c1 = (c1); \
Py_UCS4 _c2 = (c2); \
if (_PyUnicodeWriter_Prepare(writer, 2, Py_MAX(_c1, c2)) < 0) \
return MBERR_EXCEPTION; \
PyUnicode_WRITE(writer->kind, writer->data, writer->pos, _c1); \
PyUnicode_WRITE(writer->kind, writer->data, writer->pos + 1, _c2); \
writer->pos += 2; \
} while (0)
#define OUTBYTE1(c) \
do { ((*outbuf)[0]) = (c); } while (0)
#define OUTBYTE2(c) \
do { ((*outbuf)[1]) = (c); } while (0)
#define OUTBYTE3(c) \
do { ((*outbuf)[2]) = (c); } while (0)
#define OUTBYTE4(c) \
do { ((*outbuf)[3]) = (c); } while (0)
#define WRITEBYTE1(c1) \
do { \
REQUIRE_OUTBUF(1); \
(*outbuf)[0] = (c1); \
} while (0)
#define WRITEBYTE2(c1, c2) \
do { \
REQUIRE_OUTBUF(2); \
(*outbuf)[0] = (c1); \
(*outbuf)[1] = (c2); \
} while (0)
#define WRITEBYTE3(c1, c2, c3) \
do { \
REQUIRE_OUTBUF(3); \
(*outbuf)[0] = (c1); \
(*outbuf)[1] = (c2); \
(*outbuf)[2] = (c3); \
} while (0)
#define WRITEBYTE4(c1, c2, c3, c4) \
do { \
REQUIRE_OUTBUF(4); \
(*outbuf)[0] = (c1); \
(*outbuf)[1] = (c2); \
(*outbuf)[2] = (c3); \
(*outbuf)[3] = (c4); \
} while (0)
#define _TRYMAP_ENC(__m, m, assi, val) \
(m.map && (val) >= m.bottom && (val)<= m.top && \
((assi) = (__m() + m.map - 1)[(val) - m.bottom]) != NOCHAR)
#define TRYMAP_ENC(M, assi, uni) \
_TRYMAP_ENC(__##M##_encmap, M##_encmap()[(uni) >> 8], assi, (uni) & 0xff)
#define _TRYMAP_DEC(__m, m, assi, val) \
(m.map && (val) >= m.bottom && (val) <= m.top && \
((assi) = (__m() + m.map - 1)[(val) - m.bottom]) != UNIINV)
#define TRYMAP_DEC(M, assi, c1, c2) \
_TRYMAP_DEC(__##M##_decmap, M##_decmap()[c1], assi, c2)
#define BEGIN_MAPPINGS_LIST
#define MAPPING_ENCONLY(enc)
#define MAPPING_DECONLY(enc)
#define MAPPING_ENCDEC(enc)
#define END_MAPPINGS_LIST
#define BEGIN_CODECS_LIST static const MultibyteCodec _codec_list[] = {
#define _STATEFUL_METHODS(enc) \
enc##_encode, \
enc##_encode_init, \
enc##_encode_reset, \
enc##_decode, \
enc##_decode_init, \
enc##_decode_reset,
#define _STATELESS_METHODS(enc) \
enc##_encode, NULL, NULL, \
enc##_decode, NULL, NULL,
#define CODEC_STATEFUL(enc) { \
#enc, NULL, NULL, \
_STATEFUL_METHODS(enc) \
},
#define CODEC_STATELESS(enc) { \
#enc, NULL, NULL, \
_STATELESS_METHODS(enc) \
},
#define CODEC_STATELESS_WINIT(enc) { \
#enc, NULL, \
enc##_codec_init, \
_STATELESS_METHODS(enc) \
},
#define END_CODECS_LIST \
{"", NULL,} }; \
static const MultibyteCodec *codec_list = \
(const MultibyteCodec *)_codec_list;
static PyObject *
getmultibytecodec(void)
{
static PyObject *cofunc = NULL;
if (cofunc == NULL) {
PyObject *mod = PyImport_ImportModuleNoBlock("_multibytecodec");
if (mod == NULL)
return NULL;
cofunc = PyObject_GetAttrString(mod, "__create_codec");
Py_DECREF(mod);
}
return cofunc;
}
static PyObject *
getcodec(PyObject *self, PyObject *encoding)
{
PyObject *codecobj, *r, *cofunc;
const MultibyteCodec *codec;
const char *enc;
if (!PyUnicode_Check(encoding)) {
PyErr_SetString(PyExc_TypeError,
"encoding name must be a string.");
return NULL;
}
enc = PyUnicode_AsUTF8(encoding);
if (enc == NULL)
return NULL;
cofunc = getmultibytecodec();
if (cofunc == NULL)
return NULL;
for (codec = codec_list; codec->encoding[0]; codec++)
if (strcmp(codec->encoding, enc) == 0)
break;
if (codec->encoding[0] == '\0') {
PyErr_SetString(PyExc_LookupError,
"no such codec is supported.");
return NULL;
}
codecobj = PyCapsule_New((void *)codec, PyMultibyteCodec_CAPSULE_NAME, NULL);
if (codecobj == NULL)
return NULL;
r = PyObject_CallFunctionObjArgs(cofunc, codecobj, NULL);
Py_DECREF(codecobj);
return r;
}
static struct PyMethodDef __methods[] = {
{"getcodec", (PyCFunction)getcodec, METH_O, ""},
{0},
};
#ifdef USING_BINARY_PAIR_SEARCH
static DBCHAR
find_pairencmap(ucs2_t body, ucs2_t modifier,
const struct CjkPairEncodeMap *haystack,
int haystacksize)
{
int pos, min, max;
Py_UCS4 value = body << 16 | modifier;
min = 0;
max = haystacksize;
for (pos = haystacksize >> 1; min != max; pos = (min + max) >> 1) {
if (value < haystack[pos].uniseq) {
if (max != pos) {
max = pos;
continue;
}
}
else if (value > haystack[pos].uniseq) {
if (min != pos) {
min = pos;
continue;
}
}
break;
}
if (value == haystack[pos].uniseq) {
return haystack[pos].code;
}
return DBCINV;
}
#endif
#define I_AM_A_MODULE_FOR(loc) \
static struct PyModuleDef __module = { \
PyModuleDef_HEAD_INIT, \
"_codecs_"#loc, \
NULL, \
0, \
__methods, \
}; \
PyMODINIT_FUNC \
PyInit__codecs_##loc(void) \
{ \
return PyModule_Create(&__module); \
}
#endif
| 11,409 | 299 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/jisx0208_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) jisx0208_decmap_ptr;
static const unsigned char jisx0208_decmap_rodata[] = {
0xed, 0xcb, 0xbf, 0x47, 0xc4, 0x71, 0x00, 0xc6, 0xf1, 0xcf, 0xf7, 0xae, 0xae,
0xbb, 0xea, 0xea, 0xea, 0xea, 0xfa, 0x25, 0x7a, 0x44, 0x11, 0x71, 0x5b, 0x1c,
0xd1, 0x10, 0x11, 0x0d, 0x29, 0x4a, 0x51, 0x22, 0x1a, 0x22, 0x4e, 0x69, 0x28,
0x1e, 0xda, 0x22, 0xda, 0x22, 0xda, 0x22, 0xa2, 0x21, 0x45, 0x34, 0x94, 0x88,
0x86, 0x88, 0x68, 0x8b, 0x68, 0x8b, 0x23, 0x1a, 0x22, 0xda, 0x7a, 0xff, 0x05,
0x69, 0x6b, 0xb9, 0x37, 0x2f, 0xcf, 0xf4, 0x84, 0xf0, 0xff, 0x45, 0x41, 0x9e,
0xc7, 0x75, 0xc8, 0x6f, 0x24, 0x23, 0xad, 0xce, 0x46, 0x5a, 0x3f, 0x8b, 0x34,
0x5d, 0x8a, 0x54, 0x2c, 0xc4, 0x34, 0xf4, 0xdb, 0x77, 0x26, 0x26, 0x5f, 0x22,
0x17, 0x97, 0xd7, 0xf0, 0x84, 0x7c, 0x85, 0xbc, 0x8b, 0x77, 0x8c, 0x56, 0xca,
0xc7, 0x48, 0x24, 0xe4, 0x45, 0xdc, 0xa2, 0xab, 0x4a, 0x36, 0x5e, 0x50, 0x48,
0xca, 0xfb, 0xf8, 0xc2, 0x64, 0x4a, 0x3e, 0x47, 0xa6, 0x5a, 0x5e, 0xc1, 0x03,
0xfa, 0x6a, 0xe4, 0x6d, 0xbc, 0x61, 0xb8, 0x56, 0x3e, 0x44, 0x48, 0xcb, 0x73,
0xb8, 0x4a, 0x6b, 0xe2, 0x83, 0x1d, 0xab, 0x93, 0x4f, 0x90, 0xaa, 0x97, 0x97,
0x70, 0x87, 0xee, 0x8c, 0xbc, 0x85, 0x57, 0x0c, 0x36, 0xc8, 0x07, 0xf8, 0xc6,
0x54, 0xa3, 0x7c, 0x81, 0x6c, 0x56, 0x2e, 0xe2, 0x11, 0xfd, 0x4d, 0xf2, 0x0e,
0x4a, 0x18, 0x69, 0x96, 0x8f, 0x10, 0xcf, 0xc9, 0x0b, 0xb8, 0x41, 0x67, 0x8b,
0xbc, 0x89, 0x67, 0x0c, 0xb4, 0xca, 0x7b, 0xf8, 0xc4, 0x78, 0x9b, 0x7c, 0x8a,
0x74, 0xbb, 0xbc, 0x8c, 0x7b, 0xf4, 0x76, 0xa8, 0x27, 0x94, 0x2b, 0xf7, 0xc7,
0x7e, 0x00,
};
optimizesize void *jisx0208_decmap(void) {
return xload(&jisx0208_decmap_ptr,
jisx0208_decmap_rodata,
236, 1024); /* 23.0469% profit */
}
| 1,774 | 32 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/_codecs_tw.c | /* clang-format off */
/*
* _codecs_tw.c: Codecs collection for Taiwan's encodings
*
* Written by Hye-Shik "Bourne to Macro" Chang <[email protected]>
*/
#include "third_party/python/Modules/cjkcodecs/cjkcodecs.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Include/import.h"
PYTHON_PROVIDE("_codecs_tw");
PYTHON_PROVIDE("_codecs_tw.__map_big5");
PYTHON_PROVIDE("_codecs_tw.__map_cp950ext");
PYTHON_PROVIDE("_codecs_tw.getcodec");
/*
* BIG5 codec
*/
ENCODER(big5)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
if (c < 0x80) {
REQUIRE_OUTBUF(1);
**outbuf = (unsigned char)c;
NEXT(1, 1);
continue;
}
if (c > 0xFFFF)
return 1;
REQUIRE_OUTBUF(2);
if (TRYMAP_ENC(big5, code, c))
;
else
return 1;
OUTBYTE1(code >> 8);
OUTBYTE2(code & 0xFF);
NEXT(1, 2);
}
return 0;
}
DECODER(big5)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_UCS4 decoded;
if (c < 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
REQUIRE_INBUF(2);
if (TRYMAP_DEC(big5, decoded, c, INBYTE2)) {
OUTCHAR(decoded);
NEXT_IN(2);
}
else return 1;
}
return 0;
}
/*
* CP950 codec
*/
ENCODER(cp950)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
if (c < 0x80) {
WRITEBYTE1((unsigned char)c);
NEXT(1, 1);
continue;
}
if (c > 0xFFFF)
return 1;
REQUIRE_OUTBUF(2);
if (TRYMAP_ENC(cp950ext, code, c))
;
else if (TRYMAP_ENC(big5, code, c))
;
else
return 1;
OUTBYTE1(code >> 8);
OUTBYTE2(code & 0xFF);
NEXT(1, 2);
}
return 0;
}
DECODER(cp950)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_UCS4 decoded;
if (c < 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
REQUIRE_INBUF(2);
if (TRYMAP_DEC(cp950ext, decoded, c, INBYTE2))
OUTCHAR(decoded);
else if (TRYMAP_DEC(big5, decoded, c, INBYTE2))
OUTCHAR(decoded);
else
return 1;
NEXT_IN(2);
}
return 0;
}
BEGIN_MAPPINGS_LIST
MAPPING_ENCDEC(big5)
MAPPING_ENCDEC(cp950ext)
END_MAPPINGS_LIST
BEGIN_CODECS_LIST
CODEC_STATELESS(big5)
CODEC_STATELESS(cp950)
END_CODECS_LIST
I_AM_A_MODULE_FOR(tw)
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__codecs_tw = {
"_codecs_tw",
PyInit__codecs_tw,
};
| 2,789 | 156 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/jisx0213_2_emp_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) jisx0213_2_emp_decmap_ptr;
static const unsigned char jisx0213_2_emp_decmap_rodata[] = {
0x63, 0x60, 0x18, 0x78, 0xc0, 0xc8, 0xa0, 0x58, 0x09, 0xa2, 0xa3, 0x18, 0x94,
0xca, 0x37, 0x30, 0x68, 0x95, 0xfe, 0x61, 0x50, 0xad, 0x83, 0xc9, 0x85, 0x31,
0x1a, 0xe4, 0x20, 0xab, 0x9d, 0xcc, 0xa8, 0x54, 0xf4, 0x84, 0x51, 0xa5, 0xd6,
0x8e, 0x49, 0xb9, 0x62, 0x0a, 0x93, 0x56, 0x29, 0xc3, 0x08, 0x05, 0x0f, 0x98,
0x94, 0x13, 0xe4, 0x98, 0x8d, 0x52, 0x02, 0x99, 0x95, 0xaa, 0x57, 0x33, 0xeb,
0x55, 0xfd, 0x60, 0x56, 0x2c, 0xf3, 0x63, 0x31, 0xaa, 0x9d, 0xc5, 0xa2, 0x54,
0xf9, 0x89, 0xc5, 0xb4, 0xd8, 0x90, 0xd5, 0xa5, 0x2e, 0x87, 0x55, 0xb1, 0x78,
0x3f, 0xab, 0x66, 0x95, 0x20, 0x9b, 0x6a, 0x5d, 0x36, 0x9b, 0x62, 0xdd, 0x49,
0x36, 0xc5, 0x42, 0x29, 0x76, 0xa5, 0xb2, 0x7c, 0x76, 0x9d, 0x82, 0x2d, 0xec,
0xaa, 0x65, 0x0c, 0xa3, 0x60, 0xc4, 0x03, 0x00,
};
optimizesize void *jisx0213_2_emp_decmap(void) {
return xload(&jisx0213_2_emp_decmap_ptr,
jisx0213_2_emp_decmap_rodata,
125, 1024); /* 12.207% profit */
}
| 1,119 | 23 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/big5_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) big5_decmap_ptr;
static const unsigned char big5_decmap_rodata[] = {
0xed, 0xd0, 0x3b, 0x4b, 0x15, 0x00, 0x1c, 0x86, 0xf1, 0x73, 0x34, 0xef, 0x69,
0xde, 0x32, 0xcb, 0x63, 0x69, 0xa9, 0x59, 0x5a, 0x5e, 0xce, 0xc9, 0x73, 0xf2,
0x92, 0x0f, 0x34, 0x34, 0x34, 0x34, 0x38, 0x34, 0x35, 0x34, 0x34, 0x08, 0x05,
0x0a, 0x05, 0x09, 0x45, 0x0d, 0x0d, 0x0d, 0x0e, 0x0e, 0x0d, 0x4d, 0x0d, 0x0d,
0x82, 0x41, 0x81, 0x41, 0x82, 0x42, 0x9a, 0x83, 0x43, 0x43, 0x83, 0x83, 0x43,
0x53, 0x83, 0x83, 0x60, 0xa0, 0x60, 0x50, 0xa0, 0xf1, 0xd4, 0xdf, 0x0f, 0xd0,
0xdc, 0xe2, 0x03, 0xbf, 0xfd, 0xe5, 0x4d, 0x24, 0x0e, 0x3a, 0xe8, 0xff, 0x96,
0x4c, 0xe0, 0xa7, 0xf0, 0x24, 0xc9, 0xd2, 0x9f, 0x24, 0x2e, 0xe6, 0xe1, 0xe3,
0x7c, 0x1c, 0x3c, 0x84, 0x7b, 0x61, 0xa1, 0x00, 0x27, 0x0a, 0x31, 0x57, 0x84,
0xbf, 0xc2, 0x5c, 0x31, 0x3e, 0x28, 0xc1, 0x4c, 0x29, 0xfe, 0x08, 0xef, 0xcb,
0x70, 0xfc, 0x30, 0x76, 0x97, 0xe3, 0x76, 0x78, 0x57, 0x81, 0xf7, 0x8e, 0x60,
0x67, 0x25, 0x7e, 0x0f, 0x6f, 0xaa, 0x70, 0xb4, 0x1a, 0xdb, 0x6b, 0x70, 0x23,
0x4c, 0xd7, 0xe2, 0x9d, 0xa3, 0xd8, 0x52, 0x87, 0xeb, 0xe1, 0xf5, 0x31, 0xbc,
0x5d, 0x8f, 0x4d, 0xc7, 0xf1, 0x5b, 0x78, 0x75, 0x02, 0x6f, 0x35, 0x60, 0x2a,
0xc5, 0xef, 0xfd, 0x7d, 0x5f, 0x53, 0xf8, 0xb2, 0x11, 0x6f, 0x9e, 0xc4, 0xba,
0x53, 0xb8, 0x16, 0x5e, 0x34, 0xe1, 0x48, 0x33, 0x56, 0x9f, 0xc6, 0xd5, 0x30,
0x75, 0x06, 0x6f, 0xb4, 0x60, 0x45, 0x2b, 0x7e, 0x09, 0x93, 0x6d, 0x78, 0xfd,
0x2c, 0x96, 0xb6, 0xe3, 0xe7, 0xf0, 0xfc, 0x1c, 0x5e, 0x3b, 0x8f, 0x85, 0x1d,
0xb8, 0x12, 0x9e, 0x75, 0xe2, 0xd5, 0x0b, 0x98, 0x77, 0x11, 0x97, 0xc3, 0xd3,
0x2e, 0x1c, 0xee, 0x46, 0xc3, 0xc7, 0x1e, 0x7c, 0xd4, 0x8b, 0x03, 0x69, 0xdc,
0x0d, 0xf3, 0x19, 0x7c, 0x78, 0x09, 0xb3, 0x7d, 0xf8, 0x33, 0x7c, 0xc8, 0xe2,
0xfd, 0x1c, 0xa6, 0x2f, 0xe3, 0x4e, 0x98, 0xed, 0xc7, 0xb1, 0x01, 0xec, 0x1a,
0xc4, 0xad, 0xf0, 0x76, 0x08, 0xef, 0x5e, 0xc1, 0x8e, 0x61, 0xdc, 0x0c, 0x33,
0xb0, 0xf6, 0xaf, 0xef, 0xff, 0x02,
};
optimizesize void *big5_decmap(void) {
return xload(&big5_decmap_ptr,
big5_decmap_rodata,
305, 1024); /* 29.7852% profit */
}
| 2,178 | 37 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__jisx0213_1_bmp_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __jisx0213_1_bmp_decmap_ptr;
static const unsigned char __jisx0213_1_bmp_decmap_rodata[2205] = {
0x8d, 0x56, 0x0d, 0x70, 0x14, 0x45, 0x16, 0xb6, 0x5f, 0xbf, 0xee, 0x6d, 0xe6,
0x86, 0x71, 0x18, 0xa7, 0x86, 0x61, 0x19, 0x86, 0x71, 0x5d, 0x96, 0x75, 0x6b,
0x5d, 0x53, 0x5b, 0xa9, 0x35, 0xa6, 0x62, 0x8e, 0xe2, 0x72, 0x31, 0x15, 0x29,
0x48, 0x51, 0x14, 0xe5, 0x71, 0x16, 0x75, 0xde, 0x21, 0x25, 0x1c, 0x25, 0xea,
0xe5, 0x2c, 0xef, 0xa7, 0x30, 0x12, 0xf2, 0x03, 0x4a, 0x30, 0x81, 0xf0, 0x13,
0x13, 0xfe, 0x12, 0x7e, 0x8c, 0xfc, 0x84, 0xf0, 0x17, 0x24, 0xbb, 0x40, 0x3c,
0x7e, 0x34, 0x98, 0xe3, 0x9f, 0x80, 0xc0, 0x49, 0xe0, 0xc2, 0x4f, 0xa2, 0x46,
0x89, 0x04, 0x51, 0xe0, 0x06, 0x04, 0xd1, 0x2b, 0xb9, 0xf3, 0xab, 0xea, 0xea,
0xf7, 0x5e, 0xbf, 0xd7, 0xfd, 0xe6, 0xbd, 0xd7, 0xaf, 0xa7, 0xe4, 0x5b, 0x4f,
0x2f, 0xa3, 0xea, 0xaa, 0xe7, 0x62, 0x82, 0x00, 0xc8, 0x50, 0x48, 0xb7, 0x91,
0x44, 0x9c, 0xdf, 0xf7, 0x1d, 0x2e, 0x7d, 0xc5, 0x41, 0x82, 0x7c, 0xf0, 0xe4,
0x21, 0x74, 0x5d, 0xba, 0x2d, 0xdd, 0xef, 0x0a, 0xe1, 0x0c, 0x81, 0xc4, 0x00,
0xa8, 0xf1, 0x02, 0x83, 0x96, 0x6d, 0x77, 0xd4, 0x6f, 0x63, 0xf3, 0x65, 0xfe,
0x04, 0xf2, 0x67, 0x60, 0x27, 0x3d, 0xf4, 0xf5, 0x9d, 0xa5, 0x45, 0xed, 0x9c,
0x01, 0x3b, 0x03, 0xc4, 0x20, 0xfb, 0x55, 0xa0, 0x7c, 0x74, 0x16, 0x05, 0x9c,
0x3b, 0x00, 0xca, 0x3e, 0xbe, 0x6b, 0x7c, 0xad, 0x95, 0x77, 0xdc, 0x7f, 0xfe,
0xe1, 0xb2, 0x06, 0x4e, 0xe2, 0xa7, 0x79, 0x51, 0xdf, 0x86, 0x1b, 0xff, 0xb5,
0xf1, 0x0f, 0x70, 0xb8, 0x87, 0x6f, 0xa5, 0x4f, 0x5d, 0xc9, 0xfe, 0x3c, 0x3b,
0xb8, 0xe6, 0x9b, 0x7b, 0xab, 0x6d, 0x8d, 0xf3, 0x05, 0x43, 0x5b, 0x06, 0xc3,
0xe2, 0x7e, 0xed, 0x09, 0x7e, 0x3a, 0xc1, 0xdb, 0x12, 0xfc, 0x64, 0x82, 0x9f,
0x4a, 0xf0, 0x63, 0x09, 0x7e, 0x3c, 0xc1, 0x0f, 0x27, 0xf8, 0x91, 0xc4, 0xbd,
0xad, 0x7f, 0x1e, 0x0e, 0xc6, 0xdd, 0x78, 0x84, 0x96, 0xc7, 0xf9, 0x92, 0x38,
0x5f, 0x1a, 0xe7, 0x55, 0x71, 0xbe, 0xd0, 0x3d, 0x35, 0xce, 0x2b, 0xe2, 0xbc,
0x3c, 0xce, 0xe7, 0xde, 0x09, 0x66, 0x41, 0x9c, 0x17, 0xde, 0x0d, 0x6c, 0x23,
0xef, 0x6e, 0x74, 0x99, 0x8e, 0x46, 0xbe, 0xfb, 0x61, 0x0f, 0x8a, 0x5e, 0x02,
0x3d, 0x9b, 0xda, 0xef, 0xe5, 0x49, 0x4f, 0x97, 0xa7, 0x7d, 0x9a, 0x9b, 0x9e,
0xdb, 0xa8, 0x43, 0x28, 0x0b, 0x56, 0x07, 0xfb, 0xbb, 0xe4, 0x87, 0xe4, 0x53,
0xb8, 0x9e, 0xf4, 0xfd, 0xca, 0x8c, 0x06, 0x5e, 0xd4, 0xc0, 0x6f, 0x91, 0xaf,
0x3f, 0x0e, 0x3f, 0xc2, 0xd9, 0xae, 0xff, 0xfb, 0x9d, 0x33, 0x1b, 0x6f, 0x9a,
0x6e, 0x4b, 0x81, 0x59, 0xee, 0xfc, 0xad, 0xf1, 0xd5, 0xfd, 0x73, 0xf1, 0x1d,
0x52, 0x98, 0xfa, 0xe3, 0x7d, 0x6a, 0xc8, 0x8f, 0xf9, 0xeb, 0x1b, 0xee, 0xec,
0xfb, 0xf1, 0xf9, 0x9b, 0xe6, 0xab, 0x0d, 0x03, 0xa0, 0xe7, 0x2f, 0x80, 0x27,
0x5e, 0x82, 0x99, 0x2f, 0xc1, 0x08, 0xc0, 0x9b, 0x58, 0xfc, 0xb7, 0x79, 0x79,
0x04, 0x38, 0xba, 0x1a, 0x08, 0xc0, 0x41, 0xc0, 0xff, 0x06, 0xfe, 0xcc, 0xe5,
0x51, 0x79, 0x64, 0x2d, 0xc9, 0x2d, 0x27, 0xdf, 0xcd, 0xa5, 0x64, 0xa5, 0x67,
0x35, 0xf7, 0xa4, 0xca, 0x54, 0x0e, 0x09, 0xda, 0x41, 0x56, 0x79, 0xd6, 0xb9,
0x5c, 0x2b, 0x6b, 0x66, 0xae, 0x60, 0x17, 0x8b, 0x33, 0x3a, 0xa2, 0x9a, 0xbc,
0xf0, 0x9c, 0x6c, 0x62, 0xdf, 0x89, 0x42, 0x53, 0xc3, 0xd8, 0xbf, 0xdf, 0x1d,
0x1e, 0xc7, 0x7f, 0x27, 0xe8, 0x64, 0x4b, 0x3c, 0x41, 0xd5, 0xc9, 0x71, 0x76,
0x92, 0x5b, 0x53, 0x31, 0x26, 0xf7, 0x93, 0xec, 0xa7, 0xd0, 0xb0, 0xff, 0x90,
0xaa, 0x4b, 0xd6, 0xc3, 0xfd, 0xfb, 0x07, 0x46, 0x0f, 0xf8, 0xcd, 0xbb, 0xf8,
0x21, 0xfa, 0xd6, 0xb3, 0x13, 0x8c, 0xfc, 0x76, 0xdc, 0xbb, 0x74, 0x29, 0x88,
0x31, 0x4f, 0x2e, 0xa0, 0xaf, 0x91, 0x55, 0x38, 0xf4, 0xd9, 0xd4, 0xc7, 0x38,
0xf6, 0x4f, 0x8f, 0x3d, 0x95, 0x33, 0x99, 0xc1, 0x2b, 0x23, 0xfe, 0x4a, 0xe6,
0x91, 0x57, 0x1f, 0x19, 0xd4, 0x6f, 0xcf, 0x65, 0xcf, 0xeb, 0x57, 0x3c, 0xed,
0x7f, 0x86, 0x8a, 0xa9, 0x9e, 0xdb, 0xe1, 0x9a, 0x37, 0xd5, 0x03, 0xd5, 0x2f,
0xae, 0x03, 0x21, 0x60, 0xe2, 0x97, 0xb9, 0xe7, 0x72, 0x1f, 0xe0, 0x1e, 0x9b,
0x3d, 0x70, 0x2b, 0x6b, 0xb5, 0xdd, 0x9e, 0xfb, 0xd6, 0x5d, 0xf2, 0x28, 0xde,
0xc7, 0x39, 0x3c, 0x3a, 0x71, 0xb0, 0xbc, 0x84, 0xbc, 0x49, 0x4c, 0xf3, 0xfe,
0x47, 0xe0, 0x17, 0xe0, 0x73, 0x60, 0x72, 0xa4, 0xa1, 0xf4, 0x6e, 0x12, 0x56,
0x48, 0xdf, 0x93, 0x45, 0xca, 0x0f, 0x42, 0x54, 0xdb, 0xfb, 0x9e, 0xd1, 0x6b,
0x79, 0xec, 0x27, 0x84, 0x91, 0x07, 0x3d, 0x2a, 0xa9, 0xf9, 0x3e, 0x99, 0xf7,
0x1d, 0xbb, 0xce, 0x07, 0x34, 0xaa, 0x3f, 0xa1, 0xb8, 0x4c, 0xbe, 0x4b, 0x27,
0x9e, 0x9c, 0x60, 0x8d, 0x9e, 0x60, 0x3f, 0x39, 0x3e, 0x26, 0xcf, 0x26, 0x51,
0xa6, 0xa6, 0x0f, 0x68, 0x72, 0x3d, 0x1b, 0x08, 0x13, 0x7f, 0xdd, 0x91, 0xb5,
0xfc, 0xea, 0x9d, 0xc2, 0xaf, 0xe7, 0x5b, 0x7b, 0x63, 0x69, 0xda, 0x67, 0xd9,
0x47, 0xb3, 0x0b, 0x33, 0x6f, 0x9a, 0x7d, 0x4a, 0x40, 0x99, 0xc1, 0x08, 0x99,
0x56, 0xef, 0xaa, 0x2c, 0xea, 0xe1, 0x8b, 0x7b, 0x6e, 0xaa, 0xc6, 0x7b, 0xf8,
0x76, 0xb8, 0xde, 0xed, 0x92, 0xff, 0x6c, 0xe3, 0x9f, 0xe3, 0xf2, 0x15, 0xa4,
0x62, 0x3b, 0xeb, 0x59, 0xcb, 0xf7, 0x3e, 0xaf, 0xc0, 0x7b, 0x64, 0x25, 0x49,
0x41, 0xa1, 0xd6, 0x92, 0x47, 0xc1, 0xab, 0x19, 0xe8, 0x37, 0x75, 0x5e, 0x5f,
0xcb, 0x3e, 0x7a, 0x87, 0x45, 0x86, 0x82, 0xa9, 0xdb, 0x8a, 0xbf, 0x97, 0xbc,
0x9c, 0xbc, 0x38, 0xec, 0x57, 0xe1, 0xb9, 0xcb, 0xd8, 0xe1, 0x1a, 0xc6, 0xd4,
0x40, 0x24, 0xb4, 0xaf, 0x9a, 0x6d, 0xa9, 0x66, 0xf8, 0xfe, 0xcb, 0xfb, 0xfe,
0x34, 0x4c, 0x09, 0x0a, 0x33, 0xd0, 0x9c, 0xdb, 0x95, 0x8b, 0xcf, 0x5b, 0xfa,
0xb8, 0x89, 0x47, 0xaa, 0xd8, 0x47, 0x55, 0x4c, 0xc8, 0x52, 0x7d, 0x15, 0x2b,
0xaa, 0x62, 0x86, 0xa4, 0x84, 0xea, 0x2b, 0xd9, 0x8a, 0xb7, 0x19, 0x26, 0x87,
0xf5, 0xd0, 0x76, 0x12, 0x1a, 0xb6, 0x90, 0x3c, 0xab, 0x19, 0x9a, 0x65, 0xa8,
0xa9, 0x2f, 0xdb, 0xa9, 0x7a, 0xcc, 0xca, 0x94, 0xd4, 0x7d, 0x65, 0xac, 0xb4,
0x8c, 0x0d, 0x3d, 0x50, 0xca, 0x4e, 0xbe, 0xc5, 0xe4, 0x31, 0xd6, 0x98, 0x81,
0x35, 0xb3, 0x58, 0xe9, 0x2c, 0x86, 0x30, 0x5c, 0x32, 0xb8, 0x12, 0x86, 0x3c,
0x72, 0xfe, 0xd6, 0x91, 0x96, 0x80, 0x57, 0x15, 0x69, 0x48, 0xfb, 0x74, 0x76,
0xaa, 0xef, 0x1b, 0x4b, 0x98, 0x0d, 0x4a, 0x48, 0x53, 0x41, 0xd3, 0x4b, 0x8a,
0xd9, 0xc9, 0x42, 0xc6, 0x6b, 0x8b, 0xd8, 0xd7, 0x85, 0xcc, 0x1b, 0x6a, 0x28,
0x64, 0x4b, 0x0a, 0x59, 0x6d, 0x15, 0x3b, 0x5a, 0xc9, 0x3c, 0xb2, 0x2c, 0x6b,
0x99, 0x17, 0x37, 0x90, 0xdd, 0xeb, 0x89, 0x93, 0xa6, 0xf8, 0xd3, 0x6d, 0x63,
0x92, 0x53, 0x4c, 0x64, 0x5d, 0x91, 0x93, 0xb5, 0xd4, 0xee, 0x39, 0xec, 0x83,
0xd9, 0xcc, 0x9c, 0xf5, 0xd0, 0x9e, 0x87, 0x42, 0xc3, 0xc3, 0x33, 0x48, 0x70,
0x98, 0x29, 0xa9, 0x5b, 0xcb, 0x48, 0xed, 0x6c, 0x52, 0xdf, 0x83, 0x30, 0xad,
0x6f, 0x51, 0x09, 0x0b, 0x39, 0x42, 0x71, 0x7c, 0x12, 0x66, 0xcc, 0x79, 0x93,
0x6d, 0x5e, 0xcc, 0x8f, 0xcc, 0x21, 0xc9, 0x87, 0x2e, 0x61, 0xf9, 0x25, 0x04,
0xb3, 0x4f, 0x66, 0x30, 0x5d, 0x70, 0x5f, 0xe0, 0x58, 0xe0, 0xa2, 0x58, 0x68,
0x8f, 0x13, 0x79, 0x44, 0xde, 0x4e, 0x0e, 0x5d, 0xc0, 0x2d, 0x17, 0xf0, 0x19,
0x05, 0xa5, 0xb0, 0xec, 0x43, 0x85, 0x4b, 0xb6, 0x30, 0x79, 0xd8, 0x0c, 0x18,
0xaa, 0x8c, 0xfe, 0x10, 0x57, 0xb3, 0x14, 0x11, 0x43, 0x7f, 0xe7, 0x39, 0xdc,
0xd6, 0x8e, 0x30, 0x46, 0x03, 0x35, 0x96, 0x65, 0x4b, 0x4a, 0xc9, 0x59, 0x3c,
0xdd, 0x86, 0x67, 0xdb, 0xb0, 0xa0, 0x0d, 0x59, 0x49, 0x1b, 0x6e, 0xfd, 0x04,
0x53, 0xa4, 0x80, 0x08, 0x85, 0xa7, 0xf8, 0x87, 0x59, 0xd6, 0x50, 0x3d, 0x23,
0x72, 0x80, 0xa8, 0x6a, 0x4c, 0x58, 0x6b, 0xc8, 0x08, 0xdb, 0xdb, 0x44, 0x06,
0x82, 0x24, 0xcb, 0xc3, 0xc5, 0x70, 0xa5, 0xee, 0x10, 0xae, 0x3f, 0x88, 0x93,
0x3e, 0x3c, 0x80, 0xf9, 0xfb, 0x51, 0x33, 0xb5, 0x94, 0x47, 0x51, 0x91, 0x00,
0xdf, 0xa2, 0xff, 0x06, 0x71, 0xb6, 0x1d, 0x3f, 0x70, 0x0f, 0x51, 0x84, 0x1b,
0xb8, 0x50, 0x67, 0x0b, 0xee, 0x6c, 0x41, 0xbf, 0x9b, 0xe4, 0xe6, 0x35, 0xe4,
0xcb, 0x35, 0xc4, 0xeb, 0x8f, 0xae, 0xda, 0x83, 0x1d, 0xbb, 0x71, 0xfc, 0x13,
0x30, 0x5e, 0xf6, 0x4b, 0x7c, 0xc8, 0xdf, 0x5f, 0x8a, 0x64, 0x4b, 0x4b, 0xc9,
0x04, 0x5b, 0x1a, 0x15, 0xe1, 0x0b, 0x77, 0xe3, 0x8e, 0x5d, 0x88, 0xde, 0xb0,
0x9a, 0x24, 0x71, 0x30, 0xac, 0x29, 0x17, 0x8f, 0x63, 0xe9, 0xc7, 0xe8, 0x0d,
0x99, 0x20, 0x92, 0x56, 0x36, 0xe1, 0xc9, 0x1d, 0xa8, 0x66, 0xac, 0x6b, 0x20,
0xde, 0x44, 0x03, 0x51, 0xc0, 0x80, 0xa8, 0x7c, 0xe0, 0x28, 0x16, 0x1c, 0x45,
0xae, 0x18, 0xb2, 0xe4, 0xa8, 0x73, 0x8f, 0xe0, 0x85, 0xc3, 0x68, 0x68, 0xa0,
0x4c, 0xe1, 0x6b, 0xb7, 0x92, 0xca, 0x6e, 0x96, 0xdf, 0x80, 0xdc, 0xd2, 0x7c,
0x8e, 0x2e, 0xa1, 0x63, 0x0c, 0x17, 0x85, 0x9b, 0x71, 0xc7, 0x26, 0x54, 0x20,
0x47, 0x36, 0x32, 0x87, 0xf1, 0x4a, 0xf2, 0x47, 0xb4, 0xc1, 0x2f, 0x12, 0x64,
0x82, 0x65, 0x1a, 0x7c, 0xf1, 0x5e, 0xbc, 0xd4, 0x8c, 0xfa, 0x10, 0xae, 0xca,
0x51, 0xef, 0xf6, 0xf5, 0x58, 0xb0, 0x1e, 0x25, 0x34, 0xc2, 0x18, 0x90, 0xfc,
0x02, 0x30, 0x7d, 0xce, 0x3a, 0xac, 0xae, 0x43, 0x27, 0x09, 0x2b, 0x88, 0xec,
0xc8, 0xca, 0x34, 0xa2, 0x1f, 0x5f, 0x85, 0x5b, 0x56, 0xa1, 0x24, 0xd2, 0x54,
0xd7, 0xd9, 0x14, 0x5d, 0x80, 0x62, 0x2a, 0xb6, 0x6c, 0xf0, 0xb1, 0x7d, 0x24,
0x07, 0x32, 0x32, 0x02, 0x30, 0x30, 0xec, 0x73, 0xd2, 0x15, 0x33, 0x55, 0x98,
0xa3, 0x53, 0xfa, 0xa1, 0x85, 0x61, 0xd0, 0x3f, 0xab, 0xc6, 0x8e, 0x6a, 0xd4,
0x85, 0x7a, 0x7c, 0x29, 0x2e, 0x5a, 0x8a, 0x68, 0x8c, 0xed, 0xad, 0xe7, 0x62,
0xc8, 0xed, 0xa7, 0xab, 0xf7, 0x91, 0xca, 0xfd, 0xc4, 0xca, 0xc4, 0x57, 0x0a,
0x37, 0xe0, 0xea, 0xf5, 0x08, 0x27, 0xde, 0xc6, 0x37, 0xde, 0xc6, 0x70, 0x38,
0xaa, 0x03, 0x0a, 0x29, 0x4d, 0x56, 0xb8, 0x2e, 0xa7, 0x71, 0x07, 0x4e, 0xcd,
0xc7, 0xdd, 0xf3, 0xdd, 0x36, 0x7c, 0xab, 0x73, 0x06, 0x11, 0x84, 0x69, 0x68,
0x18, 0x05, 0xb4, 0x05, 0x17, 0x83, 0xc2, 0x6e, 0x85, 0xe8, 0x1a, 0xf8, 0xb2,
0x31, 0x9c, 0x94, 0x47, 0xf4, 0xe8, 0xb6, 0x56, 0xd2, 0x70, 0x8c, 0x84, 0x53,
0x50, 0xf6, 0x82, 0x5b, 0x15, 0xaa, 0xa5, 0x46, 0x41, 0x45, 0x74, 0x92, 0x11,
0x54, 0x61, 0xda, 0x0a, 0xca, 0x7e, 0xc3, 0xb0, 0xec, 0x18, 0x3a, 0x0a, 0x58,
0x9c, 0x27, 0xc9, 0xc1, 0xf0, 0xa4, 0x0a, 0x12, 0x36, 0x00, 0x23, 0xf2, 0x7b,
0x45, 0xb8, 0xb1, 0x10, 0x2b, 0xab, 0x70, 0x49, 0x15, 0xbe, 0x60, 0x59, 0x7d,
0xb2, 0xfd, 0x9c, 0xd7, 0x4d, 0x43, 0x98, 0xe5, 0x8e, 0xb7, 0xdc, 0x01, 0xe7,
0xf2, 0xf1, 0x62, 0x3e, 0x4e, 0x86, 0x1d, 0x53, 0xb1, 0x3e, 0x1f, 0x61, 0x72,
0xc1, 0x54, 0x8c, 0x2a, 0x0e, 0x9e, 0x9f, 0x8f, 0x07, 0xe7, 0xa3, 0xee, 0xc5,
0xf0, 0xd2, 0xd7, 0x71, 0x63, 0x1e, 0x66, 0x39, 0xfb, 0x6e, 0xd0, 0x45, 0x37,
0x68, 0xac, 0xb1, 0x1c, 0xcb, 0xcb, 0x51, 0x0d, 0xa4, 0xfa, 0x43, 0x31, 0xcb,
0x54, 0xfc, 0x5e, 0xe4, 0x4f, 0x77, 0x5d, 0xa5, 0xd7, 0xbe, 0xa6, 0x98, 0xf3,
0xbb, 0x41, 0x18, 0xe0, 0xd5, 0xe7, 0xc8, 0x86, 0xcb, 0xec, 0x83, 0x12, 0x0c,
0x9a, 0x61, 0xc9, 0x4c, 0x89, 0x0a, 0x31, 0x0a, 0x0c, 0x5d, 0xb6, 0x1c, 0xc5,
0xd0, 0xd2, 0x34, 0x35, 0x24, 0xa7, 0xe8, 0xba, 0xf7, 0xfc, 0x17, 0xf4, 0x64,
0x17, 0xfd, 0xa5, 0x26, 0x8a, 0xbf, 0xa0, 0xd5, 0x5d, 0xd4, 0xb0, 0x47, 0xf2,
0x6e, 0x58, 0xde, 0x49, 0x4b, 0x3b, 0xa8, 0x9c, 0x63, 0x7b, 0x85, 0x17, 0xcd,
0xa6, 0x0b, 0x74, 0xe6, 0x05, 0xea, 0xb7, 0x51, 0xaa, 0x74, 0x3b, 0x4c, 0x20,
0x7b, 0x5c, 0x58, 0x01, 0xa9, 0x92, 0xd8, 0x92, 0x3a, 0xa3, 0x8d, 0x96, 0xb6,
0x32, 0x75, 0xc6, 0x15, 0x12, 0x9c, 0x73, 0x99, 0xfe, 0xeb, 0x2b, 0x1a, 0x40,
0x90, 0x24, 0x4d, 0x01, 0xc5, 0xce, 0x71, 0xe3, 0xd9, 0x44, 0x5e, 0x33, 0xbc,
0x9a, 0xd0, 0x45, 0x8e, 0x66, 0xca, 0xb6, 0x9b, 0x30, 0x45, 0x45, 0x47, 0x8b,
0x48, 0xa2, 0xf6, 0x18, 0x5d, 0xdd, 0x4a, 0x23, 0x3e, 0xee, 0x8f, 0xfa, 0xdc,
0x4b, 0x80, 0x57, 0x3a, 0xe9, 0xbc, 0x0e, 0x3a, 0x58, 0x32, 0x47, 0x19, 0x97,
0x0f, 0xd0, 0x33, 0xfb, 0xe9, 0x73, 0x7e, 0x1e, 0xb0, 0x62, 0x3c, 0x3d, 0x7b,
0x90, 0x04, 0xc6, 0x89, 0x73, 0xb4, 0xf9, 0x1c, 0xf5, 0xd9, 0xe9, 0x62, 0x53,
0x33, 0x5d, 0xd1, 0x4c, 0xa7, 0xe7, 0xc3, 0xc2, 0x7c, 0xd0, 0x32, 0x87, 0x4c,
0x23, 0x08, 0xd6, 0x5e, 0x12, 0x86, 0x2c, 0x50, 0xcb, 0x8b, 0xa0, 0xb5, 0x08,
0xc2, 0xc9, 0x42, 0x16, 0xc6, 0x97, 0xc4, 0x3f, 0x44, 0x7c, 0x72, 0x82, 0x96,
0x9e, 0xa0, 0xc3, 0x8b, 0x77, 0xd2, 0x59, 0x3b, 0x29, 0xb8, 0x8e, 0xa3, 0xa2,
0xac, 0x24, 0x15, 0xef, 0xd3, 0x05, 0x4d, 0xd4, 0xe7, 0x4b, 0xe1, 0xde, 0x90,
0xa3, 0xd8, 0x22, 0x28, 0x9e, 0x19, 0x69, 0x87, 0xb0, 0xb5, 0x91, 0xba, 0x45,
0xb3, 0xa5, 0x91, 0x5a, 0x92, 0xf3, 0x7c, 0x2b, 0xa4, 0x5f, 0xd9, 0x4c, 0x0b,
0x36, 0xd1, 0x80, 0x90, 0x5b, 0x36, 0xd2, 0x65, 0x1b, 0xa9, 0xb6, 0x12, 0xd2,
0xb9, 0x5c, 0x46, 0x78, 0xf2, 0x78, 0xa3, 0x70, 0x17, 0xfd, 0xe6, 0x1f, 0xb4,
0x67, 0x01, 0x74, 0x56, 0x40, 0x96, 0xad, 0xa5, 0x1d, 0x6a, 0xa2, 0x6b, 0x77,
0x50, 0x7b, 0xac, 0x90, 0x93, 0xb3, 0xbb, 0x57, 0xd2, 0xf8, 0x0a, 0xea, 0x75,
0xcb, 0x49, 0xf1, 0x19, 0x32, 0xa0, 0x23, 0x83, 0x4f, 0x3a, 0x5b, 0x43, 0xab,
0x6b, 0x5c, 0x0f, 0xdc, 0x5b, 0xa7, 0x22, 0xd7, 0x8c, 0x40, 0x4e, 0xcc, 0x92,
0x8c, 0x58, 0xd6, 0x23, 0x6e, 0xcd, 0x84, 0xb5, 0x1c, 0xb7, 0xf0, 0x04, 0x37,
0x47, 0x3a, 0xb9, 0xee, 0x45, 0xf3, 0xa6, 0x4b, 0x31, 0x14, 0xee, 0x43, 0x90,
0xec, 0xf6, 0x86, 0xd1, 0x6a, 0xc4, 0x4c, 0x82, 0xec, 0xde, 0x93, 0x22, 0x51,
0x55, 0x86, 0x06, 0xf4, 0x29, 0x9c, 0xeb, 0x8a, 0x25, 0xf1, 0x9d, 0x75, 0x70,
0xa8, 0x0e, 0x44, 0x37, 0x79, 0xba, 0x6e, 0x26, 0xbd, 0xf6, 0x26, 0x55, 0x60,
0x8c, 0x39, 0xa7, 0x84, 0x5e, 0x9b, 0x49, 0xe5, 0x62, 0xa2, 0xfa, 0x01, 0x8c,
0xa0, 0x94, 0x11, 0x35, 0x15, 0x35, 0xc4, 0xa2, 0x17, 0xa7, 0xd3, 0xf8, 0x74,
0x1a, 0xf4, 0x4a, 0xdd, 0xc5, 0x74, 0x6d, 0x31, 0x75, 0xff, 0x2f, 0x10, 0x3a,
0x0b, 0xe8, 0xe1, 0x02, 0xaa, 0x54, 0x12, 0x2b, 0xbd, 0xcd, 0x7d, 0x3e, 0xf7,
0x10, 0x18, 0xaa, 0x81, 0xee, 0x17, 0x62, 0x0f, 0x31, 0xd0, 0x50, 0x33, 0x35,
0x39, 0xa9, 0xb4, 0x11, 0x56, 0x35, 0xc2, 0xef, 0x63, 0x83, 0x4c, 0x6e, 0xcb,
0x92, 0xad, 0x25, 0x7b, 0x23, 0x01, 0x89, 0x67, 0xa6, 0x59, 0xc0, 0x1d, 0xf4,
0xef, 0x05, 0xc8, 0x16, 0x86, 0xcf, 0x6b, 0x5a, 0xe6, 0xa8, 0xc1, 0x4e, 0xac,
0xa5, 0x98, 0xae, 0x2e, 0xa6, 0x43, 0xac, 0x16, 0x92, 0x21, 0xab, 0x5c, 0x02,
0xcb, 0x9a, 0x32, 0x32, 0xed, 0x65, 0xc1, 0x8d, 0x83, 0x73, 0x61, 0x57, 0xaf,
0x06, 0x71, 0x6a, 0xec, 0x8c, 0x07, 0xff, 0x03,
};
optimizesize void *__jisx0213_1_bmp_decmap(void) {
return xloadzd(&__jisx0213_1_bmp_decmap_ptr,
__jisx0213_1_bmp_decmap_rodata,
2205, 2892, 2197, 2, 0x54509b20u); /* 50.1821% profit */
}
| 13,963 | 183 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/cp950ext_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) cp950ext_encmap_ptr;
static const unsigned char cp950ext_encmap_rodata[] = {
0x63, 0x64, 0x58, 0xbf, 0x9e, 0x61, 0x00, 0x01, 0x13, 0x83, 0xfa, 0x1a, 0x10,
0xdd, 0xc1, 0x20, 0x3a, 0x13, 0x26, 0xc6, 0xcb, 0x18, 0x38, 0x99, 0x61, 0x98,
0x80, 0x00, 0xc6, 0xdd, 0xbb, 0x41, 0x74, 0x20, 0xe3, 0xaf, 0x5f, 0xd8, 0xe4,
0x83, 0x18, 0x83, 0x82, 0x68, 0x69, 0x7f, 0x30, 0x63, 0x63, 0x23, 0x32, 0x3f,
0x84, 0x71, 0xf9, 0x72, 0x52, 0xf4, 0x87, 0x32, 0x9e, 0x3f, 0x4f, 0x8c, 0xba,
0x30, 0xc6, 0x9d, 0x3b, 0x19, 0x46, 0xc1, 0x90, 0x01, 0xe1, 0x8c, 0x81, 0x19,
0xf9, 0x8c, 0xfc, 0x4f, 0x01,
};
optimizesize void *cp950ext_encmap(void) {
return xload(&cp950ext_encmap_ptr,
cp950ext_encmap_rodata,
83, 1024); /* 8.10547% profit */
}
| 831 | 20 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__cp950ext_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __cp950ext_decmap_ptr;
static const unsigned char __cp950ext_decmap_rodata[92] = {
0x3b, 0xd7, 0xc0, 0xb8, 0xee, 0x3f, 0x1b, 0x03, 0x04, 0xdc, 0x64, 0xbb, 0x05,
0x63, 0xd2, 0x11, 0xcc, 0xfd, 0xcb, 0x3e, 0xef, 0x2f, 0x3b, 0x01, 0x45, 0xfb,
0x99, 0x0e, 0x30, 0xa1, 0x08, 0x5c, 0xfc, 0xca, 0xc6, 0xd1, 0xce, 0xb4, 0xec,
0x23, 0xdb, 0x1a, 0x36, 0x43, 0x23, 0x6b, 0xa6, 0x97, 0x7f, 0xd8, 0x56, 0xdd,
0x67, 0xfa, 0x90, 0x71, 0x59, 0x7d, 0xf9, 0x01, 0xc6, 0x75, 0x72, 0xab, 0x0a,
0x6f, 0xb6, 0x31, 0x9e, 0xbe, 0xc6, 0xa8, 0x22, 0x2b, 0x24, 0x21, 0x28, 0x28,
0x27, 0x2e, 0x0a, 0x63, 0xf0, 0xc3, 0x45, 0x18, 0xad, 0x98, 0x58, 0x18, 0x3d,
0x00,
};
optimizesize void *__cp950ext_decmap(void) {
return xloadzd(&__cp950ext_decmap_ptr,
__cp950ext_decmap_rodata,
92, 256, 224, 2, 0x852ba419u); /* 20.5357% profit */
}
| 925 | 21 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/cp932ext_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) cp932ext_encmap_ptr;
static const unsigned char cp932ext_encmap_rodata[] = {
0x63, 0x60, 0x18, 0x78, 0xc0, 0xc8, 0x20, 0x56, 0x99, 0xca, 0x20, 0xb8, 0x1f,
0xc4, 0x16, 0x61, 0x4c, 0x28, 0x26, 0x45, 0xaf, 0x06, 0xa3, 0xac, 0x3c, 0x88,
0xd6, 0x66, 0x34, 0x5c, 0xb1, 0x98, 0x91, 0xf9, 0x2c, 0xbd, 0xdc, 0x9c, 0xc7,
0xa4, 0xf1, 0xc7, 0x99, 0x99, 0xe1, 0xbf, 0x33, 0x8b, 0xdc, 0x17, 0x29, 0x56,
0xaf, 0x37, 0x7b, 0x59, 0x45, 0x6f, 0xb7, 0xb0, 0x31, 0xdc, 0x4d, 0x62, 0xef,
0xfa, 0x7f, 0x83, 0xbd, 0xad, 0x0d, 0xa4, 0xe6, 0x26, 0x7b, 0xe4, 0x09, 0x4f,
0x8e, 0x79, 0x9b, 0xe2, 0x38, 0xb8, 0x77, 0x81, 0xf8, 0x7c, 0x9c, 0x61, 0x6f,
0x96, 0x72, 0xca, 0x7d, 0xad, 0xe5, 0x52, 0xbf, 0x00, 0xe2, 0xab, 0x73, 0x2b,
0xde, 0x7b, 0xca, 0x1d, 0xfb, 0xa9, 0x9a, 0x47, 0x70, 0x06, 0x33, 0xaf, 0xf0,
0xb2, 0xe9, 0xbc, 0x5f, 0xbf, 0xce, 0xe0, 0x4d, 0x38, 0xc7, 0xce, 0xe7, 0xe7,
0xc7, 0xc1, 0xc7, 0xf0, 0x9b, 0x85, 0x9f, 0xef, 0xc0, 0x76, 0x7e, 0xc6, 0xf3,
0x6d, 0x02, 0x19, 0x8f, 0x18, 0x05, 0x0d, 0x9e, 0x6c, 0x13, 0xbc, 0x76, 0x6d,
0xbb, 0xa0, 0xfd, 0xad, 0x60, 0x21, 0x96, 0x3f, 0x3e, 0xc2, 0xea, 0xfb, 0x9f,
0x0a, 0x77, 0x7c, 0x0d, 0x16, 0x61, 0xdd, 0xcd, 0x25, 0xca, 0xf2, 0x8f, 0x55,
0x6c, 0xe3, 0x3e, 0x61, 0x31, 0x95, 0xaf, 0x4f, 0xc5, 0xd8, 0xe7, 0xd7, 0x89,
0x33, 0xe6, 0xbf, 0x15, 0x6f, 0x5a, 0x26, 0x24, 0xe1, 0xe6, 0x26, 0x2c, 0xa1,
0x58, 0x95, 0x2b, 0x61, 0x30, 0xfb, 0xa6, 0xc4, 0xc5, 0xd7, 0x5f, 0x24, 0xe6,
0xcd, 0x03, 0xd9, 0xfb, 0x55, 0xc2, 0xe3, 0x5a, 0x8b, 0x64, 0x50, 0xd7, 0x5e,
0x49, 0xf7, 0x85, 0xc8, 0x7e, 0x92, 0x90, 0x62, 0xfc, 0xc6, 0x27, 0xed, 0x71,
0x67, 0xb1, 0x74, 0xf0, 0x06, 0x78, 0xdc, 0xc8, 0xb0, 0x7f, 0xfd, 0x20, 0x23,
0x23, 0xf3, 0x51, 0x46, 0xe8, 0xdb, 0x35, 0xd9, 0xe0, 0x7a, 0x66, 0xb9, 0x0f,
0x5f, 0x38, 0xe4, 0x84, 0xca, 0x72, 0xe5, 0xce, 0x9f, 0x07, 0x87, 0x83, 0x5c,
0xfa, 0xbd, 0x67, 0x72, 0xa2, 0xef, 0x0e, 0xc8, 0xb3, 0xfd, 0xdf, 0xa5, 0xc0,
0xf4, 0x63, 0xa3, 0xa2, 0xa1, 0xc7, 0x49, 0xc5, 0x49, 0x93, 0x4e, 0x29, 0xce,
0x5d, 0x7f, 0x57, 0xd1, 0x38, 0x94, 0x41, 0x29, 0x3c, 0x95, 0x5f, 0x49, 0x7d,
0x5e, 0xbb, 0x92, 0xdf, 0x1d, 0x31, 0xe5, 0xa2, 0xdd, 0x09, 0xca, 0x0c, 0x0c,
0x89, 0xca, 0xd9, 0x05, 0xe9, 0xca, 0x92, 0x17, 0x19, 0x46, 0x01, 0x5d, 0x80,
0x82, 0x8a, 0xe6, 0x9d, 0x2b, 0x2a, 0x7c, 0xba, 0xe8, 0xe2, 0x5f, 0x54, 0x98,
0x9e, 0x00, 0x00,
};
optimizesize void *cp932ext_encmap(void) {
return xload(&cp932ext_encmap_ptr,
cp932ext_encmap_rodata,
367, 1024); /* 35.8398% profit */
}
| 2,580 | 42 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__big5hkscs_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __big5hkscs_decmap_ptr;
static const unsigned char __big5hkscs_decmap_rodata[] = {
0xad, 0x99, 0xf7, 0x57, 0x5a, 0x59, 0xd8, 0xef, 0x2d, 0x98, 0xaa, 0x68, 0x34,
0x51, 0x4c, 0x62, 0x12, 0xa3, 0x98, 0xa6, 0xe6, 0x58, 0x80, 0x28, 0x82, 0x80,
0xa0, 0x82, 0x15, 0x69, 0x0a, 0xd8, 0x15, 0x05, 0x01, 0x41, 0x50, 0x11, 0x51,
0x01, 0xb1, 0x00, 0x76, 0x6c, 0xd8, 0x50, 0x63, 0x7a, 0xef, 0x31, 0xdd, 0xf4,
0x64, 0x52, 0x27, 0x6d, 0xd2, 0x7b, 0x4f, 0x26, 0x3d, 0x63, 0xca, 0xc0, 0x75,
0xee, 0xbb, 0xde, 0x75, 0xff, 0x80, 0xeb, 0x3a, 0xbf, 0xec, 0x75, 0xca, 0x73,
0xf6, 0xfe, 0xec, 0x7d, 0x9e, 0xef, 0xf7, 0x39, 0xfb, 0x63, 0x44, 0x60, 0xac,
0x6d, 0xe4, 0x5a, 0x82, 0x8c, 0x90, 0x57, 0x54, 0x1a, 0xb7, 0x8b, 0xb0, 0x43,
0xf1, 0x24, 0xf6, 0x94, 0xa2, 0x03, 0x09, 0x8f, 0xc2, 0x47, 0x45, 0xc5, 0x62,
0x62, 0x8f, 0xe2, 0xdc, 0xe0, 0x49, 0x12, 0xbd, 0xf0, 0x4f, 0x11, 0x23, 0x96,
0xbc, 0x3a, 0x21, 0xea, 0x0e, 0xa1, 0x26, 0x96, 0xaf, 0x98, 0x1a, 0x37, 0x42,
0x1a, 0x8a, 0xf4, 0x2a, 0x80, 0x16, 0x51, 0x99, 0xd9, 0x73, 0xa7, 0xa0, 0x33,
0xc3, 0xe3, 0x38, 0xbf, 0xe8, 0x66, 0x4b, 0x47, 0x85, 0x47, 0xca, 0xa8, 0xfe,
0x2b, 0x2a, 0xb8, 0xeb, 0x43, 0xf9, 0x5d, 0x56, 0x9a, 0xc7, 0x08, 0x13, 0x0a,
0xdf, 0x3e, 0x70, 0x95, 0xb9, 0x8f, 0xf5, 0x9b, 0x2d, 0xcc, 0x33, 0xd4, 0x10,
0x8c, 0x99, 0xd2, 0x7e, 0xe9, 0xb1, 0x80, 0xb1, 0x80, 0xe3, 0x01, 0x27, 0x02,
0x4e, 0x06, 0xd8, 0x5b, 0x9f, 0x0a, 0xb8, 0x6a, 0x75, 0xd1, 0xea, 0x74, 0xc0,
0x99, 0x80, 0x3f, 0xac, 0x5e, 0x2d, 0x3c, 0x1b, 0x70, 0xde, 0xea, 0x5c, 0xc0,
0xf9, 0x80, 0x3f, 0x02, 0x2e, 0x04, 0x80, 0xad, 0x2f, 0x06, 0x5c, 0x0a, 0xb0,
0xb2, 0x1e, 0xb3, 0xba, 0x68, 0x7d, 0xcc, 0xca, 0xd9, 0xfa, 0x9c, 0xd5, 0x5c,
0xeb, 0xb3, 0x56, 0xb1, 0xd6, 0xd7, 0xac, 0xae, 0x5a, 0xff, 0x69, 0x65, 0xb6,
0x1c, 0x59, 0x60, 0xb6, 0x1c, 0x5b, 0x70, 0xde, 0xca, 0xda, 0xfa, 0xb1, 0xd5,
0x25, 0xeb, 0x47, 0x56, 0x64, 0x1b, 0x17, 0xeb, 0xd7, 0x56, 0xf3, 0xac, 0x5f,
0x59, 0xad, 0xb0, 0x7e, 0x6f, 0x75, 0xc5, 0xfa, 0x9d, 0x55, 0x9c, 0xf5, 0x17,
0xab, 0x3f, 0xad, 0x3f, 0x5b, 0x15, 0x58, 0xff, 0xb4, 0xba, 0x6e, 0xfd, 0xc3,
0xea, 0xa6, 0xf5, 0x5f, 0xd6, 0x77, 0xac, 0xcd, 0x96, 0xff, 0xff, 0xe3, 0x9e,
0xf5, 0xef, 0x89, 0x1e, 0x1c, 0x9d, 0xe8, 0xc1, 0xd8, 0x82, 0x37, 0x56, 0x99,
0x36, 0x77, 0xbc, 0xee, 0x7a, 0x6d, 0x58, 0x4d, 0x98, 0x65, 0xb6, 0xcc, 0xc8,
0xfd, 0xef, 0x3a, 0x2a, 0xfe, 0xbe, 0x30, 0xbe, 0xff, 0x61, 0xeb, 0x7f, 0x6d,
0x58, 0x69, 0x6b, 0xce, 0xdc, 0x84, 0xa5, 0x09, 0xeb, 0x13, 0xe8, 0x64, 0x29,
0xb9, 0x8f, 0xfc, 0x8c, 0x3c, 0x94, 0xb4, 0x3e, 0x09, 0x49, 0x89, 0xa7, 0x5c,
0xa5, 0xfc, 0x45, 0x79, 0x42, 0xff, 0x98, 0x0c, 0x4a, 0x99, 0x9a, 0x12, 0x98,
0x12, 0x9c, 0xc2, 0x61, 0x0d, 0xb0, 0x4c, 0xac, 0x1e, 0x76, 0x6d, 0x1a, 0x32,
0x43, 0x9b, 0x6b, 0xce, 0x03, 0xe5, 0xe7, 0xe6, 0xc7, 0x0b, 0x0e, 0x89, 0x60,
0xc5, 0x23, 0x95, 0x9b, 0x2b, 0x0f, 0x54, 0x9e, 0xa9, 0xbc, 0x5c, 0xf9, 0xb0,
0x72, 0x4a, 0x15, 0xa2, 0x4a, 0xae, 0xbe, 0xac, 0x2e, 0xac, 0x3e, 0xad, 0x3d,
0xa2, 0x7f, 0xa2, 0xe7, 0x34, 0xe7, 0x35, 0x0b, 0x9b, 0x27, 0x63, 0x54, 0xb3,
0xa4, 0xbf, 0x15, 0x17, 0x2b, 0x22, 0xb9, 0xe7, 0xe4, 0x4b, 0x92, 0xfe, 0xf7,
0x5c, 0x43, 0xeb, 0x7e, 0x59, 0x5a, 0xeb, 0x21, 0xa5, 0xd9, 0x32, 0xb3, 0xf1,
0xbb, 0xf2, 0xe5, 0xf4, 0xff, 0xce, 0x99, 0x94, 0x67, 0x06, 0x2e, 0xc6, 0x9e,
0xeb, 0xb7, 0x1f, 0x40, 0xc7, 0x7e, 0xef, 0x07, 0x8b, 0x66, 0x0c, 0x04, 0x0d,
0x8d, 0xc1, 0xcc, 0x96, 0x1e, 0x21, 0x5a, 0xed, 0x5e, 0x3c, 0x11, 0x87, 0xc8,
0xef, 0x69, 0xee, 0x31, 0x9a, 0xea, 0xca, 0xf8, 0x9a, 0xf3, 0x1e, 0x57, 0xec,
0x5e, 0x2c, 0xf7, 0x8e, 0x57, 0xc5, 0x2b, 0xe3, 0xeb, 0xe2, 0x8f, 0xc6, 0xbf,
0x8d, 0x47, 0x24, 0xc4, 0x06, 0x1f, 0x4e, 0x88, 0x46, 0xdb, 0x26, 0xd6, 0x27,
0x56, 0x04, 0x1b, 0x82, 0xd7, 0x04, 0xd7, 0x92, 0xed, 0x52, 0xee, 0x92, 0x7f,
0x93, 0xed, 0x92, 0xb4, 0xf1, 0x65, 0x49, 0x2d, 0x49, 0x4b, 0x28, 0x67, 0x60,
0x1b, 0x28, 0x64, 0xd8, 0x76, 0x0a, 0x05, 0x76, 0x9c, 0xe2, 0x45, 0x15, 0xc0,
0x8a, 0x60, 0x2a, 0xb8, 0x81, 0xba, 0x9a, 0xba, 0x9b, 0x3a, 0x4a, 0xbd, 0x42,
0xfd, 0x40, 0x85, 0xd0, 0xbc, 0x68, 0x4b, 0x69, 0xdd, 0xb0, 0x70, 0xda, 0x1a,
0xd8, 0x51, 0xd8, 0x2d, 0xda, 0x29, 0x98, 0xa6, 0x02, 0x4a, 0x33, 0x5b, 0x70,
0xf6, 0x73, 0x1c, 0x56, 0x90, 0x5b, 0x68, 0xa7, 0x7d, 0xdf, 0x85, 0x60, 0x6d,
0x23, 0x9b, 0xf6, 0xc7, 0x3d, 0x6f, 0xa7, 0x60, 0x8e, 0x28, 0xe5, 0xa5, 0xab,
0x7c, 0x83, 0x43, 0x6f, 0x44, 0xa5, 0xaa, 0x3e, 0x73, 0xdf, 0xc4, 0xdd, 0xcf,
0x51, 0x38, 0xec, 0x76, 0xbc, 0x61, 0xff, 0xd5, 0xa9, 0x31, 0xa7, 0xb2, 0xa9,
0x13, 0x3c, 0xd3, 0x3e, 0xc7, 0x71, 0x83, 0x2f, 0x5d, 0x7d, 0x0d, 0x6f, 0xb6,
0x44, 0x3a, 0xc4, 0xf5, 0xbc, 0x56, 0x7e, 0x8d, 0x5a, 0x17, 0x7f, 0xdc, 0x77,
0x67, 0x4f, 0x5e, 0xe8, 0xd7, 0x8e, 0xf7, 0xe1, 0x53, 0x60, 0x67, 0x92, 0xae,
0x77, 0x9d, 0x95, 0xe1, 0xfd, 0x84, 0xfd, 0x73, 0xba, 0xcd, 0x96, 0xdb, 0x11,
0x6b, 0x32, 0x76, 0xe7, 0x3c, 0xa5, 0xc6, 0xfa, 0x9d, 0x5f, 0x51, 0xea, 0xf4,
0x2b, 0xa4, 0xd0, 0x69, 0x32, 0xe8, 0xdf, 0xe1, 0xb8, 0xe6, 0x0d, 0x96, 0xbd,
0xc9, 0x49, 0x4a, 0x8c, 0xb0, 0xcf, 0x6f, 0x1a, 0xf2, 0x8c, 0xd5, 0x07, 0x4c,
0x9d, 0xa0, 0x1e, 0xbd, 0xc1, 0xfa, 0x67, 0xb8, 0x24, 0xb9, 0xd1, 0xcf, 0x6c,
0x39, 0x4b, 0xf8, 0x0d, 0xea, 0xca, 0x88, 0x75, 0xec, 0x74, 0x28, 0xa3, 0x1d,
0xc4, 0x1c, 0x88, 0x30, 0x5b, 0x76, 0x93, 0x38, 0xcb, 0xfb, 0x9d, 0x36, 0xaa,
0xbe, 0x75, 0xf7, 0x39, 0x94, 0x65, 0x9b, 0x43, 0x8a, 0x97, 0x1c, 0x6b, 0x1c,
0xa2, 0x2b, 0x72, 0x22, 0xd0, 0x66, 0x8b, 0xf5, 0xda, 0xe9, 0xe0, 0xcb, 0xcb,
0xcf, 0xf9, 0x4e, 0x3c, 0xe7, 0x74, 0x3c, 0xa4, 0x2d, 0x64, 0x4a, 0x68, 0xaf,
0x5a, 0x06, 0x23, 0xa6, 0x9d, 0x59, 0x94, 0x44, 0x0f, 0x70, 0xdc, 0xe9, 0xbb,
0xa8, 0xeb, 0x50, 0x30, 0x8a, 0x8f, 0x8c, 0xff, 0xef, 0xdd, 0xd2, 0x62, 0xbd,
0xff, 0xb4, 0xc5, 0xac, 0xb5, 0x17, 0x1b, 0xe4, 0xe0, 0x60, 0xfb, 0xf9, 0xf9,
0x86, 0xaa, 0xcb, 0x4e, 0xb6, 0x4b, 0x43, 0x96, 0xfd, 0x82, 0x3d, 0x25, 0x37,
0x80, 0x1b, 0x1d, 0x37, 0x82, 0x0d, 0xe1, 0x80, 0x63, 0x94, 0x43, 0xc2, 0xac,
0x58, 0xb0, 0xd9, 0xb2, 0x09, 0xbc, 0x61, 0x66, 0xb4, 0xc3, 0x31, 0x27, 0xd4,
0xac, 0x1f, 0xe1, 0x9d, 0x3e, 0x81, 0x39, 0x5b, 0x1c, 0xbf, 0x06, 0x85, 0x94,
0x5c, 0x5a, 0x51, 0xe9, 0x50, 0xe5, 0x40, 0xf6, 0xa5, 0xf9, 0x42, 0x42, 0xbb,
0xc1, 0x67, 0x9c, 0xfc, 0x1d, 0x03, 0xd7, 0x26, 0x16, 0xfc, 0xd9, 0x60, 0x6c,
0x3c, 0xdf, 0xb0, 0xb1, 0xe3, 0x02, 0xf5, 0xa4, 0x7a, 0x74, 0x62, 0x86, 0x4e,
0x0c, 0xf8, 0xf4, 0xed, 0xed, 0x49, 0x2b, 0xfd, 0xdb, 0x0f, 0x23, 0x16, 0xa8,
0xde, 0x29, 0xe7, 0xb3, 0x8b, 0x72, 0x83, 0x55, 0x5d, 0x88, 0x74, 0xca, 0x61,
0xe5, 0xde, 0xd6, 0x9f, 0x60, 0x47, 0x70, 0x29, 0xf8, 0x17, 0xf8, 0x3e, 0xec,
0x6d, 0xdc, 0x74, 0xf8, 0x4d, 0xfb, 0x6d, 0xf4, 0x3d, 0x4b, 0xce, 0x39, 0x39,
0x81, 0x65, 0x60, 0x99, 0x53, 0xf4, 0xac, 0xa9, 0x6a, 0xda, 0xec, 0x32, 0x70,
0x62, 0xfc, 0x88, 0x1f, 0x95, 0xe9, 0xe1, 0xb4, 0xc0, 0xe9, 0x9b, 0xd3, 0x77,
0xa7, 0x3e, 0xc6, 0x2c, 0xf0, 0x64, 0xd0, 0x6f, 0x2f, 0xb9, 0xa8, 0xde, 0xe3,
0x58, 0x0e, 0xae, 0x24, 0xdb, 0x22, 0xf6, 0x3a, 0x2a, 0x67, 0xfd, 0x95, 0x74,
0x78, 0xf8, 0x0e, 0x31, 0x14, 0x52, 0x8a, 0x55, 0xa8, 0x8d, 0xc9, 0xf9, 0x49,
0x73, 0xe1, 0x28, 0xc6, 0xce, 0xf2, 0x7c, 0x96, 0x55, 0xb4, 0x6f, 0xcc, 0x12,
0xd3, 0x4b, 0xe2, 0xc2, 0xbe, 0xc6, 0x5e, 0x29, 0x0b, 0x15, 0xf0, 0x8b, 0xf6,
0x19, 0xa6, 0xa5, 0x2f, 0x8d, 0xb7, 0x49, 0x19, 0x9b, 0x27, 0x1b, 0x27, 0x77,
0xd5, 0x5a, 0xb1, 0xe2, 0x0f, 0xc6, 0xa3, 0x61, 0x5e, 0x6c, 0x72, 0xfa, 0xc9,
0xf4, 0x9f, 0xab, 0x62, 0xb3, 0x60, 0xb9, 0xf2, 0x02, 0x18, 0x3f, 0x94, 0xcf,
0x17, 0xad, 0x28, 0xf2, 0x8d, 0xdf, 0x52, 0xf4, 0x3a, 0x3a, 0xa9, 0x0a, 0x59,
0xf6, 0x43, 0x41, 0xa9, 0xe2, 0x65, 0x8d, 0x05, 0x9b, 0x2d, 0x31, 0xd9, 0x36,
0x4a, 0xa5, 0xd2, 0x99, 0x43, 0xe6, 0xa6, 0x52, 0x72, 0xea, 0xc7, 0xb4, 0x3b,
0x65, 0x83, 0x7a, 0x8f, 0xc6, 0x9a, 0x76, 0x59, 0x47, 0x55, 0xc7, 0xab, 0x0e,
0xc7, 0xa6, 0x17, 0x5d, 0xc5, 0xdd, 0x97, 0xba, 0x1f, 0x74, 0x67, 0x1b, 0x9d,
0xba, 0x15, 0x7d, 0x0b, 0x07, 0x4e, 0x0e, 0x14, 0x16, 0x4c, 0xfd, 0x81, 0x88,
0xaf, 0xb3, 0xf2, 0xe8, 0x44, 0x64, 0x0d, 0xb7, 0x23, 0x13, 0xcd, 0x02, 0x49,
0xdf, 0x5a, 0xd3, 0x39, 0x54, 0x73, 0x7d, 0x3c, 0xb6, 0x54, 0xf4, 0x8d, 0xbd,
0x28, 0xe6, 0x22, 0x39, 0x05, 0x06, 0xa4, 0x2e, 0xce, 0x0c, 0xd4, 0xad, 0x6b,
0xfe, 0xde, 0xda, 0x2a, 0x76, 0xcf, 0x3b, 0x20, 0x51, 0x05, 0x4e, 0x1d, 0xd2,
0x87, 0x29, 0xdd, 0x9d, 0x62, 0x9e, 0xc9, 0x6c, 0xa4, 0x5b, 0xc9, 0x8e, 0x75,
0xd3, 0x31, 0xd9, 0xbc, 0x03, 0xc3, 0x5e, 0x38, 0xc7, 0xda, 0xc2, 0x19, 0xcb,
0xe5, 0x51, 0xc6, 0x37, 0x3a, 0x5a, 0x57, 0x9c, 0xc8, 0x9b, 0x52, 0xb9, 0xe8,
0xab, 0xe1, 0x76, 0xc9, 0x53, 0xed, 0x3a, 0xd3, 0xfd, 0xd2, 0xd5, 0xf1, 0x1f,
0x13, 0x0e, 0x25, 0xae, 0x8c, 0x77, 0x4b, 0x58, 0x6f, 0x0a, 0xa6, 0xea, 0x2b,
0xda, 0x92, 0xaf, 0x24, 0xef, 0xf5, 0x68, 0x4b, 0x33, 0xa6, 0x1d, 0x4f, 0x77,
0x5e, 0xa2, 0xcf, 0x9d, 0x0c, 0xf6, 0x3f, 0x82, 0xdc, 0xb9, 0x11, 0xbc, 0xec,
0x30, 0x0b, 0xdf, 0x6c, 0xb1, 0x2a, 0xb2, 0x23, 0x34, 0x48, 0xee, 0xa2, 0x5d,
0x48, 0x73, 0x58, 0xa3, 0xd2, 0x6a, 0xfd, 0x08, 0xbb, 0x83, 0x6e, 0x90, 0xbf,
0x2b, 0x3f, 0xa1, 0xe0, 0x57, 0x8e, 0xab, 0xbb, 0x6a, 0x36, 0x98, 0x5a, 0xea,
0x37, 0x9a, 0x46, 0x9b, 0x36, 0x99, 0x2e, 0x37, 0xa7, 0xd7, 0x3c, 0x32, 0x7a,
0xb6, 0x6d, 0x36, 0x8d, 0x36, 0x86, 0xcf, 0x16, 0x63, 0x86, 0x71, 0x73, 0x99,
0xff, 0x13, 0x2f, 0xbf, 0xbb, 0x20, 0xaf, 0x04, 0x87, 0x62, 0x98, 0x2d, 0x37,
0x6b, 0xca, 0x89, 0x47, 0xd5, 0x0e, 0x62, 0x55, 0xac, 0x54, 0x50, 0x9e, 0x3a,
0xa7, 0xe0, 0x48, 0xe1, 0x16, 0xd3, 0x56, 0x53, 0x27, 0x6b, 0x9b, 0xe9, 0x25,
0x87, 0x55, 0xc9, 0x10, 0x9e, 0x2f, 0xab, 0x47, 0x9d, 0xc0, 0xd3, 0x03, 0x3b,
0x97, 0xf4, 0x44, 0xc0, 0x09, 0x66, 0xcb, 0x0d, 0xf6, 0x5c, 0xe4, 0x0f, 0x9d,
0x8c, 0xed, 0x8c, 0x22, 0xc3, 0x64, 0xa9, 0x3b, 0x4d, 0x0c, 0x71, 0x32, 0xe1,
0x1d, 0xc6, 0x6b, 0x41, 0x69, 0xac, 0x2c, 0x84, 0x14, 0x3c, 0x62, 0x8d, 0xe5,
0x5f, 0xd0, 0xed, 0x4e, 0x08, 0xb1, 0x39, 0x9a, 0xc2, 0x57, 0xd1, 0xbb, 0x7f,
0x76, 0x23, 0xd3, 0x4d, 0x33, 0x27, 0x34, 0xc0, 0x53, 0xa0, 0xb5, 0xc1, 0x1e,
0x8c, 0x2c, 0x6b, 0x99, 0x1a, 0xbe, 0xcb, 0xb4, 0x67, 0x68, 0x1c, 0x73, 0x13,
0xf1, 0x4f, 0x64, 0x24, 0x5f, 0x81, 0xdd, 0x59, 0x6b, 0x91, 0x08, 0x08, 0xd7,
0x57, 0xf5, 0x50, 0x33, 0x09, 0xf3, 0x08, 0xda, 0xb8, 0xf2, 0xd8, 0x92, 0xb8,
0x37, 0x84, 0xb3, 0xe1, 0x8e, 0x31, 0x99, 0xf0, 0x07, 0xf8, 0xc3, 0xf8, 0xf7,
0x58, 0x74, 0x6a, 0x74, 0x2a, 0x3d, 0xf5, 0x37, 0xca, 0x71, 0xd5, 0x48, 0xea,
0x68, 0xea, 0xa2, 0x55, 0xab, 0x56, 0xe1, 0xd2, 0x0e, 0xa7, 0x41, 0xd3, 0xab,
0xd3, 0xa7, 0x85, 0xcc, 0x0e, 0x09, 0x0f, 0x89, 0x0b, 0xb9, 0x95, 0x81, 0xca,
0x7c, 0xce, 0xd6, 0x86, 0xec, 0xcb, 0x1c, 0xcd, 0xbc, 0x9c, 0xb9, 0x3f, 0xc4,
0x37, 0xab, 0x25, 0xeb, 0x79, 0x16, 0x24, 0x7b, 0x3c, 0x64, 0x07, 0x7d, 0x32,
0xe8, 0xdb, 0x86, 0x3e, 0xc9, 0xfe, 0x95, 0x3d, 0x35, 0x87, 0x99, 0x13, 0x13,
0x7a, 0x2c, 0x67, 0x4e, 0xaa, 0x27, 0xdd, 0x64, 0xea, 0x0a, 0xad, 0xcd, 0x3d,
0x1c, 0x6a, 0xc9, 0xa5, 0x70, 0x3e, 0x87, 0xb6, 0x71, 0x16, 0x23, 0x5d, 0xf3,
0x70, 0xc8, 0x91, 0x3c, 0xab, 0xfc, 0x64, 0x24, 0x29, 0x5f, 0x93, 0x5f, 0x84,
0x14, 0x23, 0xcb, 0x91, 0xd3, 0xb9, 0x11, 0x5c, 0x76, 0x51, 0x0e, 0xd7, 0xc4,
0xad, 0xe1, 0x1e, 0x42, 0xde, 0xe4, 0xde, 0x47, 0xe6, 0xf2, 0xa4, 0x3c, 0x31,
0x4f, 0xcd, 0x7b, 0x87, 0x34, 0xf2, 0x3e, 0x23, 0x37, 0xf1, 0xf6, 0xf0, 0xae,
0xf3, 0xbe, 0xf3, 0x54, 0x05, 0x63, 0x05, 0x6f, 0x0a, 0x8a, 0xf9, 0x1b, 0xf9,
0x7f, 0x84, 0xd9, 0x08, 0xa6, 0x08, 0x7c, 0x04, 0x2a, 0xc1, 0x87, 0xb0, 0x11,
0xc1, 0x0e, 0xc1, 0x1c, 0x21, 0x44, 0xb8, 0x4c, 0x58, 0x2b, 0x3c, 0xa6, 0x3d,
0x28, 0x7c, 0x22, 0xbc, 0x23, 0xac, 0x32, 0xbd, 0x12, 0xbe, 0x16, 0x7a, 0x17,
0x06, 0x17, 0x46, 0xa2, 0xb0, 0xe1, 0xaa, 0xc2, 0x23, 0x85, 0x3c, 0x54, 0x31,
0x6a, 0x9f, 0xd8, 0xc8, 0xd6, 0xa1, 0x7c, 0x45, 0xad, 0xa8, 0x44, 0x11, 0x55,
0x54, 0x28, 0xaa, 0x12, 0x69, 0x45, 0x50, 0xdb, 0xb1, 0x88, 0x4f, 0xb0, 0xbf,
0xc0, 0xb7, 0xd0, 0x47, 0x18, 0xd7, 0x84, 0x68, 0xf1, 0x23, 0x46, 0x3c, 0x7c,
0x98, 0xfb, 0x5a, 0x2f, 0x65, 0x11, 0xe5, 0x8f, 0x93, 0x6f, 0xb7, 0xe7, 0xca,
0x2b, 0xe4, 0x9b, 0x53, 0x0e, 0xca, 0xb7, 0xcb, 0x8f, 0xcb, 0x4f, 0xc8, 0xaf,
0x8a, 0x1b, 0x73, 0xce, 0x63, 0xef, 0xc8, 0xef, 0xcb, 0xdf, 0xc8, 0x3f, 0x60,
0x77, 0x52, 0xad, 0xd9, 0x33, 0xcb, 0x69, 0xe5, 0xcb, 0xca, 0xc1, 0x14, 0x33,
0x7b, 0xb8, 0xbc, 0xb0, 0xbc, 0xaf, 0x7a, 0x37, 0xab, 0x8a, 0x7f, 0xa5, 0xdc,
0x53, 0xd3, 0x56, 0x6e, 0xb6, 0x2c, 0x4a, 0xdd, 0x82, 0xca, 0x65, 0xb7, 0x69,
0x7e, 0x4e, 0xb4, 0x61, 0x8a, 0x31, 0x36, 0x5e, 0x51, 0xad, 0x50, 0x47, 0xaf,
0x55, 0x54, 0x70, 0x64, 0x84, 0x73, 0x8a, 0x33, 0x8a, 0x17, 0x0a, 0xa9, 0xe2,
0x8b, 0xe2, 0x9b, 0x62, 0x32, 0xd8, 0x9b, 0x2d, 0x79, 0x95, 0x1e, 0x04, 0xbc,
0x30, 0xb5, 0xe2, 0xa6, 0xb0, 0x51, 0xaa, 0xad, 0xd8, 0x54, 0x01, 0x13, 0xef,
0xaa, 0x30, 0x5b, 0x18, 0x98, 0x65, 0x19, 0xcf, 0x2a, 0x5c, 0x50, 0xdf, 0x2a,
0x7e, 0xb8, 0x3d, 0xaf, 0x10, 0x54, 0x9b, 0x2d, 0x9e, 0x99, 0xcc, 0x4c, 0x61,
0x65, 0x5b, 0xe5, 0x8a, 0x08, 0x7e, 0xfb, 0x92, 0x4a, 0x4c, 0x15, 0xb6, 0x2a,
0xaa, 0x0a, 0x5e, 0x76, 0x25, 0xeb, 0xb1, 0xb1, 0xab, 0x8a, 0x9c, 0xbd, 0xba,
0x2a, 0xd3, 0x35, 0xdf, 0x8a, 0x4d, 0xe0, 0x20, 0x6c, 0x09, 0xa1, 0xd5, 0x3f,
0xab, 0xb4, 0x39, 0x66, 0xcb, 0x34, 0xa5, 0xc7, 0x84, 0x6a, 0xaf, 0x54, 0xd6,
0x0d, 0x9e, 0xe0, 0x23, 0x95, 0x61, 0xca, 0x4c, 0xe5, 0xec, 0x25, 0x5a, 0xa2,
0x0f, 0xe7, 0x29, 0xea, 0x15, 0x07, 0x9a, 0xb7, 0x4e, 0x19, 0xad, 0x9b, 0xaa,
0x9a, 0xab, 0xda, 0x9e, 0xfc, 0xdd, 0xa7, 0x8a, 0xdf, 0x9d, 0xb3, 0x3f, 0xe1,
0x65, 0x8e, 0x6e, 0x36, 0x44, 0x9d, 0x06, 0xa1, 0xf0, 0x72, 0x49, 0x1d, 0x24,
0x39, 0x7e, 0x99, 0xda, 0x61, 0x66, 0x12, 0xaf, 0x12, 0xf5, 0x23, 0xe1, 0xdf,
0xd9, 0x4f, 0x34, 0x59, 0xd5, 0x33, 0x0a, 0xd6, 0x11, 0x01, 0x98, 0xc4, 0x6d,
0x1c, 0xb5, 0x51, 0x3d, 0x8f, 0xdb, 0xfe, 0xe3, 0x2e, 0x36, 0xa6, 0xe6, 0x8a,
0x7a, 0x6e, 0xb5, 0x2b, 0x78, 0xb7, 0xdb, 0x18, 0xbc, 0x22, 0x80, 0x09, 0x2b,
0x57, 0x3f, 0x51, 0x43, 0xaa, 0xf5, 0xe8, 0xd5, 0x02, 0xbb, 0x82, 0xae, 0x82,
0x4b, 0xb0, 0xa3, 0x28, 0x8f, 0xea, 0x77, 0xb4, 0x9a, 0xea, 0x99, 0x84, 0x35,
0x82, 0xcd, 0x13, 0x63, 0xb8, 0x56, 0x5d, 0x19, 0x7c, 0x5d, 0xc8, 0xe0, 0x31,
0x6b, 0x3a, 0x83, 0x71, 0xc2, 0x0f, 0xfe, 0xc9, 0x9a, 0x67, 0x2c, 0xb1, 0xe6,
0x1a, 0xea, 0x19, 0x7e, 0x1d, 0x8f, 0xa4, 0xd9, 0x13, 0x96, 0x5c, 0x66, 0xb6,
0x74, 0x16, 0x94, 0x0a, 0x23, 0x84, 0x0f, 0x34, 0x66, 0x4b, 0x6b, 0xf5, 0x20,
0xde, 0xa0, 0x79, 0xa6, 0x69, 0x65, 0x63, 0x70, 0xc7, 0xd8, 0x11, 0x84, 0xe0,
0x9a, 0xcf, 0x4c, 0xa3, 0x70, 0x09, 0x41, 0x52, 0xe3, 0x4a, 0x38, 0x9a, 0xe7,
0x5a, 0x3b, 0x19, 0xf4, 0xa1, 0xb5, 0xc8, 0xda, 0xb1, 0x9a, 0x7a, 0x91, 0x4d,
0xad, 0x7a, 0xce, 0x45, 0xd1, 0xce, 0x1f, 0x3c, 0xc2, 0xd2, 0xda, 0x68, 0xf8,
0x30, 0xe4, 0x1f, 0x4a, 0x8f, 0xa4, 0xb2, 0x56, 0x5c, 0x37, 0x3e, 0xf8, 0x77,
0xdd, 0x12, 0xdf, 0x1d, 0x75, 0x77, 0xea, 0x1c, 0xeb, 0x33, 0xe9, 0xfc, 0x5a,
0x7a, 0xbe, 0x63, 0x24, 0xa1, 0x3e, 0xb2, 0xfe, 0x51, 0xf1, 0x28, 0xea, 0x59,
0x71, 0x5a, 0x7d, 0x5f, 0x3d, 0x2b, 0x72, 0x77, 0xfd, 0x9e, 0xfa, 0xb1, 0xec,
0x53, 0xf5, 0xa5, 0xa5, 0x8e, 0xa5, 0x75, 0x5a, 0x9d, 0xf6, 0xbf, 0xb8, 0xeb,
0xb4, 0x87, 0xb4, 0x50, 0xdd, 0x4b, 0xad, 0x77, 0xd9, 0x61, 0x79, 0x9f, 0xce,
0x50, 0x6a, 0x6e, 0x6d, 0xd1, 0xa5, 0xc8, 0x5f, 0xcb, 0x43, 0xcb, 0x9b, 0xc3,
0x5d, 0xa2, 0x56, 0x95, 0x2b, 0xc4, 0xf6, 0xfa, 0x85, 0x7a, 0x80, 0x9a, 0x4b,
0x0b, 0xd7, 0xc7, 0xea, 0xe3, 0xf4, 0x1b, 0x74, 0x72, 0x52, 0x8b, 0xbe, 0x57,
0xbf, 0x4d, 0xf7, 0xd0, 0x75, 0x4e, 0x64, 0x42, 0x7d, 0x6f, 0x03, 0xb5, 0xa2,
0xb9, 0xe2, 0xfa, 0x0f, 0x28, 0x82, 0x52, 0x71, 0xb3, 0xa1, 0xbb, 0xe2, 0x70,
0x85, 0x73, 0xa3, 0x6d, 0xa3, 0x93, 0xfb, 0xdd, 0x06, 0xb6, 0x68, 0x56, 0xe3,
0xb9, 0xd8, 0x2b, 0xe8, 0x0d, 0x8d, 0x36, 0xca, 0xd9, 0x4e, 0x3a, 0xa2, 0x02,
0x79, 0x48, 0x65, 0x2f, 0x7e, 0x29, 0xdf, 0xd2, 0xb4, 0xb7, 0xe9, 0x44, 0xd3,
0xf5, 0x36, 0xf7, 0x66, 0xbf, 0xe6, 0xdc, 0x6a, 0x67, 0xcd, 0x9a, 0x66, 0x5b,
0x83, 0x69, 0x38, 0x71, 0xc6, 0xae, 0xe6, 0xe5, 0xc4, 0x07, 0x5a, 0x54, 0xcd,
0x41, 0xd4, 0x78, 0x5a, 0x56, 0xe0, 0x8f, 0xe6, 0xd9, 0x83, 0x87, 0x6a, 0xad,
0x6b, 0xa0, 0x5e, 0xca, 0x90, 0x5b, 0x42, 0x44, 0x4b, 0x58, 0xcd, 0x11, 0x79,
0x66, 0x0b, 0xbf, 0x66, 0x66, 0xed, 0xfa, 0x16, 0x97, 0xba, 0x93, 0x2d, 0x2f,
0x6a, 0xb7, 0xb6, 0x4c, 0xac, 0xc9, 0xd6, 0x8f, 0xa1, 0x1b, 0x5a, 0x4f, 0xb6,
0x6e, 0x56, 0x04, 0x69, 0xb5, 0x0b, 0xc0, 0x6d, 0x26, 0x3e, 0xb6, 0x2d, 0xab,
0xed, 0x3f, 0xf5, 0x3e, 0xad, 0xeb, 0x0d, 0xb3, 0xd7, 0xdf, 0xa5, 0x4d, 0x06,
0xfb, 0x00, 0x07, 0x5f, 0x43, 0x81, 0xe1, 0xb1, 0xee, 0xad, 0xbe, 0x59, 0x74,
0x82, 0xf9, 0x44, 0xf7, 0x5c, 0x97, 0x4b, 0xc4, 0xb7, 0xbd, 0xd3, 0x87, 0x34,
0x58, 0xf4, 0x12, 0x03, 0xab, 0xfd, 0x50, 0x53, 0x4d, 0xc7, 0xda, 0x0e, 0x9f,
0xf6, 0xc1, 0x8e, 0xef, 0x85, 0xa3, 0x38, 0xb9, 0xcf, 0x5f, 0xb5, 0x0a, 0x67,
0x7f, 0xf4, 0x43, 0xe2, 0x7c, 0x7e, 0x79, 0x67, 0x67, 0x27, 0x1f, 0xbb, 0xba,
0xf3, 0x86, 0xf0, 0x4e, 0xe6, 0xde, 0xce, 0x6f, 0xb2, 0x47, 0xba, 0xc3, 0x9d,
0x17, 0x28, 0x43, 0xc4, 0xfd, 0x7c, 0xa9, 0x8d, 0x53, 0xce, 0xb6, 0x96, 0xe7,
0x2d, 0x57, 0x49, 0x73, 0xdc, 0x67, 0x04, 0x05, 0x74, 0xe1, 0x6a, 0xe1, 0x5d,
0x8e, 0x24, 0x14, 0xa1, 0x86, 0xf0, 0x9a, 0x54, 0x2c, 0xc2, 0xb2, 0xe6, 0x75,
0x4d, 0xe4, 0xf8, 0x56, 0x46, 0x17, 0x89, 0xf5, 0xb6, 0x35, 0xbd, 0x0b, 0xda,
0x7e, 0x25, 0x71, 0x1f, 0x70, 0x08, 0xd0, 0x76, 0x99, 0xba, 0x76, 0x74, 0x1d,
0xe9, 0x3a, 0xd6, 0xf5, 0x67, 0xd7, 0xa3, 0x2e, 0x3e, 0xf5, 0xef, 0xae, 0xf9,
0xd2, 0xa0, 0x76, 0xb3, 0xe5, 0x5b, 0x97, 0x47, 0xbb, 0xbc, 0xec, 0x2a, 0x29,
0xb8, 0x3b, 0xa8, 0x3b, 0xa6, 0x9b, 0xd3, 0x0d, 0x46, 0x16, 0x8b, 0xc9, 0x28,
0x60, 0x0a, 0x1b, 0x3b, 0x85, 0x71, 0xbe, 0x7b, 0x5f, 0xf7, 0xd9, 0xee, 0x33,
0xdd, 0x16, 0xd2, 0x12, 0xc1, 0x35, 0xd7, 0xed, 0xb4, 0xc7, 0xdd, 0x2f, 0xba,
0xdf, 0x75, 0xcb, 0x0c, 0x21, 0xc6, 0x65, 0xa4, 0xa2, 0x18, 0x46, 0xb7, 0x9d,
0xf1, 0x9b, 0xd1, 0xbe, 0x07, 0xd9, 0xe3, 0xd4, 0x93, 0xdc, 0x03, 0x65, 0x9c,
0x84, 0xef, 0x68, 0xb9, 0xd1, 0xfb, 0xa8, 0xe7, 0x49, 0x8f, 0x5d, 0xef, 0xd7,
0x1e, 0x70, 0xec, 0xec, 0x5e, 0xbf, 0x5e, 0xab, 0xda, 0xe0, 0xc4, 0xe0, 0xde,
0xf5, 0xdc, 0x13, 0xab, 0x2a, 0x80, 0xc4, 0x5e, 0x4c, 0x2f, 0xba, 0x9f, 0xc0,
0xcc, 0x86, 0x34, 0xf5, 0xc6, 0xe0, 0x6c, 0xfa, 0x2c, 0xbd, 0xf6, 0x7d, 0xf9,
0x03, 0xd7, 0xfb, 0xf7, 0x99, 0xda, 0x86, 0x36, 0x0d, 0x3d, 0x1e, 0xf4, 0x1a,
0x7a, 0x38, 0x54, 0xd9, 0x5f, 0xdd, 0x1f, 0x3c, 0x04, 0x1e, 0xa8, 0xcf, 0x9f,
0x0c, 0xfa, 0x27, 0xfb, 0x59, 0x9e, 0x86, 0xa1, 0x45, 0xc3, 0x48, 0xf7, 0xa0,
0xe1, 0x90, 0xfe, 0xd1, 0xc1, 0xdd, 0xc3, 0x2d, 0x03, 0x1d, 0x03, 0x03, 0x03,
0xc3, 0x03, 0xc1, 0x71, 0x1b, 0x07, 0xb6, 0x0d, 0xe4, 0x44, 0x8c, 0x0d, 0x64,
0x20, 0x9f, 0x87, 0x78, 0xa0, 0x02, 0x13, 0x8e, 0x20, 0x56, 0x34, 0xd8, 0x98,
0xa6, 0x99, 0x3a, 0x63, 0xbc, 0xdb, 0x87, 0x05, 0x6e, 0x26, 0xb3, 0x25, 0xc4,
0x64, 0xa2, 0xeb, 0xe8, 0x04, 0xd3, 0x7e, 0xa3, 0xbe, 0xe5, 0x73, 0x57, 0x95,
0x26, 0xcb, 0xc4, 0x35, 0xdd, 0x93, 0x37, 0x99, 0x5c, 0x8b, 0x8e, 0xc4, 0x14,
0x13, 0x0f, 0x12, 0x4b, 0xc5, 0xe3, 0xc4, 0xe8, 0x08, 0x32, 0x69, 0x40, 0x72,
0x47, 0xff, 0x13, 0x62, 0x2a, 0xab, 0xd4, 0xc2, 0x9b, 0xb8, 0x86, 0x2f, 0x06,
0xbc, 0xee, 0x5d, 0x9b, 0xca, 0xf0, 0x87, 0x81, 0xaf, 0x1d, 0xc5, 0xbb, 0x15,
0xbd, 0x45, 0x17, 0x95, 0x46, 0xc8, 0xaf, 0x88, 0x24, 0xf8, 0xf1, 0x88, 0x4a,
0xf1, 0x07, 0xb7, 0xd5, 0xa2, 0x23, 0x10, 0x23, 0xec, 0x0c, 0xba, 0x06, 0xb2,
0x92, 0x3a, 0xee, 0xb6, 0x18, 0xf1, 0xcb, 0x35, 0x04, 0xf2, 0x18, 0x2e, 0x75,
0xbb, 0x0a, 0x89, 0x49, 0xf7, 0x42, 0x1c, 0x73, 0x65, 0x31, 0xa0, 0x24, 0xb3,
0xcb, 0x7a, 0xe7, 0xd3, 0x2e, 0x7b, 0x67, 0xdb, 0xd6, 0xac, 0x85, 0x9b, 0x2d,
0x34, 0x4d, 0x3b, 0x31, 0x57, 0x1c, 0x80, 0x66, 0xd3, 0x7e, 0xa1, 0x93, 0x44,
0x5f, 0xf1, 0x7f, 0xc3, 0xfb, 0x8d, 0x3e, 0x85, 0x3f, 0xf2, 0x82, 0x10, 0x73,
0xc2, 0x5e, 0xa2, 0xf8, 0xc9, 0x8b, 0xdd, 0x9d, 0xf2, 0x19, 0x98, 0x70, 0xc4,
0x63, 0x8c, 0x1e, 0xe3, 0x88, 0xf5, 0xe4, 0xff, 0x41, 0x1d, 0xa0, 0xef, 0xe0,
0xb4, 0xd1, 0x1f, 0x3a, 0xae, 0x9f, 0xe9, 0x00, 0x3e, 0x6d, 0x70, 0xd1, 0xf7,
0x19, 0xc6, 0xe3, 0x57, 0x90, 0xdd, 0x57, 0xc1, 0xf1, 0x87, 0xe2, 0x73, 0x41,
0x55, 0xb6, 0x31, 0x09, 0xba, 0x04, 0x32, 0x3d, 0x9f, 0xb9, 0xc9, 0xfa, 0x0f,
0x5b, 0x63, 0xc8, 0x0c, 0xdb, 0xd9, 0x20, 0x58, 0xf0, 0xb2, 0x84, 0x63, 0x36,
0xbb, 0x9a, 0x8a, 0x6d, 0xee, 0xe8, 0xec, 0x6d, 0xba, 0xe3, 0x27, 0x83, 0xfe,
0xc5, 0x44, 0x07, 0xf2, 0x70, 0x82, 0x6d, 0x02, 0x98, 0xa4, 0x43, 0xe3, 0x12,
0xfc, 0x13, 0xf9, 0x89, 0xaa, 0xc4, 0x0b, 0x09, 0xcf, 0x13, 0x92, 0x13, 0x7f,
0x27, 0xfe, 0xef, 0x3d, 0x25, 0xc2, 0x0e, 0x58, 0x08, 0xfa, 0x28, 0xba, 0x48,
0xa0, 0x81, 0x68, 0xd1, 0xeb, 0xc9, 0x27, 0xc8, 0x8f, 0xec, 0xee, 0xe3, 0x57,
0x83, 0xda, 0x40, 0xad, 0x20, 0x79, 0x63, 0x9f, 0x0e, 0x3c, 0x35, 0x25, 0x69,
0x24, 0x49, 0x32, 0xed, 0xf1, 0x44, 0xad, 0x26, 0x8f, 0x6c, 0x10, 0x37, 0x44,
0x2c, 0xb2, 0xdf, 0x4c, 0x7c, 0xe6, 0x74, 0x95, 0xeb, 0x31, 0xe1, 0x88, 0x1f,
0xa0, 0x8d, 0xd2, 0xd9, 0x52, 0xba, 0xb4, 0x5b, 0xd2, 0x14, 0x73, 0x88, 0xd4,
0x88, 0xb9, 0x42, 0xd1, 0xc0, 0x1c, 0x8b, 0xce, 0x61, 0x76, 0xd3, 0x08, 0xb6,
0x17, 0xa9, 0xa7, 0x67, 0x7a, 0x30, 0x52, 0xdb, 0xbe, 0x76, 0x72, 0x0c, 0xf7,
0x19, 0x8d, 0x8c, 0x2a, 0x06, 0x1a, 0xfe, 0x47, 0xb2, 0x91, 0x19, 0xa9, 0xfb,
0xe9, 0x5a, 0xe8, 0xe6, 0xe4, 0xe6, 0xcb, 0xdc, 0x9f, 0xd2, 0xdc, 0x56, 0xc9,
0xbc, 0xcc, 0x74, 0x66, 0x46, 0xa6, 0x7c, 0x71, 0xcf, 0x84, 0x74, 0xe0, 0xbe,
0xc1, 0xed, 0x04, 0x11, 0x52, 0x4f, 0x66, 0x75, 0x9a, 0x8a, 0x79, 0x4b, 0xef,
0x02, 0x7a, 0x64, 0x68, 0x90, 0xda, 0xba, 0xd8, 0x89, 0x8b, 0x88, 0xd3, 0xda,
0x7f, 0x69, 0x0f, 0x1b, 0x06, 0x11, 0x0b, 0xd8, 0x03, 0xec, 0xb4, 0xb4, 0xe8,
0xb4, 0x4e, 0x77, 0x85, 0xfb, 0xdf, 0xa1, 0x17, 0xd3, 0x12, 0x58, 0xb6, 0xee,
0x20, 0x77, 0x6b, 0xc4, 0x20, 0xe4, 0x3e, 0xdc, 0xec, 0x7a, 0x0d, 0xbe, 0x5c,
0x15, 0xa5, 0x3b, 0xe0, 0x51, 0x14, 0xbc, 0x5e, 0x6b, 0x9f, 0x0e, 0x4e, 0x5f,
0xe2, 0xbe, 0xc9, 0xad, 0x80, 0x89, 0x74, 0xc3, 0xb3, 0x66, 0xd7, 0xfe, 0x5b,
0x9c, 0x51, 0x5f, 0x99, 0x91, 0xb1, 0x74, 0x85, 0xcf, 0xdd, 0xf4, 0xfd, 0xe8,
0x6d, 0xd0, 0x23, 0xd0, 0xfa, 0x16, 0x49, 0xe1, 0xb1, 0x4c, 0xb4, 0x55, 0xa4,
0xd5, 0x3c, 0x1f, 0x63, 0x66, 0x77, 0x66, 0x71, 0x46, 0xaf, 0xef, 0x54, 0xbf,
0xeb, 0x91, 0x71, 0xad, 0x93, 0x41, 0x5f, 0x9c, 0x93, 0x1b, 0xc9, 0x5b, 0xb1,
0x2c, 0x74, 0xf1, 0x8a, 0xc4, 0xe0, 0x37, 0xdd, 0x32, 0x7f, 0x44, 0x36, 0x6b,
0x64, 0x6f, 0x4e, 0x40, 0xf6, 0xd5, 0xec, 0xa7, 0xc4, 0x3c, 0xbf, 0x91, 0xac,
0x21, 0x5f, 0x64, 0x4e, 0x41, 0x6e, 0x11, 0xf7, 0x2b, 0xb2, 0x09, 0xd8, 0x12,
0xa8, 0x25, 0x6e, 0x0a, 0x74, 0xa0, 0x3d, 0x0a, 0xbc, 0x0d, 0x09, 0x6f, 0xbf,
0xc4, 0xd1, 0x06, 0xee, 0x0a, 0x78, 0x14, 0xda, 0x82, 0xd5, 0xd0, 0x16, 0xeb,
0x9b, 0x69, 0xbf, 0x5d, 0x59, 0x34, 0x28, 0xf5, 0x6f, 0x99, 0x6d, 0xc0, 0x72,
0x48, 0x70, 0x60, 0x4e, 0xb0, 0x63, 0xa0, 0x3a, 0xe0, 0x1c, 0xae, 0x89, 0xe3,
0x2d, 0x28, 0xe0, 0x18, 0x62, 0x00, 0x8e, 0x48, 0xf6, 0xd6, 0x23, 0x9b, 0xf3,
0x67, 0xe0, 0xe3, 0xc0, 0x05, 0x9c, 0xa2, 0xe4, 0xab, 0xab, 0x42, 0x57, 0x1d,
0x42, 0x18, 0x91, 0xc3, 0x08, 0x73, 0xd0, 0x15, 0x69, 0x27, 0xb2, 0x39, 0x6f,
0x79, 0xe4, 0xde, 0xfc, 0x05, 0xf9, 0x27, 0x91, 0x47, 0x78, 0xd9, 0xab, 0x6e,
0x20, 0xea, 0xf0, 0x41, 0xbc, 0x24, 0xde, 0x39, 0x9e, 0x5d, 0x81, 0xb3, 0xfb,
0xac, 0xdc, 0xee, 0xfc, 0x58, 0xde, 0x2d, 0xa4, 0x9c, 0xc7, 0x28, 0x38, 0x16,
0xde, 0x13, 0x36, 0x68, 0xf8, 0xdc, 0xf6, 0x46, 0xff, 0x87, 0x4e, 0xdb, 0xb6,
0x40, 0x79, 0x4f, 0x9b, 0xd7, 0xbe, 0x46, 0x30, 0xb3, 0xf0, 0x1d, 0xd1, 0x6c,
0xa9, 0x0a, 0x6f, 0x46, 0x81, 0x84, 0x61, 0x18, 0x14, 0x73, 0x86, 0x30, 0x2a,
0xd9, 0x5b, 0x80, 0x93, 0x21, 0xc5, 0x73, 0x23, 0x4a, 0x70, 0x9f, 0x44, 0x89,
0x45, 0x75, 0x45, 0xed, 0x45, 0xcd, 0x51, 0xd0, 0xa8, 0x32, 0xf2, 0x08, 0xe9,
0xad, 0x9d, 0x5c, 0x3a, 0x8e, 0x4e, 0x87, 0x93, 0x48, 0x6e, 0xc4, 0xc7, 0xe9,
0x53, 0xc2, 0x77, 0xa0, 0x1f, 0x92, 0xbc, 0x1a, 0x60, 0xe1, 0xeb, 0x32, 0xbe,
0xa0, 0x2f, 0x48, 0xc3, 0xa4, 0x75, 0x06, 0x84, 0xd4, 0x84, 0x7f, 0x23, 0x20,
0x13, 0xaa, 0x8b, 0xb3, 0xc3, 0x6f, 0xc7, 0x4e, 0x89, 0x4b, 0x0e, 0xa7, 0x15,
0x4b, 0x4a, 0x4e, 0xaf, 0x71, 0x47, 0xe6, 0x4b, 0x2f, 0xe8, 0x36, 0x11, 0x9b,
0x88, 0xbf, 0x42, 0x27, 0x65, 0xed, 0xa3, 0xe2, 0x49, 0x16, 0xf4, 0x29, 0xe2,
0x97, 0xe8, 0x9f, 0xad, 0x81, 0x0c, 0x9c, 0xe1, 0xa9, 0x2e, 0x07, 0xf2, 0x30,
0xd1, 0x33, 0xe9, 0x25, 0x59, 0x56, 0x1a, 0x18, 0x08, 0x9e, 0x50, 0xd1, 0xf2,
0xd2, 0xae, 0x48, 0x15, 0x22, 0x2d, 0xf4, 0x63, 0xf4, 0x2a, 0x69, 0xaf, 0xf4,
0x28, 0xfa, 0x00, 0xe9, 0x0c, 0xe9, 0x2c, 0xa6, 0x93, 0xb4, 0x35, 0x73, 0xaa,
0x41, 0x45, 0x5b, 0x20, 0x6b, 0x94, 0xd5, 0xcb, 0xfe, 0x94, 0x5d, 0x91, 0xa4,
0x94, 0x61, 0x4b, 0x9f, 0xd2, 0xc1, 0xd8, 0x09, 0xd7, 0xa0, 0x59, 0x53, 0xe6,
0xc7, 0xfb, 0x89, 0x0e, 0x95, 0x7f, 0x2d, 0x13, 0x62, 0x5f, 0xb8, 0x06, 0x62,
0x61, 0x6d, 0x9f, 0xca, 0x62, 0x1d, 0x1a, 0x88, 0x46, 0x9b, 0x03, 0x28, 0xa1,
0x5b, 0x17, 0xac, 0x80, 0x26, 0x82, 0x6d, 0x84, 0x5f, 0xb7, 0x76, 0xb0, 0x7f,
0x22, 0x4f, 0x61, 0x7e, 0xf3, 0xd9, 0xc6, 0xec, 0x63, 0x3a, 0x30, 0x59, 0x36,
0x1f, 0x65, 0xcb, 0x99, 0xa7, 0x59, 0x66, 0xf9, 0x0f, 0x6c, 0xaa, 0x42, 0xa0,
0x98, 0x85, 0xdb, 0xc5, 0x3a, 0x94, 0xb6, 0x36, 0xed, 0xa2, 0xe2, 0x07, 0x71,
0xbb, 0x5b, 0x93, 0x42, 0xa1, 0xd8, 0xaa, 0xd8, 0xc9, 0xbb, 0x57, 0x31, 0xb5,
0xf2, 0x5a, 0x45, 0x7c, 0x55, 0x66, 0x16, 0x3b, 0x33, 0xba, 0xbc, 0xab, 0x42,
0x9d, 0xc6, 0xc3, 0x15, 0x17, 0xb8, 0x4e, 0xbf, 0x99, 0x17, 0x6f, 0x75, 0x19,
0x76, 0x92, 0xe1, 0x9c, 0x33, 0x9e, 0x9d, 0x45, 0xbc, 0x5f, 0xb5, 0xa4, 0xdc,
0x77, 0xda, 0x6b, 0x66, 0x44, 0xaa, 0x7d, 0x39, 0x38, 0xed, 0x85, 0x91, 0x50,
0x9b, 0xdd, 0x33, 0x9f, 0x17, 0x1e, 0xfc, 0x24, 0xe4, 0x1f, 0xe2, 0x96, 0xdc,
0x85, 0x3d, 0x83, 0xb9, 0x4a, 0xcd, 0x12, 0xf1, 0x55, 0xfe, 0x1b, 0x3c, 0x42,
0x65, 0x83, 0x3f, 0xad, 0x9c, 0xae, 0xc2, 0xa9, 0x76, 0xe7, 0x9d, 0xe8, 0xc6,
0xf1, 0xb2, 0xd4, 0xb9, 0x6a, 0x32, 0x8f, 0xa2, 0x59, 0x27, 0x70, 0xaa, 0x9d,
0x57, 0x54, 0xcb, 0xac, 0xc2, 0x62, 0x20, 0x2b, 0x58, 0x43, 0x90, 0x67, 0xcc,
0xbf, 0x20, 0x83, 0xb5, 0x87, 0x7e, 0x34, 0xa3, 0xfc, 0xea, 0x17, 0x4b, 0x6d,
0x98, 0x93, 0x41, 0x5f, 0x58, 0x4f, 0x48, 0xa8, 0xab, 0x3f, 0x5a, 0xff, 0xa2,
0x3e, 0x57, 0x1b, 0xa7, 0xad, 0xa6, 0x53, 0xb5, 0x35, 0xa5, 0x9a, 0xd2, 0x6f,
0xfa, 0xdb, 0xfa, 0x3e, 0xfd, 0x0f, 0xed, 0x16, 0xf4, 0x6a, 0xcd, 0xb7, 0xc8,
0xcb, 0x91, 0x9f, 0x11, 0x28, 0xdd, 0x7c, 0x5d, 0x74, 0x7b, 0x5c, 0xfa, 0x8a,
0x36, 0x0d, 0xee, 0x7a, 0xee, 0x32, 0xf1, 0x49, 0x11, 0x01, 0x22, 0xe8, 0x37,
0x35, 0xbc, 0x6e, 0xb8, 0x57, 0xd1, 0x93, 0x72, 0xa2, 0xf4, 0x63, 0x8a, 0x30,
0xe2, 0x3a, 0x7c, 0x79, 0xd3, 0xba, 0xa6, 0xe9, 0xb1, 0x40, 0x33, 0xa9, 0xf9,
0x2b, 0x2e, 0x99, 0x7f, 0xb0, 0xd0, 0xd3, 0xab, 0x37, 0xba, 0xac, 0x50, 0x2f,
0xbc, 0xe3, 0xf6, 0xba, 0x77, 0x0f, 0x7c, 0x25, 0xf1, 0xe0, 0x84, 0x9b, 0x10,
0xd3, 0xa6, 0x10, 0x0f, 0xb6, 0x82, 0xda, 0x63, 0x74, 0x59, 0x98, 0xdf, 0xba,
0x25, 0xed, 0x1e, 0x0d, 0xc8, 0x86, 0xe7, 0x9a, 0x15, 0x3a, 0x63, 0xc7, 0xba,
0x8e, 0xae, 0x8e, 0xce, 0x8e, 0xe0, 0x46, 0x82, 0xf4, 0x38, 0xda, 0x12, 0x8d,
0x23, 0xbd, 0x89, 0x78, 0x89, 0x86, 0x06, 0x36, 0x77, 0xbe, 0x6c, 0xe2, 0x34,
0xe5, 0x36, 0x5d, 0x40, 0xbf, 0x27, 0xca, 0x48, 0x7f, 0x87, 0x3b, 0x4b, 0x0b,
0xa4, 0xbf, 0xd1, 0xd8, 0xae, 0xed, 0x2d, 0x51, 0xf9, 0x1e, 0x24, 0x43, 0xcb,
0xc3, 0x89, 0xba, 0x2e, 0xdf, 0xa0, 0xd5, 0xfa, 0x34, 0xac, 0xd4, 0x1f, 0xc9,
0x3e, 0xd0, 0x36, 0x8b, 0xc5, 0xd5, 0x87, 0x11, 0x7f, 0x48, 0xe6, 0xe1, 0x7a,
0xbb, 0xc4, 0x5d, 0xab, 0x8c, 0x3e, 0x8e, 0x63, 0xa9, 0xa7, 0xf4, 0x3b, 0x49,
0x0b, 0xbb, 0xef, 0xb4, 0x7f, 0x6f, 0xbb, 0xd5, 0xf1, 0xbc, 0xf5, 0x18, 0x3e,
0x51, 0x9f, 0x47, 0xca, 0xd1, 0xdf, 0xeb, 0x26, 0xe8, 0xac, 0xc2, 0x97, 0xb7,
0x41, 0x89, 0xb3, 0x35, 0x48, 0x63, 0x9c, 0x71, 0x4a, 0xf9, 0xbf, 0xa8, 0x5e,
0x63, 0x61, 0xcc, 0x46, 0x23, 0xbb, 0x27, 0x57, 0x7f, 0x36, 0xb9, 0x99, 0xe7,
0xd9, 0x63, 0x66, 0xae, 0xec, 0xf9, 0xd4, 0xdd, 0x12, 0x13, 0x6d, 0x3c, 0x64,
0x3c, 0x1c, 0xd3, 0x15, 0x53, 0x61, 0x28, 0x4a, 0xb6, 0x71, 0x59, 0x9c, 0xbc,
0x9f, 0x38, 0x19, 0xf4, 0x5f, 0xcd, 0xc6, 0xcb, 0x16, 0x2e, 0xd9, 0x8f, 0x3a,
0x95, 0x5f, 0x81, 0x4a, 0x6e, 0x5f, 0x12, 0x92, 0x98, 0xa9, 0x5a, 0x52, 0xb0,
0x6c, 0x6a, 0x66, 0x42, 0x1f, 0xa5, 0xaf, 0xbc, 0x0f, 0xd6, 0xe7, 0xd4, 0x57,
0xd5, 0x7b, 0xb9, 0xd7, 0x6f, 0xc0, 0xd4, 0xfb, 0x6d, 0xc8, 0x3c, 0xe8, 0xd9,
0xbf, 0x35, 0x16, 0x84, 0x85, 0x0c, 0x6c, 0x8f, 0xb5, 0xef, 0xdf, 0x3d, 0xf4,
0x7e, 0xf0, 0xcb, 0xe0, 0x4a, 0xe3, 0x9a, 0xfe, 0xc3, 0x1a, 0x67, 0xe1, 0xc3,
0x42, 0x75, 0xc1, 0xef, 0x9a, 0x20, 0xc2, 0x88, 0x40, 0x23, 0xfc, 0x28, 0x58,
0xa4, 0xf9, 0xbb, 0xc6, 0x4a, 0x78, 0x0b, 0x91, 0x93, 0xf1, 0xa4, 0xac, 0x0f,
0x86, 0x81, 0xfb, 0x11, 0x1f, 0x10, 0xb3, 0x50, 0x77, 0x0d, 0x47, 0xda, 0xa2,
0x0d, 0x47, 0x6d, 0x46, 0x65, 0xa5, 0x6d, 0x71, 0xed, 0xcf, 0x12, 0x30, 0xc1,
0x39, 0x2d, 0xa9, 0x34, 0x94, 0x8c, 0x2a, 0xdb, 0x2b, 0x8b, 0x91, 0x31, 0xdc,
0xce, 0x05, 0x60, 0x89, 0x3d, 0xf0, 0xa2, 0x84, 0x3b, 0x85, 0xb7, 0x0b, 0xcd,
0x96, 0x05, 0xa2, 0xd9, 0xd4, 0x3d, 0xd8, 0x83, 0x8c, 0x2f, 0xc9, 0x3a, 0x86,
0x6b, 0xff, 0x2d, 0x46, 0xb0, 0x78, 0x5b, 0xf0, 0x66, 0xec, 0x5b, 0x31, 0x86,
0xdf, 0x95, 0x60, 0xb6, 0xec, 0x71, 0x23, 0xea, 0xec, 0x33, 0x2f, 0x31, 0x67,
0x32, 0x0f, 0xe1, 0xea, 0xf1, 0xbe, 0x88, 0xf2, 0x98, 0xdf, 0xda, 0x83, 0x86,
0xfd, 0x86, 0x9b, 0x10, 0x0f, 0xc7, 0x22, 0xcd, 0x31, 0xbe, 0xcb, 0xec, 0x9f,
0x38, 0x1f, 0xdf, 0xb1, 0x88, 0xf6, 0x94, 0x7d, 0x28, 0x6c, 0xde, 0xfa, 0x0a,
0x56, 0xe6, 0x48, 0xc6, 0x28, 0x51, 0x4f, 0xfc, 0xa9, 0x7d, 0xde, 0xf6, 0x44,
0xf2, 0x1a, 0xbd, 0x5b, 0x9a, 0xad, 0x37, 0x41, 0x1e, 0xa3, 0x77, 0x91, 0xfe,
0xe2, 0x7d, 0x91, 0xfc, 0x92, 0xdc, 0x44, 0xa3, 0x49, 0xed, 0xa4, 0xdb, 0x6e,
0x1c, 0xd2, 0x3a, 0x5b, 0xef, 0xd9, 0xcf, 0x89, 0xd1, 0x52, 0x57, 0xe2, 0x1a,
0x51, 0x09, 0x51, 0xd3, 0xf6, 0x42, 0x92, 0x6e, 0x30, 0x83, 0x02, 0x0c, 0x97,
0x74, 0xae, 0xba, 0x5a, 0xc3, 0x4b, 0xfd, 0x0d, 0x1a, 0x8c, 0xa8, 0xd6, 0x15,
0x88, 0x27, 0x83, 0x7e, 0x04, 0xd1, 0x62, 0x3f, 0x42, 0x9f, 0x3b, 0xe5, 0xed,
0xcc, 0xfd, 0xf6, 0x36, 0xb4, 0x93, 0x65, 0x3f, 0xdd, 0xcc, 0x15, 0xc7, 0x5d,
0x13, 0x49, 0x49, 0x10, 0x7f, 0x82, 0x75, 0xfb, 0x0c, 0xc4, 0x31, 0xdd, 0x16,
0xe2, 0xf6, 0x94, 0xa3, 0x90, 0x6a, 0x88, 0x46, 0x3a, 0xc4, 0x7c, 0x02, 0x67,
0xa1, 0xb6, 0xc3, 0xd3, 0xdb, 0xca, 0x98, 0x2a, 0x5d, 0x16, 0x44, 0x6a, 0xb8,
0x18, 0xb6, 0x7b, 0x46, 0x27, 0x49, 0x17, 0xf2, 0x35, 0x91, 0x8b, 0x8a, 0x45,
0xf5, 0xb9, 0x14, 0x8b, 0x7f, 0xe1, 0x20, 0x6a, 0x47, 0xe1, 0xb3, 0x96, 0xb7,
0x78, 0x86, 0x20, 0xa1, 0x32, 0x4f, 0xb4, 0x8d, 0x7f, 0x33, 0xec, 0x7d, 0xb8,
0x1f, 0xda, 0x46, 0x68, 0x5f, 0x58, 0x88, 0xfa, 0x66, 0x4b, 0x2e, 0x3e, 0x04,
0x3f, 0x1b, 0xac, 0x8c, 0xbc, 0x83, 0x16, 0x47, 0x9f, 0x4c, 0x11, 0xb6, 0xa1,
0x89, 0xd8, 0xe6, 0xf9, 0x0d, 0xc7, 0x0a, 0x9c, 0x93, 0xcf, 0x32, 0x6e, 0xc2,
0x93, 0x66, 0x9b, 0x45, 0x59, 0x11, 0x62, 0xd2, 0xd3, 0x95, 0xdb, 0x9d, 0x0f,
0x7b, 0x8d, 0xe6, 0xe7, 0x71, 0xbb, 0x5d, 0x9e, 0x07, 0x7f, 0x2d, 0x7f, 0x08,
0xaf, 0xd6, 0xdd, 0x44, 0xfc, 0x0c, 0x32, 0xc5, 0xce, 0xe5, 0x6d, 0x81, 0xef,
0xe3, 0xa3, 0x35, 0x0f, 0xf1, 0x97, 0xf0, 0x3e, 0x02, 0xb2, 0x40, 0xcd, 0x7f,
0x50, 0xe8, 0x56, 0x38, 0x5d, 0x8c, 0xaa, 0x0e, 0x75, 0x7b, 0x5f, 0xad, 0xe4,
0x53, 0x44, 0x77, 0xdd, 0xb4, 0x29, 0x6a, 0xe6, 0x2e, 0xb7, 0x4c, 0xa6, 0x98,
0x69, 0xe7, 0xfe, 0x1b, 0xeb, 0x87, 0xf8, 0x90, 0x12, 0xe6, 0x76, 0x06, 0xde,
0x24, 0x6e, 0x31, 0xf4, 0x70, 0xd6, 0xe0, 0x84, 0xcc, 0x15, 0x4c, 0x03, 0x6e,
0x05, 0xef, 0x07, 0x1a, 0x5e, 0xca, 0xc2, 0x9f, 0xc7, 0x79, 0x88, 0x53, 0x70,
0x8f, 0xb5, 0xdb, 0x13, 0x96, 0x0a, 0x8e, 0xb3, 0x2f, 0xe1, 0xe3, 0x2a, 0x0f,
0x47, 0xd8, 0xf3, 0xe8, 0x38, 0x90, 0xcb, 0x5a, 0x51, 0x90, 0xf8, 0x75, 0xc4,
0x1a, 0xd4, 0x43, 0x3e, 0x74, 0x3c, 0x81, 0x94, 0x5b, 0xf9, 0x36, 0x65, 0x65,
0xea, 0x17, 0x14, 0x3b, 0x3d, 0x95, 0xf4, 0xd0, 0x6d, 0xa4, 0xc2, 0x47, 0x33,
0x19, 0xf4, 0x6b, 0xa8, 0x3f, 0x43, 0xad, 0x82, 0x66, 0xdb, 0x54, 0x32, 0x6e,
0x4c, 0x73, 0x9f, 0xf2, 0x3c, 0x7c, 0x60, 0xe1, 0xde, 0x61, 0x5b, 0x11, 0xab,
0x55, 0x94, 0xda, 0x2c, 0xb9, 0xa6, 0x48, 0xd1, 0x2d, 0x6a, 0x3f, 0x9b, 0xf0,
0xb2, 0xea, 0x62, 0x91, 0x93, 0xe4, 0xab, 0x7c, 0x95, 0x24, 0x44, 0xf2, 0x9d,
0x8e, 0x95, 0x44, 0x4b, 0x36, 0xa0, 0x21, 0xe5, 0xfc, 0x96, 0x6f, 0xe2, 0xcf,
0xd1, 0x8f, 0x25, 0xdf, 0x55, 0xe7, 0xd1, 0xf6, 0xa5, 0x57, 0xd1, 0xc3, 0xfc,
0x7f, 0xe9, 0xee, 0xd2, 0x05, 0xd2, 0x85, 0xd2, 0x27, 0xe8, 0x8f, 0xe8, 0xaf,
0xe8, 0x9f, 0xe8, 0x6b, 0x52, 0x70, 0x38, 0x25, 0x1c, 0x57, 0x2c, 0x28, 0x2e,
0x2a, 0x6e, 0x2c, 0x56, 0x84, 0x9f, 0x2d, 0xbe, 0x57, 0x7c, 0x2c, 0x3c, 0xae,
0xe4, 0x56, 0xb8, 0xb4, 0xe4, 0x5e, 0xb8, 0xbc, 0x84, 0x9d, 0x50, 0x2f, 0xf6,
0xa2, 0x2b, 0xb5, 0xdc, 0x64, 0x0f, 0x4c, 0x44, 0x69, 0x08, 0x26, 0x33, 0x8f,
0x80, 0xb9, 0x0b, 0xeb, 0x2e, 0xe5, 0x61, 0x0a, 0x31, 0x69, 0xec, 0x23, 0xa5,
0x7f, 0x94, 0x7e, 0x4e, 0x86, 0xc8, 0x46, 0x45, 0xf3, 0x65, 0xeb, 0x31, 0x21,
0xb2, 0x28, 0x19, 0x59, 0xc6, 0x91, 0x45, 0x6b, 0x60, 0xb4, 0xa0, 0x32, 0xdb,
0xfc, 0xc0, 0x32, 0x5b, 0xec, 0x74, 0x6c, 0x6b, 0x99, 0xb1, 0xec, 0x60, 0xf3,
0x14, 0xf9, 0xa1, 0xe6, 0x3c, 0x6c, 0xab, 0x7c, 0x27, 0xf6, 0x90, 0xbc, 0x4c,
0x7d, 0x12, 0x7b, 0x59, 0x7e, 0x57, 0x7e, 0x19, 0xeb, 0x19, 0x9f, 0x55, 0xce,
0x2f, 0x2f, 0x2f, 0x77, 0x56, 0xcc, 0x53, 0x64, 0xe0, 0xe4, 0xb8, 0x72, 0x45,
0x9f, 0xa2, 0x01, 0xb7, 0x5f, 0xd1, 0x8e, 0x7b, 0xaf, 0x30, 0x34, 0x1f, 0x13,
0x5d, 0xb6, 0xbf, 0x5c, 0x71, 0xbd, 0xe2, 0x4a, 0xc5, 0xbf, 0x15, 0x5b, 0xab,
0x76, 0x57, 0x99, 0x8a, 0xba, 0x22, 0x16, 0x29, 0xa1, 0xca, 0x90, 0x72, 0x7f,
0x65, 0x80, 0x92, 0xaa, 0xbc, 0x80, 0xda, 0xcd, 0x18, 0x14, 0xed, 0x53, 0xbe,
0x56, 0xbe, 0x8f, 0xb0, 0x57, 0x2d, 0x97, 0x80, 0x55, 0xce, 0xaa, 0x8c, 0xe2,
0xd9, 0x2a, 0x6b, 0x7c, 0x08, 0x92, 0xae, 0x4a, 0x51, 0x31, 0x55, 0x93, 0x41,
0xdf, 0x05, 0x1f, 0x9a, 0xac, 0x50, 0x69, 0x54, 0x50, 0xbc, 0x41, 0xe5, 0x87,
0x5f, 0xa3, 0xfa, 0xc0, 0x18, 0x53, 0x3d, 0x53, 0x51, 0xd5, 0xcd, 0xf8, 0xb5,
0xea, 0x12, 0xf5, 0x79, 0xf5, 0x5f, 0x6a, 0x8b, 0x7a, 0x3b, 0x9e, 0x51, 0xcd,
0xed, 0xd4, 0x71, 0xed, 0x34, 0xdf, 0x44, 0x39, 0x9a, 0xa7, 0x19, 0xf5, 0x1a,
0x10, 0xe1, 0x88, 0xe6, 0xb1, 0x66, 0x5c, 0xe3, 0x54, 0xb3, 0xaa, 0x26, 0xa9,
0x06, 0x49, 0x28, 0xac, 0x11, 0xd5, 0x3c, 0xaa, 0x29, 0x25, 0x14, 0xd5, 0xb6,
0xd5, 0xee, 0xac, 0xfd, 0x50, 0x4b, 0xe8, 0xd4, 0xd7, 0x4d, 0x89, 0x74, 0x8b,
0xdc, 0x5a, 0x6f, 0xa9, 0xf7, 0xd6, 0x46, 0x69, 0x5b, 0xb5, 0x79, 0x65, 0xcb,
0x74, 0xab, 0x74, 0xed, 0xba, 0xdd, 0x3a, 0x72, 0xc3, 0xf5, 0x86, 0xcf, 0x0d,
0xf3, 0x1b, 0xbb, 0xa3, 0xd2, 0x93, 0x4f, 0x34, 0xbe, 0x8f, 0xfa, 0x3b, 0x3e,
0xb4, 0xe9, 0x2f, 0x1a, 0x95, 0x21, 0x6e, 0xfa, 0x46, 0xdb, 0xde, 0x84, 0x88,
0xbe, 0xd4, 0xf4, 0xa4, 0xe9, 0x59, 0xd3, 0xfb, 0xa6, 0xcf, 0x4d, 0xfb, 0x9a,
0xc7, 0x9a, 0xcf, 0x37, 0x5f, 0x68, 0x0e, 0x6a, 0x39, 0x69, 0xdc, 0x12, 0xfd,
0xa8, 0xdb, 0xa5, 0x6d, 0x01, 0x71, 0x69, 0x5b, 0x72, 0x5b, 0x41, 0xdb, 0x8e,
0xb6, 0xad, 0x6d, 0x47, 0xdb, 0x9e, 0xb6, 0xbd, 0x6d, 0xfb, 0xd2, 0xf6, 0xb5,
0xed, 0xdf, 0xb6, 0x08, 0x83, 0xc6, 0xb0, 0xc5, 0x40, 0x20, 0x92, 0x89, 0x47,
0x07, 0xdc, 0xda, 0xad, 0x29, 0x1e, 0xed, 0x7e, 0xed, 0xe8, 0x76, 0x1e, 0x91,
0xda, 0x5e, 0xd6, 0xee, 0xd7, 0x31, 0xdc, 0xb1, 0x8e, 0xf8, 0xb5, 0x23, 0xa8,
0xf3, 0x39, 0x71, 0x30, 0xcf, 0x9b, 0x84, 0xe9, 0x82, 0x91, 0x76, 0x76, 0x1d,
0xef, 0xa2, 0xd2, 0x9f, 0x91, 0x5e, 0x65, 0x8c, 0x76, 0xbb, 0xc7, 0x7c, 0xea,
0xc6, 0x27, 0x83, 0x8d, 0xee, 0xc6, 0xdd, 0xe4, 0xf9, 0x46, 0x84, 0x11, 0x67,
0x4c, 0x35, 0x66, 0x19, 0x45, 0x31, 0xa7, 0x8c, 0xfd, 0x31, 0x61, 0x3d, 0x8e,
0xbd, 0xd5, 0x72, 0x6e, 0xaf, 0xaa, 0xf7, 0x7e, 0xef, 0xa7, 0xde, 0xaf, 0xbd,
0x82, 0xd8, 0x45, 0x7d, 0x85, 0x88, 0xe3, 0xf3, 0x88, 0xfd, 0xa1, 0x7d, 0x93,
0xf2, 0x9f, 0x67, 0x20, 0x91, 0x6e, 0xe8, 0x3f, 0xdc, 0x7f, 0xac, 0xff, 0x77,
0xff, 0xf7, 0xf6, 0xbd, 0xcd, 0xe5, 0x03, 0x9b, 0x07, 0x76, 0x0c, 0x1c, 0x1e,
0x38, 0x3d, 0x70, 0xaf, 0xfd, 0xc9, 0xc0, 0xa7, 0x81, 0xf1, 0x81, 0xb3, 0x72,
0xbc, 0xa9, 0xdd, 0x6a, 0x9f, 0xcd, 0xa0, 0xed, 0x5c, 0xee, 0x89, 0xf6, 0xcd,
0x29, 0xb7, 0x40, 0x98, 0xe4, 0xb1, 0xf6, 0x51, 0xc4, 0x0d, 0xbb, 0x39, 0x53,
0x4a, 0xa6, 0x1c, 0x70, 0x65, 0x30, 0x24, 0xe2, 0xe3, 0x33, 0x2e, 0xce, 0x38,
0x3a, 0x93, 0x47, 0x45, 0x8e, 0xff, 0x31, 0x73, 0x80, 0xfa, 0x6b, 0x26, 0xd2,
0x9e, 0x62, 0x9f, 0x6b, 0xaf, 0xb0, 0x7f, 0x99, 0xd1, 0x68, 0x2f, 0xa7, 0xef,
0xb1, 0xbf, 0x6f, 0xff, 0xde, 0xbe, 0xd0, 0x61, 0xa7, 0xc3, 0x59, 0x07, 0x1a,
0x77, 0x65, 0xdf, 0x9a, 0x3a, 0x10, 0x18, 0x0c, 0xbe, 0x05, 0x6e, 0x71, 0xf4,
0x73, 0x94, 0x80, 0x17, 0xb1, 0x0f, 0x39, 0xce, 0x4c, 0x63, 0x3b, 0x25, 0x38,
0x95, 0x38, 0x2d, 0xc8, 0x2b, 0x77, 0xaa, 0x77, 0xea, 0x74, 0x8a, 0x82, 0x1f,
0x75, 0xba, 0xe6, 0xb4, 0x72, 0x16, 0x72, 0x56, 0x0e, 0x65, 0x8b, 0xe6, 0xa9,
0x73, 0xb1, 0x0b, 0xdc, 0x45, 0xa5, 0x2f, 0x9d, 0xe3, 0xee, 0x7a, 0xc2, 0xed,
0x8c, 0x9b, 0x2c, 0xfe, 0xa0, 0xc8, 0x0f, 0xc2, 0x73, 0xf7, 0x9b, 0x4b, 0x98,
0xbb, 0x7c, 0xbe, 0x68, 0xfe, 0xe6, 0xf9, 0x67, 0x17, 0x9c, 0xc8, 0xba, 0xb1,
0x60, 0xce, 0xc2, 0x6e, 0x31, 0x2d, 0x9f, 0xb0, 0xe8, 0x35, 0xf7, 0x2c, 0x5c,
0xb1, 0xf8, 0x96, 0xd7, 0x4f, 0xaf, 0xe5, 0x4b, 0xc4, 0x4b, 0x13, 0x96, 0xfd,
0xab, 0xce, 0x5b, 0x66, 0x58, 0x76, 0x63, 0xf9, 0x1a, 0xed, 0xab, 0xe5, 0x83,
0xcd, 0xe0, 0x15, 0xfb, 0xbb, 0xc2, 0x57, 0x44, 0x75, 0x1f, 0xee, 0x89, 0xf5,
0x35, 0x5b, 0xea, 0x7d, 0xf7, 0xf9, 0xbe, 0x62, 0x4d, 0xf3, 0x73, 0xf6, 0xdb,
0xe7, 0xd7, 0xe1, 0x87, 0xf3, 0x97, 0xae, 0xbc, 0xb0, 0x32, 0x08, 0xe0, 0x00,
0x0b, 0x83, 0x1e, 0x04, 0xed, 0x48, 0x8f, 0xe6, 0x1c, 0xe5, 0x94, 0xc9, 0xf3,
0x60, 0x5f, 0x60, 0x66, 0xcb, 0x81, 0x09, 0x9d, 0x9d, 0x0b, 0x77, 0x45, 0x98,
0x2d, 0x91, 0xb6, 0x7b, 0x92, 0xc1, 0x79, 0x93, 0x41, 0x1f, 0xc2, 0x5d, 0x17,
0xca, 0x28, 0x79, 0x92, 0x3e, 0x0b, 0x3d, 0x8a, 0x36, 0x17, 0xf7, 0x2c, 0xba,
0x12, 0xbd, 0x9f, 0xe4, 0x8e, 0xed, 0xd1, 0xfd, 0x8d, 0x73, 0x88, 0x40, 0x62,
0x82, 0x23, 0x3a, 0x23, 0x08, 0xa4, 0xf3, 0x76, 0x7f, 0x92, 0x67, 0x4d, 0x31,
0xa5, 0xac, 0x5f, 0x70, 0x04, 0x69, 0x09, 0x03, 0xe1, 0x6f, 0xe2, 0xeb, 0x19,
0xd2, 0xc8, 0xde, 0x90, 0x95, 0x51, 0xaf, 0x6a, 0xce, 0x19, 0xb3, 0x10, 0x27,
0x3c, 0xd3, 0xf4, 0xf1, 0x7a, 0xb3, 0xc5, 0x39, 0xfa, 0x57, 0xf4, 0x1c, 0xd2,
0xf4, 0xa2, 0x63, 0x24, 0x99, 0x7d, 0x6e, 0xca, 0x9a, 0xf8, 0xda, 0x84, 0xb2,
0xa9, 0x77, 0x9a, 0x7c, 0x13, 0x9b, 0x93, 0xc2, 0x19, 0x62, 0xb1, 0x31, 0xc9,
0x9d, 0x4a, 0x0a, 0x5f, 0x47, 0x3a, 0x44, 0x8b, 0xa4, 0x0a, 0xa9, 0x49, 0x05,
0x66, 0x8b, 0x24, 0x38, 0x9c, 0x16, 0x58, 0x92, 0x46, 0x83, 0x44, 0x65, 0xd1,
0x38, 0xb4, 0x33, 0x8c, 0x70, 0x62, 0x6a, 0x32, 0x27, 0xf1, 0x57, 0xf0, 0x85,
0x20, 0xb3, 0xc5, 0x36, 0x45, 0x11, 0x15, 0xad, 0xdd, 0xca, 0xd4, 0xb2, 0xa6,
0xb0, 0x5b, 0x3c, 0x86, 0x18, 0xe4, 0x09, 0x95, 0xb3, 0xc9, 0x74, 0x56, 0xd0,
0x5b, 0x76, 0x66, 0xf6, 0x24, 0x64, 0xe9, 0x6d, 0x72, 0x48, 0x39, 0xac, 0xd4,
0x7f, 0x26, 0xa2, 0x68, 0x72, 0xe6, 0xbb, 0xbf, 0xd1, 0x7d, 0x27, 0xd6, 0xe7,
0x7c, 0x08, 0x77, 0xce, 0x3d, 0x16, 0x73, 0x34, 0x77, 0x0f, 0x67, 0xde, 0x92,
0xdc, 0xf6, 0xc7, 0x8c, 0x8e, 0xcc, 0x25, 0xcc, 0x8b, 0xe3, 0x66, 0xcb, 0x28,
0xdd, 0x93, 0xf0, 0x9b, 0xc3, 0x8b, 0x0f, 0x26, 0xd2, 0x3b, 0x9b, 0x05, 0x87,
0xf9, 0x10, 0x78, 0xa9, 0xd6, 0x98, 0x27, 0xcc, 0x9f, 0x95, 0x93, 0x96, 0x6f,
0xb6, 0x9c, 0xc9, 0xc7, 0x95, 0x1f, 0x6b, 0x99, 0x35, 0xc3, 0x87, 0x3b, 0x51,
0xbb, 0x73, 0x09, 0x72, 0xb3, 0xe5, 0x27, 0xd7, 0xa7, 0xc7, 0x8f, 0x97, 0x0e,
0xe7, 0xe6, 0x78, 0x5a, 0x55, 0x97, 0x05, 0xf3, 0x58, 0x05, 0xbe, 0xa9, 0xee,
0x13, 0xfc, 0xfb, 0x0b, 0xae, 0x44, 0x8e, 0xf0, 0x91, 0xc5, 0xb9, 0xf5, 0x5b,
0x05, 0x7b, 0x93, 0x27, 0x83, 0xfe, 0x7c, 0x44, 0x23, 0x34, 0x46, 0x74, 0x51,
0x4c, 0x0d, 0x53, 0x16, 0xd5, 0x14, 0xa9, 0xda, 0xe4, 0x9e, 0xfa, 0x22, 0xc0,
0xf0, 0xa2, 0xe8, 0x0a, 0x31, 0x84, 0x6f, 0x6a, 0x4f, 0x94, 0x8e, 0x83, 0x97,
0xd4, 0x7f, 0xab, 0xf7, 0x59, 0x26, 0xd1, 0xec, 0x70, 0xdb, 0x2f, 0x5c, 0x4e,
0x5a, 0x04, 0x19, 0x09, 0x19, 0x85, 0xff, 0xf7, 0x64, 0x38, 0x61, 0x2f, 0x67,
0x4b, 0xdf, 0x48, 0x77, 0x84, 0xf6, 0x42, 0x69, 0xb2, 0xec, 0x26, 0xfd, 0x21,
0x66, 0x86, 0xeb, 0x50, 0xc8, 0x4a, 0xc4, 0x2b, 0xe5, 0x29, 0x97, 0x2d, 0x62,
0x4e, 0xf5, 0xfd, 0xb2, 0xf5, 0x13, 0xf5, 0xe0, 0xbe, 0xd8, 0x6d, 0xa2, 0x4d,
0xda, 0x7f, 0xcb, 0x66, 0xc8, 0x67, 0x96, 0x73, 0x2a, 0xe4, 0xd8, 0x88, 0xf2,
0xca, 0xb2, 0xe9, 0xca, 0x3d, 0x85, 0x0f, 0x87, 0x6d, 0x79, 0x90, 0xea, 0x61,
0xca, 0x54, 0xe1, 0x51, 0x03, 0x3c, 0x3f, 0xb5, 0xab, 0x50, 0xe5, 0xa5, 0xdc,
0xc3, 0x7d, 0xef, 0xb2, 0x32, 0x30, 0x5a, 0x59, 0x93, 0x0a, 0x34, 0x54, 0x2b,
0xe7, 0x30, 0xbc, 0xba, 0x89, 0xda, 0x4d, 0xa9, 0xf5, 0xc4, 0x23, 0xb9, 0x37,
0xb8, 0x7f, 0x52, 0xd6, 0x90, 0x54, 0xe1, 0xb3, 0xc2, 0xe0, 0x79, 0x2d, 0xca,
0xaf, 0x4a, 0x7f, 0xd5, 0xd0, 0xc2, 0x04, 0x95, 0x56, 0xb5, 0x4d, 0x35, 0x57,
0x3d, 0xa5, 0x7a, 0x65, 0xb5, 0xae, 0xfa, 0x3c, 0x2c, 0x5f, 0xb3, 0xb1, 0xf6,
0x67, 0xf4, 0x8b, 0x6c, 0xba, 0x76, 0x9a, 0x8c, 0xd6, 0xb6, 0x5f, 0xfb, 0x39,
0xe2, 0xa5, 0xf6, 0x61, 0xc4, 0x2b, 0x6d, 0xa4, 0xfe, 0xba, 0x7e, 0x3c, 0x65,
0x7a, 0x83, 0xd9, 0x72, 0xaa, 0xf9, 0xdd, 0x84, 0xe3, 0x75, 0x6a, 0x0d, 0x6b,
0xfd, 0x07, 0x95, 0xd6, 0x7a, 0x9e, 0x74, 0xa5, 0xb9, 0xb9, 0x48, 0x4f, 0x7f,
0xd9, 0xfe, 0xba, 0x63, 0x7b, 0xc7, 0xfe, 0x8e, 0xc0, 0xae, 0xab, 0xdd, 0x44,
0x23, 0xcf, 0x78, 0xc2, 0xb8, 0xb4, 0x07, 0xdc, 0xcb, 0xec, 0xef, 0xed, 0x37,
0x55, 0x8e, 0x0f, 0x78, 0x99, 0x46, 0x62, 0xa3, 0x3a, 0x0c, 0xc3, 0xc3, 0x62,
0xcb, 0x70, 0x6b, 0x9c, 0x73, 0xcb, 0x1f, 0x6b, 0xfa, 0xe2, 0xfa, 0xec, 0x8f,
0x34, 0x8f, 0x4d, 0xca, 0x5f, 0xb6, 0x03, 0xcd, 0xdb, 0xbd, 0x47, 0x9b, 0x0d,
0xa4, 0xe9, 0x84, 0xaa, 0x4a, 0x7a, 0xe1, 0x0e, 0xde, 0x9b, 0xf8, 0x67, 0xc1,
0xbe, 0xfa, 0x7e, 0x59, 0x28, 0x42, 0xd9, 0xf4, 0xcd, 0xcd, 0x5b, 0xc9, 0xd7,
0x1b, 0xf5, 0x68, 0xf9, 0x36, 0xce, 0x5b, 0x14, 0xad, 0x64, 0x5f, 0x18, 0x8c,
0x4e, 0x4f, 0xe9, 0x89, 0x57, 0xa5, 0x25, 0x67, 0x1d, 0xa5, 0x0b, 0xc0, 0xe0,
0x26, 0x01, 0xab, 0x1e, 0x3d, 0x10, 0xfb, 0x20, 0xdb, 0x6c, 0xf9, 0xee, 0x56,
0x0e, 0x01, 0x72, 0xfd, 0xe8, 0x24, 0xf6, 0x5c, 0xea, 0x2c, 0xca, 0x69, 0x54,
0x77, 0x7f, 0x45, 0xec, 0x62, 0xfa, 0x02, 0x3a, 0xb1, 0xea, 0xaf, 0xb4, 0xe2,
0x14, 0x0c, 0x4a, 0x54, 0x37, 0x3f, 0xfe, 0x8d, 0x23, 0xd1, 0xe1, 0x00, 0xdc,
0x4d, 0x95, 0xd6, 0x0f, 0x69, 0x44, 0x96, 0x10, 0xfa, 0xe2, 0x4b, 0x46, 0x4b,
0x09, 0x86, 0x40, 0x6a, 0xb4, 0xea, 0x1f, 0x35, 0x94, 0x1e, 0xa8, 0x82, 0x68,
0x0e, 0x2b, 0xdf, 0xd0, 0xb2, 0xca, 0x22, 0xe8, 0xae, 0xd4, 0x7e, 0xf0, 0x25,
0x98, 0x1d, 0xfd, 0x13, 0xed, 0x13, 0xe7, 0x89, 0xda, 0x0f, 0x1e, 0x5c, 0xfc,
0x91, 0x76, 0x80, 0xd6, 0x45, 0x2d, 0xa2, 0x61, 0xed, 0x3b, 0xed, 0xaf, 0xa4,
0x45, 0x93, 0x4b, 0xc0, 0x59, 0xbe, 0xc3, 0xe0, 0x4d, 0x03, 0xcc, 0x8a, 0x07,
0xb4, 0x62, 0xa7, 0xfe, 0x2c, 0x41, 0x57, 0x3b, 0xf5, 0x62, 0xc3, 0x77, 0x71,
0x49, 0xeb, 0xef, 0xec, 0xd1, 0x6c, 0x73, 0x36, 0x97, 0x16, 0xb1, 0xa2, 0xa8,
0x6f, 0x97, 0x7f, 0x0f, 0xf9, 0x61, 0xf0, 0x3a, 0x87, 0x75, 0xe4, 0x38, 0xea,
0x02, 0x9a, 0x0b, 0x8d, 0x53, 0xe2, 0xd7, 0xa4, 0xcb, 0xdf, 0x51, 0xbc, 0x57,
0x09, 0xaa, 0xaf, 0xad, 0x3b, 0x53, 0xbf, 0x57, 0x35, 0x5f, 0x33, 0xe6, 0xf4,
0x0e, 0x0f, 0x92, 0x4c, 0x89, 0x6a, 0x61, 0xcd, 0xac, 0x36, 0xe4, 0x97, 0xd3,
0xbf, 0xfa, 0xac, 0xac, 0x58, 0x8d, 0x95, 0x54, 0x5c, 0x11, 0xee, 0x2d, 0x12,
0xb5, 0xde, 0x9e, 0x35, 0xad, 0xed, 0x77, 0xd8, 0x86, 0xb5, 0x9b, 0xc1, 0x3f,
0xc0, 0x9c, 0xa2, 0xe1, 0xf9, 0xf1, 0x51, 0xc7, 0x13, 0x7e, 0x54, 0xbd, 0x75,
0xfc, 0x89, 0x99, 0x0c, 0xfa, 0xa9, 0x7d, 0x0b, 0x73, 0x07, 0xfd, 0xbe, 0x44,
0x3f, 0x8a, 0x52, 0xf4, 0xbf, 0x73, 0x9c, 0x01, 0x36, 0x5b, 0x56, 0x17, 0xbf,
0x77, 0x34, 0x5b, 0xa2, 0x33, 0xea, 0x66, 0xad, 0x16, 0x37, 0x55, 0x26, 0xf6,
0xcf, 0x8d, 0x07, 0xc5, 0x97, 0xc2, 0x1c, 0x58, 0x3b, 0xf9, 0x79, 0x94, 0xcd,
0xf0, 0x7b, 0x21, 0x15, 0x94, 0x35, 0x70, 0x48, 0x64, 0x4f, 0xb2, 0x30, 0xc6,
0x4f, 0x1d, 0x43, 0xdd, 0xc8, 0xe8, 0x60, 0x96, 0x4d, 0x37, 0x5b, 0x92, 0x42,
0x73, 0xbd, 0xa5, 0x92, 0xcd, 0x03, 0xd3, 0xe3, 0xde, 0xf7, 0x9a, 0xc3, 0x00,
0x13, 0x2b, 0x76, 0x43, 0xc2, 0x40, 0xc7, 0x03, 0x13, 0x5b, 0xb3, 0x17, 0xb5,
0xb3, 0x68, 0x57, 0xde, 0x22, 0x84, 0x7f, 0x36, 0xb4, 0xe2, 0x1f, 0xb4, 0x2f,
0x7a, 0x79, 0xe8, 0xb4, 0x96, 0x0b, 0x49, 0x52, 0xb4, 0x1c, 0xfe, 0x9a, 0xd0,
0x04, 0xc2, 0x94, 0x7c, 0x64, 0xee, 0x05, 0xcb, 0x65, 0xfe, 0x55, 0xeb, 0x92,
0x8f, 0x62, 0x14, 0x74, 0x7d, 0xaf, 0x34, 0x95, 0x5a, 0x12, 0x3c, 0x52, 0x33,
0xf0, 0x38, 0xd6, 0x6c, 0xf9, 0x85, 0x70, 0xcf, 0xbc, 0x03, 0x7c, 0x8e, 0x98,
0xe8, 0x27, 0x7d, 0x83, 0xf3, 0x3a, 0x46, 0x36, 0x71, 0xca, 0x40, 0x70, 0xd2,
0x56, 0xd1, 0x96, 0x89, 0x3c, 0xa0, 0xe8, 0xa7, 0x2b, 0x42, 0x7a, 0x1f, 0x30,
0xf8, 0x6e, 0x14, 0xf6, 0xb5, 0x9c, 0x2b, 0xed, 0xb0, 0xec, 0x1c, 0xf1, 0x96,
0xda, 0xa5, 0x0e, 0x8b, 0x05, 0x4f, 0x48, 0x62, 0x87, 0x89, 0xb1, 0x91, 0x1d,
0x17, 0x36, 0xa5, 0xda, 0x76, 0x5d, 0xf5, 0x50, 0x0d, 0xc4, 0xb6, 0x2c, 0x2c,
0xb7, 0xe9, 0xbd, 0xca, 0x5e, 0x5d, 0x9e, 0x9f, 0x05, 0xcb, 0xb6, 0xf4, 0x5c,
0x2e, 0x5f, 0xde, 0x5b, 0xa9, 0x30, 0x5b, 0x70, 0x8a, 0x5a, 0xc5, 0x9c, 0xbe,
0xdf, 0xe5, 0xd3, 0x7b, 0xcd, 0x96, 0x79, 0x7d, 0x68, 0x22, 0xd3, 0x24, 0xa1,
0x9d, 0x60, 0xfd, 0x9b, 0xd0, 0x3d, 0xf0, 0x39, 0x21, 0x23, 0x69, 0x0a, 0xfa,
0x6a, 0x52, 0x1e, 0x83, 0x9e, 0xb8, 0x2f, 0xc5, 0x39, 0xed, 0x6c, 0xd7, 0xa6,
0x7e, 0x76, 0x33, 0x97, 0xba, 0xbb, 0x0b, 0x63, 0x3c, 0xd0, 0xe5, 0x4b, 0x01,
0x32, 0x27, 0x83, 0xbe, 0x2f, 0xf7, 0x0e, 0x65, 0x46, 0x9f, 0x4d, 0x3f, 0x32,
0x16, 0xdb, 0xa9, 0xe4, 0xae, 0x4d, 0x8c, 0x2c, 0x16, 0xb8, 0xdd, 0x31, 0x4a,
0x92, 0xcc, 0x96, 0x94, 0x56, 0x55, 0x27, 0x7b, 0x22, 0x77, 0x90, 0x5b, 0xbb,
0x9a, 0xaa, 0xb2, 0xbd, 0x04, 0xe7, 0x79, 0xb3, 0xe8, 0x4d, 0xad, 0xf2, 0xe2,
0x9a, 0xac, 0xdf, 0xb6, 0x09, 0x12, 0x91, 0xc2, 0x93, 0xfd, 0x6f, 0x98, 0xd9,
0xe2, 0x4e, 0xbc, 0x59, 0xd2, 0xdf, 0xbb, 0x3c, 0xfe, 0xba, 0xfd, 0x91, 0x6a,
0x5c, 0xbd, 0xd9, 0x42, 0x62, 0x1f, 0x9b, 0xc8, 0x9f, 0x72, 0xc6, 0xc2, 0xa4,
0x6f, 0xa9, 0x97, 0xe2, 0x03, 0xf8, 0x9f, 0xad, 0x43, 0x12, 0xfa, 0xa8, 0x77,
0xa8, 0x3d, 0x49, 0xea, 0x46, 0xf3, 0x04, 0xb3, 0xff, 0xf4, 0x2b, 0xa9, 0x40,
0xd1, 0xba, 0xc6, 0xd4, 0xd5, 0xeb, 0xdf, 0xbd, 0xbb, 0xfb, 0x40, 0xcf, 0xfa,
0x01, 0xcd, 0x80, 0x5c, 0x3c, 0xbb, 0x7c, 0x22, 0xdf, 0x16, 0x40, 0xea, 0x65,
0x55, 0x66, 0xcb, 0x22, 0x3a, 0x69, 0x6d, 0x69, 0x13, 0xc5, 0x64, 0xb6, 0x5c,
0x6f, 0x4c, 0x68, 0x9a, 0x3f, 0x60, 0xdd, 0xa4, 0xce, 0xaa, 0xa8, 0x5e, 0xda,
0x54, 0xdc, 0x74, 0x4d, 0x5e, 0x4a, 0x42, 0xcb, 0xff, 0x92, 0xbd, 0xe1, 0xe7,
0xe9, 0xa6, 0x96, 0x30, 0x75, 0x3e, 0xa6, 0x4b, 0xfc, 0x9b, 0x75, 0x27, 0x8a,
0x77, 0x0e, 0x53, 0x64, 0x98, 0x71, 0xfb, 0xc6, 0x27, 0x45, 0x62, 0x89, 0x9f,
0xde, 0x46, 0xf2, 0x49, 0xfa, 0xb6, 0xe1, 0x20, 0x69, 0x65, 0xed, 0x81, 0xf4,
0xc1, 0xfa, 0x7d, 0x78, 0xb3, 0x05, 0x09, 0xb1, 0x13, 0x9a, 0x2d, 0x95, 0xba,
0x79, 0x50, 0xb3, 0xe5, 0xdf, 0x8c, 0xbc, 0x92, 0x5b, 0x3d, 0xf8, 0x7e, 0xa1,
0xa1, 0xb9, 0xf7, 0x5b, 0xdd, 0x7f, 0x0c, 0xfe, 0x69, 0xf0, 0x95, 0x78, 0x76,
0x6d, 0xef, 0xbd, 0x09, 0xdb, 0x59, 0x34, 0x35, 0x96, 0xac, 0x20, 0x19, 0x53,
0x32, 0x53, 0x32, 0x41, 0xb1, 0x9d, 0x03, 0x15, 0x13, 0x8c, 0xd3, 0x19, 0x85,
0x99, 0x6b, 0xb3, 0x42, 0xb2, 0xcc, 0x16, 0x76, 0xe8, 0x93, 0xcc, 0x8d, 0x94,
0x6f, 0x41, 0x39, 0xd9, 0x36, 0xf9, 0x7f, 0xc2, 0x26, 0x83, 0x3e, 0x23, 0xf5,
0xb8, 0xfe, 0x4e, 0x73, 0x48, 0x93, 0xd9, 0x72, 0x3b, 0x31, 0xd2, 0x63, 0x4a,
0x59, 0x20, 0x65, 0x55, 0x27, 0xd2, 0x31, 0xf7, 0xbf, 0xef, 0xaa, 0xd4, 0x6c,
0x39, 0xae, 0x98, 0x9b, 0x7e, 0x47, 0xe1, 0x27, 0xe7, 0x28, 0xb3, 0x95, 0x71,
0x15, 0x76, 0xc5, 0x9f, 0xa5, 0xed, 0xda, 0xb9, 0x6a, 0xfb, 0xbc, 0x2c, 0x65,
0xad, 0x94, 0xa5, 0xfc, 0x28, 0xb5, 0x55, 0x79, 0x97, 0x6a, 0xb5, 0x17, 0xf2,
0x28, 0xc5, 0x57, 0x85, 0x1b, 0xea, 0x2e, 0xd5, 0x9d, 0x55, 0x35, 0xd4, 0x11,
0x75, 0x5b, 0x1a, 0x22, 0xf4, 0x2b, 0x4a, 0xc7, 0xa5, 0x77, 0x34, 0x30, 0xf8,
0x4e, 0xee, 0xda, 0x46, 0xb3, 0x65, 0x83, 0x76, 0x42, 0xfb, 0x04, 0x63, 0x75,
0xb3, 0x30, 0x2f, 0xa5, 0x77, 0x51, 0x25, 0xe2, 0x91, 0x8c, 0xbe, 0xcc, 0xab,
0x13, 0x73, 0x57, 0x9a, 0x61, 0xb6, 0x88, 0xab, 0xfc, 0x26, 0x14, 0xfb, 0x75,
0x46, 0x65, 0xcc, 0xa2, 0x24, 0x48, 0xd8, 0x99, 0xb0, 0x5b, 0x69, 0xf4, 0x92,
0x00, 0x1a, 0xde, 0xdd, 0xec, 0x6c, 0x6b, 0xbc, 0x27, 0xd8, 0x22, 0x1a, 0x63,
0x6f, 0xc9, 0x74, 0xd4, 0x95, 0xc2, 0xff, 0xb6, 0x8a, 0xcc, 0x07, 0x27, 0x64,
0x11, 0x16, 0xb2, 0x62, 0xb3, 0x13, 0x4d, 0x6b, 0x07, 0x0a, 0xb2, 0x32, 0xbc,
0x33, 0xbd, 0xb3, 0xbc, 0xb3, 0xbd, 0x73, 0xbc, 0x73, 0xbd, 0x39, 0xde, 0x79,
0xde, 0xf9, 0xde, 0x5c, 0x6f, 0xa9, 0x77, 0xb1, 0x77, 0x89, 0x77, 0xa9, 0xb7,
0xcc, 0xbb, 0xcc, 0x5b, 0xee, 0x5d, 0xee, 0xad, 0xf0, 0xae, 0xf0, 0x16, 0x79,
0x8a, 0x3d, 0x8b, 0x3c, 0x25, 0x9e, 0x52, 0xcf, 0x62, 0xcf, 0x12, 0xcf, 0x52,
0x4f, 0x99, 0x67, 0x99, 0x27, 0x3c, 0x3e, 0x3c, 0xbe, 0x26, 0x7e, 0x30, 0x5e,
0x4d, 0xee, 0x24, 0x6f, 0x22, 0xff, 0x48, 0x5a, 0x45, 0xe1, 0x52, 0xf6, 0x52,
0x66, 0xa4, 0x28, 0x59, 0x77, 0x53, 0x83, 0x56, 0x56, 0xa5, 0x99, 0x2d, 0x89,
0xe9, 0x99, 0xe9, 0xc1, 0xb9, 0x66, 0x4b, 0x5b, 0xf1, 0x44, 0x65, 0xdd, 0x6c,
0xb6, 0xac, 0xb7, 0x3a, 0x6d, 0xf3, 0x2f, 0x60, 0x06, 0xfa, 0x81, 0x01, 0xe0,
0x3f, 0x72, 0x76, 0xc0, 0x14, 0x60, 0x2a, 0xf0, 0x1b, 0x40, 0x5a, 0x50, 0x16,
0xd4, 0x12, 0x2c, 0x80, 0x03, 0x22, 0x00, 0x3c, 0x40, 0x00, 0x22, 0x81, 0x28,
0x20, 0x1a, 0x20, 0x02, 0x24, 0x20, 0x06, 0x88, 0x05, 0xe2, 0x80, 0x78, 0x20,
0x01, 0x48, 0x04, 0xc8, 0x40, 0x12, 0x40, 0x01, 0xa8, 0x00, 0x0d, 0xa0, 0x03,
0x0c, 0x20, 0x19, 0x48, 0x01, 0x98, 0x00, 0x0b, 0x60, 0x03, 0xa9, 0x40, 0x1a,
0x90, 0x0e, 0x64, 0x00, 0x99, 0x40, 0x16, 0x90, 0x0d, 0xe4, 0x00, 0xb9, 0x13,
0x7e, 0x2b, 0x0f, 0xc8, 0x07, 0xb8, 0x00, 0x0f, 0x28, 0x00, 0xf8, 0x80, 0x00,
0x10, 0x02, 0x85, 0x80, 0x08, 0x10, 0x03, 0x45, 0x80, 0x04, 0x90, 0x02, 0xc5,
0x40, 0x09, 0x50, 0x0a, 0xc8, 0x80, 0x32, 0x40, 0x0e, 0x94, 0x03, 0x0a, 0xa0,
0x02, 0xa8, 0x04, 0xaa, 0x00, 0x25, 0xa0, 0x02, 0xd4, 0x40, 0x35, 0xa0, 0x01,
0x6a, 0x80, 0x5a, 0xa0, 0x0e, 0xa8, 0x07, 0xb4, 0x80, 0x0e, 0xd0, 0x03, 0x0d,
0x40, 0x23, 0xd0, 0x04, 0x34, 0x03, 0x2d, 0x40, 0x2b, 0xd0, 0x06, 0x18, 0x80,
0x21, 0x60, 0x18, 0x58, 0x0d, 0x8c, 0x00, 0x93, 0xb1, 0x72, 0xd6, 0x00, 0x6b,
0x81, 0x75, 0xc0, 0x7a, 0x60, 0x03, 0xb0, 0x11, 0xd8, 0x04, 0x6c, 0x06, 0xb6,
0x00, 0x5b, 0x81, 0x6d, 0xc0, 0x76, 0x60, 0x07, 0xb0, 0x13, 0xd8, 0x05, 0xec,
0x06, 0xf6, 0x00, 0x7b, 0x81, 0x7d, 0xc0, 0x7e, 0x60, 0x14, 0x38, 0x00, 0x1c,
0x04, 0x0e, 0x01, 0x87, 0x81, 0x23, 0xc0, 0x51, 0xe0, 0x18, 0x30, 0x06, 0x1c,
0x07, 0x4e, 0x00, 0x27, 0x81, 0x53, 0xc0, 0x69, 0xe0, 0x0c, 0x70, 0x16, 0x38,
0x07, 0x9c, 0x07, 0xfe, 0x00, 0x2e, 0x00, 0x17, 0x81, 0x4b, 0xc0, 0x65, 0xe0,
0x0a, 0x70, 0x15, 0xf8, 0x13, 0xb8, 0x06, 0x5c, 0x07, 0x6e, 0x00, 0x37, 0x81,
0x5b, 0xc0, 0x5f, 0xc0, 0x6d, 0xe0, 0x0e, 0x70, 0x17, 0xb8, 0x07, 0xdc, 0x07,
0x1e, 0x00, 0x0f, 0x81, 0x47, 0xc0, 0x63, 0xe0, 0x09, 0xf0, 0x14, 0x78, 0x06,
0x3c, 0x07, 0x5e, 0x00, 0x2f, 0x81, 0x57, 0xc0, 0x6b, 0xe0, 0x0d, 0xf0, 0x16,
0x78, 0x07, 0xbc, 0x07, 0xfe, 0x06, 0x3e, 0x00, 0x1f, 0x81, 0x4f, 0xc0, 0x67,
0xe0, 0x0b, 0xf0, 0x15, 0xf8, 0x06, 0x7c, 0x07, 0x9c, 0x40, 0xb3, 0x40, 0xce,
0x20, 0x17, 0xd0, 0x6c, 0xd0, 0x1c, 0x90, 0x35, 0xc8, 0x15, 0xe4, 0x06, 0x82,
0x80, 0xdc, 0x41, 0x73, 0x41, 0xf3, 0x40, 0xf3, 0x41, 0x1e, 0xa0, 0x05, 0xa0,
0x85, 0xa0, 0x45, 0x20, 0x4f, 0xd0, 0x62, 0x90, 0x17, 0xc8, 0x1b, 0x04, 0x05,
0xf9, 0x80, 0x96, 0x80, 0x96, 0x82, 0x96, 0x81, 0x96, 0x83, 0x56, 0x80, 0x7c,
0x41, 0x7e, 0x20, 0x7f, 0xd0, 0x4a, 0x10, 0x00, 0x0a, 0x00, 0x05, 0x82, 0x82,
0x40, 0xc1, 0x20, 0x18, 0x88, 0x0c, 0x82, 0x83, 0x10, 0xa0, 0x55, 0xa0, 0x10,
0x50, 0x28, 0x08, 0x09, 0x0a, 0x03, 0xa1, 0x40, 0x68, 0x50, 0x38, 0x08, 0x03,
0xc2, 0x82, 0x70, 0xa0, 0x08, 0x10, 0x1e, 0x44, 0x00, 0x45, 0x82, 0xa2, 0x40,
0xd1, 0x20, 0x22, 0x88, 0x04, 0x8a, 0x01, 0xc5, 0x82, 0xe2, 0x40, 0xf1, 0xa0,
0x04, 0xd0, 0x4b, 0xcf, 0xfd, 0x9e, 0xa3, 0x9e, 0x97, 0x03, 0x2e, 0x58, 0x31,
0xe3, 0x75, 0x56, 0x36, 0x49, 0xad, 0xf8, 0xc9, 0xa0, 0xbf, 0xdd, 0x54, 0x4f,
0xde, 0x61, 0x9a, 0x5a, 0x32, 0x39, 0xfb, 0xdb, 0xff, 0xef, 0x78, 0x62, 0x79,
0x66, 0x99, 0x6a, 0xb1, 0xb1, 0x04, 0x04, 0xba, 0x7a, 0x7a, 0x7a, 0xf6, 0x02,
0x7d, 0x80, 0xd2, 0x5f, 0xe3, 0x5f, 0xeb, 0x5f, 0xe7, 0x5f, 0xef, 0xaf, 0xf3,
0x6f, 0xf0, 0x6f, 0xf4, 0xef, 0xf0, 0xef, 0xf3, 0xef, 0xf7, 0x5f, 0xe3, 0xbf,
0xce, 0x7f, 0xa3, 0xff, 0x66, 0xff, 0xad, 0xfe, 0x7b, 0xfd, 0x0f, 0xf9, 0x1f,
0xf1, 0x3f, 0xed, 0x7f, 0xde, 0xff, 0x82, 0xff, 0x45, 0xff, 0xcb, 0xfe, 0x37,
0xfd, 0x6f, 0xf9, 0x3f, 0xf0, 0x7f, 0xea, 0xff, 0x3f, 0xf1, 0xaa, 0x6d, 0x12,
0x6d, 0x58, 0x36, 0x54, 0x9b, 0x62, 0x1b, 0x8a, 0xf5, 0xb8, 0x55, 0x8c, 0xb5,
0xce, 0x86, 0x67, 0xa3, 0x92, 0x8d, 0xb6, 0x5d, 0xae, 0x3f, 0x98, 0x9c, 0x94,
0xb1, 0x4e, 0xf1, 0x93, 0x49, 0x85, 0x72, 0xa0, 0x0c, 0x68, 0x06, 0x94, 0x0f,
0xcd, 0x86, 0x32, 0xa1, 0x5c, 0x68, 0x2a, 0x34, 0x09, 0x9a, 0x03, 0xa5, 0x41,
0xd3, 0xa0, 0x3c, 0x68, 0x26, 0x34, 0x19, 0x9a, 0x07, 0x65, 0x41, 0x29, 0xd0,
0x5c, 0x28, 0x1d, 0x9a, 0x0e, 0x2d, 0x80, 0x66, 0x41, 0x53, 0xa0, 0xf9, 0x50,
0x36, 0x94, 0x0c, 0x4d, 0x84, 0x0a, 0xa0, 0x42, 0xa8, 0x08, 0x5a, 0x08, 0x7d,
0x6f, 0x89, 0xb2, 0xbb, 0xdb, 0xf6, 0xd0, 0xee, 0x54, 0x78, 0x6c, 0xcd, 0x1e,
0xdc, 0x07, 0xc9, 0x1e, 0x32, 0x11, 0x8e, 0x23, 0x3e, 0xd3, 0xe2, 0x0d, 0x77,
0xdd, 0xff, 0x56, 0x9f, 0x0d, 0x0b, 0x93, 0xe1, 0xf3, 0x1e, 0x66, 0x05, 0x11,
0x37, 0x6a, 0x07, 0x6d, 0x76, 0x15, 0xd8, 0xb9, 0x6c, 0x4a, 0x78, 0xef, 0x3d,
0x2d, 0x71, 0x99, 0x40, 0x23, 0xb7, 0x82, 0xef, 0x20, 0xb9, 0x4c, 0x64, 0xe4,
0x4a, 0xdb, 0x91, 0x74, 0xa5, 0x6d, 0x94, 0xed, 0x5d, 0xe1, 0x42, 0x90, 0xd9,
0x62, 0x4d, 0x96, 0x07, 0x83, 0xc9, 0xfc, 0xee, 0x08, 0x84, 0xab, 0x66, 0x84,
0x58, 0x07, 0xca, 0x20, 0xef, 0x0e, 0xe2, 0x91, 0x2d, 0x33, 0x7f, 0x2f, 0x7a,
0x6e, 0x03, 0x40, 0x9b, 0xec, 0x82, 0x02, 0xab, 0xdd, 0xd5, 0xac, 0x8a, 0xba,
0x5d, 0x76, 0xc6, 0xb0, 0x9d, 0xe4, 0xfd, 0xe4, 0xc9, 0xe0, 0x1e, 0xdc, 0x7f,
0x8e, 0x7c, 0x99, 0x7c, 0x95, 0x7c, 0x2f, 0xec, 0x1a, 0x79, 0x2d, 0x69, 0x17,
0xf9, 0x09, 0x19, 0x47, 0x79, 0x4f, 0xbe, 0x58, 0x8d, 0xe6, 0xfa, 0x21, 0xca,
0xd3, 0x67, 0x26, 0xf9, 0x24, 0x85, 0x25, 0xed, 0x49, 0x62, 0x24, 0xb5, 0x27,
0x8d, 0x26, 0x9d, 0x4a, 0x9a, 0xa3, 0xc0, 0xd5, 0x3c, 0x4a, 0x72, 0xa8, 0x75,
0x99, 0xa8, 0x3a, 0x1e, 0xe8, 0x88, 0xb4, 0xdb, 0x42, 0x65, 0x38, 0x75, 0xfa,
0xbb, 0xf0, 0x20, 0xca, 0xc4, 0x0c, 0xce, 0xfc, 0x83, 0xef, 0xe3, 0x36, 0x2f,
0xff, 0x86, 0x84, 0x94, 0xb1, 0x11, 0x7d, 0x61, 0xd5, 0x2b, 0xd7, 0xfb, 0xe2,
0x61, 0xbc, 0x80, 0x22, 0xa5, 0x6c, 0xaa, 0xad, 0x9c, 0xb8, 0xde, 0x39, 0xc7,
0xc5, 0xf5, 0x45, 0xa9, 0x81, 0xd2, 0xab, 0x1b, 0xa4, 0x6c, 0xa2, 0x6c, 0xa5,
0xac, 0x93, 0x14, 0x31, 0x52, 0xc2, 0xfb, 0x24, 0x63, 0x94, 0x53, 0x14, 0x22,
0x9f, 0x18, 0x6f, 0x66, 0xdc, 0xa6, 0x6c, 0x0a, 0x6d, 0x9e, 0xf9, 0x88, 0xf2,
0x36, 0x7c, 0xb5, 0xdf, 0x77, 0x4a, 0xa9, 0xbd, 0x0b, 0xb5, 0x4c, 0xb4, 0x82,
0xc6, 0xe0, 0xb0, 0x04, 0x02, 0x2a, 0xa5, 0x40, 0xea, 0x90, 0x4a, 0x6b, 0xa6,
0x8e, 0x50, 0xd7, 0x46, 0x39, 0xb8, 0xdd, 0x07, 0xef, 0x46, 0xc5, 0x39, 0x1c,
0xd2, 0x76, 0xfb, 0x44, 0xd1, 0xde, 0xc7, 0xae, 0xa4, 0xba, 0x49, 0x6b, 0x69,
0x1b, 0x26, 0x1c, 0xf1, 0x2d, 0x48, 0x28, 0x26, 0x89, 0x00, 0xc3, 0xef, 0xe2,
0xec, 0x76, 0x42, 0xd0, 0x2f, 0x72, 0x74, 0x81, 0x23, 0x9c, 0x2d, 0x9c, 0x38,
0x7a, 0x02, 0xfd, 0x93, 0xec, 0x13, 0xbd, 0xae, 0xcb, 0x4c, 0xb1, 0x62, 0x7c,
0xa0, 0xbf, 0xa7, 0x73, 0xf4, 0x5e, 0xf0, 0x04, 0xe7, 0x48, 0xc6, 0x1a, 0xac,
0x90, 0xaf, 0x17, 0xe1, 0x18, 0x3b, 0xe0, 0x95, 0xfc, 0x17, 0x0c, 0xd7, 0xd9,
0xb6, 0xc9, 0xd4, 0xd9, 0xd9, 0x11, 0x3e, 0xc9, 0xdf, 0x62, 0xd8, 0xc9, 0x1b,
0x93, 0x33, 0x61, 0x8f, 0x92, 0xef, 0x25, 0x87, 0x39, 0xff, 0x4a, 0xb6, 0xb0,
0x22, 0x18, 0x89, 0x43, 0x32, 0xdc, 0x35, 0xc3, 0x10, 0x6c, 0x61, 0xca, 0xda,
0xfc, 0x13, 0xf0, 0x14, 0xe1, 0x64, 0xd0, 0x47, 0xbb, 0x7a, 0x33, 0x29, 0xb4,
0x36, 0x57, 0xbb, 0x9a, 0x73, 0x29, 0xf1, 0x0e, 0x2a, 0xfe, 0x72, 0xc1, 0x3d,
0xb7, 0xdb, 0x29, 0xbf, 0xdc, 0x76, 0xba, 0xad, 0x15, 0x88, 0x05, 0x4b, 0x21,
0x37, 0x5c, 0x7f, 0xa4, 0x10, 0x84, 0x9b, 0x98, 0xd9, 0xcc, 0x17, 0xf0, 0x0d,
0x13, 0xb5, 0xef, 0x34, 0x44, 0x27, 0x33, 0x57, 0x7a, 0x8d, 0x39, 0x54, 0x48,
0x85, 0xd6, 0xa0, 0x66, 0xb9, 0x07, 0x22, 0xf6, 0xbb, 0x56, 0xa7, 0x5d, 0x49,
0x2a, 0x61, 0xd5, 0xe7, 0x2a, 0x58, 0x60, 0x39, 0x08, 0x93, 0x1a, 0x0d, 0xb2,
0xb9, 0xc1, 0xca, 0xc8, 0x0c, 0x9e, 0x7b, 0x21, 0x65, 0x8d, 0xdd, 0x17, 0x56,
0x3f, 0xcb, 0x29, 0xce, 0x8e, 0x8d, 0x9f, 0xe7, 0xc2, 0xbe, 0x24, 0x99, 0xcd,
0x5e, 0x33, 0x7f, 0x69, 0x01, 0x91, 0x7d, 0x3f, 0xba, 0x86, 0xfd, 0x9a, 0xfd,
0x81, 0xad, 0x4f, 0xfd, 0xe1, 0x81, 0x58, 0xe0, 0x94, 0x0a, 0x49, 0x8d, 0x4c,
0x1d, 0x59, 0x70, 0x80, 0x7d, 0x2b, 0xf5, 0xb7, 0xda, 0x6f, 0x95, 0x35, 0x91,
0xb8, 0x48, 0xe2, 0x59, 0xa7, 0x86, 0xaf, 0x3a, 0x8e, 0xf4, 0x4f, 0xd3, 0xf1,
0x26, 0x3c, 0x4d, 0xda, 0x21, 0xfc, 0x35, 0xfb, 0xb5, 0x94, 0x7d, 0xf1, 0x13,
0x6a, 0x44, 0x11, 0xbb, 0x4d, 0x4f, 0xfb, 0x9a, 0xa6, 0xd6, 0xfc, 0x48, 0xfb,
0x95, 0x36, 0xb8, 0xea, 0x77, 0x1a, 0x3a, 0x7f, 0x5e, 0xbb, 0x43, 0xfa, 0x98,
0x75, 0xfb, 0xf8, 0x83, 0xd0, 0xad, 0xd1, 0xa1, 0x2e, 0xa1, 0xe9, 0xf5, 0xf9,
0x57, 0xbc, 0x26, 0xf4, 0xd5, 0x3b, 0x3b, 0xfd, 0x70, 0x97, 0x50, 0x58, 0x94,
0x8e, 0x31, 0xc0, 0x75, 0xeb, 0xd2, 0xf7, 0xa6, 0xa6, 0xa3, 0x12, 0x93, 0x78,
0x0b, 0xc7, 0x45, 0xf9, 0x3e, 0x37, 0x5b, 0x07, 0x6c, 0x96, 0xe9, 0x02, 0x32,
0x6a, 0x38, 0xa5, 0x90, 0xec, 0x90, 0x33, 0xa8, 0x10, 0x78, 0x0b, 0x63, 0xf7,
0x12, 0x71, 0x19, 0x06, 0x3d, 0x30, 0xa1, 0xcc, 0xbb, 0x32, 0xd4, 0xc4, 0x66,
0x22, 0x45, 0x3e, 0x22, 0x7d, 0x9c, 0x38, 0xc8, 0xcc, 0xc9, 0xf4, 0xd6, 0xe0,
0x32, 0xd7, 0x8e, 0xff, 0x29, 0x54, 0x65, 0x7e, 0x25, 0xd3, 0xa7, 0xd4, 0x65,
0x6e, 0x64, 0xed, 0x0b, 0x9f, 0x0c, 0xfa, 0xe9, 0x4b, 0xaf, 0x65, 0xf6, 0xeb,
0x53, 0x8d, 0x57, 0x32, 0x03, 0x43, 0x94, 0xcb, 0xc6, 0x96, 0x7a, 0x65, 0xb0,
0x33, 0x17, 0xe4, 0xea, 0xb3, 0x21, 0xd6, 0xa7, 0xb2, 0x44, 0x6e, 0x37, 0xb2,
0x1c, 0xfc, 0xf9, 0xd9, 0x0f, 0x89, 0x6e, 0xa1, 0xab, 0x72, 0xc6, 0xb3, 0x9b,
0x5c, 0x7e, 0xbb, 0x99, 0x2d, 0xba, 0x42, 0xb8, 0xff, 0xec, 0xee, 0x06, 0x8c,
0x07, 0xe3, 0x71, 0xce, 0xf3, 0x9c, 0xf2, 0x76, 0x4e, 0x68, 0x68, 0x0e, 0x23,
0x34, 0x2e, 0xd7, 0xb5, 0x70, 0x29, 0xc9, 0x8b, 0x54, 0x93, 0x2b, 0xc8, 0x4d,
0xcf, 0xad, 0x04, 0xf6, 0xe4, 0x62, 0x88, 0x88, 0x98, 0xab, 0xb9, 0x7f, 0x61,
0x96, 0x41, 0x1e, 0xe5, 0x3e, 0xcd, 0x7d, 0x98, 0x6e, 0x15, 0x0c, 0xe1, 0xfc,
0x13, 0x30, 0x1e, 0x80, 0xe7, 0x8c, 0x04, 0xac, 0x09, 0x88, 0xe1, 0x14, 0x83,
0xf3, 0x38, 0x2f, 0xc8, 0x12, 0x8e, 0xd9, 0x82, 0x5a, 0x10, 0x10, 0xf8, 0xb5,
0xe6, 0x6c, 0x80, 0x0b, 0xe5, 0x54, 0xe9, 0x3f, 0x4b, 0x47, 0x8c, 0x36, 0x79,
0x7d, 0x11, 0x9e, 0xa4, 0x15, 0xc8, 0x9f, 0xdc, 0xe3, 0x08, 0xb3, 0x25, 0x2f,
0x2f, 0x2b, 0xef, 0x22, 0xf6, 0x7d, 0xcb, 0xad, 0xbc, 0xd7, 0xf8, 0xc5, 0xf9,
0x89, 0xc2, 0xb0, 0x36, 0xeb, 0xfc, 0x17, 0x41, 0x83, 0x82, 0xd4, 0xfc, 0xc2,
0xe0, 0xc7, 0xdc, 0x99, 0xbc, 0x87, 0x3a, 0x09, 0xf7, 0x44, 0xfe, 0x45, 0x98,
0x35, 0xd7, 0x8a, 0x1b, 0x88, 0xb2, 0x0e, 0x0d, 0x83, 0x2b, 0x91, 0x9b, 0xf3,
0x32, 0xb9, 0x24, 0xdd, 0x6f, 0x1c, 0x9c, 0xdb, 0xcd, 0x1d, 0x42, 0x9e, 0xb3,
0xcd, 0xae, 0x6e, 0x49, 0xfc, 0xc1, 0x4d, 0x81, 0x2f, 0xf7, 0x24, 0xf0, 0x6c,
0x11, 0xfd, 0xbc, 0x2f, 0xc8, 0x1d, 0x79, 0x67, 0x79, 0x7d, 0xad, 0x0e, 0x61,
0x1e, 0x05, 0x5e, 0xd3, 0x1f, 0x64, 0xc0, 0x0a, 0xa4, 0x05, 0x17, 0x97, 0xec,
0x11, 0xde, 0x0d, 0xdd, 0x63, 0x9b, 0xec, 0x8e, 0x41, 0x78, 0x52, 0x99, 0xc8,
0xc7, 0x05, 0xbf, 0xd1, 0xf7, 0x0a, 0x10, 0x7c, 0xbd, 0xf7, 0xa7, 0x68, 0x72,
0x01, 0x93, 0xef, 0xa3, 0x2e, 0xe3, 0x1f, 0x42, 0x9d, 0xc2, 0x1f, 0x46, 0x8d,
0x60, 0xed, 0x89, 0x56, 0x93, 0xb2, 0xdb, 0x71, 0x2e, 0xec, 0x39, 0xfc, 0x6d,
0x58, 0xa0, 0x43, 0x75, 0xef, 0x8f, 0x80, 0x56, 0xef, 0xe6, 0x2a, 0x44, 0x3e,
0x54, 0x30, 0x24, 0x78, 0x2b, 0xe8, 0x14, 0xb0, 0x05, 0x0a, 0x21, 0xa8, 0xb0,
0x8a, 0x58, 0x83, 0x29, 0x12, 0x06, 0xd5, 0x48, 0x0b, 0xcf, 0xfc, 0xdf, 0x4c,
0xe7, 0xaf, 0xf1, 0x9c, 0xf0, 0x6b, 0x2b, 0xd1, 0x14, 0xa9, 0x3a, 0xfc, 0x42,
0x59, 0x82, 0xb0, 0x95, 0x19, 0x03, 0x8c, 0x17, 0x3a, 0x20, 0xfa, 0x0b, 0x01,
0xf4, 0x4f, 0x61, 0xd7, 0x6c, 0x14, 0x86, 0x46, 0xf8, 0x68, 0xc0, 0x17, 0xb2,
0x0b, 0xe3, 0x51, 0xd2, 0x42, 0x51, 0x2b, 0x12, 0x65, 0x2a, 0xc4, 0x63, 0xaf,
0x15, 0xb6, 0x62, 0x68, 0xd8, 0x10, 0xcc, 0xc7, 0xf0, 0xdd, 0xe1, 0xe1, 0xd8,
0x87, 0x64, 0x3a, 0x96, 0x81, 0xc5, 0x60, 0xef, 0x67, 0xc6, 0x88, 0x2a, 0x45,
0xeb, 0x44, 0x2a, 0xd1, 0x05, 0xd1, 0x0d, 0xd1, 0x4d, 0xd1, 0x43, 0x11, 0x08,
0xfb, 0x0a, 0xb5, 0x5b, 0xdc, 0x29, 0x2e, 0xc5, 0xad, 0x10, 0x13, 0xc4, 0xf5,
0x4c, 0x92, 0xd8, 0x6c, 0xe9, 0x63, 0xe7, 0x46, 0x24, 0x88, 0xb3, 0x0c, 0x63,
0x38, 0x5f, 0x31, 0x13, 0xbf, 0x84, 0xb4, 0x98, 0x74, 0x40, 0xfc, 0x4a, 0x7f,
0x58, 0x04, 0x2e, 0xc2, 0xb5, 0xcf, 0x29, 0x9a, 0x95, 0x12, 0xd1, 0xee, 0x5d,
0x84, 0x35, 0xd8, 0xd1, 0xfd, 0x8b, 0x30, 0x45, 0x52, 0xe2, 0xe1, 0x7c, 0x5a,
0x11, 0xa3, 0x88, 0x86, 0xc6, 0x03, 0x0e, 0xf9, 0xa8, 0x42, 0x75, 0x91, 0xd9,
0xb2, 0x42, 0xe2, 0x15, 0xbd, 0xa2, 0xfe, 0x7d, 0x34, 0xa8, 0x7e, 0xa9, 0xc4,
0x5f, 0x72, 0x59, 0xb2, 0x51, 0x12, 0x6a, 0xef, 0xcf, 0x3b, 0x27, 0x21, 0x4a,
0x9f, 0x60, 0x5f, 0xba, 0x7a, 0x93, 0xbc, 0x38, 0xa7, 0xe0, 0xfb, 0x88, 0x8d,
0xc4, 0x5f, 0xc4, 0x7f, 0x24, 0x73, 0xa4, 0xb6, 0x5c, 0x1f, 0x52, 0x88, 0xf4,
0x84, 0xdd, 0x2d, 0xb4, 0xd9, 0xb2, 0x65, 0x69, 0x86, 0x74, 0x67, 0x53, 0x94,
0xf4, 0x99, 0xa4, 0x44, 0x3a, 0x5a, 0xcd, 0x97, 0x02, 0x08, 0xa9, 0xf4, 0x93,
0xc1, 0x97, 0xa7, 0x96, 0x52, 0x88, 0x0d, 0xa4, 0x49, 0x59, 0xfb, 0xd8, 0x32,
0x52, 0xb3, 0x3e, 0x92, 0x65, 0xdb, 0x30, 0x00, 0x39, 0x2b, 0xad, 0x77, 0x07,
0x4f, 0xb8, 0xcd, 0x05, 0xc5, 0xb7, 0x9b, 0x62, 0xe6, 0xde, 0x62, 0x6d, 0x6e,
0xaa, 0x31, 0xc4, 0x15, 0x93, 0x8a, 0xf3, 0x8a, 0x85, 0xc5, 0xea, 0x04, 0x50,
0xb8, 0x4b, 0x5c, 0x53, 0x71, 0xaa, 0x74, 0xa0, 0x78, 0x77, 0xb1, 0x4d, 0x89,
0x6f, 0x09, 0xb9, 0x24, 0xa1, 0xa4, 0xb0, 0xa4, 0xa4, 0xe4, 0x5b, 0x76, 0x4b,
0xc9, 0x07, 0xd5, 0x38, 0x62, 0x16, 0x17, 0xcc, 0x1d, 0x2a, 0x59, 0x53, 0xb2,
0xaf, 0xe4, 0x42, 0x89, 0xa9, 0x30, 0x4b, 0xd3, 0x9f, 0x58, 0x41, 0x9e, 0xbf,
0x60, 0x41, 0xa9, 0x4f, 0x29, 0xa6, 0x74, 0x5b, 0xce, 0xa2, 0xa4, 0xe4, 0xd2,
0xcd, 0x81, 0xdb, 0x4a, 0x73, 0xb4, 0xf9, 0xda, 0x31, 0xd7, 0xaf, 0x13, 0xde,
0xbe, 0xc4, 0xc5, 0x99, 0x74, 0x3e, 0x7f, 0x9b, 0xec, 0x8c, 0xec, 0x9a, 0x6c,
0x4d, 0xa7, 0x7f, 0xd9, 0x23, 0xda, 0x2d, 0x59, 0x70, 0xd9, 0x0e, 0x99, 0x7d,
0xc9, 0xfe, 0x66, 0x4d, 0xfd, 0x0a, 0x7d, 0x75, 0xc6, 0x7c, 0x9f, 0xda, 0x32,
0x2b, 0xad, 0x0d, 0x57, 0x59, 0xc6, 0x48, 0xee, 0x2f, 0x0b, 0x29, 0x0f, 0x2b,
0xdb, 0x50, 0xb6, 0x5c, 0xe8, 0x23, 0x5e, 0x8f, 0x3e, 0x5d, 0xe6, 0xd0, 0x7a,
0xbd, 0xec, 0xff, 0x00,
};
optimizesize void *__big5hkscs_decmap(void) {
return xload(&__big5hkscs_decmap_ptr,
__big5hkscs_decmap_rodata,
10118, 12438); /* 81.3475% profit */
}
| 62,604 | 792 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__jisx0213_1_emp_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __jisx0213_1_emp_decmap_ptr;
static const unsigned char __jisx0213_1_emp_decmap_rodata[] = {
0xe3, 0x66, 0xb0, 0x15, 0xfa, 0xf7, 0x1f, 0x1d, 0x4a, 0x0b, 0x63, 0x8a, 0x61,
0x83, 0x79, 0x22, 0xc4, 0xa9, 0x43, 0x85, 0x7b, 0x25, 0xe6, 0x73, 0xe3, 0x93,
0xdf, 0x22, 0x86, 0x4d, 0xd4, 0x44, 0xee, 0x88, 0x21, 0x39, 0xb6, 0x91, 0x0f,
0x8f, 0x98, 0xda, 0x9b, 0xa3, 0x8b, 0x25, 0x9b, 0xd3, 0xd0, 0x46, 0x9b, 0x8f,
0xee, 0x7d, 0x21, 0x7c, 0xa1, 0xe4, 0x9b, 0x50, 0x18, 0x8e, 0xd3, 0x2f, 0x91,
0xa4, 0x9b, 0xb6, 0x30, 0xf6, 0x7f, 0x96, 0x43, 0x1e, 0xf1, 0xea, 0xbf, 0x14,
0x50, 0x23, 0x14, 0x5a, 0xca, 0xca, 0x9b, 0x50, 0x45, 0xce, 0x36, 0x4f, 0x58,
0x08, 0x00,
};
optimizesize void *__jisx0213_1_emp_decmap(void) {
return xload(&__jisx0213_1_emp_decmap_ptr,
__jisx0213_1_emp_decmap_rodata,
93, 680); /* 13.6765% profit */
}
| 932 | 21 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/_codecs_hk.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define USING_IMPORTED_MAPS
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/cjkcodecs/cjkcodecs.h"
#include "third_party/python/Modules/cjkcodecs/somanyencodings.h"
/* clang-format off */
PYTHON_PROVIDE("_codecs_hk");
PYTHON_PROVIDE("_codecs_hk.__map_big5hkscs");
PYTHON_PROVIDE("_codecs_hk.__map_big5hkscs_bmp");
PYTHON_PROVIDE("_codecs_hk.__map_big5hkscs_nonbmp");
PYTHON_PROVIDE("_codecs_hk.getcodec");
/*
* _codecs_hk.c: Codecs collection for encodings from Hong Kong
*
* Written by Hye-Shik "Bourne to Macro" Chang <[email protected]>
*/
static const unsigned char big5hkscs_phint_0[] = {
32,5,95,68,15,82,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,44,4,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,15,0,0,0,0,0,
32,87,43,247,252,110,242,144,11,0,0,0,192,237,164,15,38,193,155,118,242,239,
222,251,250,247,15,50,68,175,254,239,5,0,0,0,224,251,71,128,193,2,0,132,100,4,
130,64,32,162,130,133,164,145,0,16,1,0,0,0,144,72,12,0,48,0,84,3,48,68,24,19,
53,137,38,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,64,0,32,43,153,32,16,99,40,36,
1,0,0,0,0,80,96,212,0,210,42,24,157,104,53,151,79,216,248,32,196,130,28,40,2,
0,0,0,0,214,81,10,224,0,129,134,22,67,196,53,17,55,96,230,122,109,5,12,61,0,0,
0,0,153,57,128,7,34,254,129,144,24,144,12,116,48,208,160,9,41,21,253,4,0,0,0,
0,223,128,64,8,8,176,219,196,96,237,118,125,249,29,228,211,133,166,205,5,0,0,
0,0,12,0,110,186,9,47,96,84,0,30,120,104,34,112,86,158,37,243,142,7,0,0,0,192,
94,44,188,155,223,93,108,109,4,67,96,54,74,96,216,62,7,196,200,1,0,0,0,160,
177,197,98,11,12,34,62,204,37,184,1,174,237,92,104,13,148,74,181,0,0,0,0,0,
244,3,18,17,16,68,2,53,144,235,14,153,7,209,202,5,130,161,160,0,0,0,0,52,24,
160,137,231,156,91,8,132,3,2,218,144,236,219,135,133,191,162,45,0,0,0,0,118,
58,118,98,130,148,24,1,24,125,254,141,87,39,19,210,91,55,25,12,0,0,0,0,110,
139,33,145,0,0,0,64,0,0,0,2,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,
0,0,0,0,0,0,0,2,0,0,0,0,0,0,142,120,110,95,63,126,221,61,247,252,155,252,174,
210,255,143,107,1,0,0,0,192,159,255,234,186,186,93,188,115,159,250,216,214,
222,37,75,94,151,218,42,1,0,0,0,224,182,153,27,216,116,230,79,21,191,41,230,
255,38,117,109,227,255,155,82,0,0,0,0,80,96,126,111,153,169,80,14,0,128,16,
216,35,0,37,16,144,244,235,117,0,0,0,0,208,219,0,160,152,178,123,6,82,32,152,
22,200,61,9,0,0,1,0,0,0,0,0,0,0,4,40,200,34,0,2,0,0,16,32,130,80,64,48,1,0,16,
0,4,0,0,0,0,74,4,1,16,20,0,128,0,4,255,253,36,
};
static const unsigned char big5hkscs_phint_12130[] = {
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,128,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,
};
static const unsigned char big5hkscs_phint_21924[] = {
0,0,0,0,0,26,172,248,250,90,192,250,51,0,0,0,0,0,129,0,160,156,130,144,9,1,
180,192,176,3,86,2,160,66,45,136,1,0,0,0,0,146,119,139,96,5,201,33,6,70,56,96,
72,192,180,36,222,132,224,192,36,0,0,0,0,205,80,197,52,192,40,162,173,124,153,
24,88,18,34,196,66,162,83,142,30,0,0,0,128,52,135,11,21,209,64,250,61,0,4,210,
5,72,8,22,230,28,165,0,8,0,0,0,192,45,22,20,128,24,58,212,25,136,28,138,4,
};
/*
* BIG5HKSCS codec
*/
CODEC_INIT(big5hkscs)
{
return 0;
}
/*
* There are four possible pair unicode -> big5hkscs maps as in HKSCS 2004:
* U+00CA U+0304 -> 8862 (U+00CA alone is mapped to 8866)
* U+00CA U+030C -> 8864
* U+00EA U+0304 -> 88a3 (U+00EA alone is mapped to 88a7)
* U+00EA U+030C -> 88a5
* These are handled by not mapping tables but a hand-written code.
*/
static const DBCHAR big5hkscs_pairenc_table[4] = {0x8862, 0x8864, 0x88a3, 0x88a5};
ENCODER(big5hkscs)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
Py_ssize_t insize;
if (c < 0x80) {
REQUIRE_OUTBUF(1);
**outbuf = (unsigned char)c;
NEXT(1, 1);
continue;
}
insize = 1;
REQUIRE_OUTBUF(2);
if (c < 0x10000) {
if (TRYMAP_ENC(big5hkscs_bmp, code, c)) {
if (code == MULTIC) {
Py_UCS4 c2;
if (inlen - *inpos >= 2)
c2 = INCHAR2;
else
c2 = 0;
if (inlen - *inpos >= 2 &&
((c & 0xffdf) == 0x00ca) &&
((c2 & 0xfff7) == 0x0304)) {
code = big5hkscs_pairenc_table[
((c >> 4) |
(c2 >> 3)) & 3];
insize = 2;
}
else if (inlen - *inpos < 2 &&
!(flags & MBENC_FLUSH))
return MBERR_TOOFEW;
else {
if (c == 0xca)
code = 0x8866;
else /* c == 0xea */
code = 0x88a7;
}
}
}
else if (TRYMAP_ENC(big5, code, c))
;
else
return 1;
}
else if (c < 0x20000)
return insize;
else if (c < 0x30000) {
if (TRYMAP_ENC(big5hkscs_nonbmp, code, c & 0xffff))
;
else
return insize;
}
else
return insize;
OUTBYTE1(code >> 8);
OUTBYTE2(code & 0xFF);
NEXT(insize, 2);
}
return 0;
}
#define BH2S(c1, c2) (((c1) - 0x87) * (0xfe - 0x40 + 1) + ((c2) - 0x40))
DECODER(big5hkscs)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_UCS4 decoded;
if (c < 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
REQUIRE_INBUF(2);
if (0xc6 > c || c > 0xc8 || (c < 0xc7 && INBYTE2 < 0xa1)) {
if (TRYMAP_DEC(big5, decoded, c, INBYTE2)) {
OUTCHAR(decoded);
NEXT_IN(2);
continue;
}
}
if (TRYMAP_DEC(big5hkscs, decoded, c, INBYTE2))
{
int s = BH2S(c, INBYTE2);
const unsigned char *hintbase;
assert(0x87 <= c && c <= 0xfe);
assert(0x40 <= INBYTE2 && INBYTE2 <= 0xfe);
if (BH2S(0x87, 0x40) <= s && s <= BH2S(0xa0, 0xfe)) {
hintbase = big5hkscs_phint_0;
s -= BH2S(0x87, 0x40);
}
else if (BH2S(0xc6,0xa1) <= s && s <= BH2S(0xc8,0xfe)){
hintbase = big5hkscs_phint_12130;
s -= BH2S(0xc6, 0xa1);
}
else if (BH2S(0xf9,0xd6) <= s && s <= BH2S(0xfe,0xfe)){
hintbase = big5hkscs_phint_21924;
s -= BH2S(0xf9, 0xd6);
}
else
return MBERR_INTERNAL;
if (hintbase[s >> 3] & (1 << (s & 7))) {
OUTCHAR(decoded | 0x20000);
NEXT_IN(2);
}
else {
OUTCHAR(decoded);
NEXT_IN(2);
}
continue;
}
switch ((c << 8) | INBYTE2) {
case 0x8862: OUTCHAR2(0x00ca, 0x0304); break;
case 0x8864: OUTCHAR2(0x00ca, 0x030c); break;
case 0x88a3: OUTCHAR2(0x00ea, 0x0304); break;
case 0x88a5: OUTCHAR2(0x00ea, 0x030c); break;
default: return 1;
}
NEXT_IN(2); /* all decoded code points are pairs, above. */
}
return 0;
}
BEGIN_MAPPINGS_LIST
MAPPING_DECONLY(big5hkscs)
MAPPING_ENCONLY(big5hkscs_bmp)
MAPPING_ENCONLY(big5hkscs_nonbmp)
END_MAPPINGS_LIST
BEGIN_CODECS_LIST
CODEC_STATELESS_WINIT(big5hkscs)
END_CODECS_LIST
I_AM_A_MODULE_FOR(hk)
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__codecs_hk = {
"_codecs_hk",
PyInit__codecs_hk,
};
| 8,730 | 243 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/multibytecodec.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/codecs.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pycapsule.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/cjkcodecs/multibytecodec.h"
/* clang-format off */
PYTHON_PROVIDE("_multibytecodec");
PYTHON_PROVIDE("_multibytecodec.MultibyteIncrementalDecoder");
PYTHON_PROVIDE("_multibytecodec.MultibyteIncrementalEncoder");
PYTHON_PROVIDE("_multibytecodec.MultibyteStreamReader");
PYTHON_PROVIDE("_multibytecodec.MultibyteStreamWriter");
PYTHON_PROVIDE("_multibytecodec.__create_codec");
#include "third_party/python/Modules/cjkcodecs/clinic/multibytecodec.inc"
/*
* multibytecodec.c: Common Multibyte Codec Implementation
*
* Written by Hye-Shik Chang <[email protected]>
*/
/*[clinic input]
module _multibytecodec
class _multibytecodec.MultibyteCodec "MultibyteCodecObject *" "&MultibyteCodec_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=6ad689546cbb5450]*/
typedef struct {
PyObject *inobj;
Py_ssize_t inpos, inlen;
unsigned char *outbuf, *outbuf_end;
PyObject *excobj, *outobj;
} MultibyteEncodeBuffer;
typedef struct {
const unsigned char *inbuf, *inbuf_top, *inbuf_end;
PyObject *excobj;
_PyUnicodeWriter writer;
} MultibyteDecodeBuffer;
static char *incnewkwarglist[] = {"errors", NULL};
static char *streamkwarglist[] = {"stream", "errors", NULL};
static PyObject *multibytecodec_encode(MultibyteCodec *,
MultibyteCodec_State *, PyObject *, Py_ssize_t *,
PyObject *, int);
#define MBENC_RESET MBENC_MAX<<1 /* reset after an encoding session */
_Py_IDENTIFIER(write);
static PyObject *
make_tuple(PyObject *object, Py_ssize_t len)
{
PyObject *v, *w;
if (object == NULL)
return NULL;
v = PyTuple_New(2);
if (v == NULL) {
Py_DECREF(object);
return NULL;
}
PyTuple_SET_ITEM(v, 0, object);
w = PyLong_FromSsize_t(len);
if (w == NULL) {
Py_DECREF(v);
return NULL;
}
PyTuple_SET_ITEM(v, 1, w);
return v;
}
static PyObject *
internal_error_callback(const char *errors)
{
if (errors == NULL || strcmp(errors, "strict") == 0)
return ERROR_STRICT;
else if (strcmp(errors, "ignore") == 0)
return ERROR_IGNORE;
else if (strcmp(errors, "replace") == 0)
return ERROR_REPLACE;
else
return PyUnicode_FromString(errors);
}
static PyObject *
call_error_callback(PyObject *errors, PyObject *exc)
{
PyObject *args, *cb, *r;
const char *str;
assert(PyUnicode_Check(errors));
str = PyUnicode_AsUTF8(errors);
if (str == NULL)
return NULL;
cb = PyCodec_LookupError(str);
if (cb == NULL)
return NULL;
args = PyTuple_New(1);
if (args == NULL) {
Py_DECREF(cb);
return NULL;
}
PyTuple_SET_ITEM(args, 0, exc);
Py_INCREF(exc);
r = PyObject_CallObject(cb, args);
Py_DECREF(args);
Py_DECREF(cb);
return r;
}
static PyObject *
codecctx_errors_get(MultibyteStatefulCodecContext *self, void *Py_UNUSED(ignored))
{
const char *errors;
if (self->errors == ERROR_STRICT)
errors = "strict";
else if (self->errors == ERROR_IGNORE)
errors = "ignore";
else if (self->errors == ERROR_REPLACE)
errors = "replace";
else {
Py_INCREF(self->errors);
return self->errors;
}
return PyUnicode_FromString(errors);
}
static int
codecctx_errors_set(MultibyteStatefulCodecContext *self, PyObject *value,
void *closure)
{
PyObject *cb;
const char *str;
if (!PyUnicode_Check(value)) {
PyErr_SetString(PyExc_TypeError, "errors must be a string");
return -1;
}
str = PyUnicode_AsUTF8(value);
if (str == NULL)
return -1;
cb = internal_error_callback(str);
if (cb == NULL)
return -1;
ERROR_DECREF(self->errors);
self->errors = cb;
return 0;
}
/* This getset handlers list is used by all the stateful codec objects */
static PyGetSetDef codecctx_getsets[] = {
{"errors", (getter)codecctx_errors_get,
(setter)codecctx_errors_set,
PyDoc_STR("how to treat errors")},
{NULL,}
};
static int
expand_encodebuffer(MultibyteEncodeBuffer *buf, Py_ssize_t esize)
{
Py_ssize_t orgpos, orgsize, incsize;
orgpos = (Py_ssize_t)((char *)buf->outbuf -
PyBytes_AS_STRING(buf->outobj));
orgsize = PyBytes_GET_SIZE(buf->outobj);
incsize = (esize < (orgsize >> 1) ? (orgsize >> 1) | 1 : esize);
if (orgsize > PY_SSIZE_T_MAX - incsize) {
PyErr_NoMemory();
return -1;
}
if (_PyBytes_Resize(&buf->outobj, orgsize + incsize) == -1)
return -1;
buf->outbuf = (unsigned char *)PyBytes_AS_STRING(buf->outobj) +orgpos;
buf->outbuf_end = (unsigned char *)PyBytes_AS_STRING(buf->outobj)
+ PyBytes_GET_SIZE(buf->outobj);
return 0;
}
#define REQUIRE_ENCODEBUFFER(buf, s) do { \
if ((s) < 0 || (s) > (buf)->outbuf_end - (buf)->outbuf) \
if (expand_encodebuffer(buf, s) == -1) \
goto errorexit; \
} while(0)
/**
* MultibyteCodec object
*/
static int
multibytecodec_encerror(MultibyteCodec *codec,
MultibyteCodec_State *state,
MultibyteEncodeBuffer *buf,
PyObject *errors, Py_ssize_t e)
{
PyObject *retobj = NULL, *retstr = NULL, *tobj;
Py_ssize_t retstrsize, newpos;
Py_ssize_t esize, start, end;
const char *reason;
if (e > 0) {
reason = "illegal multibyte sequence";
esize = e;
}
else {
switch (e) {
case MBERR_TOOSMALL:
REQUIRE_ENCODEBUFFER(buf, -1);
return 0; /* retry it */
case MBERR_TOOFEW:
reason = "incomplete multibyte sequence";
esize = (Py_ssize_t)buf->inpos;
break;
case MBERR_INTERNAL:
PyErr_SetString(PyExc_RuntimeError,
"internal codec error");
return -1;
default:
PyErr_SetString(PyExc_RuntimeError,
"unknown runtime error");
return -1;
}
}
if (errors == ERROR_REPLACE) {
PyObject *replchar;
Py_ssize_t r;
Py_ssize_t inpos;
int kind;
void *data;
replchar = PyUnicode_FromOrdinal('?');
if (replchar == NULL)
goto errorexit;
kind = PyUnicode_KIND(replchar);
data = PyUnicode_DATA(replchar);
inpos = 0;
for (;;) {
Py_ssize_t outleft = (Py_ssize_t)(buf->outbuf_end - buf->outbuf);
r = codec->encode(state, codec->config,
kind, data, &inpos, 1,
&buf->outbuf, outleft, 0);
if (r == MBERR_TOOSMALL) {
REQUIRE_ENCODEBUFFER(buf, -1);
continue;
}
else
break;
}
Py_DECREF(replchar);
if (r != 0) {
REQUIRE_ENCODEBUFFER(buf, 1);
*buf->outbuf++ = '?';
}
}
if (errors == ERROR_IGNORE || errors == ERROR_REPLACE) {
buf->inpos += esize;
return 0;
}
start = (Py_ssize_t)buf->inpos;
end = start + esize;
/* use cached exception object if available */
if (buf->excobj == NULL) {
buf->excobj = PyObject_CallFunction(PyExc_UnicodeEncodeError,
"sOnns",
codec->encoding, buf->inobj,
start, end, reason);
if (buf->excobj == NULL)
goto errorexit;
}
else
if (PyUnicodeEncodeError_SetStart(buf->excobj, start) != 0 ||
PyUnicodeEncodeError_SetEnd(buf->excobj, end) != 0 ||
PyUnicodeEncodeError_SetReason(buf->excobj, reason) != 0)
goto errorexit;
if (errors == ERROR_STRICT) {
PyCodec_StrictErrors(buf->excobj);
goto errorexit;
}
retobj = call_error_callback(errors, buf->excobj);
if (retobj == NULL)
goto errorexit;
if (!PyTuple_Check(retobj) || PyTuple_GET_SIZE(retobj) != 2 ||
(!PyUnicode_Check((tobj = PyTuple_GET_ITEM(retobj, 0))) && !PyBytes_Check(tobj)) ||
!PyLong_Check(PyTuple_GET_ITEM(retobj, 1))) {
PyErr_SetString(PyExc_TypeError,
"encoding error handler must return "
"(str, int) tuple");
goto errorexit;
}
if (PyUnicode_Check(tobj)) {
Py_ssize_t inpos;
retstr = multibytecodec_encode(codec, state, tobj,
&inpos, ERROR_STRICT,
MBENC_FLUSH);
if (retstr == NULL)
goto errorexit;
}
else {
Py_INCREF(tobj);
retstr = tobj;
}
assert(PyBytes_Check(retstr));
retstrsize = PyBytes_GET_SIZE(retstr);
if (retstrsize > 0) {
REQUIRE_ENCODEBUFFER(buf, retstrsize);
memcpy(buf->outbuf, PyBytes_AS_STRING(retstr), retstrsize);
buf->outbuf += retstrsize;
}
newpos = PyLong_AsSsize_t(PyTuple_GET_ITEM(retobj, 1));
if (newpos < 0 && !PyErr_Occurred())
newpos += (Py_ssize_t)buf->inlen;
if (newpos < 0 || newpos > buf->inlen) {
PyErr_Clear();
PyErr_Format(PyExc_IndexError,
"position %zd from error handler out of bounds",
newpos);
goto errorexit;
}
buf->inpos = newpos;
Py_DECREF(retobj);
Py_DECREF(retstr);
return 0;
errorexit:
Py_XDECREF(retobj);
Py_XDECREF(retstr);
return -1;
}
static int
multibytecodec_decerror(MultibyteCodec *codec,
MultibyteCodec_State *state,
MultibyteDecodeBuffer *buf,
PyObject *errors, Py_ssize_t e)
{
PyObject *retobj = NULL, *retuni = NULL;
Py_ssize_t newpos;
const char *reason;
Py_ssize_t esize, start, end;
if (e > 0) {
reason = "illegal multibyte sequence";
esize = e;
}
else {
switch (e) {
case MBERR_TOOSMALL:
return 0; /* retry it */
case MBERR_TOOFEW:
reason = "incomplete multibyte sequence";
esize = (Py_ssize_t)(buf->inbuf_end - buf->inbuf);
break;
case MBERR_INTERNAL:
PyErr_SetString(PyExc_RuntimeError,
"internal codec error");
return -1;
case MBERR_EXCEPTION:
return -1;
default:
PyErr_SetString(PyExc_RuntimeError,
"unknown runtime error");
return -1;
}
}
if (errors == ERROR_REPLACE) {
if (_PyUnicodeWriter_WriteChar(&buf->writer,
Py_UNICODE_REPLACEMENT_CHARACTER) < 0)
goto errorexit;
}
if (errors == ERROR_IGNORE || errors == ERROR_REPLACE) {
buf->inbuf += esize;
return 0;
}
start = (Py_ssize_t)(buf->inbuf - buf->inbuf_top);
end = start + esize;
/* use cached exception object if available */
if (buf->excobj == NULL) {
buf->excobj = PyUnicodeDecodeError_Create(codec->encoding,
(const char *)buf->inbuf_top,
(Py_ssize_t)(buf->inbuf_end - buf->inbuf_top),
start, end, reason);
if (buf->excobj == NULL)
goto errorexit;
}
else
if (PyUnicodeDecodeError_SetStart(buf->excobj, start) ||
PyUnicodeDecodeError_SetEnd(buf->excobj, end) ||
PyUnicodeDecodeError_SetReason(buf->excobj, reason))
goto errorexit;
if (errors == ERROR_STRICT) {
PyCodec_StrictErrors(buf->excobj);
goto errorexit;
}
retobj = call_error_callback(errors, buf->excobj);
if (retobj == NULL)
goto errorexit;
if (!PyTuple_Check(retobj) || PyTuple_GET_SIZE(retobj) != 2 ||
!PyUnicode_Check((retuni = PyTuple_GET_ITEM(retobj, 0))) ||
!PyLong_Check(PyTuple_GET_ITEM(retobj, 1))) {
PyErr_SetString(PyExc_TypeError,
"decoding error handler must return "
"(str, int) tuple");
goto errorexit;
}
if (_PyUnicodeWriter_WriteStr(&buf->writer, retuni) < 0)
goto errorexit;
newpos = PyLong_AsSsize_t(PyTuple_GET_ITEM(retobj, 1));
if (newpos < 0 && !PyErr_Occurred())
newpos += (Py_ssize_t)(buf->inbuf_end - buf->inbuf_top);
if (newpos < 0 || buf->inbuf_top + newpos > buf->inbuf_end) {
PyErr_Clear();
PyErr_Format(PyExc_IndexError,
"position %zd from error handler out of bounds",
newpos);
goto errorexit;
}
buf->inbuf = buf->inbuf_top + newpos;
Py_DECREF(retobj);
return 0;
errorexit:
Py_XDECREF(retobj);
return -1;
}
static PyObject *
multibytecodec_encode(MultibyteCodec *codec,
MultibyteCodec_State *state,
PyObject *text, Py_ssize_t *inpos_t,
PyObject *errors, int flags)
{
MultibyteEncodeBuffer buf;
Py_ssize_t finalsize, r = 0;
Py_ssize_t datalen;
int kind;
void *data;
if (PyUnicode_READY(text) < 0)
return NULL;
datalen = PyUnicode_GET_LENGTH(text);
if (datalen == 0 && !(flags & MBENC_RESET))
return PyBytes_FromStringAndSize(NULL, 0);
buf.excobj = NULL;
buf.outobj = NULL;
buf.inobj = text; /* borrowed reference */
buf.inpos = 0;
buf.inlen = datalen;
kind = PyUnicode_KIND(buf.inobj);
data = PyUnicode_DATA(buf.inobj);
if (datalen > (PY_SSIZE_T_MAX - 16) / 2) {
PyErr_NoMemory();
goto errorexit;
}
buf.outobj = PyBytes_FromStringAndSize(NULL, datalen * 2 + 16);
if (buf.outobj == NULL)
goto errorexit;
buf.outbuf = (unsigned char *)PyBytes_AS_STRING(buf.outobj);
buf.outbuf_end = buf.outbuf + PyBytes_GET_SIZE(buf.outobj);
while (buf.inpos < buf.inlen) {
/* we don't reuse inleft and outleft here.
* error callbacks can relocate the cursor anywhere on buffer*/
Py_ssize_t outleft = (Py_ssize_t)(buf.outbuf_end - buf.outbuf);
r = codec->encode(state, codec->config,
kind, data,
&buf.inpos, buf.inlen,
&buf.outbuf, outleft, flags);
if ((r == 0) || (r == MBERR_TOOFEW && !(flags & MBENC_FLUSH)))
break;
else if (multibytecodec_encerror(codec, state, &buf, errors,r))
goto errorexit;
else if (r == MBERR_TOOFEW)
break;
}
if (codec->encreset != NULL && (flags & MBENC_RESET))
for (;;) {
Py_ssize_t outleft;
outleft = (Py_ssize_t)(buf.outbuf_end - buf.outbuf);
r = codec->encreset(state, codec->config, &buf.outbuf,
outleft);
if (r == 0)
break;
else if (multibytecodec_encerror(codec, state,
&buf, errors, r))
goto errorexit;
}
finalsize = (Py_ssize_t)((char *)buf.outbuf -
PyBytes_AS_STRING(buf.outobj));
if (finalsize != PyBytes_GET_SIZE(buf.outobj))
if (_PyBytes_Resize(&buf.outobj, finalsize) == -1)
goto errorexit;
if (inpos_t)
*inpos_t = buf.inpos;
Py_XDECREF(buf.excobj);
return buf.outobj;
errorexit:
Py_XDECREF(buf.excobj);
Py_XDECREF(buf.outobj);
return NULL;
}
/*[clinic input]
_multibytecodec.MultibyteCodec.encode
input: object
errors: str(accept={str, NoneType}) = NULL
Return an encoded string version of `input'.
'errors' may be given to set a different error handling scheme. Default is
'strict' meaning that encoding errors raise a UnicodeEncodeError. Other possible
values are 'ignore', 'replace' and 'xmlcharrefreplace' as well as any other name
registered with codecs.register_error that can handle UnicodeEncodeErrors.
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteCodec_encode_impl(MultibyteCodecObject *self,
PyObject *input,
const char *errors)
/*[clinic end generated code: output=7b26652045ba56a9 input=05f6ced3c8dd0582]*/
{
MultibyteCodec_State state;
PyObject *errorcb, *r, *ucvt;
Py_ssize_t datalen;
if (PyUnicode_Check(input))
ucvt = NULL;
else {
input = ucvt = PyObject_Str(input);
if (input == NULL)
return NULL;
else if (!PyUnicode_Check(input)) {
PyErr_SetString(PyExc_TypeError,
"couldn't convert the object to unicode.");
Py_DECREF(ucvt);
return NULL;
}
}
if (PyUnicode_READY(input) < 0) {
Py_XDECREF(ucvt);
return NULL;
}
datalen = PyUnicode_GET_LENGTH(input);
errorcb = internal_error_callback(errors);
if (errorcb == NULL) {
Py_XDECREF(ucvt);
return NULL;
}
if (self->codec->encinit != NULL &&
self->codec->encinit(&state, self->codec->config) != 0)
goto errorexit;
r = multibytecodec_encode(self->codec, &state,
input, NULL, errorcb,
MBENC_FLUSH | MBENC_RESET);
if (r == NULL)
goto errorexit;
ERROR_DECREF(errorcb);
Py_XDECREF(ucvt);
return make_tuple(r, datalen);
errorexit:
ERROR_DECREF(errorcb);
Py_XDECREF(ucvt);
return NULL;
}
/*[clinic input]
_multibytecodec.MultibyteCodec.decode
input: Py_buffer
errors: str(accept={str, NoneType}) = NULL
Decodes 'input'.
'errors' may be given to set a different error handling scheme. Default is
'strict' meaning that encoding errors raise a UnicodeDecodeError. Other possible
values are 'ignore' and 'replace' as well as any other name registered with
codecs.register_error that is able to handle UnicodeDecodeErrors."
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteCodec_decode_impl(MultibyteCodecObject *self,
Py_buffer *input,
const char *errors)
/*[clinic end generated code: output=ff419f65bad6cc77 input=a7d45f87f75e5e02]*/
{
MultibyteCodec_State state;
MultibyteDecodeBuffer buf;
PyObject *errorcb, *res;
const char *data;
Py_ssize_t datalen;
data = input->buf;
datalen = input->len;
errorcb = internal_error_callback(errors);
if (errorcb == NULL) {
return NULL;
}
if (datalen == 0) {
ERROR_DECREF(errorcb);
return make_tuple(PyUnicode_New(0, 0), 0);
}
_PyUnicodeWriter_Init(&buf.writer);
buf.writer.min_length = datalen;
buf.excobj = NULL;
buf.inbuf = buf.inbuf_top = (unsigned char *)data;
buf.inbuf_end = buf.inbuf_top + datalen;
if (self->codec->decinit != NULL &&
self->codec->decinit(&state, self->codec->config) != 0)
goto errorexit;
while (buf.inbuf < buf.inbuf_end) {
Py_ssize_t inleft, r;
inleft = (Py_ssize_t)(buf.inbuf_end - buf.inbuf);
r = self->codec->decode(&state, self->codec->config,
&buf.inbuf, inleft, &buf.writer);
if (r == 0)
break;
else if (multibytecodec_decerror(self->codec, &state,
&buf, errorcb, r))
goto errorexit;
}
res = _PyUnicodeWriter_Finish(&buf.writer);
if (res == NULL)
goto errorexit;
Py_XDECREF(buf.excobj);
ERROR_DECREF(errorcb);
return make_tuple(res, datalen);
errorexit:
ERROR_DECREF(errorcb);
Py_XDECREF(buf.excobj);
_PyUnicodeWriter_Dealloc(&buf.writer);
return NULL;
}
static struct PyMethodDef multibytecodec_methods[] = {
_MULTIBYTECODEC_MULTIBYTECODEC_ENCODE_METHODDEF
_MULTIBYTECODEC_MULTIBYTECODEC_DECODE_METHODDEF
{NULL, NULL},
};
static void
multibytecodec_dealloc(MultibyteCodecObject *self)
{
PyObject_Del(self);
}
static PyTypeObject MultibyteCodec_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"MultibyteCodec", /* tp_name */
sizeof(MultibyteCodecObject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)multibytecodec_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iterext */
multibytecodec_methods, /* tp_methods */
};
/**
* Utility functions for stateful codec mechanism
*/
#define STATEFUL_DCTX(o) ((MultibyteStatefulDecoderContext *)(o))
#define STATEFUL_ECTX(o) ((MultibyteStatefulEncoderContext *)(o))
static PyObject *
encoder_encode_stateful(MultibyteStatefulEncoderContext *ctx,
PyObject *unistr, int final)
{
PyObject *ucvt, *r = NULL;
PyObject *inbuf = NULL;
Py_ssize_t inpos, datalen;
PyObject *origpending = NULL;
if (PyUnicode_Check(unistr))
ucvt = NULL;
else {
unistr = ucvt = PyObject_Str(unistr);
if (unistr == NULL)
return NULL;
else if (!PyUnicode_Check(unistr)) {
PyErr_SetString(PyExc_TypeError,
"couldn't convert the object to str.");
Py_DECREF(ucvt);
return NULL;
}
}
if (ctx->pending) {
PyObject *inbuf_tmp;
Py_INCREF(ctx->pending);
origpending = ctx->pending;
Py_INCREF(ctx->pending);
inbuf_tmp = ctx->pending;
PyUnicode_Append(&inbuf_tmp, unistr);
if (inbuf_tmp == NULL)
goto errorexit;
Py_CLEAR(ctx->pending);
inbuf = inbuf_tmp;
}
else {
origpending = NULL;
Py_INCREF(unistr);
inbuf = unistr;
}
if (PyUnicode_READY(inbuf) < 0)
goto errorexit;
inpos = 0;
datalen = PyUnicode_GET_LENGTH(inbuf);
r = multibytecodec_encode(ctx->codec, &ctx->state,
inbuf, &inpos,
ctx->errors, final ? MBENC_FLUSH | MBENC_RESET : 0);
if (r == NULL) {
/* recover the original pending buffer */
Py_XSETREF(ctx->pending, origpending);
origpending = NULL;
goto errorexit;
}
Py_XDECREF(origpending);
if (inpos < datalen) {
if (datalen - inpos > MAXENCPENDING) {
/* normal codecs can't reach here */
PyErr_SetString(PyExc_UnicodeError,
"pending buffer overflow");
goto errorexit;
}
ctx->pending = PyUnicode_Substring(inbuf, inpos, datalen);
if (ctx->pending == NULL) {
/* normal codecs can't reach here */
goto errorexit;
}
}
Py_DECREF(inbuf);
Py_XDECREF(ucvt);
return r;
errorexit:
Py_XDECREF(r);
Py_XDECREF(ucvt);
Py_XDECREF(origpending);
Py_XDECREF(inbuf);
return NULL;
}
static int
decoder_append_pending(MultibyteStatefulDecoderContext *ctx,
MultibyteDecodeBuffer *buf)
{
Py_ssize_t npendings;
npendings = (Py_ssize_t)(buf->inbuf_end - buf->inbuf);
if (npendings + ctx->pendingsize > MAXDECPENDING ||
npendings > PY_SSIZE_T_MAX - ctx->pendingsize) {
PyErr_SetString(PyExc_UnicodeError, "pending buffer overflow");
return -1;
}
memcpy(ctx->pending + ctx->pendingsize, buf->inbuf, npendings);
ctx->pendingsize += npendings;
return 0;
}
static int
decoder_prepare_buffer(MultibyteDecodeBuffer *buf, const char *data,
Py_ssize_t size)
{
buf->inbuf = buf->inbuf_top = (const unsigned char *)data;
buf->inbuf_end = buf->inbuf_top + size;
buf->writer.min_length += size;
return 0;
}
static int
decoder_feed_buffer(MultibyteStatefulDecoderContext *ctx,
MultibyteDecodeBuffer *buf)
{
while (buf->inbuf < buf->inbuf_end) {
Py_ssize_t inleft;
Py_ssize_t r;
inleft = (Py_ssize_t)(buf->inbuf_end - buf->inbuf);
r = ctx->codec->decode(&ctx->state, ctx->codec->config,
&buf->inbuf, inleft, &buf->writer);
if (r == 0 || r == MBERR_TOOFEW)
break;
else if (multibytecodec_decerror(ctx->codec, &ctx->state,
buf, ctx->errors, r))
return -1;
}
return 0;
}
/*[clinic input]
class _multibytecodec.MultibyteIncrementalEncoder "MultibyteIncrementalEncoderObject *" "&MultibyteIncrementalEncoder_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=3be82909cd08924d]*/
/*[clinic input]
_multibytecodec.MultibyteIncrementalEncoder.encode
input: object
final: int(c_default="0") = False
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteIncrementalEncoder_encode_impl(MultibyteIncrementalEncoderObject *self,
PyObject *input,
int final)
/*[clinic end generated code: output=123361b6c505e2c1 input=a345c688fa664f92]*/
{
return encoder_encode_stateful(STATEFUL_ECTX(self), input, final);
}
/*[clinic input]
_multibytecodec.MultibyteIncrementalEncoder.reset
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteIncrementalEncoder_reset_impl(MultibyteIncrementalEncoderObject *self)
/*[clinic end generated code: output=b4125d8f537a253f input=930f06760707b6ea]*/
{
/* Longest output: 4 bytes (b'\x0F\x1F(B') with ISO 2022 */
unsigned char buffer[4], *outbuf;
Py_ssize_t r;
if (self->codec->encreset != NULL) {
outbuf = buffer;
r = self->codec->encreset(&self->state, self->codec->config,
&outbuf, sizeof(buffer));
if (r != 0)
return NULL;
}
Py_CLEAR(self->pending);
Py_RETURN_NONE;
}
static struct PyMethodDef mbiencoder_methods[] = {
_MULTIBYTECODEC_MULTIBYTEINCREMENTALENCODER_ENCODE_METHODDEF
_MULTIBYTECODEC_MULTIBYTEINCREMENTALENCODER_RESET_METHODDEF
{NULL, NULL},
};
static PyObject *
mbiencoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
MultibyteIncrementalEncoderObject *self;
PyObject *codec = NULL;
char *errors = NULL;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|s:IncrementalEncoder",
incnewkwarglist, &errors))
return NULL;
self = (MultibyteIncrementalEncoderObject *)type->tp_alloc(type, 0);
if (self == NULL)
return NULL;
codec = PyObject_GetAttrString((PyObject *)type, "codec");
if (codec == NULL)
goto errorexit;
if (!MultibyteCodec_Check(codec)) {
PyErr_SetString(PyExc_TypeError, "codec is unexpected type");
goto errorexit;
}
self->codec = ((MultibyteCodecObject *)codec)->codec;
self->pending = NULL;
self->errors = internal_error_callback(errors);
if (self->errors == NULL)
goto errorexit;
if (self->codec->encinit != NULL &&
self->codec->encinit(&self->state, self->codec->config) != 0)
goto errorexit;
Py_DECREF(codec);
return (PyObject *)self;
errorexit:
Py_XDECREF(self);
Py_XDECREF(codec);
return NULL;
}
static int
mbiencoder_init(PyObject *self, PyObject *args, PyObject *kwds)
{
return 0;
}
static int
mbiencoder_traverse(MultibyteIncrementalEncoderObject *self,
visitproc visit, void *arg)
{
if (ERROR_ISCUSTOM(self->errors))
Py_VISIT(self->errors);
return 0;
}
static void
mbiencoder_dealloc(MultibyteIncrementalEncoderObject *self)
{
PyObject_GC_UnTrack(self);
ERROR_DECREF(self->errors);
Py_TYPE(self)->tp_free(self);
}
static PyTypeObject MultibyteIncrementalEncoder_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"MultibyteIncrementalEncoder", /* tp_name */
sizeof(MultibyteIncrementalEncoderObject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)mbiencoder_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC
| Py_TPFLAGS_BASETYPE, /* tp_flags */
0, /* tp_doc */
(traverseproc)mbiencoder_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iterext */
mbiencoder_methods, /* tp_methods */
0, /* tp_members */
codecctx_getsets, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
mbiencoder_init, /* tp_init */
0, /* tp_alloc */
mbiencoder_new, /* tp_new */
};
/*[clinic input]
class _multibytecodec.MultibyteIncrementalDecoder "MultibyteIncrementalDecoderObject *" "&MultibyteIncrementalDecoder_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=f6003faaf2cea692]*/
/*[clinic input]
_multibytecodec.MultibyteIncrementalDecoder.decode
input: Py_buffer
final: int(c_default="0") = False
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteIncrementalDecoder_decode_impl(MultibyteIncrementalDecoderObject *self,
Py_buffer *input,
int final)
/*[clinic end generated code: output=b9b9090e8a9ce2ba input=576631c61906d39d]*/
{
MultibyteDecodeBuffer buf;
char *data, *wdata = NULL;
Py_ssize_t wsize, size, origpending;
PyObject *res;
data = input->buf;
size = input->len;
_PyUnicodeWriter_Init(&buf.writer);
buf.excobj = NULL;
origpending = self->pendingsize;
if (self->pendingsize == 0) {
wsize = size;
wdata = data;
}
else {
if (size > PY_SSIZE_T_MAX - self->pendingsize) {
PyErr_NoMemory();
goto errorexit;
}
wsize = size + self->pendingsize;
wdata = PyMem_Malloc(wsize);
if (wdata == NULL) {
PyErr_NoMemory();
goto errorexit;
}
memcpy(wdata, self->pending, self->pendingsize);
memcpy(wdata + self->pendingsize, data, size);
self->pendingsize = 0;
}
if (decoder_prepare_buffer(&buf, wdata, wsize) != 0)
goto errorexit;
if (decoder_feed_buffer(STATEFUL_DCTX(self), &buf))
goto errorexit;
if (final && buf.inbuf < buf.inbuf_end) {
if (multibytecodec_decerror(self->codec, &self->state,
&buf, self->errors, MBERR_TOOFEW)) {
/* recover the original pending buffer */
memcpy(self->pending, wdata, origpending);
self->pendingsize = origpending;
goto errorexit;
}
}
if (buf.inbuf < buf.inbuf_end) { /* pending sequence still exists */
if (decoder_append_pending(STATEFUL_DCTX(self), &buf) != 0)
goto errorexit;
}
res = _PyUnicodeWriter_Finish(&buf.writer);
if (res == NULL)
goto errorexit;
if (wdata != data)
PyMem_Del(wdata);
Py_XDECREF(buf.excobj);
return res;
errorexit:
if (wdata != NULL && wdata != data)
PyMem_Del(wdata);
Py_XDECREF(buf.excobj);
_PyUnicodeWriter_Dealloc(&buf.writer);
return NULL;
}
/*[clinic input]
_multibytecodec.MultibyteIncrementalDecoder.reset
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteIncrementalDecoder_reset_impl(MultibyteIncrementalDecoderObject *self)
/*[clinic end generated code: output=da423b1782c23ed1 input=3b63b3be85b2fb45]*/
{
if (self->codec->decreset != NULL &&
self->codec->decreset(&self->state, self->codec->config) != 0)
return NULL;
self->pendingsize = 0;
Py_RETURN_NONE;
}
static struct PyMethodDef mbidecoder_methods[] = {
_MULTIBYTECODEC_MULTIBYTEINCREMENTALDECODER_DECODE_METHODDEF
_MULTIBYTECODEC_MULTIBYTEINCREMENTALDECODER_RESET_METHODDEF
{NULL, NULL},
};
static PyObject *
mbidecoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
MultibyteIncrementalDecoderObject *self;
PyObject *codec = NULL;
char *errors = NULL;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|s:IncrementalDecoder",
incnewkwarglist, &errors))
return NULL;
self = (MultibyteIncrementalDecoderObject *)type->tp_alloc(type, 0);
if (self == NULL)
return NULL;
codec = PyObject_GetAttrString((PyObject *)type, "codec");
if (codec == NULL)
goto errorexit;
if (!MultibyteCodec_Check(codec)) {
PyErr_SetString(PyExc_TypeError, "codec is unexpected type");
goto errorexit;
}
self->codec = ((MultibyteCodecObject *)codec)->codec;
self->pendingsize = 0;
self->errors = internal_error_callback(errors);
if (self->errors == NULL)
goto errorexit;
if (self->codec->decinit != NULL &&
self->codec->decinit(&self->state, self->codec->config) != 0)
goto errorexit;
Py_DECREF(codec);
return (PyObject *)self;
errorexit:
Py_XDECREF(self);
Py_XDECREF(codec);
return NULL;
}
static int
mbidecoder_init(PyObject *self, PyObject *args, PyObject *kwds)
{
return 0;
}
static int
mbidecoder_traverse(MultibyteIncrementalDecoderObject *self,
visitproc visit, void *arg)
{
if (ERROR_ISCUSTOM(self->errors))
Py_VISIT(self->errors);
return 0;
}
static void
mbidecoder_dealloc(MultibyteIncrementalDecoderObject *self)
{
PyObject_GC_UnTrack(self);
ERROR_DECREF(self->errors);
Py_TYPE(self)->tp_free(self);
}
static PyTypeObject MultibyteIncrementalDecoder_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"MultibyteIncrementalDecoder", /* tp_name */
sizeof(MultibyteIncrementalDecoderObject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)mbidecoder_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC
| Py_TPFLAGS_BASETYPE, /* tp_flags */
0, /* tp_doc */
(traverseproc)mbidecoder_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iterext */
mbidecoder_methods, /* tp_methods */
0, /* tp_members */
codecctx_getsets, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
mbidecoder_init, /* tp_init */
0, /* tp_alloc */
mbidecoder_new, /* tp_new */
};
/*[clinic input]
class _multibytecodec.MultibyteStreamReader "MultibyteStreamReaderObject *" "MultibyteStreamReader_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=d323634b74976f09]*/
static PyObject *
mbstreamreader_iread(MultibyteStreamReaderObject *self,
const char *method, Py_ssize_t sizehint)
{
MultibyteDecodeBuffer buf;
PyObject *cres, *res;
Py_ssize_t rsize;
if (sizehint == 0)
return PyUnicode_New(0, 0);
_PyUnicodeWriter_Init(&buf.writer);
buf.excobj = NULL;
cres = NULL;
for (;;) {
int endoffile;
if (sizehint < 0)
cres = PyObject_CallMethod(self->stream,
method, NULL);
else
cres = PyObject_CallMethod(self->stream,
method, "i", sizehint);
if (cres == NULL)
goto errorexit;
if (!PyBytes_Check(cres)) {
PyErr_Format(PyExc_TypeError,
"stream function returned a "
"non-bytes object (%.100s)",
cres->ob_type->tp_name);
goto errorexit;
}
endoffile = (PyBytes_GET_SIZE(cres) == 0);
if (self->pendingsize > 0) {
PyObject *ctr;
char *ctrdata;
if (PyBytes_GET_SIZE(cres) > PY_SSIZE_T_MAX - self->pendingsize) {
PyErr_NoMemory();
goto errorexit;
}
rsize = PyBytes_GET_SIZE(cres) + self->pendingsize;
ctr = PyBytes_FromStringAndSize(NULL, rsize);
if (ctr == NULL)
goto errorexit;
ctrdata = PyBytes_AS_STRING(ctr);
memcpy(ctrdata, self->pending, self->pendingsize);
memcpy(ctrdata + self->pendingsize,
PyBytes_AS_STRING(cres),
PyBytes_GET_SIZE(cres));
Py_DECREF(cres);
cres = ctr;
self->pendingsize = 0;
}
rsize = PyBytes_GET_SIZE(cres);
if (decoder_prepare_buffer(&buf, PyBytes_AS_STRING(cres),
rsize) != 0)
goto errorexit;
if (rsize > 0 && decoder_feed_buffer(
(MultibyteStatefulDecoderContext *)self, &buf))
goto errorexit;
if (endoffile || sizehint < 0) {
if (buf.inbuf < buf.inbuf_end &&
multibytecodec_decerror(self->codec, &self->state,
&buf, self->errors, MBERR_TOOFEW))
goto errorexit;
}
if (buf.inbuf < buf.inbuf_end) { /* pending sequence exists */
if (decoder_append_pending(STATEFUL_DCTX(self),
&buf) != 0)
goto errorexit;
}
Py_DECREF(cres);
cres = NULL;
if (sizehint < 0 || buf.writer.pos != 0 || rsize == 0)
break;
sizehint = 1; /* read 1 more byte and retry */
}
res = _PyUnicodeWriter_Finish(&buf.writer);
if (res == NULL)
goto errorexit;
Py_XDECREF(cres);
Py_XDECREF(buf.excobj);
return res;
errorexit:
Py_XDECREF(cres);
Py_XDECREF(buf.excobj);
_PyUnicodeWriter_Dealloc(&buf.writer);
return NULL;
}
/*[clinic input]
_multibytecodec.MultibyteStreamReader.read
sizeobj: object = None
/
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteStreamReader_read_impl(MultibyteStreamReaderObject *self,
PyObject *sizeobj)
/*[clinic end generated code: output=35621eb75355d5b8 input=015b0d3ff2fca485]*/
{
Py_ssize_t size;
if (sizeobj == Py_None)
size = -1;
else if (PyLong_Check(sizeobj))
size = PyLong_AsSsize_t(sizeobj);
else {
PyErr_SetString(PyExc_TypeError, "arg 1 must be an integer");
return NULL;
}
if (size == -1 && PyErr_Occurred())
return NULL;
return mbstreamreader_iread(self, "read", size);
}
/*[clinic input]
_multibytecodec.MultibyteStreamReader.readline
sizeobj: object = None
/
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteStreamReader_readline_impl(MultibyteStreamReaderObject *self,
PyObject *sizeobj)
/*[clinic end generated code: output=4fbfaae1ed457a11 input=41ccc64f9bb0cec3]*/
{
Py_ssize_t size;
if (sizeobj == Py_None)
size = -1;
else if (PyLong_Check(sizeobj))
size = PyLong_AsSsize_t(sizeobj);
else {
PyErr_SetString(PyExc_TypeError, "arg 1 must be an integer");
return NULL;
}
if (size == -1 && PyErr_Occurred())
return NULL;
return mbstreamreader_iread(self, "readline", size);
}
/*[clinic input]
_multibytecodec.MultibyteStreamReader.readlines
sizehintobj: object = None
/
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteStreamReader_readlines_impl(MultibyteStreamReaderObject *self,
PyObject *sizehintobj)
/*[clinic end generated code: output=e7c4310768ed2ad4 input=54932f5d4d88e880]*/
{
PyObject *r, *sr;
Py_ssize_t sizehint;
if (sizehintobj == Py_None)
sizehint = -1;
else if (PyLong_Check(sizehintobj))
sizehint = PyLong_AsSsize_t(sizehintobj);
else {
PyErr_SetString(PyExc_TypeError, "arg 1 must be an integer");
return NULL;
}
if (sizehint == -1 && PyErr_Occurred())
return NULL;
r = mbstreamreader_iread(self, "read", sizehint);
if (r == NULL)
return NULL;
sr = PyUnicode_Splitlines(r, 1);
Py_DECREF(r);
return sr;
}
/*[clinic input]
_multibytecodec.MultibyteStreamReader.reset
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteStreamReader_reset_impl(MultibyteStreamReaderObject *self)
/*[clinic end generated code: output=138490370a680abc input=5d4140db84b5e1e2]*/
{
if (self->codec->decreset != NULL &&
self->codec->decreset(&self->state, self->codec->config) != 0)
return NULL;
self->pendingsize = 0;
Py_RETURN_NONE;
}
static struct PyMethodDef mbstreamreader_methods[] = {
_MULTIBYTECODEC_MULTIBYTESTREAMREADER_READ_METHODDEF
_MULTIBYTECODEC_MULTIBYTESTREAMREADER_READLINE_METHODDEF
_MULTIBYTECODEC_MULTIBYTESTREAMREADER_READLINES_METHODDEF
_MULTIBYTECODEC_MULTIBYTESTREAMREADER_RESET_METHODDEF
{NULL, NULL},
};
static PyMemberDef mbstreamreader_members[] = {
{"stream", T_OBJECT,
offsetof(MultibyteStreamReaderObject, stream),
READONLY, NULL},
{NULL,}
};
static PyObject *
mbstreamreader_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
MultibyteStreamReaderObject *self;
PyObject *stream, *codec = NULL;
char *errors = NULL;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|s:StreamReader",
streamkwarglist, &stream, &errors))
return NULL;
self = (MultibyteStreamReaderObject *)type->tp_alloc(type, 0);
if (self == NULL)
return NULL;
codec = PyObject_GetAttrString((PyObject *)type, "codec");
if (codec == NULL)
goto errorexit;
if (!MultibyteCodec_Check(codec)) {
PyErr_SetString(PyExc_TypeError, "codec is unexpected type");
goto errorexit;
}
self->codec = ((MultibyteCodecObject *)codec)->codec;
self->stream = stream;
Py_INCREF(stream);
self->pendingsize = 0;
self->errors = internal_error_callback(errors);
if (self->errors == NULL)
goto errorexit;
if (self->codec->decinit != NULL &&
self->codec->decinit(&self->state, self->codec->config) != 0)
goto errorexit;
Py_DECREF(codec);
return (PyObject *)self;
errorexit:
Py_XDECREF(self);
Py_XDECREF(codec);
return NULL;
}
static int
mbstreamreader_init(PyObject *self, PyObject *args, PyObject *kwds)
{
return 0;
}
static int
mbstreamreader_traverse(MultibyteStreamReaderObject *self,
visitproc visit, void *arg)
{
if (ERROR_ISCUSTOM(self->errors))
Py_VISIT(self->errors);
Py_VISIT(self->stream);
return 0;
}
static void
mbstreamreader_dealloc(MultibyteStreamReaderObject *self)
{
PyObject_GC_UnTrack(self);
ERROR_DECREF(self->errors);
Py_XDECREF(self->stream);
Py_TYPE(self)->tp_free(self);
}
static PyTypeObject MultibyteStreamReader_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"MultibyteStreamReader", /* tp_name */
sizeof(MultibyteStreamReaderObject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)mbstreamreader_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC
| Py_TPFLAGS_BASETYPE, /* tp_flags */
0, /* tp_doc */
(traverseproc)mbstreamreader_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iterext */
mbstreamreader_methods, /* tp_methods */
mbstreamreader_members, /* tp_members */
codecctx_getsets, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
mbstreamreader_init, /* tp_init */
0, /* tp_alloc */
mbstreamreader_new, /* tp_new */
};
/*[clinic input]
class _multibytecodec.MultibyteStreamWriter "MultibyteStreamWriterObject *" "&MultibyteStreamWriter_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=cde22780a215d6ac]*/
static int
mbstreamwriter_iwrite(MultibyteStreamWriterObject *self,
PyObject *unistr)
{
PyObject *str, *wr;
str = encoder_encode_stateful(STATEFUL_ECTX(self), unistr, 0);
if (str == NULL)
return -1;
wr = _PyObject_CallMethodId(self->stream, &PyId_write, "O", str);
Py_DECREF(str);
if (wr == NULL)
return -1;
Py_DECREF(wr);
return 0;
}
/*[clinic input]
_multibytecodec.MultibyteStreamWriter.write
strobj: object
/
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteStreamWriter_write(MultibyteStreamWriterObject *self,
PyObject *strobj)
/*[clinic end generated code: output=e13ae841c895251e input=551dc4c018c10a2b]*/
{
if (mbstreamwriter_iwrite(self, strobj))
return NULL;
else
Py_RETURN_NONE;
}
/*[clinic input]
_multibytecodec.MultibyteStreamWriter.writelines
lines: object
/
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteStreamWriter_writelines(MultibyteStreamWriterObject *self,
PyObject *lines)
/*[clinic end generated code: output=e5c4285ac8e7d522 input=57797fe7008d4e96]*/
{
PyObject *strobj;
int i, r;
if (!PySequence_Check(lines)) {
PyErr_SetString(PyExc_TypeError,
"arg must be a sequence object");
return NULL;
}
for (i = 0; i < PySequence_Length(lines); i++) {
/* length can be changed even within this loop */
strobj = PySequence_GetItem(lines, i);
if (strobj == NULL)
return NULL;
r = mbstreamwriter_iwrite(self, strobj);
Py_DECREF(strobj);
if (r == -1)
return NULL;
}
/* PySequence_Length() can fail */
if (PyErr_Occurred())
return NULL;
Py_RETURN_NONE;
}
/*[clinic input]
_multibytecodec.MultibyteStreamWriter.reset
[clinic start generated code]*/
static PyObject *
_multibytecodec_MultibyteStreamWriter_reset_impl(MultibyteStreamWriterObject *self)
/*[clinic end generated code: output=8f54a4d9b03db5ff input=b56dbcbaf35cc10c]*/
{
PyObject *pwrt;
if (!self->pending)
Py_RETURN_NONE;
pwrt = multibytecodec_encode(self->codec, &self->state,
self->pending, NULL, self->errors,
MBENC_FLUSH | MBENC_RESET);
/* some pending buffer can be truncated when UnicodeEncodeError is
* raised on 'strict' mode. but, 'reset' method is designed to
* reset the pending buffer or states so failed string sequence
* ought to be missed */
Py_CLEAR(self->pending);
if (pwrt == NULL)
return NULL;
assert(PyBytes_Check(pwrt));
if (PyBytes_Size(pwrt) > 0) {
PyObject *wr;
wr = _PyObject_CallMethodId(self->stream, &PyId_write, "O", pwrt);
if (wr == NULL) {
Py_DECREF(pwrt);
return NULL;
}
}
Py_DECREF(pwrt);
Py_RETURN_NONE;
}
static PyObject *
mbstreamwriter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
MultibyteStreamWriterObject *self;
PyObject *stream, *codec = NULL;
char *errors = NULL;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|s:StreamWriter",
streamkwarglist, &stream, &errors))
return NULL;
self = (MultibyteStreamWriterObject *)type->tp_alloc(type, 0);
if (self == NULL)
return NULL;
codec = PyObject_GetAttrString((PyObject *)type, "codec");
if (codec == NULL)
goto errorexit;
if (!MultibyteCodec_Check(codec)) {
PyErr_SetString(PyExc_TypeError, "codec is unexpected type");
goto errorexit;
}
self->codec = ((MultibyteCodecObject *)codec)->codec;
self->stream = stream;
Py_INCREF(stream);
self->pending = NULL;
self->errors = internal_error_callback(errors);
if (self->errors == NULL)
goto errorexit;
if (self->codec->encinit != NULL &&
self->codec->encinit(&self->state, self->codec->config) != 0)
goto errorexit;
Py_DECREF(codec);
return (PyObject *)self;
errorexit:
Py_XDECREF(self);
Py_XDECREF(codec);
return NULL;
}
static int
mbstreamwriter_init(PyObject *self, PyObject *args, PyObject *kwds)
{
return 0;
}
static int
mbstreamwriter_traverse(MultibyteStreamWriterObject *self,
visitproc visit, void *arg)
{
if (ERROR_ISCUSTOM(self->errors))
Py_VISIT(self->errors);
Py_VISIT(self->stream);
return 0;
}
static void
mbstreamwriter_dealloc(MultibyteStreamWriterObject *self)
{
PyObject_GC_UnTrack(self);
ERROR_DECREF(self->errors);
Py_XDECREF(self->stream);
Py_TYPE(self)->tp_free(self);
}
static struct PyMethodDef mbstreamwriter_methods[] = {
_MULTIBYTECODEC_MULTIBYTESTREAMWRITER_WRITE_METHODDEF
_MULTIBYTECODEC_MULTIBYTESTREAMWRITER_WRITELINES_METHODDEF
_MULTIBYTECODEC_MULTIBYTESTREAMWRITER_RESET_METHODDEF
{NULL, NULL},
};
static PyMemberDef mbstreamwriter_members[] = {
{"stream", T_OBJECT,
offsetof(MultibyteStreamWriterObject, stream),
READONLY, NULL},
{NULL,}
};
static PyTypeObject MultibyteStreamWriter_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"MultibyteStreamWriter", /* tp_name */
sizeof(MultibyteStreamWriterObject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)mbstreamwriter_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC
| Py_TPFLAGS_BASETYPE, /* tp_flags */
0, /* tp_doc */
(traverseproc)mbstreamwriter_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iterext */
mbstreamwriter_methods, /* tp_methods */
mbstreamwriter_members, /* tp_members */
codecctx_getsets, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
mbstreamwriter_init, /* tp_init */
0, /* tp_alloc */
mbstreamwriter_new, /* tp_new */
};
/*[clinic input]
_multibytecodec.__create_codec
arg: object
/
[clinic start generated code]*/
static PyObject *
_multibytecodec___create_codec(PyObject *module, PyObject *arg)
/*[clinic end generated code: output=cfa3dce8260e809d input=6840b2a6b183fcfa]*/
{
MultibyteCodecObject *self;
MultibyteCodec *codec;
if (!PyCapsule_IsValid(arg, PyMultibyteCodec_CAPSULE_NAME)) {
PyErr_SetString(PyExc_ValueError, "argument type invalid");
return NULL;
}
codec = PyCapsule_GetPointer(arg, PyMultibyteCodec_CAPSULE_NAME);
if (codec->codecinit != NULL && codec->codecinit(codec->config) != 0)
return NULL;
self = PyObject_New(MultibyteCodecObject, &MultibyteCodec_Type);
if (self == NULL)
return NULL;
self->codec = codec;
return (PyObject *)self;
}
static struct PyMethodDef __methods[] = {
_MULTIBYTECODEC___CREATE_CODEC_METHODDEF
{NULL, NULL},
};
static struct PyModuleDef _multibytecodecmodule = {
PyModuleDef_HEAD_INIT,
"_multibytecodec",
NULL,
-1,
__methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__multibytecodec(void)
{
int i;
PyObject *m;
PyTypeObject *typelist[] = {
&MultibyteIncrementalEncoder_Type,
&MultibyteIncrementalDecoder_Type,
&MultibyteStreamReader_Type,
&MultibyteStreamWriter_Type,
NULL
};
if (PyType_Ready(&MultibyteCodec_Type) < 0)
return NULL;
m = PyModule_Create(&_multibytecodecmodule);
if (m == NULL)
return NULL;
for (i = 0; typelist[i] != NULL; i++) {
if (PyType_Ready(typelist[i]) < 0)
return NULL;
Py_INCREF(typelist[i]);
PyModule_AddObject(m, typelist[i]->tp_name,
(PyObject *)typelist[i]);
}
if (PyErr_Occurred()) {
Py_FatalError("can't initialize the _multibytecodec module");
Py_DECREF(m);
m = NULL;
}
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__multibytecodec = {
"_multibytecodec",
PyInit__multibytecodec,
};
| 60,983 | 1,918 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/_codecs_jp.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
/* clang-format off */
/*
* _codecs_jp.c: Codecs collection for Japanese encodings
*
* Written by Hye-Shik "Bourne to Macro" Chang <[email protected]>
*/
#define USING_BINARY_PAIR_SEARCH
#define EMPBASE 0x20000
#include "third_party/python/Modules/cjkcodecs/cjkcodecs.h"
#include "third_party/python/Modules/cjkcodecs/alg_jisx0201.inc"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Modules/cjkcodecs/somanyencodings.h"
PYTHON_PROVIDE("_codecs_jp");
PYTHON_PROVIDE("_codecs_jp.__map_cp932ext");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0208");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0212");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0213_1_bmp");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0213_1_emp");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0213_2_bmp");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0213_2_emp");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0213_bmp");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0213_emp");
PYTHON_PROVIDE("_codecs_jp.__map_jisx0213_pair");
PYTHON_PROVIDE("_codecs_jp.__map_jisxcommon");
PYTHON_PROVIDE("_codecs_jp.getcodec");
#include "third_party/python/Modules/cjkcodecs/emu_jisx0213_2000.inc"
/*
* CP932 codec
*/
ENCODER(cp932)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
unsigned char c1, c2;
if (c <= 0x80) {
WRITEBYTE1((unsigned char)c);
NEXT(1, 1);
continue;
}
else if (c >= 0xff61 && c <= 0xff9f) {
WRITEBYTE1(c - 0xfec0);
NEXT(1, 1);
continue;
}
else if (c >= 0xf8f0 && c <= 0xf8f3) {
/* Windows compatibility */
REQUIRE_OUTBUF(1);
if (c == 0xf8f0)
OUTBYTE1(0xa0);
else
OUTBYTE1(c - 0xf8f1 + 0xfd);
NEXT(1, 1);
continue;
}
if (c > 0xFFFF)
return 1;
REQUIRE_OUTBUF(2);
if (TRYMAP_ENC(cp932ext, code, c)) {
OUTBYTE1(code >> 8);
OUTBYTE2(code & 0xff);
}
else if (TRYMAP_ENC(jisxcommon, code, c)) {
if (code & 0x8000) /* MSB set: JIS X 0212 */
return 1;
/* JIS X 0208 */
c1 = code >> 8;
c2 = code & 0xff;
c2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21);
c1 = (c1 - 0x21) >> 1;
OUTBYTE1(c1 < 0x1f ? c1 + 0x81 : c1 + 0xc1);
OUTBYTE2(c2 < 0x3f ? c2 + 0x40 : c2 + 0x41);
}
else if (c >= 0xe000 && c < 0xe758) {
/* User-defined area */
c1 = (Py_UCS4)(c - 0xe000) / 188;
c2 = (Py_UCS4)(c - 0xe000) % 188;
OUTBYTE1(c1 + 0xf0);
OUTBYTE2(c2 < 0x3f ? c2 + 0x40 : c2 + 0x41);
}
else
return 1;
NEXT(1, 2);
}
return 0;
}
DECODER(cp932)
{
while (inleft > 0) {
unsigned char c = INBYTE1, c2;
Py_UCS4 decoded;
if (c <= 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
else if (c >= 0xa0 && c <= 0xdf) {
if (c == 0xa0)
OUTCHAR(0xf8f0); /* half-width katakana */
else
OUTCHAR(0xfec0 + c);
NEXT_IN(1);
continue;
}
else if (c >= 0xfd/* && c <= 0xff*/) {
/* Windows compatibility */
OUTCHAR(0xf8f1 - 0xfd + c);
NEXT_IN(1);
continue;
}
REQUIRE_INBUF(2);
c2 = INBYTE2;
if (TRYMAP_DEC(cp932ext, decoded, c, c2))
OUTCHAR(decoded);
else if ((c >= 0x81 && c <= 0x9f) || (c >= 0xe0 && c <= 0xea)){
if (c2 < 0x40 || (c2 > 0x7e && c2 < 0x80) || c2 > 0xfc)
return 1;
c = (c < 0xe0 ? c - 0x81 : c - 0xc1);
c2 = (c2 < 0x80 ? c2 - 0x40 : c2 - 0x41);
c = (2 * c + (c2 < 0x5e ? 0 : 1) + 0x21);
c2 = (c2 < 0x5e ? c2 : c2 - 0x5e) + 0x21;
if (TRYMAP_DEC(jisx0208, decoded, c, c2))
OUTCHAR(decoded);
else
return 1;
}
else if (c >= 0xf0 && c <= 0xf9) {
if ((c2 >= 0x40 && c2 <= 0x7e) ||
(c2 >= 0x80 && c2 <= 0xfc))
OUTCHAR(0xe000 + 188 * (c - 0xf0) +
(c2 < 0x80 ? c2 - 0x40 : c2 - 0x41));
else
return 1;
}
else
return 1;
NEXT_IN(2);
}
return 0;
}
/*
* EUC-JIS-2004 codec
*/
ENCODER(euc_jis_2004)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
Py_ssize_t insize;
if (c < 0x80) {
WRITEBYTE1(c);
NEXT(1, 1);
continue;
}
insize = 1;
if (c <= 0xFFFF) {
EMULATE_JISX0213_2000_ENCODE_BMP(code, c)
else if (TRYMAP_ENC(jisx0213_bmp, code, c)) {
if (code == MULTIC) {
if (inlen - *inpos < 2) {
if (flags & MBENC_FLUSH) {
code = find_pairencmap(
(ucs2_t)c, 0,
jisx0213_pair_encmap(),
JISX0213_ENCPAIRS);
if (code == DBCINV)
return 1;
}
else
return MBERR_TOOFEW;
}
else {
Py_UCS4 c2 = INCHAR2;
code = find_pairencmap(
(ucs2_t)c, c2,
jisx0213_pair_encmap(),
JISX0213_ENCPAIRS);
if (code == DBCINV) {
code = find_pairencmap(
(ucs2_t)c, 0,
jisx0213_pair_encmap(),
JISX0213_ENCPAIRS);
if (code == DBCINV)
return 1;
} else
insize = 2;
}
}
}
else if (TRYMAP_ENC(jisxcommon, code, c))
;
else if (c >= 0xff61 && c <= 0xff9f) {
/* JIS X 0201 half-width katakana */
WRITEBYTE2(0x8e, c - 0xfec0);
NEXT(1, 2);
continue;
}
else if (c == 0xff3c)
/* F/W REVERSE SOLIDUS (see NOTES) */
code = 0x2140;
else if (c == 0xff5e)
/* F/W TILDE (see NOTES) */
code = 0x2232;
else
return 1;
}
else if (c >> 16 == EMPBASE >> 16) {
EMULATE_JISX0213_2000_ENCODE_EMP(code, c)
else if (TRYMAP_ENC(jisx0213_emp, code, c & 0xffff))
;
else
return insize;
}
else
return insize;
if (code & 0x8000) {
/* Codeset 2 */
WRITEBYTE3(0x8f, code >> 8, (code & 0xFF) | 0x80);
NEXT(insize, 3);
} else {
/* Codeset 1 */
WRITEBYTE2((code >> 8) | 0x80, (code & 0xFF) | 0x80);
NEXT(insize, 2);
}
}
return 0;
}
DECODER(euc_jis_2004)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_UCS4 code, decoded;
if (c < 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
if (c == 0x8e) {
/* JIS X 0201 half-width katakana */
unsigned char c2;
REQUIRE_INBUF(2);
c2 = INBYTE2;
if (c2 >= 0xa1 && c2 <= 0xdf) {
OUTCHAR(0xfec0 + c2);
NEXT_IN(2);
}
else
return 1;
}
else if (c == 0x8f) {
unsigned char c2, c3;
REQUIRE_INBUF(3);
c2 = INBYTE2 ^ 0x80;
c3 = INBYTE3 ^ 0x80;
/* JIS X 0213 Plane 2 or JIS X 0212 (see NOTES) */
EMULATE_JISX0213_2000_DECODE_PLANE2(writer, c2, c3)
else if (TRYMAP_DEC(jisx0213_2_bmp, decoded, c2, c3))
OUTCHAR(decoded);
else if (TRYMAP_DEC(jisx0213_2_emp, code, c2, c3)) {
OUTCHAR(EMPBASE | code);
NEXT_IN(3);
continue;
}
else if (TRYMAP_DEC(jisx0212, decoded, c2, c3))
OUTCHAR(decoded);
else
return 1;
NEXT_IN(3);
}
else {
unsigned char c2;
REQUIRE_INBUF(2);
c ^= 0x80;
c2 = INBYTE2 ^ 0x80;
/* JIS X 0213 Plane 1 */
EMULATE_JISX0213_2000_DECODE_PLANE1(writer, c, c2)
else if (c == 0x21 && c2 == 0x40)
OUTCHAR(0xff3c);
else if (c == 0x22 && c2 == 0x32)
OUTCHAR(0xff5e);
else if (TRYMAP_DEC(jisx0208, decoded, c, c2))
OUTCHAR(decoded);
else if (TRYMAP_DEC(jisx0213_1_bmp, decoded, c, c2))
OUTCHAR(decoded);
else if (TRYMAP_DEC(jisx0213_1_emp, code, c, c2)) {
OUTCHAR(EMPBASE | code);
NEXT_IN(2);
continue;
}
else if (TRYMAP_DEC(jisx0213_pair, code, c, c2)) {
OUTCHAR2(code >> 16, code & 0xffff);
NEXT_IN(2);
continue;
}
else
return 1;
NEXT_IN(2);
}
}
return 0;
}
/*
* EUC-JP codec
*/
ENCODER(euc_jp)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
if (c < 0x80) {
WRITEBYTE1((unsigned char)c);
NEXT(1, 1);
continue;
}
if (c > 0xFFFF)
return 1;
if (TRYMAP_ENC(jisxcommon, code, c))
;
else if (c >= 0xff61 && c <= 0xff9f) {
/* JIS X 0201 half-width katakana */
WRITEBYTE2(0x8e, c - 0xfec0);
NEXT(1, 2);
continue;
}
#ifndef STRICT_BUILD
else if (c == 0xff3c) /* FULL-WIDTH REVERSE SOLIDUS */
code = 0x2140;
else if (c == 0xa5) { /* YEN SIGN */
WRITEBYTE1(0x5c);
NEXT(1, 1);
continue;
} else if (c == 0x203e) { /* OVERLINE */
WRITEBYTE1(0x7e);
NEXT(1, 1);
continue;
}
#endif
else
return 1;
if (code & 0x8000) {
/* JIS X 0212 */
WRITEBYTE3(0x8f, code >> 8, (code & 0xFF) | 0x80);
NEXT(1, 3);
} else {
/* JIS X 0208 */
WRITEBYTE2((code >> 8) | 0x80, (code & 0xFF) | 0x80);
NEXT(1, 2);
}
}
return 0;
}
DECODER(euc_jp)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_UCS4 decoded;
if (c < 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
if (c == 0x8e) {
/* JIS X 0201 half-width katakana */
unsigned char c2;
REQUIRE_INBUF(2);
c2 = INBYTE2;
if (c2 >= 0xa1 && c2 <= 0xdf) {
OUTCHAR(0xfec0 + c2);
NEXT_IN(2);
}
else
return 1;
}
else if (c == 0x8f) {
unsigned char c2, c3;
REQUIRE_INBUF(3);
c2 = INBYTE2;
c3 = INBYTE3;
/* JIS X 0212 */
if (TRYMAP_DEC(jisx0212, decoded, c2 ^ 0x80, c3 ^ 0x80)) {
OUTCHAR(decoded);
NEXT_IN(3);
}
else
return 1;
}
else {
unsigned char c2;
REQUIRE_INBUF(2);
c2 = INBYTE2;
/* JIS X 0208 */
#ifndef STRICT_BUILD
if (c == 0xa1 && c2 == 0xc0)
/* FULL-WIDTH REVERSE SOLIDUS */
OUTCHAR(0xff3c);
else
#endif
if (TRYMAP_DEC(jisx0208, decoded, c ^ 0x80, c2 ^ 0x80))
OUTCHAR(decoded);
else
return 1;
NEXT_IN(2);
}
}
return 0;
}
/*
* SHIFT_JIS codec
*/
ENCODER(shift_jis)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
unsigned char c1, c2;
#ifdef STRICT_BUILD
JISX0201_R_ENCODE(c, code)
#else
if (c < 0x80)
code = c;
else if (c == 0x00a5)
code = 0x5c; /* YEN SIGN */
else if (c == 0x203e)
code = 0x7e; /* OVERLINE */
#endif
else JISX0201_K_ENCODE(c, code)
else if (c > 0xFFFF)
return 1;
else
code = NOCHAR;
if (code < 0x80 || (code >= 0xa1 && code <= 0xdf)) {
REQUIRE_OUTBUF(1);
OUTBYTE1((unsigned char)code);
NEXT(1, 1);
continue;
}
REQUIRE_OUTBUF(2);
if (code == NOCHAR) {
if (TRYMAP_ENC(jisxcommon, code, c))
;
#ifndef STRICT_BUILD
else if (c == 0xff3c)
code = 0x2140; /* FULL-WIDTH REVERSE SOLIDUS */
#endif
else
return 1;
if (code & 0x8000) /* MSB set: JIS X 0212 */
return 1;
}
c1 = code >> 8;
c2 = code & 0xff;
c2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21);
c1 = (c1 - 0x21) >> 1;
OUTBYTE1(c1 < 0x1f ? c1 + 0x81 : c1 + 0xc1);
OUTBYTE2(c2 < 0x3f ? c2 + 0x40 : c2 + 0x41);
NEXT(1, 2);
}
return 0;
}
DECODER(shift_jis)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_UCS4 decoded;
#ifdef STRICT_BUILD
JISX0201_R_DECODE(c, writer)
#else
if (c < 0x80)
OUTCHAR(c);
#endif
else JISX0201_K_DECODE(c, writer)
else if ((c >= 0x81 && c <= 0x9f) || (c >= 0xe0 && c <= 0xea)){
unsigned char c1, c2;
REQUIRE_INBUF(2);
c2 = INBYTE2;
if (c2 < 0x40 || (c2 > 0x7e && c2 < 0x80) || c2 > 0xfc)
return 1;
c1 = (c < 0xe0 ? c - 0x81 : c - 0xc1);
c2 = (c2 < 0x80 ? c2 - 0x40 : c2 - 0x41);
c1 = (2 * c1 + (c2 < 0x5e ? 0 : 1) + 0x21);
c2 = (c2 < 0x5e ? c2 : c2 - 0x5e) + 0x21;
#ifndef STRICT_BUILD
if (c1 == 0x21 && c2 == 0x40) {
/* FULL-WIDTH REVERSE SOLIDUS */
OUTCHAR(0xff3c);
NEXT_IN(2);
continue;
}
#endif
if (TRYMAP_DEC(jisx0208, decoded, c1, c2)) {
OUTCHAR(decoded);
NEXT_IN(2);
continue;
}
else
return 1;
}
else
return 1;
NEXT_IN(1); /* JIS X 0201 */
}
return 0;
}
/*
* SHIFT_JIS-2004 codec
*/
ENCODER(shift_jis_2004)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code = NOCHAR;
int c1, c2;
Py_ssize_t insize;
JISX0201_ENCODE(c, code)
if (code < 0x80 || (code >= 0xa1 && code <= 0xdf)) {
WRITEBYTE1((unsigned char)code);
NEXT(1, 1);
continue;
}
REQUIRE_OUTBUF(2);
insize = 1;
if (code == NOCHAR) {
if (c <= 0xffff) {
EMULATE_JISX0213_2000_ENCODE_BMP(code, c)
else if (TRYMAP_ENC(jisx0213_bmp, code, c)) {
if (code == MULTIC) {
if (inlen - *inpos < 2) {
if (flags & MBENC_FLUSH) {
code = find_pairencmap
((ucs2_t)c, 0,
jisx0213_pair_encmap(),
JISX0213_ENCPAIRS);
if (code == DBCINV)
return 1;
}
else
return MBERR_TOOFEW;
}
else {
Py_UCS4 ch2 = INCHAR2;
code = find_pairencmap(
(ucs2_t)c, ch2,
jisx0213_pair_encmap(),
JISX0213_ENCPAIRS);
if (code == DBCINV) {
code = find_pairencmap(
(ucs2_t)c, 0,
jisx0213_pair_encmap(),
JISX0213_ENCPAIRS);
if (code == DBCINV)
return 1;
}
else
insize = 2;
}
}
}
else if (TRYMAP_ENC(jisxcommon, code, c)) {
/* abandon JIS X 0212 codes */
if (code & 0x8000)
return 1;
}
else
return 1;
}
else if (c >> 16 == EMPBASE >> 16) {
EMULATE_JISX0213_2000_ENCODE_EMP(code, c)
else if (TRYMAP_ENC(jisx0213_emp, code, c&0xffff))
;
else
return insize;
}
else
return insize;
}
c1 = code >> 8;
c2 = (code & 0xff) - 0x21;
if (c1 & 0x80) {
/* Plane 2 */
if (c1 >= 0xee)
c1 -= 0x87;
else if (c1 >= 0xac || c1 == 0xa8)
c1 -= 0x49;
else
c1 -= 0x43;
}
else {
/* Plane 1 */
c1 -= 0x21;
}
if (c1 & 1)
c2 += 0x5e;
c1 >>= 1;
OUTBYTE1(c1 + (c1 < 0x1f ? 0x81 : 0xc1));
OUTBYTE2(c2 + (c2 < 0x3f ? 0x40 : 0x41));
NEXT(insize, 2);
}
return 0;
}
DECODER(shift_jis_2004)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
JISX0201_DECODE(c, writer)
else if ((c >= 0x81 && c <= 0x9f) || (c >= 0xe0 && c <= 0xfc)){
unsigned char c1, c2;
Py_UCS4 code, decoded;
REQUIRE_INBUF(2);
c2 = INBYTE2;
if (c2 < 0x40 || (c2 > 0x7e && c2 < 0x80) || c2 > 0xfc)
return 1;
c1 = (c < 0xe0 ? c - 0x81 : c - 0xc1);
c2 = (c2 < 0x80 ? c2 - 0x40 : c2 - 0x41);
c1 = (2 * c1 + (c2 < 0x5e ? 0 : 1));
c2 = (c2 < 0x5e ? c2 : c2 - 0x5e) + 0x21;
if (c1 < 0x5e) { /* Plane 1 */
c1 += 0x21;
EMULATE_JISX0213_2000_DECODE_PLANE1(writer, c1, c2)
else if (TRYMAP_DEC(jisx0208, decoded, c1, c2))
OUTCHAR(decoded);
else if (TRYMAP_DEC(jisx0213_1_bmp, decoded, c1, c2))
OUTCHAR(decoded);
else if (TRYMAP_DEC(jisx0213_1_emp, code, c1, c2))
OUTCHAR(EMPBASE | code);
else if (TRYMAP_DEC(jisx0213_pair, code, c1, c2))
OUTCHAR2(code >> 16, code & 0xffff);
else
return 1;
NEXT_IN(2);
}
else { /* Plane 2 */
if (c1 >= 0x67)
c1 += 0x07;
else if (c1 >= 0x63 || c1 == 0x5f)
c1 -= 0x37;
else
c1 -= 0x3d;
EMULATE_JISX0213_2000_DECODE_PLANE2(writer, c1, c2)
else if (TRYMAP_DEC(jisx0213_2_bmp, decoded, c1, c2))
OUTCHAR(decoded);
else if (TRYMAP_DEC(jisx0213_2_emp, code, c1, c2)) {
OUTCHAR(EMPBASE | code);
NEXT_IN(2);
continue;
}
else
return 1;
NEXT_IN(2);
}
continue;
}
else
return 1;
NEXT_IN(1); /* JIS X 0201 */
}
return 0;
}
BEGIN_MAPPINGS_LIST
MAPPING_DECONLY(jisx0208)
MAPPING_DECONLY(jisx0212)
MAPPING_ENCONLY(jisxcommon)
MAPPING_DECONLY(jisx0213_1_bmp)
MAPPING_DECONLY(jisx0213_2_bmp)
MAPPING_ENCONLY(jisx0213_bmp)
MAPPING_DECONLY(jisx0213_1_emp)
MAPPING_DECONLY(jisx0213_2_emp)
MAPPING_ENCONLY(jisx0213_emp)
MAPPING_ENCDEC(jisx0213_pair)
MAPPING_ENCDEC(cp932ext)
END_MAPPINGS_LIST
BEGIN_CODECS_LIST
CODEC_STATELESS(shift_jis)
CODEC_STATELESS(cp932)
CODEC_STATELESS(euc_jp)
CODEC_STATELESS(shift_jis_2004)
CODEC_STATELESS(euc_jis_2004)
{ "euc_jisx0213", (void *)2000, NULL, _STATELESS_METHODS(euc_jis_2004) },
{ "shift_jisx0213", (void *)2000, NULL, _STATELESS_METHODS(shift_jis_2004) },
END_CODECS_LIST
I_AM_A_MODULE_FOR(jp)
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__codecs_jp = {
"_codecs_jp",
PyInit__codecs_jp,
};
| 22,083 | 710 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/gb18030ext_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) gb18030ext_decmap_ptr;
static const unsigned char gb18030ext_decmap_rodata[] = {
0x63, 0x60, 0x18, 0x05, 0xa3, 0x60, 0x60, 0x01, 0x23, 0x83, 0xc3, 0x82, 0x24,
0x06, 0x87, 0x7f, 0x8a, 0x8c, 0x0e, 0x0b, 0x9a, 0x18, 0x1d, 0xfe, 0x39, 0x32,
0x39, 0xfc, 0x63, 0x60, 0x76, 0xf8, 0xb7, 0x1f, 0x88, 0xeb, 0x58, 0xa6, 0xfd,
0x7b, 0xce, 0x12, 0xf1, 0xaf, 0x8f, 0x75, 0xe1, 0xbf, 0x37, 0x40, 0xec, 0xc5,
0xb6, 0xf0, 0xdf, 0x0a, 0x20, 0x66, 0x63, 0x5f, 0xf8, 0x2f, 0x05, 0x88, 0x07,
0xb3, 0xbf, 0x0e, 0xb1, 0xff, 0x1a, 0x70, 0xf7, 0x1d, 0x07, 0x86, 0x91, 0x2a,
0xc7, 0xc2, 0x7f, 0xcd, 0x40, 0xfc, 0x10, 0x88, 0xed, 0x39, 0x17, 0xfe, 0x9b,
0x0b, 0xc4, 0xbf, 0x39, 0x03, 0xc0, 0x6e, 0x03, 0x00,
};
optimizesize void *gb18030ext_decmap(void) {
return xload(&gb18030ext_decmap_ptr,
gb18030ext_decmap_rodata,
100, 1024); /* 9.76562% profit */
}
| 946 | 21 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/cp949ext_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) cp949ext_decmap_ptr;
static const unsigned char cp949ext_decmap_rodata[] = {
0xed, 0xd1, 0xaf, 0x37, 0x83, 0x61, 0x00, 0xc5, 0xf1, 0xf7, 0x31, 0x0c, 0xf3,
0x63, 0x36, 0x8c, 0xcd, 0xcc, 0xb3, 0x59, 0x5a, 0x14, 0x97, 0x6e, 0x58, 0x54,
0x9c, 0x23, 0x0a, 0x82, 0x28, 0x8a, 0x82, 0x24, 0x8a, 0xa2, 0x57, 0x12, 0x17,
0x45, 0xe7, 0x89, 0xa2, 0xb8, 0xf8, 0xc4, 0x45, 0x51, 0xb9, 0xc7, 0xf7, 0xff,
0x98, 0x7b, 0xce, 0x27, 0x7d, 0xe3, 0x2d, 0x8a, 0xff, 0x2d, 0xfa, 0x42, 0x21,
0x7f, 0xe2, 0x21, 0xc8, 0xe3, 0x25, 0xf9, 0x17, 0x1f, 0x15, 0xf9, 0x7e, 0x59,
0x3e, 0x5f, 0x91, 0x7f, 0x30, 0x5d, 0x95, 0xef, 0xaa, 0xf2, 0x68, 0x4d, 0x9e,
0xe3, 0x7d, 0x5d, 0xbe, 0xdd, 0x90, 0x07, 0x35, 0x39, 0xe3, 0x75, 0x53, 0xbe,
0xde, 0x92, 0x3b, 0xdb, 0xf2, 0x0c, 0x2f, 0x3b, 0xf2, 0x55, 0x5d, 0x6e, 0xee,
0xca, 0xdf, 0x78, 0x6e, 0xc8, 0x17, 0x4d, 0xb9, 0xb6, 0x27, 0x7f, 0xe1, 0x69,
0x5f, 0x9e, 0x1c, 0xc8, 0x95, 0x96, 0x9c, 0x5a, 0x2a, 0xe3, 0xa1, 0xca, 0x47,
0x64, 0xe8, 0x48, 0xe5, 0x1b, 0x42, 0x5b, 0xe5, 0x0d, 0x12, 0x62, 0x87, 0x8e,
0x0c, 0x1d, 0xd3, 0x11, 0xba, 0x74, 0x24, 0xc4, 0x13, 0x3a, 0x32, 0xd4, 0xa3,
0x23, 0x9c, 0xd2, 0x91, 0x10, 0x23, 0x1d, 0x19, 0xea, 0xd3, 0x11, 0x06, 0x74,
0x24, 0xc4, 0x33, 0x3a, 0x32, 0x34, 0xa4, 0x0f, 0x75, 0xb9, 0x08, 0xdf, 0xff,
0x01,
};
optimizesize void *cp949ext_decmap(void) {
return xload(&cp949ext_decmap_ptr,
cp949ext_decmap_rodata,
196, 1024); /* 19.1406% profit */
}
| 1,528 | 29 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/emu_jisx0213_2000.inc | /* clang-format off */
/* These routines may be quite inefficient, but it's used only to emulate old
* standards. */
#ifndef EMULATE_JISX0213_2000_ENCODE_INVALID
# define EMULATE_JISX0213_2000_ENCODE_INVALID 1
#endif
#define EMULATE_JISX0213_2000_ENCODE_BMP(assi, c) \
if (config == (void *)2000 && ( \
(c) == 0x9B1C || (c) == 0x4FF1 || \
(c) == 0x525D || (c) == 0x541E || \
(c) == 0x5653 || (c) == 0x59F8 || \
(c) == 0x5C5B || (c) == 0x5E77 || \
(c) == 0x7626 || (c) == 0x7E6B)) { \
return EMULATE_JISX0213_2000_ENCODE_INVALID; \
} \
else if (config == (void *)2000 && (c) == 0x9B1D) { \
(assi) = 0x8000 | 0x7d3b; \
}
#define EMULATE_JISX0213_2000_ENCODE_EMP(assi, c) \
if (config == (void *)2000 && (c) == 0x20B9F) { \
return EMULATE_JISX0213_2000_ENCODE_INVALID; \
}
#ifndef EMULATE_JISX0213_2000_DECODE_INVALID
# define EMULATE_JISX0213_2000_DECODE_INVALID 2
#endif
#define EMULATE_JISX0213_2000_DECODE_PLANE1(assi, c1, c2) \
if (config == (void *)2000 && \
(((c1) == 0x2E && (c2) == 0x21) || \
((c1) == 0x2F && (c2) == 0x7E) || \
((c1) == 0x4F && (c2) == 0x54) || \
((c1) == 0x4F && (c2) == 0x7E) || \
((c1) == 0x74 && (c2) == 0x27) || \
((c1) == 0x7E && (c2) == 0x7A) || \
((c1) == 0x7E && (c2) == 0x7B) || \
((c1) == 0x7E && (c2) == 0x7C) || \
((c1) == 0x7E && (c2) == 0x7D) || \
((c1) == 0x7E && (c2) == 0x7E))) { \
return EMULATE_JISX0213_2000_DECODE_INVALID; \
}
#define EMULATE_JISX0213_2000_DECODE_PLANE2(writer, c1, c2) \
if (config == (void *)2000 && (c1) == 0x7D && (c2) == 0x3B) { \
OUTCHAR(0x9B1D); \
}
#define EMULATE_JISX0213_2000_DECODE_PLANE2_CHAR(assi, c1, c2) \
if (config == (void *)2000 && (c1) == 0x7D && (c2) == 0x3B) { \
(assi) = 0x9B1D; \
}
| 2,801 | 57 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__big5hkscs_nonbmp_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __big5hkscs_nonbmp_encmap_ptr;
static const unsigned char __big5hkscs_nonbmp_encmap_rodata[] = {
0xed, 0x1d, 0xe7, 0x43, 0xd3, 0xda, 0xfe, 0x5f, 0x63, 0xc8, 0x12, 0x04, 0x94,
0x21, 0x8a, 0x6c, 0x01, 0x41, 0xc0, 0x01, 0x88, 0x0a, 0xfa, 0xd5, 0x6b, 0xeb,
0xed, 0x5e, 0x8f, 0x0e, 0xf6, 0x10, 0x41, 0xc5, 0xbd, 0x40, 0xc4, 0x2b, 0xa2,
0x70, 0x41, 0x51, 0x04, 0xdc, 0x38, 0x70, 0x81, 0xa2, 0x02, 0x42, 0xdb, 0xa4,
0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x69, 0x93, 0xe6, 0x24, 0x39, 0x49, 0x5b, 0x2f,
0xe7, 0x83, 0x08, 0x4d, 0xce, 0xf9, 0xed, 0x75, 0x7e, 0xe7, 0x74, 0x9f, 0xcd,
0x23, 0x70, 0x54, 0xeb, 0xe9, 0xbf, 0x1f, 0xf0, 0xfa, 0x3d, 0xd6, 0xc8, 0x7f,
0xce, 0x21, 0x95, 0x47, 0xf0, 0xb8, 0xa3, 0x74, 0x2a, 0xff, 0xf3, 0xb3, 0x6e,
0xd8, 0xf7, 0xb3, 0x0b, 0xf5, 0x1e, 0xd9, 0x46, 0xe2, 0x1f, 0xf1, 0x7f, 0x1c,
0x1e, 0x8e, 0xfd, 0xe3, 0xbf, 0xbf, 0xc5, 0xfc, 0x21, 0x74, 0x9e, 0x95, 0xc6,
0x28, 0xec, 0xdd, 0x14, 0x86, 0xf7, 0x7b, 0xdc, 0x9e, 0xf5, 0xc1, 0x30, 0x96,
0x4f, 0x90, 0x14, 0x52, 0x78, 0x3c, 0xfb, 0x75, 0xe0, 0x6f, 0xc6, 0x00, 0x51,
0xf4, 0x95, 0x41, 0x38, 0x6c, 0x0f, 0x1b, 0x46, 0x5c, 0xf4, 0xbf, 0x1c, 0xf1,
0x82, 0xaf, 0xd5, 0x02, 0x8b, 0x0e, 0x6b, 0x27, 0xc4, 0xcf, 0xf1, 0x81, 0x37,
0xae, 0x23, 0x9a, 0x5a, 0x1d, 0x1c, 0xf8, 0xa7, 0xc9, 0xb5, 0x73, 0x30, 0xbe,
0xa4, 0x3a, 0xf9, 0xbc, 0x7b, 0xd1, 0x4b, 0xd3, 0x9f, 0x9a, 0x0e, 0xe9, 0x60,
0xd1, 0xb5, 0xca, 0x59, 0x2d, 0x68, 0x2e, 0xd7, 0x9f, 0xc2, 0xd6, 0x8b, 0x53,
0x10, 0x72, 0xa7, 0xab, 0xb3, 0x16, 0x38, 0xe5, 0xd4, 0xa4, 0x5c, 0x67, 0xb9,
0x2e, 0x5f, 0xe4, 0x8a, 0x97, 0x68, 0x9c, 0xd8, 0x6d, 0x66, 0x7f, 0xb2, 0x14,
0x01, 0x9b, 0x31, 0x15, 0x7b, 0xae, 0x52, 0x07, 0x1f, 0xdb, 0x69, 0x1a, 0x6c,
0xd7, 0x1b, 0x22, 0xf4, 0x07, 0x18, 0x57, 0x29, 0x94, 0x95, 0x07, 0xfe, 0x47,
0x19, 0x04, 0x3a, 0x54, 0xd0, 0xf0, 0x79, 0xed, 0xf8, 0xcf, 0xbf, 0x03, 0xba,
0x9b, 0x9c, 0x33, 0xf7, 0xeb, 0xe4, 0xc1, 0xf1, 0x1a, 0x34, 0xaf, 0x7d, 0x1e,
0xd3, 0xa4, 0x6a, 0x73, 0x58, 0x10, 0xf1, 0x0f, 0x8b, 0x97, 0x78, 0x41, 0xf3,
0xc0, 0xc5, 0xfe, 0x59, 0x2d, 0xc7, 0x4c, 0xe5, 0x28, 0x8d, 0x16, 0xd6, 0xff,
0xff, 0x7f, 0xf4, 0x38, 0xc9, 0x53, 0x06, 0x5a, 0x47, 0x38, 0x6f, 0x30, 0x72,
0x7a, 0x87, 0xe1, 0x22, 0x31, 0xc7, 0x4d, 0xe2, 0xad, 0x0e, 0x4b, 0xab, 0x19,
0x1c, 0x17, 0x44, 0x03, 0x8f, 0x8a, 0xb5, 0x22, 0x63, 0xa1, 0x81, 0xfa, 0xdb,
0x50, 0xa4, 0xb9, 0x4b, 0x11, 0x5c, 0xb1, 0xd0, 0x03, 0x6b, 0xb2, 0x31, 0x98,
0xe0, 0x19, 0xd2, 0x79, 0x42, 0x7e, 0xb4, 0x5b, 0xa2, 0x59, 0x69, 0x5a, 0x80,
0x48, 0xbd, 0xfa, 0x20, 0x34, 0xeb, 0x75, 0xdb, 0xf1, 0xfb, 0xe6, 0x00, 0xe7,
0x8e, 0x17, 0xd9, 0x02, 0xb9, 0x7e, 0x8a, 0x28, 0xdb, 0x96, 0x7f, 0x22, 0x58,
0xe8, 0x78, 0xcb, 0x8f, 0x3d, 0xff, 0x8b, 0xd1, 0x2f, 0xdf, 0xa9, 0xff, 0xa6,
0xf2, 0xfc, 0xe3, 0xc7, 0x27, 0x0e, 0x2d, 0x0d, 0xf3, 0xc9, 0x05, 0xf2, 0x75,
0xbf, 0x78, 0xf8, 0x8e, 0x21, 0x1a, 0xed, 0x67, 0x49, 0xab, 0x7a, 0x8f, 0x57,
0xac, 0x34, 0xe4, 0x03, 0x65, 0x1b, 0x87, 0xff, 0x1e, 0x21, 0xe6, 0xdf, 0xef,
0xcc, 0xc6, 0xa0, 0x7d, 0x0d, 0x94, 0x1d, 0x8e, 0x02, 0xda, 0xfc, 0xf7, 0x14,
0xfc, 0x77, 0xa0, 0xa3, 0x14, 0x4c, 0xd6, 0xec, 0x91, 0x8a, 0x76, 0x0e, 0xea,
0xfc, 0x0d, 0x80, 0xf9, 0x18, 0xc0, 0x33, 0x5f, 0x9d, 0xa3, 0x44, 0x54, 0x33,
0xce, 0xf9, 0xf4, 0x43, 0x9f, 0x27, 0x9c, 0xf6, 0xff, 0xff, 0xbf, 0xce, 0xce,
0x57, 0x6a, 0x1e, 0xe1, 0xf3, 0xb5, 0x9b, 0xf9, 0xbc, 0x93, 0xf3, 0xaf, 0xff,
0xfe, 0x5c, 0x71, 0xdd, 0x69, 0xd8, 0xa6, 0xd8, 0xad, 0xa4, 0x7e, 0xf6, 0x98,
0x03, 0x83, 0x49, 0x00, 0x7a, 0x34, 0x9b, 0x37, 0x00, 0xc9, 0xe5, 0xc6, 0x06,
0xef, 0xbf, 0x34, 0x69, 0x5a, 0x01, 0xbd, 0xe1, 0x4e, 0xc5, 0x0f, 0xc5, 0xaa,
0x62, 0x1a, 0xa7, 0xd7, 0x13, 0x03, 0xea, 0xec, 0x70, 0x89, 0xd5, 0xbf, 0x27,
0x18, 0x66, 0x9b, 0x70, 0x88, 0x56, 0xbc, 0x64, 0x7c, 0x2b, 0x86, 0x4d, 0xa4,
0x72, 0x83, 0x92, 0x57, 0x0e, 0x4b, 0xa1, 0xc0, 0x00, 0x23, 0x35, 0x52, 0x19,
0x7d, 0xe9, 0x14, 0x0f, 0x6d, 0x9c, 0xae, 0x7f, 0x4e, 0x3e, 0x7d, 0x5f, 0xd1,
0x89, 0xcf, 0x57, 0xa0, 0x7b, 0x51, 0x5f, 0xa8, 0xdc, 0xa3, 0x3c, 0x4a, 0x42,
0x1b, 0xa9, 0xa6, 0x45, 0x77, 0x92, 0x46, 0x53, 0x4b, 0xa2, 0x63, 0xd9, 0x7e,
0x8a, 0x06, 0xcc, 0x62, 0xd8, 0xbd, 0x74, 0x23, 0xf6, 0x22, 0xe5, 0x5e, 0x65,
0xb5, 0xf2, 0x9d, 0xa2, 0x95, 0x93, 0x03, 0x0b, 0x0c, 0xeb, 0x67, 0x61, 0x7f,
0x8b, 0x25, 0xdf, 0x5c, 0x20, 0xe7, 0x0f, 0xf3, 0xa2, 0xff, 0x37, 0xc5, 0x8a,
0xe2, 0x00, 0x03, 0x4f, 0xde, 0x8a, 0x8e, 0x79, 0x5e, 0xd6, 0xa3, 0xa4, 0xed,
0x76, 0x0b, 0x8a, 0xc5, 0x7a, 0x6d, 0x35, 0x8e, 0x9d, 0xca, 0x62, 0x65, 0xbc,
0x8f, 0x9e, 0xa7, 0x98, 0x68, 0x99, 0x78, 0xfd, 0x46, 0x0c, 0xd3, 0xef, 0x8a,
0x29, 0x06, 0x3a, 0x9c, 0x6a, 0xe4, 0x5a, 0xe5, 0x22, 0x4f, 0xee, 0xe5, 0x40,
0xcf, 0x5c, 0xbe, 0xe2, 0x33, 0xbe, 0x12, 0x9c, 0xbd, 0xa3, 0x34, 0x88, 0x32,
0x14, 0x2d, 0xca, 0x0e, 0x8a, 0xcc, 0xbc, 0x85, 0x52, 0x15, 0xc8, 0x63, 0xd4,
0xa0, 0x29, 0xfb, 0x11, 0x47, 0x87, 0xe3, 0x94, 0x23, 0xc2, 0x27, 0x8a, 0x3b,
0xa4, 0x3c, 0xac, 0xf4, 0x48, 0x3c, 0xe6, 0x58, 0x31, 0x7b, 0x0f, 0x84, 0xf3,
0x51, 0x0a, 0xdd, 0x36, 0x38, 0x3e, 0xd4, 0xd7, 0x29, 0xf6, 0xe1, 0x30, 0x7f,
0x62, 0x7d, 0xfb, 0xb3, 0x9f, 0x79, 0xbf, 0xd0, 0x3e, 0xeb, 0xe3, 0x25, 0x25,
0x89, 0x8c, 0x76, 0x7c, 0xa1, 0x7e, 0x4d, 0x51, 0x40, 0xd1, 0xc3, 0x38, 0xe5,
0x98, 0xa2, 0x82, 0x42, 0xd5, 0x8f, 0xc4, 0x1a, 0x5f, 0x39, 0xb1, 0x1d, 0xe3,
0xb0, 0x7f, 0xdb, 0x15, 0xb5, 0xca, 0x3a, 0xe5, 0x37, 0x96, 0x79, 0x16, 0xb1,
0xbf, 0x3b, 0xbd, 0xf0, 0x09, 0xc7, 0x2b, 0x21, 0xfb, 0x69, 0x3c, 0xfe, 0x29,
0x79, 0x4e, 0xdf, 0x49, 0x5b, 0xef, 0x74, 0x08, 0xe4, 0x65, 0xfb, 0x1d, 0x95,
0x40, 0x3e, 0x3a, 0xc7, 0x25, 0x15, 0x04, 0xd7, 0x34, 0xd2, 0xcc, 0x8b, 0x6a,
0x57, 0x68, 0xf4, 0x5f, 0x30, 0xcb, 0x41, 0xcf, 0x9f, 0x82, 0xac, 0xd9, 0xd7,
0xc6, 0x3a, 0x53, 0x94, 0xbe, 0xc2, 0x92, 0x2e, 0x79, 0x45, 0x73, 0x99, 0x80,
0x2f, 0x3e, 0x20, 0x7b, 0x8e, 0x4b, 0xf5, 0x2f, 0x51, 0x7e, 0x6f, 0x5c, 0x66,
0x80, 0xf3, 0x3b, 0xc1, 0xc9, 0xbb, 0xd0, 0x39, 0x3a, 0x62, 0x0b, 0x83, 0x1a,
0x89, 0x7d, 0xe4, 0xac, 0x5d, 0x20, 0xda, 0x44, 0x1c, 0x8b, 0x5d, 0x7e, 0xf4,
0xab, 0x4c, 0x10, 0x9e, 0x83, 0x40, 0xb5, 0x87, 0x8f, 0xd8, 0xdc, 0xa5, 0xae,
0x2a, 0xa5, 0x5c, 0x12, 0xf0, 0x81, 0xb5, 0xa6, 0x30, 0x2c, 0xaa, 0xe2, 0x16,
0x2e, 0x43, 0x3d, 0xb2, 0xc9, 0x04, 0x6c, 0x05, 0x54, 0xbf, 0x18, 0xed, 0x40,
0xbb, 0x1a, 0x30, 0xeb, 0x71, 0xde, 0xf5, 0x91, 0x9c, 0x29, 0x8a, 0x6d, 0x58,
0x85, 0xb6, 0x93, 0xd2, 0x04, 0xc5, 0xae, 0xdf, 0x91, 0xbc, 0x52, 0xd4, 0x0a,
0xd1, 0xff, 0x0c, 0x62, 0x73, 0xdd, 0xa2, 0x50, 0xd0, 0xa9, 0x7d, 0x86, 0x9e,
0xe2, 0xd4, 0xb1, 0x18, 0x2d, 0x16, 0xf1, 0x33, 0x40, 0xf1, 0x99, 0xc6, 0xd3,
0x09, 0x43, 0x1e, 0x3a, 0x06, 0x60, 0xc5, 0x17, 0x74, 0x3f, 0xb5, 0x43, 0x7a,
0x2c, 0xb2, 0xd1, 0xbb, 0xf0, 0xa7, 0xbf, 0xf1, 0x90, 0xdf, 0x61, 0x40, 0x2f,
0x11, 0x63, 0x29, 0xd2, 0xa7, 0x09, 0xea, 0x42, 0x98, 0x03, 0x96, 0xf4, 0xc8,
0x86, 0xae, 0x86, 0xa7, 0x86, 0xaf, 0xba, 0x33, 0x6e, 0x17, 0x46, 0x9b, 0x35,
0xd5, 0x8a, 0x56, 0x4e, 0x7f, 0xb2, 0x93, 0xec, 0x51, 0x5a, 0x36, 0x5c, 0xb2,
0xf5, 0xb8, 0x12, 0x2d, 0x1b, 0xd4, 0x88, 0x1f, 0xd8, 0xd7, 0x08, 0xae, 0x3b,
0x01, 0xf4, 0xa7, 0xc4, 0xfc, 0xd8, 0x18, 0x6f, 0xe9, 0xc2, 0x39, 0x5e, 0xc7,
0x41, 0xc5, 0xcf, 0x14, 0xac, 0xcf, 0xd8, 0xef, 0x60, 0xd9, 0xec, 0x77, 0x6d,
0xaf, 0xea, 0xa4, 0xb9, 0xdb, 0x75, 0xc5, 0x7d, 0xd5, 0x4b, 0x93, 0xcf, 0xba,
0x26, 0xdc, 0x23, 0x38, 0xdc, 0x08, 0x0b, 0x14, 0x4b, 0xda, 0x6e, 0x65, 0x1a,
0x99, 0x17, 0x56, 0x91, 0x7b, 0x14, 0xfd, 0xac, 0xbb, 0x15, 0x3d, 0x2c, 0xd2,
0xfb, 0x09, 0xd7, 0xcb, 0x55, 0x5d, 0xbf, 0xb9, 0x4c, 0xdb, 0x05, 0x54, 0xe3,
0x2b, 0x20, 0xfc, 0xed, 0x90, 0x57, 0xcd, 0xeb, 0xa2, 0xf9, 0x8a, 0xee, 0x1b,
0x6f, 0xde, 0xb6, 0xa3, 0xb9, 0xe6, 0x0c, 0xfd, 0x01, 0x63, 0xb7, 0x5a, 0x18,
0x7f, 0xe7, 0xb5, 0x17, 0x00, 0x7c, 0xdf, 0x2f, 0x12, 0xae, 0x8d, 0xe6, 0x38,
0xd7, 0x41, 0xe3, 0x0d, 0xbd, 0xe8, 0xaa, 0x93, 0x36, 0x4d, 0x9f, 0xae, 0xdf,
0xcc, 0xc8, 0xf5, 0x55, 0xf5, 0x80, 0xeb, 0x07, 0xbe, 0xc2, 0x03, 0x5a, 0xe4,
0xba, 0x81, 0xc2, 0xe7, 0x34, 0x52, 0x9b, 0x0b, 0x00, 0x61, 0x69, 0xf3, 0xa1,
0xed, 0x42, 0x23, 0xd8, 0x9b, 0xbb, 0x01, 0xfc, 0x26, 0x0a, 0x20, 0xef, 0x9b,
0x09, 0x48, 0xb7, 0xe2, 0x71, 0xc3, 0x41, 0xd2, 0xc6, 0x74, 0xfa, 0x89, 0xd8,
0x92, 0xf5, 0x9e, 0x20, 0x19, 0x09, 0x3c, 0x23, 0xe7, 0x5f, 0xba, 0x30, 0x2b,
0x2d, 0x03, 0xe5, 0xf4, 0x2f, 0xe1, 0x94, 0xe7, 0x7b, 0x78, 0x46, 0xb1, 0x79,
0xc7, 0x26, 0x5d, 0x9e, 0x7f, 0xe8, 0x18, 0x54, 0xd6, 0xd5, 0x47, 0x58, 0x83,
0x07, 0x9e, 0x48, 0x19, 0x60, 0x39, 0x84, 0x67, 0x9e, 0x33, 0x34, 0x9e, 0x6f,
0xb0, 0x76, 0x34, 0xf2, 0x9b, 0xa5, 0xe2, 0x98, 0x0c, 0xf9, 0x2a, 0x44, 0x6a,
0x1c, 0x22, 0x32, 0x8e, 0x6c, 0x0e, 0xab, 0x30, 0x72, 0x9c, 0xfa, 0x5b, 0x4a,
0x03, 0xff, 0x95, 0xa6, 0xfc, 0xac, 0x30, 0xeb, 0x7a, 0x40, 0xd3, 0xce, 0xef,
0x80, 0x7b, 0xb0, 0x6f, 0x28, 0xdc, 0x7a, 0x1b, 0xa4, 0x1d, 0xb9, 0x55, 0x82,
0x6a, 0x25, 0x73, 0x04, 0x66, 0x97, 0x45, 0xf2, 0x3a, 0x8a, 0xf5, 0xfd, 0x18,
0x6b, 0x32, 0x85, 0x8b, 0xb1, 0x56, 0x4f, 0x88, 0x8c, 0x4c, 0x99, 0xf8, 0x7c,
0x12, 0x8f, 0x24, 0x10, 0x5b, 0x30, 0xe1, 0x9e, 0xf0, 0x47, 0x3c, 0xc1, 0xa7,
0x79, 0xd9, 0x7c, 0x53, 0x89, 0xc0, 0x7e, 0x88, 0x4e, 0xc9, 0x24, 0x6a, 0x52,
0xb6, 0x3e, 0xaf, 0x4a, 0xe7, 0x36, 0xc9, 0x7b, 0x8a, 0x9a, 0x79, 0x46, 0xe8,
0x0b, 0x34, 0xce, 0x9f, 0x84, 0x2a, 0x9f, 0x9d, 0x22, 0x29, 0x1b, 0xf1, 0xa7,
0xc7, 0x73, 0xdb, 0x3a, 0xab, 0xf0, 0xfc, 0x23, 0x46, 0xa2, 0xf5, 0x01, 0x91,
0xdd, 0xe5, 0x68, 0x3c, 0xeb, 0x83, 0xc7, 0xf8, 0x0a, 0x54, 0x1d, 0x4d, 0xa4,
0x59, 0xfa, 0x24, 0x28, 0xf6, 0x24, 0xd9, 0x3a, 0xc4, 0xb2, 0xc3, 0x93, 0x2c,
0xc0, 0xaf, 0x54, 0x52, 0xac, 0x43, 0x87, 0x28, 0x4b, 0xd1, 0x6c, 0x0f, 0x14,
0x2f, 0x32, 0x9c, 0xd9, 0x5e, 0x79, 0xd8, 0x36, 0xe0, 0x98, 0xb7, 0x1a, 0xd2,
0xde, 0x47, 0xbf, 0xec, 0x99, 0x56, 0x33, 0x04, 0xbb, 0xb9, 0xd7, 0x6f, 0xcc,
0xbc, 0x4f, 0x5f, 0xa3, 0xff, 0xe6, 0x37, 0xe7, 0x2c, 0x0f, 0x58, 0x26, 0x9e,
0x05, 0x20, 0xeb, 0x57, 0x04, 0xda, 0x34, 0x37, 0x66, 0xfd, 0xc3, 0x43, 0x34,
0x73, 0xde, 0xed, 0x78, 0x6b, 0x78, 0xa3, 0x3a, 0x82, 0x45, 0x3c, 0x53, 0xb4,
0xea, 0xf8, 0x26, 0x42, 0x5a, 0x5a, 0x18, 0xeb, 0x94, 0x9b, 0x83, 0x32, 0x76,
0xbe, 0xcd, 0xe2, 0x85, 0xbb, 0x80, 0xeb, 0xc4, 0x6f, 0x44, 0x74, 0xc2, 0xee,
0x72, 0x97, 0xf3, 0xdc, 0x9f, 0x2a, 0x46, 0x3e, 0x85, 0x68, 0xdc, 0xd0, 0xe4,
0x2e, 0xe3, 0xd4, 0xe4, 0x2d, 0x01, 0x92, 0x91, 0xbd, 0x80, 0x55, 0xaf, 0x4e,
0x19, 0xb3, 0xe7, 0x4f, 0xee, 0x0b, 0x40, 0xd6, 0xf7, 0x33, 0x0f, 0x79, 0x48,
0xe1, 0x49, 0xdf, 0x34, 0xe2, 0xf9, 0x53, 0xc0, 0xda, 0xd0, 0x01, 0x44, 0xa1,
0x74, 0xeb, 0x8d, 0xdf, 0x2e, 0xfa, 0x1d, 0xa1, 0x60, 0xb4, 0x95, 0x93, 0xce,
0x7f, 0x1f, 0xc7, 0x22, 0x08, 0x6b, 0x26, 0x20, 0x3f, 0xda, 0x04, 0xfb, 0xc0,
0x2c, 0x62, 0x85, 0x24, 0xa8, 0x1d, 0x3b, 0x2d, 0xfa, 0xd0, 0xe6, 0x55, 0x2d,
0xc1, 0xab, 0x08, 0x65, 0xb2, 0xf9, 0x3c, 0xe7, 0x0e, 0x4e, 0x32, 0xa0, 0xac,
0xe6, 0x92, 0xdc, 0x8c, 0x22, 0xac, 0x7a, 0x34, 0xab, 0x75, 0x47, 0x21, 0x46,
0xb2, 0xf9, 0x40, 0x52, 0x54, 0x4b, 0xe1, 0x59, 0xaf, 0x17, 0xff, 0x72, 0x7d,
0x30, 0x9c, 0x26, 0xff, 0x52, 0xc0, 0x38, 0x7b, 0x09, 0xf1, 0x79, 0x0c, 0xfe,
0x73, 0x54, 0x51, 0xa7, 0x2f, 0x64, 0x78, 0xae, 0x48, 0x06, 0x7b, 0xbe, 0xdf,
0x0b, 0xf6, 0xc3, 0x82, 0x2c, 0xcb, 0x19, 0x88, 0x12, 0x7d, 0xd6, 0x0b, 0x82,
0x5d, 0x8c, 0x54, 0x68, 0xc1, 0x35, 0x72, 0xde, 0x59, 0x03, 0x14, 0x01, 0x14,
0xcb, 0xea, 0x19, 0xb7, 0x29, 0x7b, 0xa1, 0x7b, 0xba, 0xeb, 0x2c, 0x33, 0x96,
0xc8, 0x88, 0x59, 0x27, 0x10, 0x97, 0x5f, 0x43, 0xf6, 0x4d, 0x9b, 0x03, 0xd4,
0x2d, 0x99, 0xa3, 0x2e, 0x0d, 0x99, 0x7a, 0x35, 0x91, 0x59, 0xf0, 0x82, 0x77,
0xde, 0x5c, 0xc6, 0xf9, 0x7c, 0x22, 0x2d, 0xb2, 0x1b, 0x14, 0x54, 0x7d, 0x28,
0xe7, 0x05, 0x55, 0xb1, 0x76, 0x94, 0x43, 0x77, 0x2e, 0x41, 0xf7, 0x9e, 0xef,
0xc8, 0x2c, 0xf4, 0xbd, 0x88, 0x1a, 0xdb, 0x0f, 0xc7, 0xfd, 0x00, 0xf8, 0xf5,
0x1b, 0xca, 0xc0, 0xca, 0x5c, 0x34, 0xe9, 0xff, 0xc7, 0x21, 0x60, 0xff, 0xcc,
0xfd, 0xdc, 0x0f, 0xf7, 0x07, 0x80, 0x57, 0x98, 0x73, 0x7f, 0x30, 0x49, 0x87,
0xf3, 0xb4, 0x7b, 0xc6, 0xdd, 0x8e, 0x8c, 0xf1, 0xc0, 0xf7, 0x3b, 0x43, 0x87,
0xce, 0x27, 0x2c, 0x3f, 0x79, 0xe7, 0x3e, 0x63, 0xa8, 0x71, 0x8e, 0x42, 0xa0,
0xdc, 0x2c, 0x4b, 0x1e, 0xbd, 0x5d, 0x54, 0xd5, 0x38, 0xd5, 0x6b, 0xd6, 0x9b,
0xfa, 0xcd, 0xa2, 0xab, 0x2e, 0x57, 0xf5, 0x53, 0xe8, 0x65, 0x68, 0x9a, 0x32,
0xe3, 0x67, 0xa6, 0xeb, 0xfa, 0xa7, 0xfa, 0x16, 0x86, 0x5e, 0x9d, 0x87, 0xc0,
0x34, 0xa9, 0x08, 0x31, 0x0f, 0x10, 0xb8, 0xb1, 0x97, 0x67, 0x95, 0xf6, 0x0b,
0x00, 0x65, 0xf7, 0x78, 0x3d, 0xe3, 0xf6, 0x63, 0x1b, 0xc2, 0x94, 0xb5, 0x44,
0x45, 0xb9, 0xe9, 0xc4, 0x2f, 0xa2, 0xf2, 0xff, 0x46, 0xff, 0x24, 0xa0, 0xfb,
0xf5, 0xdb, 0x38, 0x6f, 0x66, 0x68, 0x17, 0xa5, 0x07, 0x61, 0xb8, 0x3f, 0xce,
0xd1, 0xff, 0x13, 0xe4, 0xeb, 0x87, 0xf9, 0x00, 0xaf, 0x6a, 0xfa, 0xaa, 0xe8,
0xce, 0xe3, 0x2f, 0x3e, 0x16, 0x35, 0x86, 0x35, 0xd7, 0xad, 0x92, 0xd0, 0x4e,
0x5c, 0x20, 0x7a, 0x06, 0x17, 0xf0, 0x3d, 0xdc, 0x09, 0x93, 0xd4, 0x94, 0x8e,
0x46, 0x92, 0xd4, 0x71, 0x90, 0xee, 0x14, 0xa9, 0xb6, 0xee, 0xe0, 0x65, 0x17,
0x36, 0xe3, 0x9d, 0x4d, 0x87, 0x20, 0x50, 0x33, 0x9e, 0x88, 0x55, 0x1f, 0xf1,
0xa6, 0x57, 0x06, 0x25, 0xca, 0xcd, 0xe1, 0x79, 0x3b, 0xda, 0x72, 0xa3, 0x94,
0x9c, 0x89, 0xa4, 0xf5, 0x82, 0x3b, 0x59, 0xf7, 0x37, 0x67, 0xa0, 0x55, 0x47,
0x96, 0xfc, 0xee, 0xa1, 0x6e, 0xd2, 0x65, 0x02, 0x65, 0x04, 0x87, 0x19, 0xf8,
0x39, 0xc9, 0x9a, 0xd5, 0x9d, 0xc6, 0x24, 0xe6, 0x1e, 0x87, 0xae, 0x67, 0x40,
0x3d, 0xd5, 0x31, 0x2c, 0xc8, 0x56, 0x5c, 0x30, 0x88, 0x5d, 0x77, 0x56, 0x80,
0xe5, 0x7e, 0x45, 0x79, 0x67, 0x11, 0xc8, 0xbb, 0xcd, 0xeb, 0x57, 0xcc, 0xe3,
0xa6, 0x97, 0xfa, 0x71, 0x45, 0xb3, 0x4c, 0xd1, 0x4c, 0x09, 0x90, 0x54, 0x6c,
0x61, 0xc1, 0xbe, 0xd9, 0xf2, 0x21, 0xc0, 0xb7, 0xa3, 0x54, 0x20, 0xad, 0x32,
0x42, 0x50, 0xe7, 0x74, 0xea, 0xeb, 0x04, 0x44, 0xe9, 0xc5, 0x98, 0x37, 0xba,
0xcc, 0xa1, 0xe9, 0x9f, 0x1a, 0x13, 0x9d, 0x4d, 0x88, 0x1c, 0x58, 0x54, 0x39,
0x6e, 0x36, 0x8c, 0x38, 0xae, 0x5a, 0x1f, 0x0b, 0xb2, 0x3d, 0x57, 0xa1, 0x9c,
0xd8, 0xfb, 0xce, 0xa9, 0xc7, 0xb5, 0x50, 0xef, 0xca, 0x9a, 0x70, 0xa4, 0x98,
0x5b, 0x4d, 0xfd, 0xea, 0x19, 0x43, 0x86, 0xe6, 0x10, 0x52, 0x0b, 0x91, 0xce,
0x4f, 0x81, 0x2d, 0x92, 0x53, 0x95, 0xcf, 0xd8, 0x0d, 0xdc, 0x26, 0x48, 0xd7,
0x67, 0x1c, 0x8f, 0xcd, 0xd7, 0x35, 0x37, 0x90, 0x21, 0x24, 0xd6, 0xcb, 0xc2,
0x5e, 0x0c, 0xea, 0x7b, 0xbd, 0x6e, 0xd9, 0xaf, 0xea, 0xda, 0x75, 0xf1, 0x6a,
0xe9, 0x56, 0x68, 0xa7, 0xd0, 0xf3, 0x12, 0x4f, 0x5a, 0x84, 0x89, 0x8c, 0x45,
0xa7, 0x1d, 0xd9, 0x86, 0x1c, 0xcb, 0x98, 0x61, 0xa3, 0x6e, 0x2f, 0x52, 0xcc,
0xe2, 0x75, 0xe6, 0x7d, 0xee, 0x1b, 0x9a, 0xe6, 0x25, 0x01, 0x05, 0x22, 0x7a,
0xca, 0x63, 0x0d, 0xb7, 0x9c, 0xbf, 0x6c, 0xfd, 0xac, 0xf2, 0xff, 0x14, 0x1a,
0x5f, 0x66, 0xf0, 0x35, 0x8e, 0xfa, 0xf8, 0xbd, 0x35, 0xd2, 0x97, 0x44, 0x42,
0x3c, 0x29, 0xfd, 0xc5, 0x79, 0xdb, 0xf9, 0xc8, 0xbc, 0x66, 0x8c, 0xb5, 0x4d,
0x23, 0xd3, 0x90, 0x23, 0xbb, 0x29, 0x64, 0xa3, 0xeb, 0x8c, 0x35, 0xde, 0x70,
0x4f, 0x80, 0xd5, 0xe8, 0x96, 0xf0, 0x54, 0xe5, 0x39, 0x0a, 0x3c, 0xdb, 0x75,
0x7d, 0xee, 0x19, 0x42, 0xd6, 0x27, 0x11, 0x79, 0x35, 0xfa, 0x05, 0x4f, 0x1d,
0xdb, 0xc6, 0xf8, 0xfc, 0xe2, 0x89, 0x6b, 0x8c, 0xf1, 0x7f, 0x26, 0xc3, 0xd3,
0xa7, 0x20, 0x46, 0x47, 0x4f, 0x91, 0x97, 0xff, 0xcb, 0x3f, 0x18, 0xe8, 0x16,
0x4d, 0x8b, 0x2e, 0x9e, 0x20, 0xcf, 0x91, 0x17, 0xe4, 0x53, 0x28, 0x1e, 0x09,
0x34, 0xf1, 0x3c, 0x47, 0xd4, 0x83, 0x57, 0x81, 0xa7, 0xa1, 0xf7, 0x91, 0x97,
0x3b, 0xea, 0x90, 0x3c, 0x5a, 0xc5, 0x6f, 0xd5, 0x87, 0x9e, 0x8b, 0x3c, 0x33,
0xac, 0x25, 0xe0, 0x9a, 0x4c, 0x2e, 0xca, 0x1f, 0xe2, 0x2d, 0x96, 0x24, 0x89,
0x33, 0xe4, 0x0a, 0xc6, 0x5e, 0xea, 0x72, 0xbc, 0xce, 0xb8, 0x53, 0xf0, 0xdd,
0xde, 0x29, 0x86, 0x79, 0xe4, 0x20, 0x4b, 0x6d, 0xf5, 0x9a, 0xdf, 0xa8, 0x25,
0x0b, 0x5b, 0x73, 0x8d, 0xeb, 0x9e, 0x14, 0x01, 0x70, 0x25, 0x63, 0x1e, 0x61,
0xc5, 0x4b, 0x7a, 0x1f, 0xe8, 0xf3, 0x21, 0xdd, 0x5e, 0xde, 0xc3, 0xa2, 0x6d,
0x49, 0xe6, 0xd3, 0xac, 0x7a, 0xb8, 0x45, 0x40, 0xc6, 0x75, 0x16, 0x50, 0xab,
0x27, 0x04, 0x9c, 0x4f, 0xfe, 0x6c, 0xde, 0xed, 0xea, 0xd5, 0xfe, 0x84, 0x6a,
0x19, 0x47, 0x18, 0x38, 0xd9, 0x4b, 0xc1, 0x61, 0x5e, 0x74, 0x45, 0x73, 0x37,
0xc1, 0xc1, 0xcd, 0x90, 0x6f, 0xc9, 0xd8, 0x67, 0xf9, 0xe6, 0x25, 0xa7, 0x3f,
0x29, 0x39, 0xfe, 0x47, 0xed, 0x35, 0xc9, 0xb3, 0xcf, 0x04, 0x57, 0x29, 0xa4,
0x28, 0x75, 0x15, 0xc9, 0xe3, 0x29, 0xe7, 0x1f, 0x00, 0xe5, 0x67, 0x41, 0xbf,
0x41, 0xf2, 0xfb, 0x66, 0x66, 0x71, 0x58, 0x96, 0x01, 0x76, 0x6a, 0x4a, 0x48,
0x2c, 0xf3, 0xf1, 0x5d, 0xfb, 0xeb, 0xd6, 0x4e, 0x81, 0x99, 0x6f, 0x5a, 0x50,
0x9d, 0x61, 0xe2, 0x1a, 0x35, 0x41, 0x7e, 0x83, 0xe9, 0x39, 0xc5, 0x0d, 0x80,
0xae, 0x87, 0xb9, 0x80, 0x54, 0xfe, 0x9b, 0xfd, 0xae, 0xda, 0x07, 0x45, 0xcb,
0xcf, 0x1b, 0x02, 0x45, 0xf9, 0x23, 0xfa, 0x22, 0x51, 0xfd, 0x26, 0xdb, 0x18,
0x20, 0xbf, 0x19, 0xe2, 0xbb, 0x88, 0x19, 0x86, 0x60, 0x87, 0xb0, 0xcd, 0x71,
0x97, 0x93, 0xc6, 0xa9, 0x68, 0x28, 0xf3, 0xa0, 0xea, 0xb7, 0xba, 0x73, 0xf9,
0x09, 0xad, 0x6b, 0xe5, 0x92, 0xa1, 0x0a, 0x19, 0xb0, 0xb4, 0x79, 0x49, 0xd9,
0x30, 0xc1, 0xd1, 0x05, 0xe3, 0x51, 0xe4, 0x0b, 0xa3, 0x2f, 0x3b, 0xc2, 0x10,
0x79, 0xed, 0x31, 0xe7, 0x61, 0xf3, 0xdc, 0xe2, 0x71, 0x76, 0x7c, 0x8a, 0x88,
0x5a, 0xb6, 0x38, 0x33, 0x18, 0x7c, 0xd8, 0xae, 0x86, 0x0f, 0xd6, 0x31, 0xf7,
0x47, 0x53, 0x9c, 0xb3, 0x49, 0x94, 0xdf, 0xde, 0x64, 0x5c, 0xe5, 0xb4, 0x2b,
0x71, 0xe8, 0x98, 0x76, 0x1f, 0xb9, 0xca, 0x38, 0xe1, 0x89, 0x7b, 0x71, 0x2c,
0x2b, 0x28, 0x71, 0xdf, 0x0f, 0xdb, 0x15, 0x7d, 0xa4, 0x66, 0x9b, 0x79, 0xca,
0x50, 0x84, 0x1e, 0x31, 0xec, 0x21, 0x3f, 0x89, 0xe6, 0x88, 0x7e, 0xca, 0xf1,
0xda, 0xc8, 0x2f, 0x4c, 0x92, 0x2e, 0x63, 0xf4, 0xac, 0x33, 0xfc, 0xad, 0x3b,
0xc7, 0x80, 0x53, 0x21, 0x7a, 0xd4, 0x94, 0x61, 0xae, 0xb1, 0x8e, 0x33, 0x44,
0x34, 0xad, 0x8c, 0x96, 0xa0, 0x87, 0x81, 0x6e, 0xa7, 0x08, 0x0e, 0x4f, 0x9a,
0xce, 0x13, 0xf0, 0x9d, 0xc6, 0xfc, 0x46, 0x39, 0x6d, 0xbd, 0x68, 0xc3, 0x2f,
0x9f, 0xcc, 0x26, 0xda, 0x96, 0x69, 0x7c, 0xa8, 0x5d, 0xc2, 0xd6, 0x29, 0x46,
0xdb, 0x08, 0x7c, 0x5e, 0xa1, 0xa7, 0x30, 0x5a, 0xdc, 0x63, 0xd1, 0xf0, 0x05,
0xb7, 0x13, 0x19, 0x76, 0xe7, 0xa3, 0x6e, 0xed, 0x6e, 0x74, 0x0d, 0xb9, 0xeb,
0x4e, 0xd4, 0x5e, 0x01, 0x8c, 0x45, 0x8a, 0x09, 0x68, 0xbe, 0xe2, 0x50, 0x9c,
0x23, 0xe7, 0xcf, 0x25, 0xb0, 0x6c, 0x36, 0x54, 0x5b, 0xba, 0xcd, 0x8f, 0x58,
0x22, 0xbb, 0x5a, 0xaf, 0x08, 0xf1, 0x8b, 0xaa, 0xd4, 0x9c, 0xcd, 0x90, 0x7b,
0x7e, 0xa1, 0xe0, 0xbc, 0xd6, 0xb0, 0x6a, 0x6c, 0x46, 0xe7, 0x00, 0xea, 0x61,
0x47, 0x69, 0xd6, 0xaa, 0xd5, 0xbe, 0xcb, 0x3c, 0xaf, 0xea, 0xf3, 0x63, 0x87,
0x33, 0x0d, 0x2b, 0xb6, 0x0e, 0xe7, 0x0c, 0x03, 0x8d, 0xb2, 0x9c, 0xe9, 0xa6,
0x7c, 0x1a, 0xdd, 0xaf, 0x19, 0x92, 0x1a, 0xa7, 0x09, 0xda, 0x8e, 0xd0, 0xde,
0xb8, 0x8e, 0xaf, 0x90, 0x43, 0xab, 0xe1, 0x8f, 0xfb, 0xd9, 0x9b, 0x28, 0xc4,
0x9f, 0x4f, 0xa0, 0x69, 0xdb, 0xb4, 0x26, 0xf3, 0xcf, 0x50, 0xb6, 0x4d, 0xfd,
0xbf, 0xf1, 0xb7, 0x26, 0x08, 0xa8, 0x00, 0xb9, 0xee, 0x1b, 0xd7, 0xa9, 0x00,
0x36, 0x06, 0xed, 0xab, 0x12, 0xe4, 0x76, 0x6e, 0x0e, 0x6b, 0x51, 0x69, 0xa8,
0x62, 0xb5, 0x0b, 0x97, 0xd1, 0x75, 0xae, 0xc0, 0x19, 0xf1, 0x32, 0x9c, 0xb8,
0x4a, 0x53, 0x94, 0x28, 0x9f, 0x03, 0xaf, 0x73, 0x40, 0x19, 0x2a, 0xb4, 0x1b,
0xc3, 0x7c, 0xcc, 0x2e, 0xc5, 0x6a, 0x63, 0xf0, 0x42, 0xf8, 0xca, 0x02, 0x6f,
0xae, 0x8b, 0x84, 0xce, 0x8d, 0x73, 0x66, 0x24, 0x2e, 0x3c, 0x5a, 0x70, 0xf9,
0x7d, 0x6e, 0xcc, 0xaf, 0x37, 0x7a, 0xcf, 0x90, 0x15, 0xd4, 0x3a, 0x26, 0x20,
0xe6, 0x9b, 0x6d, 0x41, 0x79, 0xd2, 0x70, 0x0c, 0x8d, 0x12, 0x0c, 0x97, 0x5b,
0xb6, 0x5b, 0x10, 0xc6, 0xd1, 0xb6, 0xa0, 0xd6, 0xd1, 0x8d, 0x3c, 0x6a, 0x7d,
0xf3, 0x38, 0xbd, 0x5f, 0xbb, 0x7b, 0x0c, 0x93, 0x68, 0xb7, 0xa4, 0xf5, 0x80,
0xed, 0x41, 0x77, 0xc7, 0xd6, 0x13, 0x09, 0xeb, 0x37, 0x7b, 0x38, 0xe5, 0xf8,
0xa4, 0x32, 0x07, 0xd7, 0xf2, 0x11, 0x4c, 0x6e, 0x3f, 0xb8, 0xa7, 0x58, 0x60,
0x19, 0x66, 0xa8, 0xca, 0x2d, 0x6a, 0x5f, 0xf3, 0xd8, 0x79, 0x7f, 0x06, 0x11,
0xcb, 0x05, 0x2c, 0x67, 0x78, 0x2e, 0x11, 0xd5, 0x52, 0xfe, 0x9c, 0x27, 0x3c,
0x89, 0x93, 0xc1, 0x6a, 0xbf, 0x16, 0xb8, 0xea, 0x5d, 0x7d, 0x9c, 0x6e, 0xd6,
0xf4, 0x86, 0x78, 0xfb, 0x1d, 0xfe, 0x73, 0x56, 0xfd, 0x5e, 0xd0, 0x6c, 0x03,
0xb8, 0x7e, 0xdc, 0x66, 0xac, 0x93, 0xde, 0x91, 0xa0, 0x66, 0x7b, 0x48, 0xe0,
0x19, 0x8f, 0x5a, 0x4a, 0xb4, 0x7a, 0x94, 0x9c, 0x63, 0x0e, 0x8d, 0x96, 0x38,
0x6a, 0xbc, 0x22, 0xd0, 0x02, 0xef, 0x95, 0xa1, 0x07, 0xa9, 0x13, 0x20, 0xdb,
0x39, 0x1b, 0x34, 0xdf, 0xde, 0xc6, 0x60, 0x07, 0x80, 0x6c, 0xf3, 0x55, 0x4b,
0x18, 0xaf, 0xfd, 0xce, 0x7e, 0x2f, 0x9b, 0xbc, 0x95, 0xe7, 0x6e, 0xe9, 0x39,
0xd9, 0xfc, 0xe0, 0x2b, 0xa7, 0x27, 0x44, 0xc6, 0x1c, 0x4f, 0xdb, 0x12, 0x69,
0xda, 0xa0, 0x4a, 0xb2, 0x2d, 0x51, 0x74, 0xf3, 0x23, 0xf0, 0x0c, 0xcf, 0x43,
0xe8, 0x8c, 0xc8, 0x1e, 0xde, 0xfd, 0x1b, 0x1b, 0x55, 0x0b, 0x41, 0xb1, 0xc3,
0xb2, 0xc2, 0x61, 0x9f, 0xae, 0xda, 0x43, 0x87, 0x0b, 0x89, 0x22, 0xf7, 0x1b,
0xc6, 0x5d, 0xb9, 0xc7, 0x02, 0x8d, 0xc3, 0x20, 0x2d, 0x77, 0x7a, 0x0f, 0x60,
0x19, 0x17, 0xad, 0xef, 0x02, 0xb0, 0xd7, 0xb5, 0xd9, 0x78, 0x1d, 0xd8, 0x3e,
0x7e, 0x97, 0x40, 0xd2, 0x17, 0x0d, 0x3b, 0x01, 0xb8, 0xfd, 0x59, 0x04, 0x65,
0xf2, 0x88, 0x38, 0x74, 0xa7, 0x35, 0x93, 0x5c, 0xe9, 0x87, 0x20, 0x4c, 0xfa,
0x1b, 0x60, 0x63, 0x7f, 0x4f, 0x90, 0x56, 0x96, 0x49, 0xb4, 0x1f, 0x57, 0x09,
0x14, 0xb1, 0x9f, 0x11, 0x18, 0x81, 0x54, 0xab, 0xf7, 0x05, 0x6c, 0x1f, 0x31,
0x57, 0x55, 0xca, 0xb1, 0x76, 0x02, 0x10, 0x56, 0x5b, 0x8c, 0xa9, 0x01, 0xa9,
0x48, 0x3f, 0x96, 0xb9, 0x12, 0x72, 0xdd, 0x1e, 0x69, 0x44, 0xa1, 0x44, 0xbc,
0x3f, 0x78, 0x68, 0xee, 0x77, 0x41, 0x5a, 0xfe, 0xb9, 0x71, 0xc2, 0xde, 0x2b,
0x79, 0x7d, 0x6f, 0x55, 0xeb, 0x59, 0x1f, 0x80, 0x23, 0xdf, 0xd0, 0x6a, 0xed,
0x11, 0xa5, 0xeb, 0x3d, 0x02, 0xf7, 0xc1, 0x1e, 0x88, 0xea, 0xbf, 0xfd, 0x0a,
0x98, 0x7b, 0x5e, 0x60, 0xd5, 0xc6, 0xad, 0xe6, 0x1a, 0xc5, 0x2f, 0x51, 0x5e,
0xf2, 0xa2, 0xcc, 0x36, 0xb2, 0xbc, 0xf1, 0x92, 0x2a, 0xdd, 0x1c, 0x16, 0xf4,
0xfb, 0x6c, 0x3f, 0x1b, 0xfb, 0x09, 0xeb, 0xe0, 0x94, 0x24, 0xde, 0x7e, 0x85,
0xdc, 0xf0, 0xf1, 0xc5, 0xa8, 0x8f, 0x3d, 0x7a, 0xa6, 0x44, 0x1b, 0x7f, 0x17,
0x2d, 0x1d, 0x50, 0xc5, 0xf0, 0x88, 0x67, 0x5e, 0x2a, 0x5d, 0x24, 0xe6, 0xb7,
0x7f, 0xdb, 0xef, 0x60, 0x8f, 0x33, 0xc9, 0xb9, 0xda, 0x20, 0x6e, 0x6f, 0x12,
0x8c, 0x88, 0x1f, 0x89, 0x1e, 0xd5, 0xe4, 0xda, 0xe2, 0x65, 0xd6, 0x4e, 0x54,
0x94, 0x86, 0xed, 0x15, 0xd4, 0x8d, 0x1b, 0x49, 0xbc, 0x15, 0x63, 0x1b, 0x25,
0xa4, 0x2b, 0x95, 0x51, 0xca, 0xde, 0xa9, 0xe2, 0x6c, 0xa1, 0x2d, 0x63, 0xd9,
0x12, 0xd6, 0xa3, 0xb2, 0x59, 0x25, 0x65, 0x07, 0x80, 0x0c, 0xc5, 0xdb, 0x66,
0x01, 0x61, 0x9b, 0xf9, 0x6d, 0x2d, 0x80, 0xd0, 0x71, 0x01, 0xf3, 0x1e, 0x39,
0x44, 0xc4, 0x9c, 0x00, 0x4d, 0x42, 0x9b, 0xfc, 0xc4, 0xfd, 0xcf, 0x00, 0x79,
0x90, 0x6e, 0x6b, 0x96, 0x24, 0x7b, 0x48, 0x35, 0x87, 0x98, 0xde, 0x09, 0xe0,
0xca, 0x63, 0xc7, 0x2e, 0x9e, 0xb6, 0xf7, 0x76, 0xe3, 0x9c, 0x04, 0xd4, 0xfe,
0xc5, 0x33, 0xea, 0xc8, 0xe3, 0xc0, 0x35, 0x47, 0x00, 0x2d, 0x36, 0xb9, 0x3d,
0x9e, 0x4c, 0x9f, 0xb8, 0xbc, 0x44, 0xa6, 0x8e, 0xb5, 0x02, 0xdb, 0x5d, 0xdc,
0x5b, 0x0e, 0x01, 0xef, 0x0f, 0x15, 0x03, 0xe1, 0x58, 0xc2, 0x93, 0x12, 0x6f,
0x94, 0xa1, 0x24, 0xf3, 0x85, 0xac, 0x59, 0xeb, 0x87, 0x80, 0x79, 0xd1, 0x54,
0x2f, 0xfd, 0x28, 0xb3, 0x55, 0xd8, 0xb2, 0x28, 0x5c, 0xad, 0xf4, 0x03, 0x59,
0xa9, 0x5f, 0x6d, 0x2c, 0x37, 0x2e, 0xaa, 0x36, 0x91, 0x35, 0xac, 0x15, 0x1f,
0xfb, 0x78, 0xc3, 0xe9, 0xf1, 0x4c, 0xfa, 0xa9, 0xf3, 0x64, 0x93, 0x55, 0xe3,
0xa7, 0x90, 0xef, 0xf7, 0x4f, 0x50, 0x56, 0x23, 0x2f, 0xac, 0xcb, 0x5e, 0xfb,
0x43, 0x55, 0x02, 0x78, 0x10, 0xc5, 0x4a, 0x81, 0x21, 0xc0, 0xd8, 0xb5, 0x54,
0x9d, 0x48, 0xa9, 0xf3, 0x1d, 0xe4, 0x01, 0x43, 0x1a, 0xeb, 0xfe, 0xd6, 0x3b,
0x59, 0x7d, 0x41, 0xb8, 0x6d, 0x87, 0xa8, 0xda, 0x94, 0xd3, 0xb4, 0x42, 0x4a,
0xc1, 0x26, 0x99, 0xfb, 0x85, 0x8b, 0x5c, 0x85, 0xaa, 0x38, 0x4b, 0xa7, 0x2b,
0x02, 0x42, 0xd7, 0xd7, 0x61, 0x20, 0xde, 0xb9, 0xcc, 0xf7, 0xc9, 0xfd, 0xf5,
0x4c, 0xfc, 0x8d, 0x4d, 0x38, 0xb7, 0x1e, 0xf9, 0x89, 0x1f, 0xf2, 0x8c, 0xf1,
0x0d, 0x17, 0x1b, 0x26, 0xf4, 0x5d, 0x48, 0x98, 0x25, 0x5a, 0x5b, 0x6c, 0xd9,
0xee, 0x3c, 0x09, 0x55, 0x23, 0xc2, 0xa1, 0xf4, 0xbc, 0x3d, 0x92, 0x68, 0x2f,
0x1c, 0x71, 0x9f, 0x42, 0xfa, 0xb4, 0x09, 0xea, 0x7b, 0xa6, 0x34, 0xf5, 0x69,
0xd7, 0x1e, 0x9a, 0xc6, 0x1d, 0x91, 0xd0, 0x6e, 0x2e, 0xfa, 0xf1, 0xf2, 0x7b,
0x0c, 0xdd, 0xe4, 0x89, 0x93, 0x11, 0xd3, 0x18, 0xa9, 0xeb, 0xe9, 0xd8, 0x3b,
0xb3, 0x8c, 0x30, 0xfd, 0x25, 0x71, 0x2e, 0x9b, 0xad, 0x2e, 0x53, 0xb7, 0xa8,
0xce, 0x43, 0xff, 0x26, 0x94, 0x14, 0x62, 0xbf, 0xff, 0x3c, 0x89, 0xef, 0x6e,
0xd6, 0x7d, 0x89, 0xfb, 0x34, 0x1c, 0x53, 0xfc, 0xec, 0xfa, 0x1d, 0x52, 0xcb,
0xa9, 0xe5, 0x7b, 0x1c, 0x77, 0x1a, 0x0f, 0xba, 0x23, 0x54, 0xdb, 0xd5, 0x83,
0x9a, 0x36, 0x55, 0x9e, 0x26, 0x29, 0x68, 0x6f, 0xb0, 0xa9, 0xd4, 0x5f, 0x94,
0xe4, 0x76, 0x8d, 0x51, 0xcc, 0xa3, 0xf7, 0x09, 0x96, 0x8d, 0x27, 0x22, 0x35,
0x3b, 0xd2, 0x72, 0xc7, 0x74, 0xe3, 0x78, 0xa0, 0x68, 0xda, 0x42, 0xd3, 0xc7,
0x78, 0xdd, 0x46, 0x8b, 0x5c, 0x2b, 0xb7, 0x42, 0x93, 0xf2, 0xef, 0x8d, 0x2e,
0xc7, 0x84, 0x08, 0x5b, 0xd7, 0x41, 0x42, 0x92, 0x0a, 0x71, 0x2f, 0x7e, 0x87,
0x3b, 0x0a, 0xa7, 0x65, 0xb4, 0xe6, 0x21, 0x6f, 0x09, 0x71, 0xa2, 0xb9, 0x01,
0xab, 0x72, 0xc7, 0x36, 0xc4, 0x70, 0x58, 0x00, 0x57, 0x88, 0x7d, 0xc3, 0x5e,
0xab, 0x6d, 0x5f, 0x90, 0xee, 0x19, 0x44, 0xf1, 0x96, 0xb7, 0x76, 0x52, 0xce,
0x3b, 0x28, 0x12, 0xdf, 0x05, 0xd5, 0xd3, 0x3f, 0x22, 0xf2, 0xe4, 0xbd, 0x12,
0xe7, 0xcb, 0xdd, 0xb6, 0x2d, 0xc7, 0x82, 0x8b, 0x1f, 0xa7, 0xd5, 0x9e, 0xdf,
0x64, 0x24, 0xff, 0x79, 0x44, 0x42, 0x99, 0x3f, 0x2b, 0x53, 0x46, 0x7e, 0x09,
0x8b, 0xfe, 0xfb, 0x1a, 0x5f, 0x49, 0xda, 0x51, 0xd0, 0x15, 0xb0, 0x73, 0x8c,
0x7d, 0x84, 0xb4, 0xdd, 0xe4, 0x2d, 0x75, 0x25, 0xfa, 0x0e, 0x6b, 0xeb, 0xf0,
0xff, 0x7e, 0xfb, 0x0c, 0xb1, 0x0f, 0x79, 0x96, 0xb6, 0x9f, 0x12, 0x2e, 0xb0,
0x82, 0x74, 0xc9, 0xfe, 0xa5, 0xb1, 0x25, 0x60, 0xbd, 0x86, 0x4d, 0xca, 0x61,
0x88, 0x7a, 0x9c, 0x70, 0x3c, 0x97, 0x31, 0x26, 0xba, 0x2b, 0xb8, 0xcf, 0x2b,
0x03, 0x62, 0x5d, 0xee, 0x94, 0xb1, 0x2b, 0xa8, 0x7c, 0xdb, 0x6d, 0xdb, 0x5f,
0x3c, 0x6d, 0xc3, 0x13, 0xc9, 0x7a, 0x6e, 0xbb, 0x81, 0x3b, 0xd6, 0xe6, 0x78,
0x70, 0x64, 0x9f, 0xe2, 0x61, 0x50, 0x78, 0x89, 0xc9, 0x7f, 0x81, 0x3c, 0xb5,
0x04, 0x31, 0x56, 0x6b, 0x09, 0xd8, 0x19, 0xb7, 0x31, 0x91, 0xfe, 0xe6, 0xb1,
0x6d, 0x92, 0x98, 0x61, 0x58, 0xe2, 0x6f, 0x43, 0x3d, 0x0f, 0x2c, 0x73, 0x7b,
0x29, 0x67, 0x05, 0xa6, 0x44, 0x4a, 0x54, 0x25, 0xa3, 0xad, 0xcd, 0x94, 0xbd,
0xc7, 0x7f, 0x42, 0xbd, 0x53, 0xc6, 0xdc, 0xe0, 0x92, 0x65, 0x17, 0x59, 0x53,
0x79, 0xc2, 0x2a, 0x21, 0x7d, 0x22, 0x33, 0xda, 0xe7, 0xea, 0x15, 0x74, 0xc6,
0x0f, 0x7f, 0xc2, 0xd7, 0xcf, 0xfd, 0x43, 0x1c, 0x65, 0x64, 0x46, 0xf0, 0xd3,
0xbc, 0x1a, 0x82, 0xf7, 0x41, 0x6d, 0x0f, 0x9a, 0x8c, 0x26, 0x16, 0x10, 0x92,
0x8d, 0xc7, 0xca, 0x20, 0x45, 0xc0, 0x3f, 0xd4, 0x5f, 0x01, 0xec, 0xd8, 0x14,
0xab, 0xa6, 0x56, 0x70, 0xc2, 0x11, 0xc6, 0xe8, 0x81, 0xbe, 0xf9, 0xac, 0xba,
0x04, 0xcd, 0x43, 0x2f, 0x8b, 0x9a, 0x69, 0xd0, 0x58, 0x8a, 0x59, 0x9f, 0x71,
0xf3, 0xfb, 0xf5, 0xbb, 0x52, 0x82, 0x70, 0xd4, 0x39, 0xc2, 0x69, 0xde, 0xea,
0x19, 0x70, 0x94, 0x11, 0x4e, 0xc6, 0xfe, 0x73, 0xb6, 0xb3, 0x90, 0x4e, 0x2b,
0x7d, 0x0e, 0xc8, 0x2e, 0xf7, 0x02, 0xeb, 0xaa, 0x4e, 0xc9, 0xe0, 0xc9, 0x57,
0x26, 0x4a, 0x10, 0x49, 0xde, 0xb7, 0x15, 0x31, 0xce, 0xea, 0xb2, 0xb9, 0x45,
0x63, 0x82, 0xfa, 0x99, 0x21, 0x05, 0x00, 0x97, 0xf7, 0x02, 0x20, 0x08, 0x83,
0x78, 0x0a, 0x2e, 0x9c, 0x75, 0xae, 0x28, 0x4d, 0x25, 0x67, 0xee, 0x73, 0xdf,
0xec, 0xf1, 0x44, 0x04, 0xe8, 0x4c, 0x5e, 0x1e, 0x44, 0x49, 0x39, 0x2d, 0x2a,
0xef, 0x9e, 0x90, 0x21, 0xfb, 0x69, 0x06, 0x86, 0xf0, 0x87, 0x3d, 0x12, 0x80,
0x23, 0xaf, 0x78, 0xc9, 0xdd, 0x06, 0xc6, 0x19, 0xef, 0x4b, 0xd2, 0x3f, 0x99,
0xe8, 0x95, 0x27, 0x9c, 0xe7, 0x58, 0x65, 0x99, 0xb5, 0xff, 0x3b, 0xca, 0x9e,
0x14, 0x42, 0xfb, 0x11, 0x31, 0x04, 0x8d, 0xef, 0xd3, 0x76, 0xfc, 0x2e, 0xfa,
0xe5, 0x13, 0xea, 0xca, 0x0e, 0x08, 0x86, 0x05, 0x9a, 0xad, 0x92, 0xae, 0x5b,
0x14, 0x62, 0xfb, 0x48, 0xb0, 0xc6, 0x00, 0x4b, 0x5e, 0xf3, 0xde, 0x9d, 0xcf,
0xd8, 0x03, 0x57, 0x2c, 0x80, 0x4e, 0x4d, 0x3c, 0xe2, 0xd6, 0x66, 0xf5, 0xef,
0x4c, 0xed, 0x58, 0xfb, 0x23, 0x5a, 0x1d, 0x24, 0x89, 0xa1, 0x8b, 0x2a, 0x4b,
0xa0, 0x24, 0x5e, 0xf5, 0xf3, 0xde, 0x6e, 0xcd, 0x0e, 0x62, 0xdf, 0xb7, 0x44,
0xb3, 0x15, 0xea, 0x4d, 0x21, 0x69, 0x68, 0x25, 0x30, 0xbc, 0xdf, 0xac, 0x8b,
0xac, 0xb6, 0x25, 0xde, 0x8f, 0x07, 0x99, 0x21, 0x20, 0x7e, 0x4a, 0xfc, 0x7c,
0xad, 0x8d, 0xe4, 0xec, 0x3e, 0x9b, 0x66, 0x94, 0xde, 0x68, 0x51, 0xbd, 0x3d,
0xb9, 0x7a, 0x2c, 0xc2, 0x72, 0x3e, 0x62, 0xc5, 0x21, 0x91, 0xc0, 0x21, 0x8c,
0xa8, 0xeb, 0xbd, 0x11, 0xd8, 0x23, 0x17, 0x81, 0x45, 0xf4, 0xe9, 0x38, 0x55,
0x0b, 0xb1, 0x8c, 0xad, 0xec, 0xc4, 0x46, 0x5c, 0x66, 0x92, 0xed, 0x5b, 0x38,
0xbd, 0xec, 0x19, 0xe3, 0x76, 0x73, 0x9c, 0x3e, 0xc6, 0xbc, 0x44, 0xeb, 0x88,
0x3a, 0xe8, 0xb7, 0xcb, 0x70, 0x9c, 0xd0, 0xb8, 0x5c, 0x9f, 0x3b, 0x9c, 0x12,
0x09, 0x99, 0x49, 0xf7, 0x73, 0xbb, 0xd3, 0x73, 0x6d, 0x9e, 0x69, 0x5e, 0x97,
0xa5, 0x7f, 0xa9, 0x42, 0x4d, 0x49, 0xc8, 0x4b, 0x3f, 0xf5, 0xa7, 0xb3, 0x96,
0x30, 0xa8, 0x67, 0xc0, 0xfa, 0xcc, 0x47, 0xcc, 0xcb, 0xbc, 0xfa, 0x27, 0xbb,
0xad, 0x4f, 0x9d, 0x83, 0x90, 0x3a, 0x8a, 0x7a, 0x29, 0x2b, 0xd7, 0x92, 0x1a,
0x80, 0xea, 0x6b, 0x31, 0xde, 0xd5, 0x70, 0x40, 0xd5, 0xef, 0x8c, 0x44, 0x86,
0x34, 0xad, 0x9a, 0x4e, 0xcd, 0x49, 0xec, 0xe9, 0x93, 0xe4, 0xdb, 0x85, 0x00,
0xbd, 0x19, 0xaf, 0x8d, 0x47, 0x68, 0xfa, 0x56, 0xe8, 0x07, 0x9f, 0x6b, 0xc8,
0x5f, 0x3e, 0xfb, 0x19, 0x0b, 0xe8, 0x29, 0xfb, 0x5b, 0x8c, 0x0f, 0xb1, 0xbc,
0x34, 0x21, 0x85, 0x22, 0x79, 0x27, 0xb1, 0xd8, 0xf3, 0x0e, 0xe6, 0x35, 0xb2,
0x80, 0x66, 0xc8, 0x31, 0xe7, 0x98, 0x2a, 0x4c, 0x59, 0x94, 0x4a, 0x77, 0x2f,
0x94, 0xe8, 0xbd, 0x85, 0xc1, 0x8a, 0x9d, 0xc3, 0x67, 0x3e, 0x6d, 0x6c, 0x11,
0x78, 0x1b, 0x59, 0x89, 0x4f, 0x95, 0xaa, 0x19, 0x97, 0xd8, 0x34, 0xbf, 0x98,
0xa6, 0xe2, 0xab, 0x86, 0x63, 0x94, 0xee, 0x31, 0x4e, 0xb2, 0xf6, 0x8d, 0x1f,
0x36, 0xbb, 0x91, 0x18, 0x15, 0xa2, 0x6f, 0xd3, 0x74, 0xfb, 0xd8, 0xcb, 0x6e,
0x06, 0xad, 0x39, 0xad, 0x69, 0xa3, 0x60, 0x98, 0x0e, 0x44, 0xb3, 0xb7, 0xe6,
0x37, 0x94, 0x99, 0x8a, 0xf0, 0xba, 0x40, 0x0c, 0x09, 0xfb, 0x15, 0x12, 0xb6,
0x79, 0x1f, 0x0b, 0xd6, 0x83, 0xc1, 0xf4, 0x76, 0xbd, 0x76, 0xec, 0x67, 0x24,
0xe1, 0xd9, 0xd0, 0x5b, 0x32, 0xef, 0xda, 0xa4, 0xfc, 0xfc, 0xdb, 0xd0, 0x2b,
0x51, 0xe4, 0x1e, 0xf0, 0xad, 0x13, 0x0b, 0x50, 0x4f, 0x77, 0xcc, 0xe0, 0x92,
0xda, 0x2a, 0xd1, 0x89, 0xe1, 0x65, 0xe3, 0x92, 0xe4, 0x9c, 0x3b, 0x0f, 0x7c,
0x42, 0xf8, 0x0c, 0x45, 0xcb, 0xf7, 0xa3, 0x87, 0x21, 0xf6, 0xbb, 0x76, 0xfb,
0x89, 0xf3, 0x7e, 0x1a, 0x33, 0xec, 0xd1, 0x7e, 0xa3, 0x93, 0xfd, 0xb8, 0xe7,
0xb8, 0xe3, 0x65, 0xcf, 0x22, 0x04, 0xc6, 0x4f, 0x7f, 0x6b, 0x50, 0xe3, 0x36,
0xbf, 0x37, 0x41, 0x14, 0x42, 0xaa, 0xf0, 0x8d, 0x9a, 0xc7, 0x68, 0xf6, 0x75,
0x9b, 0x7d, 0xd9, 0x8d, 0xe0, 0x94, 0xc8, 0x94, 0xa8, 0x6a, 0xb4, 0x83, 0x73,
0xde, 0xa3, 0x7e, 0xba, 0x0a, 0xba, 0xf1, 0x1d, 0xc1, 0x6c, 0x00, 0xd8, 0x1e,
0x48, 0xf4, 0x6d, 0x7e, 0xb9, 0x2c, 0xf3, 0x8e, 0x4b, 0x56, 0x73, 0x7d, 0xc1,
0x23, 0xc3, 0x79, 0xad, 0xf9, 0x89, 0x3f, 0xdd, 0x0b, 0xb4, 0x73, 0xba, 0xc8,
0x32, 0x73, 0x9f, 0x0f, 0x07, 0x2e, 0xaf, 0x7b, 0x3b, 0x7a, 0x66, 0xe4, 0x63,
0xb1, 0xe2, 0x55, 0x19, 0x8c, 0xda, 0x9e, 0x80, 0xf9, 0xc0, 0x02, 0xfb, 0x38,
0xc0, 0x2e, 0x52, 0xa1, 0x97, 0x54, 0x17, 0x89, 0xd2, 0xc0, 0xed, 0x00, 0xb6,
0x67, 0x27, 0xe3, 0x0a, 0x65, 0x8a, 0x19, 0x80, 0x7a, 0x69, 0xb1, 0x7d, 0x5d,
0x0a, 0xc4, 0x8e, 0xbd, 0x8a, 0x9f, 0x41, 0x75, 0xce, 0x33, 0x39, 0x68, 0x6f,
0x1f, 0xba, 0x25, 0x99, 0x75, 0xdd, 0xc5, 0x5b, 0x8e, 0x3b, 0x68, 0xd6, 0xb1,
0xca, 0x47, 0xcf, 0x90, 0x13, 0xdf, 0xb0, 0x58, 0x6c, 0xb3, 0x04, 0xb4, 0xbc,
0xc5, 0x23, 0x9e, 0xa8, 0xc1, 0xb2, 0xb3, 0x9d, 0x27, 0x0e, 0x98, 0x4a, 0x00,
0xf1, 0x6b, 0x65, 0xcd, 0x02, 0x4b, 0x65, 0xd1, 0xf4, 0x44, 0x88, 0xb1, 0xdc,
0x6e, 0x0a, 0xc4, 0xb7, 0xac, 0x65, 0xd0, 0xe0, 0x2f, 0x54, 0x64, 0xf9, 0x70,
0xb5, 0x7c, 0xdd, 0x0e, 0x06, 0xd1, 0xd8, 0xae, 0x8d, 0x08, 0xc0, 0xcd, 0xc5,
0x03, 0xb6, 0x52, 0x81, 0xda, 0x5e, 0x01, 0x41, 0x7a, 0xda, 0x05, 0x76, 0xa8,
0xfc, 0x8d, 0xaf, 0xbd, 0x27, 0x24, 0xe5, 0xf7, 0xfa, 0xf1, 0x35, 0xa8, 0x7d,
0x39, 0x17, 0x4c, 0x81, 0xc0, 0x62, 0x7f, 0x90, 0xf8, 0xdb, 0x61, 0x82, 0x96,
0xfb, 0x80, 0xfa, 0xce, 0xd2, 0x64, 0x8b, 0x59, 0xf6, 0xd9, 0xf7, 0xb3, 0x4a,
0xe7, 0xe8, 0x7a, 0x5f, 0x16, 0x35, 0x0a, 0x81, 0x2a, 0x49, 0x0f, 0x1c, 0x3b,
0xfe, 0x11, 0xfb, 0xbb, 0x13, 0x32, 0xdc, 0x2f, 0xd5, 0x09, 0x59, 0xc7, 0x6b,
0x58, 0xe6, 0xbb, 0x49, 0xb1, 0x60, 0x03, 0xe4, 0xff, 0x7b, 0x29, 0xfb, 0xc3,
0x97, 0x4d, 0x69, 0x02, 0x7d, 0xe3, 0x41, 0x0e, 0x1c, 0xfa, 0x8f, 0xd7, 0x09,
0xc4, 0xb2, 0xc6, 0x15, 0x78, 0x29, 0xa8, 0xd6, 0xb6, 0xf0, 0x84, 0xfe, 0x80,
0xcf, 0xf3, 0xfd, 0xa6, 0x38, 0x09, 0x6e, 0xf8, 0x38, 0xc4, 0x03, 0xae, 0x4b,
0xa6, 0x56, 0xa0, 0xa7, 0xdb, 0x43, 0xfc, 0x86, 0xd9, 0x6a, 0x16, 0x8f, 0xb0,
0x05, 0xc8, 0x62, 0x45, 0x61, 0x99, 0xd9, 0x49, 0x8c, 0x02, 0x5d, 0x44, 0x7d,
0x2c, 0x07, 0xd7, 0x88, 0x2e, 0x08, 0x1e, 0xed, 0x85, 0xc8, 0x0c, 0xb5, 0xc6,
0x9e, 0x7e, 0x2c, 0xb4, 0x38, 0x11, 0x76, 0x7c, 0x1e, 0xaa, 0x0f, 0xee, 0xd2,
0x1f, 0x24, 0x7b, 0x73, 0x0f, 0xdb, 0xef, 0x49, 0xde, 0xb3, 0x17, 0xcf, 0x93,
0xeb, 0xf3, 0x9c, 0xbb, 0x14, 0x6f, 0x14, 0x41, 0xac, 0x37, 0x8e, 0x2a, 0x1e,
0xa7, 0x69, 0x86, 0xeb, 0xff, 0xf7, 0xbf, 0x18, 0x99, 0x6f, 0xa2, 0xbd, 0x2d,
0x50, 0x17, 0x63, 0x01, 0x76, 0xb1, 0x6b, 0xa0, 0x7e, 0xef, 0xd6, 0x16, 0x1b,
0x22, 0x22, 0x7e, 0xe8, 0x64, 0xe8, 0xdc, 0x3a, 0xcc, 0xb3, 0xca, 0xbe, 0xa8,
0xfe, 0x37,
};
optimizesize void *__big5hkscs_nonbmp_encmap(void) {
return xload(&__big5hkscs_nonbmp_encmap_ptr,
__big5hkscs_nonbmp_encmap_rodata,
5436, 58612); /* 9.27455% profit */
}
| 33,826 | 432 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/README | To generate or modify mapping headers
-------------------------------------
Mapping headers are imported from CJKCodecs as pre-generated form.
If you need to tweak or add something on it, please look at tools/
subdirectory of CJKCodecs' distribution.
Notes on implmentation characteristics of each codecs
-----------------------------------------------------
1) Big5 codec
The big5 codec maps the following characters as cp950 does rather
than conforming Unicode.org's that maps to 0xFFFD.
BIG5 Unicode Description
0xA15A 0x2574 SPACING UNDERSCORE
0xA1C3 0xFFE3 SPACING HEAVY OVERSCORE
0xA1C5 0x02CD SPACING HEAVY UNDERSCORE
0xA1FE 0xFF0F LT DIAG UP RIGHT TO LOW LEFT
0xA240 0xFF3C LT DIAG UP LEFT TO LOW RIGHT
0xA2CC 0x5341 HANGZHOU NUMERAL TEN
0xA2CE 0x5345 HANGZHOU NUMERAL THIRTY
Because unicode 0x5341, 0x5345, 0xFF0F, 0xFF3C is mapped to another
big5 codes already, a roundtrip compatibility is not guaranteed for
them.
2) cp932 codec
To conform to Windows's real mapping, cp932 codec maps the following
codepoints in addition of the official cp932 mapping.
CP932 Unicode Description
0x80 0x80 UNDEFINED
0xA0 0xF8F0 UNDEFINED
0xFD 0xF8F1 UNDEFINED
0xFE 0xF8F2 UNDEFINED
0xFF 0xF8F3 UNDEFINED
3) euc-jisx0213 codec
The euc-jisx0213 codec maps JIS X 0213 Plane 1 code 0x2140 into
unicode U+FF3C instead of U+005C as on unicode.org's mapping.
Because euc-jisx0213 has REVERSE SOLIDUS on 0x5c already and A140
is shown as a full width character, mapping to U+FF3C can make
more sense.
The euc-jisx0213 codec is enabled to decode JIS X 0212 codes on
codeset 2. Because JIS X 0212 and JIS X 0213 Plane 2 don't have
overlapped by each other, it doesn't bother standard conformations
(and JIS X 0213 Plane 2 is intended to use so.) On encoding
sessions, the codec will try to encode kanji characters in this
order:
JIS X 0213 Plane 1 -> JIS X 0213 Plane 2 -> JIS X 0212
4) euc-jp codec
The euc-jp codec is a compatibility instance on these points:
- U+FF3C FULLWIDTH REVERSE SOLIDUS is mapped to EUC-JP A1C0 (vice versa)
- U+00A5 YEN SIGN is mapped to EUC-JP 0x5c. (one way)
- U+203E OVERLINE is mapped to EUC-JP 0x7e. (one way)
5) shift-jis codec
The shift-jis codec is mapping 0x20-0x7e area to U+20-U+7E directly
instead of using JIS X 0201 for compatibility. The differences are:
- U+005C REVERSE SOLIDUS is mapped to SHIFT-JIS 0x5c.
- U+007E TILDE is mapped to SHIFT-JIS 0x7e.
- U+FF3C FULL-WIDTH REVERSE SOLIDUS is mapped to SHIFT-JIS 815f.
| 2,731 | 80 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__jisx0213_2_bmp_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __jisx0213_2_bmp_decmap_ptr;
static const unsigned char __jisx0213_2_bmp_decmap_rodata[3265] = {
0x2d, 0x57, 0x7b, 0x4c, 0x1d, 0x57, 0x7a, 0xbf, 0xdf, 0xe3, 0x9c, 0x9c, 0x4e,
0x67, 0xa7, 0xb3, 0xd3, 0xd9, 0xe9, 0xed, 0xcd, 0xd5, 0xd5, 0xdd, 0x5b, 0xf7,
0x8a, 0x25, 0xc8, 0xeb, 0xba, 0xc4, 0xb5, 0xb2, 0x59, 0x2b, 0x55, 0x53, 0x6b,
0xb5, 0x8a, 0xac, 0x28, 0x5a, 0xa5, 0xa9, 0xb4, 0x4a, 0xdb, 0x55, 0x95, 0x76,
0x57, 0xda, 0x54, 0x51, 0xaa, 0x95, 0x76, 0x57, 0x72, 0x01, 0x03, 0xe1, 0x6d,
0xde, 0x60, 0xc0, 0x01, 0xf3, 0xb0, 0x01, 0x63, 0x62, 0xcc, 0xc3, 0x18, 0xf0,
0x03, 0x8c, 0xed, 0x60, 0x5e, 0xb6, 0x31, 0x06, 0x8c, 0x63, 0x1b, 0xfc, 0xc4,
0x06, 0x3b, 0xc6, 0x60, 0x30, 0xc4, 0x71, 0x4f, 0xaa, 0xfe, 0x33, 0x73, 0x47,
0x9a, 0x3b, 0xdf, 0x39, 0xdf, 0xf7, 0x7b, 0x9d, 0xe4, 0x4e, 0x0c, 0xc8, 0x8d,
0x2c, 0x37, 0x58, 0x38, 0x7f, 0x56, 0x4c, 0x9d, 0x15, 0x45, 0xbf, 0xfe, 0xfa,
0x0b, 0x79, 0xee, 0xac, 0x08, 0xfd, 0xe7, 0xcc, 0xaf, 0xb9, 0xf8, 0x37, 0x9c,
0x7a, 0x46, 0xec, 0x3a, 0x23, 0x2c, 0xc3, 0xde, 0xf2, 0xc3, 0x8d, 0xca, 0x8b,
0xab, 0x80, 0x7f, 0xb6, 0xe2, 0xd4, 0x50, 0x9f, 0xc8, 0xee, 0x13, 0xc8, 0xd2,
0x90, 0x01, 0xbb, 0x14, 0xfe, 0xc3, 0x6f, 0x99, 0x4a, 0x8e, 0xfe, 0x36, 0xf7,
0xe3, 0x60, 0x58, 0x3a, 0xac, 0x9e, 0x7e, 0xdc, 0xf6, 0x5f, 0xca, 0x36, 0x94,
0x5f, 0x2a, 0xf3, 0xa3, 0xd7, 0x5d, 0x64, 0x34, 0x83, 0xf5, 0xc7, 0xc5, 0x9e,
0xe3, 0xc2, 0x41, 0x47, 0x7e, 0x50, 0xdc, 0x23, 0x6e, 0xf4, 0x88, 0x9b, 0x3d,
0x62, 0xac, 0x47, 0x18, 0xb6, 0x7d, 0xe8, 0x93, 0xf9, 0x4f, 0xe6, 0xbb, 0xc5,
0x70, 0xb7, 0x50, 0x67, 0xbb, 0x45, 0x77, 0x97, 0xe8, 0xe9, 0x12, 0x45, 0x5d,
0x22, 0x6c, 0xef, 0xfd, 0xb4, 0xf3, 0x53, 0xcf, 0x1d, 0xfc, 0xf4, 0xc1, 0xa7,
0xc9, 0xc7, 0x84, 0xaf, 0xa8, 0x53, 0x60, 0x30, 0xac, 0x2e, 0x1c, 0x15, 0x17,
0x3b, 0x84, 0x15, 0xf6, 0x02, 0xb4, 0xda, 0x2e, 0x06, 0xdb, 0xc5, 0x50, 0xbb,
0x68, 0x6d, 0x17, 0xec, 0x78, 0x18, 0x1a, 0xff, 0xdd, 0xed, 0xdf, 0x5d, 0x6d,
0x13, 0xd9, 0x6d, 0x22, 0x8a, 0x9b, 0x23, 0x8e, 0x5a, 0x3d, 0x22, 0x7c, 0x87,
0x8e, 0x08, 0x23, 0xf8, 0x8b, 0x70, 0x61, 0x8b, 0xc8, 0x6e, 0x11, 0xce, 0x37,
0x87, 0x45, 0x6f, 0xa3, 0xc4, 0x47, 0xbf, 0x37, 0x16, 0x7e, 0x5f, 0xfd, 0x07,
0x3c, 0x05, 0xff, 0xa6, 0x9e, 0xfe, 0xa1, 0xf1, 0x8f, 0xdb, 0x94, 0xf9, 0xa6,
0xb4, 0x3d, 0xd3, 0xd2, 0xcb, 0x33, 0xd4, 0xb3, 0x26, 0x51, 0xd3, 0x24, 0x24,
0x73, 0x00, 0xed, 0x8f, 0x8c, 0xf6, 0x9d, 0x7d, 0x3b, 0xe5, 0xe9, 0x9d, 0x5f,
0xef, 0x44, 0xd9, 0xd6, 0x28, 0x12, 0x1b, 0x85, 0x61, 0x3a, 0x25, 0xff, 0x53,
0x96, 0x00, 0x93, 0xf5, 0xc2, 0xf7, 0xa2, 0x5e, 0xb8, 0xd2, 0xf0, 0xa7, 0x24,
0x40, 0x6e, 0x02, 0x74, 0xd6, 0x8b, 0x86, 0x7a, 0xb1, 0xb3, 0xe9, 0x80, 0x58,
0x38, 0x20, 0x9c, 0xb7, 0xac, 0x94, 0x44, 0xc8, 0x4f, 0x04, 0x46, 0x6b, 0x23,
0x07, 0x46, 0x13, 0x21, 0x35, 0x09, 0x94, 0x63, 0x48, 0xcf, 0x30, 0xa2, 0xf6,
0x06, 0x27, 0x88, 0x39, 0xb5, 0xe2, 0x62, 0x8d, 0x08, 0x76, 0xd4, 0x88, 0x86,
0x1a, 0xd1, 0x58, 0x23, 0x9e, 0x54, 0x0b, 0x34, 0x71, 0xb6, 0x5a, 0x1c, 0xac,
0x16, 0x96, 0x42, 0x34, 0x53, 0xab, 0x85, 0xaf, 0x66, 0x9f, 0xf8, 0x2b, 0x89,
0xee, 0x87, 0x23, 0x55, 0xe2, 0x56, 0x95, 0xb8, 0x5d, 0x25, 0x7c, 0x27, 0xab,
0x84, 0xed, 0x0e, 0xa6, 0xc2, 0xb5, 0x54, 0x90, 0x6c, 0xc5, 0xb3, 0xe5, 0x59,
0x19, 0x95, 0x62, 0xee, 0x73, 0x21, 0xb7, 0x6c, 0x47, 0x66, 0x54, 0x4e, 0xc0,
0x2a, 0xdb, 0x2b, 0x96, 0x2b, 0x84, 0x1b, 0x1b, 0xc1, 0x08, 0x1a, 0x6c, 0x85,
0xdb, 0xca, 0xc5, 0x54, 0x9d, 0x9c, 0xcc, 0x80, 0x73, 0x19, 0x70, 0x35, 0x03,
0x6e, 0x64, 0xc0, 0x85, 0x3a, 0x79, 0xa6, 0x4c, 0xa8, 0x13, 0x65, 0x22, 0xaf,
0x4c, 0x97, 0xdd, 0x1e, 0x0a, 0xfa, 0x8d, 0x88, 0x81, 0xd2, 0xaa, 0x2a, 0x15,
0xbe, 0xaf, 0x6a, 0xe5, 0x5a, 0x16, 0xa0, 0x1b, 0x36, 0xdf, 0x0d, 0xc7, 0x46,
0x22, 0x12, 0x39, 0xc4, 0x6c, 0x18, 0x5b, 0x58, 0x19, 0x1e, 0x59, 0x9e, 0x1d,
0x7a, 0xe3, 0x7b, 0xdb, 0xcc, 0x38, 0x2b, 0x20, 0x35, 0x6e, 0xe2, 0x8a, 0xf2,
0xe0, 0x44, 0x1e, 0x74, 0xe7, 0xc1, 0x64, 0x1e, 0xd8, 0x63, 0x79, 0x00, 0x59,
0xf9, 0xe0, 0xdf, 0x9d, 0x0f, 0x15, 0xf9, 0xf0, 0x8e, 0x55, 0xb1, 0x5b, 0x1c,
0xcf, 0x11, 0x4a, 0xef, 0xc6, 0xaa, 0xc8, 0x11, 0xbe, 0x5d, 0x39, 0x22, 0x59,
0xdf, 0x1e, 0x66, 0x0b, 0xce, 0x2b, 0x80, 0xb5, 0x2a, 0xe9, 0xeb, 0xd6, 0x3f,
0x15, 0x36, 0x67, 0x8b, 0x7d, 0xd9, 0xc2, 0xce, 0xcf, 0x16, 0x73, 0x59, 0xe2,
0x41, 0x96, 0xf0, 0x3d, 0xce, 0x14, 0xee, 0x96, 0x57, 0xa5, 0x62, 0xcf, 0x76,
0x5a, 0x8b, 0x60, 0xb1, 0x08, 0x9c, 0x87, 0x45, 0xb0, 0x5a, 0x04, 0x15, 0x19,
0x22, 0xb1, 0x4a, 0x16, 0x17, 0xc3, 0xee, 0x62, 0xa8, 0x2d, 0x06, 0x96, 0xbc,
0x91, 0xb9, 0x30, 0x5d, 0xa4, 0xa7, 0x8b, 0x4d, 0x26, 0xda, 0x3d, 0x69, 0xa2,
0x35, 0x4d, 0x18, 0x4f, 0x8b, 0xa1, 0xba, 0x04, 0x0a, 0x4a, 0xa0, 0xb3, 0x04,
0x64, 0x43, 0x09, 0x9c, 0x28, 0x81, 0x50, 0xd8, 0x9b, 0x2a, 0x81, 0xa5, 0x12,
0x98, 0x2b, 0x81, 0xc2, 0x52, 0x40, 0xc4, 0xaa, 0x54, 0xd1, 0x92, 0x22, 0x0c,
0x0e, 0x98, 0x96, 0xdf, 0x3a, 0x9f, 0x2c, 0x12, 0x93, 0x85, 0x67, 0x06, 0xfb,
0x77, 0x89, 0x93, 0xbb, 0xc4, 0x7b, 0x5b, 0x43, 0xfe, 0x48, 0x94, 0x63, 0xfc,
0x05, 0xe5, 0x50, 0x56, 0x0e, 0xca, 0x42, 0x0c, 0xfa, 0x75, 0x6b, 0x07, 0xca,
0x21, 0xa1, 0x02, 0x3c, 0x2e, 0xa8, 0x80, 0xdb, 0x15, 0xf0, 0x91, 0xe7, 0x45,
0x9b, 0x5e, 0x70, 0xf9, 0x0b, 0xc6, 0x80, 0x1b, 0xe1, 0xa8, 0x92, 0x5b, 0x34,
0xd4, 0x8d, 0xad, 0x45, 0x95, 0x50, 0x5b, 0x09, 0x46, 0xfc, 0xd6, 0xe4, 0x35,
0x9e, 0x78, 0xae, 0x47, 0xa2, 0x39, 0x66, 0x54, 0x3f, 0xe7, 0x8b, 0xab, 0x6c,
0x73, 0x5c, 0xfe, 0x2a, 0x5f, 0x5c, 0xe1, 0xa0, 0xf9, 0x86, 0x69, 0x60, 0x48,
0x6e, 0x7c, 0xd5, 0x7c, 0x27, 0xf0, 0xe1, 0xa5, 0x25, 0x4e, 0x5c, 0x62, 0xd3,
0x95, 0xd7, 0x9e, 0xb2, 0xaf, 0xe4, 0x29, 0x4b, 0x13, 0x0d, 0xe9, 0xde, 0x5c,
0xe4, 0x81, 0x45, 0x3e, 0xbf, 0xc8, 0xbe, 0x9a, 0x45, 0xde, 0x14, 0x7b, 0xfe,
0x09, 0x8f, 0x3d, 0xe1, 0xf7, 0xfe, 0xfb, 0x1f, 0xd1, 0x52, 0x1e, 0x9a, 0x1b,
0x63, 0x2d, 0x65, 0xbe, 0x8f, 0x1c, 0xe7, 0xba, 0xae, 0x9f, 0x3f, 0x40, 0x87,
0x47, 0xe6, 0xb9, 0x75, 0x9e, 0x31, 0xde, 0x38, 0xd8, 0x08, 0x7d, 0x8d, 0x60,
0xf0, 0x99, 0x46, 0xb8, 0xd2, 0x08, 0x31, 0x1b, 0xc2, 0x1b, 0x43, 0x96, 0x44,
0xe3, 0x5d, 0x29, 0x2d, 0x69, 0x79, 0xeb, 0x07, 0xa1, 0xb3, 0x09, 0x2c, 0x69,
0xab, 0xcd, 0xce, 0x16, 0xbf, 0x38, 0x77, 0x08, 0xea, 0x0b, 0xe5, 0xf0, 0x5d,
0x56, 0x76, 0xc7, 0x5d, 0xf6, 0x1d, 0xb8, 0xcb, 0xba, 0x39, 0x41, 0x23, 0xcc,
0x56, 0x51, 0x33, 0x9c, 0x68, 0x06, 0xa5, 0xda, 0x9b, 0xe1, 0x7c, 0x33, 0x9c,
0x69, 0x86, 0xaa, 0x2f, 0xa0, 0xe1, 0x30, 0x5c, 0x3e, 0x0c, 0x2a, 0x30, 0x79,
0x8b, 0x07, 0x6e, 0xf1, 0xf9, 0x5b, 0xec, 0xbb, 0x35, 0xab, 0x21, 0xee, 0xf4,
0xcd, 0xb2, 0xcf, 0x57, 0x30, 0xcb, 0x9c, 0x3b, 0xcb, 0x13, 0x33, 0x3c, 0x39,
0xc3, 0xed, 0x8b, 0x54, 0xf7, 0xdb, 0x93, 0xc0, 0x11, 0xc3, 0xb5, 0x38, 0xd6,
0xca, 0xb9, 0xa9, 0x5f, 0x18, 0xbc, 0xc1, 0x56, 0xb0, 0xfa, 0x06, 0x17, 0xdd,
0x60, 0x5b, 0xef, 0x51, 0x69, 0xb5, 0x38, 0xd9, 0x0a, 0xf7, 0x5b, 0x41, 0xfa,
0xd9, 0x0c, 0x9a, 0x17, 0xdb, 0xe0, 0x4a, 0x9b, 0x9e, 0x0d, 0x07, 0xd1, 0xb1,
0x12, 0x20, 0xf5, 0x1a, 0xfb, 0xc6, 0xff, 0xa2, 0xf2, 0x0c, 0xb3, 0x5e, 0xb6,
0xf4, 0xd0, 0xf2, 0xfc, 0xea, 0x65, 0x3b, 0xe0, 0x7c, 0x9e, 0x4c, 0x99, 0xe6,
0xe9, 0x0e, 0x58, 0xec, 0x80, 0xed, 0xd2, 0xb4, 0x8d, 0xe8, 0xf4, 0x51, 0xb8,
0x7d, 0x14, 0x38, 0xe8, 0x5a, 0x92, 0x55, 0xc4, 0xb8, 0x30, 0xc9, 0xbe, 0xf2,
0x09, 0xae, 0x98, 0x60, 0x5f, 0xfb, 0x24, 0x7b, 0xa8, 0x06, 0x3b, 0x61, 0xa4,
0x13, 0xdc, 0xa8, 0x23, 0xfb, 0x26, 0xb8, 0x64, 0x42, 0xef, 0xd0, 0xb3, 0xe4,
0xaf, 0xfe, 0x49, 0x6d, 0x68, 0xbb, 0xc2, 0x2f, 0xc7, 0xd9, 0xb0, 0xdb, 0xbb,
0xa0, 0xaf, 0x0b, 0x82, 0xdc, 0x35, 0xce, 0x75, 0xe3, 0xac, 0xe9, 0xf9, 0x8a,
0x1f, 0xfb, 0x2e, 0xeb, 0xc6, 0x5f, 0x66, 0x03, 0xd1, 0x4d, 0xba, 0xcc, 0x77,
0xc6, 0x34, 0x50, 0xf1, 0xea, 0x18, 0x0f, 0x8f, 0xf1, 0x4c, 0x37, 0xe4, 0xf7,
0xc0, 0x96, 0x60, 0x8c, 0x63, 0x58, 0xf1, 0xd1, 0xaa, 0x8b, 0x9c, 0x78, 0x91,
0xd1, 0x41, 0x8c, 0xf8, 0xd1, 0x92, 0x11, 0x5b, 0xed, 0x40, 0x95, 0x36, 0xca,
0x2f, 0x46, 0x38, 0x18, 0xdc, 0xb0, 0xd1, 0xc8, 0x3c, 0x09, 0xd5, 0x27, 0x41,
0x0f, 0x2a, 0x36, 0xb8, 0x7e, 0x12, 0xd2, 0x4e, 0x81, 0xe2, 0x80, 0xc4, 0xea,
0x21, 0x5e, 0x1f, 0x64, 0x37, 0x9e, 0xf1, 0x25, 0xe6, 0x52, 0x60, 0x9b, 0xe4,
0x70, 0x58, 0xcb, 0x8f, 0xb2, 0x86, 0x06, 0x78, 0xf8, 0x1c, 0x8f, 0x9c, 0xd3,
0xed, 0xaa, 0x1b, 0xd0, 0x48, 0x08, 0x96, 0x63, 0xbd, 0x16, 0x06, 0x0c, 0xb9,
0x81, 0x04, 0xf8, 0xb1, 0x32, 0x0e, 0xf6, 0x43, 0x5f, 0x3f, 0xb8, 0x7e, 0x2d,
0xab, 0x5a, 0xa3, 0x50, 0xfa, 0xd3, 0xcf, 0xc0, 0x83, 0x33, 0x10, 0x13, 0xf0,
0x94, 0x15, 0xea, 0x84, 0x02, 0xbd, 0x8b, 0x10, 0xfb, 0x03, 0x11, 0x33, 0xf9,
0x34, 0x4f, 0xf4, 0xb1, 0xa1, 0x1b, 0xf4, 0xaf, 0xaf, 0x47, 0xcd, 0x77, 0x7f,
0x6a, 0xba, 0x45, 0x03, 0x50, 0x3d, 0x00, 0x51, 0x8c, 0x28, 0xaf, 0xf1, 0x14,
0xef, 0x3a, 0xc5, 0xca, 0x92, 0x9b, 0x3b, 0x4e, 0x72, 0xfa, 0x49, 0x46, 0xb6,
0x94, 0x9a, 0x39, 0x0f, 0x4b, 0xe7, 0x21, 0xa2, 0x24, 0xdb, 0xb6, 0x34, 0x42,
0xfc, 0xb3, 0xd4, 0xe3, 0x7c, 0xfc, 0x38, 0x6f, 0x28, 0x3b, 0xce, 0x35, 0x3d,
0xfc, 0x0f, 0x16, 0x3b, 0x3b, 0x74, 0x55, 0x54, 0x25, 0xc3, 0x70, 0x7d, 0x18,
0x78, 0xdb, 0x9f, 0x3a, 0x5e, 0xc1, 0x08, 0x24, 0x8f, 0xc2, 0x6b, 0x5b, 0x0c,
0xd6, 0xfc, 0x28, 0x3e, 0xc6, 0x77, 0x3a, 0xd9, 0x36, 0xe5, 0xfb, 0xbb, 0x2e,
0x40, 0xda, 0x13, 0xd1, 0x5d, 0xc5, 0x8e, 0xc2, 0x3d, 0xb9, 0xd0, 0x94, 0xab,
0xbf, 0xea, 0xef, 0xe8, 0xe0, 0xca, 0x0e, 0xdd, 0x28, 0x2b, 0x74, 0xb3, 0x9d,
0xf7, 0xb5, 0xeb, 0x9a, 0x18, 0xee, 0xbd, 0x08, 0x93, 0x17, 0x61, 0xf0, 0x22,
0x70, 0xf1, 0x25, 0xb0, 0x02, 0x9e, 0x89, 0x07, 0x2f, 0xc1, 0xfc, 0x25, 0xf8,
0x4b, 0x83, 0xdd, 0xd8, 0xf5, 0x4b, 0xd0, 0x3c, 0x06, 0x58, 0x7b, 0x84, 0x2b,
0x8f, 0xe8, 0xb7, 0x4d, 0x57, 0x19, 0xae, 0x52, 0x1a, 0x0d, 0x01, 0x66, 0x29,
0x4d, 0x33, 0xce, 0xdc, 0x10, 0xff, 0x37, 0xd6, 0xf6, 0x80, 0x1d, 0xff, 0xd7,
0xd2, 0x35, 0xbc, 0x98, 0xb0, 0x92, 0xf3, 0x87, 0x78, 0xe2, 0x10, 0x6b, 0xd1,
0x43, 0x65, 0x60, 0x90, 0x61, 0x2b, 0x9b, 0x91, 0x57, 0xf6, 0x37, 0xf1, 0x67,
0x4d, 0x9c, 0xd6, 0xc4, 0xdd, 0x07, 0x59, 0x99, 0x75, 0x13, 0x30, 0x92, 0x24,
0x13, 0x0f, 0xea, 0x2f, 0xda, 0x26, 0x73, 0xbc, 0x09, 0x8e, 0x44, 0xb9, 0xd6,
0xc0, 0xb7, 0x1a, 0xf8, 0xd0, 0x24, 0x5c, 0x9d, 0x84, 0xf1, 0x49, 0x58, 0x9c,
0x04, 0xcb, 0x46, 0xd3, 0x51, 0xae, 0x46, 0xb7, 0xc1, 0xd2, 0x76, 0x63, 0x7f,
0x68, 0xf7, 0x4e, 0x41, 0x55, 0xa2, 0x1c, 0x3f, 0xc0, 0x36, 0xf6, 0x1f, 0xe0,
0x96, 0x03, 0x2c, 0x63, 0xbe, 0x5f, 0x7c, 0x80, 0xe7, 0x12, 0xe4, 0xd7, 0x53,
0xb0, 0xb6, 0x9f, 0xe7, 0xf6, 0xb3, 0x7f, 0x7d, 0x0a, 0x9a, 0xaf, 0xc2, 0x0e,
0xcb, 0x00, 0x0b, 0xad, 0xcf, 0xeb, 0x78, 0xae, 0x96, 0x1f, 0xd4, 0xf2, 0xc1,
0x5a, 0x56, 0xb5, 0xb5, 0x3c, 0x5c, 0xc3, 0x32, 0x6a, 0xaf, 0x4c, 0x43, 0xc6,
0x4b, 0xe1, 0x1b, 0xac, 0x66, 0xdb, 0xad, 0xaf, 0xe6, 0x92, 0x6a, 0x76, 0x31,
0xa9, 0x9a, 0x07, 0xbf, 0x15, 0xc9, 0x5f, 0x81, 0x21, 0xd9, 0xf8, 0x8d, 0x56,
0x6d, 0xc5, 0x2d, 0x5f, 0x41, 0xd7, 0x57, 0x5a, 0x7b, 0x52, 0xab, 0xf8, 0x49,
0xa5, 0x1e, 0xb4, 0xf2, 0xdb, 0xde, 0x96, 0x37, 0xcc, 0xfa, 0xcf, 0xf9, 0xde,
0x5e, 0x76, 0xc3, 0xdf, 0x43, 0xdc, 0x1a, 0xd0, 0xcd, 0xf0, 0xd0, 0x88, 0x22,
0xca, 0x84, 0x0a, 0x9e, 0x2e, 0x67, 0x2f, 0xf6, 0x07, 0x71, 0xa1, 0xa0, 0x3c,
0x38, 0x03, 0xfd, 0x33, 0xe0, 0xbd, 0x8d, 0x68, 0x98, 0xb6, 0x67, 0x59, 0x86,
0x81, 0x4e, 0xf9, 0x2c, 0xcc, 0xaf, 0x69, 0x71, 0x5f, 0x13, 0xcf, 0x66, 0x41,
0x4b, 0x87, 0x5c, 0x9e, 0x85, 0xc2, 0x5b, 0xe0, 0x85, 0x0c, 0x57, 0x4a, 0xa9,
0x81, 0xeb, 0x49, 0xd7, 0x36, 0xa3, 0x4e, 0x6d, 0x11, 0x17, 0x3c, 0x17, 0x19,
0xb7, 0xb5, 0xbd, 0xbc, 0xb8, 0x05, 0x65, 0xb7, 0xc1, 0x88, 0x43, 0x7f, 0x61,
0x21, 0xfb, 0x16, 0x0a, 0xf8, 0x51, 0x01, 0x27, 0x16, 0xf0, 0x6b, 0x52, 0x21,
0x17, 0xdd, 0x81, 0x40, 0xe9, 0x5d, 0xf8, 0x63, 0xdd, 0x1d, 0x18, 0xb9, 0x03,
0x3f, 0xfb, 0x11, 0x4b, 0xb7, 0x38, 0x9f, 0x17, 0x56, 0x44, 0xfe, 0x5d, 0x6d,
0x1d, 0x7b, 0xee, 0x42, 0xdf, 0x5d, 0x30, 0x2d, 0xc7, 0xb8, 0x9f, 0xcb, 0xbe,
0xb1, 0x5c, 0x66, 0x15, 0x36, 0xa3, 0xb6, 0xc4, 0x8d, 0xdb, 0x0c, 0xcb, 0xd4,
0xda, 0xa3, 0x59, 0x55, 0x91, 0xa3, 0x21, 0xfe, 0x45, 0x36, 0x1f, 0xce, 0xe6,
0xdd, 0xd9, 0x8c, 0xf6, 0xb7, 0x59, 0xfc, 0x34, 0x8b, 0x97, 0xb2, 0xf8, 0x61,
0x16, 0x1b, 0xb3, 0x59, 0x3c, 0x9c, 0xc5, 0x23, 0x59, 0xfc, 0x85, 0x7e, 0xd8,
0x9f, 0xc5, 0x79, 0x59, 0x5a, 0x32, 0x53, 0xe6, 0xa0, 0x74, 0x0e, 0xfc, 0xa7,
0x32, 0xd9, 0x97, 0x98, 0xf9, 0x1d, 0x64, 0x1f, 0x65, 0xb0, 0x6f, 0x74, 0x49,
0xa4, 0x3e, 0x00, 0x0c, 0x9b, 0x75, 0x0f, 0xa0, 0xff, 0x01, 0x7c, 0x9b, 0xce,
0x8f, 0xd3, 0x75, 0x39, 0x6f, 0x24, 0x9d, 0x7b, 0xd3, 0xd9, 0x95, 0x7e, 0x74,
0xb4, 0x01, 0x7b, 0xf6, 0xc2, 0x43, 0x58, 0x7d, 0x2a, 0x06, 0xbd, 0xdd, 0x4f,
0xc8, 0x32, 0xa5, 0x65, 0x6c, 0xfe, 0x25, 0x3b, 0x36, 0x1e, 0x5d, 0x80, 0xa1,
0x05, 0xb0, 0xf8, 0xd0, 0x02, 0x2c, 0x3e, 0x06, 0x90, 0x06, 0x7a, 0xe5, 0x8d,
0xb8, 0xd6, 0x24, 0x27, 0x92, 0x78, 0x32, 0x89, 0x8f, 0x25, 0x69, 0x8a, 0x39,
0x61, 0x4c, 0x48, 0xe2, 0xe9, 0x44, 0x6e, 0xe8, 0x84, 0xd4, 0x2e, 0x31, 0x9a,
0xa8, 0x31, 0x55, 0x9d, 0xc8, 0xcb, 0x09, 0xec, 0x8f, 0xd1, 0x05, 0xc2, 0x36,
0x99, 0xd2, 0x08, 0xda, 0x2a, 0xba, 0xdd, 0xfb, 0xbf, 0x20, 0x21, 0x23, 0x59,
0x2f, 0xe8, 0xc9, 0x37, 0x14, 0x96, 0xc1, 0xc3, 0xdf, 0xd0, 0xcc, 0x3a, 0xfd,
0xd8, 0xdc, 0xb3, 0x04, 0x39, 0xcb, 0xf0, 0x53, 0x7b, 0x7a, 0x09, 0xee, 0x2f,
0xe9, 0x2a, 0xb5, 0xeb, 0x94, 0xb8, 0x4e, 0x73, 0x4b, 0xd0, 0xb7, 0x0c, 0x35,
0xcb, 0x70, 0x79, 0x19, 0x06, 0x96, 0xe1, 0xc2, 0x32, 0xe0, 0x99, 0x65, 0x98,
0x5f, 0x86, 0xf8, 0x10, 0x47, 0x8d, 0xb3, 0xab, 0xd4, 0xba, 0x4a, 0x6d, 0xab,
0x54, 0xb3, 0x4a, 0xb5, 0xab, 0x94, 0xb8, 0x4a, 0xfc, 0xed, 0x0a, 0x3d, 0x5d,
0xa1, 0xa5, 0x15, 0x1a, 0x58, 0x21, 0x1b, 0x3b, 0x57, 0xa8, 0x64, 0x85, 0x34,
0x88, 0xe4, 0x2b, 0x8b, 0xcf, 0xe8, 0xce, 0x33, 0x6a, 0x58, 0x81, 0x23, 0x2b,
0xa0, 0xaf, 0x5d, 0x2b, 0x30, 0xf2, 0x8c, 0x4e, 0x3f, 0x23, 0xab, 0xe3, 0x19,
0xf5, 0x7a, 0x38, 0x70, 0x83, 0x46, 0x57, 0x60, 0x72, 0x05, 0x34, 0xe3, 0x9d,
0x18, 0x74, 0xd9, 0xe4, 0x77, 0xcc, 0x50, 0x18, 0x55, 0x2e, 0x7c, 0xc2, 0x51,
0xbf, 0x1d, 0x6d, 0x59, 0x83, 0xa4, 0x75, 0x18, 0x5f, 0x83, 0xbf, 0x6f, 0x5b,
0xd7, 0xc0, 0x35, 0xf9, 0x03, 0x4b, 0x39, 0x76, 0x4c, 0x1c, 0xab, 0x4b, 0x8f,
0x69, 0xf8, 0x31, 0xbd, 0x1d, 0x31, 0x34, 0x0f, 0x90, 0xfb, 0x1f, 0x51, 0xcb,
0x23, 0x8a, 0xe8, 0x24, 0x70, 0xef, 0x05, 0x7c, 0xfe, 0x12, 0xd2, 0x21, 0xb4,
0xe9, 0xe1, 0xb7, 0x90, 0xf5, 0x12, 0x50, 0x5d, 0x99, 0xa7, 0x43, 0xf3, 0xa4,
0x3b, 0xa8, 0x65, 0x2c, 0x14, 0x72, 0x34, 0x79, 0xb6, 0xbc, 0x55, 0x90, 0x88,
0x6f, 0x3e, 0x7b, 0x09, 0x51, 0xf6, 0x24, 0x76, 0x3e, 0xa0, 0x94, 0x07, 0xc4,
0x3a, 0x4a, 0x04, 0x5c, 0xde, 0x64, 0x78, 0x32, 0xa8, 0xeb, 0x18, 0x61, 0x37,
0x12, 0xd0, 0xf8, 0x6b, 0xbe, 0x47, 0xe9, 0xf7, 0x48, 0x26, 0xdf, 0xa3, 0xf5,
0xbb, 0x74, 0x6a, 0x94, 0xf6, 0x8c, 0x92, 0xdc, 0x6c, 0x6b, 0xa2, 0x2b, 0xed,
0x75, 0xde, 0xe2, 0x30, 0xdd, 0x18, 0x26, 0x0e, 0x72, 0x50, 0xb1, 0x5f, 0x4e,
0x27, 0x63, 0x59, 0x8a, 0x9e, 0xbe, 0x16, 0x47, 0xcd, 0xdf, 0xa0, 0xa3, 0x58,
0x06, 0x2d, 0xbf, 0xf6, 0xe0, 0xe4, 0x59, 0xf2, 0x1d, 0x9a, 0xa1, 0x9f, 0xb0,
0x1d, 0xe8, 0x99, 0xa1, 0x96, 0xfb, 0xe2, 0xc8, 0x67, 0x98, 0x30, 0x43, 0xcf,
0x6f, 0x52, 0x60, 0xc7, 0x6b, 0x27, 0x6e, 0x52, 0xfb, 0x4d, 0xfa, 0xce, 0x8d,
0x39, 0x46, 0xeb, 0x5b, 0xac, 0xa9, 0xdc, 0xa9, 0x34, 0x7c, 0x96, 0x86, 0x41,
0xcb, 0x68, 0xbb, 0x4e, 0xbe, 0x86, 0xeb, 0xd4, 0x78, 0x9d, 0xf6, 0x5e, 0xa7,
0x5f, 0x6d, 0xd5, 0x0e, 0xb4, 0x61, 0xf2, 0x1a, 0x4d, 0x5d, 0xd3, 0xcd, 0x8d,
0xc5, 0x1b, 0x19, 0x98, 0x90, 0x89, 0x6b, 0xd3, 0x94, 0x3d, 0x4d, 0x39, 0xd3,
0xb4, 0x72, 0x95, 0xa4, 0x7a, 0x70, 0x95, 0x5a, 0xee, 0x8a, 0xb5, 0x4c, 0x7c,
0x53, 0xab, 0x59, 0xc4, 0xda, 0xc6, 0xd1, 0x82, 0x6c, 0xac, 0xca, 0x46, 0x76,
0xb9, 0x32, 0x1b, 0xfb, 0xb3, 0x51, 0x5e, 0x9e, 0xa0, 0x63, 0x13, 0x14, 0xe3,
0x58, 0xb6, 0xd7, 0x04, 0x3f, 0xd9, 0x61, 0x6d, 0xfe, 0x79, 0xf2, 0x65, 0xba,
0x37, 0x46, 0x7f, 0x62, 0x87, 0x64, 0x30, 0x6e, 0x21, 0x17, 0x33, 0xf2, 0x30,
0xb0, 0xc9, 0x61, 0xd7, 0x41, 0x8b, 0x3b, 0x30, 0x63, 0x94, 0x12, 0x47, 0x29,
0x69, 0x94, 0x7c, 0x4f, 0x46, 0x74, 0x55, 0x43, 0x6e, 0x50, 0x66, 0xf1, 0x08,
0x8d, 0x0f, 0x13, 0x58, 0x73, 0x85, 0xf8, 0xa8, 0x10, 0x9d, 0x7f, 0x07, 0x75,
0x7e, 0x88, 0xca, 0x87, 0x08, 0xcb, 0x86, 0x68, 0x6e, 0x90, 0x8c, 0x1e, 0xd8,
0x14, 0x89, 0x1c, 0x1e, 0xa0, 0xc7, 0x5f, 0x12, 0x47, 0xa2, 0x6f, 0xed, 0x2d,
0xc5, 0x84, 0x52, 0x74, 0xbe, 0x3e, 0x47, 0x63, 0xe7, 0x48, 0xbb, 0x9e, 0xd1,
0x7c, 0x8e, 0x46, 0x6f, 0x88, 0x53, 0xa5, 0x28, 0xb5, 0xa1, 0xe9, 0x18, 0xfe,
0x9e, 0x19, 0xd6, 0x53, 0x34, 0x52, 0xcf, 0xd0, 0x54, 0x3f, 0xc9, 0xcc, 0x32,
0xbc, 0x52, 0x86, 0x19, 0xfd, 0xb4, 0x7e, 0x9a, 0xec, 0x50, 0x4c, 0xac, 0x1b,
0x1c, 0xea, 0xa3, 0xd6, 0x5e, 0x0a, 0xdf, 0x6e, 0xa4, 0x1b, 0x8d, 0x94, 0xdb,
0x4b, 0xcf, 0x4f, 0xe9, 0x1a, 0x0d, 0xd4, 0xda, 0x40, 0xd2, 0x64, 0x2f, 0xa2,
0x4c, 0xcb, 0x7d, 0x3f, 0xe7, 0x24, 0x2d, 0x9f, 0x20, 0xdc, 0xfc, 0xae, 0xa5,
0xca, 0xbc, 0x95, 0x1f, 0x4c, 0x54, 0xe2, 0xb3, 0x4a, 0x34, 0x03, 0xc6, 0x7c,
0x0f, 0x9d, 0xee, 0x21, 0x79, 0xa2, 0x87, 0x76, 0xf7, 0xd0, 0x2b, 0xc1, 0x1f,
0x45, 0xb5, 0x84, 0x6d, 0x50, 0xbc, 0x99, 0xd1, 0x8f, 0x61, 0x6d, 0xf6, 0x61,
0xc3, 0xef, 0xc4, 0x9b, 0xfa, 0xbc, 0x80, 0x71, 0x5f, 0x76, 0x92, 0xaf, 0xa6,
0x93, 0x38, 0xea, 0xf8, 0x71, 0xe4, 0x28, 0x15, 0x1d, 0xa5, 0x90, 0x21, 0x95,
0x3e, 0x4b, 0x68, 0xcd, 0x66, 0x6c, 0xea, 0x20, 0xdf, 0xae, 0x0e, 0xd2, 0x9d,
0xd4, 0xd2, 0x6b, 0xda, 0x6a, 0x7f, 0x3b, 0xf9, 0x4a, 0xda, 0x29, 0x80, 0xa6,
0xad, 0x27, 0xee, 0xe7, 0x5f, 0xfc, 0xad, 0x8e, 0x03, 0x9e, 0x6d, 0xeb, 0xbc,
0xd3, 0xd8, 0x4a, 0xbe, 0x85, 0x23, 0xe4, 0x9a, 0x32, 0x62, 0xf2, 0x2f, 0xbb,
0x5a, 0xc8, 0xf7, 0xb0, 0x45, 0xcf, 0x26, 0xd4, 0x0c, 0xf9, 0x87, 0xc9, 0xb7,
0xe7, 0x30, 0xfd, 0x8b, 0x19, 0x6b, 0x1a, 0x6f, 0xeb, 0x58, 0xff, 0x77, 0x1f,
0xb3, 0xe5, 0x2e, 0x36, 0x93, 0x6f, 0x5f, 0x33, 0x71, 0xbe, 0x8e, 0x6b, 0x3a,
0x68, 0x37, 0x50, 0x5d, 0x03, 0x39, 0x85, 0x0d, 0xf4, 0xb0, 0x9e, 0xe6, 0xeb,
0xf5, 0x92, 0x0e, 0x90, 0x85, 0x85, 0x07, 0x68, 0xd7, 0x01, 0x32, 0xde, 0xea,
0xda, 0x4f, 0x2b, 0x75, 0xb4, 0x5a, 0x47, 0xe7, 0xea, 0xe8, 0xcb, 0x3a, 0x3a,
0x34, 0x29, 0x92, 0x5b, 0xd1, 0xd4, 0x76, 0x99, 0xd2, 0x8a, 0x69, 0x93, 0x62,
0xb0, 0x96, 0x58, 0xb6, 0xb4, 0x62, 0x55, 0x1b, 0x86, 0x9e, 0xb6, 0x62, 0x59,
0x1b, 0xea, 0xe8, 0xc8, 0x2a, 0x54, 0x5f, 0x4d, 0xbe, 0xd1, 0x7d, 0xa4, 0x94,
0x0a, 0xa1, 0x3f, 0xa8, 0x77, 0x85, 0x76, 0x38, 0xaa, 0x99, 0xc0, 0xad, 0xed,
0x98, 0x3c, 0x2e, 0xda, 0x2b, 0x29, 0x84, 0xaf, 0xbe, 0xbd, 0x2d, 0x43, 0x07,
0xd7, 0x8a, 0xbd, 0x94, 0xbd, 0x97, 0x50, 0x3b, 0x8f, 0x3e, 0x72, 0xc4, 0xf6,
0x54, 0xd0, 0xb1, 0x0a, 0xcd, 0x0d, 0xc3, 0x44, 0x8e, 0xdd, 0x73, 0x14, 0x53,
0xc7, 0xc4, 0x68, 0x39, 0xe1, 0x48, 0x39, 0x9d, 0xd3, 0x37, 0xec, 0x2f, 0xa7,
0x3d, 0xdf, 0xdd, 0x75, 0x0e, 0x55, 0x68, 0x58, 0x18, 0x94, 0xa8, 0xe3, 0x7f,
0x54, 0x69, 0x37, 0xd3, 0xe7, 0x89, 0x53, 0xa5, 0x54, 0x5e, 0x4a, 0x8e, 0x26,
0x81, 0xa1, 0xcc, 0x88, 0x56, 0x22, 0xff, 0xc1, 0x2e, 0xbc, 0xda, 0x8d, 0x03,
0xdd, 0xff, 0x7f, 0x1d, 0xe9, 0xc6, 0x8c, 0x22, 0x7a, 0x5c, 0x48, 0x2e, 0xcb,
0xa9, 0x6e, 0xbc, 0xdf, 0xad, 0xcd, 0x51, 0xc5, 0x3b, 0xdf, 0xfd, 0x3d, 0x64,
0xbb, 0xc7, 0x7a, 0xf0, 0x4a, 0x0f, 0x6e, 0x62, 0x53, 0x7b, 0x00, 0x7e, 0x68,
0x1a, 0x65, 0x79, 0xba, 0xe3, 0x79, 0x64, 0x9a, 0xce, 0x07, 0xaf, 0x6b, 0x6f,
0x40, 0x05, 0x55, 0xb9, 0xf4, 0x59, 0x2e, 0xa5, 0xe5, 0x52, 0x76, 0x2e, 0xe5,
0xe4, 0xd2, 0xe8, 0x6e, 0x4d, 0x23, 0x94, 0x86, 0x06, 0x53, 0xfd, 0x6e, 0xda,
0xb3, 0x9b, 0xb4, 0xd3, 0x6e, 0xec, 0xcf, 0xa1, 0xb9, 0x1c, 0xc2, 0xfb, 0x39,
0x34, 0x96, 0x43, 0x3a, 0x41, 0x68, 0x4f, 0xd3, 0xfe, 0xae, 0x7d, 0xda, 0x98,
0x04, 0xff, 0xe6, 0xef, 0xaf, 0x66, 0xd2, 0x54, 0x26, 0x99, 0x38, 0x94, 0x49,
0x4f, 0x87, 0xc4, 0xd2, 0x90, 0x28, 0xc9, 0xa4, 0xde, 0x5e, 0x9c, 0xed, 0x45,
0x3b, 0x56, 0x76, 0x66, 0x50, 0x43, 0x06, 0xf1, 0xfe, 0x0c, 0x2a, 0xca, 0x20,
0x6d, 0x45, 0xa6, 0xe3, 0xb7, 0xdf, 0xfc, 0x73, 0xa5, 0x4c, 0x9d, 0x94, 0xb4,
0x8d, 0xcb, 0xc8, 0xd4, 0x69, 0x4c, 0xed, 0xc7, 0x3f, 0xf3, 0xfc, 0x12, 0x7b,
0x20, 0x35, 0x95, 0xd6, 0x53, 0xc8, 0x88, 0x0b, 0x34, 0xa5, 0x50, 0x62, 0x0a,
0x25, 0xa5, 0xd0, 0xf1, 0x64, 0xb2, 0xad, 0x88, 0x2c, 0x3a, 0x8b, 0xa5, 0x67,
0x31, 0x86, 0xe3, 0x6c, 0x29, 0xf5, 0x99, 0x23, 0xc0, 0x72, 0x28, 0x89, 0x7a,
0x93, 0xa8, 0x2f, 0x89, 0x1a, 0x92, 0xa8, 0x31, 0x89, 0xf6, 0x25, 0x69, 0x79,
0xfa, 0x5f,
};
optimizesize void *__jisx0213_2_bmp_decmap(void) {
return xloadzd(&__jisx0213_2_bmp_decmap_ptr,
__jisx0213_2_bmp_decmap_rodata,
3265, 3827, 2425, 2, 0x261de97fu); /* 67.3196% profit */
}
| 20,487 | 265 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/big5hkscs_nonbmp_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) big5hkscs_nonbmp_encmap_ptr;
static const unsigned char big5hkscs_nonbmp_encmap_rodata[] = {
0x63, 0x64, 0x50, 0x7c, 0x77, 0x9e, 0x81, 0xe7, 0xd3, 0x36, 0x46, 0x96, 0xa7,
0x33, 0x98, 0xb8, 0xfe, 0x74, 0x33, 0x0b, 0xff, 0x2b, 0x67, 0x71, 0x7f, 0x2d,
0xc3, 0x2a, 0x58, 0xd6, 0xc4, 0xca, 0x57, 0xf9, 0x8e, 0x55, 0xe7, 0xea, 0x0c,
0x36, 0xb1, 0xe7, 0x59, 0xec, 0x82, 0x67, 0xd5, 0x39, 0x78, 0xff, 0x4b, 0x71,
0x72, 0xff, 0xe7, 0xe7, 0x12, 0x3d, 0x71, 0x98, 0x8b, 0xe5, 0xf7, 0x6e, 0x6e,
0xd9, 0xb7, 0x3d, 0x3c, 0x22, 0xdf, 0xf2, 0x79, 0xf5, 0x6f, 0x4a, 0xf1, 0xd9,
0xfc, 0xbb, 0xcb, 0xc7, 0xf4, 0xef, 0x16, 0xbf, 0xf0, 0xdf, 0xa3, 0x02, 0xe5,
0xd3, 0x9e, 0x0a, 0x70, 0xfd, 0xbb, 0x25, 0xc8, 0xfb, 0xe7, 0x94, 0x90, 0xc2,
0xaf, 0xa5, 0xc2, 0xcc, 0x9f, 0xa7, 0x89, 0xe8, 0x26, 0x9f, 0x15, 0x71, 0x39,
0xe4, 0x23, 0xaa, 0xb5, 0xe6, 0xbc, 0xa8, 0xdb, 0xcf, 0x66, 0x31, 0x99, 0xab,
0xb6, 0xe2, 0xfc, 0x2f, 0xc4, 0x25, 0x5c, 0xff, 0x9c, 0x97, 0xd0, 0x3a, 0x9c,
0x29, 0xc9, 0x51, 0x73, 0x4f, 0x52, 0xf1, 0xd7, 0x0e, 0xa9, 0xd4, 0xb7, 0x8e,
0xd2, 0xc2, 0xfb, 0xde, 0x4a, 0x4b, 0x7f, 0x3b, 0x29, 0x23, 0x74, 0xb6, 0x55,
0x96, 0xf9, 0x7b, 0x95, 0x9c, 0xda, 0xe4, 0x17, 0x72, 0x69, 0x2f, 0xb2, 0xe5,
0xf9, 0xce, 0xe9, 0x28, 0xa8, 0x9d, 0xbc, 0xa0, 0xc0, 0xfe, 0x6e, 0x87, 0x22,
0xef, 0xfb, 0xd9, 0x4a, 0x25, 0x8f, 0xb9, 0x95, 0x8d, 0x6f, 0x6d, 0x56, 0x66,
0xfe, 0xb9, 0x4a, 0x85, 0xff, 0x61, 0xad, 0x2a, 0xc3, 0xbf, 0x1a, 0x35, 0x86,
0xa7, 0x49, 0xea, 0x92, 0x9f, 0x6d, 0x35, 0x18, 0xde, 0xe9, 0x68, 0x32, 0x5f,
0x67, 0xd4, 0xb2, 0xb2, 0x62, 0xd2, 0x3a, 0x74, 0x88, 0x59, 0x6b, 0xf9, 0xaf,
0x70, 0x2d, 0xa9, 0xa8, 0x19, 0x5a, 0xc9, 0xff, 0x4d, 0xb5, 0x1d, 0x7e, 0xbc,
0xd3, 0x66, 0xfb, 0xf3, 0x54, 0xc7, 0xf4, 0xc3, 0x42, 0x5d, 0xc1, 0x37, 0xb5,
0x7a, 0x2c, 0x7f, 0xca, 0xf4, 0xa5, 0x7f, 0x85, 0x19, 0xf0, 0xfe, 0x70, 0x32,
0x64, 0xb9, 0x26, 0x6a, 0xc4, 0x7a, 0xe2, 0xa6, 0x91, 0xc4, 0x95, 0x69, 0xc6,
0x6c, 0x0f, 0x0a, 0x4d, 0x84, 0xfe, 0xc7, 0x9b, 0x32, 0xfc, 0x8e, 0x36, 0xe3,
0x7b, 0x69, 0x6e, 0xce, 0xff, 0x55, 0xce, 0x82, 0xf3, 0xe6, 0x7b, 0x0b, 0xb6,
0xd7, 0x57, 0x2d, 0xad, 0x97, 0x3b, 0x59, 0xf1, 0x1d, 0xfa, 0x6e, 0xa5, 0x33,
0x37, 0xd3, 0x5a, 0xfb, 0xb9, 0x9a, 0x8d, 0xc2, 0x8d, 0xfb, 0x36, 0x7c, 0xc2,
0x4f, 0x6d, 0x24, 0x67, 0xa5, 0xdb, 0x1a, 0x3e, 0x10, 0xb7, 0x63, 0xfd, 0xc6,
0x69, 0xcf, 0xf6, 0xf0, 0xa9, 0x7d, 0xf8, 0xc3, 0x02, 0x07, 0xe6, 0x33, 0x56,
0x8e, 0x21, 0x2f, 0x2f, 0x38, 0x96, 0xbc, 0x70, 0x75, 0x62, 0xfc, 0xe7, 0xec,
0xac, 0xe0, 0x9c, 0xee, 0xcc, 0x77, 0xc3, 0xc8, 0x45, 0xea, 0xd1, 0x6f, 0x17,
0xcd, 0xa5, 0x15, 0xae, 0x4c, 0x77, 0x43, 0xdc, 0x22, 0x2e, 0x9c, 0x75, 0x33,
0xfd, 0x31, 0xd1, 0x9d, 0x69, 0x86, 0x86, 0x87, 0xd0, 0xfe, 0x6b, 0x1e, 0x42,
0x7f, 0x0e, 0x7a, 0x8a, 0x9d, 0xa9, 0xf0, 0x92, 0x39, 0xae, 0xe2, 0xcd, 0xf7,
0x4b, 0xd0, 0x47, 0x37, 0xc8, 0xdc, 0x87, 0xf5, 0xbb, 0x96, 0xaf, 0xe2, 0xc5,
0xdb, 0xbe, 0x4a, 0x1f, 0x56, 0xf9, 0x31, 0x5c, 0x6f, 0xf2, 0x57, 0xbb, 0x6f,
0x13, 0xc0, 0xf7, 0x43, 0x3d, 0x90, 0xf3, 0xec, 0x9b, 0x40, 0xe9, 0x67, 0x3b,
0x82, 0x82, 0xfe, 0xa7, 0x05, 0x2b, 0xb5, 0x9d, 0x0e, 0x2e, 0xf9, 0x17, 0x16,
0xc2, 0x3e, 0xe5, 0x49, 0x08, 0xff, 0x99, 0x45, 0xa1, 0x11, 0x27, 0x84, 0xc3,
0x54, 0xfe, 0xbe, 0x0d, 0xe3, 0xfa, 0x72, 0x23, 0x9c, 0xed, 0xcb, 0xf1, 0x08,
0xa1, 0xa3, 0xd5, 0x91, 0xfa, 0x77, 0x34, 0xa3, 0x7c, 0xfd, 0x75, 0xa2, 0xf4,
0x7e, 0xfe, 0x88, 0x62, 0xfa, 0xf2, 0x3a, 0x5a, 0x6f, 0x4f, 0x55, 0x0c, 0xfb,
0xa3, 0xb0, 0x58, 0xb6, 0xae, 0xdb, 0xb1, 0x42, 0x4d, 0x3e, 0x71, 0x8c, 0x5f,
0x1c, 0xe2, 0x19, 0x9e, 0xa9, 0x27, 0xf0, 0x0b, 0xeb, 0x24, 0xb0, 0x68, 0x87,
0x24, 0x18, 0xff, 0x91, 0x4b, 0xe4, 0xff, 0xc3, 0x93, 0xc4, 0xf3, 0x9f, 0x21,
0x99, 0xf9, 0xd2, 0x85, 0x64, 0x93, 0x9d, 0x61, 0x29, 0xfc, 0xcf, 0xf5, 0x53,
0x8f, 0x1e, 0x35, 0x48, 0xad, 0x7c, 0xbb, 0x34, 0x95, 0xf7, 0x35, 0x03, 0x14,
0xb4, 0xa4, 0xc9, 0x3e, 0xf7, 0x4f, 0x9f, 0xf7, 0x05, 0xc4, 0x5e, 0x96, 0xae,
0x70, 0x25, 0x3a, 0x43, 0xe0, 0x97, 0x5b, 0x26, 0xf3, 0x49, 0xde, 0x2c, 0x0d,
0x5f, 0xe3, 0x2c, 0xd6, 0xab, 0x2c, 0xd9, 0xc5, 0x6b, 0xed, 0xb3, 0xed, 0xbe,
0xfd, 0xc8, 0x66, 0xfb, 0xf1, 0x3a, 0x47, 0xf9, 0xde, 0xf2, 0x5c, 0x91, 0x7f,
0x93, 0xf2, 0xd8, 0xbf, 0x36, 0xe6, 0x2b, 0xfc, 0x4f, 0x2c, 0x08, 0x5c, 0xb9,
0xab, 0xc0, 0x24, 0xfa, 0x51, 0xc1, 0xb1, 0xd3, 0x2f, 0x0a, 0x18, 0x57, 0x32,
0x8c, 0x02, 0x8a, 0xc1, 0xc4, 0x42, 0xd5, 0xb3, 0x56, 0x45, 0x53, 0xae, 0xe0,
0x92, 0x07, 0x00,
};
optimizesize void *big5hkscs_nonbmp_encmap(void) {
return xload(&big5hkscs_nonbmp_encmap_ptr,
big5hkscs_nonbmp_encmap_rodata,
705, 1024); /* 68.8477% profit */
}
| 4,700 | 68 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__cp949_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __cp949_encmap_ptr;
static const unsigned char __cp949_encmap_rodata[29600] = {
0xb4, 0xbc, 0x0d, 0x54, 0x5b, 0x67, 0x9a, 0x26, 0xc8, 0xc5, 0xcf, 0xab, 0xb8,
0xcb, 0xee, 0x76, 0xaa, 0x9d, 0x99, 0xa4, 0x3b, 0xe9, 0x49, 0xce, 0x26, 0xdd,
0xc9, 0x74, 0xb2, 0x93, 0x4c, 0x27, 0xdb, 0xce, 0xe9, 0xaa, 0xee, 0xb8, 0xa7,
0x32, 0x9b, 0xec, 0x74, 0x9d, 0xad, 0x9a, 0x4a, 0x76, 0x52, 0xb3, 0x55, 0xb3,
0xa9, 0xe9, 0xaa, 0xee, 0xe4, 0x4c, 0x57, 0x4f, 0x55, 0x6f, 0xd5, 0xe9, 0xca,
0x9e, 0xaa, 0xd9, 0x02, 0x09, 0x24, 0x90, 0x40, 0x02, 0x09, 0x24, 0x90, 0x40,
0x02, 0x09, 0x24, 0x90, 0x40, 0x02, 0x09, 0x24, 0x90, 0xb0, 0xb0, 0x85, 0x2d,
0x6c, 0x61, 0x0b, 0x5b, 0xd8, 0xc2, 0x16, 0x36, 0xd8, 0x60, 0x83, 0x0d, 0x36,
0xd8, 0x60, 0x4b, 0xb6, 0xb0, 0x61, 0xbf, 0x7b, 0xaf, 0xc4, 0x8f, 0x7f, 0xd2,
0x3d, 0x7d, 0x76, 0x94, 0x13, 0x23, 0xdd, 0x9f, 0xef, 0xe7, 0xfd, 0x79, 0xde,
0xe7, 0x7d, 0xbf, 0xef, 0xde, 0xf3, 0x65, 0x9c, 0x35, 0x23, 0x29, 0xa8, 0xcd,
0x48, 0xf4, 0xec, 0xcf, 0x68, 0x56, 0xf2, 0x69, 0xd7, 0xaa, 0x24, 0x30, 0x25,
0xe9, 0x9b, 0x92, 0x14, 0xb8, 0x56, 0x25, 0xf7, 0xd1, 0x95, 0x96, 0xdc, 0xca,
0x4a, 0xf6, 0x2c, 0xbf, 0x54, 0xd8, 0xfa, 0x7b, 0x3d, 0x19, 0xc9, 0xb9, 0xb4,
0x64, 0x02, 0x55, 0xa8, 0xf9, 0x3d, 0x1d, 0xd9, 0xa7, 0x24, 0xaa, 0x49, 0x09,
0xed, 0xac, 0xfd, 0x9d, 0x26, 0x76, 0x2b, 0xff, 0x09, 0x4d, 0x49, 0x06, 0xa6,
0xc4, 0xaf, 0xec, 0xd3, 0x3f, 0x25, 0x09, 0xe6, 0x7e, 0xad, 0x67, 0x25, 0xc9,
0xe7, 0x9d, 0xe2, 0x0f, 0xdb, 0x94, 0x64, 0x6d, 0x87, 0x7d, 0x22, 0x77, 0xc7,
0x84, 0x64, 0x60, 0x62, 0xe3, 0x8e, 0xc0, 0x84, 0xa4, 0x2f, 0xf7, 0xeb, 0x41,
0x56, 0x72, 0xfa, 0x45, 0xa7, 0xf8, 0xc3, 0x36, 0x21, 0xf9, 0x67, 0xc1, 0xcd,
0xab, 0xb6, 0x7c, 0x7a, 0xa7, 0x24, 0x45, 0xf0, 0x6f, 0x9e, 0xf2, 0x4d, 0x48,
0x1e, 0xec, 0x28, 0x82, 0x57, 0x38, 0xe2, 0x99, 0x90, 0x74, 0xe5, 0x4e, 0x75,
0xf2, 0xd7, 0xf1, 0x67, 0x3a, 0x72, 0x07, 0x1a, 0x27, 0x24, 0xc5, 0x28, 0x42,
0x53, 0xee, 0xa7, 0x83, 0x3f, 0xdf, 0xf6, 0x98, 0x2e, 0x9a, 0xf9, 0x13, 0x95,
0x2f, 0x74, 0x65, 0xf2, 0xa7, 0x1a, 0x33, 0x12, 0x73, 0xfe, 0x47, 0x67, 0x46,
0x22, 0xe1, 0x24, 0x2d, 0x19, 0x89, 0x2b, 0x23, 0xe9, 0xda, 0x5d, 0xf8, 0xd0,
0xe7, 0xfc, 0xbc, 0xe4, 0xdc, 0xbc, 0x44, 0xfc, 0x1e, 0x9f, 0xcf, 0xdd, 0x12,
0xca, 0x1f, 0xd9, 0xfc, 0x34, 0xcc, 0x4b, 0xea, 0xf3, 0x47, 0x27, 0x7f, 0xb7,
0x6b, 0x74, 0xfb, 0x20, 0x42, 0xa3, 0xe2, 0x29, 0x14, 0x3e, 0xe9, 0xf3, 0xd2,
0x3f, 0x70, 0xbe, 0x21, 0x2e, 0x19, 0x8d, 0x4b, 0xce, 0xbd, 0xe1, 0x5c, 0x95,
0x14, 0x34, 0xaf, 0x4a, 0x0a, 0x9b, 0xd8, 0xdf, 0x46, 0xf6, 0xb7, 0x81, 0xfd,
0x1d, 0x4f, 0x4b, 0x0a, 0x93, 0x69, 0xd6, 0xa3, 0x8f, 0x1d, 0xf0, 0xae, 0x6e,
0x74, 0x5d, 0x9d, 0x91, 0x68, 0x33, 0x92, 0xa5, 0xac, 0xa4, 0x70, 0x31, 0x9b,
0x3b, 0x78, 0x22, 0x2b, 0x89, 0x67, 0x1f, 0xa7, 0x83, 0x7f, 0xcc, 0x47, 0x95,
0x92, 0x54, 0xa4, 0x36, 0x6f, 0x2e, 0x4f, 0x49, 0x94, 0x29, 0x89, 0x22, 0xc5,
0x4f, 0x4d, 0x9a, 0xfa, 0x47, 0x36, 0xda, 0x9d, 0x96, 0xf4, 0xe3, 0xba, 0x38,
0x04, 0x5d, 0x46, 0x52, 0xb3, 0xa1, 0x92, 0x82, 0xde, 0x19, 0x89, 0x7f, 0x46,
0x52, 0x70, 0x20, 0x2d, 0x09, 0xa7, 0x37, 0x1b, 0xf3, 0xa5, 0x25, 0x14, 0xe4,
0x7f, 0x8f, 0x4c, 0x4b, 0x8e, 0x4f, 0xf3, 0xc7, 0xaf, 0x65, 0x25, 0xf3, 0xff,
0xd8, 0x29, 0x68, 0x26, 0x25, 0x85, 0xea, 0x49, 0xf1, 0x62, 0xc5, 0xa4, 0x30,
0xd0, 0x49, 0x49, 0xe3, 0xc2, 0xa6, 0xf6, 0x2a, 0x16, 0x72, 0x16, 0xbc, 0xe5,
0x98, 0x73, 0xe1, 0xf1, 0xad, 0x7b, 0x98, 0x20, 0x77, 0x30, 0x49, 0xef, 0x90,
0xb0, 0xff, 0x4e, 0xa6, 0xff, 0xa9, 0x52, 0x0c, 0x65, 0x24, 0x03, 0x19, 0x49,
0x7f, 0x46, 0x52, 0xd8, 0x97, 0x91, 0x8c, 0x67, 0x25, 0xd6, 0x1d, 0x7e, 0x5e,
0x08, 0x67, 0xb2, 0x92, 0xfd, 0x7a, 0x36, 0x2f, 0x5d, 0x56, 0x52, 0xc3, 0x4f,
0xcf, 0x90, 0x91, 0xd4, 0x65, 0x24, 0xf5, 0x19, 0x89, 0x71, 0x43, 0x44, 0xcd,
0xec, 0x62, 0x76, 0xaa, 0x31, 0x2b, 0xf9, 0x24, 0x9d, 0x95, 0x5c, 0xc8, 0x4a,
0x26, 0x05, 0x39, 0x38, 0x56, 0x25, 0x6d, 0xab, 0x92, 0x52, 0x7e, 0x74, 0xdc,
0x9e, 0xc2, 0xba, 0xac, 0xc4, 0x94, 0x91, 0x34, 0x88, 0x37, 0xad, 0x64, 0x25,
0xdf, 0x6d, 0xc8, 0x09, 0xcb, 0xb6, 0x2a, 0x29, 0xe1, 0x9a, 0x1e, 0x2b, 0xb9,
0x53, 0x59, 0x49, 0x62, 0xfb, 0x89, 0xd5, 0xac, 0xe4, 0xb5, 0xd3, 0xec, 0xd0,
0x3d, 0xd6, 0xea, 0x5d, 0xe1, 0x54, 0x2b, 0xfb, 0xd6, 0xf2, 0x04, 0xb9, 0x57,
0xb2, 0x73, 0x15, 0xec, 0x5c, 0x35, 0xfb, 0x5b, 0xf5, 0xe8, 0x35, 0xab, 0x69,
0xc9, 0xfd, 0xad, 0xe2, 0x9a, 0x60, 0x97, 0x39, 0x5f, 0xd8, 0x6e, 0xdf, 0x35,
0xa2, 0x96, 0x3c, 0xa9, 0x87, 0x3c, 0xab, 0xe6, 0xc9, 0x86, 0x35, 0x93, 0x92,
0x3c, 0xd1, 0x5d, 0xbc, 0x5f, 0x62, 0x8f, 0x33, 0x93, 0x4f, 0xbe, 0xaf, 0xfc,
0x37, 0xfe, 0xf9, 0xde, 0x7f, 0xde, 0x32, 0x97, 0xbf, 0x39, 0x30, 0x27, 0xf9,
0x77, 0xdc, 0xbf, 0xde, 0xfb, 0x75, 0xee, 0xe5, 0xaf, 0xee, 0xe7, 0x5e, 0x7d,
0xf6, 0xcf, 0xb8, 0xdf, 0xff, 0xea, 0x1f, 0xfe, 0x6e, 0xe1, 0xef, 0xbf, 0x56,
0xf8, 0xf6, 0x57, 0xff, 0xf0, 0x5f, 0x14, 0xfe, 0xcb, 0x37, 0x0a, 0xf7, 0x3d,
0xfb, 0x9d, 0xc2, 0xb7, 0xbf, 0xf2, 0x46, 0xe1, 0x9f, 0x7f, 0xf5, 0x3f, 0x14,
0xee, 0xfb, 0xca, 0x5b, 0x85, 0xff, 0x76, 0xef, 0xf7, 0x0b, 0xff, 0x74, 0x7f,
0xe1, 0xbe, 0x3f, 0xc9, 0xb5, 0xf7, 0x3d, 0xed, 0xdc, 0x3f, 0xd5, 0x4e, 0xb6,
0x7f, 0x6e, 0xa5, 0x25, 0xcb, 0xdb, 0x4d, 0x2e, 0x94, 0x95, 0x70, 0xe1, 0xac,
0x24, 0x93, 0x96, 0xec, 0x2c, 0x94, 0x70, 0x9c, 0x64, 0x76, 0xe3, 0x74, 0x80,
0x9d, 0x09, 0x32, 0x35, 0x94, 0x67, 0x24, 0x5c, 0x85, 0x60, 0x08, 0x3e, 0x76,
0xc4, 0xcf, 0x8e, 0x54, 0xb2, 0x23, 0x55, 0xc2, 0x91, 0x41, 0x76, 0xe4, 0xe8,
0x8e, 0x2c, 0xbb, 0x67, 0x38, 0x2b, 0x39, 0xca, 0x4e, 0x0d, 0xb1, 0x03, 0x27,
0x77, 0x14, 0x9e, 0xd9, 0xc1, 0x1d, 0xcf, 0x6b, 0x70, 0x2a, 0x2d, 0xe1, 0xa6,
0xb7, 0x75, 0x7a, 0x21, 0x2d, 0x99, 0x64, 0xa1, 0x23, 0x2d, 0x39, 0xff, 0x0f,
0x9b, 0xff, 0x54, 0x56, 0x72, 0x31, 0x2b, 0xb9, 0x94, 0x95, 0x4c, 0x7f, 0xb9,
0xb7, 0x96, 0x32, 0x4f, 0x28, 0xc9, 0x48, 0x1e, 0xa4, 0x25, 0xbf, 0x21, 0x91,
0x66, 0x24, 0xeb, 0x69, 0xc9, 0x0b, 0x2f, 0x14, 0x46, 0xd3, 0x92, 0x21, 0xe6,
0xf9, 0xb7, 0x18, 0x20, 0x7e, 0xc5, 0x2d, 0x20, 0x5a, 0xed, 0xea, 0xa6, 0xd6,
0x4a, 0x56, 0x25, 0x8e, 0xac, 0xe4, 0xef, 0x0a, 0xeb, 0x56, 0xff, 0x3b, 0x84,
0x1b, 0x1a, 0x7f, 0xb2, 0xda, 0xff, 0xc9, 0x9f, 0xba, 0xe4, 0x76, 0x9d, 0x8c,
0xfd, 0x0f, 0xe8, 0x83, 0x7d, 0xda, 0x7f, 0xaf, 0xf0, 0x7f, 0xe4, 0x67, 0xf6,
0xb7, 0xbf, 0xe4, 0xe4, 0xb9, 0xe7, 0x0f, 0xa6, 0xff, 0x7f, 0xb0, 0x61, 0xd3,
0xd4, 0x97, 0x89, 0x66, 0x96, 0x77, 0xff, 0x43, 0x69, 0x49, 0x72, 0x2f, 0xff,
0xeb, 0x32, 0x0f, 0xf4, 0xe5, 0x33, 0x92, 0xc2, 0x7f, 0x53, 0x58, 0xf8, 0xad,
0xc2, 0xc2, 0x77, 0xf9, 0x63, 0x7f, 0xcb, 0xa2, 0xe3, 0x66, 0x74, 0xfe, 0x1d,
0xf6, 0xff, 0x1f, 0x14, 0xfe, 0xef, 0xec, 0xdf, 0xdf, 0x2c, 0x2c, 0xfc, 0x60,
0xe3, 0xb0, 0x78, 0xc1, 0x6f, 0x15, 0x2e, 0xed, 0xd5, 0x3e, 0xa3, 0xe2, 0x7e,
0xfe, 0x2f, 0x4c, 0xcf, 0xf8, 0xf7, 0xfe, 0xe5, 0x4f, 0x6a, 0x66, 0xf8, 0xf1,
0xab, 0x66, 0x24, 0x7f, 0xe9, 0x64, 0x0d, 0x3b, 0xa6, 0x25, 0x6d, 0xec, 0xcf,
0xe0, 0xb4, 0xe4, 0xe0, 0xb4, 0xa4, 0x37, 0x2d, 0xf1, 0xb3, 0xd9, 0xf5, 0x4e,
0x4b, 0x9e, 0xf9, 0x8d, 0xa2, 0x9a, 0xc2, 0xc3, 0xbb, 0xae, 0x46, 0x70, 0xce,
0x8e, 0x94, 0x1d, 0x05, 0x05, 0xf5, 0x16, 0x4a, 0x7c, 0x7c, 0xea, 0xdd, 0xe7,
0xb2, 0x9f, 0x95, 0x99, 0x50, 0xab, 0x26, 0xbd, 0x9a, 0x58, 0x94, 0x72, 0xc2,
0xef, 0x44, 0x41, 0xb7, 0x0f, 0xaa, 0x4f, 0x2a, 0xf6, 0x78, 0x57, 0x51, 0x19,
0xa5, 0x9b, 0x7f, 0x6c, 0xd6, 0xb0, 0x53, 0x05, 0xed, 0x2b, 0x70, 0xae, 0x60,
0xdb, 0xac, 0x5d, 0x41, 0x74, 0x04, 0xf9, 0x43, 0xe5, 0x31, 0x52, 0xc6, 0xf8,
0x8b, 0x0a, 0x2c, 0x1a, 0x98, 0x5a, 0xb8, 0x01, 0x1f, 0x39, 0x42, 0x68, 0x0b,
0x89, 0x97, 0x4f, 0x4c, 0xe3, 0xd8, 0xc7, 0xf6, 0x00, 0xa9, 0xa2, 0x54, 0x11,
0x15, 0xae, 0x92, 0x05, 0x51, 0x12, 0xc4, 0xba, 0x9c, 0xd2, 0x3f, 0x2b, 0xde,
0x59, 0x61, 0x12, 0x2f, 0x3b, 0x17, 0xa5, 0x54, 0x94, 0x1c, 0x2b, 0x98, 0x7f,
0x29, 0x9c, 0x60, 0x87, 0xca, 0xa3, 0x54, 0xba, 0xfb, 0xfc, 0x5f, 0xf7, 0x2c,
0x6c, 0xe9, 0x34, 0x94, 0xa4, 0x81, 0x24, 0x5d, 0x71, 0xd3, 0xac, 0x9b, 0xc4,
0xdf, 0x18, 0x48, 0xa2, 0x20, 0xa0, 0xa6, 0x9a, 0x5d, 0x2d, 0x32, 0x12, 0x89,
0x52, 0x82, 0xda, 0x12, 0xec, 0xab, 0xc5, 0x45, 0x4d, 0x2e, 0xf6, 0x57, 0x67,
0xa7, 0x1a, 0x3b, 0x55, 0xce, 0x43, 0x3d, 0x8f, 0x82, 0x07, 0x72, 0x8a, 0xee,
0xeb, 0x1b, 0xc5, 0x4c, 0x0a, 0x97, 0x53, 0xf0, 0x8c, 0xe3, 0x52, 0xa1, 0xf2,
0x83, 0x32, 0x1d, 0x5c, 0xd3, 0x88, 0xbe, 0x38, 0x1b, 0x61, 0x73, 0x0f, 0x93,
0x37, 0x4c, 0x05, 0xab, 0x72, 0xba, 0x2f, 0xa7, 0x82, 0xd6, 0x25, 0xd8, 0x97,
0x50, 0x70, 0xc5, 0x4c, 0xb1, 0x12, 0xae, 0xc1, 0x88, 0xc1, 0x28, 0x29, 0x3d,
0xdc, 0xcc, 0xb7, 0x8c, 0x73, 0x50, 0xe8, 0x51, 0xa6, 0x47, 0x81, 0xcc, 0x80,
0x6b, 0x01, 0x4e, 0x59, 0xc1, 0x2d, 0x7d, 0x76, 0xda, 0x49, 0x39, 0x56, 0xe9,
0xa3, 0xa0, 0x8f, 0x7d, 0x9f, 0x88, 0xe3, 0x7c, 0x5c, 0x18, 0xbd, 0x67, 0x09,
0xc9, 0x97, 0x52, 0xec, 0xbb, 0xc9, 0x81, 0x06, 0x07, 0x0a, 0x14, 0x51, 0x2a,
0x63, 0xa2, 0x98, 0x08, 0x93, 0xed, 0x99, 0xa2, 0x31, 0xea, 0x1d, 0x81, 0x7f,
0x44, 0x9c, 0x66, 0xe7, 0x08, 0x46, 0xbe, 0x76, 0xf0, 0x07, 0xaa, 0x57, 0x4e,
0x7c, 0xa3, 0x6c, 0x4f, 0xc5, 0x3a, 0x3b, 0x78, 0xc9, 0x4d, 0xd3, 0x6e, 0xd2,
0x79, 0x50, 0xe3, 0x61, 0xbf, 0x86, 0xbd, 0xd4, 0xb3, 0x6b, 0xf2, 0x13, 0xff,
0xe8, 0xa6, 0x54, 0xba, 0x17, 0xe1, 0x5d, 0x44, 0x7b, 0x10, 0x4e, 0x5e, 0x19,
0xad, 0x09, 0xfa, 0x64, 0x8d, 0x9f, 0x7f, 0x7d, 0x1c, 0x9a, 0x9f, 0x3a, 0xc3,
0xb9, 0x31, 0xd5, 0x1b, 0x51, 0xff, 0xbf, 0xa8, 0x7e, 0x72, 0x30, 0x4c, 0xed,
0xd3, 0x78, 0xf0, 0xbd, 0xe3, 0x6f, 0x8e, 0xee, 0x88, 0x2a, 0xb8, 0x59, 0x25,
0xbe, 0xcc, 0xac, 0x47, 0xb5, 0x74, 0x52, 0xcb, 0x37, 0x10, 0xd2, 0xd3, 0x80,
0x9e, 0xaa, 0x1d, 0xa4, 0x75, 0xd0, 0xe0, 0x32, 0x0e, 0x2e, 0x23, 0x23, 0xa7,
0xbb, 0x72, 0xba, 0x23, 0xa7, 0x23, 0xdf, 0x1e, 0x18, 0x17, 0xfa, 0x68, 0x8d,
0xc2, 0x1e, 0x65, 0xba, 0xf0, 0x51, 0xdb, 0x8f, 0xbb, 0x5e, 0xbb, 0x68, 0xe6,
0x5b, 0xbe, 0x91, 0xc4, 0xc5, 0x3d, 0x57, 0x77, 0xfd, 0x66, 0xe7, 0x8b, 0xd3,
0x29, 0xf6, 0xbb, 0xd4, 0x04, 0x39, 0xaf, 0x6d, 0xd5, 0x3c, 0xa6, 0x9f, 0x77,
0x7c, 0xfd, 0xec, 0x7b, 0xd9, 0xd8, 0xd6, 0xfe, 0x7d, 0x16, 0xf4, 0x58, 0x84,
0x03, 0xe5, 0x0b, 0x18, 0x7a, 0x35, 0xce, 0xba, 0xee, 0x1f, 0xa7, 0x20, 0x6b,
0x7e, 0x26, 0x48, 0x97, 0x83, 0xac, 0x17, 0x5b, 0x14, 0x2d, 0xac, 0x8f, 0x02,
0x47, 0x1c, 0x23, 0xef, 0xde, 0x96, 0xd3, 0x81, 0x65, 0x84, 0x97, 0xb1, 0x90,
0xa4, 0x83, 0x4d, 0x5c, 0x87, 0x1f, 0x97, 0x9c, 0x34, 0xed, 0x64, 0xc3, 0x84,
0xd6, 0x81, 0x7b, 0x4c, 0x55, 0x2f, 0xdd, 0xb4, 0x53, 0xed, 0x0a, 0xf4, 0x2b,
0xb0, 0x85, 0xd0, 0x12, 0x42, 0x7f, 0x12, 0xc1, 0x24, 0xdf, 0xc1, 0x3d, 0x2b,
0x65, 0xad, 0xe4, 0xf1, 0xa1, 0xcb, 0x87, 0x82, 0xf6, 0x18, 0x39, 0x63, 0xd4,
0x9c, 0x80, 0x35, 0xf1, 0xb0, 0x34, 0xea, 0x4d, 0x34, 0xab, 0xe1, 0x7a, 0x54,
0xc2, 0xf1, 0x31, 0x3b, 0xae, 0xc8, 0xb8, 0x60, 0x5e, 0xcb, 0x05, 0x3a, 0x0b,
0x6a, 0xd8, 0x70, 0x75, 0x71, 0x2a, 0xb2, 0x71, 0x9a, 0xf7, 0x5b, 0x96, 0xf8,
0xab, 0x1c, 0xd3, 0x38, 0xfd, 0xea, 0x69, 0x5e, 0x11, 0x8a, 0x41, 0x94, 0x0d,
0xb2, 0xd3, 0x13, 0xa8, 0x99, 0xc0, 0x42, 0x9c, 0xea, 0xfa, 0xb8, 0xd3, 0xcc,
0x60, 0xce, 0x64, 0x91, 0xcc, 0xa2, 0xe0, 0x94, 0x95, 0x12, 0x56, 0x66, 0x67,
0x6a, 0xba, 0xaf, 0xa6, 0x5b, 0x72, 0x4a, 0xfc, 0xd4, 0xf4, 0xfd, 0x81, 0xe5,
0xad, 0xfd, 0x1b, 0xb2, 0xb8, 0xb7, 0x57, 0xab, 0xa6, 0xd2, 0x28, 0xc9, 0xa3,
0x74, 0x47, 0x4b, 0x69, 0x2d, 0x99, 0xcc, 0x68, 0x60, 0x82, 0xed, 0x55, 0x93,
0x5f, 0x4d, 0x96, 0x79, 0xac, 0xbe, 0xd2, 0xc0, 0x3b, 0xe7, 0x29, 0x27, 0x25,
0xd8, 0xb0, 0x8e, 0x79, 0x11, 0xf3, 0x62, 0x35, 0x41, 0xf7, 0x13, 0x94, 0xd1,
0xd2, 0x5d, 0x5e, 0x75, 0xe5, 0x46, 0x32, 0x3c, 0x67, 0xf5, 0xb2, 0x6f, 0x95,
0x06, 0xa8, 0x0d, 0xcc, 0xc0, 0x55, 0xb8, 0xf1, 0xbf, 0x36, 0x25, 0xd0, 0xed,
0x81, 0xd7, 0x83, 0x6b, 0x71, 0x1a, 0x30, 0x71, 0x6e, 0x1f, 0x86, 0xbd, 0x38,
0xea, 0x85, 0x47, 0x47, 0x4d, 0x3f, 0xae, 0x72, 0xa0, 0x3b, 0x42, 0x75, 0x25,
0x9c, 0xa7, 0x86, 0x8b, 0x25, 0xe8, 0xdc, 0x34, 0x1a, 0xf7, 0xa7, 0x7e, 0x65,
0x7b, 0x37, 0x32, 0xb9, 0x4d, 0x3c, 0xdd, 0x0b, 0xf0, 0xe6, 0x7d, 0xd3, 0x33,
0x8f, 0x2e, 0xe6, 0x5d, 0x05, 0x81, 0x71, 0x2a, 0xdb, 0x79, 0xf8, 0x8b, 0xeb,
0x82, 0x90, 0x0b, 0xaa, 0x2d, 0xd0, 0x8a, 0xfa, 0xf4, 0x19, 0xd0, 0x63, 0xe0,
0xbf, 0x35, 0x87, 0x60, 0x0d, 0xe1, 0x52, 0x04, 0xd3, 0x91, 0x7c, 0x63, 0xb6,
0x04, 0xb5, 0x24, 0x68, 0x9b, 0xd8, 0x1b, 0x1d, 0x38, 0xf4, 0xfc, 0xfa, 0xb3,
0x17, 0x53, 0x38, 0x64, 0x45, 0xc4, 0x9a, 0xbb, 0x72, 0x3c, 0x4a, 0x67, 0x05,
0xfc, 0xd0, 0xa8, 0xa9, 0x4a, 0x9d, 0xbb, 0xa3, 0x53, 0x47, 0x6e, 0x1d, 0x3f,
0xbb, 0x04, 0xa9, 0x73, 0xad, 0x84, 0x64, 0xb4, 0x2e, 0x19, 0x50, 0xd2, 0x23,
0xe6, 0x7c, 0xcd, 0x09, 0xc7, 0x5b, 0xda, 0x09, 0xbe, 0xb9, 0xd6, 0x69, 0x94,
0xbc, 0x60, 0x8d, 0xa2, 0xd1, 0x0b, 0xb3, 0x17, 0xeb, 0x52, 0x2a, 0xca, 0xa1,
0xc7, 0x5c, 0x9c, 0xae, 0xc6, 0xc5, 0xaf, 0xab, 0x61, 0xba, 0xcf, 0xbb, 0xcf,
0x39, 0x37, 0x3c, 0xdf, 0x56, 0xf2, 0xae, 0x58, 0xf0, 0x40, 0x4a, 0x6b, 0x52,
0x3a, 0x10, 0xa5, 0x30, 0x3f, 0x90, 0x73, 0x6a, 0xea, 0x2a, 0xe1, 0x9c, 0xbc,
0x0f, 0x55, 0xdb, 0x49, 0x6b, 0x67, 0x87, 0xae, 0x25, 0x31, 0x2f, 0x4e, 0xbe,
0xc0, 0x35, 0x89, 0x8e, 0x49, 0xb4, 0xae, 0xc0, 0x2e, 0xc2, 0xe6, 0x05, 0x2f,
0x26, 0xbd, 0x5b, 0x24, 0xd8, 0x3b, 0x4e, 0xfe, 0x71, 0xaa, 0xd4, 0x92, 0x9a,
0xd7, 0xd3, 0x12, 0x33, 0x81, 0x77, 0x8e, 0x3f, 0x9b, 0x60, 0x96, 0xd3, 0x3f,
0x8f, 0xe0, 0x3c, 0xae, 0xc4, 0x69, 0x96, 0x0d, 0x44, 0x91, 0xa0, 0xb2, 0x0d,
0xe9, 0x04, 0x92, 0xe8, 0x4b, 0x6e, 0x55, 0xc2, 0xaa, 0x94, 0xee, 0x4b, 0xc9,
0x66, 0xa7, 0x16, 0x7b, 0xfe, 0x9a, 0x0b, 0x29, 0x4c, 0xa6, 0x72, 0xd7, 0xa8,
0x86, 0x51, 0x31, 0xcc, 0x7f, 0x0f, 0x38, 0xa9, 0x8f, 0x19, 0xc8, 0x78, 0x90,
0xce, 0x06, 0xa9, 0x71, 0x1e, 0x66, 0x5e, 0x59, 0xb5, 0x53, 0x30, 0xef, 0xbe,
0x9b, 0x40, 0xfb, 0x38, 0x5a, 0xfe, 0x5c, 0xf5, 0xcc, 0xca, 0x33, 0x5d, 0xef,
0x74, 0xff, 0x7c, 0xe9, 0x83, 0xbb, 0x51, 0x2a, 0x1f, 0xa4, 0xa2, 0x06, 0xae,
0xf2, 0x97, 0x3d, 0xbf, 0xbc, 0xcc, 0x0b, 0xbf, 0x79, 0x09, 0xd6, 0xa5, 0x8d,
0x6e, 0x07, 0xdd, 0x74, 0x50, 0x44, 0x5f, 0x4f, 0x98, 0xba, 0x98, 0x80, 0x64,
0x71, 0x94, 0xc4, 0xd1, 0x1c, 0x20, 0xe9, 0xdf, 0x79, 0x7e, 0x64, 0xfc, 0xf8,
0xfe, 0x1f, 0xdf, 0x70, 0x72, 0x6d, 0xaf, 0x5e, 0xd6, 0x70, 0x0d, 0x3a, 0x14,
0xb4, 0xc6, 0xc8, 0xce, 0x87, 0x86, 0x7a, 0x0d, 0xa9, 0xde, 0xbc, 0xf0, 0xd4,
0xec, 0xaf, 0xcd, 0xbc, 0xff, 0xde, 0x8b, 0x53, 0x96, 0x97, 0xb2, 0x2d, 0x4c,
0x2d, 0x22, 0x42, 0x69, 0xe6, 0x51, 0xc5, 0x0f, 0xaa, 0xd4, 0x0b, 0x39, 0x93,
0x52, 0xff, 0x30, 0x82, 0xc2, 0xc8, 0x0d, 0x26, 0xaa, 0x33, 0x51, 0x41, 0xad,
0x99, 0xf4, 0x66, 0xd2, 0xb0, 0xbc, 0x7e, 0x22, 0x3f, 0x90, 0xe6, 0x61, 0xb2,
0x0e, 0xf3, 0xf7, 0xf6, 0x9b, 0x28, 0x68, 0xe2, 0xbf, 0x98, 0xcc, 0xd4, 0x60,
0xa6, 0x29, 0x37, 0x5d, 0x74, 0x6f, 0x28, 0xdf, 0xb3, 0x80, 0xf6, 0xf7, 0x52,
0xa2, 0xcf, 0xba, 0x1c, 0xd4, 0xe1, 0x10, 0xcf, 0xf4, 0x7b, 0x10, 0xf4, 0x60,
0x34, 0x88, 0x93, 0x4c, 0xe0, 0x27, 0x9c, 0x14, 0x77, 0x92, 0x6c, 0x10, 0xe7,
0x7e, 0xb8, 0xbe, 0x6b, 0xd2, 0xbd, 0xdd, 0x70, 0xa6, 0xac, 0xe4, 0xff, 0xb6,
0xf4, 0xc3, 0x36, 0xa6, 0x65, 0x9b, 0x96, 0x5a, 0xb4, 0xdb, 0xcf, 0xae, 0xa8,
0x51, 0x7a, 0x98, 0xcb, 0x0a, 0x1a, 0x1a, 0x53, 0xe2, 0xb4, 0x12, 0x37, 0xdc,
0x08, 0xbd, 0xa9, 0x7d, 0xa7, 0x8e, 0xc5, 0xd1, 0x43, 0x46, 0x5c, 0x30, 0x70,
0x4d, 0xcc, 0xf9, 0xc6, 0xe3, 0x38, 0xcb, 0xd0, 0xff, 0x9e, 0x92, 0xe6, 0x3f,
0x38, 0xf2, 0x62, 0x72, 0x1a, 0xd7, 0x92, 0x34, 0x9f, 0x64, 0x37, 0x29, 0x8c,
0x54, 0x66, 0x64, 0x22, 0xd4, 0xa3, 0x44, 0x2f, 0x4c, 0xac, 0xdd, 0x41, 0x4e,
0x71, 0x8c, 0x95, 0x6e, 0xa8, 0xdd, 0xe2, 0x64, 0x35, 0x56, 0xd4, 0xfe, 0xad,
0x9d, 0xf7, 0xf4, 0x51, 0x2b, 0xe9, 0x5f, 0x0c, 0xf2, 0xb6, 0x5a, 0x3c, 0x4c,
0xd2, 0x61, 0x6a, 0xf4, 0x92, 0xd9, 0x2b, 0x5c, 0xde, 0x3b, 0x88, 0xa5, 0x3f,
0x29, 0xff, 0xf0, 0xa8, 0x86, 0x1b, 0x7a, 0xee, 0x8c, 0x8a, 0x93, 0x8e, 0xe7,
0x06, 0x6a, 0x71, 0xa3, 0x89, 0x6f, 0xe6, 0x92, 0x1d, 0xd3, 0x2c, 0xf0, 0x2b,
0xe4, 0xb4, 0xfe, 0xee, 0xdd, 0xbd, 0xb7, 0x7f, 0xd4, 0x10, 0xcd, 0x05, 0x1c,
0x0f, 0xdc, 0x1e, 0x54, 0xaa, 0x49, 0x2d, 0xb8, 0x94, 0x67, 0x8c, 0xba, 0xc6,
0xe8, 0x92, 0x9e, 0xa6, 0xf5, 0xec, 0x67, 0xf7, 0x1a, 0xbc, 0x6b, 0x39, 0x81,
0xfb, 0x46, 0x60, 0x24, 0xa3, 0x70, 0x97, 0x4a, 0x4d, 0x15, 0xec, 0xea, 0x23,
0x46, 0x44, 0x8d, 0x28, 0x38, 0xe2, 0x45, 0x34, 0x6f, 0xd8, 0xf5, 0x66, 0x18,
0xcd, 0x50, 0xb9, 0x51, 0xc1, 0xf7, 0x69, 0x52, 0xa3, 0x41, 0xcd, 0x2b, 0x75,
0x90, 0xb2, 0x6f, 0x68, 0xbe, 0xda, 0x60, 0x63, 0x4d, 0x96, 0x26, 0x48, 0xce,
0x8b, 0xcb, 0x37, 0x88, 0x51, 0x2d, 0x57, 0xb2, 0x61, 0xdb, 0xb5, 0x4e, 0xd2,
0xf3, 0x6a, 0xb2, 0xc5, 0x48, 0xf3, 0x9b, 0x3d, 0x6c, 0xf4, 0x0e, 0x07, 0x9d,
0x7a, 0x36, 0x2b, 0x58, 0x47, 0xf1, 0x20, 0x8a, 0xbf, 0xe8, 0x7e, 0xce, 0x3f,
0xfa, 0xa8, 0x4f, 0x57, 0x1b, 0xa0, 0x65, 0xc8, 0x32, 0x13, 0xa7, 0xcb, 0x71,
0x2a, 0xd7, 0x93, 0x52, 0x4f, 0x53, 0x76, 0x5c, 0xb4, 0xa3, 0x72, 0x02, 0xea,
0x09, 0xe8, 0xcc, 0x54, 0x63, 0x66, 0x77, 0x5d, 0x8a, 0xd3, 0xb4, 0xe0, 0xd6,
0x33, 0x56, 0xba, 0xcc, 0x70, 0x77, 0xc2, 0x4d, 0x7d, 0x1f, 0xb7, 0xa4, 0xe0,
0x48, 0xd2, 0xe2, 0xd7, 0x82, 0x46, 0xaa, 0x57, 0xc1, 0xa8, 0x82, 0x6d, 0x05,
0x87, 0xde, 0x3e, 0xb9, 0x4b, 0xcf, 0xac, 0xc9, 0xb3, 0x8a, 0xb3, 0xef, 0x58,
0xbe, 0xb8, 0x1b, 0xde, 0xde, 0xa5, 0x41, 0x85, 0x3a, 0x15, 0x7a, 0x9d, 0xe4,
0x67, 0x63, 0xed, 0x8c, 0x90, 0x3b, 0x42, 0x99, 0x18, 0x9a, 0x7f, 0x6e, 0x1c,
0xa4, 0x82, 0xe2, 0x28, 0x9d, 0xfe, 0x57, 0x27, 0xbf, 0x98, 0x64, 0x00, 0x7d,
0x4a, 0x89, 0x84, 0x10, 0x5a, 0x27, 0xcc, 0x38, 0x6f, 0xc6, 0x39, 0x33, 0x1e,
0xfc, 0xe4, 0xac, 0x20, 0xdf, 0x7e, 0x25, 0xb9, 0xbf, 0x58, 0xfa, 0xe2, 0xbe,
0x92, 0x74, 0x2b, 0xa8, 0xc9, 0x11, 0xaa, 0xa1, 0x18, 0xba, 0x7f, 0x95, 0x8e,
0x52, 0x68, 0x8c, 0x06, 0xc6, 0xc4, 0x0e, 0x03, 0x4a, 0xea, 0x13, 0x20, 0x6c,
0x48, 0x8d, 0xc3, 0xea, 0x0d, 0xe7, 0xb3, 0x98, 0xd0, 0x24, 0xf2, 0x25, 0x85,
0x9f, 0x7c, 0xbf, 0xa9, 0xfe, 0xd8, 0xbd, 0x84, 0x6a, 0x0f, 0x96, 0xfe, 0x85,
0x94, 0x99, 0x57, 0xf3, 0x0a, 0xd6, 0x9e, 0x6e, 0xfb, 0xe4, 0x80, 0x8a, 0x0b,
0x32, 0xe5, 0x19, 0x2c, 0x54, 0x67, 0xe1, 0x49, 0x9d, 0x92, 0xf4, 0xdf, 0x2c,
0x79, 0x6e, 0x6d, 0x8f, 0x99, 0x59, 0x98, 0x2e, 0x48, 0x35, 0x2c, 0x90, 0x4e,
0xe9, 0xe9, 0xa2, 0x9e, 0xce, 0xa8, 0x29, 0xa9, 0xa6, 0x6e, 0x0d, 0x79, 0x35,
0xb4, 0x1e, 0x41, 0xd1, 0x90, 0xd0, 0xf0, 0x54, 0x94, 0x2e, 0x46, 0x69, 0x64,
0x0d, 0xc7, 0x73, 0x9a, 0x3f, 0x65, 0xa4, 0xfb, 0x7f, 0x51, 0xbd, 0xf3, 0x2a,
0x43, 0x9e, 0xf5, 0x24, 0x4d, 0xbf, 0x6e, 0x76, 0x91, 0x2b, 0x42, 0x1d, 0x11,
0x61, 0xa0, 0xb6, 0x20, 0x5a, 0x82, 0x98, 0x8a, 0xd3, 0x45, 0x41, 0xbc, 0x95,
0x8b, 0x50, 0x2f, 0x6e, 0x8f, 0xa2, 0xb6, 0x45, 0xb4, 0x08, 0x87, 0x4e, 0x58,
0x29, 0xce, 0x82, 0xae, 0x0a, 0x5d, 0x42, 0x3c, 0x75, 0x8c, 0x43, 0xfd, 0x96,
0xd1, 0xc1, 0x7f, 0x6d, 0x8c, 0x90, 0xd1, 0xc1, 0x95, 0xe4, 0x88, 0x60, 0xed,
0x2c, 0xf4, 0xb3, 0xdb, 0xda, 0x18, 0x4e, 0xd0, 0xd1, 0xbc, 0xa1, 0x4c, 0x78,
0x71, 0x5e, 0xb0, 0xb6, 0x89, 0x14, 0xba, 0x5e, 0xad, 0x56, 0x71, 0x97, 0x7f,
0x98, 0x4a, 0x21, 0xa0, 0xa7, 0x3e, 0xbd, 0x78, 0xc5, 0xb9, 0x34, 0x52, 0x69,
0xf4, 0x3b, 0x30, 0xf1, 0x1d, 0x3d, 0x0b, 0xb4, 0x05, 0xbd, 0x7a, 0xf2, 0x8b,
0xa7, 0xc6, 0x58, 0x6c, 0xde, 0xd7, 0x5f, 0xc7, 0x5d, 0x79, 0xea, 0xea, 0x53,
0x7d, 0x43, 0xec, 0x50, 0xe3, 0x08, 0x35, 0x54, 0x73, 0xbd, 0xa5, 0x5c, 0xdd,
0xfb, 0x57, 0xbf, 0xd7, 0x67, 0x41, 0xf7, 0x38, 0x39, 0x7b, 0xb8, 0xe6, 0xbd,
0x43, 0xdf, 0xd6, 0xbf, 0x71, 0x56, 0x00, 0xd1, 0x05, 0x39, 0x39, 0x7f, 0x15,
0x3a, 0xce, 0xad, 0xf1, 0xce, 0xda, 0x6e, 0x44, 0xa0, 0x89, 0xab, 0xf8, 0x79,
0x32, 0x8a, 0x73, 0x6e, 0xb2, 0xee, 0x55, 0x56, 0x71, 0x8d, 0x06, 0x6e, 0xfe,
0xd7, 0x17, 0x77, 0x49, 0x0d, 0x1b, 0xe3, 0x3d, 0x15, 0xa1, 0x44, 0x84, 0x1a,
0xad, 0x64, 0xb6, 0x52, 0x28, 0x81, 0xa3, 0x6f, 0xdf, 0x36, 0x8b, 0x94, 0x46,
0x4d, 0x4a, 0x66, 0x01, 0x19, 0x25, 0xdd, 0x55, 0xd2, 0xa0, 0x11, 0x07, 0x8d,
0xb9, 0x5b, 0x2c, 0xd3, 0x68, 0x9a, 0xe6, 0xbf, 0xfb, 0x94, 0x90, 0xfd, 0x5e,
0x9f, 0x03, 0xa5, 0x46, 0x4a, 0xa9, 0xb9, 0x0e, 0x15, 0x9a, 0xa7, 0x61, 0xe5,
0xcf, 0xf8, 0x9c, 0xd4, 0x23, 0x22, 0xd8, 0x85, 0x08, 0x26, 0x23, 0x30, 0xb1,
0x61, 0x8f, 0xe4, 0x70, 0xcc, 0x86, 0xa0, 0xed, 0xf1, 0x1c, 0xae, 0x3e, 0x04,
0x63, 0x08, 0xa6, 0x10, 0x1a, 0x72, 0x3c, 0xbc, 0x7e, 0x84, 0x8c, 0x23, 0xe4,
0x30, 0x50, 0x9b, 0x81, 0x3c, 0xe3, 0xd4, 0x25, 0x22, 0x44, 0xff, 0x32, 0x7a,
0x3e, 0xf5, 0x94, 0x71, 0x7e, 0x66, 0xf4, 0xe5, 0xc3, 0x50, 0x0a, 0xa8, 0x5b,
0x30, 0x6e, 0xc6, 0xd9, 0xdc, 0xb8, 0xb5, 0x50, 0x6a, 0xd1, 0x3b, 0x44, 0xfe,
0x21, 0x52, 0xa8, 0xa9, 0x4c, 0xfd, 0xa8, 0x0f, 0x16, 0x04, 0xec, 0xe8, 0xe3,
0x93, 0x8a, 0xf6, 0x11, 0x38, 0x19, 0x8f, 0x0d, 0x05, 0xb0, 0xae, 0xe6, 0x06,
0x44, 0xae, 0x5f, 0xd0, 0x6d, 0x80, 0x57, 0x10, 0xcf, 0x01, 0x23, 0xc2, 0xc2,
0xa4, 0x4f, 0xc5, 0x91, 0xe0, 0xcd, 0x75, 0x11, 0xb3, 0xdf, 0x19, 0x60, 0x4a,
0xb7, 0x68, 0xd1, 0xa4, 0xe5, 0x59, 0x9d, 0x11, 0x9a, 0xff, 0xb9, 0x6f, 0xf8,
0x09, 0x94, 0xb4, 0x75, 0x1c, 0xf6, 0x71, 0x76, 0xae, 0x73, 0x9c, 0xdc, 0x6c,
0xe8, 0xe5, 0x6e, 0x28, 0x05, 0x78, 0x3c, 0x15, 0xa3, 0x83, 0x03, 0x9c, 0x96,
0xf7, 0x91, 0x05, 0x37, 0xae, 0xe7, 0x20, 0xb3, 0xe0, 0x8c, 0x19, 0xdf, 0xf3,
0x5a, 0x70, 0x8d, 0xf1, 0xd4, 0x6f, 0x2d, 0xfb, 0xc5, 0x83, 0xc7, 0xac, 0x14,
0xb3, 0xd2, 0x05, 0x2f, 0x4d, 0x7a, 0xb7, 0xcc, 0x62, 0xc5, 0x4c, 0xb7, 0xcd,
0x8f, 0xce, 0xaa, 0x3b, 0x09, 0x6f, 0x12, 0x43, 0x5e, 0x1c, 0xe6, 0xcd, 0xed,
0xd8, 0x22, 0x62, 0x1b, 0x86, 0xdd, 0x6b, 0x87, 0xdf, 0x2e, 0xfc, 0xa8, 0xb7,
0xc3, 0x68, 0xc7, 0x3d, 0x29, 0x65, 0xa5, 0xf9, 0x16, 0x64, 0x46, 0x2a, 0x61,
0x90, 0x5e, 0x50, 0x1d, 0x27, 0x2d, 0xf3, 0x89, 0x72, 0x1f, 0x29, 0x7d, 0x79,
0x2c, 0x5e, 0x42, 0x93, 0x10, 0x48, 0x43, 0x46, 0x0c, 0x18, 0x9f, 0x44, 0xbd,
0xbb, 0x07, 0xe1, 0x65, 0xc4, 0xb1, 0x60, 0x3c, 0x41, 0x67, 0x79, 0xab, 0x2f,
0x5d, 0x87, 0x7c, 0x1d, 0xd7, 0xdc, 0xb0, 0xfc, 0x5a, 0xe9, 0xa6, 0x76, 0x15,
0x34, 0x7b, 0x82, 0xdb, 0x6f, 0xd6, 0x78, 0xa0, 0x7f, 0xc5, 0x06, 0xb3, 0x06,
0xad, 0x4a, 0xe8, 0x8e, 0x73, 0xc1, 0xe4, 0xc6, 0x74, 0x64, 0x2a, 0x94, 0xa8,
0xe0, 0x49, 0x62, 0xf8, 0x8d, 0x4b, 0xfb, 0xa6, 0x76, 0x05, 0xa3, 0xd4, 0xeb,
0x23, 0xbf, 0x8f, 0x1e, 0xdb, 0xb3, 0x43, 0x85, 0x36, 0x15, 0x0e, 0x48, 0x29,
0x2c, 0xdd, 0x7a, 0xc1, 0x92, 0x1f, 0x37, 0x45, 0x09, 0x36, 0x4e, 0xc3, 0x3c,
0x8d, 0xe6, 0x30, 0x59, 0x19, 0x2e, 0xb6, 0xfb, 0xe0, 0x64, 0xf4, 0xb9, 0x60,
0x4e, 0x4e, 0xa9, 0x4f, 0xd5, 0x8e, 0x27, 0x4d, 0x47, 0x97, 0xc5, 0xfd, 0x3f,
0xbb, 0xf8, 0x6c, 0x1f, 0x33, 0x53, 0xd7, 0x38, 0x75, 0x8c, 0x6f, 0xb6, 0xec,
0x1b, 0xa2, 0x1e, 0xe6, 0x86, 0x77, 0xa4, 0x94, 0x96, 0x3e, 0x7e, 0x40, 0x05,
0x8d, 0xab, 0x30, 0xaf, 0x32, 0xdc, 0x09, 0xa3, 0x68, 0x10, 0xbd, 0x0e, 0xf8,
0x1d, 0xa8, 0x5e, 0x81, 0x76, 0xe5, 0xcb, 0xd2, 0x96, 0x5b, 0x7a, 0x2c, 0xeb,
0x1f, 0x77, 0x81, 0x25, 0x4c, 0x4d, 0x6c, 0xdc, 0x36, 0x25, 0x5a, 0x36, 0xf2,
0x9e, 0x3b, 0x4a, 0x4a, 0x3f, 0x4a, 0x15, 0x35, 0x6a, 0x54, 0xa9, 0xbf, 0x34,
0x35, 0x2a, 0x58, 0x9f, 0x45, 0xd1, 0x9c, 0x78, 0x89, 0x4d, 0x41, 0x2d, 0x0a,
0x5a, 0xd7, 0xa3, 0x48, 0x84, 0x01, 0xd3, 0x3c, 0x1a, 0xe6, 0x73, 0x77, 0xdf,
0x89, 0x21, 0xbd, 0x2d, 0xc9, 0x29, 0xf0, 0x05, 0xa8, 0x27, 0x40, 0x05, 0xcd,
0x4a, 0x58, 0x05, 0xe6, 0xe8, 0x82, 0xd6, 0x95, 0xbf, 0xa0, 0x3a, 0x8b, 0xb1,
0xdd, 0xb3, 0x2c, 0xf1, 0x3c, 0xa4, 0x46, 0x44, 0x8d, 0xd1, 0x38, 0x4e, 0xc6,
0x1f, 0x1a, 0xc6, 0x50, 0x8c, 0x0e, 0xc7, 0xf2, 0x03, 0xd6, 0x38, 0x48, 0xf1,
0xca, 0xe1, 0x0e, 0xee, 0xde, 0x5f, 0xc4, 0xf9, 0x0e, 0xdb, 0x23, 0xe4, 0x64,
0xb0, 0x7c, 0x21, 0x42, 0x93, 0x11, 0xba, 0x92, 0xc4, 0xac, 0x40, 0x16, 0x9b,
0xc7, 0xc1, 0xb5, 0x30, 0xcf, 0x31, 0x79, 0xa9, 0xc1, 0x4b, 0x3e, 0x1f, 0xf5,
0xe4, 0xd4, 0x3f, 0x65, 0xc5, 0x45, 0xeb, 0x86, 0x4d, 0x0f, 0xc3, 0x2f, 0xb8,
0x5e, 0xef, 0x20, 0xf9, 0x59, 0x34, 0xeb, 0x0f, 0x20, 0x18, 0xd8, 0xec, 0xbb,
0x31, 0x4c, 0x66, 0x21, 0x16, 0x06, 0x02, 0xe8, 0x0b, 0xa0, 0xd2, 0x0a, 0xb5,
0x70, 0xab, 0x61, 0x90, 0xea, 0xd8, 0xd5, 0x2e, 0x1d, 0x75, 0x30, 0x1a, 0xae,
0xf0, 0x51, 0xe3, 0xcb, 0xf6, 0x24, 0x75, 0x87, 0xd0, 0x6c, 0xe0, 0x4e, 0x3f,
0x44, 0xeb, 0x0b, 0x3c, 0x56, 0x74, 0xb1, 0xbb, 0x0e, 0xc5, 0x28, 0x12, 0xa3,
0x5e, 0x1b, 0xfc, 0x3c, 0x74, 0x3d, 0x30, 0x63, 0x8d, 0x87, 0x9a, 0x21, 0x2f,
0x1d, 0xf6, 0xd2, 0x85, 0x38, 0x4d, 0x0a, 0x91, 0xa4, 0x7b, 0x88, 0xbc, 0x43,
0xe2, 0xfd, 0x06, 0x3b, 0xea, 0x44, 0x77, 0xd3, 0x64, 0x51, 0x95, 0x15, 0xbe,
0x1d, 0xf1, 0x52, 0x94, 0x39, 0x71, 0xb1, 0x1e, 0xd2, 0xbc, 0xae, 0x3d, 0x06,
0x74, 0x19, 0xb6, 0x4a, 0x6b, 0x24, 0x81, 0xe3, 0x09, 0x78, 0x86, 0xa8, 0xea,
0xc7, 0x4d, 0xe3, 0x5f, 0xae, 0xcd, 0x02, 0xcb, 0x22, 0x9a, 0x78, 0xff, 0x56,
0x4d, 0x20, 0xfc, 0x52, 0x9c, 0x27, 0x85, 0x66, 0x8a, 0x33, 0x54, 0xa8, 0x5f,
0x83, 0x71, 0xed, 0xe1, 0x7b, 0x6b, 0xe7, 0xb0, 0xf4, 0x07, 0xf2, 0x87, 0x91,
0xd0, 0xe4, 0x45, 0x03, 0x0f, 0x15, 0x17, 0x96, 0x31, 0xc9, 0x32, 0x39, 0x85,
0x1f, 0x65, 0x7e, 0xdc, 0xd2, 0x52, 0xfb, 0xeb, 0x0d, 0x61, 0xaa, 0x0f, 0x93,
0x0b, 0xd1, 0x08, 0x4d, 0x78, 0xe9, 0x3c, 0x1b, 0xb7, 0x69, 0x94, 0xe2, 0x1d,
0x5c, 0xdc, 0x8a, 0xce, 0x31, 0x6a, 0x2b, 0xe2, 0x56, 0x9f, 0x97, 0x2e, 0x3d,
0x66, 0x80, 0x47, 0xdc, 0x88, 0x32, 0x3c, 0xbb, 0xa7, 0xa6, 0x2c, 0xeb, 0xcc,
0x33, 0x88, 0x2e, 0x86, 0x0b, 0x0f, 0x66, 0xb1, 0xc6, 0xc2, 0xa3, 0x2d, 0x49,
0x2d, 0x82, 0x9b, 0x3b, 0x26, 0x51, 0xba, 0xfb, 0xd8, 0x2b, 0x77, 0xd9, 0x15,
0x87, 0x62, 0x18, 0xff, 0xcc, 0x28, 0x60, 0x9b, 0x26, 0x4e, 0x55, 0xf1, 0x87,
0x06, 0x78, 0x26, 0x4a, 0xee, 0x1f, 0xb6, 0xcd, 0xb0, 0x8e, 0x32, 0x09, 0xba,
0x9b, 0x20, 0xd3, 0x2a, 0x1a, 0x98, 0x73, 0xd5, 0xdb, 0x60, 0x64, 0x8a, 0x30,
0x78, 0xe9, 0xcf, 0x53, 0x5e, 0x7a, 0xe0, 0xc4, 0x9a, 0x93, 0x57, 0x87, 0x94,
0x0e, 0x33, 0xaf, 0x34, 0x44, 0x21, 0x7b, 0xa1, 0x61, 0x1a, 0xb5, 0x2a, 0xe8,
0x55, 0x0f, 0x0f, 0xf1, 0x86, 0x1f, 0x8b, 0x3c, 0x30, 0x9c, 0xf3, 0x22, 0xc5,
0x66, 0x5e, 0x1b, 0x85, 0x3e, 0x8a, 0xf1, 0x34, 0xce, 0xa6, 0x85, 0x00, 0x1d,
0xa7, 0xf3, 0x71, 0x6a, 0x97, 0x92, 0x93, 0xf7, 0xee, 0xf2, 0x09, 0x28, 0x37,
0xb8, 0x7b, 0xc1, 0xa8, 0x91, 0x4e, 0x1a, 0xf3, 0xc3, 0x9b, 0x71, 0xe2, 0xb2,
0x13, 0xf5, 0x41, 0x38, 0x5f, 0xbe, 0xb9, 0xe1, 0xb8, 0x95, 0x46, 0x5a, 0x78,
0x26, 0x2b, 0x90, 0x71, 0x9f, 0x1d, 0x3d, 0x82, 0xfe, 0x57, 0x94, 0x74, 0x3b,
0xe7, 0xac, 0xf5, 0xd3, 0x48, 0x3d, 0x7b, 0x90, 0x79, 0xd6, 0x5c, 0x92, 0xae,
0x32, 0x39, 0x94, 0x6b, 0x49, 0xc9, 0x73, 0x73, 0xdd, 0x14, 0x6a, 0xa6, 0xd0,
0xed, 0x23, 0x6f, 0xce, 0xc8, 0x75, 0x2a, 0xd4, 0xb0, 0x81, 0x2f, 0x18, 0x71,
0xdd, 0x88, 0xfe, 0x45, 0x04, 0x17, 0x21, 0xd3, 0xa1, 0x84, 0xa5, 0x26, 0xbd,
0x36, 0x3a, 0xf0, 0xf2, 0x6d, 0x21, 0x4a, 0x8d, 0x45, 0xc9, 0xfa, 0x92, 0x57,
0xc8, 0xa1, 0x64, 0x0b, 0x28, 0xc9, 0xa5, 0xb5, 0x33, 0x72, 0x3a, 0xfe, 0x6e,
0x1d, 0x73, 0xc0, 0x03, 0x31, 0x84, 0x37, 0x9d, 0xb8, 0x35, 0x8e, 0x96, 0xaf,
0xb5, 0xfe, 0xa4, 0x4d, 0x4a, 0x95, 0x59, 0x54, 0x7c, 0x2a, 0x15, 0x68, 0x8b,
0x21, 0x4c, 0x8b, 0x7f, 0x76, 0xf3, 0xa5, 0x20, 0xcb, 0x91, 0xcf, 0xa4, 0xd1,
0xf9, 0x5e, 0x89, 0x9f, 0x3a, 0x17, 0xe0, 0x16, 0x5b, 0x1a, 0x37, 0xd2, 0x59,
0x61, 0xb6, 0x87, 0xbc, 0x14, 0xf1, 0x52, 0xa5, 0x07, 0x65, 0xbb, 0x1f, 0xfc,
0x97, 0x12, 0x35, 0xb5, 0x4e, 0xa2, 0xfc, 0xe9, 0x2e, 0x66, 0x77, 0x9a, 0x65,
0x54, 0x89, 0xd9, 0x7f, 0xe7, 0x28, 0xdc, 0xb9, 0xe2, 0x8e, 0x49, 0x8f, 0x06,
0x51, 0x1e, 0xf5, 0xf3, 0x30, 0x32, 0x07, 0xaf, 0x0d, 0x53, 0x5a, 0x72, 0xfd,
0xb5, 0x1e, 0xc1, 0xf2, 0x7c, 0x83, 0x64, 0x2e, 0xe1, 0xb2, 0xaf, 0xdf, 0x0a,
0x73, 0x6a, 0xa6, 0xe9, 0x5b, 0x8c, 0xe6, 0xfd, 0xfc, 0xbc, 0x1e, 0x83, 0x56,
0x1c, 0x64, 0x3e, 0xd6, 0x69, 0x80, 0x5b, 0x74, 0x06, 0x5d, 0x14, 0x35, 0x51,
0x5c, 0x92, 0xd3, 0xb4, 0x9c, 0xbf, 0xcd, 0x30, 0x8d, 0x3a, 0x46, 0x2a, 0x5a,
0x6d, 0x18, 0x7d, 0x33, 0xb8, 0x73, 0xe1, 0x9d, 0xe1, 0x5d, 0x37, 0x05, 0x91,
0x1a, 0x02, 0xf4, 0x5c, 0x11, 0xc3, 0xa5, 0x82, 0x2b, 0x49, 0x9a, 0x15, 0x0c,
0x6b, 0x5d, 0x8b, 0x22, 0x1d, 0xdf, 0x84, 0x6c, 0x1e, 0x9e, 0x97, 0x3c, 0xcf,
0x5c, 0x16, 0x83, 0x64, 0x6d, 0x1c, 0xfa, 0x0d, 0x50, 0xd2, 0x85, 0xa9, 0x86,
0x87, 0xd4, 0x49, 0xf4, 0xfe, 0x20, 0x15, 0xa6, 0x13, 0x46, 0x8a, 0x1b, 0xb7,
0x58, 0x5d, 0xb7, 0x1d, 0x5e, 0xa6, 0xb9, 0x76, 0x1d, 0x39, 0xf9, 0x24, 0xfd,
0x80, 0x15, 0x61, 0xeb, 0x36, 0x0f, 0x35, 0xd3, 0x71, 0x33, 0x05, 0x3c, 0xe8,
0xf3, 0xa0, 0x60, 0xc8, 0x8d, 0xc3, 0x42, 0xf4, 0x9e, 0x88, 0xe0, 0x7c, 0x84,
0x71, 0x55, 0x13, 0xd5, 0x30, 0x52, 0xe2, 0x18, 0x41, 0xdb, 0x08, 0x34, 0x2b,
0xa8, 0x12, 0x50, 0x5f, 0x31, 0x8c, 0xca, 0x12, 0x4e, 0x3f, 0x42, 0x86, 0x35,
0xf4, 0xbc, 0x7a, 0x59, 0x40, 0x38, 0x5d, 0x1c, 0x95, 0x4f, 0x5b, 0x27, 0xe1,
0x1a, 0xa3, 0x8a, 0x3a, 0xae, 0x29, 0x94, 0xef, 0x62, 0x26, 0x49, 0x97, 0x93,
0xe4, 0x1a, 0x45, 0xc7, 0x28, 0x1c, 0x7e, 0xb4, 0xf9, 0x61, 0x51, 0xa2, 0x49,
0x09, 0x83, 0x11, 0x75, 0x9b, 0x11, 0x74, 0x75, 0x16, 0xf7, 0x99, 0x43, 0x9d,
0x88, 0x23, 0xce, 0xcf, 0xab, 0x75, 0x04, 0xa1, 0x5d, 0xd3, 0x49, 0x0c, 0x4e,
0xe2, 0xe0, 0xf6, 0x8a, 0xc7, 0x94, 0x9c, 0x2e, 0xca, 0x73, 0xa4, 0x26, 0x40,
0x5e, 0x26, 0xac, 0xda, 0x69, 0x84, 0xbe, 0x9b, 0x60, 0x84, 0xfa, 0xde, 0x2c,
0x0e, 0xec, 0xea, 0x13, 0x34, 0xd8, 0xb8, 0x04, 0x33, 0xef, 0xcc, 0xb5, 0x16,
0xd2, 0x5b, 0xb6, 0x7a, 0xa0, 0xcf, 0x81, 0x1e, 0x31, 0x4a, 0x1e, 0xf2, 0x22,
0x22, 0x70, 0x58, 0x9f, 0x8d, 0x7a, 0xf8, 0xa4, 0xa8, 0xa0, 0xd3, 0x0a, 0x37,
0x93, 0xcc, 0xad, 0x49, 0x2c, 0x4f, 0x3e, 0xec, 0x65, 0xdd, 0x5a, 0x78, 0xb5,
0xb9, 0x83, 0xdd, 0x4a, 0xf2, 0xf2, 0xea, 0x2a, 0x56, 0x93, 0x54, 0x4d, 0xff,
0xf8, 0x02, 0xf5, 0x31, 0x33, 0xc5, 0xf2, 0x1c, 0xa7, 0xd5, 0x40, 0x65, 0xfb,
0xcd, 0x1b, 0x80, 0x58, 0xb9, 0x02, 0xf5, 0x97, 0xc6, 0xd3, 0xf6, 0x71, 0x32,
0xff, 0xa7, 0x8a, 0x2c, 0x4c, 0xe3, 0x68, 0x10, 0xee, 0x6a, 0xf5, 0xc3, 0xce,
0xdc, 0xbe, 0x59, 0x0f, 0xeb, 0x63, 0xe3, 0xec, 0x58, 0x14, 0xa7, 0x85, 0x3c,
0xb1, 0xd6, 0x08, 0x3d, 0x93, 0x73, 0xab, 0x9f, 0xcc, 0x2d, 0x5c, 0x19, 0x3f,
0x87, 0x46, 0x25, 0xcc, 0x8c, 0xe6, 0xae, 0xc3, 0xf7, 0x41, 0x5f, 0x74, 0x63,
0xfc, 0xb7, 0xcc, 0x58, 0x36, 0x3f, 0xa6, 0xa5, 0x66, 0x05, 0x59, 0x15, 0x8f,
0x9d, 0xe5, 0x8a, 0x94, 0x6e, 0x33, 0x54, 0x29, 0x5e, 0x80, 0x74, 0x6b, 0x7d,
0xb8, 0xc0, 0x36, 0x82, 0xec, 0x3b, 0x4e, 0x36, 0xaa, 0xe6, 0x18, 0xdd, 0xfc,
0x7f, 0xbd, 0x23, 0x68, 0x1e, 0xc1, 0xda, 0xee, 0x96, 0x30, 0x42, 0x2a, 0x1a,
0x50, 0x91, 0x65, 0x04, 0xda, 0x3f, 0x55, 0xab, 0xe1, 0x30, 0x53, 0x1b, 0x2f,
0x0e, 0x55, 0x9c, 0xee, 0x16, 0xd6, 0x08, 0x5c, 0xda, 0x65, 0x40, 0x87, 0x01,
0x43, 0x59, 0x1c, 0x16, 0x02, 0xcc, 0x58, 0x1a, 0xb7, 0x5f, 0xbf, 0xc8, 0x3b,
0x7d, 0xbf, 0x8a, 0x82, 0x2a, 0x2a, 0xb8, 0x66, 0xc4, 0xbc, 0x11, 0x9d, 0x49,
0xb8, 0x93, 0xb0, 0xcd, 0xa3, 0x25, 0x1f, 0xe0, 0x0b, 0x1c, 0x5e, 0x6a, 0xf3,
0xd2, 0x99, 0x14, 0x7c, 0x2f, 0xb6, 0xec, 0x9a, 0x5d, 0x44, 0x6f, 0x16, 0xd1,
0xe7, 0x6f, 0x32, 0x2d, 0x0e, 0x47, 0xe9, 0x28, 0x3f, 0xc7, 0x31, 0x35, 0x9d,
0x56, 0x93, 0xce, 0x86, 0xfb, 0xcf, 0xac, 0xbf, 0xa9, 0x28, 0xe7, 0x2a, 0x2a,
0xb8, 0x23, 0x4f, 0xe9, 0x5e, 0x48, 0xec, 0x6e, 0x10, 0xeb, 0x8d, 0x67, 0x12,
0x74, 0xfa, 0xa3, 0xdb, 0xbb, 0xa7, 0x9f, 0xd7, 0x7e, 0x60, 0xd4, 0x08, 0x47,
0x6a, 0xd7, 0xa0, 0x5f, 0xc3, 0x81, 0x08, 0x85, 0x23, 0xe4, 0x1b, 0x46, 0x0f,
0x8b, 0xcb, 0xed, 0x06, 0x9c, 0xf8, 0x56, 0xf3, 0x33, 0x95, 0xdf, 0x6f, 0x1b,
0xa7, 0xde, 0x65, 0xb8, 0x9f, 0x2d, 0x13, 0xc1, 0xf4, 0x54, 0x1a, 0x7d, 0xef,
0x1b, 0xbd, 0x38, 0x15, 0xc5, 0xf0, 0xd3, 0x99, 0xbf, 0x8e, 0xfe, 0xc4, 0xf4,
0xe1, 0x91, 0x37, 0xdc, 0x42, 0xe0, 0x0c, 0xa8, 0xa8, 0x8f, 0x0d, 0xbc, 0x60,
0xd8, 0x4c, 0x47, 0xcd, 0x74, 0xc9, 0x88, 0x5b, 0xef, 0x29, 0x9e, 0x3b, 0xcf,
0x6c, 0xb4, 0x34, 0x40, 0xf2, 0x80, 0x28, 0xd6, 0x56, 0x0b, 0x1d, 0xfc, 0xf1,
0xac, 0x17, 0x8a, 0x18, 0xf9, 0x6d, 0x5c, 0xc2, 0x0e, 0xdd, 0x34, 0x6e, 0xef,
0x58, 0xd8, 0xbb, 0xfa, 0xfe, 0xcd, 0x12, 0x6e, 0xe9, 0xbd, 0xb2, 0x65, 0x5c,
0x90, 0xd3, 0xe0, 0x7e, 0xf3, 0x30, 0x69, 0xec, 0x74, 0xf8, 0x6f, 0x8e, 0x0b,
0xe5, 0xfe, 0x82, 0x55, 0x27, 0xee, 0xfd, 0x30, 0xad, 0x26, 0x85, 0x0b, 0x65,
0x2e, 0x4c, 0xc8, 0xe9, 0xcc, 0x53, 0x5e, 0x66, 0x8d, 0xe7, 0x18, 0x11, 0x64,
0xfe, 0xd1, 0x1f, 0x43, 0x1b, 0x4e, 0x3c, 0x1d, 0x7e, 0x6e, 0xe6, 0x6d, 0xf9,
0x32, 0x06, 0xbd, 0xf4, 0x87, 0x6b, 0x7f, 0x5c, 0xb7, 0x8a, 0xda, 0x55, 0xe8,
0x57, 0xf9, 0xdb, 0xc7, 0xdd, 0x38, 0xcb, 0xfc, 0xfc, 0x96, 0x94, 0x96, 0xb7,
0xd0, 0xbe, 0x53, 0x29, 0x24, 0xf8, 0x94, 0xcb, 0xa1, 0xa3, 0x36, 0x5d, 0xfe,
0x70, 0xb7, 0x03, 0xde, 0x1c, 0xb1, 0x54, 0xad, 0xa0, 0xee, 0xa5, 0xa3, 0x2f,
0x5f, 0x31, 0x71, 0xf2, 0x7f, 0x56, 0xe1, 0x27, 0x9b, 0x81, 0x74, 0x2f, 0xda,
0x76, 0x9f, 0x17, 0xb2, 0xd0, 0x23, 0x09, 0x1a, 0x80, 0x32, 0x4e, 0x43, 0x11,
0x3a, 0xcc, 0x0e, 0xb8, 0xa6, 0xd0, 0x31, 0x05, 0xc5, 0x0a, 0x38, 0x25, 0x33,
0xec, 0x63, 0x6b, 0x88, 0xf1, 0x11, 0x5c, 0x13, 0x45, 0x95, 0x58, 0xf3, 0x30,
0x68, 0xa8, 0x4e, 0x58, 0xd3, 0xd0, 0x79, 0xa9, 0xc6, 0x4b, 0xdd, 0x36, 0xf2,
0xda, 0x48, 0xe7, 0x80, 0xef, 0x97, 0x47, 0xad, 0x62, 0xcf, 0x63, 0x59, 0x9c,
0x66, 0x66, 0xd0, 0xee, 0x26, 0xa7, 0x9b, 0x02, 0x32, 0xea, 0xcb, 0x55, 0x07,
0x0b, 0x06, 0x95, 0x38, 0xf8, 0x84, 0x9a, 0xb9, 0x26, 0x4c, 0xc1, 0x9f, 0x25,
0x63, 0x0f, 0x9d, 0x6c, 0x1f, 0x23, 0x67, 0x2e, 0xa5, 0x2f, 0x18, 0x5e, 0xc4,
0xd1, 0x45, 0x28, 0xb2, 0xe8, 0xfe, 0x8f, 0x41, 0xe1, 0xd8, 0x01, 0x2f, 0x85,
0xbd, 0xb4, 0xbe, 0x88, 0xa2, 0x25, 0x3c, 0xd0, 0x62, 0x4d, 0x8b, 0x62, 0x03,
0x99, 0x5f, 0xbb, 0xbc, 0x08, 0x95, 0x83, 0x2a, 0xf8, 0x32, 0xd0, 0x83, 0x08,
0xd6, 0x22, 0x28, 0xcd, 0x42, 0x9e, 0x7d, 0x92, 0x8b, 0xaa, 0x1c, 0xa8, 0xc8,
0xc9, 0x68, 0x49, 0x4a, 0x37, 0xf3, 0x22, 0x35, 0x2d, 0xa1, 0x21, 0xc7, 0x29,
0x3c, 0x6a, 0x2a, 0x74, 0xf3, 0x68, 0x71, 0x4a, 0x8f, 0x84, 0x1e, 0xd5, 0x5e,
0xd2, 0x0a, 0x1c, 0xe1, 0x58, 0x10, 0xb1, 0x20, 0xea, 0xf5, 0xb8, 0xf6, 0x69,
0x49, 0x5a, 0xcc, 0xfd, 0x9d, 0xd4, 0xb9, 0x57, 0xcd, 0x00, 0x7d, 0x90, 0x25,
0x55, 0x8c, 0x65, 0xce, 0x39, 0x71, 0xd5, 0x89, 0xc6, 0x45, 0x94, 0xff, 0x55,
0xdb, 0x18, 0xdd, 0xb1, 0x52, 0xda, 0xba, 0xcd, 0x1d, 0x8b, 0xd3, 0x90, 0xa6,
0x71, 0x4c, 0x49, 0x31, 0xe5, 0x3f, 0x08, 0x46, 0xcd, 0x06, 0x5a, 0xff, 0x33,
0x2b, 0x1f, 0x59, 0x54, 0x2e, 0xaa, 0x70, 0x3d, 0xe9, 0xfa, 0xd0, 0x0a, 0x06,
0x98, 0xd6, 0x02, 0x93, 0xe8, 0x63, 0x3e, 0xe4, 0xf0, 0xa1, 0xcd, 0xf7, 0x84,
0x99, 0xbb, 0x86, 0xa8, 0x83, 0x37, 0x74, 0x8d, 0x97, 0xaa, 0xbc, 0x8f, 0x34,
0x67, 0x72, 0x53, 0x03, 0x63, 0x0f, 0xbd, 0x51, 0xf2, 0x47, 0xa9, 0x7e, 0x12,
0xc6, 0x3c, 0xae, 0xea, 0xe6, 0x51, 0x33, 0xbf, 0xad, 0xc9, 0xe6, 0x19, 0x58,
0x67, 0x50, 0xee, 0x20, 0xa5, 0x83, 0x5a, 0xa5, 0xd4, 0xb6, 0x77, 0xed, 0xa1,
0x12, 0x46, 0x41, 0xef, 0x24, 0xfc, 0xc2, 0xfd, 0x3a, 0x0b, 0xd5, 0xf0, 0xa0,
0x7e, 0x64, 0x11, 0xd1, 0xdc, 0x45, 0x2a, 0x0f, 0xe3, 0x5f, 0x5a, 0x16, 0x73,
0x0e, 0xa5, 0x71, 0x0a, 0x35, 0xcc, 0xc4, 0x2d, 0x0c, 0x7b, 0xd4, 0x9c, 0x4c,
0xc5, 0x69, 0x76, 0x1f, 0x66, 0x14, 0x38, 0x60, 0xa4, 0x3e, 0x16, 0x14, 0x5b,
0x7d, 0xb0, 0xb3, 0xa9, 0xa8, 0xc2, 0x74, 0xf9, 0xbf, 0x7a, 0xf6, 0x75, 0xfc,
0xa8, 0x83, 0xe1, 0xbd, 0xce, 0x88, 0x1a, 0x31, 0x10, 0x1d, 0xca, 0x62, 0xea,
0x93, 0x86, 0x4f, 0x7b, 0x3e, 0x4e, 0x30, 0x20, 0x6c, 0xd6, 0x92, 0x55, 0x2c,
0x34, 0x9a, 0x94, 0x68, 0x10, 0xec, 0xad, 0xda, 0x06, 0xad, 0x90, 0xe8, 0x1f,
0x72, 0x23, 0xc2, 0xbc, 0xc7, 0xe6, 0x47, 0x8b, 0x1f, 0x23, 0x5a, 0x3a, 0xae,
0xa5, 0xce, 0x41, 0xb8, 0x07, 0x73, 0x23, 0x96, 0x65, 0x51, 0x22, 0x9a, 0xca,
0x19, 0x39, 0x25, 0xe5, 0xd4, 0xba, 0x0e, 0xbb, 0x50, 0xba, 0x2e, 0x08, 0xc4,
0xd0, 0xc7, 0xac, 0x33, 0xe4, 0xa5, 0x01, 0x2f, 0xdd, 0x90, 0xd2, 0xa2, 0x60,
0x29, 0xd5, 0x26, 0xd2, 0x9a, 0xa8, 0x55, 0x85, 0xee, 0x7d, 0x67, 0xf9, 0x92,
0xfc, 0xea, 0x22, 0x4e, 0x7f, 0xbb, 0xcd, 0x8c, 0x56, 0x1d, 0xd9, 0x05, 0x37,
0xbc, 0xa5, 0xc6, 0xf2, 0x46, 0x2a, 0x64, 0xb3, 0x50, 0xcb, 0x66, 0x4c, 0x2b,
0x77, 0x40, 0xe9, 0xc0, 0xa0, 0x96, 0x0c, 0x2f, 0x5d, 0xd5, 0x71, 0x37, 0x1f,
0x42, 0xf0, 0x4b, 0x8c, 0x47, 0x04, 0xb8, 0xfa, 0x3a, 0x4e, 0xcf, 0x07, 0x4a,
0x0d, 0x29, 0xbf, 0x18, 0x1b, 0xe4, 0x2e, 0x26, 0xc9, 0xa0, 0x41, 0xf5, 0x07,
0x85, 0x97, 0x3e, 0x53, 0x8a, 0xa5, 0xb5, 0xde, 0x18, 0xfc, 0x6c, 0x58, 0x1e,
0x25, 0x75, 0x31, 0x1b, 0x5a, 0x90, 0xd2, 0x75, 0x61, 0x5c, 0x36, 0x29, 0xb5,
0x88, 0xa6, 0x5c, 0x3a, 0x0c, 0xf9, 0x30, 0x56, 0x23, 0xb8, 0xcf, 0xc6, 0x77,
0x2e, 0x4e, 0xa9, 0x38, 0xf5, 0xaa, 0xc8, 0xcf, 0x23, 0xdb, 0x35, 0x29, 0xcd,
0x8b, 0x17, 0x55, 0x7a, 0xe9, 0xe2, 0xdf, 0xbb, 0xf9, 0xc0, 0xaf, 0x19, 0xa1,
0xaa, 0x11, 0x3a, 0x13, 0x41, 0x32, 0xbf, 0xc2, 0x30, 0xb4, 0x88, 0x0b, 0x7b,
0x65, 0xff, 0xbe, 0xe9, 0x0b, 0xb9, 0x08, 0x99, 0xad, 0x49, 0xd8, 0x79, 0xda,
0x30, 0x27, 0xa5, 0xab, 0xe2, 0xdd, 0xeb, 0x46, 0x58, 0x2a, 0xb8, 0x53, 0x3b,
0x96, 0xc5, 0x2a, 0x4b, 0xfb, 0x10, 0x39, 0x99, 0x61, 0xb9, 0x86, 0xa9, 0x63,
0x98, 0x0a, 0x2a, 0xed, 0xa4, 0xe6, 0x99, 0xa1, 0x26, 0x84, 0x07, 0x5f, 0x51,
0xf3, 0x08, 0x32, 0x62, 0xa4, 0x8a, 0xcf, 0x0f, 0x7a, 0x71, 0xc3, 0x0c, 0x59,
0x1b, 0xb7, 0xbc, 0x11, 0xc7, 0xba, 0x9d, 0xe4, 0xcd, 0xad, 0x0e, 0x75, 0xbb,
0xe1, 0x65, 0x5a, 0x5a, 0x99, 0x45, 0xd3, 0x2b, 0xa7, 0xd9, 0x40, 0x2c, 0x09,
0xba, 0x38, 0xc4, 0x2d, 0x15, 0x71, 0x5d, 0x0c, 0x78, 0x3c, 0x76, 0xea, 0x12,
0xeb, 0xf5, 0x0b, 0x66, 0x5c, 0x17, 0xc4, 0x76, 0x6e, 0x19, 0xa9, 0x65, 0xc8,
0x56, 0x50, 0xb2, 0x82, 0x10, 0xc3, 0x7d, 0x19, 0x37, 0xb2, 0x27, 0x16, 0xc7,
0x28, 0x0b, 0xf7, 0x5f, 0x98, 0x59, 0xe0, 0x6c, 0x1d, 0x85, 0x9d, 0x67, 0x85,
0xae, 0x41, 0x74, 0xe4, 0x54, 0x3d, 0xaa, 0xc7, 0xe9, 0x1d, 0xf7, 0xb5, 0x78,
0xe0, 0xa7, 0x35, 0x7f, 0x6e, 0x08, 0x8d, 0x0b, 0x30, 0xf3, 0xf1, 0xd0, 0x17,
0x43, 0x8f, 0x80, 0x44, 0xb6, 0x31, 0x6a, 0x19, 0xa3, 0x46, 0x13, 0xcc, 0xa6,
0x2d, 0xda, 0xf1, 0xd9, 0xd0, 0x63, 0x43, 0xf3, 0x18, 0x59, 0xc7, 0xc8, 0x62,
0xa0, 0x26, 0x03, 0x55, 0x5b, 0x48, 0x9b, 0x57, 0xac, 0xc7, 0x47, 0xfa, 0x26,
0xce, 0xa8, 0xc3, 0x1d, 0x25, 0xd2, 0x4a, 0xd8, 0x46, 0xd1, 0x92, 0x23, 0xa4,
0x21, 0x1d, 0x06, 0x78, 0x46, 0xe8, 0x9a, 0x87, 0xf2, 0x69, 0x6b, 0x0a, 0xb5,
0x5e, 0xac, 0xed, 0x9d, 0x79, 0xc9, 0xf6, 0xa1, 0xf4, 0x73, 0xb3, 0x85, 0xd1,
0x64, 0x2f, 0x2e, 0xbd, 0xd5, 0x34, 0x23, 0x5c, 0x6b, 0xd3, 0x51, 0x8b, 0x8e,
0x74, 0x73, 0xa8, 0x61, 0x49, 0x72, 0xa7, 0x09, 0x6e, 0xd6, 0xff, 0x09, 0x25,
0x49, 0xdf, 0xc8, 0x3e, 0x9f, 0xe0, 0x15, 0xd3, 0xef, 0xa5, 0xa0, 0x97, 0x06,
0xd3, 0x38, 0xc8, 0x90, 0xe7, 0x80, 0x1a, 0xfc, 0x5a, 0x93, 0x81, 0x6b, 0xe1,
0x53, 0x0c, 0x8b, 0x94, 0x02, 0xdf, 0x3c, 0xfe, 0x42, 0x85, 0xe0, 0xd3, 0x8d,
0x6e, 0x72, 0x3f, 0xdf, 0xb0, 0xfb, 0xb4, 0xc0, 0xbb, 0x6a, 0xc3, 0xd0, 0x87,
0x71, 0xc1, 0x49, 0xda, 0xfd, 0xc7, 0x73, 0x2e, 0xbc, 0xa4, 0xc6, 0xa5, 0x5f,
0xd7, 0x3c, 0x17, 0xe6, 0xf1, 0xab, 0x91, 0x81, 0xa7, 0x21, 0x57, 0x3e, 0xf5,
0xa1, 0xcf, 0x87, 0x56, 0x2f, 0xd9, 0xbd, 0x34, 0xe7, 0xc6, 0x55, 0x9e, 0x57,
0xae, 0x28, 0x71, 0x5b, 0xc4, 0x6e, 0xd9, 0x32, 0x4a, 0x96, 0x61, 0x32, 0xa1,
0x21, 0x27, 0x15, 0x45, 0x98, 0x0e, 0xfe, 0xe4, 0xe8, 0x06, 0xab, 0x2d, 0x75,
0xc1, 0xb3, 0xdb, 0xf5, 0x59, 0xe1, 0xc5, 0x1c, 0x65, 0xd2, 0x38, 0x51, 0xe5,
0xdc, 0x94, 0x5f, 0xc8, 0x8e, 0x01, 0xfb, 0xc6, 0x4f, 0x4d, 0x80, 0xaa, 0x02,
0x79, 0x6a, 0xa5, 0x85, 0x5d, 0x8b, 0x1b, 0x4a, 0x3a, 0xf8, 0x82, 0x9b, 0xc1,
0xc3, 0xaa, 0x9f, 0xee, 0xf3, 0xaa, 0x19, 0x35, 0xe3, 0xa4, 0xe8, 0x1d, 0x0a,
0x07, 0xf9, 0x5f, 0x4a, 0xb0, 0xc9, 0xc8, 0x6c, 0x68, 0x7c, 0xc3, 0xca, 0xcb,
0x35, 0x14, 0xa6, 0x81, 0x30, 0xe9, 0xd6, 0x70, 0xff, 0x0f, 0xea, 0xc6, 0x59,
0x1c, 0xa7, 0x84, 0x60, 0x50, 0xbe, 0x51, 0xea, 0x79, 0xb4, 0xde, 0x5d, 0x1d,
0x47, 0xfb, 0x6b, 0xc1, 0x1d, 0xd2, 0x4d, 0xc2, 0x76, 0x43, 0x8d, 0x45, 0xe6,
0x9f, 0x8d, 0x31, 0x32, 0xc7, 0xa8, 0xda, 0x08, 0x2d, 0xc3, 0x93, 0x46, 0x29,
0x99, 0x79, 0xcb, 0x5e, 0x9f, 0x47, 0x11, 0x6f, 0x0e, 0xeb, 0x51, 0x2a, 0x12,
0x96, 0x4a, 0x42, 0x4c, 0x5a, 0x5f, 0x8f, 0xec, 0x77, 0xbd, 0x50, 0xc6, 0x22,
0xc6, 0x94, 0x11, 0xd7, 0xf6, 0x75, 0x97, 0x70, 0xf7, 0x93, 0x54, 0x19, 0xa0,
0xca, 0xbd, 0x0d, 0x31, 0x1a, 0x5f, 0x86, 0xfd, 0x73, 0xef, 0x63, 0x03, 0x9c,
0x6d, 0x16, 0x2d, 0x7c, 0x55, 0xb6, 0x7c, 0x19, 0x4a, 0xc6, 0x21, 0xda, 0x07,
0x71, 0xfc, 0x95, 0xc9, 0x1c, 0x89, 0xee, 0x57, 0x23, 0xc8, 0x54, 0x68, 0x41,
0x17, 0xbf, 0xdc, 0xe7, 0xcb, 0xa2, 0xed, 0x9d, 0x0a, 0xde, 0x51, 0xaa, 0xa7,
0xb1, 0xb8, 0xab, 0x85, 0xf9, 0x5a, 0xad, 0x06, 0x33, 0xcf, 0x67, 0x99, 0x08,
0x8f, 0x58, 0x29, 0xba, 0x11, 0x42, 0x74, 0x61, 0xd4, 0x84, 0xd1, 0xa9, 0xa4,
0x3b, 0xaf, 0x9a, 0xcb, 0x38, 0xb9, 0x13, 0xeb, 0x7a, 0x2a, 0x32, 0x90, 0x22,
0x4e, 0x65, 0x7c, 0xea, 0x5a, 0xee, 0xa5, 0xd3, 0x52, 0xce, 0xef, 0xc9, 0x8d,
0x66, 0x34, 0x82, 0x93, 0x11, 0x64, 0xdc, 0x74, 0x77, 0x73, 0x85, 0x26, 0xa0,
0x45, 0x9f, 0x76, 0x03, 0x9c, 0xb4, 0x68, 0xd1, 0xc2, 0xb6, 0x8e, 0x16, 0x06,
0x78, 0xcd, 0x49, 0x28, 0xbf, 0x71, 0xe9, 0x7b, 0xd9, 0x87, 0x90, 0xdc, 0xc3,
0x18, 0x4e, 0x15, 0x77, 0xd8, 0x4f, 0x57, 0xa4, 0x34, 0xcb, 0x44, 0xb4, 0xa0,
0xc6, 0x75, 0x26, 0x3d, 0xd7, 0x02, 0xae, 0xfc, 0x76, 0xf6, 0x3f, 0x5c, 0xfb,
0x8e, 0x54, 0xc0, 0xce, 0xc6, 0x04, 0x99, 0x13, 0x64, 0x49, 0xa2, 0xd0, 0xcc,
0x03, 0xc5, 0x03, 0x3d, 0x5d, 0xfd, 0x85, 0xec, 0x6d, 0xa3, 0x48, 0xd7, 0x32,
0x8b, 0xb8, 0x2b, 0xb4, 0x3a, 0x9a, 0xc2, 0xc8, 0xde, 0x06, 0xfe, 0xab, 0x25,
0x49, 0x4d, 0xf9, 0x92, 0xdb, 0x68, 0x94, 0x4e, 0x6e, 0x20, 0xc2, 0x35, 0x35,
0xe6, 0x79, 0xf0, 0x0c, 0x79, 0x31, 0xc0, 0x08, 0xff, 0x9d, 0x04, 0xa5, 0x85,
0x9a, 0x88, 0x6f, 0x19, 0x3d, 0xcb, 0x58, 0x49, 0xd0, 0xe4, 0x2f, 0xf5, 0x8c,
0x52, 0xcb, 0x26, 0x50, 0x32, 0x81, 0x05, 0x2b, 0x5d, 0x67, 0xb2, 0x19, 0x4e,
0xa0, 0xe3, 0xa9, 0x86, 0x11, 0x64, 0xe2, 0x94, 0x76, 0x71, 0xc6, 0x67, 0xae,
0xe6, 0xd0, 0xb7, 0xd6, 0x0c, 0xbd, 0x19, 0x1a, 0x13, 0x55, 0xb1, 0xa4, 0x68,
0xdc, 0x8b, 0xc2, 0x24, 0x9f, 0x42, 0xf4, 0x5a, 0xe1, 0xb7, 0x62, 0xc2, 0x8a,
0xf3, 0x2c, 0x9c, 0x68, 0x2c, 0xa4, 0x7a, 0xed, 0xc2, 0x9e, 0x2c, 0x1b, 0x4b,
0xad, 0x0e, 0x13, 0x83, 0xdc, 0x32, 0xeb, 0xad, 0x3a, 0x0c, 0x6d, 0x98, 0x01,
0xac, 0x93, 0xba, 0x9c, 0x74, 0x21, 0x89, 0x49, 0x71, 0x05, 0xf1, 0x4c, 0x9c,
0x8e, 0xa1, 0x49, 0xa4, 0x26, 0xed, 0x1e, 0xdc, 0x79, 0xbd, 0x89, 0xa1, 0x63,
0xc6, 0x89, 0x33, 0x6f, 0xc6, 0xf3, 0xcb, 0x87, 0x2e, 0x25, 0x75, 0xf0, 0x71,
0xdd, 0x10, 0x44, 0x5d, 0x10, 0x0a, 0x27, 0x15, 0xbd, 0x5c, 0xc6, 0xe8, 0xb8,
0xc2, 0x8d, 0x32, 0xde, 0x9f, 0x0c, 0x4a, 0x70, 0x86, 0xdf, 0xf1, 0x6e, 0x96,
0x9f, 0x17, 0x94, 0x74, 0x9d, 0x5d, 0x3f, 0xee, 0xa6, 0xb3, 0x6e, 0xea, 0x1c,
0x25, 0xf7, 0x28, 0xad, 0xea, 0x69, 0x7c, 0xdf, 0x69, 0x86, 0xd8, 0x46, 0xf2,
0xf3, 0x89, 0xe1, 0x35, 0x3d, 0xe6, 0xf9, 0x9c, 0x21, 0x30, 0x8f, 0x3e, 0x61,
0xb9, 0xcf, 0x47, 0x72, 0x3e, 0x51, 0x6f, 0x4c, 0x92, 0x59, 0x90, 0xe0, 0x1d,
0x96, 0xe2, 0xf2, 0x81, 0xe1, 0x42, 0x92, 0xfc, 0x83, 0xdc, 0xfa, 0x9f, 0x5c,
0xd9, 0xd3, 0xfa, 0x6e, 0x8f, 0xf1, 0xc9, 0xe4, 0x62, 0x34, 0x48, 0x27, 0x83,
0x5b, 0x4e, 0xf7, 0xfa, 0xe0, 0xe7, 0x09, 0x83, 0xc2, 0x4d, 0x27, 0x2d, 0x5c,
0xed, 0xce, 0xb8, 0x1e, 0x63, 0x5e, 0x9c, 0xf6, 0xc2, 0x31, 0x44, 0x6d, 0x0c,
0xd4, 0x0d, 0x09, 0xdc, 0xf8, 0x44, 0x9e, 0x43, 0xe9, 0x33, 0x5e, 0xf2, 0x3c,
0x2b, 0x8f, 0x51, 0xb7, 0x91, 0xbc, 0x46, 0x52, 0xa5, 0xe1, 0xe1, 0x66, 0x5f,
0x49, 0x26, 0xa0, 0x59, 0x43, 0xfa, 0xb7, 0x16, 0xfe, 0x2f, 0x39, 0x6f, 0x85,
0xbd, 0x5a, 0xf8, 0x85, 0xe2, 0xb4, 0x07, 0x6d, 0x82, 0x29, 0xca, 0x06, 0xa9,
0x64, 0x90, 0x4c, 0x49, 0x6a, 0xd8, 0xa8, 0xb2, 0x56, 0x0e, 0x41, 0xcd, 0x2f,
0x9e, 0x3c, 0xb0, 0xd2, 0x9a, 0x95, 0xca, 0xa3, 0xb8, 0xfd, 0x35, 0x3d, 0x73,
0xa2, 0x80, 0x97, 0xfa, 0xbc, 0x74, 0x4f, 0x8b, 0x6c, 0xde, 0x46, 0x3b, 0x9d,
0x54, 0xf1, 0x6c, 0xd5, 0x73, 0xd2, 0xef, 0x57, 0x89, 0xeb, 0xe2, 0xeb, 0x6b,
0x28, 0xfb, 0x71, 0xf7, 0x2f, 0x9c, 0x4a, 0xea, 0xcf, 0x20, 0x98, 0x41, 0xf7,
0x30, 0xbc, 0x62, 0xfd, 0xbb, 0xd3, 0x0e, 0xb7, 0x80, 0x31, 0x3a, 0x3b, 0x6a,
0xec, 0x8f, 0x65, 0x40, 0xd7, 0x94, 0x34, 0xcf, 0xc4, 0xdd, 0xcf, 0x78, 0xa7,
0x10, 0x4a, 0xbb, 0x55, 0xe4, 0x65, 0x51, 0xd1, 0xa1, 0xa4, 0x36, 0x76, 0x58,
0xb5, 0x88, 0x0a, 0x66, 0x9b, 0x96, 0x15, 0x5c, 0xf9, 0x77, 0x72, 0xfe, 0x7c,
0xa9, 0x1b, 0x72, 0x21, 0xbd, 0x2e, 0x1d, 0xa5, 0xf3, 0x1d, 0x9c, 0x33, 0x97,
0x88, 0xf7, 0xce, 0xe3, 0xca, 0xb3, 0x0d, 0xcc, 0x15, 0x42, 0x56, 0x0c, 0x58,
0xa1, 0x31, 0x62, 0xf5, 0xb5, 0x8a, 0x21, 0xbe, 0xfe, 0x85, 0xf8, 0xc3, 0x39,
0x99, 0xcb, 0x84, 0x0e, 0x11, 0x31, 0x47, 0xcc, 0x38, 0xce, 0x9f, 0x95, 0x0d,
0xa3, 0x84, 0x1f, 0xf0, 0x2d, 0x33, 0x2d, 0x33, 0xb0, 0x0c, 0x2c, 0x22, 0xf9,
0x8d, 0x69, 0x01, 0x2a, 0x47, 0x94, 0x74, 0x5c, 0x20, 0x85, 0x1e, 0x23, 0x4d,
0xbc, 0x50, 0xb3, 0xfb, 0x2e, 0x93, 0xb9, 0x4f, 0x4f, 0xff, 0x72, 0x52, 0x4f,
0x23, 0x41, 0x2a, 0xde, 0x1d, 0x8f, 0xd2, 0xa1, 0x04, 0x35, 0xd8, 0xb8, 0x4b,
0x7f, 0x5d, 0xa6, 0x27, 0x97, 0x1d, 0x0b, 0xfb, 0x2a, 0xff, 0xaa, 0xac, 0x94,
0x33, 0x87, 0x21, 0x73, 0xe3, 0xda, 0x8f, 0x16, 0x1f, 0x5a, 0x69, 0x2d, 0x78,
0x10, 0xa5, 0xb6, 0x8f, 0xcb, 0x3f, 0x3c, 0x5e, 0xc4, 0xd5, 0x30, 0xd2, 0x1a,
0x23, 0x63, 0x8c, 0x1c, 0x11, 0x6a, 0xe3, 0x13, 0x80, 0xca, 0x11, 0x52, 0xe7,
0x16, 0x44, 0xba, 0x57, 0x60, 0xf8, 0x40, 0x2f, 0xe3, 0x7a, 0xc4, 0xda, 0x65,
0x77, 0x00, 0xde, 0x00, 0x2e, 0x2d, 0x62, 0x3a, 0x0f, 0x04, 0x0a, 0x2f, 0x95,
0x79, 0x9f, 0x68, 0x4f, 0xae, 0x10, 0x3a, 0x78, 0x16, 0xb1, 0xe0, 0xc7, 0x75,
0xff, 0xe6, 0xec, 0x4f, 0x44, 0xd0, 0xf8, 0xca, 0xf5, 0x59, 0x54, 0x5a, 0x28,
0x5d, 0xc6, 0xd5, 0x6d, 0xc9, 0x7a, 0x75, 0x3e, 0xd4, 0x30, 0x7b, 0xeb, 0xb5,
0xc0, 0xcf, 0x54, 0x6a, 0x08, 0x92, 0xf3, 0xa3, 0x45, 0x61, 0xf1, 0xea, 0x98,
0x19, 0xb1, 0x47, 0x73, 0x5a, 0x97, 0x9a, 0xce, 0x3f, 0x75, 0x52, 0x2c, 0x22,
0x0c, 0x26, 0xe8, 0x20, 0x8f, 0x06, 0xad, 0x11, 0xb2, 0x0b, 0x69, 0xcc, 0xa0,
0x1b, 0x07, 0x99, 0x86, 0x6a, 0x83, 0x54, 0xb1, 0x43, 0xc9, 0x87, 0x94, 0x7a,
0x29, 0x19, 0x79, 0x1c, 0xd7, 0xac, 0xa2, 0x4a, 0x48, 0x9d, 0x02, 0x19, 0x9c,
0xf8, 0x13, 0x39, 0x1b, 0x7e, 0x77, 0x0c, 0x5e, 0x31, 0xd5, 0x58, 0xd0, 0xd2,
0x75, 0x61, 0xa3, 0xc7, 0x22, 0x94, 0x8b, 0x38, 0x14, 0xa1, 0x08, 0x5f, 0x01,
0x8e, 0xd2, 0xa4, 0x00, 0x42, 0xe3, 0x4e, 0x3a, 0xfc, 0xc5, 0xf2, 0x6f, 0x59,
0x99, 0x93, 0xde, 0x88, 0x60, 0x31, 0x02, 0x43, 0x8c, 0xfa, 0x2c, 0x5c, 0xe0,
0x3d, 0xf3, 0xeb, 0xd9, 0xf0, 0x63, 0xad, 0x6a, 0x22, 0x49, 0xe7, 0x79, 0xc3,
0x36, 0x25, 0xd1, 0x90, 0x44, 0xf7, 0x20, 0x79, 0x07, 0xf3, 0xd2, 0x3a, 0x66,
0x24, 0xeb, 0xf7, 0xda, 0x44, 0xfa, 0xe1, 0x49, 0xa0, 0x8b, 0xc7, 0xc3, 0x07,
0xf3, 0x98, 0xff, 0x5e, 0x8d, 0x98, 0xb6, 0xde, 0x59, 0x44, 0x7a, 0x2b, 0xde,
0xba, 0x46, 0x29, 0x78, 0x98, 0x5b, 0x16, 0xc3, 0x89, 0x6e, 0x1c, 0x35, 0xe3,
0x68, 0x5f, 0xc0, 0xd4, 0xb3, 0xb1, 0x9d, 0x07, 0xb3, 0x98, 0xd0, 0xd3, 0x79,
0x61, 0x59, 0xae, 0x72, 0x15, 0x6a, 0x96, 0x1d, 0x4e, 0xe2, 0xc6, 0x47, 0x25,
0x82, 0x62, 0x7a, 0x33, 0xf0, 0x67, 0x84, 0x7b, 0xae, 0xf9, 0x31, 0xbf, 0xa9,
0x85, 0x6e, 0x3d, 0x19, 0x7f, 0x56, 0xb7, 0x6d, 0xb5, 0x6b, 0x46, 0x89, 0xcb,
0x42, 0x11, 0xdd, 0x07, 0xad, 0xef, 0x89, 0x35, 0x8c, 0xd1, 0x28, 0x4e, 0x46,
0xf3, 0xf5, 0x78, 0x27, 0xd2, 0x1b, 0xa1, 0xbc, 0xd7, 0x42, 0x7e, 0x91, 0xf5,
0x78, 0x02, 0xe8, 0xda, 0xa8, 0x76, 0x57, 0x9a, 0xa8, 0xb0, 0xe9, 0xbb, 0xd7,
0x23, 0xdb, 0x1a, 0xbc, 0x64, 0xa7, 0xe9, 0x8d, 0x4d, 0x16, 0x73, 0x56, 0xf4,
0xff, 0x40, 0xfd, 0xfb, 0x35, 0xb9, 0x9c, 0x42, 0x17, 0xa0, 0x1a, 0x5e, 0x5f,
0x63, 0x2c, 0x62, 0x89, 0xb6, 0x75, 0xc5, 0x0d, 0xcb, 0x67, 0x72, 0x71, 0xd9,
0xb1, 0xd3, 0x48, 0x6e, 0x23, 0x39, 0xac, 0x18, 0xda, 0x79, 0xdd, 0x89, 0x52,
0x1f, 0xe4, 0x3e, 0x9c, 0xd3, 0x53, 0x4a, 0xbf, 0x11, 0x07, 0x7d, 0x54, 0x23,
0x56, 0x2b, 0xab, 0xa7, 0xa0, 0x9d, 0x62, 0x91, 0xd9, 0x4e, 0xc9, 0x5f, 0x28,
0x3d, 0x2c, 0x22, 0xe0, 0x3a, 0x73, 0xd3, 0xf6, 0x51, 0x72, 0x32, 0x2a, 0x90,
0x09, 0xe3, 0x9c, 0x86, 0x4b, 0xf0, 0xa0, 0x34, 0x1e, 0xa6, 0xb3, 0x61, 0x92,
0xf9, 0xa8, 0x84, 0xbf, 0x4f, 0xa1, 0xa5, 0x32, 0x2d, 0x1d, 0x48, 0x50, 0x38,
0x57, 0x70, 0xef, 0x65, 0xbc, 0xa7, 0x82, 0xab, 0x62, 0xb0, 0x51, 0xee, 0x22,
0xfb, 0x17, 0xe3, 0x16, 0x6e, 0x40, 0x38, 0x53, 0x9b, 0x80, 0x5e, 0x0c, 0x62,
0x36, 0x0f, 0x5a, 0x3c, 0x68, 0xd7, 0xc0, 0x29, 0xaa, 0xae, 0xd5, 0x0a, 0x3b,
0x0f, 0x08, 0xd5, 0x93, 0x68, 0x7c, 0xb7, 0x8b, 0x1f, 0xd9, 0x15, 0x2b, 0x66,
0xad, 0x8f, 0x11, 0xe9, 0xea, 0x3c, 0xee, 0x0b, 0xdc, 0xab, 0x79, 0x0d, 0x56,
0xb1, 0x32, 0x2e, 0x73, 0x52, 0x49, 0x9e, 0xf7, 0x46, 0x49, 0x19, 0xe0, 0xa6,
0x4c, 0x5c, 0x19, 0x4b, 0xf0, 0x3a, 0x03, 0x70, 0xe7, 0x84, 0xea, 0xcb, 0x60,
0xfc, 0xa3, 0xe5, 0x9f, 0x9f, 0xf9, 0xd5, 0xcd, 0x04, 0xd5, 0xc6, 0x48, 0xcf,
0x72, 0x4b, 0x8b, 0x8e, 0x4e, 0x7f, 0xfb, 0xb8, 0x28, 0xe4, 0xf2, 0x11, 0x52,
0x32, 0x07, 0x56, 0xa9, 0x51, 0x21, 0x44, 0x3b, 0x83, 0x94, 0x0c, 0xef, 0xfb,
0xdf, 0xcc, 0xea, 0xc9, 0x36, 0x44, 0x2d, 0x42, 0x35, 0x43, 0x35, 0x8d, 0xc9,
0x7f, 0xe3, 0xb6, 0xe4, 0x08, 0x87, 0x17, 0x41, 0x3e, 0xfa, 0xd5, 0x27, 0xe9,
0xf2, 0x77, 0xfc, 0x2c, 0x39, 0xbf, 0xe3, 0xa6, 0xb4, 0x48, 0x0b, 0x46, 0xe3,
0x94, 0xfc, 0x61, 0x56, 0x18, 0xa1, 0x62, 0x84, 0xca, 0x46, 0xe8, 0x58, 0x04,
0x32, 0xc4, 0xa3, 0xf0, 0xa8, 0x68, 0x6d, 0xaf, 0x57, 0x34, 0xac, 0x07, 0x6b,
0x58, 0xe3, 0xc7, 0xde, 0xe8, 0xa0, 0x9e, 0x32, 0x6e, 0xde, 0x8c, 0x72, 0x35,
0x94, 0x6a, 0x14, 0x1b, 0x49, 0x2a, 0xc4, 0x9a, 0x46, 0x05, 0x99, 0xf9, 0xc2,
0x53, 0xab, 0x92, 0x14, 0xbb, 0xdd, 0xa2, 0xa2, 0x0e, 0xb8, 0x29, 0xec, 0x26,
0x95, 0x9d, 0x2a, 0xec, 0x34, 0x1a, 0x23, 0xe9, 0xfb, 0x71, 0xe6, 0xc6, 0x95,
0x7e, 0xa8, 0xfd, 0x38, 0xb5, 0x88, 0x04, 0x33, 0xfc, 0x95, 0x30, 0x25, 0x34,
0x9c, 0xd5, 0x83, 0x4e, 0x15, 0xb9, 0xf9, 0xfc, 0x64, 0x25, 0x06, 0xeb, 0x73,
0x09, 0x36, 0xd0, 0x11, 0x39, 0x19, 0x9f, 0xf1, 0xe6, 0xb6, 0x77, 0x75, 0xfa,
0xc8, 0xed, 0xa3, 0x46, 0x1d, 0x99, 0x59, 0x82, 0x75, 0x6c, 0x1e, 0xbd, 0x3b,
0x8b, 0x78, 0x3a, 0x67, 0xd2, 0x51, 0x03, 0x9f, 0x71, 0xb9, 0x9c, 0xd4, 0x21,
0x4a, 0x73, 0x75, 0x0d, 0x3d, 0x5f, 0x3f, 0xca, 0x24, 0xe4, 0x0a, 0xa3, 0x23,
0xcc, 0x17, 0xea, 0xc9, 0x28, 0x54, 0x0b, 0x65, 0x61, 0x2a, 0xd9, 0xd8, 0x98,
0xe0, 0x32, 0x52, 0x07, 0x1b, 0x74, 0x71, 0x98, 0xa4, 0x61, 0xb2, 0xc5, 0xa1,
0xf8, 0xab, 0x0e, 0x1f, 0xb9, 0x02, 0x38, 0xf6, 0x54, 0x9a, 0xdd, 0xd3, 0x9f,
0x86, 0xf1, 0x85, 0x26, 0x3e, 0xa2, 0x4f, 0x18, 0x71, 0x9e, 0xf1, 0xb5, 0x91,
0x14, 0x8e, 0x8b, 0x01, 0xfe, 0xd8, 0x24, 0x3a, 0xdf, 0x2d, 0x7c, 0xf0, 0xec,
0x6d, 0x37, 0x95, 0x4f, 0xc3, 0xf7, 0x79, 0xd3, 0x27, 0xe6, 0x15, 0xd4, 0x33,
0xde, 0x5e, 0xc4, 0xa5, 0xb5, 0x08, 0x78, 0xd1, 0xe7, 0x85, 0xcf, 0x44, 0x25,
0xe5, 0x5c, 0xe0, 0x8b, 0x1b, 0x6f, 0x27, 0xc3, 0x54, 0x3d, 0x07, 0xcd, 0x73,
0x67, 0x7f, 0x1e, 0xdb, 0xe0, 0x87, 0x3a, 0x0d, 0xc9, 0xbf, 0xba, 0xfc, 0xbb,
0x0d, 0x02, 0xe5, 0x6f, 0x74, 0xc2, 0xec, 0xc4, 0x11, 0x33, 0x9d, 0xfe, 0x68,
0x59, 0x80, 0x26, 0xd5, 0x2a, 0x2a, 0x56, 0xf1, 0x60, 0x19, 0x45, 0xdf, 0xb5,
0xbc, 0x67, 0x66, 0x7d, 0x0e, 0x1b, 0xe9, 0xa8, 0x91, 0x7a, 0xbd, 0xf0, 0xf3,
0xba, 0xab, 0xd6, 0xd0, 0xec, 0x4b, 0x1d, 0x22, 0x5e, 0xac, 0x84, 0xa1, 0x78,
0x47, 0xff, 0xa3, 0xc2, 0xcb, 0x82, 0xf6, 0xe7, 0xfc, 0xb8, 0xea, 0xc7, 0x15,
0x3f, 0x66, 0x79, 0xe7, 0x9f, 0x5a, 0xc4, 0xc5, 0x4d, 0x54, 0x19, 0x0e, 0xe2,
0x68, 0x10, 0x23, 0x7a, 0x1c, 0xd7, 0xa3, 0x32, 0x84, 0xec, 0x5b, 0x99, 0x9f,
0x55, 0x08, 0x56, 0xa8, 0x98, 0xc6, 0xdd, 0xef, 0xfc, 0x9f, 0x07, 0x10, 0xfa,
0x74, 0xe2, 0x8d, 0x0a, 0x0b, 0x55, 0xda, 0xa1, 0x66, 0xf6, 0xbf, 0xa2, 0xa6,
0x73, 0xef, 0xc5, 0x79, 0x97, 0xb1, 0xac, 0xe3, 0xe6, 0xb7, 0xbb, 0xdc, 0x38,
0x12, 0xc1, 0xe0, 0xaf, 0x23, 0xbf, 0x3e, 0x1c, 0x41, 0x7b, 0x00, 0xce, 0xcd,
0x15, 0xae, 0x62, 0x15, 0xa4, 0x2c, 0xfb, 0x68, 0x1d, 0x27, 0xf3, 0x71, 0xee,
0xb9, 0x9b, 0xc2, 0x1c, 0xeb, 0x67, 0x60, 0x9c, 0xc1, 0x44, 0x12, 0xfd, 0xaf,
0xeb, 0x85, 0x4c, 0xb1, 0x35, 0x48, 0x97, 0xff, 0x22, 0xb6, 0xe3, 0xae, 0x60,
0x5e, 0xdd, 0x26, 0xf2, 0x32, 0x2a, 0x56, 0x3a, 0x42, 0xf2, 0x11, 0xf2, 0x79,
0xd1, 0xb3, 0xb1, 0xbb, 0x6b, 0x2c, 0x86, 0xd3, 0x4c, 0x04, 0xe5, 0x26, 0x52,
0xf2, 0x1b, 0x93, 0x3c, 0x31, 0x34, 0xec, 0xab, 0xde, 0x65, 0x17, 0xc2, 0x81,
0x67, 0x0d, 0x5d, 0x6b, 0x18, 0x89, 0xd3, 0x71, 0xbe, 0x68, 0xef, 0xa6, 0x65,
0xd1, 0x6c, 0x7d, 0x33, 0xe8, 0x99, 0x81, 0xce, 0x49, 0x37, 0x76, 0x4a, 0x7d,
0xa4, 0x50, 0xa3, 0x6c, 0xdb, 0xfa, 0x63, 0xfd, 0x22, 0x8c, 0x4c, 0x08, 0x3a,
0x29, 0xd5, 0xb0, 0x81, 0x54, 0x4e, 0x62, 0xfe, 0xbd, 0x16, 0xd6, 0xdc, 0x52,
0x94, 0x6e, 0x8a, 0x64, 0xb3, 0x5a, 0x09, 0xed, 0x26, 0x6f, 0x3f, 0x31, 0x89,
0xf8, 0x24, 0x4e, 0xc4, 0xe8, 0xfe, 0x67, 0x99, 0xbf, 0x89, 0xb1, 0x8e, 0x02,
0x49, 0xb2, 0x7f, 0x6c, 0xfd, 0x06, 0xb7, 0x1c, 0x46, 0xb9, 0x85, 0x94, 0x16,
0xaa, 0x0d, 0xe2, 0xee, 0xae, 0xbe, 0x1d, 0xb3, 0x0c, 0x0b, 0x7d, 0x6a, 0xf4,
0x08, 0x9d, 0xad, 0x24, 0xf1, 0xfd, 0xba, 0x24, 0x86, 0x95, 0x74, 0x54, 0x49,
0xa3, 0x6a, 0x3a, 0x99, 0xab, 0x30, 0xcb, 0xf8, 0x35, 0xf4, 0x0a, 0x3f, 0x96,
0x9c, 0x74, 0x93, 0xb7, 0xcc, 0x0b, 0x66, 0x9a, 0x34, 0xd3, 0x8d, 0x30, 0x4e,
0xfc, 0xaa, 0x30, 0x18, 0xca, 0x51, 0x29, 0x23, 0x8d, 0xef, 0x3a, 0xbc, 0x6b,
0xde, 0x48, 0x26, 0x03, 0x8d, 0x3d, 0xe5, 0x7f, 0xfa, 0xec, 0xf7, 0x8e, 0xef,
0xd4, 0xb3, 0xd6, 0x55, 0x21, 0x54, 0xb0, 0x88, 0x3a, 0xae, 0xa7, 0xb3, 0x7a,
0x6a, 0xb7, 0xc3, 0xc9, 0x93, 0x19, 0x5d, 0x84, 0x6a, 0x58, 0x98, 0x6a, 0x56,
0xc1, 0xba, 0xb1, 0xa8, 0x74, 0x2e, 0x49, 0x29, 0x9e, 0xb8, 0xca, 0x48, 0x2f,
0x54, 0xdb, 0x86, 0xac, 0x14, 0x54, 0x71, 0xad, 0x6f, 0x75, 0xbc, 0x50, 0xe2,
0x82, 0xce, 0x8c, 0x1a, 0x36, 0xdf, 0xce, 0x18, 0xdc, 0x62, 0xd8, 0x0b, 0xb9,
0x69, 0xc0, 0x4d, 0x81, 0x10, 0xcd, 0xee, 0x4f, 0x6c, 0x2f, 0x8d, 0x55, 0x1a,
0xa1, 0x66, 0x99, 0x8d, 0x96, 0x9a, 0xdf, 0xf3, 0xbf, 0x9c, 0x74, 0xd3, 0x11,
0x23, 0x45, 0x8d, 0x54, 0x3c, 0x0c, 0xe9, 0x30, 0x6c, 0x56, 0xb4, 0x08, 0x3b,
0xda, 0xfc, 0x64, 0x65, 0x89, 0x59, 0x77, 0x16, 0xf6, 0xef, 0x56, 0xe4, 0x51,
0xce, 0xa6, 0xa4, 0x16, 0x25, 0x0d, 0x4f, 0xe2, 0xe8, 0x24, 0x0c, 0x3a, 0xaa,
0xe3, 0x9d, 0x51, 0x13, 0xa4, 0xe5, 0x3f, 0x31, 0xb3, 0x7c, 0xa2, 0xdf, 0x4d,
0x41, 0x37, 0x8d, 0xda, 0x71, 0xd2, 0x0e, 0x95, 0x95, 0x2a, 0x18, 0x51, 0x1f,
0x32, 0xd3, 0x61, 0x33, 0xc9, 0x62, 0x74, 0x5e, 0xcb, 0xb5, 0x05, 0x1e, 0x81,
0x4a, 0x19, 0xc3, 0xb4, 0x0e, 0x2e, 0xcb, 0x46, 0xdd, 0x1a, 0x80, 0x9d, 0x9d,
0xb7, 0x8d, 0x53, 0x61, 0xd1, 0x33, 0x56, 0x71, 0x51, 0xf3, 0xde, 0x32, 0xb2,
0x22, 0x1e, 0x68, 0x34, 0x54, 0xa5, 0xd9, 0x24, 0x24, 0xc7, 0x18, 0x92, 0xef,
0xd4, 0x7c, 0xed, 0xa0, 0x87, 0xeb, 0x7d, 0x2f, 0xbb, 0xa7, 0x26, 0xb7, 0x93,
0x32, 0x09, 0x2d, 0xfb, 0xa6, 0xb2, 0xa3, 0x62, 0x2b, 0x17, 0xb4, 0x0c, 0x51,
0x13, 0x6b, 0x6e, 0x3c, 0x49, 0x67, 0x99, 0xe4, 0x2c, 0xe3, 0x24, 0x7d, 0xa9,
0xe6, 0x57, 0xca, 0x10, 0x0c, 0x36, 0x6a, 0x7a, 0xeb, 0xf6, 0xfe, 0x23, 0x1f,
0xc7, 0x04, 0xa6, 0x31, 0x2c, 0xa7, 0xa3, 0xfc, 0x9a, 0x72, 0x04, 0x77, 0xde,
0xee, 0x7a, 0xab, 0x8c, 0x85, 0x42, 0x8d, 0x94, 0xce, 0xbd, 0x34, 0xbf, 0x59,
0xcb, 0xeb, 0x8c, 0xd2, 0xec, 0xdb, 0x47, 0xf3, 0x8c, 0x4b, 0x11, 0x42, 0x99,
0xb0, 0x86, 0x62, 0x4a, 0xa1, 0x21, 0x9f, 0x0c, 0x14, 0x68, 0x0c, 0xb8, 0xe4,
0x60, 0x06, 0xc4, 0x18, 0xe6, 0x28, 0x65, 0x15, 0x9c, 0x9b, 0xf1, 0xbe, 0xf2,
0x04, 0xad, 0x05, 0xb8, 0x8c, 0x8f, 0x93, 0xbe, 0x20, 0x15, 0x02, 0xdf, 0x85,
0x45, 0x4c, 0x8a, 0xce, 0xda, 0xec, 0x87, 0xd5, 0x8f, 0x31, 0x37, 0xdd, 0x7c,
0xfd, 0xb2, 0x94, 0x2a, 0x35, 0x18, 0x75, 0x71, 0x93, 0xc1, 0x27, 0x11, 0xaf,
0x19, 0x3f, 0x2e, 0x6f, 0x44, 0xfa, 0x73, 0x56, 0xa4, 0x36, 0x42, 0xcf, 0x99,
0x24, 0x25, 0x93, 0x34, 0xe2, 0xa4, 0xe3, 0xbc, 0xe9, 0x1d, 0x32, 0x53, 0x64,
0x73, 0xaf, 0xc6, 0x48, 0x8c, 0x8e, 0xf3, 0x6b, 0xe1, 0xae, 0x61, 0xd8, 0x5f,
0x92, 0xb3, 0x94, 0x76, 0x38, 0x4e, 0x47, 0xc5, 0x55, 0xcf, 0x85, 0x30, 0xae,
0x87, 0x51, 0xaa, 0x86, 0x5c, 0x8d, 0x05, 0xe6, 0x2e, 0x6f, 0x49, 0x45, 0xee,
0x3b, 0x8d, 0xd0, 0xfe, 0x88, 0x30, 0xf1, 0x23, 0x72, 0x8a, 0xca, 0xa9, 0x75,
0x10, 0x13, 0x6a, 0x2e, 0xba, 0x63, 0x20, 0x46, 0xe5, 0xab, 0x50, 0xae, 0xc2,
0xa2, 0xa5, 0x7b, 0x30, 0x1a, 0xb6, 0x0d, 0xd4, 0x17, 0x22, 0xfb, 0x1b, 0x6a,
0x5e, 0x49, 0xd5, 0x66, 0xd2, 0x9a, 0xa9, 0x37, 0x44, 0xfe, 0x10, 0xf5, 0xc7,
0x28, 0x28, 0xac, 0xc4, 0xb7, 0xab, 0xc9, 0xc9, 0x5c, 0x45, 0x13, 0x46, 0x55,
0x18, 0xd7, 0xc2, 0x30, 0x14, 0x71, 0xd2, 0x41, 0x3a, 0xa2, 0xa4, 0xa8, 0x40,
0x80, 0x4f, 0xb9, 0x69, 0x7d, 0x47, 0x22, 0xc7, 0x39, 0x2f, 0xc4, 0x70, 0xa1,
0x88, 0x1b, 0x10, 0xd9, 0xaa, 0x4e, 0x46, 0x35, 0xbc, 0xad, 0x57, 0x4a, 0x49,
0x9d, 0xab, 0xdb, 0x86, 0x3c, 0x74, 0xe1, 0xd9, 0xae, 0xcf, 0xe7, 0xc5, 0x6a,
0x63, 0x02, 0x35, 0xf9, 0x3d, 0xc9, 0x63, 0xcb, 0x48, 0x7f, 0x30, 0xc9, 0x53,
0x97, 0x90, 0x0b, 0x03, 0xae, 0xc7, 0x91, 0x1d, 0x8f, 0x89, 0xba, 0x4c, 0xf9,
0x81, 0x3b, 0x16, 0xd0, 0xb6, 0x6d, 0x69, 0x64, 0x6e, 0x16, 0x57, 0x67, 0x61,
0x72, 0xa2, 0x61, 0x4b, 0x29, 0x63, 0x65, 0x1e, 0xb7, 0x37, 0x8a, 0xa1, 0x01,
0x13, 0x34, 0x3f, 0x6c, 0xfa, 0x6e, 0x9b, 0x1d, 0x26, 0xc6, 0xcc, 0x13, 0xd4,
0x6e, 0xa4, 0x9b, 0xff, 0x35, 0xc8, 0x77, 0x35, 0x61, 0xa5, 0xf3, 0x56, 0xaa,
0x0c, 0x52, 0xd1, 0x8f, 0x0a, 0x55, 0x7f, 0x5e, 0x27, 0x48, 0x67, 0x30, 0x82,
0x83, 0x7c, 0x65, 0x2b, 0x88, 0xa6, 0x20, 0xaa, 0xe7, 0xa1, 0x7d, 0xb9, 0xf7,
0x4d, 0xbf, 0x58, 0x46, 0x5e, 0x0f, 0x53, 0xd1, 0x20, 0xb5, 0x1a, 0xd0, 0xbb,
0x37, 0xf4, 0x6e, 0xdd, 0xcc, 0x97, 0x2c, 0x2e, 0x15, 0x4f, 0x40, 0x2a, 0x56,
0xe5, 0x2e, 0xf9, 0xe1, 0xfb, 0xbe, 0x7e, 0xa3, 0xf2, 0x7f, 0x49, 0x8d, 0x69,
0x35, 0x9a, 0x95, 0x64, 0xcd, 0x55, 0x96, 0x6b, 0x67, 0xa0, 0x17, 0x5b, 0xaa,
0xb5, 0x91, 0xde, 0x96, 0x3b, 0x68, 0x83, 0x5e, 0x24, 0x84, 0xc5, 0x23, 0x24,
0x1d, 0x21, 0x97, 0x9e, 0x3a, 0xf2, 0xb4, 0xaa, 0x71, 0x88, 0x12, 0x4d, 0xdc,
0x95, 0x3d, 0x5e, 0x3e, 0xfe, 0x46, 0xe9, 0x78, 0xf4, 0x09, 0xb6, 0xd7, 0x3e,
0x4c, 0xce, 0x61, 0xba, 0x91, 0xa0, 0xc5, 0x87, 0xb7, 0x2b, 0x14, 0x78, 0x06,
0xa9, 0x6b, 0x90, 0xe6, 0xc2, 0xb8, 0x1a, 0xc6, 0x52, 0x98, 0xee, 0x7f, 0xeb,
0x76, 0x3e, 0x10, 0x1d, 0xd0, 0x52, 0x38, 0xe7, 0x2e, 0xc7, 0x9c, 0x14, 0x73,
0x92, 0xc7, 0x46, 0x5d, 0xfc, 0xa0, 0x1e, 0x44, 0xb1, 0x16, 0x45, 0xb5, 0x19,
0x5a, 0xb1, 0xae, 0xe7, 0xc4, 0xa9, 0x17, 0x3b, 0x62, 0x28, 0x35, 0x91, 0xdc,
0x44, 0xb7, 0xe6, 0xb1, 0x3c, 0xff, 0x88, 0x34, 0x02, 0x2e, 0xf4, 0x31, 0x21,
0x9f, 0xd1, 0x93, 0xfd, 0x45, 0xe7, 0x5f, 0xc9, 0x59, 0xae, 0x78, 0x24, 0x88,
0x68, 0x30, 0x97, 0xf5, 0x27, 0x49, 0xcf, 0xd3, 0xf1, 0xf2, 0x49, 0x28, 0x99,
0x4d, 0xb8, 0xa2, 0xd4, 0x91, 0x9b, 0x48, 0x65, 0x0a, 0xad, 0x2f, 0xf4, 0x08,
0x02, 0x57, 0x0d, 0xd2, 0xf2, 0xd3, 0x46, 0x31, 0x90, 0x74, 0x87, 0xc8, 0x1b,
0xa2, 0x4b, 0x52, 0x9a, 0xde, 0x5c, 0x5c, 0xa9, 0x55, 0x43, 0xff, 0xd8, 0xed,
0x2c, 0xed, 0x3e, 0x72, 0xf2, 0x0c, 0xb2, 0x75, 0x94, 0xec, 0x42, 0xb1, 0xe9,
0x40, 0x04, 0x61, 0x9e, 0x92, 0xf9, 0xe6, 0x61, 0xf9, 0xf8, 0xf4, 0x06, 0xc7,
0x28, 0xd5, 0x92, 0x5c, 0x98, 0x6e, 0xb7, 0x1a, 0x5e, 0xb1, 0xa5, 0xe2, 0x04,
0x9d, 0x55, 0x70, 0xce, 0x87, 0xd7, 0x3b, 0x4c, 0x0a, 0x6a, 0xc8, 0x2f, 0xd9,
0x05, 0x8c, 0xe8, 0xcb, 0x57, 0x88, 0x3c, 0x34, 0xfe, 0xdb, 0xda, 0xc8, 0x43,
0x02, 0xbe, 0x60, 0xa7, 0xc9, 0x1c, 0xa7, 0x6e, 0x77, 0x52, 0xd9, 0x4f, 0xad,
0xc1, 0x27, 0x9b, 0xca, 0x9c, 0x1e, 0x57, 0x85, 0xbc, 0x2b, 0xc4, 0x52, 0x88,
0xf7, 0x1a, 0xc4, 0xf5, 0x03, 0x5b, 0x84, 0x5a, 0x22, 0xe4, 0x88, 0xa1, 0x4d,
0x1c, 0x47, 0xbd, 0x8b, 0x8c, 0xfc, 0x99, 0x52, 0x17, 0xc9, 0x37, 0x57, 0x18,
0xfa, 0x95, 0xb8, 0xf6, 0x5a, 0x8b, 0x8f, 0x05, 0x36, 0x1c, 0x7d, 0xa8, 0xb6,
0xd5, 0x38, 0x01, 0x73, 0x7e, 0x57, 0x82, 0x27, 0x44, 0x5d, 0x2c, 0x9a, 0x05,
0x94, 0x98, 0x1a, 0xe0, 0xea, 0x86, 0x73, 0xb7, 0xf7, 0x2a, 0xe1, 0xda, 0x3d,
0x2d, 0xf4, 0xdc, 0xc8, 0xb8, 0xc1, 0x38, 0xd3, 0x34, 0xba, 0x6c, 0x30, 0x0d,
0x51, 0xc3, 0xd0, 0xf6, 0xe9, 0xf4, 0xcf, 0x21, 0x38, 0x87, 0x6a, 0x0d, 0xaa,
0x5f, 0x33, 0xec, 0x32, 0xee, 0x19, 0xfd, 0x5e, 0xef, 0xae, 0x36, 0x9e, 0x4d,
0x1e, 0x98, 0x44, 0x38, 0xbf, 0xf8, 0xd0, 0xb9, 0x0a, 0xb7, 0x90, 0xc9, 0x55,
0x3b, 0xe9, 0xd6, 0xb3, 0x25, 0x4c, 0x20, 0x43, 0x72, 0x3a, 0xcc, 0xa3, 0xf4,
0x84, 0x91, 0xce, 0xf3, 0x57, 0xb7, 0x2f, 0x22, 0xb6, 0xef, 0xa2, 0x1f, 0xeb,
0x56, 0x14, 0x31, 0xd3, 0xee, 0x4e, 0xe3, 0x97, 0xee, 0xcc, 0x96, 0x41, 0x9f,
0x5a, 0x46, 0x62, 0x19, 0x13, 0x31, 0x9c, 0x17, 0xa7, 0xac, 0x4a, 0xa1, 0x22,
0xf5, 0xb0, 0x12, 0x1c, 0x2c, 0x12, 0x18, 0x99, 0x1a, 0x3a, 0xd7, 0xe0, 0x5e,
0xe3, 0x57, 0x51, 0xa8, 0xcd, 0x47, 0x47, 0x12, 0x88, 0x32, 0x34, 0xb1, 0xc8,
0xa8, 0x49, 0x46, 0x99, 0x24, 0xdd, 0x65, 0x76, 0x55, 0x1a, 0x85, 0x3c, 0x8a,
0x8c, 0x12, 0x77, 0x85, 0x34, 0x2a, 0x01, 0xc5, 0xdf, 0x19, 0x85, 0x69, 0xb5,
0x1a, 0xc9, 0x6e, 0x24, 0x19, 0xa3, 0x7f, 0x26, 0x1a, 0x34, 0xd3, 0x41, 0x06,
0xba, 0x95, 0x1e, 0xaa, 0xf8, 0x7e, 0xe3, 0xbe, 0x26, 0x25, 0x35, 0x2a, 0xa9,
0xb0, 0xd0, 0xc8, 0x1c, 0xb3, 0xd8, 0x44, 0x52, 0xd3, 0x43, 0x4a, 0xbd, 0xa5,
0x45, 0x6b, 0x17, 0x57, 0xf3, 0xdf, 0x4a, 0x72, 0x29, 0x97, 0x63, 0x09, 0x6d,
0x4b, 0x58, 0xd1, 0xd3, 0x6d, 0x3d, 0xb5, 0x9a, 0xc9, 0xfe, 0xf0, 0x56, 0xbb,
0xce, 0x10, 0xb9, 0x43, 0x0f, 0x7b, 0x9e, 0x2b, 0x83, 0x0e, 0x36, 0xeb, 0x52,
0x05, 0x2d, 0xbf, 0x5c, 0x23, 0xba, 0x7d, 0xa3, 0x96, 0xcc, 0x5a, 0xea, 0x8f,
0xa0, 0x61, 0x67, 0xa6, 0x8c, 0xd3, 0x6f, 0x15, 0xbe, 0x49, 0x4b, 0x0d, 0x5a,
0x32, 0xad, 0xa3, 0x41, 0x58, 0xea, 0xf0, 0xc9, 0xa8, 0x47, 0x46, 0xe7, 0x8c,
0x48, 0x31, 0xeb, 0x93, 0x4d, 0xa3, 0x64, 0x1a, 0x05, 0x81, 0x39, 0x34, 0xfc,
0x1f, 0xc5, 0x87, 0xb8, 0xfb, 0x26, 0xce, 0x9a, 0x8f, 0xd5, 0x9e, 0x18, 0x75,
0xc5, 0xe8, 0xc8, 0x24, 0xa2, 0x4c, 0x3d, 0xa3, 0xd3, 0x38, 0xc9, 0xae, 0x7b,
0x60, 0xc5, 0x9a, 0x15, 0x81, 0x30, 0xf5, 0xf1, 0xc6, 0x1f, 0x32, 0xd0, 0x00,
0x0f, 0x76, 0xb2, 0x51, 0x2a, 0x61, 0xfe, 0xe1, 0x0a, 0x51, 0xf4, 0xad, 0x59,
0x7e, 0xde, 0xcb, 0x70, 0xfc, 0x6f, 0x45, 0xdf, 0x77, 0x4e, 0xa1, 0x7a, 0x1c,
0x65, 0x7f, 0x3a, 0xf1, 0xcd, 0xba, 0xfd, 0x71, 0x3e, 0x30, 0x2f, 0xb1, 0x70,
0xc7, 0xbb, 0xe1, 0x9c, 0x91, 0xae, 0x1a, 0xd9, 0x08, 0xa8, 0xf2, 0xb9, 0xb3,
0xcf, 0x5c, 0x96, 0x98, 0xff, 0x56, 0xcd, 0x6f, 0x07, 0x97, 0x93, 0xf5, 0x5b,
0xb7, 0x9f, 0xed, 0xb0, 0x3c, 0xa4, 0xad, 0x1b, 0x66, 0x5a, 0x64, 0x42, 0x59,
0x8d, 0xe2, 0xbe, 0x20, 0xb2, 0x55, 0x23, 0xee, 0x0b, 0x6e, 0x63, 0x50, 0x92,
0xfa, 0x1d, 0x65, 0x12, 0x32, 0x07, 0x64, 0x1f, 0x67, 0xbe, 0xe5, 0x6c, 0xe0,
0x2a, 0xdf, 0xbd, 0x3c, 0x8b, 0x29, 0x35, 0xce, 0x21, 0xa8, 0xc3, 0x91, 0x35,
0x44, 0x45, 0xea, 0xeb, 0xc1, 0xc8, 0x67, 0xa7, 0xf5, 0x54, 0x6f, 0x82, 0x31,
0x57, 0xd0, 0xae, 0xd7, 0xc2, 0xa8, 0x45, 0xb5, 0x96, 0xb4, 0x5a, 0x1a, 0x94,
0xd3, 0x41, 0xde, 0xc2, 0xea, 0xb5, 0x64, 0x14, 0x31, 0xeb, 0x88, 0x19, 0x13,
0x3b, 0x54, 0x6f, 0xb9, 0x13, 0x28, 0xf7, 0x93, 0x92, 0x11, 0xa1, 0xd2, 0x10,
0xe4, 0x2c, 0xe2, 0x1f, 0xd3, 0x23, 0xc6, 0x2c, 0xbd, 0x5d, 0x4f, 0x1f, 0xa4,
0x7f, 0x76, 0x9f, 0x85, 0xe0, 0xea, 0x19, 0x5c, 0x78, 0xaa, 0xf7, 0xeb, 0x76,
0x61, 0x47, 0xfa, 0x92, 0x9a, 0x6e, 0x8a, 0x8c, 0xd0, 0xb5, 0x8a, 0x8e, 0x55,
0xb4, 0x67, 0xe0, 0xcc, 0xa0, 0xdb, 0x45, 0x5e, 0xe6, 0x6a, 0xa3, 0x6e, 0x3a,
0x99, 0xab, 0xcb, 0x5e, 0xf0, 0x63, 0xd2, 0x0f, 0x45, 0x12, 0x65, 0x49, 0x0c,
0xad, 0xa1, 0xe3, 0xc7, 0x75, 0xf9, 0xf2, 0x97, 0x2c, 0x84, 0x12, 0xd6, 0x8d,
0x27, 0x8d, 0x8b, 0x7f, 0x73, 0x52, 0x89, 0x1b, 0x51, 0x9a, 0xfc, 0x49, 0xd5,
0x38, 0x1e, 0xa8, 0xb1, 0xa6, 0x86, 0x47, 0x89, 0xa5, 0x67, 0x9b, 0xf8, 0x45,
0x31, 0x1b, 0xd5, 0xd8, 0x9e, 0x00, 0xd6, 0xe5, 0x43, 0x88, 0xee, 0x3c, 0x1c,
0x84, 0x41, 0x41, 0x75, 0x39, 0x98, 0x99, 0x9b, 0xc4, 0x55, 0xa6, 0xbf, 0x21,
0x33, 0x0e, 0xf3, 0x8c, 0x58, 0x8b, 0x07, 0x06, 0x6e, 0xd1, 0x49, 0x83, 0x56,
0x3a, 0x68, 0x25, 0x97, 0x8a, 0x3a, 0x54, 0xe2, 0x4a, 0xda, 0x04, 0x1a, 0x98,
0xa7, 0xdb, 0x0c, 0x70, 0xec, 0xf1, 0x3f, 0xad, 0xcf, 0xed, 0xb6, 0xb7, 0xc0,
0x29, 0xaa, 0xa3, 0x79, 0x16, 0xd6, 0x59, 0x1c, 0x89, 0xd3, 0xc1, 0x8f, 0xea,
0x77, 0x34, 0x31, 0xb1, 0xae, 0xa7, 0x70, 0xff, 0x9b, 0x17, 0xbe, 0x3b, 0x3d,
0xcb, 0x4c, 0x23, 0x8b, 0x93, 0x59, 0x4c, 0xcd, 0xe2, 0x22, 0x8b, 0x9f, 0x6e,
0x34, 0xb8, 0x9f, 0x88, 0x52, 0x86, 0x45, 0xd4, 0xb1, 0x10, 0xa1, 0x58, 0x44,
0x19, 0xfb, 0xd3, 0x6b, 0x84, 0x7f, 0xcb, 0x46, 0xcd, 0x40, 0x04, 0x7d, 0x0c,
0x5b, 0x9b, 0x23, 0xd4, 0x64, 0xe2, 0x0c, 0xdf, 0xad, 0xfb, 0xbb, 0xd6, 0x4e,
0xae, 0x8d, 0xb7, 0xfc, 0x72, 0x2b, 0x29, 0x79, 0x4a, 0x72, 0x43, 0x8b, 0x45,
0x2d, 0x46, 0xd3, 0x38, 0x29, 0x86, 0xd1, 0x82, 0x80, 0x87, 0x9c, 0x7f, 0x67,
0xf9, 0x2b, 0x37, 0x2f, 0x0d, 0x4f, 0x16, 0x5d, 0x8c, 0xe8, 0xae, 0x7b, 0xa9,
0x28, 0xb7, 0xb3, 0xa9, 0x37, 0x02, 0x7f, 0x04, 0x2b, 0x8c, 0x26, 0x7f, 0x3b,
0xc8, 0xfc, 0xda, 0xa3, 0x46, 0x17, 0x83, 0xe6, 0xfe, 0x25, 0x04, 0x97, 0xd0,
0x99, 0x86, 0x3b, 0x8d, 0x0b, 0xb3, 0x98, 0x9c, 0x45, 0xa7, 0x16, 0xeb, 0xcf,
0xcf, 0x7d, 0xad, 0xea, 0x6b, 0x7f, 0x74, 0xe0, 0x63, 0xad, 0x8c, 0x54, 0x1a,
0xdc, 0xd8, 0x57, 0xaf, 0xe1, 0x6a, 0xf8, 0xb0, 0xe2, 0x8b, 0xa0, 0xb4, 0x8a,
0x2b, 0x79, 0xd9, 0xef, 0xa1, 0x03, 0x72, 0x3a, 0xb2, 0x47, 0xfb, 0xea, 0xcd,
0x3d, 0xd2, 0x29, 0x61, 0x9d, 0x91, 0x69, 0xee, 0x93, 0xa1, 0x37, 0x53, 0x49,
0x28, 0x8c, 0x28, 0x63, 0xd3, 0xb8, 0xb7, 0x86, 0xec, 0x1a, 0x7a, 0x93, 0xe4,
0x4f, 0x92, 0x66, 0x06, 0x55, 0x33, 0x90, 0x25, 0x51, 0xc2, 0x54, 0x6c, 0xa4,
0xc3, 0x46, 0xaa, 0x35, 0xd0, 0xf5, 0x6f, 0xad, 0xbd, 0xd3, 0x21, 0xa8, 0x7a,
0x4e, 0x4b, 0x2e, 0xd4, 0x88, 0x1c, 0xaa, 0x38, 0x04, 0x29, 0xd3, 0x79, 0xab,
0x8f, 0xec, 0x1b, 0xbb, 0x4e, 0x17, 0xb4, 0xb8, 0xae, 0xc5, 0x94, 0x94, 0x2e,
0xb2, 0x18, 0xf5, 0xc0, 0x4b, 0xee, 0xfd, 0x27, 0x97, 0xd1, 0x1d, 0xc1, 0xe9,
0xb7, 0x27, 0xf3, 0x61, 0xea, 0x41, 0x0a, 0x6b, 0x3c, 0xac, 0x8d, 0x3b, 0x71,
0x96, 0x5f, 0x37, 0x88, 0xc3, 0xff, 0x7a, 0x15, 0xc3, 0xc3, 0x4a, 0x66, 0x2e,
0x7f, 0x59, 0x91, 0xe3, 0x91, 0x37, 0xd4, 0xb4, 0xf8, 0xf8, 0x5d, 0x30, 0xaa,
0x71, 0x54, 0x88, 0x3b, 0x5c, 0x0e, 0x05, 0x11, 0x11, 0xc3, 0x4a, 0xb5, 0x8d,
0x8a, 0x5f, 0xaa, 0x19, 0xa2, 0x4e, 0x13, 0xb9, 0x19, 0x68, 0x35, 0xc7, 0x61,
0x8d, 0x33, 0x63, 0x57, 0x91, 0x53, 0xb0, 0x90, 0xfe, 0x11, 0xaa, 0xfb, 0xb1,
0x95, 0x9f, 0xbb, 0x6c, 0x15, 0x25, 0xab, 0x98, 0xf0, 0xe3, 0xbc, 0x40, 0x49,
0x57, 0x99, 0x25, 0x08, 0x4f, 0xaf, 0xf9, 0x49, 0x9e, 0x5f, 0x68, 0xd3, 0xe9,
0xa8, 0x46, 0x47, 0x1e, 0x2f, 0x4e, 0xfd, 0x8d, 0x94, 0x07, 0xb4, 0x09, 0x35,
0xce, 0xab, 0x51, 0x3f, 0x82, 0xec, 0xf3, 0x4d, 0x1e, 0x04, 0x74, 0xe8, 0xd3,
0xa1, 0x60, 0x55, 0x8d, 0xfb, 0x6a, 0x38, 0x86, 0xa1, 0xfa, 0xbc, 0xc7, 0xf3,
0xe4, 0x12, 0x76, 0xbd, 0x1b, 0x46, 0xc1, 0xa4, 0x46, 0xa2, 0x38, 0xce, 0x23,
0xc0, 0x35, 0x2d, 0xe6, 0xb5, 0xb9, 0x35, 0x5b, 0xea, 0x7a, 0xfd, 0xe0, 0x3b,
0x7d, 0xdf, 0xac, 0xe2, 0xd9, 0xc4, 0x19, 0x3b, 0x92, 0x1b, 0xf4, 0xdf, 0x65,
0xa3, 0x0e, 0x1b, 0x2d, 0x24, 0xe8, 0x3a, 0xa3, 0x2d, 0x13, 0xb3, 0x48, 0xbf,
0x3a, 0xbb, 0xa5, 0xa0, 0xd7, 0x6c, 0x21, 0xab, 0x85, 0xc6, 0x8d, 0x68, 0xd7,
0x70, 0xd2, 0xfc, 0x13, 0x6b, 0xa5, 0x16, 0xba, 0xfa, 0x99, 0x59, 0x40, 0x3f,
0x47, 0x06, 0xd9, 0xf7, 0xdd, 0x62, 0xc2, 0x7a, 0x2f, 0x82, 0x6c, 0xae, 0xd6,
0xd5, 0x1a, 0x83, 0x3d, 0x86, 0xca, 0x19, 0xa8, 0x1f, 0x26, 0x6d, 0xc5, 0x7a,
0x92, 0x32, 0x66, 0x55, 0x3c, 0x4a, 0x52, 0x06, 0x84, 0xa5, 0x7e, 0x34, 0xff,
0xa0, 0x4d, 0x4f, 0x27, 0xd2, 0xb8, 0xff, 0x7a, 0x82, 0x05, 0xa2, 0x09, 0x3b,
0x1d, 0x7e, 0xb5, 0x8e, 0xa1, 0xef, 0x39, 0x35, 0x52, 0x6a, 0xdc, 0x48, 0x60,
0x71, 0xe3, 0x61, 0xba, 0x55, 0x2f, 0xd5, 0xfd, 0xfc, 0x72, 0x18, 0x9a, 0x08,
0x55, 0x6d, 0x32, 0x80, 0x73, 0x31, 0xa4, 0x62, 0x38, 0xe1, 0xa6, 0xe9, 0x17,
0x3d, 0x7b, 0x1b, 0x98, 0xf9, 0x2b, 0x64, 0x54, 0xc6, 0xc8, 0xb0, 0xcf, 0x87,
0x1e, 0xbe, 0x94, 0x37, 0xe3, 0xc6, 0x65, 0x41, 0x2a, 0xeb, 0x41, 0x5c, 0x7e,
0xbe, 0xc1, 0x82, 0xf2, 0x14, 0x94, 0xbc, 0x1a, 0xe6, 0xb4, 0xb8, 0xca, 0xa4,
0x33, 0x96, 0xa4, 0xd3, 0xc9, 0x2d, 0x42, 0x3d, 0x63, 0x84, 0x6e, 0xe7, 0x3c,
0x83, 0x8f, 0x1b, 0x76, 0x5a, 0xcc, 0x91, 0x8a, 0x4e, 0x35, 0xce, 0xbc, 0x52,
0xe2, 0x43, 0x71, 0x14, 0xd2, 0x28, 0x8a, 0xa7, 0x21, 0x9d, 0x16, 0x67, 0xec,
0xa5, 0xac, 0xc0, 0xc7, 0xab, 0x7d, 0xa4, 0xf5, 0x91, 0x6d, 0x94, 0x8c, 0xed,
0x9c, 0xa6, 0x98, 0xf3, 0xed, 0x89, 0xe7, 0x14, 0x7c, 0x62, 0x1a, 0xf1, 0xe9,
0x4d, 0x11, 0xf8, 0x56, 0xd0, 0x23, 0x2c, 0xb9, 0xa9, 0x66, 0x50, 0x21, 0x88,
0xc6, 0x36, 0x88, 0xf0, 0x1b, 0x67, 0xf6, 0x0f, 0x8c, 0xb1, 0x10, 0xed, 0x21,
0xaf, 0xa0, 0xde, 0x19, 0x2d, 0x2e, 0x6b, 0x21, 0x73, 0xd1, 0xe1, 0x9f, 0x1e,
0x64, 0x26, 0xa7, 0xb0, 0xa3, 0xcc, 0x8e, 0x5a, 0x05, 0xe9, 0xb7, 0xed, 0x61,
0x72, 0x38, 0x29, 0xf8, 0xde, 0x22, 0x4f, 0x03, 0x7b, 0x75, 0x38, 0x63, 0xe2,
0x2a, 0xd8, 0xbd, 0x21, 0x39, 0x0d, 0xc8, 0x29, 0xb0, 0x84, 0x3e, 0x7e, 0xcb,
0x86, 0xc6, 0x46, 0x55, 0x36, 0x6a, 0x36, 0xc3, 0xca, 0x6b, 0x5d, 0xa7, 0xa0,
0x1a, 0xd6, 0xc0, 0x39, 0x3b, 0xa5, 0xec, 0x34, 0x66, 0x44, 0xef, 0x87, 0xfe,
0xa7, 0x43, 0x9f, 0x5c, 0xfc, 0xec, 0xd4, 0xbb, 0x52, 0x9e, 0x49, 0x34, 0x1b,
0x60, 0xe5, 0x37, 0xfa, 0xb9, 0xec, 0xf4, 0x15, 0x6b, 0x6e, 0xde, 0x8a, 0x19,
0x94, 0xe5, 0x15, 0x38, 0x17, 0xc7, 0xd5, 0xdc, 0xc2, 0xa6, 0xc1, 0x45, 0x75,
0xdb, 0xf7, 0x5d, 0xd4, 0x0e, 0x93, 0x9e, 0x27, 0x3a, 0x3e, 0x1d, 0x6e, 0xfc,
0xb5, 0x35, 0x97, 0x47, 0x77, 0xda, 0xe0, 0x16, 0x48, 0xf5, 0x25, 0x2d, 0xa6,
0x45, 0x3b, 0x94, 0x59, 0xa8, 0x24, 0xbf, 0x3c, 0x2c, 0xd3, 0xa2, 0x44, 0x38,
0xea, 0x52, 0xa3, 0x23, 0xef, 0xae, 0xd5, 0x43, 0xa4, 0xe5, 0x23, 0xf2, 0x52,
0x0c, 0xb1, 0x1d, 0xf6, 0xfc, 0x16, 0xfe, 0xa1, 0x38, 0x1d, 0x16, 0xd2, 0x31,
0x8f, 0x03, 0x5d, 0xfc, 0x1e, 0x95, 0xf2, 0x59, 0x28, 0xf9, 0xea, 0x78, 0xaf,
0x0b, 0x7e, 0x31, 0x85, 0x39, 0xa2, 0xc4, 0xa9, 0xfd, 0x63, 0xbf, 0xbc, 0x9e,
0x23, 0xb5, 0x9d, 0x11, 0xb8, 0x99, 0x2d, 0xae, 0x67, 0x51, 0xb4, 0x2a, 0x36,
0x32, 0xac, 0xc7, 0x52, 0x88, 0x09, 0x89, 0xeb, 0xb0, 0xa1, 0x5b, 0x07, 0x2f,
0xbf, 0xfe, 0xac, 0xd2, 0x50, 0x05, 0x9f, 0x8d, 0x3d, 0x08, 0x62, 0x69, 0x4f,
0xfa, 0xa9, 0xbb, 0x91, 0x87, 0x9e, 0x38, 0x71, 0x50, 0x0b, 0x8b, 0x58, 0x97,
0x94, 0x98, 0xe6, 0x59, 0x4d, 0x68, 0x0a, 0x03, 0x53, 0xf9, 0x2b, 0x6a, 0xb5,
0xa8, 0xaf, 0xe7, 0xba, 0x78, 0x31, 0x54, 0x07, 0xa1, 0x0d, 0x62, 0x7c, 0x16,
0x67, 0x67, 0x1f, 0x01, 0xf4, 0x43, 0x71, 0x8a, 0xe4, 0xb7, 0xcf, 0xd6, 0x5b,
0x60, 0xe4, 0x83, 0x84, 0x43, 0x4d, 0x7a, 0x19, 0xa7, 0x15, 0x0a, 0x16, 0xed,
0xf3, 0x70, 0x32, 0x15, 0x1e, 0x08, 0x22, 0xbc, 0x8d, 0xb3, 0x5e, 0xd1, 0x92,
0x74, 0xe7, 0x65, 0x3e, 0x65, 0xb9, 0xe1, 0xa6, 0x45, 0x16, 0x10, 0x6d, 0x46,
0x6a, 0x11, 0x4a, 0x8a, 0x3e, 0x17, 0x7a, 0x36, 0xb3, 0x36, 0xc5, 0x2c, 0xca,
0xc4, 0x5e, 0xcf, 0xcc, 0x22, 0xf9, 0x48, 0xff, 0x37, 0x94, 0x58, 0x54, 0x22,
0xe4, 0xa0, 0x81, 0x06, 0xae, 0x48, 0x85, 0x71, 0x35, 0xce, 0xaa, 0x11, 0x1a,
0xc2, 0xc0, 0x10, 0x4a, 0x67, 0x20, 0x17, 0x75, 0xdb, 0x1c, 0x24, 0x2b, 0x03,
0xc2, 0xb1, 0x59, 0x9c, 0x66, 0x0d, 0xd4, 0xa7, 0x60, 0x4c, 0xa1, 0x51, 0x46,
0x66, 0x71, 0xaf, 0xd2, 0x01, 0x33, 0xf5, 0x68, 0xb8, 0xf9, 0x1d, 0x87, 0xde,
0x9e, 0x0e, 0x23, 0xa4, 0xa5, 0x01, 0x16, 0xfa, 0x17, 0xe6, 0x71, 0x7d, 0x1e,
0xb5, 0x23, 0xd0, 0x8f, 0x6c, 0xef, 0x31, 0xb3, 0x86, 0xbb, 0xb9, 0x5d, 0xce,
0x27, 0x96, 0x11, 0x17, 0x0a, 0x13, 0x8a, 0x14, 0x52, 0x85, 0x6e, 0x01, 0x44,
0x35, 0x2a, 0x54, 0xb1, 0x69, 0x7b, 0x74, 0xe8, 0xd2, 0xe1, 0x5e, 0x0a, 0x59,
0x81, 0x70, 0x6a, 0x94, 0xa8, 0x12, 0xe9, 0xf4, 0x48, 0x1a, 0xc7, 0x59, 0xc8,
0x6a, 0x55, 0x93, 0x7d, 0x13, 0x8e, 0xfb, 0xa7, 0x10, 0x14, 0xc4, 0xde, 0x38,
0x0b, 0x73, 0x7e, 0x86, 0x95, 0x4a, 0x14, 0x56, 0xf0, 0x37, 0xad, 0xdb, 0x51,
0xc4, 0x2c, 0xc2, 0x33, 0x83, 0xae, 0x19, 0x8c, 0xce, 0xe2, 0xa4, 0x70, 0x85,
0xc1, 0x4d, 0x1f, 0x5d, 0x17, 0x68, 0x44, 0xb9, 0x9d, 0x94, 0x76, 0xaa, 0xb7,
0x92, 0xd1, 0x4a, 0x0f, 0xb2, 0x58, 0xcb, 0xa2, 0x5f, 0x4b, 0xd7, 0x5f, 0x8f,
0x6f, 0x8a, 0x4a, 0x36, 0x83, 0x12, 0x51, 0x10, 0x53, 0x61, 0x4c, 0xee, 0xb2,
0xbd, 0x6f, 0x17, 0x69, 0xb2, 0xc6, 0x85, 0xca, 0x8f, 0xcc, 0xdb, 0xf6, 0x6c,
0x57, 0xaa, 0x60, 0xf9, 0xcc, 0xbd, 0x0c, 0x0f, 0x8b, 0xa7, 0xff, 0xbe, 0xe3,
0x83, 0x94, 0x18, 0xfc, 0x2d, 0x66, 0x34, 0x6d, 0xae, 0xd0, 0x8c, 0xdb, 0xe9,
0xac, 0x7d, 0xd3, 0x39, 0x6a, 0x5d, 0xa4, 0x7f, 0x68, 0x8f, 0xd2, 0x05, 0xd6,
0x4d, 0x18, 0x8d, 0x56, 0xdc, 0x7b, 0xa5, 0x8e, 0xaf, 0x7d, 0x8c, 0x43, 0x39,
0x8e, 0xf1, 0x24, 0xce, 0x26, 0x51, 0xb0, 0x10, 0x43, 0x68, 0x7f, 0x1b, 0x1f,
0x47, 0x5a, 0x17, 0x30, 0xff, 0xe9, 0x80, 0x0a, 0x17, 0xa4, 0x14, 0x7d, 0xbb,
0x6e, 0x14, 0x13, 0x52, 0x3a, 0x2f, 0x66, 0x62, 0xb6, 0x18, 0xf4, 0xaf, 0xaf,
0x16, 0x2a, 0xf9, 0xd2, 0x86, 0xc3, 0x82, 0x36, 0x91, 0x78, 0x1c, 0x70, 0x23,
0x2c, 0x12, 0x8a, 0x72, 0x0f, 0x2d, 0xbf, 0x57, 0xb7, 0x84, 0x63, 0x29, 0xc4,
0x52, 0xa8, 0x56, 0x90, 0x56, 0x41, 0xeb, 0x46, 0x2a, 0x32, 0xd1, 0x03, 0x23,
0x35, 0xef, 0x6a, 0x12, 0x46, 0x77, 0xc5, 0x48, 0xb3, 0x46, 0x6a, 0x37, 0x90,
0x73, 0xa3, 0x44, 0xe1, 0x93, 0x52, 0x4f, 0x2e, 0xd7, 0xf3, 0x59, 0xd1, 0xc3,
0x37, 0x5f, 0xcf, 0x10, 0x8d, 0xc1, 0xb4, 0x4a, 0x4a, 0xdd, 0x2f, 0x85, 0xad,
0xff, 0xd0, 0xd6, 0x2c, 0x85, 0x87, 0xca, 0x04, 0x00, 0x2b, 0x57, 0x42, 0x29,
0x68, 0xd4, 0x30, 0x4a, 0x75, 0xec, 0x7e, 0x83, 0x96, 0xea, 0x1e, 0x5e, 0x86,
0x2b, 0x38, 0x27, 0xa5, 0x94, 0x94, 0xae, 0x45, 0x69, 0x3e, 0x4a, 0xc7, 0xa2,
0x88, 0x45, 0x37, 0x44, 0xd8, 0xbb, 0x08, 0xff, 0x22, 0xa6, 0xb4, 0xb8, 0x98,
0x23, 0x7c, 0x9a, 0x21, 0xaa, 0x1a, 0xa2, 0x4c, 0x14, 0x77, 0xf3, 0x17, 0xb5,
0x47, 0xc9, 0x99, 0x4f, 0xc4, 0x6d, 0x19, 0xb4, 0x64, 0xb6, 0xdb, 0x61, 0xc8,
0x4a, 0x6d, 0x15, 0x5c, 0x0d, 0xd3, 0xcf, 0x82, 0x93, 0xa2, 0x2a, 0xae, 0xf5,
0x1b, 0xc7, 0xa7, 0xb7, 0x2e, 0x28, 0x79, 0xd1, 0x21, 0xc4, 0x2c, 0x9b, 0x99,
0xdc, 0xaf, 0xa7, 0xde, 0x69, 0xc8, 0x47, 0x3c, 0xdf, 0x24, 0x7a, 0xf8, 0x14,
0xab, 0x7c, 0x0d, 0x35, 0xfb, 0x46, 0x3e, 0x8a, 0x6c, 0x59, 0x30, 0xee, 0x1f,
0x43, 0x61, 0xdf, 0x98, 0x78, 0xdd, 0x3d, 0x35, 0x2a, 0x3f, 0x2c, 0x13, 0x4c,
0xda, 0xc1, 0xa8, 0xfb, 0xab, 0x41, 0xf9, 0xe6, 0x75, 0x96, 0x18, 0x9a, 0x62,
0x08, 0x4c, 0xa1, 0x4f, 0x30, 0x5a, 0x53, 0x84, 0x1a, 0x1e, 0x4e, 0x57, 0x0b,
0x4a, 0x3d, 0x24, 0xf7, 0x50, 0xbb, 0x1a, 0xce, 0x5c, 0x0e, 0x3c, 0x03, 0xe9,
0x0c, 0xea, 0xd5, 0x30, 0xb2, 0xdf, 0xb5, 0x0e, 0xd2, 0x33, 0xd4, 0x69, 0xce,
0xc0, 0x9a, 0x81, 0x86, 0x25, 0xd6, 0x0d, 0xdc, 0xec, 0xc6, 0x42, 0xe1, 0x11,
0x3d, 0xa2, 0x7a, 0xe8, 0x46, 0x60, 0x7b, 0xb3, 0x2f, 0x8b, 0xd6, 0x29, 0xd8,
0xa7, 0x30, 0x34, 0x89, 0xc3, 0x7c, 0x4a, 0x1f, 0x41, 0x87, 0x08, 0x60, 0x32,
0x0f, 0x4a, 0x3c, 0xa8, 0x1c, 0xa2, 0xe8, 0xe7, 0x17, 0x7e, 0x60, 0xcf, 0xe5,
0x44, 0x4b, 0x7a, 0xba, 0x99, 0x2f, 0x69, 0x2c, 0x24, 0x70, 0x3d, 0x81, 0x2b,
0x93, 0x98, 0xe5, 0x27, 0xab, 0x51, 0x50, 0x95, 0x10, 0x59, 0x4a, 0x1d, 0xd4,
0xb9, 0xab, 0x47, 0x2c, 0x30, 0x0d, 0xe9, 0x71, 0x38, 0xd7, 0xeb, 0x29, 0x3d,
0x25, 0xf4, 0x64, 0x1a, 0xa7, 0x86, 0xdc, 0x33, 0x37, 0x37, 0xf4, 0x34, 0xb0,
0xd7, 0x2b, 0x23, 0x83, 0x09, 0x87, 0x9e, 0x4f, 0xf9, 0x71, 0x27, 0x49, 0xe9,
0x5c, 0x08, 0x9d, 0x8b, 0xd2, 0x55, 0xa6, 0x17, 0x5d, 0x8c, 0x6a, 0xf8, 0x92,
0x56, 0xa3, 0x0a, 0x9a, 0x26, 0xce, 0xed, 0xa2, 0xd5, 0x20, 0xee, 0x33, 0x80,
0x73, 0xa5, 0x71, 0xe0, 0xb9, 0xd3, 0xef, 0xd5, 0xbd, 0xbb, 0xc6, 0xda, 0xee,
0xd4, 0x61, 0xdd, 0xc5, 0xb9, 0x07, 0xa9, 0xa0, 0x55, 0x4f, 0xf6, 0x8d, 0x55,
0xac, 0x82, 0x66, 0x23, 0x59, 0x8d, 0xa4, 0x58, 0x43, 0xd9, 0x9a, 0xf0, 0x2c,
0x0a, 0xae, 0xbe, 0xee, 0xfb, 0x3c, 0xbd, 0x06, 0xd5, 0x10, 0x55, 0x0c, 0xd1,
0x35, 0x27, 0x75, 0xed, 0x34, 0xbe, 0xde, 0x94, 0x41, 0xa5, 0x8d, 0xd4, 0x9b,
0xfc, 0x7e, 0x66, 0x12, 0x97, 0xf3, 0xd9, 0xf1, 0x31, 0x3b, 0x62, 0x02, 0xc1,
0xe9, 0x1f, 0x82, 0xe6, 0xed, 0xc3, 0xdf, 0x96, 0xb3, 0x1f, 0x17, 0xb4, 0x38,
0xd2, 0xc6, 0xb5, 0x84, 0xa8, 0x37, 0x46, 0xfe, 0x18, 0x35, 0x87, 0x68, 0xed,
0x8d, 0xc8, 0x9b, 0xd3, 0x93, 0x50, 0x85, 0xa1, 0x28, 0xe7, 0xd4, 0xff, 0x59,
0xce, 0x20, 0x41, 0x61, 0xa5, 0x63, 0x2f, 0x84, 0xdf, 0xb9, 0xfb, 0x59, 0x83,
0x15, 0x32, 0x3b, 0x4a, 0xec, 0xd0, 0x68, 0xa9, 0x4a, 0x30, 0xdd, 0x76, 0x2d,
0x4c, 0x1f, 0xf6, 0xee, 0xbf, 0x6f, 0xa4, 0x7a, 0x27, 0xce, 0x7d, 0x7c, 0x3b,
0x07, 0x0c, 0x67, 0x92, 0x48, 0x6e, 0x3e, 0x4a, 0x7d, 0xcf, 0x88, 0xac, 0x11,
0xa5, 0xe3, 0x90, 0x8f, 0x63, 0xc5, 0x4f, 0x75, 0x2d, 0x5c, 0xf3, 0xb7, 0x63,
0x7b, 0x7a, 0xc6, 0x50, 0x2e, 0xa5, 0x93, 0xbf, 0x75, 0xea, 0xcd, 0x0a, 0x1b,
0x65, 0x52, 0xb8, 0x9b, 0x82, 0x6c, 0x12, 0x26, 0xae, 0x89, 0x59, 0xc8, 0xb8,
0x1f, 0x1d, 0x2f, 0x2b, 0x2a, 0xb8, 0x1e, 0x21, 0x2c, 0xce, 0x39, 0xe9, 0xaa,
0x73, 0xbb, 0xb5, 0xdc, 0x08, 0xd3, 0x22, 0x9f, 0x42, 0x5a, 0x42, 0x74, 0xf5,
0xb9, 0x3e, 0xde, 0x07, 0x6f, 0xad, 0x61, 0x79, 0x0d, 0xfd, 0x0e, 0x0a, 0x3a,
0xa8, 0x31, 0x06, 0xf3, 0xb6, 0xd2, 0x89, 0xc1, 0x4a, 0x75, 0xfc, 0x45, 0x67,
0xd4, 0x48, 0xaa, 0x31, 0xaa, 0xa7, 0xa5, 0x7d, 0x07, 0xe3, 0x74, 0xc6, 0x8f,
0xa4, 0x1f, 0x8d, 0x21, 0x32, 0x87, 0xe8, 0x40, 0x9c, 0xc2, 0x71, 0x92, 0x69,
0xa9, 0xe4, 0xd3, 0x22, 0x1f, 0x26, 0xc2, 0x38, 0x2f, 0x5a, 0xbf, 0x42, 0x83,
0x32, 0x0d, 0x1a, 0x33, 0x30, 0x33, 0x67, 0xf2, 0xcd, 0xa1, 0x87, 0x7f, 0x2a,
0x69, 0x38, 0x8d, 0xa3, 0x7c, 0x12, 0x71, 0x48, 0x4a, 0x11, 0x29, 0x2d, 0xad,
0xe1, 0x66, 0x6e, 0xde, 0x16, 0x3f, 0x9a, 0x78, 0x56, 0x1b, 0x8a, 0xd3, 0x80,
0x10, 0xe0, 0xda, 0xed, 0xe4, 0x14, 0x90, 0xe5, 0xde, 0x34, 0xb2, 0xbc, 0xb3,
0x55, 0x0f, 0x93, 0x76, 0x98, 0x1e, 0x78, 0xb1, 0xe6, 0x45, 0x71, 0x8c, 0xa4,
0xbc, 0x3d, 0x9c, 0xd3, 0x22, 0xa5, 0x45, 0xa5, 0x19, 0xf7, 0x76, 0x94, 0x31,
0x7c, 0x59, 0x9f, 0x44, 0x51, 0x3e, 0xa2, 0x6a, 0xa6, 0x50, 0xb5, 0x11, 0x5d,
0xab, 0x47, 0x90, 0xf9, 0x86, 0x92, 0x85, 0xe6, 0xda, 0x51, 0xd2, 0x6f, 0xdb,
0xbd, 0xa4, 0x09, 0xa2, 0x8a, 0x8f, 0x94, 0x95, 0x53, 0x50, 0xb3, 0xcb, 0xab,
0x93, 0xa4, 0x4d, 0x52, 0xef, 0x12, 0x2e, 0xef, 0x4f, 0xf0, 0xe8, 0xd7, 0x2d,
0x25, 0x2f, 0x8f, 0x61, 0x1e, 0x19, 0x75, 0xc9, 0xc8, 0xc3, 0x10, 0xed, 0xa9,
0xfb, 0x59, 0xdc, 0x49, 0x21, 0xcd, 0x42, 0xcd, 0x9c, 0x9a, 0x6e, 0xbf, 0x7d,
0x9b, 0x8f, 0x39, 0x81, 0x21, 0xdc, 0xdb, 0x53, 0x5a, 0xc4, 0x55, 0xfc, 0xe7,
0x0e, 0x3e, 0x46, 0x29, 0x82, 0x94, 0xf8, 0x7b, 0xff, 0x10, 0x1c, 0x11, 0xb4,
0x6d, 0xe3, 0x00, 0xb5, 0x83, 0xa4, 0x17, 0x96, 0xad, 0x03, 0x23, 0xd4, 0x37,
0x42, 0x05, 0xdd, 0x93, 0xf0, 0x4e, 0xc2, 0x37, 0x84, 0x9e, 0x21, 0x5c, 0xf1,
0x52, 0xe4, 0x85, 0x16, 0xc1, 0x6c, 0xcb, 0x6d, 0xa4, 0xb4, 0xd1, 0x18, 0x13,
0xc9, 0xee, 0x85, 0x9f, 0x34, 0x09, 0xa0, 0x51, 0x6b, 0x82, 0x9e, 0xe5, 0xd0,
0x67, 0x9c, 0x94, 0xb6, 0x70, 0x17, 0x79, 0x30, 0x0c, 0x68, 0xa9, 0x4f, 0x7c,
0x09, 0x46, 0x10, 0x67, 0x9e, 0xd1, 0x0a, 0x5b, 0xe1, 0x8a, 0xb5, 0x38, 0xd1,
0xc4, 0x9d, 0xf4, 0x92, 0x29, 0x44, 0x0d, 0x21, 0x32, 0x8d, 0x51, 0x83, 0xb0,
0x93, 0xa6, 0x3e, 0x44, 0xc6, 0x9c, 0xdf, 0xd6, 0x8f, 0x51, 0x53, 0x1d, 0x97,
0x65, 0x73, 0x0e, 0xb9, 0xd1, 0xb6, 0xb7, 0x86, 0x35, 0x9a, 0xc9, 0x82, 0xcb,
0x66, 0xa1, 0x49, 0xa0, 0x6a, 0xeb, 0x9b, 0x26, 0x3a, 0x65, 0xe4, 0xce, 0xef,
0x2f, 0xbe, 0x96, 0xa0, 0x79, 0xb1, 0x0c, 0xa9, 0x9a, 0x43, 0x85, 0xf8, 0x7c,
0xd9, 0x21, 0x33, 0xea, 0x76, 0x5c, 0x09, 0x72, 0x55, 0x2c, 0xef, 0x1a, 0x41,
0x15, 0x0b, 0xdd, 0x95, 0x3e, 0x1a, 0xf8, 0x55, 0x82, 0xa9, 0x71, 0xc4, 0x4d,
0x67, 0x3f, 0x4b, 0x3e, 0x6d, 0xe6, 0x35, 0x5a, 0x3f, 0x4e, 0x46, 0xe6, 0xe8,
0x0a, 0x0d, 0x95, 0x69, 0xa8, 0x32, 0x08, 0xb5, 0x48, 0x4c, 0x34, 0xa3, 0xa8,
0x12, 0xc6, 0x7c, 0x6d, 0x1e, 0xf3, 0xf3, 0x78, 0x60, 0x47, 0xf0, 0x85, 0xc3,
0xfc, 0xe6, 0x14, 0x37, 0xcb, 0x86, 0x82, 0xcc, 0xc4, 0xac, 0x48, 0xe6, 0x8a,
0xed, 0x3e, 0x2b, 0xf5, 0x6c, 0x0f, 0x16, 0x19, 0x2f, 0xdd, 0xf5, 0x52, 0xb7,
0x85, 0xbc, 0x16, 0x5a, 0xb5, 0xe3, 0xbe, 0x98, 0x7d, 0x54, 0x2b, 0x49, 0xab,
0xa4, 0x07, 0x31, 0xea, 0xfb, 0x41, 0x74, 0x5b, 0x39, 0x73, 0x6e, 0x1e, 0x57,
0xb7, 0x1e, 0xb8, 0x93, 0x45, 0x5a, 0x24, 0x95, 0x8d, 0x53, 0x28, 0x7a, 0x4b,
0xb5, 0x23, 0xf3, 0x43, 0xab, 0x9e, 0x14, 0x36, 0x2a, 0xb3, 0x91, 0x29, 0x83,
0x86, 0xcc, 0x63, 0x6b, 0x92, 0x36, 0x72, 0xe6, 0xe0, 0x41, 0x61, 0xa7, 0xb2,
0xcd, 0x98, 0x3c, 0xb8, 0x88, 0x83, 0x8b, 0x38, 0x95, 0xa4, 0x04, 0x0f, 0x5a,
0x9d, 0x63, 0x70, 0xf3, 0xb0, 0x5e, 0xcc, 0x18, 0xd7, 0x96, 0x18, 0x75, 0xcf,
0x8e, 0x2c, 0xff, 0x98, 0xfb, 0x10, 0xca, 0x84, 0xc7, 0x99, 0x65, 0x6e, 0x2a,
0x61, 0x84, 0xe2, 0xc6, 0x1a, 0x16, 0x79, 0x0f, 0x50, 0x4d, 0xa1, 0x62, 0x0a,
0xdd, 0x43, 0xf0, 0x8a, 0x0f, 0x3b, 0xf7, 0x8e, 0x90, 0x9f, 0xd9, 0x47, 0xad,
0x9b, 0x52, 0xbf, 0xfb, 0xf7, 0x85, 0x87, 0x73, 0xe5, 0x91, 0x28, 0xa2, 0x51,
0xcc, 0x25, 0xa8, 0xe6, 0x30, 0x77, 0x3a, 0xc7, 0x70, 0x1d, 0x51, 0x6a, 0x8b,
0xd2, 0x6a, 0x8c, 0xee, 0x33, 0x7f, 0x18, 0xd7, 0xe2, 0xac, 0xf6, 0xc9, 0xa5,
0x4a, 0x87, 0x09, 0x6d, 0x5b, 0xb7, 0x5b, 0x9e, 0x71, 0x22, 0x29, 0xd4, 0xdc,
0x5d, 0x26, 0xea, 0x60, 0x99, 0xe7, 0x50, 0x0a, 0x96, 0x77, 0x2f, 0x6b, 0x79,
0x86, 0x4a, 0xd3, 0x4a, 0xca, 0x4c, 0xe3, 0xee, 0x34, 0xae, 0xc4, 0x31, 0x9b,
0xdf, 0x80, 0xd8, 0x6a, 0x84, 0x9d, 0x2f, 0x1c, 0x5c, 0x49, 0xd0, 0xac, 0x60,
0x0d, 0xa5, 0x6b, 0x70, 0xfc, 0x6b, 0xb7, 0x87, 0xc6, 0x63, 0x18, 0xfe, 0xa8,
0xc9, 0x4c, 0xa3, 0x7e, 0x9c, 0xf4, 0xa3, 0x32, 0x49, 0x8b, 0xef, 0x35, 0x31,
0x4b, 0x3e, 0x63, 0xa7, 0x64, 0x4e, 0x4e, 0x33, 0x46, 0xba, 0xcc, 0x1b, 0x72,
0xb3, 0x99, 0xac, 0x66, 0x5a, 0xf5, 0xe3, 0x3e, 0x6f, 0x1b, 0xe3, 0x52, 0x3a,
0xcb, 0xbb, 0x57, 0xa3, 0x9e, 0xcc, 0x7a, 0x6a, 0x4f, 0xe3, 0xdc, 0x53, 0x25,
0x4c, 0x1c, 0x95, 0x66, 0x52, 0xf3, 0xd9, 0xab, 0xc5, 0x86, 0x5b, 0x3f, 0xd3,
0x1a, 0x68, 0x34, 0x49, 0x27, 0x93, 0x8f, 0xb2, 0x85, 0x13, 0x7e, 0xc4, 0xfd,
0x50, 0x99, 0xa9, 0x62, 0xa3, 0x76, 0x37, 0xa8, 0xc7, 0xc1, 0xed, 0xcf, 0x7e,
0x58, 0x22, 0x64, 0x7f, 0x35, 0x6b, 0xa4, 0x73, 0x61, 0xa4, 0xc2, 0x98, 0x58,
0xc4, 0x79, 0xbe, 0x56, 0xae, 0xf1, 0xa1, 0x6a, 0xdb, 0xc6, 0x8c, 0x03, 0x7a,
0x84, 0xb7, 0xdf, 0xd8, 0x1a, 0x81, 0x5d, 0x74, 0xde, 0xfa, 0x0c, 0x8c, 0x19,
0xc8, 0x3c, 0x54, 0xc2, 0xd8, 0xc8, 0x25, 0x23, 0x4d, 0x0b, 0x1e, 0xd9, 0xef,
0x46, 0x70, 0x7b, 0xc5, 0xc5, 0xe5, 0xa1, 0x0e, 0x81, 0xaf, 0xdc, 0x63, 0xe9,
0xf1, 0xe7, 0xb1, 0xad, 0x0c, 0x61, 0xc4, 0x8f, 0xe3, 0xe2, 0x3a, 0x52, 0xbb,
0x89, 0x9c, 0xdb, 0x4a, 0x93, 0xc5, 0x16, 0x92, 0xe6, 0x72, 0x18, 0x9b, 0x86,
0x5a, 0x72, 0x4b, 0x6e, 0x8e, 0x34, 0x2e, 0xbc, 0x29, 0x67, 0xc2, 0x53, 0x25,
0xa9, 0x82, 0xcd, 0xfd, 0x98, 0x9b, 0x62, 0xf9, 0xfd, 0x85, 0xa3, 0x6e, 0x2c,
0x34, 0x71, 0x03, 0x0c, 0xc7, 0xca, 0x87, 0x48, 0x39, 0xf4, 0x04, 0x1a, 0x55,
0xe9, 0x82, 0x9a, 0x27, 0xf6, 0x19, 0x23, 0xf5, 0xbe, 0xec, 0x16, 0x4b, 0xe6,
0x2b, 0xcb, 0x98, 0x7d, 0x49, 0x9d, 0x80, 0x29, 0x80, 0x06, 0x3e, 0xdf, 0x56,
0x0c, 0x51, 0x19, 0x7f, 0xbf, 0xcd, 0x47, 0x57, 0x3f, 0xbe, 0xf6, 0x99, 0x9d,
0xa7, 0x40, 0xb5, 0xeb, 0x68, 0x7e, 0xaa, 0x4f, 0xfe, 0x50, 0xab, 0x1a, 0x25,
0x55, 0x3d, 0x66, 0x2f, 0x7d, 0x7d, 0x00, 0x65, 0x14, 0xdb, 0x75, 0x54, 0x70,
0xc0, 0x62, 0x2b, 0x49, 0x45, 0x3f, 0x1d, 0x34, 0xe3, 0xa0, 0x19, 0xf5, 0x56,
0x18, 0x1f, 0xd9, 0xaa, 0xe1, 0x1a, 0xa4, 0x8e, 0x8d, 0x9d, 0x3b, 0x05, 0xc7,
0x66, 0x11, 0xdb, 0x9e, 0x65, 0x74, 0xbb, 0xe0, 0xdd, 0xbe, 0x8a, 0x54, 0x6a,
0xa3, 0xee, 0xd7, 0xfb, 0x58, 0x50, 0x18, 0x9e, 0xc5, 0xd1, 0x6d, 0x17, 0x0f,
0x29, 0xe9, 0xb0, 0xf8, 0x90, 0x58, 0x88, 0xea, 0x42, 0xb9, 0xca, 0x3b, 0x5a,
0x04, 0xad, 0x1d, 0xb2, 0x53, 0xc7, 0xbb, 0xe5, 0xbb, 0x9b, 0x98, 0x9f, 0x57,
0x2a, 0x49, 0x2d, 0x8e, 0x7d, 0x6a, 0x12, 0x17, 0xb7, 0x3e, 0xc7, 0xe4, 0x4b,
0x52, 0x0f, 0x6f, 0x58, 0x21, 0x0d, 0x0d, 0x68, 0x48, 0xb7, 0x8e, 0x9a, 0xf5,
0x87, 0xc7, 0xdb, 0xaa, 0x41, 0xa1, 0xaa, 0x8a, 0xeb, 0x12, 0x54, 0x54, 0x39,
0x02, 0x35, 0x9f, 0xa2, 0x54, 0xeb, 0x48, 0x2b, 0x2c, 0x09, 0x35, 0xda, 0x69,
0xed, 0xff, 0x6e, 0x62, 0x96, 0xe4, 0x1b, 0xa1, 0x9e, 0x11, 0x32, 0xe9, 0xa9,
0x41, 0xff, 0x04, 0x7d, 0x74, 0x5a, 0xc8, 0x2d, 0xbc, 0xf7, 0x20, 0x4e, 0x7e,
0x36, 0x99, 0xda, 0x10, 0xe9, 0xc5, 0x21, 0x9f, 0x48, 0x52, 0x5c, 0xb4, 0xee,
0x7a, 0x3d, 0xcd, 0xff, 0x97, 0xae, 0x6d, 0xb3, 0xef, 0x74, 0xc1, 0x9d, 0x3f,
0xd0, 0x3d, 0x07, 0xef, 0xdc, 0x63, 0xdc, 0xbb, 0xd5, 0x49, 0xcf, 0xa5, 0xf7,
0xd6, 0x6d, 0xef, 0xf8, 0xd6, 0x32, 0x96, 0xf9, 0x58, 0xd4, 0x2b, 0x27, 0xbf,
0x9c, 0x7c, 0x72, 0x9a, 0x7a, 0xa7, 0x46, 0xec, 0xaf, 0x3a, 0x44, 0x85, 0x77,
0x65, 0x5c, 0x5d, 0xae, 0xdc, 0x7c, 0x28, 0x85, 0x88, 0x58, 0xa8, 0x1f, 0x0f,
0x23, 0xf2, 0x94, 0x9e, 0x1d, 0x3e, 0x13, 0xc6, 0x94, 0x8e, 0xbb, 0x38, 0xc8,
0x4d, 0x3c, 0x9b, 0xf9, 0xc0, 0xb9, 0x8c, 0x6e, 0x39, 0x79, 0x05, 0x83, 0x38,
0x23, 0xa5, 0x24, 0xf3, 0x57, 0x95, 0x19, 0x15, 0x42, 0x86, 0xd2, 0x3c, 0x08,
0xeb, 0xe0, 0xb6, 0x8c, 0x26, 0x44, 0x6a, 0xa1, 0x97, 0x41, 0x3b, 0x1d, 0xb4,
0xd3, 0x68, 0x98, 0x4e, 0x6e, 0x7d, 0x53, 0x45, 0x48, 0x83, 0x2b, 0x7f, 0xe4,
0xfa, 0x66, 0x5c, 0x4d, 0x83, 0x29, 0x1c, 0x4c, 0x3d, 0x0e, 0xaa, 0x86, 0xe6,
0x31, 0xf0, 0x83, 0x32, 0x16, 0x08, 0x16, 0xd6, 0x70, 0x9d, 0x87, 0xc6, 0x05,
0x3b, 0x5d, 0x67, 0x7e, 0xd0, 0xce, 0x72, 0x24, 0x0f, 0x5d, 0x99, 0xc7, 0xac,
0x88, 0xe4, 0x07, 0x52, 0x08, 0xf3, 0x0d, 0x9c, 0x08, 0x53, 0x8d, 0x87, 0x1b,
0xb6, 0x70, 0xf3, 0xfb, 0x0c, 0x7b, 0xba, 0xf2, 0x66, 0x5b, 0xaa, 0x21, 0xd5,
0x6b, 0xe1, 0x0a, 0xee, 0xb4, 0xb8, 0xa6, 0x18, 0x1a, 0xa6, 0xaa, 0x06, 0xae,
0x83, 0x09, 0x52, 0xa5, 0xa4, 0x0a, 0x66, 0x0b, 0xe5, 0x4a, 0x52, 0xe6, 0xcc,
0x79, 0x2c, 0x8c, 0xd3, 0x02, 0x63, 0x19, 0xb4, 0xe3, 0xa0, 0x1d, 0xc7, 0xfc,
0xb8, 0xb0, 0xaf, 0x6d, 0x11, 0x26, 0x3f, 0x1a, 0xfc, 0x8f, 0x0c, 0x50, 0x35,
0x0a, 0xf9, 0xbf, 0x95, 0x0b, 0xb9, 0x48, 0xfb, 0x2a, 0x9c, 0xab, 0x2c, 0xd4,
0x25, 0xe9, 0x38, 0xbf, 0xc8, 0x1d, 0x41, 0x53, 0x04, 0xed, 0x2e, 0x38, 0x73,
0xda, 0x52, 0xc5, 0x51, 0xc1, 0x70, 0xd3, 0x66, 0x41, 0x8b, 0x05, 0xf7, 0xfc,
0x90, 0x3e, 0x7d, 0xd7, 0x8e, 0x73, 0x56, 0x4a, 0x31, 0x0f, 0xe9, 0x37, 0xc1,
0xf0, 0x72, 0x62, 0xfb, 0x3e, 0xb7, 0xf2, 0x30, 0x94, 0xec, 0xc8, 0x01, 0x3b,
0xc2, 0x82, 0x33, 0x19, 0x52, 0x68, 0x7a, 0xf9, 0xae, 0x5f, 0xd8, 0xe1, 0x49,
0x4b, 0xaf, 0xce, 0xee, 0xf2, 0x8e, 0x50, 0x26, 0x46, 0xff, 0x2a, 0x26, 0x3e,
0x64, 0x3d, 0x65, 0xa4, 0x8b, 0x0c, 0x86, 0xee, 0xd8, 0x91, 0xe6, 0x2f, 0x1f,
0x8a, 0xa2, 0xfb, 0x85, 0xf4, 0x06, 0xe2, 0xd4, 0x66, 0xa0, 0xdf, 0x0c, 0x62,
0xfd, 0x52, 0x5a, 0x7e, 0xf1, 0x68, 0xee, 0xa4, 0x69, 0x0a, 0x0d, 0x53, 0x68,
0xd6, 0xc0, 0x2a, 0xec, 0xb0, 0x9a, 0x99, 0xc7, 0x65, 0x5e, 0xa0, 0x0e, 0x3d,
0xda, 0xf4, 0x28, 0x1d, 0x22, 0x39, 0xc3, 0x83, 0xfe, 0x08, 0x8d, 0x3f, 0xa5,
0x65, 0x1d, 0x35, 0x46, 0x60, 0x8e, 0xa0, 0xd8, 0x03, 0xa9, 0x07, 0x33, 0x6e,
0xba, 0xcc, 0x10, 0xa8, 0xd2, 0x07, 0x35, 0x8f, 0x9c, 0xa1, 0x09, 0x0c, 0x6c,
0x3e, 0x37, 0x5b, 0xef, 0xc7, 0xf2, 0x8e, 0x36, 0x2f, 0x46, 0xc3, 0x38, 0xc9,
0x66, 0x31, 0x1a, 0xa1, 0x93, 0xb9, 0x2c, 0x65, 0x30, 0x42, 0x07, 0x37, 0x13,
0x96, 0x07, 0x93, 0x28, 0xbc, 0xcf, 0x7b, 0x60, 0x20, 0x42, 0x6b, 0x7f, 0x1d,
0xdc, 0x6c, 0xa0, 0xa0, 0x7d, 0x90, 0x9c, 0x9b, 0xb8, 0xb0, 0xea, 0x85, 0xab,
0x82, 0x6b, 0x1b, 0xa4, 0x5e, 0x37, 0xf9, 0x59, 0xaf, 0xa5, 0x43, 0xe8, 0xfd,
0xfe, 0xc0, 0xd6, 0xc7, 0x16, 0x07, 0x8d, 0x74, 0xd0, 0x48, 0xa3, 0x5e, 0x9c,
0xe4, 0x33, 0x2f, 0x99, 0x86, 0x4a, 0x34, 0xe4, 0x8b, 0xf3, 0xaf, 0x87, 0x6a,
0x60, 0x04, 0xb6, 0x3f, 0x88, 0x60, 0x10, 0xc3, 0x6e, 0x3a, 0x2a, 0x80, 0xa6,
0x2e, 0x83, 0x1a, 0x26, 0x8f, 0xee, 0x24, 0x79, 0x93, 0xd4, 0xec, 0x23, 0x6b,
0xae, 0xe4, 0xdb, 0x1d, 0x27, 0x6f, 0x9c, 0x7f, 0xff, 0x10, 0xda, 0x9e, 0xee,
0x12, 0x4c, 0xe5, 0x58, 0x92, 0xda, 0x0e, 0x73, 0x56, 0x2d, 0x56, 0xb2, 0xb8,
0x9d, 0xdf, 0xc0, 0xe1, 0x92, 0x52, 0x87, 0x94, 0x0e, 0x45, 0x11, 0x61, 0xf9,
0xe2, 0x3d, 0x2b, 0xb2, 0x56, 0xf4, 0x5b, 0x28, 0x28, 0x0e, 0xa7, 0x55, 0x45,
0x76, 0xb1, 0x94, 0x6f, 0x19, 0xc4, 0xcc, 0x67, 0x25, 0x8e, 0x2d, 0x83, 0x74,
0xac, 0xa2, 0x6d, 0x75, 0xab, 0x9a, 0xab, 0x4d, 0xd0, 0xb2, 0x10, 0xac, 0x73,
0x53, 0x8d, 0x9b, 0x16, 0xc2, 0x34, 0xf0, 0xcb, 0x3b, 0x7f, 0x64, 0x4f, 0xa3,
0x5d, 0x4b, 0xa1, 0x77, 0xfa, 0x1a, 0xb8, 0xd4, 0x53, 0xa7, 0xad, 0x98, 0xf1,
0xd2, 0x65, 0x2f, 0x15, 0x7b, 0x21, 0xdd, 0x7c, 0x2d, 0x93, 0x6e, 0x90, 0x6a,
0x06, 0xb7, 0x34, 0x5c, 0xbc, 0x06, 0xe9, 0x1a, 0x14, 0x52, 0x2a, 0xcb, 0x65,
0xd8, 0x43, 0xb3, 0x38, 0x9c, 0xc7, 0xc6, 0xde, 0x29, 0xf8, 0x37, 0xa8, 0x6f,
0xc1, 0x4c, 0x82, 0x2e, 0xf3, 0xc1, 0xba, 0x73, 0x08, 0x6e, 0x9e, 0x5c, 0xd4,
0x0e, 0x43, 0x2f, 0x14, 0xc2, 0x4e, 0xe8, 0xe9, 0xc0, 0x2b, 0x15, 0x21, 0x72,
0xc9, 0xa8, 0x83, 0xf1, 0xbc, 0x46, 0x1f, 0xcc, 0x4c, 0xb1, 0x77, 0xe2, 0x94,
0xe6, 0x09, 0xb8, 0x86, 0xb9, 0xcc, 0x30, 0x6d, 0x7d, 0xaa, 0x09, 0x1d, 0xfc,
0xed, 0x63, 0x52, 0x3a, 0xcd, 0xfa, 0x1c, 0x8d, 0xe1, 0x24, 0x9f, 0x28, 0xdc,
0x8a, 0x62, 0x39, 0x9f, 0x44, 0xcb, 0x18, 0x7d, 0x79, 0x27, 0xc1, 0xa7, 0x9c,
0x5a, 0xd2, 0x6b, 0xa9, 0x7d, 0x08, 0xe6, 0x57, 0x2a, 0x2c, 0x70, 0x39, 0xd1,
0xb1, 0xb1, 0xb4, 0x3f, 0xb2, 0x8c, 0xe3, 0xdb, 0x5e, 0x27, 0x56, 0x70, 0x2b,
0x8b, 0x65, 0x5e, 0xd0, 0xeb, 0x6e, 0x2a, 0x12, 0xa2, 0x67, 0xa7, 0x9c, 0x4a,
0x3e, 0x74, 0x6e, 0xf1, 0x8e, 0x7b, 0x5e, 0x64, 0xb7, 0xbe, 0xa1, 0xca, 0xe2,
0xa3, 0x26, 0xa6, 0xc0, 0xe1, 0x24, 0x1d, 0x15, 0x71, 0x73, 0x54, 0x8d, 0x93,
0xac, 0xdb, 0x13, 0x31, 0x34, 0xbf, 0x75, 0xf3, 0xd1, 0x07, 0xd2, 0x4e, 0xb8,
0x71, 0xec, 0x8b, 0xdb, 0xcf, 0xb7, 0xf0, 0x5a, 0x2a, 0x76, 0x91, 0x74, 0xa3,
0x7e, 0x92, 0x61, 0x26, 0xb2, 0xeb, 0x60, 0xf4, 0x51, 0x18, 0x72, 0xd8, 0xa9,
0x8d, 0x27, 0x2e, 0x23, 0x6e, 0x1c, 0xcf, 0xc7, 0xf8, 0x6e, 0x2b, 0x79, 0x73,
0x2c, 0x54, 0x63, 0xa0, 0x2a, 0xc3, 0x43, 0x30, 0xaf, 0x50, 0x52, 0x59, 0x2e,
0xc8, 0x28, 0xe9, 0xe2, 0x46, 0xa8, 0x0c, 0x58, 0xa8, 0x8f, 0xd9, 0xc9, 0x88,
0x9e, 0x8e, 0xeb, 0xe9, 0x44, 0x18, 0x0e, 0xa4, 0x73, 0x19, 0xc1, 0x89, 0x2c,
0xe2, 0xb9, 0x27, 0xa2, 0x82, 0x48, 0xf2, 0x5b, 0x87, 0x61, 0xcc, 0xa5, 0x5e,
0xc3, 0x4e, 0x3a, 0xca, 0xd2, 0xb6, 0x23, 0x4e, 0x3a, 0xf9, 0x8b, 0x73, 0x16,
0xee, 0xa4, 0xc8, 0xbc, 0xab, 0x33, 0xd0, 0x66, 0xc4, 0x1a, 0x00, 0x1a, 0xb6,
0xa6, 0x15, 0x63, 0x5a, 0x9c, 0xde, 0x4a, 0xfb, 0x4e, 0x78, 0x29, 0x9e, 0xdf,
0x4a, 0x7c, 0x81, 0x71, 0xe2, 0x6f, 0x8e, 0xd4, 0x70, 0x75, 0xb9, 0x87, 0xfd,
0x86, 0x9c, 0x74, 0xd8, 0xf9, 0x98, 0x08, 0xe5, 0x19, 0xa1, 0x2e, 0x46, 0x38,
0x5b, 0x07, 0xa9, 0x01, 0xca, 0x10, 0xdd, 0x09, 0x22, 0x1d, 0x84, 0x61, 0x01,
0x25, 0xff, 0xd1, 0xf1, 0xe1, 0xda, 0xb7, 0x86, 0x21, 0xd7, 0xa0, 0xdf, 0x40,
0x85, 0x7d, 0x06, 0x0a, 0x05, 0x68, 0x20, 0xc0, 0x00, 0xcf, 0x4f, 0x4d, 0x7c,
0x51, 0xda, 0x96, 0x46, 0x0b, 0xcb, 0xe8, 0x5c, 0x72, 0xaa, 0xdf, 0xef, 0xd5,
0x70, 0xcd, 0x0a, 0x2e, 0xf5, 0xf6, 0x79, 0x61, 0xfa, 0x37, 0xb2, 0x68, 0x7e,
0xee, 0xec, 0xd3, 0x7d, 0x1b, 0xeb, 0xfd, 0xaa, 0x11, 0xd4, 0x3d, 0x7d, 0x3b,
0x88, 0x29, 0x2f, 0x86, 0x7f, 0x2a, 0x7d, 0xcd, 0xce, 0x3c, 0xc3, 0xb1, 0x8c,
0xb6, 0x65, 0x2c, 0x45, 0x71, 0x93, 0xd7, 0xc2, 0x42, 0x16, 0x8d, 0xdf, 0x53,
0xe6, 0x99, 0x9e, 0x22, 0x8c, 0xe3, 0xaf, 0x56, 0xbe, 0x76, 0x45, 0xc3, 0x19,
0xdf, 0xd5, 0x6f, 0x06, 0xb7, 0xf5, 0x38, 0x15, 0x6d, 0x7f, 0x00, 0xc5, 0x16,
0xa5, 0x16, 0xc6, 0x5c, 0x5c, 0x2e, 0x5a, 0xae, 0xe1, 0x82, 0x3c, 0x8b, 0xf3,
0x85, 0xa9, 0x27, 0x4c, 0xa7, 0x12, 0x48, 0x24, 0x30, 0x18, 0xc7, 0x41, 0x9e,
0xc0, 0x96, 0x4a, 0x49, 0xce, 0x86, 0x72, 0xca, 0x8a, 0xf1, 0x1f, 0x2e, 0x7c,
0x53, 0xcf, 0xe4, 0x51, 0x3c, 0x04, 0x29, 0x33, 0x69, 0xdd, 0x28, 0xd5, 0x88,
0x0d, 0xca, 0x86, 0xa8, 0xe4, 0x21, 0x3a, 0x55, 0x1f, 0xc1, 0x9d, 0x77, 0xaa,
0x78, 0xb1, 0x77, 0xc6, 0xc9, 0xbd, 0xf1, 0xe6, 0x82, 0xd2, 0x30, 0xe4, 0xbc,
0x85, 0x1e, 0xb0, 0x53, 0xd8, 0x4e, 0xb7, 0x82, 0x58, 0xde, 0x2c, 0xb7, 0x56,
0x66, 0x30, 0xfb, 0x72, 0x1b, 0x9f, 0x03, 0xe8, 0xc6, 0xa8, 0xef, 0x9d, 0xf3,
0x66, 0xba, 0xe4, 0x46, 0xe7, 0x8e, 0x2a, 0x66, 0xc2, 0xb7, 0xac, 0xb4, 0x6c,
0x25, 0x45, 0x88, 0x26, 0x0d, 0x9c, 0xd3, 0x86, 0x6b, 0x31, 0xdc, 0xf8, 0x24,
0x0e, 0x65, 0x9e, 0xbe, 0xae, 0xd8, 0x71, 0x9b, 0xa1, 0xf9, 0x95, 0x20, 0x5d,
0x7c, 0x4b, 0xbe, 0x85, 0x6d, 0xc9, 0xa4, 0x54, 0x22, 0x25, 0x9f, 0x11, 0x3d,
0x46, 0x5c, 0x5b, 0xc3, 0x3c, 0x0b, 0x8b, 0x32, 0x3f, 0xea, 0xff, 0x9b, 0xd9,
0x47, 0x06, 0x37, 0xc6, 0x3e, 0xbf, 0xae, 0xa7, 0x43, 0xb3, 0x88, 0x08, 0xfe,
0x5f, 0x6e, 0xc1, 0xd8, 0x7b, 0x93, 0x0c, 0x62, 0x15, 0x66, 0x2a, 0x63, 0x0d,
0x8f, 0x25, 0x71, 0x5a, 0x28, 0x28, 0x04, 0x1c, 0xd4, 0x97, 0xc3, 0xa6, 0x5b,
0x76, 0x9c, 0xd9, 0x73, 0x60, 0x9f, 0x7c, 0xcb, 0xa6, 0xe8, 0xfa, 0x29, 0x18,
0x45, 0xcc, 0x38, 0xa6, 0xa7, 0x98, 0x9e, 0x8e, 0xf8, 0x71, 0xfb, 0xe5, 0xe1,
0x0f, 0x8d, 0x13, 0xb0, 0x0d, 0xa3, 0x65, 0x18, 0x01, 0x3d, 0xfa, 0xf2, 0xfc,
0xb8, 0x59, 0x4d, 0x56, 0x35, 0x8b, 0xc8, 0x4e, 0xe8, 0xbe, 0x1e, 0x9e, 0x85,
0x2c, 0x8c, 0x12, 0xd1, 0x5b, 0x5b, 0x6d, 0x64, 0x17, 0x53, 0xa4, 0x15, 0x27,
0x8e, 0x3d, 0x1f, 0x66, 0x3a, 0xf5, 0x69, 0xa9, 0x47, 0x4b, 0x87, 0x94, 0x14,
0x61, 0xf3, 0x69, 0x34, 0xd2, 0xec, 0x9f, 0xf5, 0x6d, 0x01, 0x7d, 0x55, 0x10,
0x15, 0x41, 0xdc, 0xf1, 0xe3, 0xd6, 0x07, 0x57, 0x37, 0x2a, 0xa3, 0xbd, 0x13,
0xf0, 0xb3, 0x6b, 0x54, 0x19, 0x54, 0xe4, 0x63, 0x98, 0x69, 0x05, 0xb7, 0x7f,
0x54, 0x7a, 0x80, 0x73, 0x8f, 0x50, 0xf5, 0x28, 0x69, 0x99, 0xb6, 0x86, 0xc3,
0x38, 0xba, 0x01, 0x11, 0xe5, 0x73, 0x50, 0x32, 0x62, 0xe4, 0x1a, 0xa1, 0x0e,
0x71, 0x03, 0x53, 0xc6, 0x8b, 0xbb, 0x9b, 0x88, 0x31, 0x92, 0xc5, 0x71, 0xe6,
0x69, 0x8e, 0x21, 0xb4, 0xf1, 0x08, 0xb6, 0x32, 0x8d, 0xdb, 0x2c, 0x18, 0xba,
0xd6, 0xd0, 0xb1, 0x86, 0x15, 0x2f, 0x6e, 0xb3, 0x2b, 0x1f, 0xb8, 0x69, 0x6d,
0xc7, 0xe4, 0x8b, 0x56, 0x15, 0x95, 0x1a, 0x21, 0x37, 0xe2, 0x41, 0x9c, 0xd6,
0xe2, 0x8f, 0xb8, 0x49, 0xff, 0x02, 0x82, 0xfc, 0xde, 0xa5, 0xca, 0x61, 0x52,
0xf3, 0xd8, 0x78, 0x8e, 0x89, 0xb8, 0x84, 0x4b, 0x3c, 0xf6, 0x8d, 0x39, 0xed,
0x21, 0x74, 0xab, 0xb8, 0xf3, 0xcc, 0x2e, 0x97, 0xec, 0xb8, 0x69, 0x87, 0x43,
0x4b, 0x6d, 0x5a, 0x2a, 0x96, 0x92, 0x94, 0x7f, 0xa6, 0xc1, 0x4c, 0x03, 0x66,
0x32, 0x58, 0x51, 0x67, 0x85, 0xc7, 0x4a, 0x5d, 0x5b, 0xb3, 0xdb, 0x62, 0x37,
0x49, 0xf9, 0x88, 0x17, 0x22, 0x79, 0x88, 0xa6, 0xe6, 0x71, 0x71, 0x1e, 0xd5,
0x63, 0xa4, 0x1d, 0xa3, 0x4a, 0x03, 0xa9, 0x45, 0xd4, 0xb9, 0x13, 0xa3, 0xb4,
0x48, 0x03, 0x8a, 0x1d, 0x24, 0xe5, 0x95, 0x5a, 0x9e, 0x81, 0x52, 0x14, 0xd6,
0x89, 0x08, 0xc5, 0xf9, 0x78, 0x7b, 0x65, 0x0d, 0xa9, 0x37, 0x2a, 0x36, 0xf2,
0x79, 0x99, 0x12, 0x25, 0x62, 0x51, 0xbc, 0xd3, 0x4a, 0x96, 0xb7, 0xe2, 0x3c,
0xa4, 0xf4, 0xa7, 0x10, 0xe4, 0x29, 0x54, 0xf9, 0x14, 0x94, 0xbc, 0xee, 0x97,
0x96, 0x71, 0x53, 0xc0, 0xe6, 0x99, 0x38, 0x2e, 0xc7, 0x71, 0x29, 0x8e, 0xe9,
0x38, 0xd6, 0xed, 0x54, 0xc4, 0xf7, 0xe0, 0x59, 0x41, 0xd7, 0x0a, 0x4e, 0x49,
0xa9, 0xe5, 0x0b, 0xf7, 0xe6, 0x66, 0x95, 0x50, 0x14, 0xea, 0x17, 0xcf, 0xfc,
0x65, 0x49, 0xde, 0x58, 0x15, 0x16, 0x94, 0x59, 0x30, 0x31, 0x89, 0xf3, 0x02,
0xcd, 0x1e, 0x35, 0xe2, 0xe4, 0x86, 0x74, 0x9a, 0xa3, 0x64, 0x65, 0xe2, 0x98,
0x8a, 0x63, 0x6c, 0xb7, 0xe5, 0x2f, 0x4e, 0xdb, 0x69, 0x25, 0x46, 0xb7, 0x63,
0x54, 0x3e, 0x82, 0x7b, 0x3f, 0x29, 0x09, 0xf1, 0xee, 0x48, 0x52, 0xe6, 0x7d,
0x8a, 0x51, 0x94, 0xf1, 0x85, 0x01, 0x53, 0x80, 0x1a, 0x84, 0xe7, 0xd7, 0x5c,
0x71, 0xea, 0x88, 0xd3, 0x1d, 0x23, 0xdd, 0xdc, 0x2f, 0x7f, 0x2c, 0x65, 0x2c,
0x0e, 0x91, 0x54, 0xa4, 0xb6, 0xa5, 0x8c, 0x9e, 0xb1, 0x7b, 0x6d, 0x0b, 0x68,
0xc9, 0xed, 0x31, 0x6b, 0xb4, 0xc1, 0x6c, 0x43, 0x7b, 0x9c, 0x9c, 0xbc, 0x3a,
0xef, 0x78, 0x29, 0xcd, 0x90, 0xf1, 0x01, 0x63, 0xed, 0x3c, 0xbc, 0xcb, 0xec,
0x54, 0x62, 0xdf, 0x4a, 0x4f, 0x57, 0x31, 0xb0, 0x0a, 0x99, 0x82, 0x4a, 0x14,
0xe4, 0x72, 0xa0, 0x83, 0x5f, 0x1a, 0xea, 0x35, 0x90, 0xff, 0x61, 0xac, 0x2f,
0xe8, 0x75, 0xd0, 0xe1, 0x5f, 0x2d, 0x3b, 0xd1, 0xbf, 0x8a, 0xa3, 0x2f, 0x2d,
0xf3, 0x83, 0x5a, 0x61, 0xfe, 0x22, 0xd2, 0x45, 0x97, 0x1b, 0xf7, 0x7e, 0x11,
0xff, 0xe8, 0xac, 0x20, 0x7a, 0xd9, 0x28, 0x0e, 0xbd, 0x7a, 0x69, 0xcf, 0xf4,
0x07, 0xd1, 0x30, 0xd6, 0x13, 0x28, 0x1a, 0xc3, 0x25, 0x2b, 0x35, 0x3e, 0x57,
0xb4, 0xb9, 0xb1, 0xc4, 0xe1, 0x42, 0x9b, 0x40, 0x19, 0x65, 0x46, 0x94, 0x18,
0x71, 0x24, 0x49, 0x51, 0x1e, 0x00, 0x6f, 0xc5, 0xe8, 0xa2, 0x8e, 0xd3, 0x32,
0x32, 0x5e, 0xac, 0x24, 0x29, 0x2f, 0x5e, 0xcd, 0x28, 0x49, 0xbf, 0xae, 0x16,
0xb2, 0x0e, 0x57, 0x98, 0x3a, 0xc2, 0x34, 0x14, 0xa5, 0xe8, 0xcf, 0xd6, 0x12,
0xe8, 0x57, 0x21, 0x28, 0xee, 0x56, 0x9d, 0x33, 0xe3, 0xea, 0xc6, 0xca, 0xc1,
0xa9, 0x24, 0x7a, 0x9e, 0x37, 0xe7, 0xdf, 0x39, 0x71, 0x49, 0x4b, 0xd3, 0x5a,
0xca, 0x58, 0x71, 0x77, 0x6b, 0x46, 0x36, 0xa5, 0xa5, 0x33, 0xfb, 0xfd, 0x0c,
0x0a, 0x0f, 0x98, 0x11, 0x66, 0x77, 0x8e, 0x6a, 0x71, 0x92, 0x45, 0x92, 0x6b,
0x09, 0x9c, 0x7a, 0x63, 0x60, 0x6b, 0x2a, 0x34, 0x13, 0xa5, 0xcb, 0x4c, 0x77,
0x47, 0xdc, 0x14, 0xe5, 0x09, 0xd5, 0x09, 0x25, 0xe2, 0xe2, 0xe3, 0xbf, 0x7e,
0x92, 0xfe, 0xba, 0x8a, 0x8d, 0xb2, 0x5a, 0x0f, 0xc3, 0x57, 0x8d, 0x5f, 0x6d,
0x2e, 0xe3, 0xbc, 0x66, 0x32, 0x79, 0xd0, 0xe0, 0xd9, 0xa6, 0xa9, 0x73, 0x93,
0x48, 0x4d, 0x62, 0x85, 0x71, 0xe5, 0x9d, 0x6d, 0x79, 0xbf, 0x6a, 0x4e, 0xc3,
0x2a, 0x6e, 0x28, 0x50, 0x64, 0x50, 0x96, 0x81, 0xcd, 0x86, 0x16, 0x7e, 0x7d,
0x2f, 0x64, 0xc6, 0xc0, 0xe6, 0xfa, 0x47, 0xab, 0x17, 0x76, 0xc1, 0x95, 0x43,
0x0a, 0x1a, 0xd8, 0xb6, 0x60, 0x29, 0x5b, 0x44, 0x09, 0x43, 0xb0, 0xd6, 0x65,
0xd8, 0x97, 0x61, 0x51, 0x51, 0xa1, 0x99, 0x05, 0x78, 0x0d, 0x83, 0xdc, 0x9f,
0x9f, 0x7d, 0xf8, 0x5d, 0x15, 0x81, 0x55, 0x94, 0x7e, 0x2d, 0x2c, 0xac, 0xa1,
0x16, 0x87, 0x21, 0x15, 0x80, 0xa3, 0x7b, 0x02, 0x73, 0x7f, 0x6f, 0xcc, 0xed,
0xad, 0x33, 0xc4, 0xe0, 0x7b, 0xff, 0xea, 0x9e, 0xcb, 0x02, 0x08, 0x1d, 0xb3,
0xe2, 0xd0, 0x4f, 0x2b, 0xf2, 0x5b, 0xfe, 0x9a, 0x47, 0xc9, 0x3a, 0x4a, 0xc3,
0x7a, 0x3a, 0x2a, 0xc4, 0xa0, 0xa5, 0x18, 0xdd, 0x8c, 0x6d, 0x0e, 0xc3, 0xa4,
0xa2, 0x06, 0x15, 0x59, 0x2c, 0x74, 0xf5, 0xf5, 0xbe, 0x15, 0x14, 0x58, 0xa2,
0xd4, 0xc4, 0xe4, 0x64, 0xf0, 0xa3, 0x4e, 0xb0, 0x06, 0x83, 0x05, 0x75, 0x5b,
0xf6, 0xd5, 0x5c, 0x5a, 0xc3, 0xf4, 0x1a, 0x64, 0x4e, 0x94, 0x08, 0x84, 0xa8,
0x35, 0x01, 0x3b, 0x33, 0x93, 0x15, 0x16, 0xaf, 0x5b, 0xb8, 0xe6, 0x36, 0xae,
0x69, 0x67, 0x9b, 0x9b, 0xfa, 0x15, 0x14, 0xe4, 0xe7, 0xd9, 0x3d, 0x0f, 0x6f,
0xae, 0x68, 0xd5, 0x38, 0x08, 0xf3, 0x96, 0x34, 0xeb, 0x8e, 0x93, 0xd2, 0xb9,
0x18, 0x5e, 0x1b, 0x83, 0x9e, 0x27, 0x0d, 0xb6, 0x65, 0xb4, 0x2c, 0xe3, 0xde,
0x24, 0xb2, 0x93, 0xd0, 0xc5, 0x70, 0xeb, 0x13, 0x39, 0x0b, 0x33, 0x23, 0x28,
0x63, 0xc9, 0xaa, 0xc3, 0x81, 0x36, 0xf1, 0x39, 0xfc, 0xca, 0x00, 0x9a, 0x9e,
0x5e, 0x14, 0x6b, 0x65, 0xdd, 0x5e, 0x5a, 0xfc, 0x65, 0xa8, 0x82, 0x2b, 0x1a,
0xa2, 0xd6, 0x31, 0x8c, 0xff, 0x64, 0x2d, 0x42, 0x9d, 0x73, 0x90, 0xfe, 0xa7,
0x0e, 0x25, 0x56, 0x23, 0x74, 0x3f, 0x42, 0x83, 0x6b, 0xb8, 0xf2, 0x94, 0x5d,
0xc8, 0xa7, 0xfa, 0xd7, 0x11, 0xdc, 0x30, 0x86, 0x75, 0x37, 0x2c, 0x1f, 0x34,
0xa5, 0x61, 0x32, 0x52, 0xc7, 0xa7, 0x37, 0x83, 0xa8, 0x1c, 0x23, 0x75, 0xfe,
0x45, 0x02, 0x05, 0xc5, 0x46, 0x28, 0xfe, 0x9f, 0xf2, 0x1d, 0x35, 0x1b, 0xd1,
0xba, 0xd5, 0x0e, 0xcb, 0x4f, 0xab, 0x8a, 0x38, 0xbf, 0x1e, 0x53, 0x6b, 0xb8,
0x98, 0xc3, 0xf8, 0x7a, 0x15, 0x19, 0x05, 0xca, 0xec, 0x9a, 0x43, 0xc7, 0x1c,
0x0c, 0x11, 0xd4, 0x45, 0x1e, 0x71, 0x6c, 0x9b, 0x17, 0x2d, 0x5b, 0x58, 0x5f,
0x79, 0x02, 0xca, 0x04, 0xba, 0x8d, 0xf0, 0xe6, 0x01, 0x65, 0x28, 0x49, 0xd2,
0x37, 0x22, 0x4e, 0x3a, 0x94, 0xa4, 0x8a, 0x8f, 0xfd, 0x3c, 0xcb, 0x90, 0xcd,
0xa2, 0x64, 0x16, 0xad, 0x2e, 0xd8, 0xc5, 0x24, 0x4c, 0xb7, 0x88, 0x9a, 0x6d,
0x0f, 0x5a, 0x06, 0x52, 0xe8, 0x4b, 0x61, 0x2e, 0x86, 0x13, 0xbf, 0xf0, 0xf3,
0x20, 0x39, 0x6e, 0xa6, 0xb3, 0xb9, 0xe0, 0x6b, 0x50, 0x51, 0xe5, 0xcb, 0x76,
0x66, 0xdc, 0xaa, 0x00, 0x2a, 0x02, 0xd0, 0xc8, 0xa8, 0x4a, 0x2c, 0x7e, 0x5e,
0x4a, 0x50, 0xcd, 0x41, 0x2e, 0xce, 0xdc, 0x62, 0x24, 0x4c, 0xc7, 0x59, 0x36,
0x7b, 0x4e, 0x49, 0x87, 0x3f, 0xf7, 0xec, 0xbf, 0xb1, 0xbb, 0x67, 0x09, 0x01,
0x0d, 0xfa, 0x34, 0x50, 0xe8, 0xa8, 0x8c, 0x37, 0x97, 0xf2, 0x00, 0xee, 0xfd,
0x4f, 0x57, 0x7e, 0x34, 0xcf, 0xa8, 0x87, 0x13, 0xcd, 0x3f, 0x9d, 0x7c, 0x5d,
0xbf, 0x04, 0xcf, 0x08, 0xba, 0x46, 0x1e, 0xdd, 0x84, 0x3d, 0x8e, 0x07, 0xbf,
0x25, 0x9d, 0xc5, 0x1d, 0x2b, 0x3a, 0x77, 0xb6, 0xb8, 0x70, 0xc0, 0x48, 0x61,
0xbe, 0xaa, 0x54, 0x3b, 0x4e, 0xfa, 0x71, 0x96, 0x80, 0x99, 0x31, 0xd8, 0xc2,
0x65, 0x23, 0x54, 0x3c, 0x0a, 0x29, 0x0f, 0x86, 0xb5, 0x0b, 0x18, 0xff, 0xb4,
0xa8, 0x84, 0x5b, 0xdc, 0x24, 0xab, 0x37, 0xa6, 0xb1, 0xb8, 0xb5, 0xc4, 0xb4,
0x10, 0xa3, 0xf3, 0x1e, 0xae, 0xf1, 0xc5, 0x85, 0x4f, 0xe5, 0x3b, 0xd7, 0xdf,
0xb7, 0x7e, 0x7d, 0x99, 0x6f, 0x6f, 0xc1, 0x4c, 0xd7, 0xb7, 0x6f, 0x6c, 0x73,
0x98, 0xa8, 0xcd, 0xf4, 0xc8, 0x02, 0xd2, 0x08, 0xe4, 0x6c, 0x90, 0x67, 0xcc,
0x94, 0xe4, 0xaf, 0x3e, 0xa6, 0xa6, 0x98, 0x9a, 0x4a, 0x33, 0x90, 0xb3, 0x98,
0x62, 0x53, 0xa3, 0x7e, 0xff, 0xd0, 0x67, 0x52, 0x3f, 0x2d, 0xa5, 0xd0, 0xbf,
0xdb, 0x99, 0xab, 0x40, 0x34, 0xa6, 0x61, 0xce, 0x6d, 0x07, 0x52, 0x18, 0x50,
0x66, 0x40, 0xb3, 0x0b, 0x77, 0x9f, 0x75, 0x0a, 0x2f, 0xe6, 0x51, 0xc4, 0x51,
0xc6, 0x22, 0x47, 0x1c, 0xde, 0xfd, 0xf1, 0x7f, 0xe0, 0x75, 0x65, 0x8c, 0xab,
0xb9, 0xa9, 0x87, 0xc7, 0x94, 0x8c, 0x11, 0x77, 0x79, 0xd5, 0xf6, 0x47, 0x11,
0xdc, 0x4e, 0xc9, 0x5d, 0x56, 0x32, 0x7e, 0x57, 0x2b, 0x98, 0xb9, 0x9c, 0x5a,
0xf2, 0x29, 0x7e, 0x6b, 0x9c, 0xec, 0x71, 0x6a, 0x5e, 0x86, 0x55, 0xcc, 0x27,
0xce, 0x4c, 0x22, 0xc9, 0xfb, 0x7d, 0xa5, 0x1e, 0xea, 0x1c, 0x53, 0xa9, 0x55,
0x91, 0xf4, 0x85, 0xf2, 0xb7, 0xcc, 0x96, 0x47, 0x22, 0xf9, 0x98, 0x99, 0x4e,
0xf3, 0x33, 0x6d, 0x77, 0xc3, 0xc9, 0x13, 0x7c, 0xd5, 0x30, 0x55, 0xf0, 0x11,
0x3d, 0x64, 0xa7, 0xc6, 0x17, 0x52, 0x11, 0xaa, 0x1e, 0x24, 0x6d, 0x2e, 0xdf,
0xea, 0x1f, 0xa6, 0x20, 0x3b, 0xd5, 0xec, 0x85, 0x55, 0x34, 0xc7, 0x4a, 0x2f,
0xd4, 0xde, 0x6d, 0x8b, 0xeb, 0x6a, 0x9a, 0x55, 0xd3, 0x5c, 0x98, 0xae, 0xf2,
0xb5, 0x8e, 0x5e, 0x0d, 0x7c, 0x21, 0xae, 0xe6, 0x35, 0xf3, 0xf3, 0x7d, 0x0a,
0x3a, 0xb0, 0x88, 0xb0, 0x60, 0x81, 0x0b, 0x51, 0x5c, 0xe7, 0x67, 0x35, 0x94,
0x46, 0xe4, 0x9b, 0xb6, 0x52, 0xce, 0x2e, 0x6e, 0xbc, 0x99, 0x70, 0xd2, 0x79,
0x27, 0x35, 0x9a, 0xc9, 0xfe, 0xeb, 0xf1, 0x7d, 0x27, 0x93, 0x4f, 0x96, 0xd5,
0xa8, 0x13, 0x27, 0x19, 0x66, 0xac, 0x9b, 0xa9, 0x48, 0x98, 0xcd, 0x03, 0x25,
0xd6, 0x72, 0x61, 0xd8, 0x36, 0x86, 0x16, 0x61, 0x21, 0xb1, 0xdd, 0x45, 0xce,
0xad, 0x6b, 0xc3, 0x9d, 0x33, 0x70, 0x6f, 0xdf, 0x2f, 0x73, 0x2d, 0x8a, 0x79,
0x7e, 0x14, 0x9e, 0x24, 0x75, 0x89, 0x34, 0x3b, 0x60, 0x46, 0x9f, 0x19, 0x43,
0x6e, 0x3a, 0xcc, 0x74, 0x70, 0x22, 0x89, 0xb8, 0x30, 0x86, 0x11, 0x2d, 0x86,
0xf6, 0x55, 0x31, 0x89, 0xeb, 0x16, 0x50, 0x23, 0x46, 0x52, 0xdb, 0x20, 0xb5,
0x08, 0x12, 0x31, 0x05, 0xd1, 0xf0, 0xf8, 0xfd, 0xb0, 0xb2, 0x0c, 0x4a, 0x78,
0x12, 0x72, 0x63, 0x19, 0x8b, 0x82, 0x4e, 0xc6, 0x8c, 0x74, 0x9a, 0x59, 0x61,
0xbb, 0x8c, 0x9c, 0x82, 0x2f, 0x95, 0xea, 0x48, 0xae, 0x7b, 0x24, 0x96, 0x9a,
0xe1, 0xcf, 0xbd, 0xd2, 0x31, 0x08, 0x25, 0x6b, 0xb9, 0x7a, 0x01, 0xcb, 0xef,
0x36, 0x31, 0x09, 0x1f, 0x63, 0x59, 0xf8, 0x67, 0xe1, 0x2c, 0x5a, 0x4d, 0x64,
0x37, 0x91, 0xc3, 0x89, 0x36, 0x27, 0xaa, 0xd7, 0xa1, 0x65, 0x58, 0x74, 0x23,
0x85, 0xc5, 0x14, 0xa6, 0x12, 0x74, 0x31, 0x41, 0x0b, 0xcb, 0xb8, 0xce, 0x77,
0xd7, 0x2c, 0x27, 0xeb, 0x46, 0xd9, 0xb2, 0x38, 0x03, 0xe9, 0xa3, 0x65, 0x7c,
0x8b, 0x9a, 0x9a, 0xd4, 0xe4, 0x73, 0x50, 0x8f, 0xc8, 0x84, 0x4d, 0x69, 0x34,
0xe4, 0x8c, 0xb8, 0xa0, 0xd8, 0x4e, 0xd1, 0xaf, 0x0c, 0x98, 0xe8, 0x81, 0x99,
0xfc, 0x4f, 0x1f, 0x65, 0xfc, 0x56, 0x36, 0x82, 0xf2, 0x77, 0xd5, 0x32, 0xf2,
0x8d, 0xa3, 0x87, 0x5f, 0x9b, 0xb5, 0xd9, 0xa8, 0x85, 0xb1, 0x5b, 0x95, 0x17,
0x15, 0x5e, 0x54, 0xc6, 0xa0, 0x8e, 0x61, 0xc9, 0x89, 0x9b, 0xb9, 0xd4, 0xf6,
0x5a, 0x16, 0xde, 0xd7, 0xfa, 0x12, 0x38, 0xe4, 0x47, 0x64, 0x7b, 0xdd, 0xe8,
0x8a, 0x19, 0xb3, 0x66, 0x8c, 0x24, 0x71, 0x3c, 0x89, 0x5b, 0x5e, 0x5a, 0xf6,
0x52, 0xb7, 0x96, 0xbc, 0x62, 0x49, 0xdf, 0xe2, 0x42, 0x93, 0x80, 0x55, 0x8d,
0x51, 0x32, 0x0b, 0x0b, 0xd0, 0xc5, 0x29, 0x48, 0x45, 0x96, 0x53, 0xad, 0x83,
0x56, 0xb7, 0x59, 0x61, 0x49, 0xc3, 0x28, 0x0c, 0xb5, 0x3e, 0x42, 0x6a, 0x0b,
0xa7, 0xfa, 0x45, 0x1d, 0x93, 0xec, 0x5c, 0x16, 0x57, 0x9f, 0xf0, 0x02, 0x96,
0x21, 0x3d, 0x1d, 0x66, 0x30, 0xac, 0x32, 0x50, 0x45, 0x9e, 0xbe, 0x28, 0x12,
0x28, 0x4b, 0x40, 0x35, 0x46, 0x15, 0x0c, 0xb0, 0x55, 0x31, 0x54, 0xe4, 0xd2,
0xcd, 0x03, 0x6b, 0x08, 0x6f, 0xd9, 0x97, 0xf0, 0xc0, 0x8d, 0x35, 0x37, 0x4a,
0x55, 0xa8, 0xfd, 0xe2, 0xfe, 0xd3, 0x4d, 0x82, 0x22, 0x03, 0xeb, 0xe8, 0xf8,
0x79, 0xc5, 0xe6, 0x7b, 0xd6, 0x4c, 0x83, 0x68, 0xc8, 0x05, 0xa4, 0xb9, 0x18,
0x5d, 0xcd, 0xc7, 0xc3, 0xe2, 0x11, 0x48, 0x79, 0xac, 0x7b, 0xe0, 0xa4, 0x8b,
0xef, 0xd6, 0xbc, 0xa6, 0x14, 0xdb, 0xef, 0x4d, 0xc1, 0x9f, 0xe3, 0x6d, 0x36,
0x76, 0xe2, 0x83, 0xc3, 0x39, 0xd4, 0xaa, 0x66, 0x44, 0xf7, 0x1b, 0x55, 0xbc,
0x75, 0x79, 0xb4, 0xd4, 0xf5, 0x7c, 0xd1, 0x36, 0x75, 0xcd, 0x45, 0x71, 0x95,
0x59, 0x6a, 0xad, 0x95, 0x12, 0x3f, 0x3c, 0xcc, 0xc7, 0x6b, 0xc7, 0x30, 0xcd,
0xfe, 0x28, 0xc2, 0xdf, 0x7a, 0xca, 0x4e, 0xd7, 0x5f, 0x9f, 0x65, 0xd3, 0x36,
0x4c, 0xa1, 0x6e, 0x6a, 0xcb, 0x4d, 0xcd, 0xf3, 0x30, 0xfc, 0x7e, 0x50, 0x43,
0x05, 0x17, 0xd6, 0x30, 0xb9, 0xf6, 0xa8, 0x58, 0x74, 0x2e, 0xaa, 0x79, 0xf4,
0xfd, 0x2e, 0x21, 0x17, 0x0d, 0x3c, 0x74, 0x74, 0x58, 0x8b, 0xa3, 0x5a, 0xcc,
0x19, 0x71, 0x95, 0x07, 0x24, 0x43, 0x82, 0x2e, 0x5b, 0xb9, 0x1e, 0x91, 0xd0,
0xdc, 0xd0, 0xe3, 0x92, 0x86, 0x3b, 0x69, 0x27, 0x1f, 0xb3, 0xc0, 0x0f, 0xa2,
0xf9, 0xb4, 0xfb, 0x82, 0x12, 0x93, 0x8f, 0xbe, 0x9e, 0xa0, 0x5a, 0x0b, 0xed,
0x23, 0xeb, 0x31, 0x3e, 0x03, 0xf5, 0x18, 0x48, 0xa6, 0xa3, 0x92, 0x9c, 0x2b,
0xf4, 0xc7, 0x11, 0x7c, 0xf8, 0x6d, 0x8a, 0x9a, 0x18, 0xc5, 0x55, 0x5c, 0x44,
0x20, 0x2a, 0x0b, 0x76, 0x5c, 0xb7, 0x7f, 0x29, 0x8a, 0x5a, 0xe4, 0xd4, 0xc4,
0x5b, 0xbe, 0xc9, 0x47, 0x0d, 0x1b, 0x9b, 0x19, 0x9b, 0xd5, 0xb0, 0x0a, 0xe0,
0x9b, 0x99, 0xc4, 0xdd, 0x49, 0xdc, 0x08, 0x62, 0x91, 0x77, 0x5b, 0x53, 0x94,
0x1a, 0x04, 0x43, 0xb3, 0x19, 0xd1, 0xb2, 0xc1, 0xcd, 0x6b, 0xfd, 0xd0, 0x3f,
0x52, 0xed, 0xac, 0x5e, 0x82, 0xfc, 0xfd, 0x0a, 0x17, 0x1a, 0xd5, 0x0c, 0x46,
0x1b, 0x04, 0x43, 0xf0, 0x4d, 0xa1, 0x67, 0xea, 0xa1, 0xeb, 0x14, 0x01, 0x94,
0x05, 0xd0, 0xab, 0x20, 0xbf, 0x82, 0xae, 0xe8, 0x69, 0x56, 0xff, 0xdf, 0xf1,
0xfe, 0xaf, 0x1c, 0xc0, 0x27, 0xa9, 0x23, 0x97, 0xf5, 0x1f, 0x5b, 0x46, 0x6c,
0x19, 0x23, 0x6a, 0x1c, 0xcf, 0x07, 0x8e, 0x63, 0x49, 0xc4, 0x72, 0xc0, 0x78,
0xc7, 0x88, 0xb4, 0x11, 0xbd, 0x2b, 0xf0, 0x6f, 0x7d, 0x31, 0xd8, 0x90, 0x16,
0x87, 0xb5, 0xb8, 0x16, 0xc1, 0x3c, 0xcb, 0xd5, 0x27, 0x91, 0xde, 0x24, 0x7f,
0x57, 0x9c, 0x34, 0xbb, 0xa5, 0xd8, 0x31, 0x9a, 0xc0, 0xc9, 0xc4, 0xa3, 0x3c,
0xc3, 0x44, 0x2d, 0xfc, 0xeb, 0xdc, 0x74, 0x68, 0xd3, 0x3d, 0x7c, 0x72, 0xc4,
0x4b, 0xc7, 0x73, 0x95, 0x94, 0x7e, 0x17, 0x05, 0x37, 0xcd, 0xe4, 0x90, 0x1d,
0x91, 0x2f, 0xd3, 0x49, 0xb5, 0x9e, 0xb4, 0x5b, 0xe5, 0x30, 0xb1, 0x86, 0xf3,
0xcc, 0x22, 0x3b, 0x27, 0xe0, 0xe6, 0x53, 0x5b, 0x27, 0x2a, 0x72, 0xb0, 0x61,
0x31, 0xa0, 0xc9, 0x80, 0xd2, 0x04, 0xe4, 0x6c, 0x64, 0xed, 0x6b, 0xa8, 0xda,
0x65, 0x7c, 0xf2, 0x4b, 0xcf, 0x56, 0x9c, 0x74, 0x9b, 0xcd, 0x27, 0x10, 0xc4,
0xb5, 0x9f, 0x58, 0xb7, 0x57, 0x71, 0xae, 0xc4, 0x68, 0x56, 0x70, 0xc3, 0x91,
0x18, 0x8e, 0x0b, 0x7e, 0xb7, 0x6a, 0xa6, 0xfb, 0x42, 0xe8, 0x6f, 0xd5, 0xc3,
0x2e, 0x06, 0x44, 0x47, 0x10, 0x6d, 0x22, 0x74, 0x97, 0x1a, 0xe0, 0xfb, 0x56,
0x50, 0x28, 0x18, 0xf8, 0xf4, 0x38, 0xf3, 0xa9, 0x92, 0x87, 0x96, 0xea, 0x71,
0xd2, 0x8e, 0xd3, 0xff, 0x57, 0xdc, 0x97, 0xc6, 0x46, 0xb6, 0x5c, 0xe7, 0x3d,
0x9e, 0x3a, 0x35, 0x1a, 0x48, 0x2f, 0x4f, 0x2f, 0xb1, 0xa0, 0xf7, 0x12, 0x1b,
0xf6, 0x83, 0xa5, 0x20, 0x88, 0x2d, 0xd8, 0x86, 0x2d, 0x40, 0x46, 0xa4, 0x58,
0x02, 0x6c, 0xc0, 0x02, 0x6c, 0x40, 0x02, 0x24, 0xc4, 0x02, 0xec, 0xc4, 0x4e,
0x60, 0xc0, 0x09, 0xfc, 0x43, 0x02, 0xf2, 0xc3, 0x46, 0x22, 0xc4, 0xdc, 0x86,
0xfb, 0xbe, 0xaf, 0xcd, 0x7d, 0x19, 0xee, 0x4b, 0x73, 0xdf, 0x9b, 0x64, 0xb3,
0xb9, 0x37, 0xf7, 0xb5, 0x39, 0x6c, 0xb2, 0xb9, 0x2f, 0xc3, 0xa5, 0xbb, 0xb9,
0x0c, 0x9b, 0xcc, 0x39, 0x77, 0xe9, 0x6e, 0x72, 0xc8, 0x99, 0x17, 0xd9, 0x46,
0x2e, 0x50, 0xe7, 0x3b, 0xe7, 0x54, 0xd5, 0xbd, 0x55, 0xa7, 0xaa, 0x4e, 0x55,
0xdd, 0x7b, 0xfb, 0x76, 0xfc, 0x6b, 0x4c, 0x78, 0x8d, 0x43, 0xf3, 0x68, 0x99,
0xc7, 0xc8, 0x0a, 0x8c, 0xe2, 0x82, 0x96, 0x24, 0xe3, 0x54, 0x6d, 0x80, 0xf3,
0x67, 0xa1, 0x8a, 0xf9, 0x22, 0x0d, 0x18, 0x45, 0x1e, 0x3b, 0x3a, 0x44, 0xc6,
0x28, 0x6e, 0x3d, 0xfb, 0x1a, 0x73, 0xae, 0xb1, 0xa9, 0x45, 0x36, 0x2b, 0xfb,
0xb5, 0xf0, 0x0a, 0x8c, 0xd0, 0x6a, 0x37, 0xdc, 0x2d, 0xc1, 0xd2, 0x2d, 0x83,
0x16, 0x30, 0xf3, 0x8f, 0x72, 0xd4, 0x55, 0x47, 0xfc, 0x82, 0x4c, 0xa0, 0x15,
0x4e, 0x6d, 0x83, 0xac, 0x6b, 0x90, 0x8d, 0x06, 0x34, 0x2a, 0xbe, 0x3f, 0xb3,
0x51, 0x66, 0x71, 0xcf, 0xf5, 0xb8, 0xb1, 0xfb, 0x7b, 0xbd, 0x5a, 0x4f, 0x6c,
0x1c, 0x91, 0xc6, 0x11, 0xff, 0x5a, 0x96, 0x64, 0x63, 0xa9, 0xf7, 0x01, 0xe6,
0xe6, 0x88, 0x74, 0xdc, 0x8b, 0x2d, 0x18, 0xc2, 0xbb, 0xbf, 0x2c, 0xf4, 0xbf,
0xfd, 0xfa, 0xc1, 0xcb, 0x42, 0x59, 0xa1, 0xec, 0xad, 0xbb, 0x36, 0x30, 0xe7,
0xcb, 0x85, 0x3c, 0x4b, 0x8e, 0x9a, 0xe4, 0x18, 0x2d, 0xfd, 0x36, 0xe3, 0xe4,
0xea, 0x1f, 0x45, 0x8c, 0x60, 0x6e, 0x98, 0x34, 0x84, 0xc9, 0xb2, 0x42, 0x59,
0xae, 0xed, 0xc1, 0x1b, 0xc3, 0xa5, 0xd1, 0x6f, 0x9b, 0x31, 0x19, 0x2c, 0x63,
0x3f, 0x86, 0x55, 0xf2, 0xd6, 0x2d, 0x95, 0xb2, 0x55, 0xe9, 0x00, 0x99, 0x3d,
0x58, 0xf9, 0x03, 0xb3, 0xf7, 0x85, 0xb2, 0xea, 0x79, 0x59, 0x33, 0x2f, 0xeb,
0x0d, 0x58, 0xfb, 0xb3, 0x0d, 0x45, 0x39, 0x38, 0x8f, 0xc9, 0xdf, 0x59, 0xf6,
0x7f, 0x3f, 0x29, 0x7d, 0x05, 0x33, 0x94, 0xbb, 0x1e, 0x43, 0x85, 0x68, 0xf1,
0xdf, 0x7f, 0x55, 0x9f, 0x63, 0xcd, 0x39, 0x16, 0x14, 0xc9, 0x42, 0x9a, 0x58,
0x3a, 0x6e, 0xb1, 0x53, 0xf5, 0x5a, 0x91, 0x33, 0x32, 0x8a, 0x5c, 0xf4, 0xca,
0x3e, 0xae, 0xee, 0x3f, 0xdd, 0xc9, 0x06, 0xbb, 0xa5, 0x59, 0x79, 0xb8, 0xf2,
0xa6, 0x42, 0xde, 0xa8, 0xbd, 0x61, 0xcf, 0x20, 0xf7, 0xf5, 0xe5, 0x5e, 0xe5,
0x39, 0x56, 0xdd, 0xeb, 0x4a, 0x4d, 0x77, 0xd8, 0x7c, 0x87, 0x95, 0x2b, 0x58,
0xb5, 0x82, 0xaf, 0x1b, 0xe4, 0x09, 0x75, 0xec, 0xfe, 0x38, 0x59, 0xf8, 0xd3,
0x42, 0xde, 0xa0, 0xc4, 0x4e, 0xca, 0x38, 0xbe, 0x09, 0x56, 0xd0, 0x23, 0x0b,
0x79, 0x9a, 0xcf, 0x34, 0xc8, 0x2c, 0x3a, 0xd3, 0xde, 0x19, 0xee, 0xfb, 0xdd,
0xae, 0xcd, 0x9b, 0x94, 0xf9, 0xfa, 0xbd, 0xb7, 0xa2, 0x5a, 0x69, 0x89, 0x08,
0x58, 0xd5, 0x47, 0xc1, 0x56, 0xb7, 0xdc, 0xd6, 0x1f, 0xf5, 0x9c, 0xce, 0xcb,
0x33, 0x1a, 0xcf, 0x57, 0x15, 0xf2, 0xba, 0x82, 0xbf, 0xde, 0x2c, 0xa3, 0x86,
0xde, 0xf2, 0x09, 0xaf, 0xe7, 0xe5, 0xc9, 0x5b, 0xcf, 0x74, 0x73, 0xd3, 0xd1,
0x90, 0xfe, 0xb0, 0xc6, 0xe3, 0xc1, 0x72, 0x42, 0xf9, 0x52, 0x27, 0x79, 0xa2,
0xef, 0x96, 0xef, 0x63, 0xaa, 0x09, 0x3d, 0xdf, 0x4f, 0x51, 0xf6, 0x0f, 0x2f,
0x47, 0x65, 0xc5, 0xa8, 0xcc, 0x3c, 0xc3, 0xac, 0x33, 0x8c, 0x4f, 0xc2, 0x84,
0x24, 0xb4, 0x15, 0xe2, 0x9a, 0x62, 0xe1, 0xc8, 0x68, 0x8c, 0xa2, 0x09, 0xab,
0x23, 0x0a, 0x07, 0x7f, 0xf9, 0x4d, 0x4a, 0xc0, 0x6d, 0xbb, 0xfc, 0xe0, 0x7c,
0x0d, 0x9d, 0x6b, 0x18, 0xfb, 0x1a, 0xe3, 0x5e, 0x63, 0xf5, 0x35, 0xd6, 0xf0,
0xcc, 0xf9, 0x66, 0x42, 0xde, 0x4c, 0xc8, 0xa2, 0x66, 0x59, 0xac, 0xee, 0x0e,
0x93, 0x65, 0x30, 0xb9, 0xe5, 0xb6, 0x5b, 0x6c, 0x57, 0x9e, 0x3d, 0xa5, 0xe1,
0x21, 0x0d, 0x9d, 0xcd, 0x6b, 0x74, 0x5c, 0x63, 0xec, 0x82, 0x8c, 0xe3, 0x37,
0x96, 0xba, 0x9a, 0xb1, 0x1a, 0x0f, 0x1f, 0x5d, 0x02, 0x65, 0x87, 0xc9, 0x1c,
0x76, 0xc4, 0x3d, 0xdd, 0x38, 0xf2, 0x6b, 0x6e, 0x75, 0x55, 0xb3, 0x65, 0xc6,
0x6d, 0x9a, 0xc9, 0x32, 0xc3, 0x64, 0x56, 0x98, 0x3c, 0xd8, 0xc0, 0xc3, 0x0d,
0x4c, 0x77, 0xe3, 0xea, 0x2f, 0x75, 0xd2, 0x5c, 0xb6, 0x73, 0x86, 0xbb, 0x64,
0xde, 0xad, 0x33, 0xdc, 0x66, 0x2b, 0xc7, 0x9a, 0xe4, 0xee, 0xff, 0x29, 0xed,
0xc7, 0xa0, 0x28, 0xac, 0x97, 0x3b, 0x5f, 0xa8, 0xfd, 0xdb, 0xb1, 0x60, 0xb9,
0x74, 0x8b, 0xcb, 0x5c, 0x94, 0xe1, 0x1a, 0x1c, 0xf1, 0x7f, 0xdc, 0xbc, 0xd7,
0x8e, 0xfb, 0xed, 0xd8, 0x32, 0x24, 0x5b, 0x15, 0xdb, 0xbe, 0x68, 0xc1, 0xfa,
0x4f, 0x5a, 0xd5, 0x69, 0xa4, 0xf1, 0x0e, 0x8d, 0x77, 0x58, 0x56, 0x84, 0xe5,
0xb4, 0x9d, 0xce, 0x9b, 0xc1, 0x7c, 0xf5, 0x35, 0xb3, 0xbe, 0x7d, 0x34, 0xed,
0x63, 0xd3, 0x1b, 0x3c, 0xfd, 0x41, 0xf9, 0xa8, 0x4c, 0xcd, 0x92, 0x8e, 0xff,
0x50, 0xfb, 0xb7, 0xcd, 0x3f, 0xac, 0xba, 0xc6, 0xbc, 0x38, 0xcc, 0x8f, 0xc3,
0x96, 0x5b, 0x6c, 0x55, 0xfb, 0xdf, 0x1b, 0x37, 0xde, 0xb8, 0xb1, 0x69, 0x48,
0x36, 0x6b, 0xed, 0x56, 0x1f, 0x2e, 0x1b, 0x68, 0x50, 0x04, 0x4d, 0x63, 0xf0,
0x34, 0xf6, 0x93, 0xb3, 0xfa, 0x4a, 0x37, 0x4d, 0x4d, 0x43, 0x35, 0x68, 0xa9,
0xc1, 0x54, 0x37, 0xa6, 0x91, 0xf7, 0x38, 0xa2, 0x0d, 0x25, 0xbb, 0xca, 0xb2,
0x1a, 0x2c, 0xaf, 0xc1, 0xe4, 0x21, 0x4c, 0x19, 0xc2, 0xf1, 0x0a, 0x9c, 0x20,
0x4f, 0xd0, 0x53, 0x21, 0x7b, 0xb9, 0x7f, 0x36, 0x96, 0x4a, 0xa3, 0x72, 0xbb,
0x25, 0x77, 0x06, 0xb7, 0xbf, 0xde, 0xaa, 0xd4, 0x66, 0xf3, 0x0c, 0x1d, 0x4a,
0x07, 0x4b, 0xad, 0xc1, 0x9b, 0xaf, 0x66, 0x51, 0xe3, 0x27, 0x9b, 0xb0, 0x32,
0x25, 0xa0, 0x77, 0x5e, 0x66, 0xcf, 0x60, 0xce, 0xf3, 0x40, 0x5a, 0x4f, 0x1c,
0x44, 0xe1, 0xa1, 0x32, 0xb9, 0xd6, 0xbf, 0xc6, 0x9b, 0x1f, 0xd9, 0xbf, 0x96,
0xd1, 0x83, 0x25, 0xfb, 0x58, 0xca, 0x43, 0xa3, 0xb6, 0x5d, 0xf6, 0xfe, 0x5a,
0xfe, 0x37, 0x62, 0x3e, 0x1d, 0x98, 0xc7, 0xf8, 0x1a, 0x99, 0xe0, 0xfb, 0x04,
0x4f, 0x64, 0xba, 0x8c, 0x4a, 0x97, 0x9b, 0x69, 0xd2, 0xa1, 0x7c, 0x35, 0x20,
0x0b, 0xb7, 0xb3, 0x70, 0x98, 0xbc, 0xd4, 0xa7, 0x81, 0xc9, 0xf2, 0x7c, 0x42,
0xa6, 0x05, 0x06, 0xbc, 0x0c, 0x0d, 0x88, 0x98, 0x91, 0xe9, 0x61, 0x32, 0x83,
0x9a, 0xec, 0xe5, 0x0a, 0x56, 0xe8, 0x37, 0x26, 0x8f, 0xb2, 0xe4, 0x31, 0x2d,
0xae, 0x5a, 0xcc, 0x38, 0xfa, 0x17, 0xa1, 0xda, 0x2b, 0x1f, 0x2e, 0x93, 0x74,
0xab, 0x8f, 0xb1, 0x36, 0xbb, 0xa5, 0x43, 0xef, 0xe8, 0xf5, 0xf1, 0xd8, 0x10,
0xaf, 0x7f, 0xc0, 0xa3, 0x1d, 0x23, 0x94, 0x4e, 0xb1, 0x14, 0x85, 0x05, 0x75,
0x01, 0x37, 0xde, 0xdf, 0x94, 0x0e, 0x9d, 0xa1, 0xe5, 0x0c, 0x0f, 0x1a, 0xe4,
0x61, 0x83, 0x7c, 0x15, 0x27, 0xd7, 0x7d, 0xaf, 0xa2, 0x16, 0x4d, 0xc8, 0x62,
0xf5, 0x6e, 0x48, 0x6d, 0xb8, 0xac, 0xe3, 0x4f, 0xd8, 0xec, 0xe0, 0xd8, 0x27,
0x9d, 0xbc, 0xe1, 0x8b, 0x9e, 0x94, 0x31, 0x34, 0xd2, 0xfa, 0x92, 0xd0, 0xa4,
0xae, 0x20, 0xda, 0x36, 0xb0, 0x9d, 0x7a, 0xcc, 0x9b, 0x1a, 0x79, 0xe3, 0xab,
0x64, 0x75, 0xbc, 0xac, 0x51, 0x5f, 0x18, 0xb8, 0x72, 0xe3, 0xb5, 0x1b, 0xc7,
0x1b, 0x68, 0xc9, 0xba, 0x48, 0x86, 0x19, 0x6d, 0xc0, 0x31, 0xde, 0xa3, 0x9c,
0x36, 0xe0, 0x5c, 0x7a, 0x80, 0x45, 0xf7, 0x93, 0x25, 0xa3, 0xb2, 0x74, 0x54,
0x5e, 0xc4, 0xe1, 0xa5, 0x32, 0xbb, 0xd6, 0xd6, 0xc8, 0xba, 0x1a, 0x79, 0xd5,
0x2e, 0xaf, 0xdb, 0x65, 0x63, 0x36, 0x1a, 0xb3, 0x71, 0x66, 0x0d, 0x67, 0xbd,
0xf3, 0xa7, 0xfd, 0x0c, 0x37, 0x94, 0xb6, 0xd9, 0xab, 0x91, 0xfb, 0xda, 0x45,
0x87, 0x83, 0xe5, 0x88, 0xf7, 0x86, 0x7e, 0x4f, 0x12, 0x5e, 0xfc, 0xa0, 0x75,
0xe3, 0xde, 0x48, 0x08, 0x37, 0xe0, 0xc2, 0x8f, 0xd7, 0x75, 0x9f, 0x91, 0x5b,
0x89, 0x06, 0xfd, 0xf1, 0x75, 0xad, 0x41, 0xd6, 0x19, 0xe4, 0x41, 0x96, 0x3c,
0x7c, 0xeb, 0xbb, 0x39, 0x79, 0x79, 0x78, 0xfa, 0xeb, 0x49, 0x26, 0x4c, 0x8c,
0x96, 0x67, 0x7f, 0x78, 0x14, 0x1c, 0x10, 0xa7, 0x14, 0x38, 0x36, 0x5c, 0xae,
0xfd, 0xdd, 0xdc, 0xbf, 0x4a, 0x0d, 0x38, 0x28, 0x0a, 0x18, 0x4b, 0x0f, 0xe8,
0xa4, 0x15, 0xd8, 0xa6, 0x19, 0xbb, 0xbe, 0x59, 0xf8, 0x06, 0x3f, 0xb8, 0x98,
0xc0, 0xc8, 0xff, 0x19, 0x6c, 0x92, 0x77, 0x06, 0x6c, 0xfb, 0x87, 0xf3, 0x5f,
0xaa, 0xa1, 0xae, 0x57, 0x1d, 0x2e, 0x2f, 0x7f, 0xd2, 0xff, 0xd9, 0xf5, 0x04,
0x26, 0x67, 0xc9, 0xfc, 0x7f, 0xd8, 0xfc, 0x69, 0xff, 0x2f, 0xa7, 0xfd, 0x64,
0xf7, 0xbb, 0x06, 0xaa, 0xaa, 0x67, 0x04, 0x63, 0x63, 0x02, 0x62, 0x16, 0x64,
0x93, 0x19, 0x9b, 0xb5, 0xcd, 0x65, 0x47, 0x33, 0x76, 0x36, 0x63, 0x74, 0xb8,
0x8c, 0xd1, 0xdc, 0x7d, 0x66, 0xa9, 0xcc, 0x2a, 0x95, 0xa9, 0x61, 0x32, 0x2d,
0x4c, 0x0e, 0x05, 0x4b, 0x4b, 0xb0, 0x5c, 0x48, 0x92, 0x8b, 0x49, 0xb2, 0x36,
0x0d, 0xc3, 0x23, 0x02, 0x3a, 0x7f, 0x7a, 0x53, 0x83, 0xf1, 0xd1, 0x32, 0x81,
0x1d, 0x4f, 0x72, 0x33, 0xa6, 0xf0, 0x97, 0x46, 0x6b, 0x65, 0x61, 0xad, 0xfe,
0x2d, 0x68, 0x99, 0xa1, 0xdd, 0x4a, 0x8c, 0x8d, 0x96, 0x5b, 0xdf, 0x32, 0x7e,
0xaf, 0xfb, 0x4f, 0xcc, 0x5f, 0xee, 0x2c, 0xc3, 0x9d, 0x69, 0xdc, 0xf8, 0x34,
0xac, 0x9d, 0x3c, 0x2e, 0x9e, 0x50, 0x8b, 0x94, 0xdd, 0x62, 0xb9, 0x3a, 0xc8,
0x5e, 0x8c, 0x60, 0x18, 0x4d, 0xd4, 0x43, 0xd7, 0x68, 0xb9, 0xc6, 0x0f, 0xfe,
0x09, 0x8f, 0x46, 0x33, 0x1a, 0xcd, 0x98, 0x1c, 0x26, 0x53, 0x94, 0xdd, 0xd0,
0x42, 0x1a, 0x2e, 0x2a, 0xd3, 0xff, 0x4e, 0x3b, 0xee, 0x52, 0x07, 0xcd, 0xeb,
0x91, 0x29, 0xdf, 0x8c, 0xa1, 0x5a, 0x5c, 0xb4, 0xcb, 0xcb, 0xfb, 0x3f, 0x7c,
0xce, 0xae, 0xc4, 0x1c, 0xa5, 0xb5, 0x4e, 0xe7, 0xf1, 0xec, 0xc1, 0x66, 0xb4,
0xa3, 0x1b, 0x3b, 0x7d, 0xcf, 0xe4, 0x4a, 0xca, 0xb0, 0x54, 0xb9, 0xa9, 0x34,
0x5a, 0x81, 0x63, 0x7e, 0xbf, 0xdb, 0x2d, 0xeb, 0xc6, 0x72, 0x2d, 0x55, 0x64,
0xb4, 0x8c, 0x62, 0x5b, 0xdd, 0x35, 0x63, 0xa0, 0xfe, 0xcb, 0xb6, 0xf3, 0x42,
0x74, 0x2a, 0xde, 0xb9, 0x2d, 0x59, 0x96, 0xff, 0xe7, 0xa4, 0x66, 0x7e, 0x5b,
0x59, 0x46, 0xf9, 0x7d, 0x7a, 0xfd, 0x83, 0xe4, 0x42, 0x4c, 0x29, 0xc4, 0xc6,
0x69, 0x69, 0xe4, 0x3b, 0x73, 0xf5, 0x66, 0x6c, 0x30, 0xe3, 0xc2, 0x2d, 0x2e,
0x2a, 0x36, 0x6b, 0x1c, 0x92, 0x46, 0xcd, 0x23, 0x8d, 0x97, 0xca, 0x09, 0xb6,
0x77, 0x5e, 0xad, 0x34, 0xfe, 0xf8, 0x50, 0xd9, 0x5e, 0xd8, 0x1b, 0xe4, 0x6e,
0x48, 0xc0, 0xf5, 0xfd, 0x77, 0x72, 0xea, 0xa7, 0x65, 0x83, 0xff, 0xef, 0x67,
0x3b, 0x3a, 0xb0, 0x53, 0xbd, 0x27, 0x9a, 0x39, 0x83, 0x59, 0x8a, 0x63, 0x6c,
0xeb, 0xc0, 0xf6, 0x8e, 0x7b, 0xef, 0x3c, 0xce, 0x60, 0xc6, 0x0c, 0xa6, 0xf6,
0x60, 0x1a, 0xed, 0x71, 0x52, 0xa7, 0xe5, 0xe5, 0xaf, 0x87, 0xfe, 0x3c, 0xea,
0xb3, 0x84, 0x07, 0xab, 0xc3, 0x92, 0x0a, 0x2c, 0x55, 0x6b, 0x5e, 0x6b, 0xc6,
0xb4, 0x4f, 0xb2, 0x6a, 0x1f, 0x69, 0xc4, 0xa2, 0x0a, 0x2c, 0xae, 0xc0, 0x74,
0x93, 0xcc, 0xf0, 0x7b, 0x67, 0xb7, 0xad, 0x1b, 0xdb, 0x55, 0x1b, 0xd9, 0xcd,
0xb8, 0x61, 0xe6, 0xe7, 0x3d, 0xb8, 0x4d, 0x0d, 0x13, 0x7b, 0x80, 0x71, 0x07,
0xef, 0xea, 0x09, 0xc9, 0x85, 0xf2, 0xe6, 0xb7, 0xb3, 0x7f, 0x68, 0x34, 0x3d,
0xb2, 0xc0, 0x3e, 0x35, 0xc9, 0x33, 0x9f, 0x3e, 0xbd, 0x11, 0x9b, 0xbe, 0xdd,
0xf5, 0xa3, 0xff, 0x38, 0xa2, 0xa8, 0x36, 0xd3, 0xd0, 0x71, 0xef, 0xdd, 0xa6,
0x96, 0x6d, 0x6c, 0xf5, 0x7f, 0x91, 0xa6, 0xad, 0x19, 0xdb, 0xef, 0xad, 0xfe,
0x0b, 0x2a, 0xb0, 0x90, 0xea, 0x16, 0xbe, 0x20, 0x23, 0xa8, 0x71, 0x06, 0xcf,
0x70, 0xe6, 0x47, 0x59, 0x66, 0x39, 0x5a, 0x2a, 0xc7, 0xd8, 0xe6, 0xb9, 0x43,
0x68, 0xf0, 0xfe, 0x1b, 0x42, 0x63, 0x0d, 0x0e, 0xfe, 0x2c, 0xe7, 0xe3, 0xfe,
0xef, 0x16, 0xaa, 0x9e, 0xac, 0xab, 0x42, 0xce, 0x86, 0x04, 0x04, 0xfe, 0xca,
0x4e, 0x72, 0xc0, 0xd9, 0x4f, 0xd7, 0xb5, 0xc6, 0xa8, 0x2f, 0x93, 0x75, 0x9f,
0x06, 0xc7, 0xcb, 0xb9, 0x24, 0x99, 0xf9, 0xf1, 0x89, 0xb2, 0xd2, 0x0a, 0x6a,
0xc6, 0x60, 0xbe, 0xe6, 0x66, 0x3b, 0x3a, 0x14, 0xb7, 0x79, 0xe1, 0xc6, 0xe1,
0x4f, 0x4c, 0x71, 0xb2, 0x27, 0x4e, 0xf6, 0x92, 0x8b, 0x2c, 0xea, 0xc7, 0x90,
0xaf, 0x97, 0x2b, 0x37, 0x9b, 0xfa, 0xb3, 0xb0, 0xe3, 0x3b, 0x81, 0xbc, 0x05,
0x2f, 0xe8, 0xc7, 0x42, 0x7e, 0x84, 0x63, 0xab, 0xc1, 0xb6, 0xf4, 0x80, 0x8c,
0x07, 0x3f, 0x9d, 0x2e, 0xd9, 0xc1, 0xd2, 0x1d, 0xec, 0x33, 0x4b, 0x13, 0x45,
0x44, 0x57, 0xc8, 0x98, 0x0a, 0xf9, 0x0b, 0x0e, 0xa1, 0xd4, 0x33, 0x1c, 0xfa,
0xc9, 0x9a, 0xe6, 0x35, 0x63, 0x2b, 0x65, 0x1c, 0x2d, 0xfc, 0x42, 0x0a, 0x31,
0xb4, 0x10, 0x2b, 0xe3, 0x65, 0x95, 0xe2, 0x71, 0x13, 0xc3, 0x64, 0x52, 0x98,
0x7c, 0x19, 0x2f, 0xcf, 0x7e, 0x62, 0xfb, 0x7a, 0xed, 0x9f, 0x9b, 0x9b, 0x1f,
0x5c, 0xab, 0x7e, 0x19, 0x1b, 0xa8, 0x5b, 0x26, 0x9e, 0x61, 0x92, 0x77, 0x01,
0xb5, 0xb7, 0x81, 0xfb, 0xe4, 0x2d, 0xed, 0xdd, 0x72, 0x83, 0x66, 0x90, 0xf8,
0x34, 0x99, 0xf0, 0xf6, 0x5e, 0xe9, 0xc5, 0x82, 0x0c, 0xe3, 0x01, 0x51, 0x4d,
0x43, 0xf8, 0x87, 0xa6, 0x34, 0x19, 0xdf, 0x8c, 0x09, 0x64, 0xa7, 0x70, 0x37,
0x46, 0xb8, 0xb1, 0x7e, 0x52, 0x36, 0x28, 0xeb, 0xaf, 0xf0, 0x74, 0x19, 0x91,
0x2e, 0x2b, 0xcd, 0x58, 0xc5, 0xde, 0x6c, 0xb8, 0x02, 0x43, 0x9f, 0x6f, 0xfe,
0xd9, 0xd4, 0x9f, 0xae, 0x7f, 0x92, 0x53, 0x2b, 0xb3, 0xa3, 0x71, 0xe7, 0xcf,
0x43, 0x77, 0xb0, 0x28, 0x19, 0x8b, 0xa9, 0xcf, 0xd6, 0x1a, 0xb0, 0xce, 0x80,
0xf6, 0x6b, 0xdc, 0xb8, 0xc6, 0xb6, 0x42, 0xdc, 0xfa, 0xc2, 0x64, 0x46, 0xc0,
0x09, 0xf5, 0x8b, 0xcc, 0x5a, 0xf9, 0xe2, 0xd7, 0xf2, 0x27, 0x64, 0x75, 0x8d,
0xac, 0xa9, 0x91, 0xaf, 0xcc, 0x98, 0xf0, 0x75, 0x2b, 0x8d, 0xcd, 0xfa, 0x3b,
0x1c, 0xfe, 0x77, 0xcd, 0xdf, 0x88, 0xfb, 0x4e, 0x30, 0x6e, 0xfd, 0x28, 0xf9,
0x5f, 0xd7, 0xf9, 0xad, 0xa7, 0x93, 0x6b, 0x30, 0x85, 0x1a, 0xd4, 0xde, 0x8e,
0x55, 0xd8, 0x4c, 0x65, 0xca, 0xed, 0x91, 0x06, 0x5a, 0x2b, 0xe6, 0x4d, 0x60,
0x3e, 0x2f, 0x3c, 0x22, 0xb3, 0x31, 0x2a, 0x1b, 0x93, 0x67, 0x30, 0x85, 0x86,
0x55, 0x11, 0x9d, 0xf5, 0x5b, 0x6e, 0xe5, 0x86, 0x45, 0xed, 0x32, 0xd6, 0x91,
0x25, 0x52, 0x67, 0xb0, 0x04, 0x3b, 0x17, 0xf0, 0x45, 0x1e, 0x56, 0x96, 0x07,
0x34, 0x0c, 0xc9, 0xd3, 0x2c, 0x2c, 0xff, 0x70, 0x24, 0x0e, 0xd3, 0x6b, 0xe5,
0xb9, 0x18, 0xf9, 0x0b, 0x13, 0x3b, 0x9c, 0xb2, 0x15, 0x2c, 0xa7, 0x69, 0xb8,
0xe3, 0x1a, 0x8b, 0x7e, 0x7f, 0x22, 0x34, 0x20, 0xa9, 0x06, 0x3d, 0xf3, 0x68,
0xff, 0xda, 0xfa, 0x35, 0x46, 0x4e, 0xca, 0x28, 0x75, 0xe9, 0xf9, 0xd2, 0x8c,
0x15, 0x5c, 0xeb, 0xa6, 0x6e, 0xcc, 0xff, 0x52, 0xf4, 0xff, 0x2e, 0xa4, 0x99,
0xc9, 0xd3, 0x8c, 0xb7, 0x54, 0xa0, 0xc6, 0x76, 0x34, 0xb6, 0xe3, 0x45, 0x0d,
0xda, 0x7e, 0x30, 0x7f, 0x8b, 0x89, 0x33, 0x98, 0x34, 0x83, 0x1d, 0x45, 0xf2,
0xf4, 0xb7, 0x6a, 0xa6, 0x65, 0x51, 0x36, 0xde, 0x7d, 0x37, 0xf1, 0x0f, 0x0d,
0xe1, 0x01, 0x2b, 0x7f, 0x79, 0xf2, 0x37, 0xa1, 0xf1, 0xfc, 0xa6, 0x03, 0x96,
0xfc, 0x30, 0x27, 0x4f, 0x96, 0xc5, 0xcb, 0x72, 0xa5, 0x49, 0x9b, 0x2a, 0x65,
0x73, 0xa5, 0xac, 0x9c, 0xc6, 0x2a, 0xde, 0xe6, 0x84, 0xbf, 0xc2, 0x08, 0xde,
0xea, 0x4e, 0x1a, 0xa4, 0xd5, 0x7b, 0x0b, 0xb5, 0x20, 0x19, 0x33, 0xcb, 0x02,
0x3a, 0xc9, 0x6d, 0x7a, 0x92, 0xe4, 0x6d, 0x92, 0x0c, 0xaa, 0xc4, 0xe0, 0x4a,
0x8c, 0x0f, 0x93, 0x09, 0x8a, 0xaf, 0x0d, 0x9f, 0x97, 0x69, 0x8d, 0x01, 0x6f,
0xf2, 0x02, 0x8e, 0x79, 0xe0, 0xd9, 0xae, 0x71, 0x8d, 0x5c, 0xbb, 0xcd, 0x8c,
0x6b, 0xde, 0x1b, 0x9a, 0xa9, 0xcb, 0x98, 0xe6, 0x7d, 0x88, 0x95, 0x6a, 0x96,
0x69, 0x8f, 0xfd, 0xfc, 0x7f, 0xb3, 0x42, 0x3a, 0xa8, 0xef, 0x0e, 0x99, 0xa4,
0x45, 0x1b, 0xd3, 0xe1, 0xd1, 0x32, 0x42, 0x59, 0xf1, 0x96, 0x0c, 0xc9, 0x52,
0x7d, 0x31, 0x5d, 0xbd, 0x8c, 0x35, 0xfa, 0xb9, 0x52, 0x6b, 0x65, 0xe9, 0xf7,
0x4e, 0x1e, 0x7e, 0x1f, 0x76, 0xa8, 0x02, 0x2d, 0x34, 0x8e, 0xdf, 0xa4, 0xe1,
0x0d, 0x3b, 0x80, 0xca, 0x70, 0x59, 0x75, 0xff, 0xbb, 0xd5, 0xb1, 0x35, 0x32,
0x4e, 0x9d, 0xd9, 0xe3, 0x4d, 0x98, 0xa0, 0xdc, 0x84, 0x4f, 0x6f, 0x94, 0x19,
0x4f, 0xfc, 0x0f, 0x47, 0xfc, 0x0c, 0x06, 0xff, 0x4b, 0xcb, 0x27, 0x79, 0x9f,
0x1d, 0xfd, 0xb1, 0xf3, 0xcf, 0xd6, 0x79, 0xd4, 0xda, 0xda, 0x71, 0xed, 0xe1,
0x4a, 0x38, 0xb3, 0x12, 0xb3, 0xb4, 0x39, 0xbf, 0x20, 0x5b, 0x86, 0x7c, 0x5c,
0x5a, 0x29, 0x4f, 0xdd, 0x78, 0xe6, 0xf6, 0x7e, 0xce, 0x21, 0x1a, 0x5b, 0xa3,
0xb1, 0x31, 0x09, 0xcf, 0x7f, 0x56, 0x1e, 0x72, 0xff, 0x42, 0xc9, 0x6e, 0x4c,
0x71, 0x63, 0x51, 0x19, 0x16, 0x97, 0x61, 0x7a, 0x25, 0x66, 0x54, 0x62, 0x72,
0x0f, 0xa6, 0x28, 0x77, 0x9a, 0x1a, 0xdf, 0xa0, 0xd1, 0xf7, 0x2a, 0x4d, 0x7f,
0x05, 0x0e, 0x54, 0xdc, 0xbf, 0x6e, 0xdb, 0x24, 0x36, 0xcb, 0xd0, 0x11, 0x4c,
0xad, 0xc4, 0x88, 0x4f, 0xe3, 0x92, 0xb1, 0x25, 0x59, 0xb6, 0xd2, 0x52, 0x7e,
0xaf, 0x54, 0xda, 0x7f, 0x73, 0xcc, 0x6f, 0x0a, 0x98, 0xdb, 0xc7, 0x79, 0x6d,
0x57, 0x15, 0xd9, 0x80, 0x51, 0x0d, 0x18, 0x3b, 0x83, 0x71, 0x33, 0x18, 0x7f,
0x87, 0xa9, 0x5f, 0x0b, 0xfc, 0xef, 0x57, 0xbf, 0x93, 0xfd, 0xdd, 0x8c, 0xe7,
0x2d, 0x9f, 0xae, 0xaa, 0x33, 0x63, 0xe6, 0x35, 0xc6, 0xfd, 0x7e, 0x0c, 0xdb,
0xe5, 0x45, 0xb4, 0xec, 0xfd, 0x6b, 0xb3, 0xba, 0xdb, 0x69, 0xec, 0x46, 0x23,
0x7b, 0x70, 0x57, 0x0d, 0xba, 0x69, 0x40, 0x54, 0x2e, 0x63, 0x95, 0xdf, 0x83,
0xc9, 0xf0, 0x06, 0x4c, 0xff, 0x79, 0x3e, 0x59, 0xb5, 0x6d, 0x52, 0xb6, 0x56,
0x07, 0x84, 0xfc, 0xd7, 0x30, 0xa5, 0x96, 0x9b, 0xd3, 0xe8, 0xd0, 0xee, 0x3e,
0xc4, 0xf7, 0xc8, 0x84, 0x9e, 0x47, 0x4d, 0x7c, 0x55, 0x2a, 0xaf, 0xd5, 0x65,
0x44, 0xd1, 0x2b, 0x2c, 0x56, 0xee, 0xb4, 0xe4, 0xf5, 0xf3, 0xa7, 0x21, 0x8d,
0xca, 0x33, 0x96, 0xca, 0x69, 0x59, 0xa5, 0xbc, 0xcb, 0x93, 0x86, 0x35, 0xf7,
0xdf, 0x56, 0x3d, 0x9d, 0x90, 0x67, 0xec, 0x80, 0x6b, 0xb7, 0xb1, 0x8e, 0x5c,
0xfb, 0xeb, 0x79, 0x3c, 0x99, 0x57, 0x7e, 0xca, 0x27, 0x9b, 0x93, 0xe5, 0x81,
0x49, 0x6e, 0xff, 0xe9, 0xcd, 0xef, 0x45, 0x99, 0x9e, 0x9c, 0x5d, 0xfa, 0xa6,
0xd1, 0x44, 0x85, 0x3b, 0xaa, 0xc0, 0xe3, 0x0a, 0xec, 0xab, 0x91, 0x26, 0xff,
0x7f, 0x1b, 0x9b, 0xb9, 0xc5, 0xd9, 0x5b, 0xcc, 0xed, 0x47, 0x03, 0xf9, 0xde,
0xd7, 0x6e, 0x3c, 0x71, 0x63, 0x5e, 0xb6, 0xcc, 0x57, 0x3e, 0x21, 0x94, 0x85,
0x75, 0x4f, 0xfc, 0x61, 0x4c, 0xe3, 0x06, 0x1a, 0xc9, 0xd9, 0xed, 0x99, 0x64,
0xdc, 0xf7, 0x57, 0xaf, 0xf1, 0xc8, 0x8d, 0xc7, 0xee, 0xb7, 0x53, 0x86, 0x9b,
0x30, 0x82, 0x8a, 0x15, 0x9d, 0x86, 0x31, 0x54, 0xa1, 0xcc, 0x38, 0x99, 0xf5,
0xf6, 0x0f, 0x67, 0x6b, 0xef, 0xb0, 0x4e, 0x7d, 0xfe, 0x54, 0x6d, 0xc0, 0x9a,
0xfb, 0x1f, 0xaf, 0x7b, 0x39, 0x2d, 0x2b, 0x94, 0x3f, 0xa3, 0x99, 0x91, 0x63,
0xdf, 0x68, 0xf7, 0x7f, 0x98, 0xdb, 0x57, 0x81, 0x26, 0xbd, 0x8b, 0xf4, 0x54,
0x60, 0x6f, 0x05, 0x26, 0x0e, 0x61, 0x12, 0xcf, 0x5b, 0x89, 0x6e, 0x5c, 0xf8,
0x8e, 0xe3, 0x67, 0xaf, 0xff, 0x7e, 0xf9, 0xef, 0x72, 0xfa, 0xf1, 0xbc, 0x5d,
0x3a, 0xdb, 0x65, 0x5f, 0xb7, 0x34, 0x75, 0xcb, 0x8e, 0x2c, 0xd9, 0x49, 0x8b,
0xd3, 0xd8, 0x3b, 0x8c, 0xa3, 0x0b, 0xae, 0x8c, 0x48, 0x6b, 0x7a, 0x40, 0xcc,
0x93, 0x1f, 0x70, 0xdb, 0xda, 0xc0, 0xed, 0x0d, 0xac, 0x2e, 0x93, 0x41, 0x9f,
0xd5, 0x0d, 0xc9, 0xe4, 0x5a, 0x99, 0xa2, 0x2d, 0x06, 0x8f, 0x8e, 0xf1, 0x58,
0x1b, 0x8a, 0xa9, 0x8d, 0xe4, 0x11, 0xde, 0x6e, 0xea, 0xe8, 0x19, 0x8c, 0xd1,
0x7e, 0xfc, 0x93, 0x3c, 0x2d, 0x53, 0xb4, 0xee, 0xd9, 0x5f, 0x8a, 0x03, 0xa5,
0xd8, 0xd2, 0x81, 0xad, 0xf7, 0xd6, 0x23, 0x1f, 0xbc, 0x9e, 0x90, 0x27, 0xfa,
0x53, 0xd3, 0xbd, 0x65, 0xdc, 0x5f, 0xc6, 0xdc, 0x6b, 0x34, 0xf0, 0xaa, 0xb1,
0xab, 0x02, 0xbb, 0xbd, 0xe3, 0x20, 0x2f, 0x19, 0xf3, 0x79, 0x91, 0xb2, 0x32,
0x2d, 0x57, 0x95, 0x33, 0x76, 0x25, 0xa1, 0xeb, 0x6b, 0x46, 0xf6, 0xd4, 0x13,
0x68, 0x98, 0x78, 0xbb, 0x1a, 0x25, 0xdd, 0x58, 0x7a, 0xff, 0x2d, 0xc4, 0x32,
0x33, 0x96, 0xdf, 0x7b, 0xf8, 0xb2, 0xb3, 0x8c, 0xbb, 0xcb, 0x7c, 0x02, 0x69,
0xa0, 0x12, 0xe4, 0x15, 0xc9, 0xfc, 0xb7, 0x7f, 0x02, 0xdf, 0xd1, 0x88, 0xe5,
0xff, 0x36, 0xe5, 0xb1, 0x07, 0x3d, 0x4d, 0x1d, 0xd8, 0x7c, 0xaf, 0x2a, 0x53,
0xb7, 0x38, 0xad, 0x2e, 0x7f, 0x33, 0xfb, 0x31, 0xab, 0xdf, 0x1b, 0xb5, 0x52,
0x83, 0xab, 0x34, 0x92, 0x3a, 0x8a, 0xb0, 0xd3, 0xff, 0x43, 0x7a, 0x2b, 0xed,
0xb8, 0x7a, 0xcf, 0xbd, 0xbc, 0x98, 0x97, 0x10, 0xea, 0xbd, 0x6d, 0x60, 0x37,
0xcb, 0x0d, 0xf3, 0x7b, 0xe7, 0xf8, 0xa3, 0x06, 0x3c, 0xa6, 0x7d, 0x51, 0x23,
0x5e, 0x7c, 0x35, 0xd8, 0xfb, 0xdb, 0x96, 0xfa, 0x74, 0xd9, 0x90, 0x2e, 0x3f,
0x28, 0xb9, 0xc5, 0x52, 0xb5, 0x3c, 0x9b, 0x06, 0x74, 0x18, 0x70, 0x69, 0x5a,
0x2e, 0xb3, 0xe9, 0xec, 0xb4, 0x6a, 0x9f, 0xc6, 0xf1, 0x2c, 0x84, 0xd3, 0x8e,
0x80, 0xd9, 0xef, 0xee, 0x2b, 0x7f, 0x3a, 0x37, 0x23, 0x1b, 0x66, 0x7c, 0x57,
0x3b, 0x9a, 0x97, 0x63, 0x9d, 0x01, 0x21, 0x7f, 0x5f, 0x9a, 0x24, 0x3f, 0xc8,
0xee, 0x91, 0x39, 0xca, 0x80, 0xce, 0xab, 0x90, 0xf9, 0xbc, 0xea, 0x48, 0xdf,
0xc6, 0x0c, 0xdf, 0x0a, 0xab, 0x6d, 0x13, 0x13, 0xbf, 0x34, 0xe6, 0xe7, 0x9c,
0x3b, 0x8e, 0xb1, 0x93, 0x44, 0x57, 0x1c, 0xba, 0xfd, 0xfe, 0x43, 0x2d, 0x0b,
0x5d, 0x65, 0x01, 0x8e, 0xbc, 0x80, 0x06, 0xf5, 0x16, 0xd1, 0x8b, 0x21, 0x19,
0xa6, 0xb8, 0xfa, 0xf3, 0x1a, 0xec, 0xff, 0x2b, 0x23, 0x86, 0x2a, 0x13, 0xc0,
0x69, 0x0d, 0x9e, 0x79, 0x97, 0xb8, 0x1d, 0x79, 0xd8, 0xc9, 0x77, 0x6f, 0xa6,
0xd6, 0x70, 0x9a, 0xb7, 0x6d, 0x6f, 0x92, 0xe4, 0x8d, 0xf7, 0xc6, 0x53, 0x7d,
0x37, 0x36, 0x70, 0xeb, 0x46, 0xbf, 0xc6, 0xdd, 0xef, 0x17, 0x97, 0x62, 0x41,
0x36, 0x16, 0x66, 0x63, 0x50, 0xb4, 0x0c, 0x56, 0x5f, 0x57, 0xfc, 0x20, 0xb7,
0x48, 0x9e, 0xe0, 0xdc, 0x37, 0x43, 0xa9, 0x52, 0xc3, 0x59, 0x38, 0xe2, 0x37,
0x8e, 0xed, 0x06, 0x1c, 0xc0, 0x17, 0x7f, 0x1d, 0xf3, 0xa5, 0xc0, 0x3f, 0xca,
0xa0, 0x75, 0xed, 0xd5, 0x3c, 0x5a, 0x3e, 0x7b, 0xf5, 0x3c, 0x49, 0xbd, 0xe5,
0x3f, 0x95, 0x24, 0xa7, 0xd5, 0x8b, 0x34, 0x4d, 0x63, 0x33, 0xff, 0xc2, 0xbf,
0x19, 0xeb, 0x9a, 0x71, 0xa6, 0x50, 0x76, 0x7d, 0xe8, 0x48, 0x09, 0x18, 0x8f,
0x08, 0xb8, 0x51, 0x56, 0x78, 0x33, 0xfb, 0x38, 0xab, 0xdf, 0xbe, 0x7a, 0xb9,
0x8c, 0x1d, 0xdf, 0xdf, 0x66, 0x75, 0x65, 0x83, 0xec, 0xfd, 0xf6, 0xa1, 0x1b,
0x87, 0xe2, 0x70, 0xa5, 0x33, 0xa0, 0x58, 0x7d, 0x5f, 0x27, 0x77, 0x52, 0x3a,
0xfe, 0xae, 0x9d, 0x56, 0x78, 0x89, 0xc7, 0x78, 0xf0, 0xc3, 0xdb, 0x6e, 0x19,
0xdf, 0x83, 0x95, 0xcf, 0x3b, 0xb5, 0x45, 0x66, 0x62, 0xa1, 0x4c, 0xe2, 0xac,
0x7b, 0x6e, 0x84, 0x5d, 0x37, 0xbe, 0x4a, 0xc3, 0x75, 0xcd, 0xf9, 0xf5, 0x4c,
0x63, 0xaf, 0xea, 0x53, 0x77, 0x4a, 0xe5, 0x2e, 0x8f, 0xfe, 0xd4, 0x5a, 0x4c,
0x53, 0x56, 0xe2, 0x9b, 0x23, 0xd4, 0xf7, 0x97, 0x8f, 0xf9, 0xcf, 0x9d, 0xd0,
0xf6, 0x89, 0xf5, 0xdb, 0x79, 0xe9, 0x01, 0xcb, 0x23, 0x72, 0xa7, 0x14, 0x77,
0x4b, 0xb1, 0xbe, 0x1d, 0x87, 0x3f, 0x8e, 0xfc, 0x4a, 0xc5, 0xa7, 0xab, 0x5a,
0x5f, 0xaf, 0xed, 0xc6, 0xa6, 0xdf, 0xdf, 0x26, 0xf7, 0xf4, 0xf2, 0x35, 0x56,
0xbc, 0xc6, 0x8e, 0x0a, 0x8c, 0xfd, 0x6c, 0x44, 0xed, 0x2b, 0x05, 0x85, 0xf2,
0xea, 0x93, 0x1c, 0x65, 0x36, 0x28, 0x5b, 0x46, 0x88, 0xff, 0x7a, 0xb3, 0xd2,
0x5f, 0x6a, 0xd3, 0xe5, 0xf2, 0x87, 0xf3, 0x51, 0xb2, 0x65, 0x01, 0x5b, 0x79,
0x65, 0x7a, 0x51, 0x2a, 0xff, 0x5b, 0x5a, 0xa9, 0xec, 0x49, 0x93, 0xbd, 0x69,
0x32, 0xbd, 0x1f, 0x47, 0x7f, 0xcf, 0xa1, 0x7a, 0xbb, 0x10, 0x13, 0xce, 0x7f,
0xa9, 0xc6, 0xb7, 0xba, 0x3e, 0x37, 0xa1, 0xd3, 0x84, 0xb5, 0x1b, 0x58, 0x47,
0xce, 0x31, 0xa4, 0x50, 0x86, 0x52, 0xcd, 0xec, 0x1b, 0xb8, 0x41, 0xd2, 0x60,
0xb0, 0x34, 0x07, 0xcb, 0xd7, 0x59, 0x78, 0xe2, 0x6d, 0x8a, 0xc4, 0x2c, 0x99,
0xe4, 0xdd, 0x2d, 0x97, 0x84, 0xc8, 0xd2, 0x10, 0x39, 0x5c, 0x2a, 0x47, 0x34,
0x3f, 0xd7, 0x14, 0x2f, 0x9b, 0x79, 0xe5, 0x12, 0xdb, 0x83, 0x71, 0x4a, 0xdb,
0x44, 0x56, 0xc8, 0xa8, 0x0a, 0x19, 0x7f, 0x8c, 0x09, 0xdc, 0xd9, 0x5c, 0xa5,
0xd2, 0xed, 0xf5, 0x88, 0x25, 0x35, 0x58, 0xaa, 0xf4, 0x9b, 0x20, 0x13, 0x06,
0xab, 0x13, 0x41, 0x47, 0x0f, 0x76, 0xf6, 0xe0, 0xcb, 0x70, 0x59, 0x41, 0x8b,
0x82, 0x17, 0xe9, 0xf2, 0xee, 0x59, 0x98, 0xb6, 0xd0, 0x99, 0x4b, 0xc3, 0x79,
0xe5, 0x3d, 0xba, 0x09, 0x34, 0x6a, 0x7e, 0xa3, 0x3a, 0x1e, 0x6b, 0x68, 0xd1,
0x54, 0x3f, 0x81, 0x0d, 0xa4, 0xd9, 0x31, 0xc8, 0xdd, 0xb7, 0xfe, 0x9b, 0x2c,
0x3a, 0x19, 0x63, 0x92, 0x71, 0xe1, 0x18, 0x17, 0x8f, 0x31, 0x7a, 0x44, 0xc6,
0x8c, 0x3c, 0x4c, 0xb0, 0x60, 0x92, 0x8b, 0xfa, 0x26, 0xe5, 0xe5, 0xbc, 0xac,
0xa0, 0x81, 0x3c, 0x67, 0x92, 0xf3, 0x26, 0x19, 0x92, 0x87, 0xa1, 0x79, 0x4f,
0xb9, 0xd9, 0xd7, 0x35, 0x78, 0xa2, 0x94, 0xbc, 0x67, 0x1e, 0x7b, 0xf5, 0x5d,
0xe9, 0x50, 0x16, 0x5a, 0xbc, 0x56, 0x8a, 0xaf, 0x95, 0x09, 0x4f, 0x7c, 0xc8,
0xa0, 0x71, 0x1a, 0x8d, 0xd4, 0x43, 0x96, 0xae, 0x71, 0x59, 0xd9, 0x65, 0x37,
0x2d, 0x60, 0x33, 0xb7, 0xd7, 0x55, 0x1a, 0x76, 0xe3, 0x8e, 0x48, 0xfd, 0xf7,
0xf6, 0xb8, 0x80, 0x9c, 0x09, 0xd9, 0x92, 0x8e, 0x0b, 0xff, 0x25, 0xc1, 0x8d,
0x76, 0x37, 0x6e, 0xb8, 0x31, 0x79, 0x19, 0x53, 0x96, 0xb1, 0xec, 0x1a, 0xcb,
0x39, 0x4f, 0xf5, 0x06, 0xae, 0x89, 0xae, 0x6f, 0x2d, 0x7d, 0xba, 0xcb, 0x93,
0x62, 0x62, 0x21, 0xda, 0x43, 0x03, 0x9c, 0xa5, 0x8f, 0x5d, 0xae, 0xb2, 0x46,
0x56, 0x51, 0x9a, 0xc8, 0x34, 0x8c, 0xd2, 0x67, 0xe7, 0xcc, 0x09, 0x39, 0x5f,
0x19, 0x30, 0x50, 0x88, 0x91, 0xe1, 0x32, 0xca, 0x6f, 0xed, 0x55, 0x3d, 0x24,
0x6b, 0xd4, 0x75, 0x5c, 0x74, 0x0f, 0xba, 0x7e, 0xeb, 0x7f, 0x1c, 0xaa, 0xde,
0x61, 0xee, 0x18, 0xe7, 0x99, 0xbb, 0x98, 0xc7, 0xcb, 0x79, 0x4c, 0xed, 0xc7,
0x34, 0xf6, 0x91, 0x41, 0x45, 0x32, 0x58, 0x73, 0xbb, 0x6d, 0x49, 0xd8, 0x9e,
0x84, 0x0b, 0x23, 0x72, 0x91, 0xad, 0x9b, 0xdc, 0x8f, 0x29, 0x9c, 0xa0, 0x32,
0x0d, 0xab, 0xd2, 0x7e, 0xd1, 0x9b, 0x08, 0xf5, 0xd9, 0xd8, 0xa0, 0xdd, 0x55,
0x0f, 0x09, 0x91, 0xa1, 0x21, 0xf2, 0x75, 0x21, 0x9e, 0x3c, 0xf2, 0x89, 0xcd,
0x10, 0x03, 0x86, 0xd2, 0xe4, 0xfb, 0xc2, 0x80, 0x61, 0x8f, 0xfd, 0x29, 0x4a,
0x59, 0xb8, 0x7c, 0xf1, 0xa5, 0x1a, 0x72, 0x0c, 0xfd, 0x67, 0x38, 0x70, 0x86,
0x6d, 0xd7, 0xd8, 0xf2, 0xbd, 0x33, 0xbf, 0xfb, 0x0b, 0xb6, 0x52, 0x9c, 0xf9,
0xcd, 0xa5, 0x3f, 0x8c, 0x51, 0xdf, 0xa2, 0x99, 0xc0, 0x13, 0x7d, 0x42, 0x8a,
0x0d, 0x93, 0x1b, 0x7f, 0x93, 0xfa, 0xe3, 0xa9, 0x1f, 0xa5, 0xa8, 0xbe, 0xfc,
0x22, 0x0d, 0x17, 0x7e, 0x64, 0xdd, 0xc7, 0xa3, 0x09, 0x3c, 0xe6, 0x34, 0x07,
0x0d, 0x78, 0xd8, 0x40, 0x3b, 0xa0, 0xd7, 0x18, 0xa1, 0xfc, 0x71, 0x44, 0xc1,
0x0e, 0x16, 0xaa, 0x2f, 0x21, 0x24, 0xf6, 0x63, 0x52, 0x3f, 0xde, 0xc5, 0xc9,
0x40, 0xfd, 0x43, 0x75, 0x21, 0x43, 0x32, 0x74, 0xe8, 0x5d, 0x33, 0xc2, 0x85,
0x41, 0x5e, 0x72, 0xc7, 0x7d, 0xd5, 0x2d, 0xd7, 0xbb, 0x65, 0xa4, 0x49, 0xe6,
0xc7, 0x07, 0x6c, 0xfd, 0x89, 0x95, 0xc7, 0xf4, 0xeb, 0x76, 0x39, 0xf1, 0x97,
0x85, 0x2b, 0x18, 0xf2, 0x0a, 0x43, 0x69, 0xe5, 0xe5, 0x4a, 0x43, 0x77, 0xda,
0x3f, 0xee, 0xc6, 0xcc, 0x2b, 0x37, 0xae, 0x93, 0x17, 0x38, 0x4f, 0x43, 0x27,
0x9f, 0x29, 0x36, 0x1b, 0xe3, 0xf4, 0xc7, 0x17, 0x5d, 0x71, 0xb2, 0x9b, 0x56,
0x3a, 0xb9, 0xc9, 0x68, 0x50, 0xbe, 0x5c, 0x9f, 0x27, 0x0f, 0xbf, 0x99, 0xf0,
0x83, 0x3a, 0x8a, 0x2e, 0x28, 0xc5, 0xc2, 0x52, 0xdc, 0x2a, 0xc5, 0xb2, 0x1f,
0xc4, 0x29, 0x2e, 0x24, 0x7b, 0x02, 0x73, 0x74, 0x5b, 0x75, 0xa5, 0xc9, 0xee,
0x07, 0x7b, 0xc6, 0xa5, 0x76, 0x8c, 0xfe, 0x79, 0xd0, 0x87, 0xbb, 0x34, 0xb0,
0x42, 0x16, 0x64, 0x28, 0xef, 0x1d, 0xef, 0xa2, 0x64, 0x20, 0xfb, 0xf8, 0xbc,
0x52, 0xcc, 0x2f, 0xc5, 0xe8, 0x30, 0x19, 0x73, 0xff, 0xe7, 0x3c, 0xa9, 0xe9,
0x98, 0xc6, 0xb7, 0xd9, 0x8b, 0x2a, 0x65, 0xf1, 0xfd, 0x47, 0x9f, 0xb5, 0xed,
0x38, 0xf5, 0xa7, 0xc1, 0x5a, 0x3f, 0xf5, 0xc4, 0xc9, 0x5b, 0x75, 0x35, 0x76,
0xd4, 0x2e, 0xe1, 0xd0, 0xd7, 0x96, 0x41, 0x79, 0x18, 0xfc, 0xf6, 0x70, 0x4d,
0x9c, 0x96, 0x49, 0xca, 0xb2, 0x23, 0xba, 0x46, 0xc6, 0xa8, 0xeb, 0xc7, 0xb6,
0x0a, 0xcc, 0xfd, 0xe1, 0xa2, 0xf7, 0xf6, 0x56, 0xa5, 0x41, 0x56, 0x91, 0xf1,
0x83, 0x0c, 0x18, 0x6c, 0xc0, 0x2d, 0x5a, 0x94, 0xea, 0xce, 0xa0, 0x29, 0x1a,
0x9b, 0xf5, 0xa7, 0xcb, 0x89, 0x66, 0x99, 0x64, 0x96, 0xb6, 0x34, 0x5c, 0x23,
0x9b, 0xa5, 0x4f, 0xc8, 0xb4, 0xbf, 0x09, 0xe6, 0xd6, 0x2e, 0x28, 0xc3, 0xc2,
0x32, 0x5a, 0x88, 0x54, 0x48, 0x03, 0x4d, 0xb0, 0x7b, 0xed, 0x72, 0x9f, 0xcb,
0x13, 0x14, 0x8f, 0x99, 0xd9, 0x01, 0x39, 0xbf, 0xf0, 0x46, 0x5f, 0x2d, 0xd6,
0x88, 0xac, 0x7a, 0xe8, 0xab, 0x92, 0xd3, 0x31, 0x25, 0xfd, 0xe9, 0xd6, 0xb7,
0xb9, 0x71, 0xe2, 0xfb, 0x09, 0xec, 0x95, 0xe6, 0x46, 0xe4, 0xfc, 0xbd, 0xcc,
0x2d, 0x9b, 0xd8, 0xea, 0x7d, 0xeb, 0xa2, 0x31, 0x59, 0x2e, 0xfe, 0xca, 0xea,
0xbd, 0x75, 0x6f, 0x5b, 0x91, 0x6c, 0xa7, 0xc1, 0xdc, 0x52, 0x88, 0xad, 0xda,
0x20, 0xab, 0x5f, 0xc0, 0x06, 0xbf, 0xff, 0x81, 0xeb, 0xe8, 0x91, 0x9d, 0xca,
0x62, 0x62, 0xd8, 0x2c, 0x0b, 0x8d, 0x01, 0x91, 0x41, 0x01, 0x3f, 0x3b, 0xfd,
0x92, 0xd1, 0xe7, 0x6d, 0xbb, 0xe6, 0xb1, 0x5b, 0x71, 0x83, 0x2f, 0xf3, 0x64,
0x85, 0xfa, 0x6a, 0x4b, 0xd7, 0x3e, 0x76, 0x3f, 0xfa, 0xa4, 0x68, 0xa8, 0x54,
0x5a, 0x4a, 0xdf, 0x6d, 0x9c, 0x53, 0x13, 0x9e, 0xd1, 0x7c, 0xf0, 0xd2, 0x80,
0x15, 0xf7, 0x87, 0xf5, 0xcc, 0x31, 0xce, 0xfa, 0x6f, 0x28, 0xe3, 0xcd, 0x32,
0x81, 0x46, 0xe8, 0xf8, 0x2d, 0x4e, 0xdc, 0x3e, 0x6d, 0x99, 0xbc, 0x42, 0x99,
0x7f, 0xef, 0xc7, 0x9a, 0x45, 0x35, 0x58, 0xfc, 0xe0, 0x9e, 0xdc, 0x88, 0x6c,
0x60, 0x93, 0xa5, 0x4e, 0xc8, 0xb5, 0xa2, 0x80, 0x56, 0x5a, 0xbf, 0xee, 0x1d,
0xe3, 0xfe, 0x31, 0x76, 0xc4, 0xc9, 0x4e, 0xea, 0x6f, 0x47, 0x59, 0x78, 0xfc,
0x70, 0x4f, 0x71, 0x17, 0x87, 0x81, 0xf1, 0xfe, 0xba, 0xda, 0x57, 0x58, 0xe7,
0x7d, 0x10, 0xed, 0x32, 0x48, 0xb7, 0xff, 0x6c, 0x14, 0x34, 0x23, 0x83, 0x67,
0x64, 0x41, 0xbc, 0x2c, 0x8c, 0xbf, 0x57, 0xf7, 0xf8, 0x42, 0x99, 0x50, 0xf8,
0x8f, 0xea, 0x2a, 0xff, 0xd4, 0x47, 0x75, 0x37, 0xd6, 0x74, 0xa3, 0x27, 0x4a,
0xde, 0x46, 0xc9, 0x4d, 0x93, 0x74, 0xf8, 0xdd, 0xc2, 0x8b, 0x93, 0x2f, 0xfe,
0x85, 0x21, 0x5b, 0x56, 0x6e, 0xe3, 0xd2, 0xf3, 0xb0, 0xb7, 0xff, 0x85, 0xcf,
0x35, 0x8f, 0x6e, 0xbf, 0x5b, 0xb4, 0x25, 0xc7, 0x58, 0x7a, 0x8c, 0x8d, 0xc7,
0x68, 0x3c, 0x7e, 0xbb, 0x6d, 0x62, 0x93, 0x30, 0xee, 0xf1, 0xdf, 0x85, 0x86,
0x4f, 0xca, 0x08, 0xff, 0x97, 0xe9, 0x43, 0x5e, 0x63, 0x28, 0x5d, 0x6b, 0x70,
0x44, 0x36, 0xff, 0x4e, 0x82, 0xdf, 0x6d, 0xfa, 0x9e, 0x28, 0xd9, 0xab, 0xbe,
0xe3, 0x6b, 0x1f, 0xc1, 0x8d, 0x91, 0x5f, 0xcc, 0x2d, 0xda, 0xb2, 0xe4, 0x9a,
0x7a, 0xce, 0x96, 0x03, 0x6c, 0x55, 0x6e, 0x75, 0x6e, 0x66, 0xa1, 0xe3, 0x61,
0x5b, 0x17, 0x8c, 0xca, 0xc2, 0xd1, 0xb7, 0x5b, 0xc9, 0x6e, 0x92, 0x1b, 0xa6,
0xa7, 0x1b, 0x2f, 0xaf, 0x0c, 0xf3, 0xd5, 0xd7, 0x1c, 0x17, 0xa2, 0x70, 0xf4,
0x8f, 0x0b, 0x7e, 0x9c, 0xf0, 0xed, 0xe6, 0x03, 0xe5, 0x7f, 0x2c, 0x65, 0x52,
0xe5, 0x3f, 0x4f, 0x9b, 0xf7, 0x97, 0xca, 0x01, 0x1e, 0x5c, 0x95, 0x59, 0x58,
0xc5, 0x95, 0x68, 0xda, 0xc4, 0xe6, 0x4d, 0x6c, 0x29, 0x95, 0xad, 0x8f, 0x0c,
0xb9, 0x9d, 0x76, 0xd9, 0xf0, 0x95, 0x66, 0x8e, 0xc8, 0xac, 0x90, 0x59, 0xaa,
0xc3, 0x8a, 0x0c, 0x93, 0x51, 0x61, 0x32, 0xb6, 0x50, 0xc6, 0xa9, 0xbd, 0xf2,
0xa5, 0x41, 0x56, 0x3c, 0x58, 0x55, 0xcd, 0x98, 0xa4, 0xf5, 0xeb, 0xa1, 0xaa,
0xb2, 0x2c, 0x4f, 0x96, 0xd3, 0x78, 0xdf, 0x89, 0xc2, 0x5d, 0xe5, 0x71, 0xd8,
0x60, 0x1c, 0x9a, 0x7d, 0xdb, 0x87, 0xea, 0x3b, 0xdc, 0xfb, 0x8d, 0x0c, 0x3a,
0xf1, 0x68, 0x14, 0x8e, 0xf1, 0x0f, 0xa9, 0x27, 0x65, 0x2b, 0x37, 0x6d, 0x74,
0x96, 0x8c, 0xe1, 0x97, 0xb0, 0x1a, 0x64, 0x5a, 0x44, 0x40, 0x4a, 0x05, 0xbe,
0x36, 0xe1, 0x89, 0xef, 0x46, 0xc0, 0x70, 0x83, 0x1c, 0xf1, 0xff, 0xec, 0x7c,
0x48, 0xba, 0x9c, 0xff, 0xd6, 0xe9, 0x6f, 0xe7, 0xab, 0x03, 0xa7, 0xa5, 0x07,
0x5b, 0x95, 0x85, 0xe5, 0xcc, 0x88, 0x9c, 0xbd, 0xe7, 0xe5, 0x2a, 0xef, 0xb0,
0xea, 0xee, 0xe9, 0x6e, 0x50, 0x12, 0x2e, 0x4b, 0x1f, 0xfc, 0x43, 0x5a, 0x64,
0x0f, 0x26, 0x3e, 0xcf, 0xa1, 0x25, 0x7d, 0xe6, 0x10, 0x66, 0xf1, 0xca, 0x7e,
0xb3, 0x14, 0x1d, 0xf7, 0xde, 0xa1, 0x58, 0x32, 0xe3, 0xb2, 0x19, 0x4f, 0x4b,
0xe5, 0x99, 0x6a, 0xbf, 0xc6, 0x5b, 0x34, 0x92, 0xa7, 0x09, 0x6f, 0xc4, 0x88,
0x46, 0xec, 0xd8, 0xc7, 0x4e, 0x3f, 0x17, 0xb7, 0x73, 0x8c, 0xbb, 0xc7, 0x8f,
0x5e, 0xbf, 0xa5, 0x48, 0xb6, 0x92, 0x7f, 0xbd, 0x4a, 0x92, 0xd7, 0xca, 0x2e,
0x25, 0x68, 0x5e, 0x06, 0x6b, 0x3b, 0xc6, 0x57, 0x26, 0xb9, 0xf2, 0x73, 0xe8,
0x1e, 0x00, 0xe8, 0x1a, 0x80, 0x5e, 0x82, 0x1e, 0x0a, 0x00, 0x9d, 0x0a, 0x85,
0x3e, 0x15, 0xe8, 0x68, 0x1e, 0x80, 0x46, 0x55, 0xa8, 0x21, 0xa8, 0x1e, 0x80,
0x3a, 0x96, 0xea, 0x07, 0xc0, 0xa8, 0x27, 0xa1, 0xfc, 0x7c, 0x9e, 0x0e, 0x96,
0xdb, 0x99, 0x7c, 0x04, 0x30, 0x4e, 0x38, 0x31, 0xa0, 0xa0, 0x95, 0x55, 0x53,
0x03, 0x30, 0xeb, 0x3d, 0x25, 0xc0, 0xe6, 0x00, 0x6c, 0x0f, 0x68, 0x54, 0x39,
0x8e, 0x06, 0xe0, 0x64, 0x80, 0x32, 0x7a, 0x06, 0x20, 0x70, 0x90, 0xe4, 0xa0,
0x41, 0x08, 0x1d, 0x84, 0xb7, 0x8f, 0x12, 0x52, 0x96, 0x0e, 0x2a, 0x58, 0x4e,
0x50, 0x46, 0x81, 0x50, 0x93, 0xe8, 0xa8, 0x26, 0xa8, 0x19, 0x84, 0x4a, 0x45,
0xd2, 0x53, 0x00, 0x14, 0x0f, 0x82, 0x37, 0x0f, 0xbc, 0x1c, 0x84, 0x2a, 0xfd,
0xdc, 0x4d, 0xc4, 0x34, 0x0f, 0x42, 0x23, 0xcb, 0x0d, 0x9a, 0xb2, 0x8d, 0xb1,
0x75, 0x90, 0xe3, 0x88, 0x42, 0xcb, 0xa0, 0x22, 0xa9, 0x47, 0x1f, 0x31, 0xa6,
0x41, 0xe8, 0x61, 0xb9, 0x9b, 0x09, 0x71, 0x24, 0xb3, 0x7e, 0x80, 0xc5, 0xc1,
0x41, 0xb0, 0x30, 0x0e, 0x0f, 0xc2, 0x98, 0xb7, 0xfc, 0x0b, 0x83, 0xb0, 0x3c,
0xa8, 0x51, 0xed, 0xd8, 0x22, 0x6e, 0x7b, 0x50, 0xc1, 0x5d, 0x82, 0x1d, 0x0a,
0x84, 0xaa, 0xe4, 0xa7, 0xe3, 0x34, 0x9b, 0x83, 0x1a, 0x05, 0x87, 0x9a, 0x7d,
0x8f, 0x60, 0x7f, 0x50, 0xc1, 0x43, 0xd6, 0x1c, 0x0d, 0xc2, 0xc9, 0xa0, 0x46,
0xf9, 0xa8, 0xef, 0xa7, 0xba, 0xf4, 0x43, 0x6d, 0xbf, 0x8f, 0x42, 0x58, 0x00,
0x78, 0x1b, 0x9a, 0x1b, 0x77, 0x80, 0x71, 0x70, 0x00, 0x2c, 0xde, 0x46, 0x99,
0x19, 0x80, 0x79, 0x12, 0xe6, 0x28, 0xcc, 0x6b, 0x4a, 0x1b, 0xe1, 0x3e, 0x85,
0xbd, 0x01, 0x38, 0x1c, 0xf0, 0x36, 0x92, 0x7a, 0x5c, 0x11, 0x73, 0x3d, 0x00,
0x17, 0x03, 0x3e, 0xaa, 0x1c, 0x7a, 0xc3, 0xbd, 0x18, 0x84, 0x08, 0xc6, 0xc8,
0x41, 0xc8, 0xf0, 0xd6, 0xba, 0x68, 0x90, 0x1b, 0x4f, 0xa5, 0xda, 0x51, 0x3f,
0xa8, 0x1a, 0x9e, 0xd0, 0x48, 0xa0, 0x34, 0x04, 0xd4, 0x29, 0x54, 0x6f, 0x94,
0xda, 0x41, 0x8d, 0x6a, 0x7a, 0xbd, 0xd1, 0xf4, 0x06, 0xe2, 0x06, 0xeb, 0xf4,
0xef, 0x2c, 0xe3, 0x24, 0x4c, 0x68, 0x8a, 0xb9, 0x41, 0x58, 0x7c, 0xa4, 0x23,
0x5d, 0x0c, 0xc2, 0xb5, 0x57, 0xfd, 0xc2, 0x4c, 0x06, 0x32, 0x2b, 0x18, 0x61,
0xe6, 0x32, 0x9b, 0x21, 0xc6, 0xac, 0xc5, 0xa5, 0x12, 0x93, 0x66, 0x86, 0x64,
0x33, 0x53, 0xed, 0x28, 0x30, 0x43, 0x31, 0x0b, 0x25, 0x66, 0x28, 0x67, 0x7c,
0x69, 0x86, 0x2a, 0xf3, 0x23, 0x9d, 0x75, 0x9c, 0x94, 0xd3, 0x43, 0xd4, 0xf9,
0x87, 0x60, 0x96, 0x60, 0x86, 0x82, 0x22, 0xf3, 0xb1, 0x44, 0xb8, 0x3c, 0x04,
0x0b, 0x43, 0x3e, 0xaa, 0x1c, 0xf6, 0x21, 0x70, 0x0c, 0xe9, 0x27, 0xf8, 0xe8,
0xed, 0x73, 0x16, 0x58, 0x00, 0x0a, 0x2d, 0x0a, 0x16, 0x13, 0x14, 0x51, 0x20,
0xd4, 0x24, 0x4a, 0xdf, 0x44, 0xd0, 0x6c, 0x81, 0x46, 0x8b, 0x46, 0xc1, 0x68,
0x01, 0x45, 0xdb, 0x6a, 0x51, 0xe2, 0x58, 0xae, 0xb7, 0x3c, 0xd0, 0xb6, 0x5a,
0xd4, 0x81, 0x4c, 0xd0, 0x6d, 0x81, 0x0e, 0x96, 0xda, 0x99, 0x10, 0x47, 0xb2,
0xae, 0x67, 0xec, 0x65, 0x75, 0x9f, 0x05, 0x06, 0x2c, 0x7a, 0x1d, 0x2d, 0x60,
0x86, 0x28, 0x33, 0x84, 0xb3, 0x01, 0xc2, 0x34, 0x2b, 0xc4, 0x12, 0xc6, 0x99,
0xbd, 0x06, 0xcc, 0x78, 0xcc, 0x38, 0xef, 0x3a, 0x4e, 0x39, 0xc3, 0x89, 0x19,
0x8e, 0xcc, 0x4c, 0x15, 0xd9, 0xa9, 0x9f, 0xc3, 0x43, 0xcc, 0xad, 0x19, 0xde,
0xb0, 0x7c, 0xad, 0x29, 0x83, 0xc8, 0x62, 0xc1, 0x43, 0x0a, 0x86, 0x7a, 0x8d,
0xc7, 0x7d, 0x3e, 0xd3, 0x02, 0x39, 0x54, 0xd2, 0x6c, 0x0b, 0x18, 0x2c, 0x1a,
0x55, 0xdd, 0x88, 0x05, 0xca, 0x99, 0x7d, 0x69, 0x81, 0x2a, 0xc6, 0x6a, 0x0b,
0xd4, 0x59, 0xbc, 0x19, 0x3f, 0x1a, 0x25, 0x7e, 0x4c, 0x91, 0x27, 0x2d, 0x30,
0x4d, 0xcc, 0x94, 0x05, 0x66, 0x2d, 0x8f, 0x14, 0x54, 0x6f, 0xa0, 0xc4, 0x61,
0x80, 0xa4, 0x61, 0x05, 0x53, 0x86, 0xef, 0x51, 0xf5, 0xc8, 0x25, 0xc6, 0x30,
0x0c, 0xd9, 0xc3, 0x1a, 0x05, 0xc8, 0x1a, 0xf6, 0xd3, 0xab, 0x65, 0x1a, 0x86,
0xf2, 0x61, 0xbf, 0x73, 0xb7, 0x91, 0xd0, 0xae, 0x29, 0xfa, 0x08, 0x4d, 0xc3,
0x8f, 0x14, 0x60, 0x73, 0x18, 0xb6, 0x35, 0xfd, 0xd1, 0x30, 0x9c, 0x30, 0x7b,
0x3a, 0x0c, 0x4e, 0x46, 0xd7, 0x30, 0x5c, 0xea, 0x59, 0x82, 0x46, 0xc8, 0x40,
0x14, 0x20, 0x64, 0x04, 0xc2, 0x46, 0xb4, 0x46, 0x1a, 0x81, 0x84, 0x91, 0x77,
0x34, 0x42, 0x1f, 0x45, 0x9a, 0x46, 0x14, 0x1c, 0x18, 0x61, 0x6b, 0x0e, 0x8f,
0xc2, 0xd8, 0xa8, 0xe6, 0x2c, 0x18, 0xa7, 0x47, 0x61, 0x72, 0x54, 0xa3, 0x60,
0x55, 0x63, 0xe6, 0x46, 0x61, 0x51, 0x4b, 0x03, 0xf6, 0x51, 0x70, 0x8c, 0xfa,
0x99, 0x29, 0x68, 0x8c, 0x0a, 0x31, 0xa6, 0xc6, 0x45, 0x12, 0x46, 0x8d, 0x29,
0x18, 0xc3, 0xaa, 0xd8, 0x31, 0x48, 0xd0, 0xa2, 0x20, 0x93, 0x98, 0xac, 0x31,
0x05, 0xcb, 0x75, 0x5d, 0xfd, 0x18, 0x18, 0x99, 0x6f, 0x1a, 0x83, 0x56, 0xc6,
0xb6, 0x31, 0xe8, 0xd4, 0xe3, 0x06, 0x89, 0x31, 0x8f, 0xf9, 0x0a, 0x3e, 0x37,
0x06, 0x8b, 0x63, 0xef, 0xa8, 0x58, 0xe4, 0x38, 0x5d, 0x7b, 0x5c, 0xc1, 0x98,
0xf1, 0x47, 0x28, 0x1d, 0xf1, 0x4c, 0xe3, 0xc6, 0x21, 0x7a, 0xdc, 0x47, 0x01,
0x46, 0x47, 0x60, 0x62, 0xe4, 0xdd, 0x3d, 0xf7, 0x05, 0x55, 0x38, 0x6c, 0x54,
0xc1, 0x08, 0xae, 0x7b, 0xe4, 0x28, 0xc4, 0xe8, 0xf6, 0x48, 0x25, 0x26, 0x6d,
0x14, 0x92, 0x47, 0x7d, 0x54, 0xed, 0x1c, 0x8c, 0x39, 0xa3, 0x90, 0x39, 0xca,
0x14, 0xb2, 0x15, 0x75, 0xc6, 0xa8, 0xea, 0xb4, 0x0b, 0xa8, 0x26, 0x85, 0x63,
0x90, 0xa7, 0x56, 0x88, 0xcc, 0x92, 0x3e, 0xa6, 0x51, 0x3a, 0x19, 0x91, 0xd4,
0x31, 0xc8, 0x18, 0x53, 0x8d, 0x96, 0xa3, 0x57, 0xba, 0x84, 0x98, 0xd2, 0x31,
0x28, 0x62, 0xb9, 0x50, 0x53, 0xbe, 0x24, 0xac, 0x18, 0x83, 0x8f, 0x9e, 0x30,
0xa0, 0x45, 0xe1, 0x47, 0xc7, 0x60, 0x62, 0xec, 0x91, 0xee, 0xfd, 0xe0, 0xc8,
0x24, 0x63, 0x64, 0x8d, 0x43, 0x3a, 0x41, 0xc6, 0xb8, 0x2a, 0xe7, 0x8c, 0xeb,
0x5a, 0xae, 0x10, 0x51, 0xc3, 0x38, 0x64, 0xb3, 0xa0, 0x6a, 0x20, 0x8f, 0x81,
0x74, 0x1c, 0x97, 0xcf, 0x7c, 0xc1, 0x38, 0x14, 0x8f, 0x6b, 0xe7, 0xab, 0x26,
0xa6, 0x66, 0x1c, 0x2a, 0x59, 0xae, 0xd0, 0x94, 0xf5, 0x84, 0x0d, 0xe3, 0x0a,
0x1a, 0x59, 0xd5, 0x34, 0x0e, 0xad, 0x7a, 0xfa, 0x3e, 0x62, 0x4c, 0xe3, 0xf7,
0x70, 0x80, 0xe3, 0x06, 0xc7, 0xc1, 0xc2, 0x38, 0x3c, 0x0e, 0x63, 0xe3, 0x4f,
0x34, 0x90, 0x8b, 0x22, 0xdc, 0xe3, 0x0a, 0x5e, 0x72, 0x9a, 0xab, 0x71, 0xb8,
0x19, 0xd7, 0xa8, 0xd2, 0x49, 0x27, 0xa8, 0x93, 0x4e, 0xc0, 0xdd, 0xb8, 0x8f,
0x72, 0xb3, 0x32, 0x0d, 0x9d, 0x50, 0xb9, 0x08, 0xc6, 0xc8, 0x09, 0x88, 0x99,
0x50, 0xa7, 0x55, 0xcd, 0x31, 0x4f, 0x42, 0xf1, 0xe4, 0x53, 0xfe, 0xc1, 0xdf,
0xb7, 0x4d, 0x82, 0x93, 0xd3, 0xb9, 0x26, 0xe1, 0x92, 0xf1, 0x6a, 0x12, 0x6e,
0x26, 0xb5, 0x84, 0x89, 0x56, 0x72, 0x23, 0x56, 0x18, 0x1d, 0x87, 0x09, 0x6f,
0xf9, 0x97, 0x88, 0x5b, 0x1e, 0x57, 0x70, 0x95, 0x95, 0xb6, 0x71, 0x58, 0xf7,
0x46, 0x1e, 0x8c, 0xc3, 0xf1, 0xf8, 0x3d, 0xfa, 0x58, 0x25, 0x2f, 0x28, 0x5c,
0xea, 0x79, 0x1e, 0xaf, 0xa0, 0x5e, 0xa1, 0xb7, 0x8f, 0xea, 0x09, 0xa8, 0xd3,
0xf5, 0x6d, 0x13, 0xd0, 0x39, 0xf1, 0x8e, 0xde, 0x7f, 0x34, 0x01, 0x27, 0x1c,
0x7f, 0x3a, 0x01, 0x4e, 0x46, 0xd7, 0x04, 0x5c, 0xea, 0xe9, 0x83, 0xa8, 0xb2,
0xc1, 0x93, 0xba, 0x63, 0xe6, 0xe1, 0x40, 0x95, 0x4d, 0xb3, 0x6a, 0x43, 0xc0,
0x0a, 0xf9, 0x1a, 0x0b, 0x2f, 0x89, 0xa9, 0x60, 0xa1, 0xd2, 0x0a, 0x35, 0xaa,
0xf2, 0xa3, 0x3e, 0x42, 0x13, 0x05, 0xc2, 0x01, 0x56, 0x0d, 0x32, 0x19, 0x50,
0x23, 0x87, 0x09, 0x46, 0xac, 0x30, 0x64, 0xd5, 0x28, 0x58, 0xac, 0xaa, 0x76,
0xcc, 0xaa, 0x51, 0x9a, 0xa5, 0xac, 0x60, 0x65, 0x9c, 0xb2, 0xc2, 0xac, 0xf5,
0x91, 0x76, 0x09, 0x9a, 0xa2, 0xc2, 0x4d, 0x29, 0x18, 0x3a, 0xc5, 0xad, 0x3c,
0x05, 0x11, 0x53, 0x1a, 0x55, 0x7c, 0x25, 0x41, 0xdc, 0x14, 0x44, 0x4f, 0xf9,
0x28, 0x37, 0xd7, 0x14, 0xa4, 0x4c, 0x31, 0x05, 0x48, 0x98, 0xe2, 0x34, 0x44,
0x21, 0x5e, 0xcd, 0x11, 0xc5, 0x10, 0x3d, 0xa5, 0x72, 0xe1, 0xaa, 0x8e, 0xaf,
0x00, 0x21, 0x53, 0xf0, 0xd8, 0xb5, 0xb4, 0x79, 0x84, 0x98, 0xa4, 0x29, 0xf5,
0x1c, 0x71, 0x9a, 0x32, 0x75, 0x0a, 0x32, 0xa6, 0xe0, 0x17, 0x3b, 0x82, 0xa6,
0x89, 0x04, 0x4e, 0x83, 0x67, 0x8a, 0x29, 0xdc, 0x4d, 0xe9, 0x12, 0xdc, 0x4e,
0xe9, 0xf1, 0x61, 0x33, 0xd0, 0x63, 0x65, 0xeb, 0xfa, 0x53, 0xcd, 0xd2, 0x8f,
0xd8, 0xdd, 0xa2, 0xb7, 0x13, 0xd9, 0x12, 0xa6, 0xad, 0x30, 0xc9, 0xf2, 0x84,
0xa6, 0x9c, 0xb3, 0xc2, 0xa2, 0x95, 0xac, 0xbb, 0x65, 0x85, 0x5d, 0x56, 0xed,
0x59, 0xe1, 0xd0, 0xea, 0x57, 0x1e, 0x0f, 0x09, 0xb7, 0x9a, 0x42, 0xaf, 0x77,
0xe4, 0x14, 0xc4, 0x4c, 0x3d, 0xe1, 0x6a, 0xfa, 0x28, 0x81, 0x69, 0x4a, 0xc1,
0x01, 0x82, 0x7e, 0x0a, 0x84, 0xaa, 0xa4, 0xe9, 0x60, 0x90, 0x88, 0x79, 0x8a,
0xe3, 0x1e, 0xa5, 0x1c, 0x6f, 0xe1, 0x74, 0xc3, 0x53, 0x30, 0xc6, 0x38, 0x3e,
0x05, 0xd6, 0xc7, 0xec, 0x79, 0x3a, 0x05, 0xce, 0xc7, 0xf4, 0xa9, 0xd3, 0x90,
0x31, 0xad, 0x0f, 0xf2, 0x69, 0x28, 0x66, 0xbe, 0x64, 0x1a, 0xca, 0x19, 0x5f,
0x4e, 0x43, 0x95, 0x1e, 0xd7, 0x44, 0x4c, 0xf3, 0x34, 0x34, 0x4e, 0x33, 0xd5,
0xcb, 0x3f, 0x0d, 0x03, 0xd3, 0x0f, 0x4f, 0xe8, 0xe7, 0x34, 0xe0, 0x6a, 0x86,
0x56, 0x31, 0x33, 0x0a, 0xde, 0xcc, 0xb0, 0x81, 0x66, 0x20, 0x70, 0x56, 0x9f,
0xa7, 0x88, 0x89, 0x9a, 0x85, 0xf0, 0x59, 0x1f, 0x55, 0xac, 0x94, 0x3b, 0x0b,
0xf9, 0xb3, 0x8f, 0x19, 0x6b, 0x16, 0x06, 0x66, 0xb5, 0xbe, 0xbd, 0x34, 0x0b,
0xab, 0x8f, 0xa5, 0x81, 0xbb, 0x59, 0x08, 0x9e, 0xd3, 0xce, 0x3f, 0x07, 0x31,
0xcc, 0xc6, 0xce, 0x41, 0x02, 0x63, 0xe2, 0x1c, 0xa4, 0xcc, 0xe9, 0xe9, 0xf2,
0xe6, 0xa0, 0x70, 0xee, 0x1e, 0x55, 0x07, 0xe7, 0x1c, 0x54, 0x31, 0x5b, 0x3d,
0x07, 0x75, 0x8c, 0xf5, 0x73, 0x60, 0xd4, 0xf3, 0x74, 0xcd, 0x41, 0xaf, 0xc2,
0xf7, 0xcf, 0x81, 0x59, 0x53, 0x8e, 0x13, 0x4e, 0xcc, 0x29, 0x68, 0x25, 0x98,
0xa4, 0x40, 0xa8, 0x49, 0xdc, 0x61, 0x08, 0xe6, 0xe7, 0x60, 0x66, 0xce, 0x47,
0xd5, 0xad, 0xc7, 0x1c, 0xac, 0xcf, 0xbd, 0xa3, 0x63, 0x27, 0xce, 0xd3, 0x40,
0x99, 0x57, 0x30, 0x85, 0x20, 0x99, 0x02, 0xa1, 0x66, 0xd9, 0x82, 0x05, 0x9a,
0xf7, 0x16, 0x20, 0x6f, 0x81, 0x85, 0x9c, 0x05, 0x7f, 0x1d, 0x63, 0x31, 0x6b,
0x4a, 0x16, 0xa0, 0x7c, 0x41, 0x77, 0x5b, 0x64, 0xa9, 0xe3, 0x59, 0x38, 0x60,
0x83, 0xed, 0xab, 0x46, 0x7e, 0xc3, 0xfc, 0x35, 0x91, 0xab, 0x59, 0xb8, 0x61,
0xde, 0x33, 0x0b, 0x81, 0x7a, 0x81, 0xc8, 0x70, 0x10, 0x35, 0x07, 0xe1, 0x2c,
0x87, 0xcd, 0xbd, 0x6f, 0xb6, 0x7c, 0xf7, 0x11, 0x49, 0x25, 0x8f, 0x9a, 0x57,
0x30, 0x66, 0x9e, 0x1b, 0x63, 0x1e, 0x12, 0xe6, 0x99, 0x42, 0xdc, 0xbc, 0x5f,
0x45, 0xe3, 0x59, 0x50, 0x35, 0x4a, 0x65, 0xfd, 0x2b, 0x0f, 0xa9, 0xf3, 0x90,
0x31, 0xaf, 0xf7, 0x50, 0x62, 0x0a, 0xe7, 0x21, 0x8f, 0x65, 0x83, 0xa6, 0x2c,
0x99, 0x87, 0xf2, 0xf9, 0x47, 0xae, 0x3d, 0x3c, 0x0f, 0x63, 0x8f, 0xe9, 0xfd,
0x3b, 0xa8, 0x6a, 0xed, 0x45, 0xba, 0xe0, 0xa2, 0x82, 0x29, 0x8b, 0x7c, 0xc1,
0x45, 0xc8, 0x58, 0xf4, 0xaf, 0x73, 0xcb, 0x22, 0xb4, 0x2f, 0x6a, 0xbd, 0x70,
0x11, 0x06, 0x16, 0xf5, 0xcd, 0xc1, 0x22, 0x58, 0x17, 0x1f, 0x31, 0x8e, 0x67,
0x11, 0x02, 0x97, 0xde, 0x61, 0x94, 0xfa, 0x25, 0x30, 0x72, 0x7c, 0xd3, 0x12,
0xb4, 0x2e, 0xfd, 0x02, 0x46, 0xcd, 0x5c, 0xa6, 0x85, 0xc7, 0xb2, 0x82, 0x39,
0xcb, 0x3c, 0x62, 0x96, 0x21, 0x7f, 0x59, 0x8d, 0x2a, 0x23, 0x2c, 0x57, 0xf8,
0xca, 0x65, 0xa8, 0x59, 0x7e, 0x7f, 0xdd, 0xe1, 0x74, 0x05, 0x9c, 0x2b, 0xef,
0x68, 0xe4, 0xfa, 0x55, 0x30, 0xae, 0x72, 0x61, 0x57, 0xa1, 0x95, 0xb1, 0x6d,
0x15, 0x3a, 0x57, 0xb5, 0x84, 0x53, 0xc4, 0x4c, 0xb3, 0x72, 0x66, 0x15, 0xe6,
0x57, 0xdf, 0x5f, 0xf0, 0x54, 0x1b, 0xcd, 0x89, 0x36, 0x05, 0x33, 0x08, 0xd2,
0x29, 0x30, 0xaa, 0x2d, 0x4b, 0x4c, 0xa1, 0x0d, 0xf2, 0x6c, 0x4c, 0xf5, 0xc9,
0xd9, 0x06, 0x75, 0x2c, 0xd4, 0xdb, 0xc0, 0xc8, 0xd8, 0x64, 0x83, 0x56, 0x3d,
0xb2, 0x8f, 0x18, 0x93, 0xcd, 0x77, 0xee, 0x29, 0x1b, 0xcc, 0xb2, 0x38, 0x67,
0x83, 0x45, 0xc6, 0x25, 0x1b, 0xac, 0xea, 0xd1, 0x5b, 0xc4, 0x6c, 0xdb, 0x60,
0xd3, 0xe6, 0xa3, 0xea, 0xc8, 0x20, 0x3c, 0xb6, 0x29, 0x78, 0xc2, 0xaa, 0x53,
0x1b, 0x38, 0xf5, 0x3c, 0x1e, 0x62, 0x6e, 0x6d, 0xf0, 0x46, 0x91, 0x2f, 0x99,
0x5e, 0x11, 0xa1, 0x1d, 0x59, 0x03, 0x59, 0xab, 0x7e, 0x05, 0x8c, 0x2b, 0x6c,
0x4d, 0xcd, 0x1a, 0xea, 0x3a, 0x93, 0x18, 0xf3, 0x2a, 0xf4, 0xb3, 0x6c, 0xd2,
0x94, 0xc3, 0x84, 0x23, 0xab, 0x0a, 0x8e, 0xad, 0xde, 0xb7, 0xf2, 0xeb, 0x55,
0x38, 0x5b, 0xd5, 0xe8, 0x3b, 0xf6, 0x5e, 0x9a, 0xf3, 0xa1, 0x6b, 0x77, 0xdb,
0x14, 0xec, 0xb5, 0xa9, 0xb5, 0x1f, 0xd0, 0x4b, 0x3a, 0x4e, 0xcc, 0x84, 0x0d,
0x46, 0x59, 0x1e, 0x51, 0x95, 0x93, 0x0c, 0xa4, 0xe3, 0x38, 0xab, 0xcd, 0xcf,
0x3a, 0x8a, 0xf3, 0x21, 0x66, 0xcd, 0x06, 0x2b, 0x36, 0x1f, 0xf5, 0xb7, 0x12,
0xe3, 0x2e, 0xab, 0xf6, 0x6c, 0x70, 0xa8, 0xe7, 0x71, 0x11, 0xe3, 0xb6, 0xc1,
0x39, 0xcb, 0x67, 0x9a, 0x92, 0xec, 0x71, 0x63, 0x53, 0x2d, 0x15, 0xb8, 0xe6,
0x5f, 0xd8, 0xe4, 0x35, 0x48, 0x5b, 0xd3, 0xa8, 0xde, 0xba, 0xc4, 0x15, 0xae,
0x29, 0x58, 0xcc, 0xca, 0x92, 0x35, 0x28, 0xd7, 0x23, 0xeb, 0x89, 0x69, 0x58,
0x83, 0xda, 0x35, 0x1f, 0x55, 0x97, 0x63, 0x6b, 0xd0, 0xc9, 0x6c, 0xd7, 0x1a,
0xf4, 0xae, 0xbd, 0xd5, 0x81, 0x5f, 0xbd, 0x82, 0x8d, 0x57, 0x4f, 0x9b, 0x2d,
0x77, 0x1d, 0xf2, 0xd7, 0xf5, 0x25, 0xd7, 0x3a, 0x54, 0x31, 0x5f, 0xbd, 0x0e,
0x75, 0x8c, 0xf5, 0xeb, 0x60, 0x5c, 0xd7, 0x52, 0x0f, 0x13, 0x33, 0xb2, 0x0e,
0x43, 0xeb, 0x3e, 0xaa, 0x76, 0xa7, 0x75, 0x98, 0x65, 0x76, 0x6e, 0x1d, 0x16,
0x19, 0x97, 0xd6, 0x61, 0x55, 0x3f, 0x1f, 0xec, 0xac, 0xc3, 0xfe, 0xfa, 0x3d,
0xaa, 0x0e, 0x25, 0xc2, 0xb3, 0x75, 0x05, 0x9d, 0xac, 0x72, 0xad, 0xc3, 0xa5,
0x9e, 0x27, 0xc8, 0x4e, 0xcb, 0x22, 0x3b, 0xdc, 0xad, 0xfb, 0xa8, 0xea, 0x20,
0xed, 0x10, 0x63, 0x7f, 0x6c, 0x5d, 0x6a, 0x87, 0x3a, 0x5d, 0xdf, 0x66, 0x87,
0x4e, 0xfb, 0xbb, 0xd6, 0xa5, 0x14, 0x79, 0x6c, 0x57, 0xf0, 0x84, 0xd3, 0x9d,
0xda, 0xc1, 0xa9, 0xa7, 0xf7, 0xd8, 0x21, 0x70, 0x83, 0xe6, 0x45, 0x3b, 0x04,
0x6f, 0x68, 0x54, 0xbd, 0x2e, 0x61, 0xdc, 0x26, 0x39, 0xe4, 0x4d, 0x48, 0xd8,
0x64, 0x1f, 0xb8, 0x09, 0x29, 0x9b, 0xba, 0xed, 0x88, 0x31, 0x6c, 0xc2, 0xc2,
0x3a, 0x2c, 0xaf, 0x6b, 0x54, 0xdd, 0xf1, 0x12, 0x6e, 0xac, 0x2b, 0xe8, 0x60,
0xd5, 0xd6, 0x3a, 0xec, 0xae, 0x6b, 0x16, 0xf7, 0x90, 0xe2, 0x76, 0x1d, 0xde,
0xac, 0x6b, 0x14, 0x6e, 0x28, 0xe8, 0xf8, 0x8e, 0x9e, 0xdd, 0x45, 0x05, 0xed,
0xb6, 0x2b, 0xd8, 0xcb, 0x65, 0xee, 0xb3, 0xc3, 0x80, 0x5e, 0xf6, 0x71, 0x62,
0x26, 0xec, 0x30, 0x6a, 0xf7, 0x51, 0x75, 0x56, 0x25, 0x9c, 0xb7, 0x2b, 0xb8,
0x68, 0x57, 0x24, 0x3a, 0xac, 0x76, 0xff, 0xb8, 0x19, 0xbb, 0x46, 0x61, 0x96,
0x82, 0x4f, 0x82, 0x69, 0x22, 0x53, 0x76, 0x45, 0xab, 0xe5, 0xd7, 0xea, 0x46,
0xcc, 0x86, 0x1d, 0x5e, 0x29, 0xf2, 0xaa, 0xdd, 0x5f, 0xa7, 0xde, 0x95, 0xb4,
0xc3, 0xe1, 0xbd, 0x36, 0xf0, 0xb3, 0xe5, 0xbb, 0x8e, 0x3e, 0x4a, 0x63, 0xda,
0x50, 0x70, 0x80, 0x93, 0x0f, 0x6e, 0x80, 0x65, 0x43, 0xa3, 0x4a, 0x77, 0x9e,
0x22, 0x63, 0x4f, 0x6f, 0xc2, 0xe4, 0xa6, 0x46, 0xc1, 0xaa, 0x34, 0xc3, 0x0c,
0x53, 0xd2, 0x00, 0xc5, 0xcf, 0x32, 0x3f, 0xb7, 0x09, 0x8b, 0x7a, 0x03, 0xd9,
0x89, 0xd9, 0xd8, 0x84, 0x57, 0x2c, 0xaf, 0x69, 0xca, 0x2d, 0xc2, 0x33, 0x0a,
0xa7, 0x9b, 0xe0, 0x64, 0x95, 0x6b, 0x13, 0x2e, 0x37, 0x7d, 0xe5, 0x08, 0x77,
0xf0, 0xd5, 0x1c, 0x10, 0xe2, 0x60, 0xca, 0x1d, 0xc0, 0x01, 0x31, 0x8e, 0x77,
0xcc, 0xec, 0xc3, 0x14, 0x39, 0xe2, 0x80, 0x21, 0x02, 0x8b, 0x43, 0x95, 0xc7,
0x1c, 0x1a, 0x55, 0x06, 0x08, 0xc1, 0xb4, 0x03, 0x26, 0x1d, 0x3e, 0xaa, 0x6e,
0xe8, 0x1c, 0xb0, 0xca, 0xac, 0xcd, 0x01, 0xeb, 0x8e, 0x07, 0xe7, 0xbc, 0x22,
0xc5, 0xb5, 0xe3, 0xfd, 0x46, 0x6b, 0xdb, 0x82, 0xce, 0x2d, 0x4e, 0xbf, 0x01,
0x37, 0x6c, 0x26, 0xcf, 0x06, 0x04, 0x7a, 0xeb, 0x12, 0xbd, 0xc9, 0x1d, 0xd7,
0x9f, 0xaa, 0x73, 0xcb, 0x26, 0x64, 0x30, 0x9b, 0xb9, 0x09, 0x39, 0x9b, 0x6a,
0x27, 0xce, 0xdf, 0xf4, 0x3a, 0x8d, 0x5a, 0x07, 0x34, 0x38, 0x40, 0xa5, 0x7a,
0xcf, 0x63, 0xae, 0xd3, 0x01, 0x6d, 0x0e, 0xa6, 0xd0, 0xa1, 0x44, 0xb4, 0x3a,
0xbc, 0x71, 0xdd, 0x0e, 0xd6, 0x79, 0x29, 0x40, 0x8f, 0x03, 0x4c, 0x0e, 0xa6,
0xd0, 0x4b, 0xe1, 0xa3, 0x71, 0x07, 0x58, 0x1d, 0xaa, 0x21, 0x66, 0xbd, 0x27,
0x7d, 0xe5, 0x80, 0x0d, 0x87, 0x46, 0xf5, 0xd1, 0xe9, 0x80, 0x13, 0xc7, 0x3b,
0x56, 0x50, 0xd5, 0x5b, 0x50, 0xc7, 0x95, 0xad, 0xdf, 0x02, 0x23, 0x63, 0xd3,
0x16, 0xb4, 0x6e, 0x3d, 0x92, 0x6e, 0x69, 0x0b, 0x56, 0x59, 0x6f, 0xdb, 0x82,
0x75, 0x46, 0xfb, 0x16, 0x38, 0xf4, 0x74, 0x47, 0x5b, 0x70, 0x42, 0xfc, 0xeb,
0x2d, 0x38, 0xf3, 0x66, 0xf5, 0x6c, 0x41, 0xe0, 0x36, 0x7b, 0x9e, 0x6d, 0x08,
0x65, 0x7c, 0xb1, 0x0d, 0x11, 0xdb, 0xfa, 0x8a, 0x67, 0x1b, 0x52, 0x88, 0x4f,
0xde, 0x86, 0xb4, 0xed, 0xcf, 0xb3, 0xe2, 0x58, 0xa2, 0x54, 0xcb, 0xdb, 0x0a,
0xae, 0x12, 0xac, 0x50, 0x20, 0x24, 0x69, 0x7d, 0x47, 0xed, 0x7c, 0x04, 0xdb,
0x3b, 0xb0, 0xc9, 0xd2, 0xc6, 0x0e, 0xbc, 0xda, 0xf1, 0x51, 0xb0, 0xab, 0x49,
0x56, 0x09, 0x56, 0x54, 0x76, 0x5e, 0x81, 0x25, 0xa2, 0xcb, 0x3b, 0xb0, 0xb0,
0xe3, 0xa3, 0x4a, 0x8a, 0x35, 0x42, 0x1b, 0x05, 0x0d, 0xe9, 0x0a, 0x1f, 0xc1,
0xd1, 0x0e, 0x9c, 0xec, 0xe8, 0x9d, 0x88, 0x98, 0xeb, 0x1d, 0xb8, 0x60, 0xd9,
0xcd, 0x84, 0x38, 0x92, 0x75, 0x3d, 0xe3, 0xcd, 0x8e, 0xbf, 0xb3, 0xc9, 0xde,
0x05, 0xc3, 0xee, 0xe7, 0x5b, 0x59, 0x6d, 0x51, 0xba, 0xed, 0x5d, 0x05, 0x77,
0x09, 0x76, 0x28, 0x10, 0x6a, 0x12, 0xdb, 0x99, 0xe0, 0x78, 0x17, 0x0e, 0x76,
0x99, 0x96, 0x91, 0x15, 0xca, 0x55, 0xf3, 0x55, 0x13, 0xd4, 0x6c, 0x2b, 0x58,
0x47, 0x50, 0x4b, 0xa1, 0x4e, 0x37, 0x6c, 0x1b, 0x31, 0xed, 0xdb, 0xd0, 0xc2,
0x72, 0xb3, 0xa6, 0xec, 0x22, 0xec, 0xde, 0x56, 0xb0, 0x97, 0x55, 0x7d, 0xdb,
0x30, 0xe0, 0x6d, 0x88, 0xc9, 0x6d, 0x98, 0xde, 0x66, 0x4a, 0xde, 0x6f, 0xdb,
0x2b, 0xc3, 0xd4, 0x36, 0xcc, 0xb2, 0x38, 0xb7, 0x0d, 0x8b, 0x4f, 0x35, 0x5a,
0x10, 0x57, 0x3c, 0x70, 0x07, 0x3c, 0xdb, 0x4c, 0x15, 0x39, 0x74, 0x47, 0x9f,
0x33, 0x13, 0xa9, 0xf0, 0x49, 0xbb, 0x10, 0xbf, 0xeb, 0xa3, 0xea, 0x72, 0x72,
0x17, 0x72, 0x98, 0xcd, 0xdd, 0x85, 0xfc, 0xdd, 0x07, 0x5e, 0x7a, 0x70, 0x17,
0x2c, 0xba, 0x6e, 0x6a, 0x17, 0x66, 0x77, 0x1f, 0xf1, 0xe4, 0x41, 0x7b, 0x10,
0xba, 0xa7, 0x69, 0x62, 0x89, 0x89, 0xdb, 0x53, 0x30, 0x81, 0x75, 0x89, 0x7b,
0x90, 0xa2, 0xc7, 0xe5, 0x12, 0x63, 0xd8, 0xf3, 0xeb, 0xf8, 0x7b, 0x50, 0xc7,
0x62, 0xfd, 0x1e, 0x18, 0xf7, 0x9e, 0xa8, 0x90, 0x8d, 0x22, 0xd6, 0xf6, 0x14,
0x5c, 0x27, 0x78, 0xa5, 0xa4, 0x5b, 0x55, 0x53, 0xdb, 0x09, 0x36, 0xf6, 0x58,
0xe7, 0xa5, 0x00, 0x9b, 0x44, 0x1c, 0x7b, 0x1c, 0xe7, 0xd0, 0xcf, 0x79, 0xb4,
0x07, 0x27, 0xfe, 0xe7, 0x0f, 0xda, 0x87, 0xd0, 0x7d, 0xbd, 0xbc, 0xfb, 0x90,
0xb0, 0xff, 0x64, 0x77, 0x20, 0xc3, 0x0d, 0x1e, 0xd0, 0xa2, 0x8e, 0x02, 0xa1,
0xe5, 0x80, 0xdd, 0xe0, 0x01, 0x8c, 0x1d, 0xf8, 0xa7, 0x79, 0x75, 0x00, 0x1b,
0x9a, 0x62, 0xef, 0x00, 0x0e, 0x0f, 0xc8, 0x28, 0x57, 0x07, 0x70, 0xc3, 0x2a,
0xcf, 0x01, 0x04, 0x1e, 0xea, 0x1b, 0xa1, 0x43, 0x88, 0x21, 0x3e, 0xfa, 0x10,
0xe2, 0x0e, 0x35, 0xaa, 0xba, 0x2d, 0xc2, 0xb4, 0x43, 0x05, 0x33, 0x58, 0x95,
0x79, 0x08, 0xe5, 0x7a, 0x9e, 0x7a, 0x62, 0x1a, 0x0e, 0xa1, 0xf6, 0x90, 0xe9,
0xe7, 0x38, 0x5c, 0x94, 0xca, 0x7d, 0xa8, 0xe0, 0x25, 0x67, 0xb8, 0x3a, 0x84,
0x9b, 0x43, 0x8d, 0x2a, 0x15, 0x3f, 0xa2, 0x35, 0xc8, 0x11, 0xdc, 0x1d, 0x6a,
0x94, 0x66, 0xec, 0x43, 0x3f, 0x3d, 0x63, 0xe8, 0x11, 0xf7, 0xc6, 0x7d, 0x18,
0xd8, 0xd7, 0xa8, 0x32, 0x15, 0x10, 0x8c, 0xec, 0xc3, 0x10, 0x4b, 0x66, 0x55,
0x35, 0xca, 0x40, 0x3a, 0x8e, 0x1b, 0x63, 0x7e, 0x7c, 0x1f, 0xac, 0xba, 0x21,
0x97, 0x88, 0x59, 0xde, 0x87, 0x05, 0x96, 0xe7, 0x35, 0xa5, 0x8d, 0x70, 0xed,
0x81, 0xa5, 0x5d, 0xfb, 0x70, 0xb9, 0xff, 0xde, 0x0d, 0x8a, 0xbe, 0xba, 0xa6,
0xa2, 0x9a, 0x0f, 0x15, 0x9c, 0x25, 0x98, 0xa1, 0x30, 0xab, 0x5b, 0xc5, 0x76,
0x08, 0xeb, 0xc4, 0xbf, 0x62, 0x79, 0x4d, 0x53, 0x6e, 0x1d, 0xc2, 0xee, 0xe1,
0x63, 0x6b, 0x8e, 0xf4, 0x23, 0xc8, 0x3a, 0xd2, 0x56, 0xa5, 0x84, 0x85, 0x47,
0x0f, 0xe6, 0x1e, 0x92, 0xdb, 0x8f, 0xa0, 0x85, 0xd5, 0xcd, 0x47, 0x9f, 0xc3,
0xe8, 0x94, 0xc6, 0x7d, 0xa4, 0xe0, 0x25, 0x27, 0xbf, 0x3a, 0x82, 0x1b, 0x3d,
0xdb, 0x8b, 0x63, 0xaa, 0xd0, 0x31, 0xcf, 0xbe, 0xc7, 0x10, 0x75, 0xfc, 0xff,
0xb4, 0xc7, 0x7b, 0xdb, 0x0e, 0x2f, 0x4e, 0x20, 0xe2, 0xe4, 0x1d, 0x1b, 0xb5,
0xc1, 0x13, 0xb0, 0x9c, 0x3c, 0x16, 0x7d, 0x71, 0x02, 0xd7, 0x5a, 0x44, 0xd0,
0x29, 0xb5, 0xf4, 0xa9, 0x82, 0xa1, 0xa7, 0x7c, 0xce, 0x53, 0x88, 0x38, 0xd5,
0xe7, 0x84, 0x53, 0x48, 0x21, 0x3e, 0xf9, 0x14, 0xd2, 0x4e, 0x35, 0xfa, 0xcf,
0x76, 0x0c, 0x9e, 0x81, 0xe5, 0xec, 0xd1, 0x5a, 0xbe, 0x3e, 0x87, 0xb3, 0x73,
0xcd, 0xd1, 0x9f, 0xc3, 0x0d, 0xb3, 0x9e, 0x73, 0x88, 0x71, 0xf2, 0x58, 0x75,
0x42, 0x82, 0x53, 0xdf, 0x02, 0x13, 0x93, 0xe5, 0xfc, 0x1c, 0xf7, 0xa3, 0x79,
0xfc, 0x53, 0xba, 0x63, 0xa7, 0x82, 0x27, 0x9c, 0xe5, 0xd4, 0x09, 0x4e, 0x3d,
0xab, 0x87, 0x98, 0x5b, 0x27, 0xbc, 0x71, 0xfa, 0xa8, 0x6a, 0x6c, 0x17, 0x15,
0xce, 0x05, 0x21, 0x04, 0xa1, 0x14, 0x18, 0xc9, 0xb1, 0xba, 0x1e, 0xc6, 0x41,
0x30, 0x13, 0xe2, 0x48, 0xd6, 0xf5, 0x8c, 0x11, 0xac, 0x8e, 0x74, 0x41, 0x8c,
0x4b, 0xdf, 0xf9, 0x12, 0x93, 0xe6, 0x82, 0x64, 0x96, 0x93, 0x34, 0x65, 0xa6,
0x8b, 0xb6, 0x93, 0xf3, 0x64, 0x86, 0xb9, 0x33, 0x58, 0x64, 0x6b, 0x2c, 0x9d,
0xc1, 0xea, 0x99, 0x3e, 0x13, 0x11, 0xb3, 0x7d, 0x06, 0x9b, 0x67, 0x3e, 0xaa,
0x56, 0xe6, 0x0c, 0x4e, 0x98, 0x3d, 0x3d, 0x03, 0x27, 0xa3, 0xeb, 0x0c, 0x2e,
0xf5, 0x3c, 0x41, 0xe7, 0x10, 0xaa, 0xd8, 0x2e, 0xfc, 0x1c, 0xa2, 0x34, 0x23,
0x26, 0xaa, 0x18, 0x43, 0x10, 0x7d, 0xae, 0x60, 0x24, 0x81, 0x1a, 0x1b, 0x4b,
0x34, 0xee, 0x5c, 0xd1, 0x43, 0x9c, 0x52, 0xf1, 0x44, 0x27, 0xa4, 0x38, 0x99,
0x42, 0x92, 0x53, 0x97, 0xa8, 0xf0, 0x4e, 0xc8, 0xd0, 0x0d, 0x56, 0x40, 0x4c,
0xa1, 0x13, 0xf2, 0x58, 0x36, 0x68, 0xca, 0x12, 0xc2, 0x52, 0xa7, 0x82, 0x46,
0x56, 0x35, 0x39, 0xa1, 0x55, 0x4f, 0xdf, 0x47, 0x8c, 0xc9, 0x09, 0x3d, 0x2c,
0x77, 0x6b, 0xca, 0x41, 0x27, 0x58, 0x98, 0x1d, 0x76, 0xc2, 0x18, 0xe3, 0xb8,
0x13, 0xac, 0x4e, 0xff, 0xe6, 0x7b, 0xed, 0x84, 0x33, 0x2d, 0xed, 0x15, 0xe3,
0xa5, 0x13, 0x5c, 0x4e, 0xa6, 0x8a, 0x7c, 0xe3, 0xd4, 0xa8, 0x52, 0x67, 0x97,
0xd2, 0x08, 0x77, 0x4e, 0x1f, 0xfd, 0x5c, 0x0d, 0xa2, 0xde, 0x05, 0x74, 0x41,
0xa1, 0xa6, 0x78, 0xe9, 0x82, 0x2a, 0x66, 0xab, 0x5d, 0x50, 0xc7, 0x58, 0xef,
0x02, 0xa3, 0x9e, 0xb6, 0xcb, 0x05, 0xbd, 0xc4, 0xf7, 0x50, 0xe8, 0xd5, 0x75,
0xc3, 0x2e, 0x18, 0x63, 0x7e, 0xdc, 0x05, 0x56, 0xc6, 0x29, 0x17, 0xcc, 0xea,
0x71, 0x36, 0x62, 0xd6, 0x5c, 0xb0, 0xe2, 0x62, 0xaa, 0x1d, 0x7b, 0xc4, 0xed,
0xbb, 0x14, 0x3c, 0x64, 0xe5, 0x91, 0x0b, 0x4e, 0xf4, 0xc8, 0x2b, 0x62, 0xae,
0x5d, 0x70, 0xe1, 0xf2, 0x51, 0xb5, 0x6e, 0x6e, 0xaa, 0x9b, 0x5b, 0xc1, 0x50,
0x82, 0x10, 0x0a, 0x8c, 0xea, 0xa8, 0x49, 0xbc, 0xa0, 0x46, 0xba, 0x80, 0xf8,
0x0b, 0x1f, 0x1d, 0x75, 0xc2, 0x84, 0x93, 0x29, 0x9b, 0x55, 0x37, 0xee, 0xc3,
0x11, 0xe2, 0x33, 0xdd, 0x7b, 0x7b, 0x6c, 0x86, 0xc2, 0x67, 0xbb, 0xc0, 0xe0,
0x52, 0xdb, 0x86, 0x8c, 0x02, 0x0d, 0x2e, 0x9f, 0x71, 0x9a, 0x5c, 0xd0, 0xaa,
0xa7, 0xef, 0x23, 0xc6, 0xe4, 0x62, 0x23, 0x79, 0xa9, 0x6e, 0x28, 0x18, 0xd1,
0xf8, 0x07, 0x46, 0x5a, 0x27, 0xfe, 0x95, 0x0b, 0x36, 0x5c, 0x1a, 0x7d, 0xca,
0x50, 0x70, 0xac, 0xc5, 0xb9, 0x08, 0xdd, 0x2e, 0x38, 0x77, 0xf9, 0xe8, 0x7b,
0x8f, 0x26, 0xb2, 0x58, 0xb3, 0x5b, 0xc1, 0x56, 0x82, 0x16, 0x0a, 0x8c, 0x7c,
0xf4, 0x30, 0x76, 0xbb, 0xa1, 0xc3, 0xed, 0xa3, 0x5c, 0x13, 0x37, 0x0c, 0xb8,
0x99, 0x82, 0xc9, 0xad, 0xa4, 0xe9, 0x75, 0x7b, 0xb5, 0xda, 0xc6, 0x94, 0x98,
0x09, 0xb7, 0x0f, 0xb9, 0x41, 0x16, 0x2e, 0x78, 0xb6, 0x23, 0x32, 0x77, 0x01,
0x8b, 0xcc, 0x2f, 0x5d, 0xc0, 0xea, 0x85, 0x3e, 0x9a, 0x89, 0xd9, 0xbe, 0xf0,
0xe1, 0x93, 0xfe, 0xaa, 0xe8, 0x12, 0x4a, 0x2f, 0xdf, 0x7f, 0xc7, 0xf5, 0x94,
0xd2, 0x9c, 0x5d, 0x2a, 0xe8, 0xe4, 0xe4, 0xae, 0x4b, 0xb8, 0xbc, 0xd4, 0xa8,
0xe2, 0xd6, 0x08, 0x6e, 0x2f, 0x7d, 0xa8, 0x34, 0xf6, 0x15, 0x44, 0x5c, 0x71,
0x23, 0x5f, 0x41, 0x0c, 0x63, 0xec, 0x15, 0x24, 0x5c, 0xfd, 0x02, 0xbe, 0xfb,
0xf4, 0x0a, 0x9c, 0x4f, 0xe5, 0xcb, 0xbd, 0x26, 0xaf, 0x70, 0x4d, 0xf6, 0x28,
0x78, 0x03, 0xc5, 0x6f, 0xa8, 0x3a, 0x14, 0x08, 0x35, 0x89, 0x87, 0x19, 0x41,
0x05, 0xb3, 0x95, 0x6f, 0xa0, 0xe6, 0x8d, 0xd6, 0x42, 0x84, 0xcd, 0x6f, 0x14,
0x6c, 0x7d, 0xf3, 0xa0, 0xe6, 0xb6, 0x37, 0xb0, 0xfe, 0x46, 0x1f, 0x42, 0x6f,
0xe0, 0xf0, 0xcd, 0x23, 0xce, 0x3e, 0xf3, 0x06, 0x72, 0x6e, 0xf4, 0x67, 0xc3,
0x37, 0x50, 0xce, 0xfc, 0xcb, 0x1b, 0xa8, 0x62, 0xdc, 0xbb, 0x82, 0x43, 0xbd,
0xb0, 0x2e, 0x62, 0xdc, 0x7e, 0x25, 0x7f, 0x71, 0x0d, 0x11, 0xd7, 0xef, 0xda,
0x85, 0x52, 0x64, 0xfb, 0xb5, 0x82, 0x9d, 0x9c, 0xae, 0xeb, 0x1a, 0x7a, 0xf5,
0xf4, 0xc3, 0xc4, 0x8c, 0xb0, 0x30, 0x7a, 0x0d, 0x13, 0x9a, 0x72, 0xee, 0x1a,
0x16, 0x1f, 0x3b, 0xdf, 0xd5, 0x35, 0xdc, 0xe8, 0xfa, 0x17, 0x6f, 0x20, 0xe2,
0xcd, 0xbb, 0x26, 0xfa, 0xae, 0x1b, 0xe8, 0xe5, 0x82, 0xf7, 0xdd, 0xc0, 0xc0,
0xcd, 0xe7, 0xb8, 0xf7, 0xee, 0x8d, 0xa9, 0xf5, 0x40, 0x83, 0x47, 0x2b, 0x38,
0x61, 0xbb, 0x47, 0xc1, 0x4e, 0x56, 0x75, 0x79, 0xa0, 0xd7, 0xa3, 0x51, 0x7e,
0x7e, 0xc1, 0xd4, 0xe4, 0xf1, 0xbb, 0x75, 0xea, 0x81, 0x59, 0x16, 0xe7, 0x3c,
0xb0, 0xc8, 0xb8, 0xe4, 0x81, 0x55, 0x3d, 0x7a, 0xcb, 0x03, 0xbb, 0x1e, 0xff,
0xca, 0x90, 0x70, 0xed, 0x51, 0xf0, 0x86, 0xf5, 0x1e, 0x0f, 0x04, 0xde, 0xea,
0x6b, 0x5c, 0x62, 0xa2, 0x6e, 0x21, 0xfc, 0xd6, 0x47, 0xd5, 0x39, 0x88, 0x30,
0xe9, 0x56, 0x45, 0x48, 0xb8, 0x85, 0x58, 0xc6, 0x18, 0x25, 0x32, 0x9e, 0x69,
0xdc, 0x2d, 0x44, 0x33, 0x2a, 0xe9, 0x99, 0xa3, 0x38, 0xed, 0x5c, 0x8c, 0x4a,
0x4a, 0xca, 0x93, 0xa0, 0x5f, 0x27, 0x93, 0x98, 0xac, 0x5b, 0x48, 0x67, 0x39,
0x4d, 0x53, 0xe6, 0x12, 0x1a, 0x6e, 0x15, 0xcc, 0x67, 0x55, 0xc1, 0x2d, 0x14,
0x13, 0x16, 0xdd, 0x42, 0xa9, 0x92, 0xe2, 0x25, 0xd1, 0x8a, 0x5b, 0x28, 0xbb,
0xf5, 0x51, 0xea, 0x84, 0xb7, 0xd0, 0x70, 0x07, 0xb5, 0x77, 0xb4, 0x5b, 0xbb,
0x63, 0xf7, 0x76, 0x07, 0x46, 0xc6, 0xa6, 0x3b, 0x68, 0xbd, 0xd3, 0x2b, 0xdc,
0x7f, 0x07, 0xe6, 0x3b, 0xbf, 0xb7, 0x2f, 0x88, 0x9f, 0xbf, 0x83, 0x8f, 0xec,
0x84, 0x1b, 0x77, 0xf0, 0x4a, 0x89, 0x5a, 0x55, 0x13, 0xd8, 0xf5, 0x74, 0x8b,
0x77, 0x9c, 0xce, 0x4b, 0x13, 0xc9, 0x50, 0x49, 0x14, 0x08, 0x53, 0xd8, 0x66,
0xa9, 0x1e, 0xc8, 0xd0, 0x6d, 0x5a, 0x40, 0x4c, 0xa1, 0x07, 0xf2, 0x3c, 0x3e,
0xaa, 0xb4, 0x69, 0x13, 0x27, 0x30, 0x7a, 0xa0, 0xde, 0xc3, 0x54, 0x91, 0x5b,
0x3d, 0x8a, 0xb6, 0xd9, 0xa3, 0xb7, 0x31, 0x1f, 0x4a, 0x9b, 0x37, 0x2a, 0x42,
0x1d, 0xd3, 0xfb, 0xe9, 0x35, 0xd7, 0xec, 0x51, 0xda, 0xbb, 0x87, 0xa0, 0x57,
0xd7, 0x0d, 0x13, 0x33, 0xe2, 0x51, 0x70, 0x8c, 0x75, 0xe3, 0x4c, 0x88, 0xd3,
0xe4, 0x51, 0x16, 0x29, 0x7e, 0xc8, 0xf3, 0x90, 0x6a, 0x69, 0x27, 0x3c, 0x0a,
0x5a, 0x3d, 0x7e, 0xfd, 0x47, 0x19, 0xb0, 0xc4, 0xac, 0x79, 0x60, 0x85, 0xe5,
0x65, 0x4d, 0x69, 0x27, 0xdc, 0xf0, 0x28, 0xe8, 0xf0, 0xef, 0x4b, 0x2e, 0x0f,
0x5c, 0x92, 0x7c, 0xe1, 0xe1, 0x1e, 0xa5, 0x52, 0x75, 0xde, 0xa3, 0xb6, 0x09,
0xbe, 0x55, 0x30, 0x94, 0x9b, 0xe9, 0xc5, 0x2d, 0x44, 0xe8, 0x6d, 0xaf, 0xf5,
0x25, 0xea, 0x37, 0x5e, 0xea, 0xdf, 0x27, 0x18, 0x73, 0x6e, 0xc1, 0xd7, 0x0f,
0xee, 0xb7, 0x7d, 0xcd, 0x1d, 0x54, 0xde, 0x31, 0x55, 0x1d, 0x0f, 0x61, 0xf3,
0x9d, 0xaf, 0xbd, 0xdb, 0x98, 0x68, 0x2d, 0xdf, 0x45, 0xd0, 0x7d, 0x07, 0x1d,
0x77, 0x3e, 0xaa, 0xae, 0x5d, 0x08, 0xa9, 0x3f, 0x7c, 0x34, 0x75, 0x07, 0xb3,
0x77, 0x6a, 0x7f, 0x58, 0xd4, 0x9b, 0x5d, 0xeb, 0x13, 0x5e, 0x54, 0x9c, 0x16,
0x75, 0x1f, 0x28, 0xa5, 0x8a, 0x95, 0x78, 0xa0, 0x9c, 0xeb, 0xf7, 0xd2, 0x03,
0x55, 0x5a, 0x1b, 0xeb, 0x0d, 0xa3, 0x0c, 0x49, 0xb3, 0x56, 0xf9, 0xcf, 0x67,
0x5c, 0x2f, 0xd5, 0x07, 0x29, 0x6c, 0x7b, 0x7c, 0x83, 0x75, 0xcf, 0x03, 0x87,
0x1e, 0x9f, 0x91, 0xc1, 0xed, 0x81, 0x73, 0xcf, 0x43, 0xfa, 0xce, 0xc1, 0xac,
0x9a, 0x9c, 0x28, 0x84, 0xdd, 0x42, 0xc8, 0xad, 0x46, 0xb5, 0x83, 0x1b, 0xed,
0x29, 0x07, 0xc0, 0x83, 0x95, 0x86, 0x70, 0x9c, 0x37, 0xf1, 0x23, 0x0d, 0x03,
0x2a, 0x07, 0x79, 0x4c, 0x69, 0xd0, 0x66, 0x2b, 0x52, 0xc6, 0x2d, 0xe8, 0xa9,
0xee, 0xe7, 0x61, 0x89, 0x63, 0x53, 0x6f, 0xd5, 0x34, 0xde, 0xc1, 0xee, 0x97,
0xef, 0x49, 0x07, 0xa0, 0xfa, 0x57, 0x1a, 0xd9, 0xfa, 0x48, 0x7f, 0xa2, 0xf5,
0xfd, 0xa9, 0x36, 0x6a, 0xee, 0x60, 0x40, 0xe1, 0x87, 0xee, 0x78, 0xc4, 0xab,
0x0d, 0x70, 0x07, 0xeb, 0x77, 0x6a, 0x4b, 0x3b, 0x18, 0xb7, 0xee, 0x60, 0xf7,
0xee, 0x11, 0x87, 0x9c, 0x1a, 0x28, 0x20, 0x8d, 0x02, 0x61, 0x06, 0x01, 0x64,
0x06, 0x8a, 0x9c, 0x40, 0xa1, 0xd2, 0xc7, 0x1a, 0x52, 0xf7, 0xb7, 0x0f, 0x47,
0x8a, 0xbf, 0xf7, 0x3d, 0x25, 0xe6, 0xcc, 0x03, 0xaf, 0x3d, 0x3e, 0xaa, 0x7b,
0xe4, 0x7b, 0x0d, 0xa1, 0x8f, 0x1a, 0x50, 0xbd, 0xa6, 0xd2, 0x14, 0x3a, 0x2a,
0x65, 0xf3, 0x9a, 0xf1, 0xf1, 0x63, 0x98, 0x22, 0x47, 0x6e, 0x15, 0x1c, 0xe3,
0x74, 0xe3, 0xb7, 0x60, 0xbd, 0xd5, 0xa8, 0xe2, 0x01, 0x09, 0xe6, 0x6f, 0x61,
0xe6, 0x56, 0xa3, 0x00, 0xd3, 0x4c, 0x7c, 0x1c, 0xcf, 0x20, 0xb7, 0xb0, 0xea,
0xbd, 0xc6, 0xce, 0x2d, 0xec, 0xdf, 0xde, 0xa3, 0x6a, 0xab, 0xb8, 0xee, 0xe0,
0xf2, 0xee, 0xb1, 0xc7, 0x9b, 0x64, 0xa3, 0x2c, 0xc5, 0x4e, 0x1f, 0x41, 0x75,
0xa0, 0xa8, 0x63, 0xb6, 0x3e, 0x50, 0x18, 0x19, 0x9b, 0x02, 0x45, 0xab, 0x6a,
0x42, 0x6a, 0x20, 0x62, 0x4c, 0x81, 0xa2, 0x27, 0x50, 0x78, 0xa9, 0x5a, 0x01,
0xc2, 0x11, 0x0a, 0x84, 0x63, 0x81, 0xe2, 0xc1, 0xd4, 0x79, 0x1e, 0x28, 0xdc,
0x5a, 0x3a, 0x0f, 0xe1, 0x2d, 0x05, 0xc2, 0xc0, 0x20, 0x52, 0x05, 0x31, 0x51,
0x38, 0xea, 0xff, 0x04, 0x61, 0x41, 0x22, 0x24, 0x48, 0x98, 0x43, 0x44, 0x7f,
0x08, 0x53, 0x75, 0x74, 0x86, 0x08, 0xab, 0xc6, 0xde, 0x5f, 0x14, 0x85, 0x88,
0xc0, 0x50, 0x4d, 0x1f, 0x19, 0x2a, 0x62, 0x42, 0xc5, 0xd3, 0x53, 0xf5, 0x30,
0x45, 0x8e, 0x50, 0x20, 0x1c, 0xe3, 0x74, 0xe3, 0xa1, 0xc2, 0xaa, 0xa7, 0x5f,
0x22, 0x66, 0x39, 0x54, 0x2c, 0x84, 0x8a, 0x65, 0xef, 0x29, 0xb6, 0x42, 0xc5,
0x2e, 0x0b, 0x7b, 0xa1, 0xa2, 0x2a, 0x9c, 0xb0, 0x3a, 0x5c, 0xd4, 0x85, 0x6b,
0x91, 0x6d, 0xe1, 0xa2, 0x33, 0xdc, 0xef, 0x5a, 0xe3, 0x24, 0x4c, 0x50, 0x20,
0xb4, 0xb2, 0x7e, 0x2a, 0x5c, 0xac, 0xeb, 0xf1, 0x7b, 0xc4, 0xec, 0x87, 0x8b,
0x9d, 0x70, 0xe1, 0xa5, 0xef, 0xdd, 0x40, 0x37, 0x45, 0x08, 0x68, 0xa6, 0x40,
0xd8, 0x4a, 0xd0, 0x42, 0x81, 0x50, 0x93, 0xd8, 0x4d, 0x12, 0x74, 0x47, 0x88,
0x8e, 0x08, 0x41, 0xf4, 0xe2, 0x85, 0x80, 0x4b, 0x0a, 0x1a, 0xba, 0x5e, 0xf8,
0xe7, 0xf5, 0xa7, 0x7c, 0x9e, 0x76, 0xe5, 0x04, 0xbe, 0xfc, 0xb4, 0x64, 0x51,
0x4f, 0x09, 0x7d, 0x84, 0x26, 0x0a, 0x84, 0x03, 0xac, 0x1a, 0x8c, 0x10, 0x96,
0x08, 0xb5, 0x3b, 0x80, 0x8d, 0x98, 0xb5, 0x08, 0xb1, 0xc2, 0xf2, 0xb2, 0x96,
0xde, 0x1e, 0x21, 0x1c, 0xcc, 0x6e, 0x45, 0x88, 0xdd, 0x08, 0xf1, 0xa0, 0x3a,
0xf1, 0x91, 0x22, 0x29, 0x52, 0xbc, 0x6b, 0x3d, 0x6b, 0x52, 0xe7, 0x95, 0x18,
0x01, 0x49, 0x14, 0x08, 0x53, 0x08, 0x20, 0x35, 0x46, 0x64, 0xc4, 0x68, 0xf9,
0x0a, 0x88, 0x29, 0x8c, 0x11, 0x79, 0x2c, 0x1b, 0x34, 0x65, 0x49, 0x8c, 0x28,
0x27, 0xf6, 0xed, 0x85, 0xd9, 0x42, 0x8c, 0x58, 0xd6, 0xd2, 0xd8, 0x63, 0x84,
0xe3, 0xb1, 0x34, 0x89, 0xb1, 0x22, 0x25, 0x56, 0x3c, 0x56, 0x8a, 0x87, 0xcf,
0xcb, 0x13, 0xc8, 0x8d, 0x50, 0x20, 0xcc, 0x48, 0x60, 0x37, 0x92, 0x20, 0x72,
0x12, 0xb4, 0x1e, 0x5d, 0x4f, 0x8a, 0x86, 0x04, 0x51, 0x9b, 0x20, 0x1e, 0x50,
0x6e, 0x35, 0xa2, 0xcd, 0x09, 0xea, 0x15, 0xba, 0x12, 0x44, 0xaf, 0xc6, 0x2a,
0x25, 0xb1, 0x25, 0x88, 0x75, 0x5d, 0xde, 0x4b, 0x10, 0x87, 0x09, 0x8f, 0x18,
0x27, 0x36, 0x51, 0x24, 0x24, 0x0a, 0xad, 0x4c, 0x4b, 0xc9, 0x62, 0x35, 0x99,
0x12, 0xd9, 0x92, 0xc5, 0x3a, 0xa3, 0x3d, 0x59, 0x38, 0x92, 0xb5, 0x4c, 0x47,
0xc4, 0x1c, 0xeb, 0xc2, 0x53, 0xab, 0xd4, 0xc6, 0x14, 0xd1, 0x9c, 0x22, 0x94,
0xe8, 0x61, 0xc2, 0x11, 0x0a, 0x84, 0x63, 0xac, 0x1a, 0x4f, 0x11, 0xd6, 0x14,
0xbd, 0xeb, 0x13, 0xb3, 0xcc, 0xc2, 0x4a, 0x8a, 0x58, 0xd3, 0x94, 0x5b, 0x29,
0x62, 0x57, 0x8f, 0xbf, 0x67, 0xa2, 0xe1, 0x74, 0x3a, 0x51, 0xba, 0x78, 0xef,
0xed, 0x9f, 0xd4, 0x0c, 0x91, 0x91, 0x21, 0x9e, 0x2e, 0xde, 0x5c, 0x86, 0x58,
0xcc, 0x10, 0xef, 0x68, 0x87, 0xe1, 0x6c, 0x31, 0x96, 0x2d, 0xee, 0x5f, 0xe3,
0x34, 0x5b, 0x38, 0x49, 0x77, 0x9e, 0x2d, 0xdc, 0xd9, 0x42, 0xa5, 0xef, 0x7b,
0x7e, 0x0f, 0x7d, 0x39, 0x64, 0x4f, 0x0a, 0x84, 0x03, 0x39, 0xdc, 0xa9, 0x73,
0x84, 0x25, 0x47, 0xcb, 0x36, 0x45, 0xcc, 0x34, 0x0b, 0x33, 0x44, 0x66, 0x73,
0x14, 0xc3, 0xa7, 0xe7, 0x91, 0x9c, 0x46, 0x24, 0x35, 0x4f, 0x64, 0xe4, 0x09,
0x7f, 0xaa, 0x75, 0x4a, 0x62, 0x0a, 0xf3, 0x44, 0x5e, 0x9e, 0xe0, 0xb7, 0xc4,
0x17, 0xd5, 0x73, 0xd9, 0x08, 0xd6, 0x28, 0x10, 0xae, 0xb3, 0xc6, 0x9e, 0x23,
0x1c, 0x39, 0x5a, 0x0f, 0xbc, 0x22, 0xe6, 0x3a, 0x47, 0x5c, 0xb0, 0xde, 0xad,
0x5d, 0xda, 0x93, 0x23, 0x02, 0x73, 0xd9, 0xf5, 0xe5, 0x8a, 0xd0, 0x5c, 0xe1,
0x4f, 0xb5, 0x8e, 0x90, 0x2b, 0x12, 0x72, 0x39, 0x7f, 0x5e, 0xae, 0x28, 0xcc,
0x7d, 0xe7, 0x30, 0x52, 0x2d, 0x57, 0x90, 0x4f, 0xa5, 0xa2, 0x40, 0x58, 0x4c,
0x00, 0x25, 0xf9, 0xa2, 0x3c, 0x5f, 0xcb, 0x57, 0x4f, 0x4c, 0x43, 0xbe, 0xa8,
0x65, 0xb9, 0x46, 0x53, 0x36, 0x11, 0x36, 0x53, 0x20, 0x6c, 0xcd, 0xa7, 0x9e,
0x3d, 0x98, 0x2f, 0x2c, 0x7a, 0xfa, 0x29, 0x62, 0xa6, 0xf3, 0xc5, 0x64, 0xbe,
0xf0, 0x52, 0xb5, 0xa3, 0xe4, 0x8b, 0x55, 0x66, 0x6d, 0xf9, 0x62, 0x5d, 0x53,
0x79, 0x8d, 0xfd, 0xa2, 0x40, 0x44, 0x14, 0x68, 0xf9, 0x13, 0x0b, 0x44, 0x0a,
0xf3, 0xa9, 0x05, 0x22, 0xa3, 0x40, 0x3c, 0x2c, 0xea, 0x79, 0x91, 0x70, 0x17,
0x69, 0x56, 0x20, 0xbc, 0xa5, 0x40, 0x18, 0x58, 0xcc, 0xd6, 0x28, 0x16, 0xa1,
0xc5, 0xba, 0x05, 0x88, 0x89, 0x2b, 0x16, 0xd1, 0xc5, 0xc2, 0x4b, 0x95, 0xcb,
0x15, 0x14, 0x8b, 0x62, 0x66, 0x4b, 0x8a, 0x45, 0x39, 0xe3, 0xcb, 0x62, 0x51,
0x55, 0xec, 0x7f, 0x91, 0x9e, 0x62, 0x61, 0x52, 0x15, 0xef, 0x7c, 0x71, 0x2a,
0xb6, 0x44, 0x24, 0x94, 0x50, 0xb2, 0xc4, 0x12, 0x31, 0x5b, 0x46, 0x38, 0x57,
0x26, 0x16, 0xcb, 0xb4, 0xf3, 0xd8, 0x89, 0xd9, 0x28, 0x13, 0xaf, 0xca, 0x84,
0x97, 0xaa, 0xc3, 0xb6, 0x4c, 0x1c, 0x96, 0x3d, 0x18, 0x74, 0x89, 0xe5, 0x22,
0xa5, 0xdc, 0xef, 0xfa, 0x25, 0x24, 0x94, 0x52, 0x20, 0x2c, 0x67, 0xfd, 0xcb,
0x72, 0x51, 0x55, 0xae, 0x16, 0x1d, 0xfa, 0x88, 0x31, 0x95, 0x8b, 0x9e, 0x72,
0xe1, 0xa5, 0x6a, 0x5f, 0x2f, 0x17, 0x63, 0xe5, 0x8f, 0x34, 0xf2, 0x51, 0xb9,
0x38, 0xa1, 0x54, 0xda, 0x8c, 0x53, 0x29, 0x3a, 0x2b, 0x29, 0x51, 0x57, 0xa5,
0xe8, 0xad, 0x7c, 0x62, 0x02, 0x71, 0x55, 0x8a, 0x4b, 0x8e, 0xbb, 0xaa, 0x14,
0x37, 0x8c, 0x9e, 0x4a, 0x11, 0x58, 0xa5, 0xcf, 0x8e, 0xc4, 0x44, 0x55, 0x89,
0xf0, 0x2a, 0xe1, 0xa5, 0x4a, 0xc6, 0xdc, 0x2a, 0x91, 0xcf, 0x6c, 0x41, 0x95,
0x28, 0x66, 0x2c, 0xa9, 0x12, 0xe5, 0x7a, 0x9e, 0xfa, 0x2a, 0x61, 0x54, 0xf8,
0x96, 0x2a, 0xd1, 0xae, 0x29, 0xfb, 0x08, 0x4d, 0x14, 0x08, 0x07, 0x58, 0x35,
0x58, 0x25, 0x2c, 0x8c, 0x4a, 0x31, 0x13, 0x6b, 0xc9, 0x9b, 0xd7, 0x8a, 0xf8,
0x5a, 0xe1, 0xa5, 0xef, 0x7d, 0xc5, 0x26, 0xb3, 0x9a, 0x96, 0x1d, 0x14, 0x08,
0x73, 0x08, 0xb2, 0x29, 0x28, 0xb2, 0xd2, 0xad, 0x09, 0x0b, 0xab, 0x45, 0x5e,
0xb5, 0x50, 0x69, 0x8d, 0xa6, 0x6f, 0x22, 0x6c, 0xa6, 0x40, 0xd8, 0xca, 0xaa,
0xb6, 0x6a, 0xd1, 0xa9, 0x45, 0xc1, 0x20, 0x31, 0xe6, 0x6a, 0xd1, 0x5f, 0x2d,
0xbc, 0x54, 0x9d, 0xa2, 0x09, 0x27, 0x28, 0x10, 0x5a, 0x59, 0x35, 0x55, 0x2d,
0x66, 0xab, 0x75, 0xeb, 0xe6, 0xd6, 0x09, 0x30, 0xd4, 0x89, 0xec, 0x3a, 0xbe,
0x78, 0x9d, 0x76, 0x71, 0xc2, 0xc2, 0x3a, 0xf1, 0x76, 0xc9, 0x27, 0xeb, 0xc4,
0x74, 0xdd, 0xfb, 0x2b, 0x96, 0x5b, 0x4f, 0xe7, 0xa4, 0x40, 0x98, 0x4f, 0x90,
0x47, 0x81, 0x51, 0xdd, 0x1a, 0x11, 0x53, 0x51, 0x2f, 0xca, 0x58, 0x2e, 0xd5,
0x94, 0xd5, 0x84, 0xc7, 0x8d, 0x02, 0x8e, 0x1a, 0xc5, 0x09, 0x01, 0x9c, 0x36,
0x0a, 0x67, 0xa3, 0x96, 0xde, 0x43, 0xcc, 0x6d, 0xa3, 0x78, 0xd3, 0x28, 0xbc,
0x54, 0x1d, 0x77, 0x46, 0x11, 0x61, 0x24, 0x36, 0xd2, 0x28, 0x62, 0x18, 0x63,
0x8d, 0x22, 0xc7, 0xa8, 0xe5, 0x29, 0x21, 0xa6, 0xd4, 0x28, 0x8a, 0x58, 0x2e,
0xd4, 0x94, 0x2f, 0x8d, 0xa2, 0xca, 0x28, 0x9e, 0x76, 0x97, 0x7b, 0x14, 0xb9,
0x4f, 0x81, 0xf0, 0x90, 0xd3, 0x1d, 0x19, 0xc5, 0x89, 0x9e, 0xfe, 0x8a, 0x98,
0x6b, 0xa3, 0xb8, 0x30, 0x0a, 0x2f, 0x55, 0x9b, 0xbd, 0xaf, 0x85, 0xba, 0x04,
0x05, 0xc2, 0x81, 0x16, 0xee, 0x12, 0x2d, 0xc2, 0xd2, 0xa2, 0x3b, 0x93, 0x16,
0x31, 0xab, 0xf0, 0x0b, 0x2d, 0x62, 0x59, 0x53, 0xda, 0x5b, 0x84, 0xa3, 0x45,
0x3c, 0x32, 0x3c, 0x93, 0x5b, 0x45, 0x5a, 0xab, 0x9a, 0x26, 0xb7, 0x55, 0xe4,
0xb7, 0x6a, 0x69, 0x9a, 0x5a, 0x45, 0x6b, 0xeb, 0x23, 0xf6, 0x5e, 0x6a, 0x15,
0xab, 0xba, 0xfe, 0xd1, 0x79, 0x7c, 0xbc, 0x83, 0x9a, 0x9c, 0x02, 0xa1, 0xb5,
0x83, 0x9b, 0xbc, 0x43, 0xcc, 0x76, 0x68, 0x27, 0xdd, 0x23, 0xc5, 0x7e, 0x87,
0xd8, 0xe9, 0x10, 0x5e, 0xaa, 0xae, 0x28, 0x3b, 0x84, 0x93, 0x59, 0x57, 0x87,
0xb8, 0x64, 0xbc, 0xea, 0x10, 0x37, 0x1d, 0xfe, 0xde, 0x2e, 0xbb, 0x53, 0x18,
0x3a, 0xb5, 0xc5, 0x48, 0xa7, 0x28, 0xef, 0x7c, 0xac, 0x23, 0x8c, 0x76, 0x8a,
0xb8, 0x1e, 0x35, 0x22, 0x95, 0x30, 0x8d, 0x02, 0x61, 0x06, 0xab, 0x32, 0x7b,
0x44, 0x4e, 0x8f, 0xee, 0x68, 0x28, 0xf3, 0x46, 0xa7, 0x78, 0xd5, 0x29, 0xbc,
0x54, 0x2d, 0x5b, 0xa7, 0xb8, 0x64, 0xf6, 0xaa, 0x53, 0xdc, 0x30, 0x7a, 0x3a,
0x45, 0x60, 0x97, 0x3e, 0x8e, 0xbb, 0x44, 0x4c, 0x97, 0xdf, 0x35, 0x73, 0x49,
0x30, 0x50, 0x20, 0xac, 0x62, 0x7d, 0x75, 0x97, 0xa8, 0xd3, 0xe3, 0xdb, 0x88,
0x69, 0x67, 0xa1, 0xa3, 0x4b, 0x74, 0x77, 0x89, 0xa7, 0xd6, 0x60, 0x7e, 0x77,
0xc1, 0x7a, 0x69, 0x59, 0x48, 0x81, 0xb0, 0x97, 0x00, 0xfa, 0x7a, 0xc5, 0x40,
0xaf, 0x56, 0xf9, 0x25, 0x62, 0x96, 0x7b, 0xc5, 0x42, 0xaf, 0xf0, 0x52, 0xb5,
0x12, 0x84, 0x1b, 0x14, 0x08, 0x1d, 0xac, 0xda, 0x22, 0xb2, 0xad, 0xc5, 0x1d,
0x11, 0x1e, 0xf7, 0x8a, 0x03, 0x16, 0xf7, 0x55, 0xdd, 0x47, 0x1e, 0xc2, 0x5b,
0x0a, 0x84, 0x81, 0x7d, 0xec, 0xf5, 0xfb, 0x44, 0x68, 0x9f, 0xee, 0xf5, 0x89,
0x89, 0xeb, 0x13, 0xd1, 0x2c, 0x47, 0x69, 0xca, 0xc4, 0x3e, 0x91, 0xd2, 0xf7,
0xe8, 0x52, 0xe1, 0xa2, 0x5f, 0x5c, 0xf7, 0x8b, 0xf7, 0xad, 0x00, 0x60, 0x70,
0x80, 0x1c, 0x02, 0x05, 0x42, 0x0b, 0x01, 0x0c, 0x0f, 0x88, 0xb1, 0x01, 0xa1,
0x52, 0x4e, 0x6e, 0x23, 0x58, 0x1b, 0x10, 0x2b, 0x2c, 0x2d, 0x0f, 0x68, 0x95,
0x22, 0xdc, 0xa0, 0x40, 0xe8, 0x60, 0xd5, 0xd6, 0x80, 0xd8, 0xd5, 0xa2, 0xe0,
0x94, 0x98, 0xb3, 0x01, 0xf1, 0x7a, 0x40, 0x78, 0xa9, 0x3a, 0x3e, 0x06, 0xc4,
0x0d, 0xb3, 0x9e, 0x01, 0x11, 0x38, 0x28, 0x1e, 0x98, 0x76, 0x69, 0x48, 0xac,
0x0e, 0x69, 0x27, 0xd8, 0x1a, 0x12, 0xbb, 0xcc, 0xef, 0x0d, 0x89, 0xc3, 0x21,
0xf1, 0xf8, 0x3c, 0x55, 0x60, 0x21, 0xe7, 0x43, 0x81, 0xb0, 0xd8, 0xc2, 0x6e,
0xd9, 0x22, 0x8c, 0x16, 0x2d, 0x7f, 0x17, 0x31, 0xdd, 0x16, 0xd1, 0x61, 0x11,
0x5e, 0xca, 0xa3, 0xd0, 0x22, 0x06, 0x2c, 0x42, 0xa5, 0x54, 0x69, 0x8b, 0xb0,
0x58, 0x9e, 0x5a, 0xeb, 0xd6, 0x8f, 0x0a, 0xe3, 0xe8, 0x3b, 0x0c, 0x77, 0x3a,
0x2a, 0x9c, 0x1c, 0xef, 0x1a, 0x15, 0x97, 0x0f, 0xd2, 0xc5, 0x8f, 0x09, 0xc3,
0x98, 0xc8, 0x56, 0xa8, 0x3a, 0x06, 0xc6, 0x44, 0xf9, 0x98, 0x78, 0xc7, 0xe2,
0x24, 0x73, 0x92, 0xfc, 0x3b, 0x05, 0xc2, 0x1c, 0x02, 0xc8, 0x9d, 0x14, 0xf9,
0x93, 0xba, 0x1b, 0x24, 0xa6, 0x62, 0x52, 0x94, 0x4d, 0x0a, 0x2f, 0x55, 0x0b,
0x38, 0x29, 0x8c, 0x93, 0xe2, 0xed, 0xb6, 0xb4, 0x4f, 0x0a, 0x87, 0x37, 0xef,
0xb8, 0xa8, 0x1a, 0x17, 0x4f, 0xcf, 0xf3, 0x7b, 0x14, 0xb9, 0x4f, 0x81, 0xf0,
0x90, 0xd3, 0x1d, 0x8d, 0x8b, 0x13, 0x25, 0x3d, 0x9b, 0xa1, 0xcd, 0x4a, 0x23,
0xc3, 0xca, 0x23, 0xc3, 0x2a, 0xba, 0xad, 0xea, 0x19, 0x07, 0xad, 0xc2, 0xc2,
0xec, 0xb0, 0x55, 0x8c, 0x31, 0x8e, 0x5b, 0x85, 0xd5, 0xaa, 0x2f, 0x92, 0xad,
0x62, 0xd5, 0xca, 0x9e, 0xe3, 0xc0, 0x2a, 0x8e, 0x35, 0xa5, 0x8b, 0xd0, 0x4d,
0x81, 0xf0, 0x92, 0xe0, 0x82, 0x02, 0xa1, 0x26, 0x29, 0xbf, 0x4a, 0xa0, 0x8e,
0x6e, 0x15, 0x6f, 0xac, 0xe2, 0xd6, 0xaa, 0x3b, 0x90, 0xd4, 0x29, 0x91, 0x31,
0xc5, 0x5e, 0x60, 0x4a, 0xe4, 0x30, 0xe6, 0x4e, 0x89, 0xfc, 0x29, 0xbd, 0x42,
0xc4, 0x54, 0x4c, 0xf9, 0x4c, 0xd9, 0x46, 0x7c, 0x3b, 0x05, 0xc2, 0x4e, 0x56,
0x77, 0x4d, 0x89, 0xde, 0x29, 0x7d, 0x77, 0x10, 0x39, 0x4b, 0xd3, 0xf9, 0xac,
0x08, 0x9f, 0x15, 0x5e, 0xaa, 0x8e, 0x16, 0xc6, 0x84, 0x59, 0x11, 0x3b, 0x2b,
0x12, 0x98, 0x25, 0x39, 0x65, 0x56, 0xa8, 0x54, 0x99, 0x6d, 0x09, 0xb2, 0x66,
0x45, 0x3a, 0x4b, 0x69, 0x44, 0x3e, 0x2a, 0x9a, 0x15, 0xa5, 0x84, 0x25, 0x14,
0x34, 0x2c, 0xe7, 0xb8, 0x97, 0xb3, 0xa2, 0x4a, 0x3b, 0x25, 0x34, 0x11, 0xd3,
0x3c, 0x2b, 0x1a, 0x59, 0x6e, 0xd0, 0x94, 0x6d, 0x84, 0xed, 0xb3, 0xe2, 0x73,
0xbc, 0x9f, 0xfe, 0x88, 0x67, 0x3e, 0x5a, 0x20, 0xb7, 0x40, 0x81, 0xf0, 0x64,
0x81, 0x67, 0xba, 0x05, 0xe1, 0x5c, 0xd0, 0x16, 0x49, 0x91, 0x8b, 0x54, 0xb1,
0x45, 0x11, 0x4e, 0x00, 0x61, 0x8b, 0xea, 0xc5, 0x62, 0x09, 0xe3, 0x28, 0x10,
0x26, 0xb0, 0x2a, 0x71, 0x51, 0xa4, 0x68, 0x51, 0x90, 0x4b, 0x8c, 0x61, 0x51,
0x64, 0x2f, 0x0a, 0x2f, 0x55, 0x9f, 0x99, 0x2d, 0x0a, 0x23, 0xa7, 0x69, 0x5a,
0x14, 0xad, 0x8c, 0x6d, 0x8b, 0xa2, 0x53, 0xcf, 0x33, 0x48, 0x8c, 0x99, 0x82,
0x8e, 0xea, 0x4b, 0xe5, 0xc2, 0xaa, 0xb1, 0x26, 0xc8, 0x5c, 0x11, 0x39, 0x2b,
0x7a, 0x4b, 0x94, 0xad, 0x88, 0x8a, 0x15, 0xa1, 0x52, 0x7d, 0x7b, 0x4e, 0x5c,
0x33, 0x05, 0xc2, 0x56, 0x56, 0xb6, 0xad, 0x88, 0xce, 0x15, 0xad, 0x02, 0x53,
0xc4, 0x4c, 0xaf, 0x88, 0xc9, 0x15, 0xe1, 0xa5, 0xea, 0x44, 0xb0, 0x24, 0x32,
0x96, 0xc4, 0x23, 0x03, 0x6e, 0x68, 0x49, 0x8c, 0x2c, 0x89, 0xf7, 0xdb, 0x6f,
0x78, 0x55, 0x8c, 0xad, 0x72, 0xbf, 0x5c, 0x15, 0xd6, 0xd5, 0x27, 0xb6, 0x60,
0x2f, 0x6c, 0x22, 0xc2, 0xc6, 0xeb, 0x01, 0x9b, 0x88, 0x61, 0x8c, 0xb5, 0x89,
0x04, 0x9b, 0x9e, 0x36, 0xdb, 0x26, 0x0c, 0x36, 0xa1, 0x52, 0x2d, 0x4b, 0x13,
0x71, 0xcd, 0x14, 0x08, 0x5b, 0x09, 0x5a, 0x28, 0x10, 0x6a, 0x92, 0xf2, 0xfe,
0x33, 0xb9, 0x1a, 0x9b, 0xe8, 0xb0, 0x09, 0x2f, 0x55, 0x2d, 0x68, 0x13, 0x16,
0xef, 0x79, 0xef, 0x35, 0x71, 0xe5, 0xba, 0xa8, 0x59, 0x7f, 0xff, 0x06, 0xf1,
0x6a, 0x5d, 0xdc, 0x70, 0x32, 0xcf, 0xba, 0x08, 0xb4, 0xf3, 0x2c, 0x60, 0x17,
0xa1, 0x76, 0x6d, 0x6a, 0xce, 0xb4, 0x8b, 0x1c, 0xd2, 0x65, 0xdb, 0x85, 0xc1,
0xae, 0x9f, 0xe9, 0xa5, 0x5d, 0x54, 0xb1, 0x50, 0x6d, 0x17, 0x75, 0x8c, 0xf5,
0x76, 0x61, 0xd4, 0x23, 0xbb, 0xec, 0xa2, 0x97, 0xf8, 0x1e, 0xbb, 0x30, 0xd9,
0x05, 0xd1, 0x60, 0x87, 0x1a, 0x11, 0xe9, 0x10, 0x31, 0xcc, 0xc6, 0x3a, 0x44,
0x02, 0x63, 0xa2, 0x43, 0xa4, 0x38, 0xf4, 0x6e, 0x43, 0x8c, 0xc1, 0x21, 0xb2,
0x1d, 0xc2, 0xe0, 0x10, 0x9f, 0xe3, 0x59, 0xcf, 0x15, 0xa5, 0xba, 0xa6, 0x40,
0x78, 0xc3, 0x19, 0x3c, 0x0e, 0x11, 0xb8, 0xa5, 0x4f, 0xc9, 0xc4, 0x44, 0x6d,
0x89, 0xf0, 0x2d, 0xe1, 0xa5, 0xea, 0x58, 0x24, 0x4c, 0xa2, 0x40, 0x98, 0xc2,
0xaa, 0xd4, 0x2d, 0x91, 0xb1, 0xa5, 0xac, 0x99, 0x56, 0x76, 0xc4, 0xda, 0x0e,
0x6d, 0x17, 0x29, 0x10, 0xaa, 0x92, 0xa6, 0x53, 0x5f, 0xeb, 0xa3, 0x29, 0x94,
0x02, 0xe1, 0x2e, 0xab, 0xf6, 0x76, 0xc4, 0xa1, 0x16, 0x05, 0x2e, 0x62, 0xdc,
0x3b, 0xe2, 0x9c, 0xe5, 0xb3, 0x1d, 0x75, 0xf6, 0x78, 0xb1, 0x2b, 0x22, 0x76,
0x1f, 0xeb, 0x41, 0x95, 0xbb, 0xa2, 0x66, 0x57, 0xbc, 0x77, 0x88, 0x5e, 0x51,
0x9a, 0xf6, 0x03, 0xf2, 0x34, 0x07, 0xa2, 0xf3, 0x80, 0x3d, 0xcd, 0x81, 0xe8,
0x3d, 0x10, 0x2a, 0x55, 0x5a, 0x9b, 0xc0, 0x7c, 0x20, 0xfa, 0x0f, 0x84, 0x97,
0xaa, 0x63, 0x86, 0x70, 0x82, 0x02, 0xa1, 0x95, 0x55, 0x53, 0x07, 0x62, 0xf6,
0x40, 0xbb, 0xdc, 0x1e, 0x31, 0xfb, 0x07, 0x62, 0xe7, 0x40, 0x78, 0xa9, 0x3a,
0xb7, 0x10, 0x9e, 0x51, 0x20, 0x74, 0xb2, 0xca, 0x75, 0x20, 0x2e, 0xb5, 0x28,
0x08, 0x3a, 0x14, 0x10, 0x7c, 0x28, 0xee, 0x58, 0x8e, 0x3a, 0xd4, 0x8c, 0x78,
0x28, 0x52, 0x98, 0x4d, 0x3d, 0x14, 0x19, 0x8c, 0x73, 0x7b, 0x62, 0x71, 0x4f,
0xaf, 0xeb, 0xe6, 0x9e, 0xd8, 0xde, 0xf3, 0x55, 0xdc, 0x45, 0xbc, 0x9b, 0x02,
0x61, 0x2b, 0xa7, 0x6d, 0x3b, 0x14, 0x9d, 0xca, 0x69, 0x7a, 0x0e, 0x85, 0x89,
0x98, 0x3e, 0x0a, 0x84, 0xaa, 0xa4, 0xe9, 0xa0, 0xff, 0x50, 0x98, 0x09, 0x07,
0x29, 0x68, 0x68, 0x61, 0xf5, 0xf0, 0xa1, 0x18, 0x3b, 0xf4, 0xed, 0x23, 0x77,
0x0e, 0xc5, 0xfe, 0xa1, 0x50, 0xa9, 0x5a, 0x0f, 0xc2, 0x33, 0x0a, 0x84, 0xce,
0xc3, 0xfb, 0x2b, 0xea, 0xf4, 0x23, 0x91, 0x75, 0x24, 0x54, 0xaa, 0xbd, 0xef,
0x44, 0x93, 0x39, 0x05, 0xc2, 0x62, 0x56, 0x95, 0x1c, 0x89, 0xf2, 0x23, 0x3d,
0x4f, 0xe3, 0x91, 0x68, 0x3e, 0x12, 0xfe, 0x54, 0xed, 0xd4, 0x47, 0xa2, 0xf7,
0x88, 0xbd, 0x7d, 0xd0, 0x89, 0x08, 0x3d, 0x11, 0xfc, 0x1e, 0x92, 0x88, 0x38,
0xd1, 0x33, 0x25, 0x9f, 0x88, 0xb4, 0x13, 0xa1, 0x52, 0x7d, 0xc5, 0x40, 0x5c,
0x21, 0x05, 0xc2, 0x62, 0x56, 0x96, 0x9c, 0x08, 0xa3, 0x12, 0xd9, 0x72, 0x22,
0xda, 0x89, 0x69, 0x3b, 0x11, 0x9d, 0x04, 0x1d, 0x27, 0xa2, 0xfb, 0x44, 0xa8,
0x54, 0x7b, 0x7f, 0x49, 0x58, 0x98, 0x1d, 0x3e, 0x11, 0x63, 0x8c, 0xe3, 0x27,
0xc2, 0x7a, 0xa2, 0x55, 0x7c, 0xeb, 0x44, 0xec, 0x2a, 0xfc, 0xc1, 0x89, 0x38,
0xd6, 0xd2, 0xbb, 0x08, 0xdd, 0x14, 0x08, 0x2f, 0x59, 0x75, 0x75, 0x22, 0x6e,
0x4e, 0xfc, 0x0d, 0x10, 0x7f, 0x2a, 0x92, 0x4e, 0xb5, 0xad, 0xc1, 0xd2, 0x39,
0x2d, 0x1a, 0x29, 0x10, 0xae, 0x9e, 0xf3, 0xbd, 0x83, 0x73, 0xb1, 0x7e, 0xae,
0xdf, 0x05, 0x23, 0x66, 0xff, 0x5c, 0xec, 0x9c, 0x0b, 0x2f, 0x55, 0x2d, 0x4b,
0x78, 0x46, 0x81, 0xd0, 0x79, 0x4e, 0x2e, 0x21, 0xc8, 0x29, 0x42, 0x9d, 0xfa,
0x02, 0xd1, 0x29, 0x12, 0x88, 0x8f, 0x77, 0x8a, 0x24, 0xa7, 0x50, 0xa9, 0xf6,
0x5e, 0x12, 0x4d, 0x6b, 0x14, 0x08, 0x73, 0x9c, 0x22, 0x53, 0xd1, 0xa6, 0xa9,
0x71, 0x1f, 0xbd, 0x24, 0xac, 0x70, 0x8a, 0x32, 0xa7, 0xf0, 0x52, 0x1a, 0x19,
0x4e, 0x51, 0x43, 0x58, 0xed, 0x14, 0x75, 0x2c, 0xd6, 0x3b, 0x85, 0x91, 0xb1,
0xc9, 0x29, 0x5a, 0xf5, 0x6b, 0xf5, 0x11, 0x63, 0x62, 0xa1, 0xdf, 0x29, 0xcc,
0x9a, 0x72, 0x9c, 0x70, 0x82, 0x02, 0x61, 0xc2, 0x05, 0xbb, 0x94, 0x0b, 0x91,
0x72, 0xa1, 0xbb, 0x14, 0x62, 0x0c, 0x17, 0x22, 0xfb, 0x42, 0x78, 0xa9, 0xa2,
0x0f, 0x39, 0x14, 0x1f, 0xfe, 0xba, 0xf5, 0x0b, 0xbf, 0x1b, 0x25, 0x72, 0xe4,
0x04, 0x7c, 0xe3, 0x77, 0xfe, 0xcd, 0xb1, 0x80, 0x67, 0xcf, 0x94, 0x28, 0xd4,
0x09, 0x22, 0xe0, 0xf3, 0xe7, 0xc4, 0x59, 0x00, 0x9e, 0x2b, 0xca, 0x2f, 0x7e,
0xfa, 0x5c, 0x8b, 0xd7, 0xa8, 0xc6, 0x3e, 0xa7, 0xa0, 0x2b, 0xbe, 0xa8, 0xe9,
0x56, 0xbf, 0xf0, 0x8d, 0x69, 0xf8, 0xf0, 0x59, 0x0a, 0xfe, 0xc6, 0x8d, 0xf8,
0x5d, 0xd3, 0x97, 0xff, 0x20, 0x58, 0x04, 0xe2, 0x5f, 0xfd, 0x41, 0x02, 0xe2,
0x3e, 0xfc, 0xc5, 0x47, 0x49, 0x78, 0x09, 0x81, 0x01, 0x09, 0xcf, 0x17, 0xe1,
0xe3, 0x28, 0x7c, 0x06, 0x1f, 0x21, 0x7c, 0xfc, 0x15, 0xc4, 0xe7, 0xdf, 0xa7,
0x8c, 0x66, 0x2a, 0xc7, 0x87, 0x74, 0x32, 0x7c, 0x0e, 0xcf, 0x3f, 0x46, 0x78,
0xf6, 0xf1, 0xf3, 0x67, 0xcf, 0x9e, 0x51, 0x1a, 0x2e, 0x0e, 0x3c, 0x23, 0x05,
0x71, 0x56, 0xf8, 0xe2, 0x33, 0xba, 0xc4, 0xb3, 0x5f, 0xc5, 0x2f, 0xc2, 0x73,
0xd2, 0x3f, 0xfb, 0xf4, 0x8b, 0xf8, 0xeb, 0xe4, 0xb9, 0x3f, 0x86, 0x0f, 0x11,
0x9f, 0x4d, 0xc3, 0x17, 0xbf, 0xf7, 0x9f, 0x52, 0xc4, 0xf7, 0x7f, 0xf5, 0xd9,
0x17, 0x71, 0x8c, 0xb3, 0x7c, 0xa6, 0x9c, 0x8c, 0xf3, 0x00, 0x7c, 0x98, 0x43,
0x15, 0xe5, 0x32, 0xd2, 0x49, 0x3f, 0x24, 0xe5, 0x33, 0xf8, 0xea, 0xc7, 0xc4,
0x3f, 0x83, 0x5f, 0x05, 0xe4, 0xdf, 0xef, 0xa6, 0x05, 0x2c, 0x8b, 0x81, 0x2f,
0xff, 0xaf, 0x63, 0x38, 0x14, 0x71, 0x01, 0x31, 0xcf, 0x31, 0x54, 0x7c, 0xf6,
0xd5, 0x04, 0xfc, 0x8d, 0x8d, 0x67, 0x10, 0x11, 0x10, 0xf6, 0x85, 0xf8, 0xcf,
0xf1, 0xc2, 0xfa, 0x93, 0x87, 0xed, 0xf9, 0xc6, 0xf3, 0xf7, 0xa5, 0xa9, 0x96,
0x0d, 0x17, 0xcf, 0xfe, 0x7f, 0x7f, 0x9d, 0x6a, 0xe7, 0xfa, 0x19, 0xfc, 0x75,
0xe0, 0xf3, 0xe0, 0xb3, 0x67, 0x9b, 0xd7, 0xcf, 0x0c, 0xcf, 0xff, 0x2f,
};
optimizesize void *__cp949_encmap(void) {
return xloadzd(&__cp949_encmap_ptr,
__cp949_encmap_rodata,
29600, 54513, 33133, 2, 0x97300f27u); /* 44.6685% profit */
}
| 182,506 | 2,290 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/jisx0213_pair_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) jisx0213_pair_encmap_ptr;
static const unsigned char jisx0213_pair_encmap_rodata[] = {
0x1d, 0xc8, 0x31, 0x4e, 0xc2, 0x70, 0x18, 0x86, 0xf1, 0xcf, 0x8f, 0xab, 0x80,
0x09, 0x69, 0x08, 0x6f, 0xc3, 0xa0, 0x09, 0xa3, 0x0c, 0x68, 0xad, 0x0d, 0x81,
0xa5, 0x8d, 0x83, 0x83, 0x7a, 0x03, 0x43, 0x01, 0xf5, 0x04, 0x3d, 0x81, 0x57,
0x20, 0x84, 0x10, 0x46, 0x56, 0x06, 0x2e, 0x02, 0x49, 0x4f, 0xc0, 0x6a, 0xff,
0xcf, 0xf4, 0xe4, 0xf7, 0x98, 0x5d, 0xec, 0xb5, 0x6b, 0x66, 0xad, 0x8b, 0x8d,
0xa2, 0xa6, 0x36, 0xf3, 0xfb, 0xd0, 0xd6, 0xcc, 0xc7, 0x4d, 0x6f, 0x9a, 0x3e,
0xf2, 0x73, 0x17, 0x3f, 0xf7, 0x67, 0x7e, 0xee, 0x29, 0xbf, 0xf0, 0x07, 0x7e,
0xe1, 0x2f, 0xfc, 0xc2, 0x33, 0x7e, 0xe5, 0x77, 0xfc, 0xca, 0x9f, 0xf8, 0x95,
0x27, 0xfc, 0xb3, 0xbf, 0x35, 0xad, 0xfd, 0xec, 0x9f, 0xb8, 0xf6, 0xf7, 0x28,
0xdc, 0xda, 0x3f, 0x70, 0xa2, 0xa8, 0x6d, 0xf6, 0xa7, 0x44, 0xf3, 0x76, 0x70,
0xaa, 0x1e, 0x4e, 0x55, 0xe2, 0x4c, 0x7d, 0x9c, 0x69, 0x81, 0x27, 0x8a, 0xf1,
0x44, 0x4b, 0x3c, 0xd5, 0x00, 0x4f, 0xb5, 0xc2, 0x6b, 0x45, 0x9d, 0xe0, 0xb5,
0xe6, 0x9d, 0xe0, 0x8d, 0x7a, 0x78, 0xa3, 0x12, 0x6f, 0xd5, 0xc7, 0x5b, 0x2d,
0xf0, 0x4e, 0x31, 0xde, 0x69, 0x89, 0xf7, 0x1a, 0xe0, 0xbd, 0x56, 0xf8, 0xa0,
0x21, 0x3e, 0xe8, 0x1b, 0x1f, 0x35, 0xc2, 0x47, 0xfd, 0xe0, 0x93, 0xc6, 0xf8,
0xa4, 0x5f, 0x7c, 0x8d, 0xbf, 0x6e, 0x83, 0xaf, 0x71, 0xd9, 0xf4, 0x1f,
};
optimizesize void *jisx0213_pair_encmap(void) {
return xload(&jisx0213_pair_encmap_ptr,
jisx0213_pair_encmap_rodata,
207, 368); /* 56.25% profit */
}
| 1,616 | 29 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/gbkext_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) gbkext_decmap_ptr;
static const unsigned char gbkext_decmap_rodata[] = {
0xed, 0xd0, 0xdf, 0x4b, 0x13, 0x00, 0x1c, 0x04, 0xf0, 0xe9, 0x5a, 0xae, 0x96,
0x3f, 0x72, 0xd5, 0x56, 0xcb, 0x52, 0xa7, 0x6b, 0x6e, 0xb5, 0xcc, 0xd9, 0x1a,
0x06, 0xe3, 0x22, 0x10, 0x42, 0x50, 0x44, 0x10, 0x7c, 0x09, 0xc2, 0x30, 0xc2,
0x28, 0x44, 0x21, 0x42, 0x21, 0x82, 0x20, 0x06, 0x41, 0x04, 0x51, 0x2f, 0x82,
0xa7, 0x0c, 0x8a, 0x31, 0x48, 0x62, 0x90, 0x44, 0xa0, 0x08, 0x12, 0x04, 0x11,
0x04, 0xbd, 0x08, 0x82, 0x0a, 0x82, 0x09, 0x83, 0x14, 0x06, 0xfa, 0xe0, 0x97,
0xce, 0x37, 0xff, 0x87, 0x3c, 0xf8, 0x70, 0xaf, 0xc7, 0x39, 0x1c, 0x07, 0xf9,
0xdf, 0x53, 0xe2, 0x80, 0xcd, 0xc9, 0xd3, 0x12, 0x58, 0xaa, 0x14, 0xb6, 0x2b,
0x5f, 0x9d, 0xb0, 0xd1, 0x43, 0xb0, 0x36, 0x17, 0x6c, 0x47, 0x66, 0x0e, 0xc3,
0x1e, 0x97, 0xc1, 0x12, 0x6e, 0x58, 0x51, 0xf2, 0x47, 0x60, 0xc3, 0x47, 0x61,
0x2d, 0x1e, 0xd8, 0xa6, 0x4c, 0x1f, 0x83, 0x3d, 0x2a, 0x87, 0xc5, 0x2a, 0x60,
0x05, 0xc9, 0x55, 0xc2, 0x06, 0xab, 0x60, 0x91, 0xe3, 0xb0, 0x3f, 0xf2, 0xa1,
0x1a, 0x76, 0xcf, 0x0b, 0x0b, 0x9d, 0x80, 0xad, 0x49, 0xe6, 0x24, 0xac, 0xff,
0x14, 0xac, 0xde, 0x07, 0x5b, 0xf1, 0x65, 0xb2, 0xeb, 0xbe, 0xc9, 0xec, 0xfe,
0x4d, 0x5b, 0xbe, 0xe5, 0xe2, 0x5e, 0xbb, 0xfd, 0x98, 0x4b, 0xfb, 0xf1, 0x76,
0xd9, 0x0f, 0xde, 0x38, 0x0d, 0x4e, 0x89, 0xf3, 0x0c, 0x78, 0x57, 0x16, 0x24,
0x14, 0x00, 0x5f, 0xc8, 0xba, 0xdc, 0x3a, 0x0b, 0x66, 0xc5, 0x53, 0x03, 0x3e,
0x90, 0x1f, 0x12, 0x3b, 0x07, 0xbe, 0x92, 0xbf, 0xd2, 0x7d, 0x1e, 0xfc, 0x24,
0xde, 0x5a, 0x70, 0x44, 0x7e, 0x4b, 0xa2, 0x0e, 0x7c, 0x27, 0xdb, 0xd2, 0x57,
0x0f, 0x7e, 0x91, 0x40, 0x10, 0x1c, 0x93, 0x25, 0x49, 0x35, 0x80, 0x13, 0xe2,
0x68, 0x04, 0xef, 0xc8, 0xbc, 0x04, 0x43, 0xe0, 0x73, 0x59, 0x93, 0xf6, 0x0b,
0xe0, 0x7b, 0x71, 0x87, 0xc1, 0xfb, 0xf2, 0x5d, 0xa2, 0x4d, 0xe0, 0x4b, 0x29,
0x48, 0x67, 0x04, 0xfc, 0x28, 0x55, 0x51, 0x70, 0x48, 0x7e, 0x49, 0xfc, 0x22,
0xf8, 0x46, 0x8a, 0xd2, 0x7b, 0x09, 0xfc, 0x2c, 0xfe, 0x18, 0xf8, 0x44, 0x16,
0xe5, 0xfa, 0x65, 0x70, 0x5c, 0x76, 0xe5, 0x76, 0x33, 0x38, 0x2b, 0xb5, 0x57,
0xc0, 0x67, 0xb2, 0x2a, 0x37, 0x5b, 0xc0, 0x8c, 0xb8, 0xe2, 0xe0, 0x80, 0x7c,
0x93, 0x70, 0x2b, 0x98, 0x96, 0x0d, 0xe9, 0xb8, 0x0a, 0xe6, 0xa4, 0x3c, 0x01,
0x3e, 0x94, 0x9f, 0xd2, 0x7c, 0x0d, 0x7c, 0x2d, 0x5b, 0xd2, 0x93, 0x04, 0xf3,
0x49, 0x74, 0xed, 0xfd, 0xfb, 0x0f,
};
optimizesize void *gbkext_decmap(void) {
return xload(&gbkext_decmap_ptr,
gbkext_decmap_rodata,
370, 1024); /* 36.1328% profit */
}
| 2,588 | 42 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__jisx0213_bmp_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __jisx0213_bmp_encmap_ptr;
static const unsigned char __jisx0213_bmp_encmap_rodata[] = {
0xed, 0x5d, 0x67, 0x77, 0xda, 0x4a, 0x13, 0xfe, 0x2d, 0x06, 0x1b, 0x90, 0x90,
0xc0, 0xbd, 0xf7, 0xde, 0x71, 0x01, 0xf7, 0x8a, 0x0b, 0xb8, 0x60, 0x8c, 0xe9,
0xf5, 0xbf, 0xe4, 0x24, 0x39, 0x27, 0x1f, 0x92, 0xf8, 0x9f, 0x39, 0xb1, 0xe3,
0x34, 0xc7, 0xe5, 0x9d, 0xcc, 0xdd, 0xec, 0xdd, 0x95, 0x56, 0x42, 0x38, 0x4e,
0x6e, 0xee, 0x7b, 0x2e, 0xe7, 0xa0, 0x9d, 0x79, 0xe6, 0x99, 0x67, 0x66, 0x57,
0xc5, 0x26, 0x31, 0x52, 0xbd, 0xed, 0xe1, 0xa7, 0x5f, 0x36, 0xc9, 0x2e, 0x7d,
0x1f, 0xab, 0x61, 0x5b, 0x83, 0x96, 0x43, 0x72, 0x4a, 0x2e, 0xb0, 0x24, 0x49,
0x96, 0xdc, 0x88, 0x28, 0x92, 0x2a, 0xfd, 0xc5, 0xf6, 0x48, 0x5e, 0xa9, 0x56,
0xaa, 0x93, 0xea, 0xa5, 0x06, 0xa9, 0x51, 0x6a, 0x92, 0x9a, 0xa5, 0x16, 0xa9,
0x55, 0x6a, 0x93, 0xda, 0xa5, 0x0e, 0xa9, 0x53, 0xea, 0x92, 0xba, 0xa5, 0x1e,
0xa9, 0x57, 0xea, 0x93, 0xfa, 0xa5, 0x01, 0x69, 0x50, 0x1a, 0x92, 0x86, 0xa5,
0x11, 0x69, 0x54, 0x1a, 0x93, 0xc6, 0xa5, 0x09, 0x69, 0x52, 0x9a, 0x02, 0x95,
0x69, 0xc9, 0x27, 0xcd, 0x48, 0xb3, 0xd2, 0x9c, 0x34, 0x2f, 0xf9, 0xa5, 0x80,
0xb4, 0x20, 0x2d, 0x4a, 0x4b, 0xd2, 0xb2, 0xb4, 0x22, 0xad, 0x4a, 0xf7, 0x0f,
0xeb, 0xd2, 0x86, 0xb4, 0x29, 0x6d, 0x49, 0xdb, 0x52, 0x50, 0xda, 0x91, 0x76,
0xa5, 0x3d, 0x69, 0x5f, 0x0a, 0x49, 0x61, 0xe9, 0x40, 0x3a, 0x94, 0x8e, 0xa4,
0x63, 0xc8, 0x8f, 0x48, 0x27, 0x52, 0x54, 0x3a, 0x95, 0x62, 0xd2, 0x99, 0x14,
0x97, 0x12, 0x52, 0x52, 0xca, 0x49, 0xed, 0xf2, 0x98, 0x5c, 0x25, 0x2b, 0x72,
0xa7, 0x3c, 0x21, 0x2f, 0xcb, 0x9b, 0xf2, 0xf7, 0x4e, 0xbb, 0xe4, 0x49, 0xb9,
0x57, 0xf6, 0x81, 0x3d, 0x23, 0x67, 0xa4, 0xa2, 0xf4, 0x63, 0xbe, 0xdd, 0xf2,
0x94, 0xdc, 0x23, 0x4f, 0xcb, 0x2b, 0xf2, 0x96, 0xcc, 0xae, 0xc3, 0xaa, 0xbc,
0x0d, 0x7e, 0x11, 0xb1, 0x94, 0x94, 0x97, 0xb4, 0xeb, 0xb4, 0x26, 0x07, 0x09,
0xbf, 0x43, 0x1e, 0x47, 0xab, 0x5a, 0xf6, 0xe2, 0x68, 0x97, 0x3d, 0x72, 0x9f,
0x3c, 0x8b, 0x76, 0xbf, 0x3c, 0x87, 0x63, 0x4e, 0xce, 0x4a, 0x25, 0xd4, 0x18,
0x90, 0xe7, 0x65, 0xb7, 0x5b, 0x76, 0xb7, 0xc9, 0xa3, 0x18, 0x19, 0x94, 0xfd,
0x72, 0x8d, 0x5c, 0x2b, 0xaf, 0xcb, 0x3b, 0xb2, 0x53, 0x6e, 0x90, 0x1d, 0x72,
0xbd, 0x3c, 0x22, 0x2f, 0xca, 0x2e, 0xb9, 0x91, 0xf6, 0x93, 0x96, 0x0a, 0xd2,
0x86, 0xbc, 0x2b, 0x0f, 0xc9, 0x01, 0x79, 0x58, 0x5e, 0x90, 0xf9, 0x4e, 0x24,
0xb9, 0x49, 0x76, 0xcb, 0xad, 0xb2, 0x2c, 0xb7, 0xc8, 0x56, 0xf7, 0xb2, 0xe4,
0x7e, 0xf8, 0x85, 0xaf, 0x6a, 0xa1, 0x7a, 0xd4, 0x75, 0xea, 0x7a, 0x78, 0x88,
0xb9, 0x52, 0xae, 0x34, 0x8c, 0x19, 0x78, 0x67, 0xe1, 0x9d, 0x83, 0x77, 0x1e,
0xde, 0x05, 0xd7, 0xe3, 0x6a, 0x25, 0x5c, 0x49, 0x92, 0x39, 0xe4, 0x6e, 0x70,
0xb7, 0xb9, 0xdb, 0xdd, 0x35, 0xee, 0xfb, 0x87, 0x1e, 0xf7, 0x89, 0xec, 0x70,
0x7b, 0xc0, 0xba, 0x87, 0x48, 0x1d, 0xf4, 0x53, 0xef, 0x4e, 0xca, 0x2e, 0x77,
0x16, 0x57, 0xa8, 0xd9, 0xdd, 0xe9, 0xb6, 0xb9, 0xfb, 0xdd, 0x0a, 0xe9, 0xf3,
0x50, 0x4e, 0xc8, 0x47, 0x72, 0xa3, 0x3b, 0x2f, 0xef, 0xc9, 0x29, 0x39, 0x0a,
0x1c, 0x2f, 0x89, 0x1c, 0xcb, 0x7d, 0xee, 0x38, 0xf8, 0xa7, 0x72, 0x08, 0x33,
0x0b, 0x72, 0x4c, 0x0e, 0xcb, 0x4e, 0x12, 0x8d, 0xc8, 0xaa, 0xbb, 0xc9, 0xbd,
0x2f, 0xdf, 0x3f, 0x74, 0xb8, 0x33, 0x10, 0x3f, 0x93, 0x7b, 0xdd, 0x07, 0x30,
0x56, 0xb9, 0x4b, 0x7f, 0x1d, 0x09, 0x74, 0x1d, 0xd2, 0x64, 0xcf, 0x74, 0xbb,
0xbb, 0x9e, 0x6c, 0xe5, 0xeb, 0xe4, 0x79, 0xa2, 0xe5, 0x27, 0x63, 0xc0, 0xbd,
0xc0, 0xa9, 0xdb, 0xe4, 0x25, 0xa8, 0xab, 0xc2, 0xbb, 0x59, 0x8e, 0x71, 0x91,
0xfb, 0x87, 0x6d, 0x77, 0xd0, 0xbd, 0x03, 0xeb, 0xb3, 0xe6, 0x5e, 0x71, 0x6f,
0xba, 0x8b, 0xee, 0x55, 0x88, 0x2f, 0xc2, 0x3b, 0x82, 0xbc, 0x65, 0xf7, 0x06,
0x8e, 0xeb, 0xba, 0x6e, 0x33, 0xee, 0xac, 0xbb, 0x04, 0xe8, 0xa1, 0x3b, 0xe5,
0x4e, 0xbb, 0x8f, 0xdc, 0xc7, 0x84, 0x71, 0xe6, 0x0e, 0x11, 0x2b, 0xea, 0xce,
0x81, 0x15, 0x46, 0xef, 0xd4, 0x1d, 0x27, 0x68, 0x92, 0x2a, 0x1d, 0xb8, 0xf3,
0xee, 0x82, 0x3b, 0xe1, 0x3e, 0x79, 0xa2, 0x95, 0x98, 0xfb, 0xa5, 0xc7, 0xf2,
0xef, 0x78, 0x2d, 0x3b, 0xce, 0x5c, 0x71, 0xd7, 0xb0, 0x7b, 0xc4, 0x3d, 0xe3,
0x9e, 0x75, 0x17, 0xec, 0x66, 0xdc, 0x5e, 0x7b, 0xe5, 0xfa, 0x47, 0x78, 0x86,
0x2c, 0xe1, 0x3a, 0x95, 0x94, 0x1f, 0xe8, 0xb1, 0x2b, 0xe2, 0x3a, 0xd1, 0x9c,
0x75, 0x45, 0xe5, 0xdf, 0xb8, 0x7e, 0x55, 0xd2, 0x3a, 0x59, 0x95, 0x4d, 0x1c,
0x83, 0xaa, 0x88, 0xb5, 0xcb, 0xa0, 0x5b, 0x26, 0xab, 0xb8, 0x66, 0x7f, 0x7c,
0x27, 0x19, 0x67, 0xd6, 0x99, 0x73, 0x8a, 0x22, 0x4d, 0x6a, 0xb3, 0xda, 0xa2,
0xb6, 0xaa, 0x6d, 0x6a, 0xbb, 0xda, 0xa1, 0x76, 0xaa, 0x5d, 0x6a, 0xb7, 0xda,
0xa3, 0x2e, 0xd2, 0x9e, 0x9a, 0x94, 0x66, 0xa5, 0x45, 0x69, 0x55, 0xda, 0x94,
0x76, 0xa5, 0x43, 0xe9, 0x54, 0xba, 0x94, 0x6e, 0xa5, 0x47, 0xe9, 0xad, 0x78,
0x7f, 0xc4, 0xe0, 0x77, 0x00, 0xa7, 0xbd, 0xc6, 0xee, 0xb0, 0xbb, 0xec, 0xbf,
0x62, 0xad, 0xa5, 0x27, 0x50, 0x75, 0xdb, 0x15, 0xbb, 0x6c, 0x57, 0xed, 0x23,
0xe4, 0xf7, 0x95, 0x61, 0xc1, 0xef, 0x2d, 0xab, 0x06, 0x75, 0x32, 0xcc, 0x5e,
0xf4, 0xdb, 0x02, 0x9a, 0xcc, 0xb8, 0x6a, 0xb5, 0x87, 0x63, 0xc8, 0x8c, 0x60,
0xf6, 0xc9, 0x23, 0x7e, 0x6b, 0x3a, 0xb2, 0x98, 0x13, 0xb5, 0x9d, 0x1a, 0x32,
0xfb, 0x6d, 0x03, 0x34, 0x36, 0x68, 0x1b, 0x12, 0xf0, 0x66, 0x6d, 0x73, 0xb6,
0x79, 0xdb, 0xd3, 0xee, 0xbf, 0xac, 0xfa, 0x98, 0xac, 0x94, 0x33, 0xed, 0x1c,
0xb5, 0x8d, 0x59, 0xe8, 0xa5, 0xe0, 0x7c, 0xf8, 0xef, 0xf5, 0x44, 0xaf, 0x7e,
0xe7, 0x80, 0x73, 0xd0, 0x39, 0xe4, 0x1c, 0x76, 0x8e, 0x38, 0x47, 0x9d, 0x63,
0xce, 0x71, 0xe7, 0x84, 0x73, 0xd2, 0x39, 0xe5, 0x9c, 0x76, 0xfa, 0x9c, 0x33,
0xb0, 0xce, 0x25, 0x67, 0xf1, 0x1f, 0x5b, 0xed, 0x2a, 0xd5, 0xa6, 0xda, 0xd5,
0x6a, 0xb5, 0x46, 0x75, 0xa8, 0x4e, 0xd5, 0xa5, 0x4a, 0x2a, 0xfc, 0x32, 0xa4,
0x2a, 0xaa, 0xaa, 0x7a, 0x54, 0xaf, 0x5a, 0xab, 0xd6, 0xa9, 0xf5, 0x6a, 0x83,
0xda, 0xa8, 0xfe, 0x5b, 0xd7, 0xbe, 0x4f, 0xe9, 0x57, 0x06, 0x94, 0x41, 0x65,
0x48, 0x19, 0x56, 0x46, 0x94, 0x51, 0x65, 0x4c, 0x19, 0x57, 0x26, 0x94, 0x49,
0x65, 0x4a, 0x99, 0x56, 0x7c, 0xca, 0x8c, 0x32, 0xab, 0xcc, 0x29, 0xf3, 0x8a,
0x5f, 0x09, 0x28, 0x0b, 0xca, 0xa2, 0xb2, 0xa4, 0x2c, 0x2b, 0x2b, 0x70, 0xad,
0x76, 0x2b, 0x8a, 0xa2, 0x2a, 0x1e, 0xc5, 0xab, 0xd4, 0x2a, 0x75, 0x4a, 0xbd,
0xd2, 0xa0, 0x34, 0x2a, 0x2b, 0x8e, 0x55, 0xc7, 0x9a, 0x63, 0xdd, 0xb1, 0xe1,
0xd8, 0x74, 0x6c, 0x39, 0xb6, 0x1d, 0x41, 0xc7, 0x8e, 0x23, 0xe2, 0xa0, 0xbf,
0xa3, 0xd9, 0xab, 0x74, 0x57, 0xba, 0x6a, 0xbb, 0x5d, 0x83, 0x75, 0x70, 0x7e,
0xc8, 0x15, 0x76, 0x1d, 0xb8, 0x0e, 0x2d, 0xfd, 0xc6, 0xdc, 0x63, 0x0f, 0x3b,
0x0e, 0x1c, 0x87, 0x8e, 0x23, 0x87, 0x28, 0x1a, 0xd2, 0xa0, 0xbb, 0x8e, 0x3d,
0x0e, 0x29, 0xfd, 0x01, 0xfb, 0xaf, 0xdd, 0xd1, 0xe5, 0xe8, 0x70, 0xf4, 0x3a,
0xda, 0x1c, 0xdd, 0x8e, 0x4e, 0x47, 0x8f, 0xe3, 0xd8, 0x51, 0x84, 0xeb, 0x50,
0xde, 0x56, 0x80, 0x6d, 0xce, 0x96, 0xff, 0x23, 0xae, 0x37, 0xc5, 0x9f, 0x5c,
0xa7, 0x2a, 0xc5, 0xa6, 0xd8, 0x95, 0x6a, 0xa5, 0x46, 0x71, 0x28, 0x4e, 0xc5,
0xa5, 0x48, 0x8a, 0xac, 0x78, 0xec, 0x5e, 0xfb, 0x9f, 0x7d, 0x8e, 0x2c, 0xd8,
0x16, 0x6d, 0xbf, 0xfd, 0x68, 0xf8, 0x47, 0xd6, 0xa4, 0x68, 0x2f, 0xd9, 0x57,
0x6c, 0xab, 0xb6, 0x25, 0xdb, 0x32, 0x99, 0xf1, 0x16, 0xec, 0xf1, 0x6d, 0x75,
0xdf, 0x61, 0x25, 0xbb, 0xc1, 0xd6, 0x68, 0x6b, 0x62, 0x56, 0xaa, 0xd9, 0xd6,
0x62, 0xeb, 0x34, 0x99, 0xc7, 0xbd, 0xe0, 0xfd, 0xcf, 0xbe, 0x12, 0xd5, 0xc9,
0xea, 0x54, 0xb5, 0x16, 0x6d, 0xb3, 0xe5, 0xed, 0x8f, 0xe9, 0xff, 0x5e, 0x98,
0xf1, 0xf0, 0xcb, 0x67, 0x7a, 0xe6, 0x8c, 0x3b, 0x13, 0xce, 0x24, 0xbd, 0x62,
0xb4, 0xda, 0x4e, 0x1c, 0x51, 0xc7, 0xa9, 0x23, 0xe6, 0x38, 0x73, 0xc4, 0x1d,
0x09, 0xc7, 0xfd, 0x43, 0xca, 0x91, 0x76, 0x64, 0x1d, 0x39, 0x47, 0xde, 0x51,
0x70, 0x14, 0x1d, 0x25, 0xc7, 0xa1, 0x7a, 0xc4, 0x9d, 0xd9, 0xc7, 0x15, 0x9e,
0xe7, 0x7d, 0xae, 0x7e, 0xd7, 0x80, 0x6b, 0xd0, 0x35, 0xe4, 0x1a, 0x76, 0x8d,
0xb8, 0x46, 0x5d, 0x63, 0xae, 0x71, 0xd7, 0x84, 0x6b, 0xd2, 0x35, 0xe5, 0x9a,
0x76, 0xf9, 0x5c, 0x7f, 0xca, 0x79, 0xbc, 0xa7, 0xee, 0xab, 0x21, 0x35, 0xac,
0x1e, 0xe8, 0x66, 0x37, 0xe3, 0x9a, 0x75, 0xcd, 0xb9, 0xe6, 0x5d, 0x7e, 0x57,
0xc0, 0xb5, 0xe0, 0x5a, 0x74, 0x2d, 0xb9, 0x96, 0x5d, 0x2b, 0xae, 0x55, 0xd7,
0x9a, 0x6b, 0xdd, 0xb5, 0x51, 0xb6, 0xff, 0x55, 0x65, 0x4d, 0x59, 0x57, 0x36,
0x94, 0x4d, 0x65, 0x4b, 0xd9, 0x56, 0x82, 0xca, 0x8e, 0xb2, 0xab, 0xec, 0x29,
0xfb, 0x4a, 0x48, 0x09, 0x2b, 0x07, 0xca, 0xa1, 0x72, 0xa4, 0x1c, 0x2b, 0x11,
0xe5, 0x04, 0x7e, 0x6e, 0xc6, 0xc8, 0xe7, 0x9c, 0x53, 0x1c, 0xe3, 0xca, 0x99,
0xe1, 0xe7, 0x9e, 0xa8, 0x32, 0x2c, 0xd8, 0x07, 0xe3, 0x1c, 0xd6, 0x47, 0xbc,
0x41, 0x01, 0xb3, 0x5f, 0x9d, 0x44, 0x74, 0x42, 0x1d, 0x22, 0xd1, 0x29, 0xe1,
0x3e, 0x1d, 0xa1, 0xa8, 0xcf, 0x64, 0x9f, 0xf7, 0xaa, 0xd3, 0x18, 0x1d, 0x20,
0x9c, 0x51, 0x86, 0x3b, 0xf6, 0x44, 0x3f, 0x3b, 0x37, 0xd5, 0xa8, 0x7a, 0xa2,
0x46, 0xca, 0xa8, 0xcd, 0xab, 0x7e, 0x43, 0xc6, 0x8c, 0x3a, 0xab, 0xce, 0x61,
0x74, 0xe1, 0x49, 0x7a, 0x0a, 0x70, 0x2a, 0x1b, 0x70, 0x0d, 0xd8, 0x51, 0xed,
0x9e, 0xbf, 0x3c, 0xf5, 0xd9, 0xd3, 0x1d, 0x97, 0xf5, 0xa0, 0xd5, 0xf0, 0xec,
0xf7, 0x9f, 0x0f, 0x1b, 0x50, 0x73, 0xe1, 0x89, 0xeb, 0x96, 0x9e, 0x44, 0x6f,
0xde, 0xc3, 0x7d, 0x8e, 0x7e, 0xfe, 0xc3, 0x0a, 0x5f, 0xff, 0x8d, 0x7a, 0x9f,
0x5b, 0xd3, 0x5a, 0xf5, 0x8c, 0x3e, 0xff, 0xe7, 0xae, 0x39, 0xeb, 0xcf, 0x37,
0x68, 0xf5, 0x6d, 0x61, 0x1f, 0xa1, 0xdf, 0xdc, 0x9d, 0xfd, 0xc5, 0xc3, 0x83,
0xe3, 0xc5, 0x63, 0xb3, 0xbd, 0x96, 0x33, 0x5b, 0x1f, 0x51, 0xa3, 0xff, 0xc5,
0xf8, 0x8b, 0x87, 0x3f, 0xe4, 0x95, 0xfd, 0x63, 0x3a, 0xc1, 0xcf, 0x37, 0x2f,
0x7f, 0x58, 0x03, 0x68, 0xf5, 0xbd, 0xfc, 0x7d, 0xb5, 0x17, 0x5f, 0xda, 0x5f,
0xd5, 0xbc, 0xd2, 0xfd, 0x0b, 0xd9, 0x2b, 0x97, 0x0e, 0x53, 0x5e, 0x55, 0x78,
0xcd, 0xf7, 0xfd, 0x9e, 0x19, 0x74, 0xbf, 0xfa, 0x59, 0x85, 0x28, 0xd3, 0xe9,
0x82, 0x81, 0xda, 0xb2, 0x0e, 0x5f, 0x7b, 0xb5, 0xf1, 0xea, 0x57, 0xce, 0x2b,
0xca, 0xa9, 0xc7, 0x04, 0xb5, 0x12, 0x8f, 0xac, 0x9f, 0xa5, 0x79, 0xf9, 0x57,
0x0f, 0xff, 0xbd, 0x2a, 0x7a, 0x75, 0xbc, 0x1e, 0x7e, 0x8d, 0xbf, 0xad, 0xbd,
0xfe, 0xb7, 0x74, 0xbc, 0xf5, 0x7a, 0xf5, 0x0d, 0x3d, 0x27, 0xdf, 0xfc, 0x3f,
0xec, 0x83, 0xd8, 0x9b, 0xe6, 0xb7, 0x56, 0x78, 0x85, 0x37, 0x1e, 0x03, 0x5e,
0x3d, 0xe0, 0x8d, 0x4c, 0x6c, 0x2c, 0xf9, 0x27, 0xce, 0x33, 0x22, 0xe8, 0x7e,
0xaf, 0xcc, 0xcc, 0x5d, 0xe7, 0xd2, 0x39, 0xbd, 0x62, 0x9f, 0x57, 0x52, 0xad,
0xd1, 0x02, 0xbb, 0x64, 0xb8, 0x4e, 0x55, 0x29, 0x3d, 0x36, 0x7a, 0xfe, 0x14,
0xab, 0xb0, 0x7e, 0xde, 0x9e, 0xaa, 0x84, 0x9f, 0x3e, 0x7f, 0xf8, 0xef, 0xf5,
0xb8, 0x6b, 0xdb, 0x85, 0xe9, 0xef, 0x6f, 0x17, 0x31, 0xc3, 0x78, 0xe9, 0xe2,
0xcf, 0x99, 0x45, 0xef, 0xbb, 0xdf, 0x57, 0xcb, 0xff, 0x84, 0xb5, 0x4e, 0x2d,
0x6a, 0xa5, 0xdf, 0xb9, 0xde, 0xff, 0xfe, 0x55, 0xdd, 0x4f, 0xff, 0xf4, 0x6f,
0xb9, 0x4c, 0xd7, 0x7d, 0x60, 0xf7, 0x3f, 0x6a, 0x16, 0x63, 0x65, 0xb3, 0x66,
0xde, 0x37, 0x5e, 0x3e, 0x46, 0x79, 0x2a, 0xf3, 0x7d, 0x3b, 0x0c, 0xb9, 0xa3,
0x97, 0xbf, 0x73, 0x65, 0xd7, 0x1e, 0x55, 0x2d, 0x64, 0x92, 0x75, 0x7c, 0x69,
0xbb, 0xfa, 0x99, 0x8e, 0xd4, 0xab, 0x7f, 0xe2, 0xbc, 0x6d, 0xbb, 0xda, 0xbd,
0xfa, 0x13, 0xae, 0x1f, 0x09, 0xae, 0x8b, 0xb4, 0xc5, 0x9e, 0x8a, 0x7f, 0x44,
0xef, 0x66, 0xaf, 0x86, 0x0f, 0x22, 0xb4, 0xe5, 0xc3, 0x53, 0xd6, 0x18, 0xd1,
0xa8, 0x4d, 0x50, 0x7f, 0xf4, 0xc3, 0x3c, 0x17, 0x5b, 0xfc, 0xf0, 0xf0, 0xaf,
0x79, 0x45, 0xb2, 0xff, 0xfe, 0x9f, 0xed, 0xee, 0x6b, 0xf3, 0x78, 0x33, 0x17,
0xef, 0xb8, 0x9e, 0xbe, 0x7e, 0xea, 0x0e, 0xd6, 0x2b, 0x54, 0xdc, 0xbe, 0x7e,
0xf8, 0xef, 0xf5, 0xe4, 0xaf, 0xee, 0x8f, 0xf0, 0x93, 0xf7, 0xe3, 0xe8, 0x47,
0x33, 0xce, 0x38, 0x8d, 0x4e, 0x32, 0x3c, 0xdf, 0xc7, 0x5f, 0xdd, 0xdb, 0x72,
0x8e, 0xf7, 0x57, 0x72, 0x8f, 0x51, 0x39, 0x26, 0x7d, 0x9e, 0x54, 0xd4, 0x6f,
0xfa, 0x09, 0x66, 0xd7, 0xf4, 0x49, 0xf8, 0x59, 0xf3, 0x53, 0x05, 0x9f, 0xc1,
0x3e, 0x2d, 0x53, 0xb6, 0xff, 0x53, 0x65, 0xd5, 0x23, 0x9f, 0x1e, 0xdf, 0xf9,
0xc9, 0xa7, 0x7f, 0xdf, 0x91, 0x3c, 0x9b, 0x7f, 0x4c, 0x96, 0xef, 0xf3, 0xaf,
0xea, 0xe7, 0x98, 0x2a, 0x6f, 0xe5, 0xab, 0xbf, 0xfc, 0xfa, 0xf9, 0xb7, 0x3f,
0x51, 0x8d, 0x81, 0x2f, 0xff, 0xcc, 0xfe, 0x9b, 0x36, 0xa9, 0x3b, 0xff, 0xe5,
0xe8, 0xcb, 0xbf, 0xeb, 0x68, 0x94, 0xbe, 0xfe, 0xf7, 0xb3, 0xa5, 0xc2, 0xcf,
0x83, 0x5f, 0xc7, 0x7e, 0xe1, 0x9a, 0x4d, 0x14, 0x04, 0x9f, 0xb4, 0xfe, 0xaf,
0xf6, 0x91, 0xf3, 0x66, 0xa9, 0xf8, 0x3b, 0xeb, 0x1d, 0x7e, 0xb3, 0xf4, 0xaf,
0x18, 0xdf, 0x92, 0xdf, 0x9e, 0xaa, 0x62, 0xe6, 0xdb, 0x7f, 0x67, 0x49, 0xf9,
0x57, 0xcb, 0x6d, 0xe0, 0xf6, 0xbf, 0x55, 0xf8, 0xfb, 0xe5, 0xb8, 0xe3, 0x7d,
0x97, 0xc6, 0x97, 0xef, 0xac, 0x6b, 0xd5, 0xdd, 0x75, 0x97, 0x74, 0xd7, 0xad,
0xbb, 0xff, 0xd6, 0xf8, 0x29, 0x5e, 0xb2, 0xe1, 0x1f, 0xca, 0xa9, 0xf7, 0x13,
0xf7, 0xff, 0xdf, 0x73, 0xdf, 0xba, 0xb7, 0x19, 0xfe, 0x2d, 0x8d, 0x1d, 0x23,
0xd5, 0x15, 0xfc, 0xad, 0x4d, 0xb5, 0xa7, 0x06, 0xd8, 0x8e, 0x67, 0x9e, 0xf7,
0xf0, 0x53, 0xe1, 0x59, 0x8d, 0xc7, 0xe1, 0x31, 0xe7, 0xbb, 0x38, 0x6d, 0xe9,
0x99, 0xac, 0xab, 0xa5, 0xe8, 0x10, 0xaf, 0x69, 0x3f, 0xb5, 0x4f, 0xf4, 0x97,
0x46, 0xce, 0x32, 0x9d, 0xd7, 0x3d, 0xb2, 0x4e, 0x23, 0xe4, 0x35, 0x3d, 0x6b,
0xe1, 0xb2, 0x5b, 0xa9, 0xd7, 0xa6, 0x51, 0x6d, 0x17, 0x54, 0xe9, 0xe4, 0x30,
0x97, 0xa0, 0xcf, 0x0e, 0x86, 0xd1, 0x45, 0xec, 0x6e, 0x8d, 0x92, 0x04, 0x79,
0xb2, 0xa7, 0x07, 0x51, 0xb7, 0x46, 0x43, 0x11, 0xce, 0xbd, 0xf7, 0xa7, 0x57,
0xb6, 0x9f, 0x53, 0x18, 0x10, 0xe8, 0x79, 0x3c, 0x5e, 0x61, 0xed, 0x41, 0xe0,
0xd6, 0x42, 0x64, 0x88, 0xcb, 0xa9, 0xf3, 0xa8, 0x84, 0xdd, 0xc7, 0xe0, 0xf5,
0x80, 0x35, 0x08, 0x55, 0x46, 0x9e, 0x8d, 0x02, 0x6f, 0x0c, 0xb9, 0xe3, 0xcf,
0x1a, 0x09, 0x67, 0x02, 0xfd, 0x49, 0xaa, 0xd0, 0xa4, 0xc9, 0x9d, 0x82, 0x48,
0x33, 0x62, 0x2d, 0xb8, 0x9d, 0xae, 0x70, 0x1d, 0x66, 0x0c, 0xf8, 0xb3, 0x1c,
0x3e, 0x47, 0xbc, 0x36, 0xa8, 0x31, 0x4f, 0x6c, 0x3f, 0x8e, 0x01, 0x93, 0x7a,
0xed, 0x4c, 0xaf, 0x3e, 0x21, 0xaf, 0xca, 0xb3, 0xf8, 0x6c, 0xe9, 0x59, 0x87,
0xa7, 0xd3, 0xe0, 0x78, 0xee, 0x02, 0x7c, 0x19, 0x33, 0x57, 0x68, 0x7e, 0x37,
0xe1, 0xae, 0x02, 0xb2, 0x46, 0xd0, 0x75, 0x1a, 0xed, 0xe1, 0x94, 0x7a, 0x0d,
0xcf, 0x93, 0x7e, 0x1a, 0xe9, 0xf3, 0x0c, 0x78, 0x36, 0x49, 0xfe, 0x96, 0xa6,
0xcb, 0x6d, 0xea, 0x07, 0x89, 0xb5, 0x63, 0x30, 0xdf, 0x5d, 0xc4, 0xf7, 0x48,
0x74, 0x9f, 0x61, 0x85, 0x2a, 0xdc, 0x23, 0x07, 0x02, 0xfe, 0xe1, 0xb3, 0xa3,
0x67, 0x83, 0x9e, 0xe3, 0x67, 0x11, 0x26, 0x76, 0xc2, 0xf1, 0xc2, 0x9c, 0x17,
0xe5, 0xbc, 0x98, 0x4e, 0xf1, 0xec, 0x59, 0x5c, 0x87, 0x25, 0x10, 0x49, 0x52,
0x7c, 0x08, 0x56, 0x28, 0x03, 0xde, 0x08, 0x59, 0xa9, 0x1c, 0x8d, 0xe4, 0x35,
0xb9, 0x05, 0xea, 0x8f, 0x22, 0xb7, 0xa8, 0xd3, 0x1e, 0xf6, 0xa4, 0x9e, 0x4d,
0x60, 0x6c, 0x1c, 0xb6, 0x55, 0xf8, 0xd7, 0x7e, 0x93, 0x06, 0xfb, 0xc6, 0x4e,
0xfe, 0x16, 0xb0, 0x1a, 0xc7, 0x29, 0x4f, 0x45, 0x9f, 0x95, 0x2d, 0xb3, 0x7d,
0x42, 0xe6, 0x2c, 0xa0, 0x73, 0xba, 0x88, 0xc3, 0xd2, 0x5f, 0x27, 0xba, 0x34,
0xac, 0x84, 0xe6, 0xdf, 0x65, 0x25, 0x4d, 0x5c, 0x36, 0x54, 0x55, 0x68, 0xc4,
0xcf, 0xf4, 0xa2, 0x0a, 0xf8, 0x1e, 0xd3, 0xce, 0x6a, 0xb9, 0x68, 0x80, 0x9b,
0xd7, 0x82, 0xc5, 0x95, 0x5a, 0x24, 0xbc, 0x25, 0x03, 0xfe, 0x32, 0xc5, 0x1b,
0x9e, 0x37, 0x3e, 0x5f, 0xf1, 0x34, 0x95, 0x59, 0xab, 0xe6, 0xe7, 0x6b, 0x90,
0xb1, 0xee, 0x69, 0xf9, 0x2d, 0x7f, 0xf1, 0xb9, 0x61, 0xd0, 0x75, 0x1b, 0x54,
0xdf, 0xa4, 0xb1, 0xf6, 0xe7, 0x25, 0x2f, 0x39, 0xff, 0x85, 0xfc, 0x0e, 0x61,
0xaf, 0x9d, 0x42, 0xb4, 0x1b, 0xd0, 0x2e, 0xd3, 0xb9, 0x6d, 0xd3, 0x1a, 0xbd,
0x06, 0xbc, 0x7e, 0xc0, 0x07, 0x74, 0xb1, 0x41, 0x21, 0x7b, 0xe8, 0xf9, 0xb0,
0x61, 0xb5, 0x20, 0x54, 0x1a, 0x81, 0xe8, 0x2e, 0xa9, 0xb8, 0xe7, 0x19, 0xa3,
0xdc, 0x7d, 0xda, 0x45, 0xc8, 0xf2, 0x39, 0x73, 0xc0, 0x31, 0x27, 0x88, 0xd6,
0xa1, 0xe7, 0x88, 0xc3, 0x8f, 0xd1, 0x9b, 0x7c, 0x3e, 0x55, 0x76, 0x0f, 0x47,
0x34, 0x95, 0xa7, 0xcb, 0x66, 0xf8, 0x74, 0x8c, 0x19, 0x82, 0xcc, 0xfe, 0xd4,
0xf1, 0x14, 0x85, 0x4e, 0x4e, 0x49, 0x37, 0x7e, 0xaa, 0x14, 0x30, 0xd1, 0x5c,
0xc0, 0x58, 0xac, 0x82, 0xab, 0xd3, 0x99, 0x80, 0x1b, 0xe7, 0xb0, 0x45, 0x93,
0x7a, 0x09, 0x60, 0x2e, 0x61, 0x7c, 0x45, 0xc7, 0x5a, 0xb5, 0x3c, 0xf7, 0x4d,
0xca, 0xdc, 0x7a, 0xc4, 0x7a, 0x05, 0x9f, 0xef, 0x3c, 0x4f, 0x1a, 0xcc, 0xb8,
0xc4, 0xfc, 0x6d, 0xe8, 0x1e, 0x6a, 0xa7, 0x3c, 0xfb, 0x8f, 0xda, 0x27, 0x61,
0x41, 0x56, 0x5a, 0x53, 0x75, 0xd7, 0x50, 0xf9, 0xe0, 0xc7, 0x51, 0x49, 0x19,
0x59, 0xcf, 0x91, 0x86, 0x9d, 0x13, 0xce, 0x21, 0xaf, 0x43, 0x0b, 0x80, 0x1c,
0x63, 0x6e, 0x44, 0xa3, 0x70, 0xf2, 0xbc, 0xc8, 0xb0, 0x33, 0xc4, 0x8e, 0x3e,
0x2f, 0x51, 0xf4, 0x14, 0x33, 0xaa, 0xc8, 0x75, 0x25, 0xf6, 0xfc, 0x4c, 0xd7,
0x71, 0x1c, 0x91, 0x04, 0xc5, 0x93, 0xc4, 0x4a, 0xe1, 0x68, 0xf3, 0x3e, 0xdd,
0x55, 0x30, 0x83, 0x8a, 0x59, 0xd8, 0xe6, 0xe0, 0x9d, 0x37, 0x58, 0x3b, 0xbb,
0xb7, 0xf0, 0xbc, 0xa8, 0x89, 0x95, 0xa8, 0x5f, 0xfd, 0xe8, 0x7e, 0x6a, 0x04,
0x99, 0x0e, 0x0e, 0xab, 0xa2, 0x7f, 0x65, 0x6e, 0x63, 0xfe, 0xde, 0xbc, 0x1a,
0xed, 0x1a, 0x06, 0x71, 0x9a, 0xf4, 0xe0, 0x82, 0x98, 0xf3, 0x85, 0x0b, 0xd9,
0x52, 0xc5, 0x7f, 0xb5, 0xee, 0x26, 0x19, 0x92, 0x57, 0x21, 0x96, 0x0c, 0x7a,
0x2a, 0xa3, 0xe3, 0xc6, 0xda, 0x9e, 0x47, 0xfe, 0x3d, 0xbc, 0x6a, 0x61, 0xf5,
0x1a, 0x04, 0xda, 0x8d, 0x88, 0x35, 0xc1, 0xd6, 0x83, 0x0a, 0xcd, 0x2f, 0x6a,
0x85, 0x1d, 0xb4, 0x50, 0xb4, 0x8d, 0x8b, 0x77, 0xbc, 0xe8, 0x7e, 0x51, 0xcb,
0xd4, 0xae, 0x03, 0xbb, 0xa7, 0xc2, 0x39, 0x74, 0x6a, 0xf8, 0xbd, 0x9c, 0xdf,
0x47, 0xbc, 0x7a, 0x50, 0x1e, 0x00, 0x7b, 0xf0, 0xc5, 0x10, 0x17, 0x1f, 0x06,
0xaf, 0x41, 0x30, 0x7b, 0x67, 0x42, 0xf8, 0x19, 0x08, 0xd8, 0xa3, 0x4c, 0x7e,
0x13, 0x97, 0x39, 0x06, 0x91, 0x16, 0x40, 0x5a, 0xbd, 0x6d, 0x04, 0x6f, 0xb4,
0xb0, 0xae, 0x13, 0x44, 0x6f, 0x52, 0x37, 0xef, 0x29, 0x82, 0xb4, 0x7b, 0xa7,
0xd1, 0xf2, 0xbd, 0xe8, 0x10, 0xe8, 0xcd, 0xbc, 0xe8, 0x44, 0xb4, 0xcb, 0x3b,
0x4b, 0x15, 0xe6, 0x5e, 0x74, 0x5b, 0xa8, 0x3c, 0x4f, 0xf8, 0x3d, 0xde, 0x5e,
0x64, 0xfb, 0x2d, 0xac, 0x7c, 0x40, 0xc7, 0x59, 0x30, 0xc9, 0x5a, 0x7c, 0xb1,
0xf4, 0xa2, 0x4f, 0xd8, 0xc9, 0x8a, 0x41, 0xd6, 0x00, 0xb0, 0x57, 0x99, 0xd8,
0x3a, 0x63, 0x0f, 0x12, 0xa5, 0x21, 0xef, 0x70, 0xd9, 0xd9, 0x6d, 0xbe, 0xd8,
0x62, 0x32, 0xb7, 0x5f, 0x04, 0x1f, 0x75, 0x66, 0xec, 0x72, 0x59, 0x7b, 0x2f,
0x46, 0xb0, 0xee, 0xfe, 0x8b, 0xd0, 0x8b, 0xf0, 0xf7, 0x23, 0x81, 0x74, 0x71,
0xf0, 0x62, 0xec, 0x27, 0xae, 0x86, 0x11, 0x50, 0x1a, 0xf7, 0x9e, 0xbc, 0x88,
0x0a, 0x3a, 0x3c, 0x25, 0xd8, 0xb1, 0x41, 0xf7, 0x53, 0xa6, 0x75, 0xa7, 0xbd,
0x3e, 0x12, 0x8f, 0x63, 0xfe, 0x8c, 0x86, 0x1d, 0xe3, 0x54, 0x53, 0x8c, 0x37,
0x0b, 0xcc, 0x34, 0x17, 0x9d, 0xc3, 0xdc, 0x0c, 0xc5, 0xe6, 0xbd, 0x7e, 0x40,
0x72, 0xe8, 0xe7, 0x61, 0x5b, 0x80, 0x77, 0xc0, 0x5b, 0xa4, 0xf1, 0x05, 0xcb,
0x2b, 0x52, 0x82, 0x9c, 0x2a, 0xee, 0x9b, 0x32, 0x36, 0xe1, 0xf7, 0x66, 0xec,
0x1c, 0x5a, 0x5d, 0xe6, 0xbb, 0x35, 0x0e, 0x8c, 0x3b, 0x2d, 0x7f, 0x03, 0x67,
0x09, 0xfb, 0x5d, 0xc6, 0xad, 0xcb, 0x72, 0xd6, 0xaa, 0xe1, 0x2c, 0xd7, 0xbc,
0xd2, 0x4b, 0x19, 0x74, 0xdc, 0xf0, 0x56, 0x5e, 0xaa, 0x44, 0xd1, 0xa3, 0x53,
0xf6, 0xbe, 0x5c, 0x17, 0x6a, 0x6c, 0x7a, 0x6b, 0x39, 0x6e, 0x9d, 0x85, 0x9e,
0x1a, 0x04, 0x9c, 0xc6, 0x97, 0x41, 0xa2, 0xbf, 0x0d, 0xe3, 0x0e, 0x53, 0x6b,
0x97, 0xb1, 0xf7, 0xc0, 0x6e, 0xe2, 0xb2, 0xf7, 0x05, 0x5d, 0x35, 0xbf, 0x6c,
0x79, 0xd9, 0xfa, 0xb2, 0x8d, 0xf2, 0xda, 0x5f, 0x86, 0xbc, 0x1d, 0x5c, 0x56,
0x67, 0x99, 0x2e, 0xbb, 0x2a, 0xfe, 0x46, 0x54, 0xaf, 0x2e, 0xa3, 0xdf, 0xb2,
0xc6, 0x10, 0x30, 0x0f, 0x60, 0x1e, 0xc3, 0x26, 0x19, 0x87, 0x9a, 0x79, 0x8e,
0xbe, 0x1c, 0x63, 0xd8, 0xe3, 0xa6, 0xb5, 0x8e, 0xb8, 0xdc, 0x63, 0xc3, 0x63,
0x61, 0x82, 0xaa, 0x44, 0x04, 0x9c, 0x49, 0x93, 0x1a, 0x53, 0x5c, 0xec, 0x84,
0x66, 0x4f, 0x53, 0xdc, 0x47, 0xad, 0xa8, 0xb0, 0xfe, 0xa9, 0x77, 0x86, 0x32,
0x66, 0x5f, 0xce, 0xa1, 0x3d, 0xcf, 0xa9, 0xfa, 0x05, 0xf5, 0x73, 0xa5, 0xa5,
0x97, 0xcb, 0x0c, 0x1e, 0x23, 0xda, 0x2b, 0x06, 0xbd, 0x9e, 0x91, 0xf8, 0x2a,
0x13, 0x5f, 0x7b, 0xe2, 0x6f, 0xbf, 0xad, 0x97, 0xd1, 0xdb, 0x80, 0x78, 0x9c,
0x59, 0x83, 0x84, 0x60, 0x3d, 0x92, 0x88, 0x6d, 0x12, 0xa5, 0x14, 0xc3, 0x48,
0x73, 0xec, 0xad, 0xb2, 0xbd, 0x6f, 0x03, 0x23, 0xe3, 0x0d, 0xbe, 0xdc, 0x81,
0x71, 0x97, 0xb2, 0xb3, 0x82, 0x9a, 0x7b, 0x10, 0xdd, 0x87, 0x77, 0x88, 0xb2,
0xc2, 0xd4, 0x3a, 0xa0, 0x56, 0xae, 0x82, 0x9f, 0x20, 0x87, 0x90, 0x75, 0x44,
0x32, 0x8f, 0xff, 0x3e, 0xb6, 0x74, 0x3d, 0x47, 0x01, 0x39, 0xa1, 0xe8, 0xe9,
0xcb, 0x98, 0x86, 0x71, 0x66, 0x3a, 0xcb, 0x38, 0x44, 0x0b, 0x06, 0x5d, 0x15,
0x35, 0x78, 0x92, 0x53, 0x4a, 0x18, 0xea, 0x06, 0x84, 0xdf, 0x25, 0x4c, 0x31,
0xfc, 0x34, 0xb1, 0x17, 0x2c, 0x7c, 0xeb, 0x30, 0xc3, 0xd5, 0xc9, 0x1a, 0x56,
0xcd, 0xbd, 0x5c, 0x04, 0xb5, 0xfc, 0xf7, 0xf9, 0x20, 0xa7, 0x68, 0x3a, 0xef,
0x25, 0xac, 0x5c, 0x55, 0xc1, 0x37, 0xea, 0x6c, 0x16, 0xb9, 0xd5, 0x26, 0x3c,
0x87, 0x26, 0xe6, 0x04, 0x7f, 0xd9, 0xe2, 0x37, 0x2f, 0x57, 0x28, 0x4f, 0x36,
0xa8, 0xe0, 0x7e, 0xa5, 0x9a, 0xf6, 0xb8, 0x6a, 0x50, 0x69, 0x8d, 0xe2, 0xeb,
0x0c, 0xc3, 0x03, 0x5a, 0x1b, 0xd4, 0xf7, 0xfe, 0x92, 0xef, 0x1e, 0xe6, 0xc9,
0xff, 0xd7, 0xd6, 0xa1, 0xfa, 0x96, 0xaf, 0x9e, 0x54, 0x69, 0x78, 0xd5, 0xf8,
0xaa, 0x89, 0xab, 0xd8, 0x2c, 0xa8, 0xbf, 0x0b, 0xdd, 0xb5, 0x19, 0xf4, 0xd5,
0x09, 0x78, 0x17, 0x8d, 0xed, 0x95, 0x59, 0xe3, 0x7d, 0x5f, 0x1f, 0x70, 0xfb,
0x5f, 0x85, 0x90, 0x37, 0xf0, 0x6a, 0x10, 0x33, 0xc3, 0xe8, 0x0d, 0x6b, 0x2a,
0x8c, 0x50, 0xff, 0xc0, 0x54, 0x75, 0x0c, 0x78, 0x87, 0x94, 0x71, 0x04, 0xd6,
0xf1, 0x13, 0x7c, 0xc7, 0x36, 0xe2, 0x9b, 0xe4, 0xfa, 0x39, 0x45, 0xcd, 0x29,
0xc3, 0xbd, 0xe3, 0xc3, 0xc8, 0x0c, 0x89, 0xcf, 0xc2, 0x38, 0xf7, 0x2a, 0x46,
0xfa, 0x98, 0x66, 0xb2, 0xe6, 0x35, 0x0a, 0x7e, 0x9d, 0x62, 0x80, 0x20, 0x71,
0x5f, 0x02, 0xf3, 0x53, 0xba, 0xd9, 0x24, 0x4d, 0xe6, 0xb7, 0xa8, 0xd3, 0x5b,
0x42, 0x24, 0x8d, 0x39, 0x2b, 0x65, 0x8f, 0xae, 0x0c, 0xa7, 0xbd, 0x2e, 0xe0,
0x6f, 0x02, 0xb6, 0x85, 0xf8, 0x36, 0x6c, 0x83, 0x1c, 0x23, 0x4b, 0xb2, 0x73,
0x38, 0xe6, 0x75, 0x7d, 0xee, 0x00, 0x7b, 0x17, 0xde, 0x7b, 0x24, 0xab, 0xe0,
0x0b, 0x59, 0x38, 0xde, 0x8b, 0x8c, 0x4e, 0x98, 0xe1, 0x1f, 0xbc, 0x3a, 0xd4,
0x64, 0x1f, 0x81, 0xef, 0x82, 0xcf, 0x9a, 0x11, 0x8a, 0x9f, 0xbc, 0x3a, 0xb5,
0x50, 0xe1, 0x0c, 0x38, 0x52, 0x22, 0x8e, 0x4c, 0x99, 0xfb, 0xac, 0x9a, 0x34,
0xcd, 0x4e, 0x95, 0xd1, 0x4e, 0x0b, 0xe3, 0x19, 0xc3, 0xac, 0x1c, 0x44, 0xdc,
0x4c, 0x7d, 0x25, 0x61, 0xc4, 0x2c, 0xbc, 0x2a, 0xbe, 0x2a, 0xbd, 0xaa, 0xd2,
0x7d, 0xdf, 0xb6, 0x50, 0x7a, 0xf8, 0x65, 0x2f, 0x3b, 0xad, 0x56, 0x0d, 0x56,
0x8d, 0xe1, 0x77, 0x7d, 0x1d, 0x34, 0xa2, 0x26, 0x9c, 0x1c, 0xcb, 0x45, 0x3d,
0x2f, 0x37, 0x33, 0x89, 0x63, 0xc9, 0x3f, 0xf9, 0x2d, 0xe2, 0x5a, 0xa2, 0xad,
0xbc, 0xae, 0x03, 0xab, 0x9e, 0x56, 0x6a, 0x48, 0xa8, 0x8c, 0xb2, 0xc7, 0xa4,
0x8a, 0xf7, 0x75, 0x63, 0xa2, 0x8e, 0xc6, 0x9b, 0x12, 0xe5, 0x2a, 0x36, 0x03,
0xa3, 0x85, 0x63, 0xb5, 0xa2, 0xd7, 0x46, 0xb1, 0xf6, 0xef, 0x9d, 0x18, 0x56,
0xec, 0x20, 0xbc, 0x4e, 0x61, 0xa5, 0x86, 0xd7, 0x5d, 0x88, 0x77, 0x0b, 0xa3,
0x8d, 0x42, 0xd5, 0x9e, 0x44, 0x93, 0x10, 0xef, 0x65, 0x34, 0x9a, 0x0d, 0xfb,
0xe9, 0x63, 0x58, 0x2d, 0xc0, 0x6a, 0x45, 0x66, 0xbf, 0xa6, 0xfe, 0x00, 0xe3,
0x0f, 0x82, 0x3d, 0x94, 0x68, 0x33, 0x50, 0x6c, 0x47, 0xbc, 0x13, 0xb6, 0xc3,
0xc0, 0xeb, 0xe2, 0x58, 0xdd, 0xaf, 0x7b, 0x5e, 0xf7, 0x0a, 0xf2, 0x46, 0x50,
0x7d, 0x34, 0xd1, 0xc7, 0xc5, 0xc6, 0x68, 0xcd, 0xfe, 0xd7, 0x03, 0x24, 0x32,
0xa8, 0xcb, 0x1e, 0x7a, 0x3d, 0xce, 0xf5, 0x3a, 0x81, 0xde, 0xc8, 0xeb, 0x49,
0xc1, 0x0a, 0x8e, 0x42, 0xf6, 0x98, 0xe9, 0x11, 0x37, 0x05, 0x59, 0xd3, 0x89,
0xf2, 0xc7, 0x9d, 0x8f, 0x72, 0x26, 0x7e, 0xcb, 0xf7, 0xe0, 0x27, 0x85, 0x55,
0xa6, 0x84, 0xe8, 0xb4, 0x06, 0x9d, 0x4d, 0xcc, 0x09, 0x66, 0xe4, 0xd3, 0xb2,
0x5e, 0xcf, 0x19, 0xce, 0x64, 0x5e, 0x10, 0xf1, 0x23, 0x36, 0xaf, 0x53, 0xf6,
0x27, 0x02, 0x04, 0x0b, 0x00, 0x63, 0xe1, 0xfb, 0xbb, 0xec, 0x7a, 0x2e, 0x12,
0xfd, 0x25, 0x1c, 0x97, 0x71, 0xbb, 0x98, 0x58, 0x81, 0x71, 0xf5, 0xf5, 0x1a,
0x53, 0x7b, 0x1d, 0xed, 0x25, 0xd0, 0xdb, 0x30, 0xec, 0x75, 0x99, 0x56, 0x5b,
0xe1, 0xea, 0xae, 0xa2, 0xb7, 0xc9, 0xe5, 0x6d, 0x53, 0x2f, 0xf8, 0x88, 0xbd,
0xb8, 0xf3, 0xc8, 0x3d, 0xbf, 0x5b, 0x36, 0x6f, 0x9d, 0x76, 0xbe, 0xff, 0x3a,
0x44, 0xd8, 0xe1, 0xd7, 0x07, 0x86, 0x79, 0x87, 0x18, 0x39, 0xa2, 0xf1, 0x63,
0x03, 0xe6, 0xd6, 0x5f, 0x6b, 0x90, 0xa8, 0xb4, 0xe3, 0x13, 0x8d, 0x5e, 0x14,
0xfc, 0xd3, 0x0a, 0x66, 0x1f, 0x7b, 0x1d, 0x37, 0x64, 0x07, 0x13, 0x09, 0x26,
0x96, 0xb4, 0xac, 0xba, 0x43, 0x67, 0xb1, 0x8b, 0x56, 0x8a, 0xc9, 0x4c, 0x53,
0x3b, 0xf3, 0x3a, 0x4b, 0xec, 0x3d, 0xc2, 0xdf, 0xe7, 0x66, 0x9f, 0xc3, 0x68,
0x5e, 0x57, 0xb5, 0x08, 0x48, 0x88, 0x30, 0x4b, 0x9a, 0x68, 0x41, 0xd0, 0x63,
0xd8, 0xe2, 0x9a, 0x56, 0x19, 0xde, 0x7f, 0xc2, 0xf6, 0x13, 0x77, 0xa6, 0x38,
0x28, 0x5b, 0xdd, 0xfe, 0xe6, 0x30, 0xf1, 0x74, 0x57, 0xa3, 0xa3, 0x44, 0xcd,
0x1b, 0x07, 0xd7, 0xef, 0x31, 0xaa, 0x3b, 0x11, 0x73, 0x69, 0x66, 0x12, 0x79,
0x44, 0x65, 0x37, 0x6a, 0x28, 0x44, 0xe9, 0x04, 0x14, 0xd4, 0x37, 0x1e, 0xaa,
0xeb, 0x05, 0x2b, 0x9a, 0xa8, 0x15, 0xac, 0x58, 0x9d, 0x70, 0x15, 0x1b, 0x0c,
0xd6, 0xf6, 0x94, 0xeb, 0xac, 0xb9, 0xcc, 0x1e, 0x88, 0x69, 0xe6, 0xd1, 0x52,
0x86, 0xdf, 0x4e, 0xe3, 0xad, 0x4f, 0x74, 0xd7, 0x91, 0x8e, 0x8a, 0x74, 0xba,
0xde, 0x74, 0x73, 0xfc, 0x1e, 0xe2, 0xf5, 0x52, 0xf4, 0x8c, 0x99, 0x51, 0xdf,
0x9b, 0xfe, 0x37, 0x71, 0xea, 0x0f, 0x20, 0x27, 0x01, 0x7e, 0xe7, 0x9b, 0x41,
0x4e, 0x25, 0x49, 0x38, 0x29, 0xc1, 0x5e, 0x1d, 0x22, 0xcc, 0x34, 0xc6, 0x86,
0x89, 0x37, 0xc2, 0xe4, 0x8f, 0x3e, 0xc1, 0x4a, 0x64, 0x75, 0x95, 0xc7, 0xde,
0x8c, 0x83, 0xee, 0x04, 0x6a, 0xe7, 0x0c, 0x8f, 0xb6, 0x3c, 0x13, 0x99, 0x64,
0xfa, 0xc8, 0x10, 0x7c, 0x4a, 0xd0, 0xdb, 0xb4, 0x00, 0xf3, 0x19, 0xcc, 0x61,
0x06, 0xf0, 0xd9, 0x9f, 0x9a, 0x5f, 0x31, 0x51, 0xa2, 0x3d, 0x56, 0x31, 0x77,
0x1a, 0xb1, 0x25, 0xe7, 0xde, 0xcc, 0x83, 0x72, 0x01, 0xa2, 0x76, 0x8a, 0xfb,
0x01, 0x09, 0x18, 0xd6, 0x5b, 0x7c, 0xb3, 0x64, 0xa1, 0x97, 0x6a, 0xa2, 0x56,
0x43, 0xc6, 0xe5, 0x37, 0x2b, 0xc2, 0xac, 0x35, 0x8a, 0xae, 0x83, 0xb5, 0xa1,
0xe1, 0x6c, 0x11, 0xdf, 0xc1, 0xdd, 0x1d, 0xc5, 0xa9, 0xbb, 0x57, 0xca, 0xb6,
0x85, 0x8e, 0x82, 0x65, 0x38, 0x3b, 0x96, 0x56, 0x58, 0x22, 0xb5, 0x77, 0x4d,
0xd9, 0x7b, 0x5c, 0x74, 0x1f, 0xbd, 0xd0, 0x9b, 0x30, 0x45, 0x0f, 0x2c, 0xd5,
0x92, 0x2d, 0xdf, 0x3b, 0xe7, 0x10, 0xf5, 0x8e, 0x70, 0x7b, 0xcc, 0x69, 0x47,
0xd0, 0x3b, 0xe1, 0xb0, 0xa8, 0xb0, 0xfa, 0xe9, 0x4f, 0x1c, 0x61, 0x67, 0x5c,
0x6e, 0xfc, 0xaf, 0x73, 0xfc, 0x8d, 0x42, 0xfa, 0x4f, 0x92, 0x68, 0xea, 0x8d,
0x6a, 0x30, 0x23, 0x8f, 0x0e, 0xf7, 0x22, 0x92, 0x7e, 0x53, 0x07, 0x63, 0x3d,
0x13, 0xcd, 0xbc, 0x69, 0xa0, 0x5e, 0x63, 0xb2, 0x09, 0xec, 0x66, 0x2e, 0xb7,
0x56, 0x58, 0x21, 0x8b, 0x1d, 0xb4, 0x92, 0x58, 0x1b, 0x8c, 0xf9, 0xbf, 0xce,
0x69, 0xa6, 0xef, 0x12, 0xd8, 0x1d, 0xc9, 0xce, 0x64, 0x15, 0x73, 0x1f, 0xa0,
0x2e, 0x60, 0xda, 0xc0, 0xef, 0xa6, 0xaa, 0x35, 0x6f, 0x1d, 0x6f, 0x9d, 0x6f,
0x5d, 0x0c, 0xa7, 0x87, 0xc4, 0x7a, 0x93, 0x7d, 0x68, 0x49, 0x34, 0x26, 0x1b,
0xde, 0x51, 0xa8, 0x1f, 0x99, 0x6e, 0x88, 0x2b, 0x1c, 0x47, 0xe5, 0xbc, 0x41,
0xc3, 0xfd, 0xef, 0x25, 0xbc, 0xda, 0xb7, 0x43, 0xc8, 0xa9, 0x63, 0xf2, 0x86,
0x49, 0x56, 0x03, 0xa7, 0x35, 0x02, 0xe8, 0xa8, 0xa5, 0xe3, 0x69, 0xdc, 0x90,
0x35, 0x41, 0x22, 0x4d, 0x26, 0x77, 0x4a, 0x9a, 0x4c, 0xb6, 0x24, 0x5b, 0x48,
0xbc, 0xd5, 0x90, 0xd7, 0xf6, 0x76, 0x8a, 0xa9, 0xd2, 0xf1, 0xb6, 0xf2, 0x23,
0xce, 0x67, 0xf1, 0xdc, 0x98, 0x4d, 0xce, 0x11, 0x66, 0xf7, 0xdb, 0x1e, 0xae,
0x4e, 0xaf, 0xae, 0x6a, 0x9f, 0x0e, 0x99, 0x31, 0xa9, 0x32, 0x04, 0xec, 0x61,
0x9a, 0x31, 0xcf, 0x30, 0xfd, 0x65, 0x7b, 0x1b, 0x7d, 0x1b, 0xa0, 0x9c, 0x05,
0xb4, 0x16, 0x2d, 0x9f, 0xeb, 0x93, 0x50, 0x73, 0x4a, 0xd7, 0xe9, 0x12, 0xcd,
0x5f, 0x41, 0x6b, 0x9a, 0x32, 0x7c, 0x82, 0xd5, 0x9d, 0xa1, 0xd8, 0x2a, 0xb0,
0x67, 0xc1, 0x9b, 0xb3, 0xbc, 0x0f, 0xe6, 0x39, 0xa6, 0x1f, 0xbc, 0x65, 0xac,
0xb8, 0x96, 0x5c, 0x37, 0x9d, 0xc3, 0x84, 0xa6, 0xc2, 0x12, 0xf5, 0x37, 0x21,
0x6f, 0xd9, 0xb0, 0xfe, 0x56, 0x72, 0x85, 0xc4, 0xb6, 0x81, 0xb7, 0xa6, 0xe1,
0xad, 0xa3, 0xbf, 0xc1, 0xa0, 0x9b, 0x6f, 0xb7, 0x7e, 0xf0, 0x71, 0x0c, 0x32,
0xb1, 0x0d, 0xec, 0x70, 0x07, 0x90, 0x5d, 0x82, 0x06, 0xcb, 0xac, 0xfb, 0x3e,
0xf2, 0x42, 0x84, 0xbd, 0x83, 0xec, 0x5d, 0x9a, 0x13, 0x06, 0xfc, 0x80, 0xd1,
0x3f, 0x34, 0x59, 0xc5, 0x23, 0x26, 0x76, 0x0c, 0xf6, 0xc9, 0xdb, 0xe8, 0xdb,
0x53, 0x18, 0x63, 0x5c, 0xce, 0x3e, 0x68, 0x87, 0xa8, 0xfe, 0xd9, 0xdb, 0x38,
0x17, 0x0d, 0x43, 0x24, 0xc1, 0x21, 0x49, 0x4d, 0xc5, 0x1c, 0xf8, 0x79, 0xc4,
0x0e, 0x88, 0x4a, 0x01, 0xbd, 0xe2, 0xdb, 0x43, 0x66, 0xa6, 0x25, 0xc4, 0xaa,
0x84, 0xf7, 0xf3, 0xb2, 0x9d, 0xdb, 0x11, 0x3f, 0x22, 0xfc, 0xea, 0xf3, 0x63,
0xb4, 0x22, 0xc9, 0x13, 0x46, 0xa1, 0x86, 0xe4, 0xa6, 0xde, 0x46, 0x93, 0x0e,
0x62, 0x3b, 0x71, 0x3c, 0xfd, 0x25, 0x77, 0x7c, 0x8b, 0x33, 0xaa, 0x6e, 0xae,
0xef, 0x04, 0x89, 0xa8, 0x88, 0xc6, 0x4c, 0xaa, 0x27, 0x0d, 0x62, 0xa9, 0x64,
0x9a, 0x44, 0x32, 0x49, 0x0f, 0xaa, 0x78, 0x99, 0x0a, 0xb5, 0x9a, 0x55, 0xaa,
0xa3, 0x7e, 0xfd, 0x79, 0xd6, 0xc2, 0x5c, 0x1b, 0x08, 0xbf, 0x09, 0xc6, 0x66,
0xc3, 0x3b, 0xa8, 0xe5, 0x93, 0x2d, 0x5c, 0xac, 0x80, 0xca, 0xad, 0x1c, 0xd6,
0x86, 0x5e, 0x3b, 0x6c, 0x3b, 0x08, 0xde, 0x69, 0x7a, 0x47, 0xb6, 0x22, 0x68,
0x74, 0x51, 0x46, 0xb7, 0x01, 0xd7, 0x96, 0x1a, 0x64, 0x22, 0xf6, 0x54, 0x35,
0xb9, 0x27, 0xdc, 0xd0, 0xf9, 0x30, 0xc1, 0x47, 0xce, 0xc7, 0xce, 0x6b, 0x52,
0x0e, 0xcd, 0xbd, 0xe2, 0xc6, 0xcf, 0x9d, 0x80, 0x4c, 0x10, 0x8e, 0x8b, 0x46,
0x27, 0x11, 0x99, 0xb2, 0x74, 0xaf, 0xb8, 0x3e, 0x60, 0xf9, 0xce, 0x67, 0xce,
0x67, 0x39, 0xb6, 0x8c, 0x5a, 0xee, 0xd4, 0x1c, 0x83, 0x2a, 0xa9, 0x79, 0xf4,
0xfc, 0x14, 0x5b, 0x00, 0x4b, 0x05, 0xe6, 0x22, 0x41, 0x3c, 0xb4, 0x03, 0xaf,
0xee, 0xae, 0x76, 0x4b, 0x9c, 0x7e, 0xad, 0x26, 0x5e, 0xc7, 0xf9, 0x01, 0xc2,
0x5d, 0xa1, 0x39, 0xab, 0x4c, 0x76, 0x03, 0x70, 0xd7, 0x18, 0x7f, 0x03, 0xed,
0x46, 0x5d, 0xc5, 0xa6, 0x54, 0x73, 0x6a, 0x13, 0x62, 0x5b, 0x84, 0xdb, 0xc2,
0x30, 0x82, 0x16, 0xd6, 0x66, 0x47, 0xc7, 0xd9, 0x15, 0x64, 0xed, 0x13, 0x6c,
0x4f, 0x13, 0x0b, 0x9d, 0x87, 0x39, 0xa4, 0x15, 0xab, 0xb7, 0xd1, 0x1e, 0x8e,
0x68, 0xf4, 0xf8, 0x3c, 0x72, 0x7e, 0x22, 0x50, 0x8e, 0x9e, 0xc7, 0x08, 0x7a,
0x76, 0x1e, 0x3f, 0x4f, 0x30, 0x8c, 0xd4, 0x8f, 0x63, 0x0f, 0xd5, 0xba, 0x4c,
0xee, 0x20, 0xd8, 0x8d, 0xb1, 0x0c, 0x93, 0xdb, 0x53, 0xf6, 0x7e, 0x83, 0xbd,
0x84, 0x91, 0x35, 0x58, 0xa3, 0x3e, 0x88, 0xe7, 0x34, 0xb1, 0x7e, 0xaa, 0x3a,
0x00, 0xd6, 0x20, 0xf5, 0xf2, 0x3a, 0x8d, 0x02, 0x20, 0x43, 0x18, 0x2f, 0x72,
0xb1, 0xd2, 0xf9, 0x70, 0xaa, 0xd2, 0x2b, 0x52, 0x95, 0xc9, 0x9d, 0xf9, 0x46,
0x88, 0xda, 0x68, 0xca, 0x66, 0x7a, 0xff, 0xbe, 0xea, 0x8b, 0x1a, 0x5d, 0xdc,
0x71, 0xe1, 0xbc, 0x70, 0x31, 0xe8, 0x38, 0xd7, 0xd9, 0x44, 0x6a, 0x12, 0x7d,
0xc9, 0x40, 0x57, 0xbe, 0x70, 0x73, 0x11, 0x05, 0x3d, 0xd5, 0xa4, 0x8b, 0xa9,
0x94, 0x07, 0xa3, 0xd3, 0x7f, 0x9f, 0x3f, 0x84, 0x5d, 0x0b, 0xa3, 0x2f, 0xf5,
0x14, 0x57, 0xef, 0x19, 0x50, 0xa9, 0xbb, 0xa8, 0x27, 0xba, 0x0d, 0xb4, 0x9b,
0x26, 0x93, 0xbe, 0x9a, 0x0d, 0x62, 0xb3, 0xa0, 0xd5, 0x72, 0x31, 0x27, 0xec,
0xcb, 0xc7, 0xe4, 0xb4, 0x72, 0xf9, 0x7e, 0xe0, 0x07, 0x4c, 0xe6, 0xd2, 0x76,
0xb1, 0x90, 0x5a, 0xc4, 0x78, 0xbb, 0xb0, 0x6e, 0xe7, 0x45, 0x17, 0xe0, 0xdd,
0x17, 0x4b, 0x44, 0x63, 0xd9, 0x44, 0x6b, 0x1e, 0x63, 0x3d, 0x96, 0xef, 0xdc,
0xd8, 0x4b, 0x98, 0xab, 0x02, 0xcd, 0x3e, 0x12, 0x5b, 0x83, 0xd8, 0x00, 0xb1,
0x07, 0x61, 0x1c, 0x22, 0xf6, 0xba, 0x2e, 0x67, 0x18, 0x22, 0x1b, 0xa9, 0x91,
0x8b, 0xd1, 0x8b, 0x4d, 0xc3, 0x1e, 0x57, 0x52, 0xe3, 0x24, 0x7f, 0x9b, 0xe1,
0x4c, 0x10, 0x2c, 0x58, 0xc1, 0x3e, 0x9f, 0x84, 0x9c, 0xa9, 0x8b, 0x69, 0x6e,
0xae, 0x3b, 0xa9, 0x19, 0xf0, 0x77, 0x51, 0x65, 0x8f, 0x46, 0xf6, 0xd0, 0x9f,
0x45, 0x7f, 0xbf, 0xe2, 0xa3, 0x2a, 0x84, 0x19, 0x73, 0x98, 0x3d, 0x0f, 0x5b,
0x3f, 0xd5, 0x0d, 0x0b, 0xb5, 0x02, 0x65, 0x56, 0x7f, 0xe1, 0x62, 0xf1, 0xe2,
0xf0, 0xef, 0xeb, 0x21, 0x58, 0xc7, 0xa9, 0x25, 0xcc, 0x59, 0x26, 0x99, 0x2b,
0x38, 0x46, 0x08, 0x67, 0xd5, 0xc2, 0xde, 0x3c, 0x49, 0x6d, 0x5f, 0x44, 0x81,
0x1f, 0x64, 0xb8, 0x3b, 0xc2, 0xbc, 0x53, 0x54, 0xdd, 0x85, 0x58, 0x8c, 0xe8,
0xef, 0x33, 0xbc, 0xd0, 0x45, 0xf8, 0xe2, 0x80, 0xf1, 0xcf, 0x08, 0x27, 0x9e,
0x4a, 0x80, 0x95, 0x84, 0xf7, 0xa1, 0x40, 0xf5, 0xc8, 0xb0, 0xc3, 0x63, 0x26,
0x92, 0x4a, 0xad, 0x73, 0xbc, 0x13, 0xe2, 0x45, 0x29, 0x7a, 0x2a, 0xd4, 0x39,
0x03, 0x34, 0x03, 0x95, 0x23, 0x4c, 0x34, 0xae, 0x61, 0x66, 0x49, 0x9f, 0x89,
0x8b, 0x24, 0x44, 0x52, 0x17, 0x69, 0x8c, 0x67, 0x60, 0x9b, 0x85, 0x77, 0xee,
0x22, 0x8f, 0x7e, 0x81, 0x66, 0xe5, 0x80, 0x9f, 0xa7, 0xfb, 0xa0, 0xf8, 0x8b,
0xef, 0x74, 0x5a, 0x65, 0xf1, 0x2e, 0xa0, 0x36, 0xc2, 0x2b, 0x30, 0xc7, 0x55,
0x11, 0x6d, 0xbb, 0x50, 0xa1, 0x1a, 0xd0, 0x12, 0xc4, 0x6b, 0x48, 0xb4, 0x0a,
0xef, 0xe7, 0xe9, 0x20, 0x9e, 0x4d, 0x78, 0x77, 0x4f, 0xa7, 0x85, 0x5e, 0x24,
0x13, 0x8e, 0x0c, 0x31, 0xf7, 0x3b, 0x05, 0xb6, 0x2a, 0x61, 0xd9, 0x35, 0x75,
0x3c, 0x80, 0x57, 0x0b, 0x6b, 0x7b, 0xa9, 0xae, 0x83, 0xc6, 0x9d, 0xc4, 0x72,
0xc1, 0xe8, 0x7a, 0x57, 0xcb, 0x54, 0xae, 0xb3, 0x7c, 0x1f, 0x56, 0x29, 0xdd,
0x40, 0xb9, 0x8d, 0x60, 0xc9, 0xe9, 0x26, 0xe2, 0xbb, 0x41, 0xb5, 0xf9, 0x9d,
0x92, 0x56, 0x99, 0x7e, 0x5a, 0x2c, 0xeb, 0xb6, 0xbd, 0xf3, 0x08, 0xe6, 0xe1,
0x25, 0x58, 0x6d, 0xba, 0x0e, 0xad, 0x76, 0xa2, 0x57, 0x0f, 0x5e, 0x07, 0xd8,
0xad, 0x9c, 0x7e, 0xd7, 0xbb, 0x06, 0xaa, 0xd1, 0x0d, 0x91, 0x46, 0x8d, 0x62,
0x0f, 0xc3, 0xee, 0x7b, 0xd7, 0xc4, 0x44, 0x9b, 0xc1, 0xee, 0xd4, 0xf5, 0xda,
0x92, 0xee, 0x7f, 0x37, 0xf0, 0xae, 0xb5, 0xcc, 0x9d, 0x5b, 0x07, 0x49, 0xde,
0x90, 0x70, 0xae, 0xc3, 0x1c, 0xda, 0x4e, 0xb5, 0x3a, 0x88, 0xd5, 0x86, 0xe3,
0xe8, 0xbb, 0x31, 0xca, 0xeb, 0x4c, 0x77, 0xa5, 0xc7, 0xd1, 0x9b, 0xa8, 0xf8,
0xee, 0xb8, 0x93, 0x34, 0xa3, 0xbb, 0xec, 0xfd, 0x66, 0xa7, 0xdf, 0xf9, 0x80,
0x3d, 0xc3, 0xd5, 0x98, 0x25, 0xde, 0x1c, 0x8e, 0x3d, 0xe9, 0x79, 0x1c, 0xfb,
0x19, 0xad, 0x80, 0xae, 0xa7, 0xde, 0x74, 0x1f, 0x13, 0x1f, 0x48, 0x2f, 0x10,
0xc6, 0x22, 0x8e, 0x4b, 0xb0, 0x5d, 0xe6, 0x72, 0x06, 0xd3, 0x2b, 0x1a, 0x8d,
0x55, 0xf4, 0xd7, 0x7e, 0xac, 0x63, 0x7a, 0xdd, 0x74, 0xde, 0x1b, 0x10, 0xdd,
0xd4, 0x30, 0x82, 0xd4, 0x1f, 0xe6, 0xe6, 0x3d, 0xc2, 0x78, 0x3b, 0x4c, 0xce,
0x28, 0xc1, 0xb7, 0x4c, 0x2b, 0xed, 0x73, 0xd1, 0x10, 0x78, 0xe1, 0x77, 0x63,
0x24, 0x73, 0x9c, 0x8c, 0x07, 0x1a, 0x85, 0x09, 0xcd, 0xba, 0xef, 0xbd, 0x3b,
0x7c, 0x77, 0x04, 0x9c, 0xe3, 0x77, 0x91, 0x77, 0x27, 0x84, 0x1b, 0xc5, 0x71,
0xd2, 0x74, 0x0f, 0x4d, 0x43, 0xd4, 0x27, 0x64, 0x4c, 0x21, 0x3a, 0x93, 0x8e,
0xbd, 0x9b, 0x4d, 0x9f, 0x59, 0x3e, 0x42, 0xe6, 0xd2, 0xf3, 0x98, 0x97, 0x60,
0x32, 0xe2, 0xef, 0xfc, 0xe9, 0x85, 0x74, 0x52, 0xa7, 0xb1, 0x08, 0xcc, 0x14,
0xa0, 0x4b, 0x9a, 0xfa, 0xcb, 0x15, 0xde, 0xc3, 0x38, 0x4b, 0x95, 0x57, 0x21,
0x73, 0x4d, 0x98, 0xbd, 0x4e, 0xd0, 0x0c, 0xe5, 0xe6, 0xa8, 0x95, 0x07, 0xab,
0x60, 0x30, 0xc3, 0xe2, 0xbb, 0xd2, 0x8f, 0x2b, 0x31, 0x77, 0x47, 0xe3, 0x4d,
0xae, 0xca, 0x06, 0x7a, 0x5b, 0x1c, 0x66, 0xd7, 0xdc, 0x01, 0xb9, 0x9a, 0xf1,
0x6b, 0xd0, 0x76, 0x3c, 0xc1, 0xfd, 0xa1, 0xb7, 0xd3, 0x41, 0xae, 0xaa, 0xd3,
0x44, 0x73, 0xa7, 0x82, 0x75, 0x95, 0x75, 0x3a, 0x6e, 0x82, 0x28, 0xef, 0x55,
0x5d, 0xcc, 0x5b, 0x76, 0x26, 0xb5, 0xc0, 0xd8, 0x4d, 0xef, 0xa5, 0xeb, 0x0c,
0x98, 0xf5, 0x42, 0xbc, 0xf1, 0x7d, 0x93, 0x0e, 0x6f, 0xe6, 0x90, 0x16, 0x93,
0xca, 0xa1, 0x74, 0xab, 0x61, 0x34, 0x6c, 0x61, 0x2d, 0xda, 0xdf, 0x77, 0x40,
0x7e, 0xe7, 0xfb, 0x2e, 0x43, 0x95, 0x03, 0x50, 0x39, 0x4c, 0x77, 0x0b, 0xe3,
0xbd, 0x4f, 0x7a, 0xf7, 0xef, 0x01, 0x4e, 0x6d, 0xf0, 0xfd, 0x51, 0x7a, 0x48,
0xa8, 0x3f, 0xcc, 0xa0, 0x23, 0xef, 0x47, 0x4d, 0x7a, 0x88, 0xa4, 0x4f, 0xc8,
0x1a, 0x4c, 0x50, 0xd6, 0x24, 0x58, 0x53, 0x4c, 0xce, 0x38, 0xb1, 0xa7, 0x2d,
0xcd, 0xe5, 0xf4, 0xfb, 0xb5, 0xc4, 0xe2, 0xac, 0x63, 0x74, 0xfd, 0x67, 0xdf,
0xcf, 0x41, 0x8e, 0xff, 0x7d, 0x00, 0xb6, 0x0b, 0x4c, 0xf6, 0x22, 0xb5, 0xcf,
0x28, 0x77, 0x89, 0x60, 0xcb, 0x34, 0xb6, 0x22, 0xa8, 0xb7, 0xfa, 0x3e, 0x8e,
0x19, 0x6b, 0x24, 0xb6, 0x0e, 0xe3, 0xc6, 0xfb, 0x44, 0x3a, 0xf9, 0xfd, 0x7a,
0x83, 0x91, 0xcd, 0xf7, 0x69, 0x18, 0xb7, 0x30, 0x9e, 0x11, 0x1c, 0x09, 0xdb,
0x10, 0x09, 0xc2, 0x7b, 0x07, 0x19, 0xbb, 0xb8, 0xdd, 0x63, 0x2a, 0xed, 0x13,
0x3b, 0x0b, 0xb9, 0x21, 0x62, 0xe7, 0x38, 0x9d, 0x3c, 0x7a, 0x05, 0x8d, 0x76,
0x18, 0xb8, 0xc5, 0x1f, 0x57, 0x74, 0xb0, 0x4b, 0x65, 0x8e, 0xc2, 0xc3, 0xf7,
0xc7, 0xef, 0x23, 0x4c, 0xdd, 0x2a, 0xbc, 0xf7, 0xb9, 0x2d, 0xa3, 0xfb, 0x6d,
0x9d, 0x5b, 0x05, 0x7b, 0xa6, 0x5a, 0xc7, 0x38, 0x01, 0x86, 0x03, 0x50, 0x27,
0xbc, 0x5d, 0x19, 0x29, 0x23, 0xc3, 0xe8, 0xce, 0x28, 0x19, 0x35, 0x13, 0xd5,
0xac, 0xe0, 0x29, 0xe7, 0x9f, 0xa1, 0x17, 0x7f, 0xef, 0x01, 0xbe, 0x37, 0x53,
0x4b, 0x74, 0xeb, 0x60, 0x4c, 0x50, 0x5e, 0xf2, 0x7d, 0x8c, 0xd8, 0xf5, 0x4c,
0xdd, 0x14, 0x8d, 0x37, 0xe8, 0xba, 0x69, 0x04, 0xa4, 0x89, 0xa0, 0xe9, 0x32,
0x47, 0x4c, 0xe6, 0xc7, 0x5a, 0xbf, 0x6f, 0xce, 0xb4, 0x64, 0x72, 0xef, 0x5b,
0x39, 0xb5, 0x2e, 0xf0, 0x0a, 0x54, 0xa1, 0xf8, 0xbe, 0x2d, 0x53, 0x42, 0xaf,
0x1d, 0x59, 0x1d, 0x99, 0xaa, 0x4b, 0xdb, 0x25, 0x9c, 0xc3, 0xe0, 0xd9, 0x2f,
0xbb, 0x61, 0xdb, 0x93, 0xe9, 0xcd, 0x54, 0x5f, 0xd6, 0x08, 0xee, 0xca, 0xde,
0x47, 0x74, 0x1d, 0x97, 0xae, 0x4b, 0x27, 0x89, 0xf7, 0xeb, 0x3a, 0x1f, 0xc8,
0x0c, 0x66, 0x0c, 0x7f, 0x67, 0x85, 0x2c, 0x19, 0xde, 0x43, 0x84, 0xe1, 0x36,
0xbc, 0xf7, 0xbb, 0x4a, 0x22, 0x8a, 0x90, 0xe1, 0xa5, 0xe8, 0x70, 0x66, 0x24,
0x63, 0xfd, 0x1a, 0x31, 0xaa, 0xe3, 0xd6, 0x11, 0xa5, 0x7a, 0xa6, 0x4e, 0x03,
0xb5, 0xc7, 0x4c, 0xb4, 0x9b, 0x2f, 0x5b, 0x80, 0xd7, 0xaa, 0xe9, 0xaf, 0x8d,
0xf1, 0xdb, 0xc1, 0xee, 0xf8, 0xbe, 0xb6, 0x8f, 0xb8, 0x2f, 0x7e, 0x17, 0xe6,
0x8c, 0x7f, 0xdf, 0x1f, 0x97, 0xdd, 0x5c, 0xfe, 0x44, 0xa6, 0x17, 0xfd, 0xbe,
0xcb, 0x7e, 0x1c, 0x07, 0x84, 0xea, 0x43, 0x0c, 0x3a, 0x59, 0x66, 0x85, 0x46,
0x4c, 0xfa, 0x1b, 0xe3, 0x62, 0xe3, 0x1a, 0xe6, 0xc4, 0xe5, 0x24, 0x83, 0x4c,
0x69, 0xa2, 0xd3, 0x99, 0x69, 0x82, 0xf8, 0x04, 0x15, 0x66, 0x00, 0x9b, 0xbd,
0x9c, 0xfb, 0xc1, 0xc0, 0x1e, 0xe7, 0x29, 0xcf, 0x0f, 0x56, 0x00, 0xbd, 0x05,
0x4d, 0xee, 0xe2, 0xe5, 0x0c, 0x70, 0x67, 0x33, 0x4b, 0x04, 0x5f, 0xb9, 0x9c,
0xe3, 0xe6, 0xb7, 0x4a, 0xf0, 0x0d, 0x18, 0xe7, 0x33, 0x7e, 0x88, 0x2d, 0x5f,
0x06, 0x60, 0xbb, 0x79, 0xb9, 0x05, 0xc8, 0x02, 0xc7, 0x0d, 0x5e, 0x16, 0x4b,
0x70, 0x0d, 0xa3, 0x15, 0x16, 0x99, 0xe8, 0x1e, 0xa0, 0x4b, 0x1c, 0x7b, 0x97,
0xf2, 0xc2, 0x60, 0x2d, 0x33, 0xb1, 0x43, 0xf0, 0x57, 0x04, 0xab, 0x7c, 0x64,
0xba, 0xe7, 0x57, 0x33, 0x6b, 0x9a, 0x9c, 0xf5, 0x4c, 0xe4, 0x72, 0xe3, 0x7b,
0xaf, 0x65, 0xf6, 0xd8, 0x96, 0xc5, 0x63, 0xfe, 0x84, 0xa9, 0xbf, 0x9d, 0x89,
0x5e, 0x06, 0x33, 0x3b, 0x90, 0x19, 0xbb, 0x3c, 0xa5, 0xf8, 0x6e, 0xe6, 0xec,
0x32, 0x0e, 0xde, 0x1e, 0x55, 0x4c, 0x70, 0x3d, 0xef, 0x9b, 0x56, 0x0a, 0x91,
0x68, 0x0a, 0x73, 0xc2, 0xe0, 0x1d, 0xb0, 0xab, 0x62, 0xa1, 0xcb, 0x23, 0xe0,
0x64, 0x48, 0xc5, 0x2c, 0xad, 0x7c, 0x2c, 0xcc, 0x8c, 0x64, 0x4e, 0x0c, 0x15,
0xf3, 0x90, 0x1b, 0xcd, 0x14, 0x2c, 0x9d, 0x69, 0x45, 0x8e, 0x75, 0x9a, 0x29,
0x5d, 0xc6, 0xca, 0x74, 0x7a, 0xc6, 0xc5, 0xe3, 0x99, 0x84, 0x80, 0x5f, 0x43,
0x9e, 0x9b, 0x90, 0xc4, 0x58, 0x2a, 0xe3, 0x00, 0x3f, 0xad, 0xe1, 0x39, 0x35,
0xcf, 0x56, 0x90, 0x34, 0x7e, 0x06, 0xf8, 0xf2, 0x95, 0x1b, 0xd1, 0xac, 0xc5,
0x7d, 0x9c, 0x63, 0x78, 0x1e, 0xaa, 0xe7, 0x45, 0xab, 0x16, 0xb6, 0x75, 0x14,
0xab, 0xbf, 0xca, 0x67, 0x1e, 0x7e, 0xcb, 0xab, 0xe1, 0xaa, 0xf1, 0xaa, 0x40,
0x6a, 0x35, 0x41, 0xfd, 0x66, 0xd2, 0x43, 0x0b, 0x8c, 0xad, 0xc4, 0x6e, 0x27,
0x63, 0x07, 0xb7, 0x06, 0x9d, 0x57, 0xdd, 0x57, 0x3d, 0x88, 0xf4, 0x12, 0xbc,
0xcf, 0xe0, 0x79, 0x14, 0xfd, 0x1a, 0x7c, 0x40, 0xc8, 0x1b, 0xbc, 0x2a, 0x56,
0x30, 0xe7, 0x2a, 0xf2, 0x7c, 0x84, 0x21, 0x4e, 0xcb, 0x96, 0xb5, 0x03, 0x5e,
0x6d, 0xe9, 0xd9, 0x09, 0xc3, 0x24, 0xb3, 0x06, 0xd8, 0x23, 0xc4, 0x76, 0x3c,
0xf2, 0xa9, 0x0b, 0x63, 0x82, 0x19, 0x8d, 0xeb, 0xb0, 0xc9, 0xab, 0xa9, 0xab,
0x69, 0x8a, 0x4e, 0xe8, 0xe2, 0x32, 0x56, 0x77, 0x09, 0x7b, 0xf0, 0x19, 0x3e,
0xeb, 0x63, 0x86, 0x44, 0x66, 0x61, 0x9c, 0xe3, 0x58, 0xf3, 0xc2, 0x1c, 0xff,
0x55, 0x00, 0x71, 0x37, 0xd4, 0x59, 0x30, 0x50, 0x55, 0x68, 0x0f, 0x1e, 0xb0,
0x16, 0xaf, 0x96, 0xae, 0x96, 0x91, 0xb9, 0x72, 0xa5, 0x96, 0x59, 0xa1, 0x35,
0xa1, 0xe2, 0xfa, 0x95, 0x57, 0x97, 0xb7, 0xa9, 0x63, 0xd6, 0x02, 0x67, 0xe3,
0xaa, 0x0e, 0x99, 0xf5, 0x1c, 0x7f, 0x4b, 0xa0, 0xda, 0x94, 0x6d, 0x26, 0x9c,
0x6d, 0x93, 0xe7, 0xa0, 0x04, 0x31, 0xb6, 0x73, 0xd5, 0x2e, 0xec, 0x7b, 0x4f,
0x98, 0xb9, 0xcf, 0xa1, 0xdd, 0x8f, 0x3a, 0x26, 0x42, 0x57, 0xe1, 0xab, 0x03,
0xd0, 0xe9, 0xc7, 0xec, 0x43, 0x46, 0xf1, 0x48, 0x53, 0xf3, 0x58, 0x7b, 0x76,
0x60, 0x46, 0x84, 0xa0, 0x83, 0xe8, 0x9d, 0x70, 0x9c, 0x28, 0xf5, 0x4e, 0xaf,
0x86, 0x20, 0x3e, 0x0c, 0xef, 0xd8, 0xd5, 0x19, 0xc7, 0x19, 0x05, 0x2c, 0xae,
0x51, 0x1e, 0x33, 0x9c, 0xc9, 0x38, 0x44, 0x26, 0xb2, 0x93, 0x5c, 0x3c, 0xc3,
0x65, 0x67, 0x89, 0x97, 0x63, 0xd0, 0x3c, 0xda, 0x05, 0xd3, 0xa7, 0xd0, 0x94,
0x84, 0xd1, 0xaa, 0x0f, 0xd3, 0x26, 0xab, 0x6a, 0xa3, 0xcf, 0x69, 0xb1, 0x0b,
0x9e, 0xd8, 0x52, 0x8d, 0x58, 0x0d, 0x6e, 0x1d, 0x1f, 0x7c, 0xa0, 0xe3, 0xfc,
0xe0, 0xe2, 0x78, 0x12, 0x7a, 0x32, 0x6e, 0x67, 0x34, 0x75, 0xdc, 0x88, 0x2a,
0x02, 0x5d, 0x15, 0xb1, 0xb9, 0xbf, 0x8f, 0x7c, 0x86, 0xe3, 0x2d, 0xf3, 0xe4,
0x98, 0x79, 0xcc, 0xaa, 0xd5, 0xb1, 0xea, 0x38, 0x24, 0xc0, 0xf4, 0xd2, 0x08,
0x91, 0x85, 0x6c, 0x13, 0x6c, 0x9b, 0x4d, 0xb4, 0x5b, 0x21, 0xb6, 0x88, 0x59,
0x6d, 0x15, 0x3c, 0xbb, 0xa6, 0xfd, 0x43, 0x07, 0xb2, 0x97, 0x74, 0x6b, 0xdc,
0xa9, 0x53, 0x59, 0xce, 0xf6, 0x08, 0x95, 0x57, 0x2c, 0x1f, 0xf5, 0xfd, 0x98,
0x3f, 0x80, 0xdb, 0xd5, 0xec, 0xe0, 0x87, 0x21, 0xb0, 0x86, 0x05, 0x9a, 0x6b,
0xa0, 0xd8, 0x47, 0xf0, 0x71, 0x26, 0xbe, 0xce, 0x55, 0xda, 0xe0, 0xbc, 0x49,
0x61, 0x6f, 0x9b, 0x84, 0x33, 0x0d, 0x51, 0xdf, 0x5f, 0x7b, 0x99, 0xf0, 0xb6,
0x20, 0xb2, 0x8d, 0xd1, 0x60, 0x76, 0x96, 0xc9, 0x9d, 0x62, 0xec, 0xb1, 0xb2,
0x2b, 0xe9, 0xff, 0x10, 0x10, 0x70, 0x16, 0x10, 0xdb, 0x29, 0xbb, 0x2e, 0x4b,
0x4c, 0xee, 0x32, 0xa7, 0xb3, 0xa2, 0x53, 0x5d, 0xa5, 0xc8, 0x9a, 0xa0, 0xe2,
0x26, 0x60, 0x5b, 0x1f, 0xf6, 0xa0, 0xe2, 0x7e, 0x76, 0xbb, 0x4c, 0xd7, 0x41,
0x26, 0xbe, 0xf3, 0x21, 0x04, 0x39, 0xbb, 0x9a, 0x8c, 0x3d, 0xf4, 0xf7, 0x3f,
0x84, 0x4c, 0x95, 0x0e, 0x20, 0xf3, 0x90, 0x99, 0x63, 0x58, 0xc8, 0x0e, 0x03,
0xe3, 0x08, 0x59, 0xc7, 0xa6, 0xeb, 0x71, 0x40, 0xb3, 0x0f, 0x39, 0x9d, 0x23,
0xc6, 0x3b, 0x06, 0x3b, 0x4a, 0x55, 0x22, 0x18, 0x39, 0xd1, 0x54, 0x8d, 0x12,
0xff, 0x34, 0x7b, 0xfa, 0x21, 0xf6, 0xe1, 0x4c, 0xd7, 0x53, 0xac, 0x82, 0x6b,
0xf4, 0x19, 0xe5, 0xc6, 0x0d, 0xb2, 0x12, 0x0c, 0x9e, 0x2a, 0xb3, 0xee, 0x99,
0x0f, 0x59, 0xca, 0x48, 0x62, 0x5e, 0x8e, 0xfa, 0x05, 0x62, 0x95, 0x28, 0x52,
0xa5, 0xb9, 0x8f, 0x65, 0x0a, 0x32, 0xec, 0x80, 0xa5, 0x49, 0xc5, 0x8c, 0xae,
0xa3, 0x1a, 0x9a, 0xe1, 0x10, 0x3c, 0x9b, 0xc8, 0x75, 0x2d, 0x11, 0x34, 0x9b,
0xcd, 0x65, 0x65, 0x1d, 0x43, 0xb9, 0xce, 0x0b, 0xe6, 0x58, 0xc8, 0xaa, 0x94,
0x59, 0x34, 0x59, 0xb9, 0x92, 0x41, 0xac, 0xf6, 0xba, 0x0e, 0xf2, 0xeb, 0xaf,
0xab, 0x98, 0x67, 0xe5, 0x34, 0x5c, 0xdb, 0x84, 0x4f, 0xce, 0xb1, 0x33, 0x68,
0xcb, 0x75, 0x2b, 0xe4, 0x55, 0x9b, 0x3c, 0x61, 0xa7, 0x8d, 0x99, 0x41, 0xbb,
0x60, 0xbe, 0x35, 0x34, 0xb7, 0x93, 0x44, 0x1d, 0x88, 0x74, 0x83, 0xd7, 0x83,
0x88, 0x33, 0xd7, 0x2b, 0x7c, 0x86, 0x53, 0x1f, 0x83, 0x0e, 0xa0, 0xed, 0x62,
0xfa, 0x90, 0x72, 0x83, 0x88, 0x0d, 0x19, 0x3c, 0xff, 0x69, 0xf8, 0x7a, 0x44,
0x17, 0x19, 0x05, 0x44, 0x16, 0xcc, 0xc5, 0x2d, 0xc0, 0x94, 0xdc, 0x18, 0xb0,
0xc7, 0x05, 0xea, 0x2a, 0xb2, 0x27, 0x84, 0x75, 0x27, 0x35, 0xe8, 0xd4, 0x75,
0xad, 0x46, 0x7b, 0xf6, 0xba, 0x8e, 0x20, 0xf5, 0x30, 0xce, 0x31, 0xfc, 0x79,
0xb4, 0xfd, 0x9c, 0x42, 0xe0, 0xda, 0x4b, 0xd8, 0x0b, 0x15, 0x3f, 0xe7, 0x6a,
0x11, 0x32, 0x1a, 0x85, 0x7b, 0xae, 0xc9, 0xf4, 0x89, 0x49, 0xcd, 0x82, 0x68,
0x49, 0xf3, 0x2d, 0xea, 0x25, 0xd0, 0x5e, 0xd6, 0x75, 0xb4, 0xa2, 0x41, 0x56,
0xaf, 0xd7, 0x10, 0x69, 0x41, 0xc5, 0x56, 0xa2, 0xbb, 0xc1, 0xb1, 0x36, 0xc1,
0xdb, 0xba, 0xde, 0xb9, 0x0e, 0xc2, 0xb8, 0x4b, 0x23, 0x7b, 0xd7, 0xfb, 0x68,
0xb7, 0x69, 0x7a, 0x09, 0x21, 0x7a, 0x68, 0xba, 0x16, 0xc7, 0x10, 0x8d, 0x5c,
0x9f, 0xe8, 0x38, 0xd1, 0x32, 0x2b, 0x78, 0x7a, 0x1d, 0xb3, 0xb0, 0xc6, 0xf1,
0xeb, 0x0e, 0xda, 0x53, 0xea, 0xba, 0x93, 0xda, 0xe9, 0xb2, 0xb9, 0x19, 0x0b,
0xea, 0x5d, 0x44, 0x2f, 0x27, 0xe4, 0x76, 0xe7, 0xf2, 0x06, 0x1a, 0x3d, 0x24,
0xaf, 0x97, 0x8c, 0x05, 0xe0, 0x15, 0x39, 0x6e, 0x1f, 0x44, 0xfa, 0x73, 0x25,
0xc4, 0xaa, 0x34, 0x4f, 0xb1, 0x1a, 0xc8, 0xd9, 0x18, 0xa4, 0x1a, 0x6c, 0x3b,
0xf1, 0x6b, 0x70, 0x74, 0xe0, 0x76, 0x08, 0x14, 0x9c, 0x26, 0xcf, 0xbf, 0x72,
0x41, 0x6c, 0x98, 0x3d, 0x43, 0x09, 0x57, 0xa6, 0x39, 0x23, 0x10, 0x1d, 0xa5,
0x8c, 0x31, 0x6e, 0xdf, 0xba, 0x9f, 0xe4, 0xb9, 0x61, 0x8a, 0x50, 0x45, 0x25,
0xa8, 0x87, 0x89, 0x7a, 0x7f, 0xa2, 0x5e, 0x2d, 0xe6, 0xd6, 0x69, 0x14, 0xea,
0xd1, 0x6f, 0x28, 0xab, 0xdb, 0x68, 0xc8, 0x68, 0xa6, 0x91, 0x71, 0xe1, 0x19,
0xda, 0x02, 0xf1, 0x89, 0x5c, 0xab, 0x26, 0x7f, 0x92, 0xe1, 0xb6, 0x19, 0x6a,
0x4f, 0x01, 0xab, 0x93, 0x89, 0x76, 0x7d, 0xec, 0xd0, 0x71, 0x7b, 0x01, 0x99,
0x66, 0xd4, 0xfa, 0x18, 0xc6, 0x00, 0xda, 0x83, 0x14, 0x19, 0xd2, 0x65, 0xf7,
0x68, 0x90, 0x11, 0xc3, 0x5e, 0x7c, 0x15, 0x3c, 0xb1, 0x6d, 0x86, 0xe3, 0xce,
0xe6, 0xe6, 0x72, 0x63, 0x44, 0x77, 0xde, 0xa2, 0xca, 0x04, 0xf2, 0xa7, 0x3e,
0x4e, 0x5b, 0xda, 0xe3, 0x33, 0x8f, 0x38, 0x2e, 0x66, 0x75, 0x39, 0x7e, 0xa6,
0xb7, 0x39, 0x88, 0xce, 0x73, 0x8c, 0x00, 0x8d, 0x2e, 0x70, 0x73, 0xf0, 0x7f,
0x5c, 0x24, 0x7e, 0x40, 0xa7, 0xb8, 0xa8, 0x41, 0x96, 0xcb, 0xf6, 0xb9, 0x0a,
0x8c, 0xb5, 0x8f, 0x1b, 0x96, 0xe7, 0xb3, 0xa5, 0x61, 0x6e, 0x7f, 0x0c, 0x96,
0xc9, 0xdd, 0x85, 0xf8, 0x9e, 0x86, 0xb3, 0xaf, 0xcb, 0x39, 0xf8, 0x18, 0x42,
0x2c, 0x0c, 0xdb, 0x23, 0x12, 0x8d, 0x68, 0x58, 0x51, 0xea, 0xc7, 0x88, 0xb5,
0x8a, 0x2b, 0x71, 0x56, 0xb6, 0xfb, 0xb5, 0xbf, 0xaf, 0xc6, 0x84, 0x9b, 0x81,
0x31, 0x4b, 0xec, 0x1c, 0x97, 0x9f, 0x27, 0xde, 0x06, 0xcd, 0x29, 0x98, 0xe8,
0x6f, 0x02, 0x6b, 0x2b, 0xb7, 0x8d, 0xdc, 0xe2, 0xc7, 0xd2, 0xc7, 0x20, 0xcd,
0xda, 0x21, 0x56, 0xd5, 0x27, 0xf8, 0xe4, 0x8b, 0xcf, 0xc4, 0xdb, 0x45, 0xc4,
0x0e, 0x76, 0x35, 0xbc, 0xf7, 0x72, 0xfb, 0xdc, 0x7e, 0x0d, 0x99, 0x1e, 0xa9,
0x61, 0xc3, 0x68, 0x0d, 0xf3, 0xbc, 0x3d, 0x87, 0xe9, 0xb3, 0xf7, 0x9c, 0x4c,
0xf4, 0x20, 0x77, 0x98, 0x3b, 0xca, 0x1d, 0x33, 0xaa, 0xae, 0x4f, 0x12, 0x89,
0xcb, 0xa6, 0x2a, 0x0a, 0x44, 0x55, 0xca, 0x38, 0x11, 0xf6, 0x15, 0x45, 0xd4,
0x23, 0xd0, 0x39, 0x85, 0x88, 0x97, 0xc3, 0x63, 0xb9, 0x5a, 0xf4, 0xcf, 0x04,
0x4a, 0x71, 0xc4, 0xdc, 0x9f, 0x12, 0x30, 0xd6, 0x09, 0xbb, 0x8a, 0xe4, 0xc6,
0x1f, 0xf1, 0x5d, 0xaa, 0x24, 0xe8, 0x35, 0x70, 0x7a, 0x29, 0xae, 0x7a, 0x33,
0x8d, 0xa5, 0x01, 0x6f, 0xf9, 0xd4, 0x8a, 0x7e, 0x06, 0x39, 0x6d, 0x60, 0xb7,
0x0b, 0x7a, 0xc9, 0x42, 0x34, 0x57, 0xc1, 0x35, 0x2b, 0x9f, 0x2b, 0x70, 0xec,
0x22, 0x78, 0x1d, 0x8c, 0x6e, 0x29, 0xd7, 0xf9, 0xa9, 0x0a, 0x9f, 0x4b, 0xd8,
0xa5, 0xab, 0xd6, 0x4d, 0x10, 0x1b, 0x79, 0x6e, 0x61, 0x0f, 0x65, 0xd8, 0x4d,
0x9f, 0x64, 0xd8, 0xfb, 0xa9, 0x9a, 0xc6, 0x6b, 0x88, 0xe5, 0xa0, 0x48, 0x1f,
0xa8, 0xf4, 0x13, 0xa5, 0x01, 0x18, 0x87, 0x9e, 0xe0, 0x49, 0x8e, 0xc3, 0xa6,
0x1a, 0x2e, 0xa8, 0x3d, 0x42, 0x19, 0xa3, 0x60, 0x8d, 0x7d, 0x1a, 0xe7, 0x32,
0x26, 0x3e, 0x4d, 0x82, 0x3f, 0x85, 0x98, 0xc4, 0xcc, 0xcd, 0x27, 0xd4, 0x95,
0x91, 0xe1, 0xc6, 0xed, 0x0c, 0x30, 0x66, 0x09, 0x6b, 0x8e, 0xb2, 0xe7, 0x89,
0xa5, 0x58, 0x78, 0xe2, 0xe3, 0x02, 0x57, 0x43, 0xd5, 0x64, 0x2c, 0xea, 0x3a,
0xf0, 0x50, 0x86, 0x97, 0xe1, 0xd6, 0x12, 0x7b, 0x09, 0xf8, 0x75, 0x60, 0xd7,
0x1b, 0x54, 0x5e, 0xf9, 0xb4, 0x4a, 0x14, 0xd7, 0x74, 0xca, 0x01, 0xe1, 0x6c,
0x37, 0x10, 0xdd, 0xa4, 0xb1, 0xad, 0x4f, 0xdb, 0x9f, 0x82, 0x3a, 0xe6, 0xce,
0x5f, 0xd7, 0x9e, 0x4f, 0x7b, 0xa6, 0x7b, 0x62, 0x1f, 0xa3, 0x4d, 0xb4, 0xb7,
0xe6, 0x7c, 0xe8, 0x53, 0x98, 0xbd, 0x5e, 0x10, 0xbb, 0x05, 0x19, 0x8d, 0xb0,
0x3d, 0x14, 0xe8, 0x45, 0xcb, 0x1e, 0x31, 0x47, 0xc0, 0x38, 0x85, 0x77, 0x8c,
0x61, 0xb6, 0xd2, 0xaa, 0x67, 0x88, 0xc6, 0x3f, 0x25, 0x60, 0x6c, 0x13, 0xae,
0xd3, 0xb1, 0xb0, 0x42, 0x67, 0x3e, 0x05, 0x78, 0x1a, 0xde, 0x19, 0x78, 0x67,
0x29, 0x27, 0xc7, 0xb0, 0xbb, 0x50, 0xaf, 0x9b, 0xa8, 0xe6, 0x05, 0x3a, 0x05,
0xc0, 0x8a, 0x88, 0xf7, 0x08, 0x6b, 0x77, 0x20, 0xda, 0xcb, 0xc5, 0xec, 0xf4,
0x49, 0x9d, 0xd5, 0xc2, 0xa7, 0x81, 0xd6, 0x20, 0xea, 0xf8, 0xdc, 0x87, 0x59,
0xfd, 0x02, 0x5d, 0xe7, 0x67, 0x17, 0x93, 0x29, 0x81, 0x2d, 0x53, 0xdf, 0xcd,
0x69, 0x0e, 0xe8, 0xb2, 0x15, 0x5d, 0xcd, 0xa1, 0xbc, 0x4a, 0xb0, 0xe1, 0xfc,
0x88, 0x70, 0x16, 0xa3, 0x79, 0xcf, 0xe7, 0x41, 0x26, 0x32, 0xce, 0xd8, 0x5e,
0xcc, 0xad, 0xc5, 0x6d, 0x1d, 0x6e, 0xeb, 0x61, 0x3b, 0x61, 0x7a, 0xae, 0x4c,
0xe6, 0x1b, 0x91, 0xd9, 0x44, 0xea, 0xb6, 0x7c, 0x0e, 0x5b, 0xb8, 0x8f, 0x64,
0x1b, 0xb2, 0xdb, 0x3f, 0x4f, 0x11, 0xed, 0x69, 0xae, 0xc6, 0x8c, 0xa0, 0xe2,
0x1c, 0x62, 0x1d, 0xcc, 0x8c, 0xe7, 0x01, 0xe9, 0x44, 0xbf, 0xcb, 0xf0, 0x49,
0xac, 0xdd, 0x10, 0xe9, 0x21, 0xd1, 0x5e, 0x32, 0xf6, 0x71, 0x6c, 0x3f, 0xa9,
0xd5, 0xff, 0x79, 0x40, 0xa8, 0x32, 0xa8, 0x43, 0x87, 0x01, 0x19, 0xa1, 0x68,
0x40, 0xd7, 0xeb, 0x28, 0xc4, 0xc6, 0x4c, 0x9e, 0x0d, 0x3b, 0x4e, 0x62, 0x13,
0x30, 0x4e, 0x1a, 0xf0, 0xa6, 0x10, 0x9f, 0xb6, 0xf8, 0x84, 0xd9, 0x05, 0xe8,
0x61, 0x31, 0xbf, 0x94, 0x9f, 0x01, 0xfe, 0x2c, 0xc9, 0x59, 0xc6, 0xbe, 0xe6,
0xc0, 0x9b, 0x47, 0xc4, 0xcf, 0x68, 0x05, 0x18, 0x7b, 0x01, 0xec, 0x45, 0x78,
0x2f, 0x99, 0xd4, 0x5a, 0xd6, 0xc5, 0x56, 0x08, 0xb2, 0x0a, 0xe3, 0x1a, 0xda,
0xeb, 0x26, 0xf9, 0x1b, 0x5c, 0x6c, 0xd3, 0x80, 0xb9, 0xf5, 0x79, 0xdb, 0x20,
0xb2, 0x92, 0x0f, 0x0a, 0x22, 0x3b, 0x42, 0xf6, 0x6a, 0x7e, 0x2d, 0x1f, 0x82,
0x48, 0x58, 0x13, 0x3d, 0x30, 0xec, 0xef, 0x90, 0x8b, 0xec, 0x53, 0x6f, 0x3d,
0xbf, 0xa1, 0xd9, 0xb7, 0x9b, 0xba, 0x7d, 0x1d, 0x41, 0x76, 0xd4, 0x50, 0xfb,
0x54, 0x13, 0xd9, 0xd6, 0x29, 0x9c, 0x11, 0x46, 0x02, 0xc6, 0xe4, 0xe7, 0x14,
0xf1, 0xd2, 0x9f, 0x33, 0x9f, 0x83, 0xf9, 0xac, 0x26, 0x3b, 0xf6, 0x39, 0x07,
0x48, 0x1e, 0xd1, 0x1d, 0xa2, 0xb4, 0x9b, 0x2f, 0x50, 0xd6, 0x1e, 0x62, 0xc5,
0xcf, 0xfb, 0xc2, 0x33, 0x36, 0xa4, 0x43, 0x4b, 0x8c, 0x7e, 0x15, 0x79, 0x4a,
0xae, 0x4d, 0xf0, 0xb4, 0x5c, 0xbb, 0xc9, 0x13, 0x74, 0x6b, 0x4c, 0x62, 0x0e,
0x2e, 0xe6, 0xa4, 0x9e, 0x8b, 0x5a, 0x6e, 0x86, 0xa1, 0x3e, 0xf9, 0x73, 0x7a,
0xc3, 0x9a, 0x19, 0x7b, 0x04, 0x15, 0x0e, 0x2c, 0xfc, 0x26, 0xe0, 0xfd, 0x52,
0xfb, 0xa5, 0x0e, 0x72, 0xeb, 0x05, 0xf9, 0x87, 0x24, 0xff, 0x08, 0xc7, 0xa6,
0x2f, 0x0d, 0x5f, 0x9a, 0x35, 0xac, 0x16, 0xcb, 0xf3, 0x6a, 0xfd, 0xd2, 0x46,
0xb8, 0x91, 0x7c, 0x47, 0x45, 0xab, 0x71, 0x9a, 0x8f, 0xe5, 0xcf, 0xa0, 0x83,
0x13, 0xe1, 0x6c, 0xe2, 0x3a, 0x34, 0x01, 0x48, 0x92, 0xa2, 0x5d, 0x50, 0x2b,
0xc5, 0x71, 0xd2, 0xe0, 0xf5, 0x60, 0x07, 0xbd, 0xa4, 0x8f, 0xbe, 0x8a, 0xf7,
0xce, 0xe0, 0x4f, 0xec, 0xcf, 0x21, 0x5d, 0xee, 0x30, 0x87, 0x8c, 0x10, 0x2f,
0x23, 0xfe, 0x19, 0x57, 0xb6, 0xf2, 0x18, 0xc7, 0x18, 0x7f, 0x74, 0xa7, 0x39,
0xa8, 0x3f, 0x01, 0xd9, 0x93, 0x86, 0x0a, 0x79, 0xa6, 0xc3, 0x29, 0x86, 0xe5,
0x03, 0x7b, 0x06, 0xfd, 0x02, 0x37, 0x87, 0x59, 0xc0, 0xe6, 0xbe, 0xf8, 0xbf,
0x14, 0x01, 0x0d, 0x7c, 0x29, 0x19, 0x1c, 0x9d, 0x8b, 0x5f, 0xaa, 0x0a, 0x56,
0xfa, 0x5b, 0x02, 0x35, 0x1b, 0xc7, 0x5c, 0xe6, 0x3a, 0x5d, 0x01, 0xcf, 0xce,
0xc4, 0x57, 0xbf, 0x54, 0x8b, 0x9e, 0x76, 0x4c, 0x73, 0x6a, 0x48, 0xd4, 0x51,
0xb0, 0xb6, 0x3e, 0x4e, 0xc2, 0x73, 0x15, 0x2a, 0x59, 0xd5, 0x8d, 0x8a, 0xf6,
0x87, 0xc4, 0x69, 0xaf, 0xeb, 0x72, 0x37, 0x39, 0x64, 0xcb, 0x82, 0xb6, 0xcc,
0x29, 0x6e, 0x6b, 0x32, 0xdc, 0x96, 0xe7, 0xa2, 0x00, 0x53, 0x65, 0xd8, 0xc1,
0x2f, 0x7b, 0x54, 0x6b, 0x17, 0xad, 0x7d, 0xd3, 0x6e, 0x42, 0x18, 0x0d, 0x9b,
0x70, 0x0e, 0x2a, 0x58, 0xa9, 0x43, 0xe4, 0xd6, 0x09, 0xbb, 0x3f, 0xc6, 0x58,
0x3d, 0x8d, 0x35, 0x50, 0x2b, 0x22, 0xac, 0xd0, 0x68, 0xb8, 0x06, 0x27, 0x3a,
0x7e, 0x14, 0x90, 0x53, 0x81, 0x4a, 0x4c, 0x87, 0x9d, 0x7d, 0x89, 0x73, 0x58,
0xe2, 0x4b, 0x53, 0x21, 0xf9, 0x25, 0xf5, 0xe3, 0x5c, 0xd7, 0xf0, 0xf3, 0xe0,
0x17, 0xe0, 0xdd, 0xcc, 0xf4, 0x52, 0xa4, 0x9c, 0x12, 0x5a, 0x55, 0x65, 0x9f,
0xd3, 0xdd, 0x52, 0xb0, 0x11, 0x8e, 0x9d, 0xe1, 0x56, 0xff, 0xd4, 0xf3, 0xbd,
0x9d, 0x5f, 0x1d, 0x4c, 0xbe, 0x0b, 0x6c, 0x59, 0xa7, 0xe7, 0xfe, 0xe5, 0x4f,
0x10, 0x57, 0xbf, 0x2a, 0x58, 0xc3, 0xa3, 0xa9, 0xd4, 0x66, 0x7a, 0xfc, 0xd6,
0x7e, 0xad, 0x43, 0x7e, 0x3b, 0x61, 0x75, 0x30, 0xec, 0xce, 0x42, 0x03, 0xd5,
0x6a, 0x24, 0x56, 0xb7, 0x4e, 0xad, 0xa7, 0xf0, 0xf0, 0x87, 0xbf, 0x9a, 0x2a,
0x5c, 0xfb, 0xe6, 0xf2, 0x47, 0x51, 0x59, 0x46, 0xab, 0x8e, 0xd1, 0x5b, 0xd1,
0x3a, 0xb5, 0x43, 0x7e, 0x07, 0xa3, 0xd1, 0x87, 0xd9, 0xfd, 0x8c, 0xc6, 0x00,
0xd8, 0x9d, 0x96, 0x66, 0xd6, 0x55, 0x96, 0xd5, 0xfb, 0xb5, 0x8f, 0xe1, 0x74,
0x6b, 0xf8, 0x03, 0xe0, 0x0f, 0x0a, 0x34, 0x06, 0x0b, 0x43, 0x5f, 0x87, 0xbf,
0x0e, 0x91, 0x9e, 0x46, 0x4c, 0xab, 0x8c, 0x63, 0x74, 0x82, 0x70, 0x86, 0x4d,
0xd6, 0x62, 0x52, 0xa7, 0x33, 0x65, 0xa2, 0x3c, 0x2d, 0x88, 0xf9, 0xbe, 0xce,
0x00, 0x3a, 0xfb, 0x75, 0x44, 0x58, 0x65, 0xf4, 0xd1, 0xc7, 0xeb, 0x1c, 0x53,
0x6b, 0xbe, 0xcc, 0x9a, 0xfa, 0x69, 0x3c, 0x00, 0xd6, 0xc2, 0xd7, 0x45, 0xea,
0x2f, 0x51, 0x6b, 0xbc, 0x6c, 0x27, 0x2b, 0xc8, 0x5d, 0x7d, 0xb2, 0x6b, 0xc7,
0xfa, 0xd7, 0xc9, 0xc2, 0xa6, 0x46, 0x6d, 0xcb, 0x54, 0x7d, 0x9b, 0x8b, 0x4e,
0x19, 0x76, 0x1c, 0x04, 0xde, 0xb4, 0x2e, 0xea, 0x13, 0xf0, 0x77, 0x04, 0xf5,
0x76, 0x05, 0xd8, 0x0c, 0xc9, 0xdd, 0xfb, 0xfa, 0x67, 0x5e, 0x55, 0x42, 0xd0,
0xd7, 0x9c, 0xc9, 0x1e, 0x0c, 0x7f, 0x9d, 0x2f, 0x1c, 0x0a, 0x7b, 0x3f, 0xa6,
0x68, 0x84, 0x58, 0x51, 0x1c, 0x4f, 0x19, 0x76, 0x0c, 0xec, 0x33, 0x61, 0x76,
0x9c, 0xa0, 0x7e, 0x52, 0x3b, 0xc0, 0xf4, 0xb0, 0x80, 0x76, 0x82, 0x30, 0x92,
0x4c, 0x7e, 0xea, 0x6b, 0x9a, 0xf1, 0x16, 0x49, 0x4e, 0xe6, 0xa7, 0xd7, 0x76,
0x49, 0xb0, 0x02, 0x59, 0x03, 0xd5, 0xfc, 0xd7, 0x42, 0xc5, 0xf5, 0x8a, 0x4f,
0xbc, 0xf7, 0x6d, 0x37, 0x78, 0x5e, 0x91, 0xae, 0xed, 0x37, 0xe4, 0xe7, 0xff,
0x0d, 0xfd, 0x8d, 0x18, 0x22, 0x6b, 0xf0, 0x5e, 0x87, 0xf7, 0x06, 0x33, 0x37,
0xc7, 0xcd, 0xa6, 0xc9, 0xbe, 0x76, 0x61, 0xfe, 0x16, 0x32, 0xa4, 0x1b, 0xcd,
0x19, 0x44, 0xf3, 0xe4, 0x9b, 0x60, 0x61, 0x07, 0xbc, 0xdd, 0x82, 0xfb, 0xc6,
0xac, 0xc7, 0x3d, 0x9a, 0xa1, 0xde, 0xec, 0x17, 0x42, 0x05, 0x8f, 0x01, 0xbb,
0x81, 0xe0, 0x61, 0xe4, 0xd7, 0x81, 0x77, 0x00, 0x56, 0xad, 0x86, 0xdd, 0x78,
0xd3, 0x74, 0x53, 0x4f, 0xb0, 0x66, 0x18, 0x5b, 0x4c, 0x6a, 0x1f, 0x15, 0x8e,
0x0b, 0x11, 0xd0, 0x68, 0x25, 0x9c, 0x36, 0x18, 0xdb, 0x89, 0x7d, 0x52, 0x88,
0x92, 0xbe, 0x4e, 0x35, 0x2b, 0x11, 0x03, 0xff, 0x0c, 0xb1, 0x38, 0x6e, 0x3b,
0x20, 0xa3, 0xf3, 0xa6, 0x0b, 0xf3, 0x12, 0xba, 0x55, 0xeb, 0xbe, 0xe9, 0xb9,
0x49, 0x9a, 0x5e, 0xf9, 0x7a, 0x21, 0xb3, 0x0f, 0xde, 0x29, 0x86, 0xd5, 0x8f,
0x6a, 0x03, 0x37, 0x65, 0x3e, 0x83, 0xd2, 0xf8, 0x90, 0x80, 0x99, 0x06, 0xbd,
0x61, 0x1d, 0x3e, 0x52, 0x46, 0x33, 0x23, 0xe8, 0x75, 0x94, 0xe4, 0x64, 0x21,
0x36, 0x86, 0x76, 0x0e, 0xac, 0x71, 0xb4, 0x26, 0x18, 0xbd, 0x3c, 0x97, 0x3b,
0x79, 0x33, 0x75, 0x63, 0xe5, 0x18, 0x2d, 0x60, 0xd6, 0xb4, 0x80, 0x5b, 0x2a,
0x54, 0x15, 0xb9, 0x4f, 0x8f, 0x37, 0xb6, 0xe2, 0x1c, 0xf2, 0xec, 0x45, 0xc1,
0xb9, 0x53, 0x98, 0x67, 0x34, 0xaa, 0x91, 0xe1, 0x67, 0x90, 0x1a, 0x26, 0x27,
0x70, 0xb3, 0x70, 0xf3, 0xc8, 0x2b, 0x00, 0xcd, 0x73, 0x14, 0x9d, 0x45, 0x17,
0x68, 0x4a, 0x44, 0x57, 0x86, 0x71, 0xf9, 0xc6, 0x4d, 0xbc, 0x15, 0xe4, 0xad,
0x12, 0xf6, 0xda, 0x8d, 0x02, 0xf8, 0x3a, 0xcd, 0xdd, 0x40, 0x6b, 0x93, 0xeb,
0x61, 0xeb, 0x66, 0x9b, 0xf8, 0x41, 0x18, 0x77, 0x6e, 0x76, 0xcb, 0x74, 0xa8,
0x92, 0x4a, 0xa1, 0x9b, 0xf0, 0xf7, 0x73, 0x41, 0xc7, 0xf6, 0x14, 0x0f, 0x09,
0x76, 0x24, 0x50, 0x3a, 0x06, 0x2c, 0xc2, 0xe0, 0x27, 0x1a, 0x4e, 0x94, 0xf8,
0xa7, 0x1c, 0x1e, 0x37, 0xec, 0x29, 0x71, 0x93, 0x84, 0x98, 0x97, 0xf4, 0x94,
0xa2, 0xbc, 0xda, 0x62, 0x1d, 0x60, 0x69, 0xf0, 0x33, 0x88, 0xd5, 0x13, 0x46,
0x16, 0xbc, 0x1c, 0xa7, 0xd6, 0x40, 0xf7, 0x4f, 0x1e, 0xf0, 0x42, 0x99, 0xd9,
0xdb, 0xbe, 0xc1, 0x51, 0x00, 0xef, 0xea, 0x6f, 0xe4, 0xbc, 0x2f, 0xd6, 0x80,
0xd5, 0xa4, 0x3b, 0x2e, 0x1c, 0x24, 0x5e, 0x24, 0x7a, 0xce, 0x6f, 0x9a, 0x6b,
0xd9, 0x37, 0xe9, 0x5b, 0x33, 0x64, 0xb5, 0x90, 0xcc, 0x56, 0x18, 0x65, 0xe0,
0xb8, 0xbf, 0x3d, 0xfe, 0xaa, 0xeb, 0xf9, 0xd6, 0x56, 0x6c, 0x2f, 0x76, 0x70,
0xbd, 0x78, 0x19, 0xbd, 0x5a, 0xb4, 0xeb, 0x04, 0x15, 0x3a, 0x8b, 0x5d, 0x34,
0xab, 0xbb, 0x58, 0x4f, 0x19, 0x3d, 0xc5, 0x06, 0xb0, 0x1b, 0x2d, 0xf7, 0xd4,
0x8a, 0xcc, 0x36, 0xc2, 0x6f, 0x37, 0xc8, 0xeb, 0xc5, 0x5a, 0x1d, 0x18, 0x6d,
0x82, 0x6d, 0x5f, 0xb1, 0x92, 0x59, 0xf6, 0x73, 0xec, 0x5e, 0x5a, 0x63, 0xa0,
0xd8, 0x67, 0xb9, 0xcf, 0x7e, 0x60, 0x0e, 0x16, 0x87, 0x50, 0x69, 0x80, 0x66,
0x0d, 0x0a, 0xf2, 0x7b, 0x08, 0xd6, 0xc9, 0xc4, 0xc6, 0xc0, 0x1e, 0x29, 0x0e,
0xd3, 0x3e, 0x86, 0x98, 0xd8, 0x30, 0xa7, 0x31, 0xf2, 0x6d, 0xf4, 0x51, 0xfb,
0x73, 0xfc, 0xdb, 0x68, 0x71, 0x82, 0xcb, 0x9c, 0x14, 0xe8, 0x4c, 0x51, 0x6c,
0xac, 0x58, 0x71, 0x05, 0x4d, 0xc6, 0x04, 0xf8, 0x33, 0xa0, 0x37, 0x0b, 0xef,
0xc9, 0xe2, 0x54, 0x71, 0xee, 0xdb, 0xbc, 0x61, 0xe7, 0x7e, 0x26, 0x12, 0xf8,
0xb6, 0xf0, 0x6d, 0xba, 0x6c, 0x75, 0x1f, 0xc7, 0x98, 0x41, 0x6f, 0x16, 0xb6,
0x4b, 0xdf, 0xe6, 0x34, 0xb9, 0xcb, 0xa0, 0x3d, 0xcf, 0x61, 0x7e, 0xa1, 0xfa,
0x2a, 0xf6, 0x10, 0xa0, 0xb1, 0x05, 0xb4, 0x16, 0x39, 0xee, 0xf2, 0x8f, 0x6b,
0x62, 0xb1, 0xc6, 0xf4, 0xac, 0xde, 0xe0, 0x66, 0xba, 0xf9, 0x6d, 0x4b, 0x33,
0xf3, 0x20, 0xf5, 0x77, 0x2a, 0xda, 0x9b, 0xab, 0xba, 0xce, 0x77, 0x7f, 0xe2,
0xec, 0xfe, 0xeb, 0xb5, 0x0f, 0x0a, 0x6b, 0x15, 0xec, 0xed, 0x30, 0x56, 0xdc,
0xe0, 0x32, 0x36, 0x8b, 0x5b, 0xc4, 0x3f, 0x62, 0xfa, 0x39, 0x26, 0x76, 0x84,
0xeb, 0xf1, 0x04, 0xbd, 0xa8, 0xe5, 0xbe, 0xb7, 0x99, 0x4a, 0x67, 0x90, 0x15,
0xc7, 0xcc, 0xc4, 0xb7, 0xa0, 0xb0, 0xe7, 0x5d, 0x06, 0xdd, 0x2b, 0xa6, 0x4c,
0xab, 0xa4, 0xcb, 0xf4, 0xb0, 0x8f, 0x5a, 0x59, 0xca, 0x0a, 0x31, 0xda, 0x39,
0x26, 0x37, 0xcf, 0xd8, 0xe1, 0xe2, 0x41, 0xf1, 0x90, 0xe1, 0x15, 0x20, 0x56,
0xc4, 0xf8, 0x51, 0xb1, 0x64, 0x5a, 0xaf, 0xea, 0x96, 0xac, 0x1a, 0xcd, 0x8e,
0x14, 0x1f, 0x7e, 0xfa, 0x75, 0x52, 0xac, 0x26, 0xba, 0x35, 0x64, 0x74, 0x90,
0xd1, 0x79, 0x2b, 0xce, 0x88, 0x62, 0x55, 0xd7, 0xad, 0xa4, 0x89, 0x9f, 0xfe,
0xf8, 0xed, 0x00, 0xf1, 0x98, 0xa6, 0xb7, 0x33, 0xf4, 0xdd, 0x34, 0x47, 0x41,
0x4b, 0x25, 0xbe, 0xe7, 0xd6, 0x0b, 0x56, 0x02, 0x39, 0x71, 0xdc, 0xd6, 0xde,
0x9a, 0xf7, 0x5d, 0x87, 0xf1, 0x64, 0xb1, 0x9e, 0xe1, 0xa5, 0x31, 0xb3, 0xe1,
0xb6, 0x91, 0xc1, 0x9a, 0xc0, 0x6e, 0xd6, 0x68, 0x65, 0x68, 0x6f, 0x6d, 0x10,
0xe9, 0x64, 0xa2, 0x59, 0x1a, 0xc9, 0x81, 0xd5, 0x7e, 0xdb, 0x71, 0x6b, 0x6d,
0x15, 0xbb, 0x84, 0xbc, 0x42, 0xb1, 0x88, 0x7a, 0xa5, 0x62, 0x55, 0x09, 0x7e,
0x8e, 0x97, 0xec, 0xc2, 0xe7, 0x53, 0xd5, 0x94, 0xba, 0x99, 0x6c, 0xc7, 0x2f,
0x7c, 0x86, 0x55, 0xf9, 0x57, 0x0f, 0x74, 0xd2, 0x8b, 0xdd, 0xf4, 0x71, 0x33,
0x1a, 0xb8, 0x1d, 0x04, 0xdf, 0x59, 0x1a, 0xba, 0x1d, 0x46, 0x7c, 0x04, 0xb7,
0xa3, 0x94, 0x33, 0x76, 0xeb, 0xc2, 0xbe, 0xc7, 0x6f, 0xad, 0x56, 0x9a, 0xb8,
0x9d, 0x02, 0xee, 0x34, 0xbc, 0x7d, 0xf0, 0x96, 0x30, 0x7b, 0x86, 0xc9, 0x9e,
0xbd, 0x9d, 0x03, 0x6f, 0xfe, 0xd6, 0x6f, 0xa2, 0xb8, 0x78, 0xbb, 0x84, 0xd1,
0x95, 0xdb, 0xd5, 0xdb, 0x35, 0xcb, 0x95, 0x37, 0x6e, 0x37, 0x6f, 0xb7, 0x38,
0xf6, 0xf6, 0x6d, 0xf0, 0x76, 0x87, 0x20, 0xbb, 0xb7, 0x7b, 0x34, 0xb6, 0xcf,
0xb1, 0x42, 0xb7, 0x61, 0x41, 0x0d, 0x99, 0xec, 0xaf, 0x03, 0x8c, 0x1d, 0xde,
0x1e, 0xdd, 0xfe, 0x73, 0x7b, 0xcf, 0x4d, 0x8f, 0x9d, 0x63, 0xec, 0x22, 0x62,
0xa9, 0x97, 0x13, 0xc2, 0x8a, 0xc2, 0x78, 0x4a, 0xec, 0x18, 0x93, 0x79, 0x26,
0x54, 0x89, 0x53, 0x34, 0x41, 0xad, 0xa4, 0x85, 0x7a, 0x69, 0x1d, 0x27, 0x83,
0x48, 0xf6, 0x56, 0x29, 0xa9, 0xdc, 0xb1, 0x9f, 0xe3, 0x98, 0x79, 0xea, 0x15,
0x88, 0x55, 0x64, 0xe2, 0xa5, 0x1f, 0xd7, 0x11, 0xdd, 0xd9, 0xe3, 0x2d, 0xd5,
0x22, 0x56, 0x75, 0x47, 0x7f, 0x9f, 0x06, 0xab, 0xce, 0xe0, 0x2c, 0xb3, 0xdf,
0xfd, 0x6d, 0xd7, 0x03, 0xa7, 0x1a, 0xfc, 0x06, 0xc2, 0x6d, 0x64, 0x72, 0x6a,
0xee, 0x1e, 0xfe, 0x45, 0x2f, 0x27, 0xd7, 0x6d, 0x53, 0x49, 0x02, 0xdf, 0xad,
0x99, 0x41, 0x33, 0xcc, 0xae, 0x05, 0x67, 0xa8, 0x6a, 0x22, 0xad, 0x80, 0x7a,
0x00, 0xf3, 0x22, 0x5e, 0x7b, 0xd7, 0xc6, 0xac, 0x43, 0x3d, 0xe1, 0x36, 0xd0,
0x9c, 0x46, 0x62, 0x35, 0x95, 0x59, 0xa1, 0xf6, 0x52, 0x47, 0xa9, 0x99, 0x72,
0x3a, 0x89, 0x66, 0x0b, 0x41, 0x5a, 0x61, 0x6c, 0x23, 0x76, 0x3b, 0xa3, 0xd4,
0x41, 0xec, 0x2e, 0xe1, 0xfe, 0xeb, 0x84, 0x68, 0x0f, 0x13, 0xe9, 0x12, 0xf4,
0xd0, 0x6d, 0xd2, 0x57, 0xaf, 0xa5, 0xbd, 0xda, 0x4b, 0x2b, 0xf4, 0x01, 0xbf,
0xff, 0xae, 0x9f, 0xfa, 0x03, 0x77, 0x83, 0x8c, 0xc2, 0x40, 0x69, 0x08, 0xbc,
0xc1, 0xd2, 0xf0, 0xdd, 0x08, 0x8c, 0x7d, 0xc2, 0x8e, 0x87, 0x18, 0x74, 0x98,
0xda, 0x23, 0xa6, 0x3f, 0x03, 0x46, 0x35, 0xd1, 0xd1, 0xbb, 0x31, 0x8a, 0x8c,
0xd1, 0xfa, 0xe3, 0x77, 0x53, 0x4c, 0x2f, 0xd3, 0x8c, 0xed, 0x43, 0x7b, 0x9c,
0x51, 0x99, 0xe1, 0xe6, 0x3d, 0x21, 0xa8, 0x3e, 0x47, 0x19, 0xf3, 0x9a, 0x35,
0x9a, 0x04, 0xb6, 0x1f, 0xb1, 0xc0, 0xdd, 0x02, 0x8e, 0x4b, 0x77, 0x8b, 0x84,
0x33, 0x4b, 0xc6, 0xb5, 0xbb, 0x29, 0x60, 0xad, 0xa0, 0x37, 0x5d, 0xf2, 0x55,
0xf0, 0x13, 0x6e, 0x03, 0x72, 0x36, 0xef, 0xb6, 0xee, 0xb6, 0x31, 0x37, 0x48,
0x6b, 0xef, 0xdc, 0xcd, 0x10, 0x95, 0x5d, 0xc0, 0xf6, 0xee, 0xf6, 0xb9, 0xae,
0xc2, 0xd4, 0x3b, 0xb8, 0x3b, 0x14, 0xec, 0xd3, 0x59, 0x92, 0x7b, 0x44, 0x62,
0x27, 0x77, 0x51, 0xca, 0x9a, 0x2b, 0xcd, 0x63, 0xd4, 0x5f, 0x8a, 0x11, 0xec,
0x0c, 0xc7, 0xf8, 0xdd, 0xf1, 0x5d, 0x02, 0xac, 0x24, 0x41, 0x03, 0xc0, 0x5a,
0x20, 0x3a, 0xa9, 0xbb, 0xf4, 0x5d, 0x06, 0xf0, 0xec, 0x5d, 0x0e, 0xb6, 0x79,
0x78, 0x17, 0x90, 0x55, 0x84, 0xed, 0x22, 0x72, 0x4a, 0xff, 0xaa, 0xeb, 0x85,
0xf5, 0x57, 0xd5, 0xbd, 0xc1, 0xbf, 0x59, 0xdc, 0x57, 0xeb, 0x22, 0x76, 0x06,
0x71, 0x30, 0xb6, 0xf3, 0xde, 0x45, 0xbd, 0xa5, 0xd2, 0xb2, 0xc5, 0xa3, 0x43,
0xb9, 0x2f, 0xf3, 0x2f, 0x13, 0xf7, 0x2b, 0x44, 0x69, 0x15, 0x47, 0xaf, 0x86,
0xbf, 0x66, 0x58, 0xa7, 0x16, 0x99, 0x75, 0xf7, 0xeb, 0x0c, 0xa3, 0x01, 0xb0,
0x46, 0xaa, 0xb0, 0x81, 0x91, 0x66, 0xf4, 0x5b, 0xee, 0x5b, 0x29, 0xbe, 0x09,
0x78, 0x1b, 0x53, 0xa7, 0x9d, 0xb1, 0xb7, 0x30, 0xa7, 0x43, 0xd7, 0xf5, 0x36,
0xe2, 0x9d, 0x1a, 0xbc, 0x4b, 0x38, 0xbb, 0x1d, 0x5d, 0xcf, 0x3d, 0x84, 0xd7,
0x8b, 0xe3, 0x6e, 0xa9, 0x0f, 0xc6, 0xee, 0xfb, 0x20, 0xf2, 0xfa, 0x49, 0x6c,
0x00, 0xc6, 0x41, 0xc3, 0xd5, 0x1a, 0xba, 0xdf, 0x43, 0xf6, 0x30, 0x65, 0x8c,
0xdc, 0x8f, 0xa2, 0x3d, 0x46, 0x90, 0x90, 0xe1, 0x4a, 0x8d, 0xdf, 0x4f, 0xd1,
0xac, 0x30, 0xb2, 0x26, 0xd1, 0x9f, 0xd6, 0x54, 0x3b, 0x20, 0x0a, 0x3e, 0xc4,
0x67, 0xee, 0x67, 0xef, 0xff, 0xbd, 0x47, 0xfc, 0xdc, 0xfd, 0x21, 0x99, 0x8d,
0x9f, 0xce, 0x22, 0x50, 0xc1, 0x7c, 0x16, 0x90, 0x7b, 0xc4, 0xac, 0xe9, 0x31,
0xb1, 0x17, 0x89, 0x4a, 0x04, 0xfd, 0x13, 0xca, 0x88, 0x96, 0x4e, 0x35, 0x7b,
0x60, 0x99, 0xa9, 0x17, 0x33, 0x39, 0x5f, 0xce, 0x4c, 0x62, 0xab, 0xda, 0xf3,
0x81, 0xf3, 0xd7, 0xcb, 0xce, 0x68, 0xe3, 0x7e, 0xf3, 0x7e, 0xdb, 0x90, 0x15,
0xe7, 0x2a, 0x07, 0x81, 0xb7, 0x53, 0xc1, 0x1a, 0xed, 0x6a, 0xb8, 0x7b, 0xe0,
0x27, 0x4a, 0xfb, 0x88, 0x86, 0x48, 0x2c, 0x4c, 0xc6, 0x83, 0xfb, 0x43, 0x43,
0xe5, 0x23, 0x88, 0x1c, 0xc3, 0x3b, 0x59, 0x8a, 0x50, 0x4e, 0xd4, 0x80, 0x1d,
0x23, 0x78, 0x1c, 0xc7, 0x04, 0x65, 0x25, 0x1f, 0x75, 0xac, 0xa6, 0xc8, 0xfc,
0xd3, 0x38, 0x66, 0x84, 0xfb, 0x21, 0x5b, 0xea, 0x10, 0xde, 0x01, 0xdc, 0x93,
0x98, 0x36, 0x7c, 0x3a, 0x87, 0x2f, 0xff, 0xfb, 0x8f, 0xf8, 0xb1, 0xd4, 0xc3,
0xbf, 0xfa, 0x55, 0x6d, 0x70, 0x16, 0xac, 0x17, 0x27, 0xbc, 0x8b, 0xde, 0x33,
0x1f, 0xec, 0x89, 0xb7, 0xb9, 0xe4, 0x4a, 0x3a, 0x8a, 0x77, 0x48, 0xec, 0xcc,
0x76, 0x65, 0xfb, 0xc8, 0x37, 0xeb, 0xdb, 0xf3, 0xad, 0x9f, 0x87, 0x3e, 0x7b,
0x0a, 0x70, 0x36, 0x7e, 0x85, 0xcf, 0x76, 0x82, 0xff, 0x2f, 0x6a, 0xf5, 0x8c,
0x79, 0x66, 0x3c, 0x3b, 0x9e, 0xb0, 0xe7, 0xc4, 0xa3, 0x78, 0xbd, 0xde, 0x66,
0xef, 0x8a, 0x77, 0xc3, 0xbb, 0xed, 0x0b, 0xfa, 0x66, 0x12, 0x6b, 0x89, 0x8d,
0xc4, 0x76, 0xc2, 0x95, 0x74, 0x27, 0x07, 0x92, 0x7b, 0xc9, 0x83, 0x54, 0x3a,
0x55, 0x93, 0x0e, 0xa4, 0xa5, 0xf7, 0x35, 0x19, 0x67, 0xb6, 0x21, 0xdb, 0x98,
0x6d, 0xc9, 0xb6, 0x66, 0xdb, 0xb2, 0x1d, 0xd9, 0x9e, 0x6c, 0x6f, 0x76, 0x2a,
0x3b, 0x9b, 0xdd, 0xcd, 0x7a, 0x72, 0x33, 0xd7, 0x0d, 0xb9, 0xf6, 0xdc, 0x60,
0x6e, 0x29, 0x97, 0xf8, 0x98, 0xfc, 0xe8, 0xcc, 0x47, 0xf3, 0xd9, 0xbc, 0xb7,
0x50, 0x5b, 0x68, 0x2d, 0x74, 0x15, 0x0e, 0xbe, 0x2e, 0x17, 0x76, 0x8a, 0xa9,
0x62, 0xbe, 0xd8, 0x6d, 0xef, 0xb2, 0xd7, 0xda, 0xe8, 0x27, 0x1c, 0x1b, 0xf3,
0xaf, 0x22, 0xb6, 0xff, 0x01,
};
optimizesize void *__jisx0213_bmp_encmap(void) {
return xload(&__jisx0213_bmp_encmap_ptr,
__jisx0213_bmp_encmap_rodata,
10392, 54574); /* 19.042% profit */
}
| 64,304 | 813 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__jisxcommon_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __jisxcommon_encmap_ptr;
static const unsigned char __jisxcommon_encmap_rodata[] = {
0xdc, 0xbc, 0xe5, 0x72, 0x63, 0xcb, 0x96, 0x2e, 0xfa, 0x2c, 0x92, 0x35, 0x05,
0xb6, 0x6c, 0x31, 0x33, 0x33, 0x33, 0xb3, 0x2d, 0x99, 0x41, 0x66, 0x78, 0x98,
0xf5, 0x63, 0x55, 0x94, 0xfc, 0xc7, 0xcc, 0xcc, 0x8c, 0xf5, 0x0c, 0xe7, 0x35,
0xea, 0x7e, 0xca, 0x9a, 0x4b, 0xab, 0xaa, 0xd6, 0xde, 0xdd, 0x7d, 0xa2, 0x3b,
0xee, 0x39, 0xf7, 0x56, 0x44, 0x0e, 0x1e, 0x23, 0x47, 0x72, 0xce, 0xa9, 0xe9,
0x32, 0x32, 0xbe, 0xff, 0xb7, 0xff, 0x29, 0xfe, 0xf8, 0xfe, 0x3f, 0xf0, 0xcf,
0xfc, 0xc7, 0x04, 0x63, 0x92, 0x31, 0x8e, 0x58, 0x96, 0x3f, 0xe6, 0x18, 0x02,
0xc6, 0xc8, 0x1f, 0xc3, 0xa0, 0xbd, 0xcc, 0xef, 0xdf, 0x47, 0xff, 0x90, 0xfe,
0x31, 0xc4, 0xc8, 0x93, 0x4c, 0x7b, 0x01, 0xe7, 0x21, 0x13, 0x41, 0x37, 0xd4,
0xa9, 0xd7, 0xfa, 0x07, 0xb3, 0xc5, 0x68, 0xb1, 0x5a, 0xdd, 0xad, 0xae, 0x16,
0xaf, 0xc5, 0xf8, 0xda, 0xd7, 0x12, 0xb7, 0x44, 0x2d, 0x69, 0x4b, 0xd2, 0x32,
0xb6, 0x0c, 0x2d, 0x73, 0xcb, 0xd4, 0xfa, 0xfe, 0x3d, 0xd8, 0x0a, 0xb7, 0x42,
0xad, 0x68, 0x2b, 0xd9, 0x8a, 0xb4, 0x0a, 0x0c, 0xfe, 0xd7, 0x4a, 0xab, 0xdc,
0xaa, 0xb5, 0xaa, 0xad, 0xc9, 0x96, 0xf0, 0xab, 0xff, 0x2b, 0x73, 0x95, 0xb1,
0xca, 0x5a, 0xed, 0x5e, 0xed, 0x5a, 0xe5, 0xad, 0x9a, 0xbe, 0xf6, 0xad, 0x8a,
0x57, 0x45, 0xab, 0xd2, 0x55, 0xc9, 0xaa, 0x71, 0xd5, 0xb0, 0x6a, 0x5e, 0x35,
0xad, 0x5a, 0xbe, 0x06, 0x57, 0xc3, 0xab, 0xa1, 0xd5, 0xe8, 0x6a, 0x72, 0x35,
0xb2, 0x5a, 0x64, 0x78, 0xbf, 0x56, 0x56, 0xcb, 0xab, 0xb5, 0xd5, 0xea, 0xea,
0xe4, 0x6a, 0xf0, 0xeb, 0xd4, 0x2a, 0xa7, 0xc5, 0x59, 0xa5, 0x5a, 0xd4, 0x2a,
0xb7, 0xc5, 0x5d, 0xed, 0x69, 0xf5, 0xac, 0xf2, 0x5b, 0xfc, 0x55, 0x41, 0x4b,
0xb0, 0xda, 0xdb, 0xea, 0x5d, 0x15, 0xb6, 0x84, 0xab, 0xcc, 0xaf, 0xe6, 0xaf,
0x8a, 0x96, 0x62, 0xb5, 0x9d, 0xad, 0xbc, 0x25, 0x5f, 0x55, 0xb6, 0x94, 0xab,
0xb2, 0x96, 0x6c, 0x55, 0xdd, 0x52, 0xaf, 0x6a, 0x5a, 0x9a, 0x55, 0x5d, 0x4b,
0xb7, 0xaa, 0x45, 0x96, 0xfa, 0x96, 0x7e, 0x95, 0xf5, 0xd5, 0xfa, 0xd5, 0xd1,
0x72, 0xac, 0xda, 0x5a, 0x36, 0x62, 0x6f, 0x6f, 0xd9, 0x57, 0xad, 0x2d, 0xdb,
0x57, 0xf6, 0x57, 0xfb, 0x57, 0x67, 0xcb, 0xb9, 0xea, 0x6a, 0xb9, 0x56, 0x1d,
0x5f, 0xdd, 0x2d, 0xf7, 0xaa, 0xb7, 0xe5, 0x5d, 0xf5, 0xb4, 0x3c, 0xab, 0xbc,
0xaf, 0xae, 0xaf, 0xdc, 0xaf, 0xce, 0xaf, 0xbe, 0x96, 0x6f, 0x35, 0xd0, 0x0a,
0xac, 0xfa, 0x5b, 0xfe, 0x55, 0xf7, 0xd7, 0x9e, 0xaf, 0x9e, 0xaf, 0x89, 0x56,
0x82, 0xc4, 0x88, 0xb7, 0xe2, 0xab, 0xbd, 0x5f, 0x7d, 0x5f, 0x53, 0xad, 0xd4,
0x6a, 0xa6, 0x95, 0x59, 0x4d, 0xb7, 0xd2, 0xab, 0xd9, 0x56, 0x76, 0x35, 0xd7,
0xca, 0xad, 0x16, 0x5a, 0x85, 0xd5, 0x7c, 0x2b, 0xbf, 0x5a, 0x6a, 0x95, 0x56,
0x8b, 0xad, 0xe2, 0xaa, 0xe0, 0x6b, 0xe0, 0xeb, 0x70, 0x6b, 0x78, 0xb5, 0xd1,
0x6a, 0xac, 0xf6, 0xb7, 0xfa, 0x57, 0x87, 0x5a, 0x43, 0xab, 0xf5, 0x56, 0x7d,
0x75, 0xb0, 0x35, 0xb8, 0x3a, 0xd1, 0x9a, 0x58, 0x6d, 0xb6, 0x9a, 0xab, 0x53,
0xad, 0xe9, 0xd6, 0xf4, 0xea, 0x6c, 0x6b, 0x76, 0x75, 0xa6, 0x35, 0xb3, 0xfa,
0xfd, 0xff, 0xe2, 0x7f, 0xec, 0x16, 0x7b, 0xd5, 0xd2, 0xb2, 0xac, 0xc6, 0x5a,
0xb1, 0xd5, 0x81, 0xd6, 0xc0, 0xea, 0x78, 0x6b, 0x7c, 0x75, 0xa4, 0x35, 0xb2,
0x3a, 0xd6, 0x1a, 0x5b, 0x1d, 0x6d, 0x8d, 0xfe, 0x6f, 0xe7, 0xae, 0x5a, 0x15,
0xfe, 0xa7, 0xf3, 0x5d, 0xf0, 0x87, 0xf8, 0x0f, 0xf9, 0x1f, 0x32, 0xd8, 0x49,
0xfe, 0x50, 0xfe, 0xa1, 0xfa, 0xa3, 0xf4, 0xe7, 0xf7, 0xef, 0xe5, 0x3f, 0x2b,
0x7f, 0x56, 0x81, 0x07, 0x50, 0x1a, 0x7f, 0x0e, 0xff, 0x39, 0xf3, 0x27, 0x83,
0xcd, 0x64, 0x77, 0xb1, 0x59, 0x6c, 0x8a, 0xcd, 0x66, 0x73, 0xd8, 0x5c, 0x36,
0x8f, 0xdd, 0xcd, 0xee, 0x61, 0xf3, 0xd9, 0xbd, 0xec, 0x3e, 0xb6, 0x80, 0x2d,
0x64, 0x8b, 0xd8, 0xdf, 0xbf, 0x8b, 0xd9, 0x12, 0xb6, 0x94, 0x2d, 0x63, 0xcb,
0xd9, 0x0a, 0xb6, 0x92, 0x5d, 0xfb, 0x73, 0xf0, 0xcf, 0x89, 0x3f, 0x27, 0xff,
0x9c, 0xfa, 0xb3, 0xf9, 0xe7, 0xe2, 0x9f, 0x26, 0xb6, 0x99, 0x6d, 0x61, 0x5b,
0xd9, 0x36, 0xb6, 0x9d, 0xed, 0x60, 0x3b, 0xd9, 0x2e, 0xb6, 0x9b, 0xed, 0x61,
0x7b, 0xd9, 0x3e, 0xb6, 0x9f, 0x1d, 0x60, 0x07, 0xd9, 0x21, 0xf6, 0xdc, 0x9f,
0x61, 0x76, 0x84, 0x1d, 0x65, 0xc7, 0xd8, 0x71, 0x76, 0x82, 0x9d, 0x64, 0x4f,
0xff, 0xb9, 0xf0, 0xe7, 0xec, 0x9f, 0xf3, 0x7f, 0x2e, 0xfd, 0xc9, 0xe1, 0x98,
0xbf, 0x58, 0xbe, 0x58, 0xbf, 0xd8, 0xbe, 0xd8, 0xbf, 0x38, 0xbe, 0x38, 0xbf,
0xb8, 0xbe, 0xb8, 0xbf, 0x78, 0xbe, 0x78, 0xbf, 0x7c, 0xff, 0xee, 0xfb, 0xe2,
0xff, 0xc2, 0xe0, 0x30, 0x39, 0x5d, 0x1c, 0x16, 0x87, 0xe2, 0xb0, 0x39, 0x5c,
0x0e, 0x8f, 0xd3, 0xcd, 0xe9, 0xe1, 0xf0, 0x39, 0xbd, 0x9c, 0x3e, 0x8e, 0x80,
0x23, 0xe4, 0x88, 0x38, 0x62, 0x8e, 0x84, 0x23, 0xe5, 0xc8, 0x38, 0x72, 0x8e,
0x82, 0xa3, 0xe4, 0xa8, 0x38, 0x6a, 0x8e, 0x86, 0xa3, 0xe5, 0xe8, 0x38, 0x7a,
0x8e, 0x81, 0x63, 0xe4, 0x98, 0x38, 0x21, 0x4e, 0x98, 0x13, 0xe1, 0x44, 0x39,
0x31, 0x4e, 0x9c, 0x93, 0xe4, 0xa4, 0x38, 0x69, 0x4e, 0x86, 0x93, 0xe5, 0xe4,
0x38, 0x79, 0x4e, 0x81, 0x53, 0xe4, 0x94, 0x38, 0x65, 0x4e, 0x85, 0x53, 0xe5,
0xd4, 0x38, 0xfd, 0x9c, 0x01, 0x4e, 0x9d, 0xd3, 0xe0, 0x0c, 0x72, 0x86, 0x38,
0xc3, 0x9c, 0x11, 0xce, 0x28, 0x67, 0x8c, 0x33, 0xce, 0x99, 0xe0, 0x7c, 0xff,
0x9e, 0xe0, 0x4c, 0x7e, 0x99, 0xfa, 0xd2, 0xfc, 0x32, 0xfd, 0x65, 0xe6, 0xcb,
0xec, 0x97, 0xb9, 0x2f, 0xf3, 0x5f, 0x16, 0xbe, 0x2c, 0x7e, 0x59, 0x42, 0x7e,
0xcb, 0x5f, 0x56, 0xbe, 0xe8, 0x3b, 0xbb, 0x96, 0x8e, 0x61, 0x06, 0x6d, 0x67,
0x38, 0x88, 0xc4, 0xc9, 0x70, 0x11, 0x3c, 0xcb, 0x9c, 0x63, 0xfe, 0xd0, 0xdb,
0x18, 0xd6, 0x7f, 0xb1, 0xc3, 0x4d, 0x41, 0x3b, 0xcc, 0x18, 0xf9, 0x4d, 0xc3,
0x65, 0x8e, 0xfe, 0x97, 0x76, 0xc3, 0x89, 0x7f, 0x33, 0xfe, 0x63, 0xff, 0x90,
0x4f, 0x32, 0xbf, 0xff, 0xff, 0xe4, 0x5f, 0x0f, 0x93, 0xcf, 0xec, 0x66, 0xf6,
0xfe, 0x1f, 0x6d, 0x8f, 0x0f, 0xb5, 0xfb, 0x99, 0x01, 0xc0, 0x02, 0x33, 0x48,
0x67, 0x52, 0x64, 0xaa, 0x09, 0xa5, 0xf9, 0x25, 0xb3, 0xdc, 0x6f, 0xe3, 0x58,
0x23, 0xda, 0x01, 0xe6, 0x00, 0xe4, 0xd9, 0x5f, 0x2c, 0xdd, 0x4c, 0x0f, 0xd3,
0xc4, 0x34, 0x32, 0x1b, 0xcc, 0xc1, 0xdf, 0xda, 0x56, 0x67, 0xd4, 0x7f, 0x93,
0xf4, 0xff, 0x97, 0x5b, 0x5f, 0xfe, 0x0f, 0x2c, 0xcb, 0x8c, 0x52, 0x47, 0x5b,
0x63, 0xf4, 0x93, 0x4c, 0x2b, 0xcc, 0xea, 0xff, 0x56, 0xcf, 0xea, 0x99, 0x06,
0x62, 0xaf, 0x65, 0xea, 0xfe, 0x1b, 0x23, 0x92, 0x63, 0xe6, 0x99, 0x0c, 0x2e,
0x9f, 0xcb, 0xe4, 0xf6, 0x72, 0x7f, 0xd7, 0x75, 0x11, 0x49, 0x1f, 0x97, 0x45,
0xb0, 0x80, 0xcb, 0x26, 0x58, 0xc4, 0xa5, 0x08, 0x16, 0x72, 0x39, 0x5c, 0x2d,
0xa1, 0x14, 0x04, 0x8a, 0xb9, 0x3c, 0xae, 0x9e, 0x50, 0x2a, 0x02, 0xa5, 0x5c,
0x2e, 0xc1, 0x4a, 0xae, 0x8e, 0x60, 0x09, 0xb7, 0x9b, 0x60, 0x35, 0xd7, 0x40,
0xb0, 0x8c, 0xdb, 0x43, 0xb0, 0x86, 0x40, 0xe3, 0x3f, 0x6a, 0x97, 0x73, 0xff,
0xbf, 0xb2, 0x2e, 0xba, 0x98, 0xcc, 0xff, 0x74, 0x04, 0x28, 0x26, 0xeb, 0x1f,
0x36, 0x1c, 0x26, 0xfb, 0x1f, 0x32, 0x06, 0x73, 0x85, 0x9e, 0xb7, 0x8b, 0x04,
0x2f, 0x33, 0x96, 0xfe, 0x9b, 0xb7, 0xb3, 0x15, 0xe6, 0x02, 0x63, 0x9e, 0xf1,
0xff, 0x7e, 0xaf, 0x0c, 0xa2, 0xce, 0xc6, 0xff, 0x70, 0xbd, 0x33, 0xa4, 0xbf,
0xa6, 0x01, 0x9b, 0x4c, 0x06, 0x83, 0xc9, 0xe8, 0x62, 0x28, 0x50, 0x83, 0x8a,
0xa1, 0x66, 0x68, 0x18, 0x61, 0x46, 0x84, 0x11, 0x65, 0xc4, 0x18, 0x71, 0x46,
0x82, 0x91, 0x64, 0xa4, 0x18, 0x69, 0x46, 0x86, 0xc1, 0x63, 0xf6, 0x31, 0xbd,
0x0c, 0xdf, 0x2f, 0x59, 0x98, 0xfe, 0xc7, 0x72, 0x62, 0xb0, 0x98, 0xac, 0x2e,
0x16, 0x8b, 0x45, 0xb1, 0xd8, 0x2c, 0x0e, 0x8b, 0xcb, 0xe2, 0xb1, 0xba, 0x59,
0x3d, 0x2c, 0x3e, 0xab, 0x97, 0xd5, 0xc7, 0x12, 0xb0, 0x84, 0x2c, 0x11, 0x4b,
0xcc, 0x92, 0xb0, 0xa4, 0x2c, 0x19, 0x4b, 0xce, 0x52, 0xb0, 0x94, 0x2c, 0x15,
0x4b, 0xcd, 0xd2, 0xb0, 0xb4, 0x2c, 0x1d, 0x4b, 0xcf, 0x32, 0xb0, 0x8c, 0x2c,
0x13, 0xcb, 0xcc, 0xb2, 0xb0, 0xac, 0x2c, 0x1b, 0xcb, 0xce, 0x72, 0xb0, 0x9c,
0x2c, 0x17, 0xcb, 0xcd, 0xf2, 0xb0, 0xbc, 0x2c, 0x1f, 0xcb, 0xcf, 0x0a, 0xb0,
0x82, 0xac, 0x10, 0x2b, 0xcc, 0x8a, 0xb0, 0xa2, 0xac, 0x18, 0x2b, 0xce, 0x4a,
0xb0, 0x92, 0xac, 0x14, 0x2b, 0xcd, 0xca, 0xb0, 0xb2, 0xac, 0x1c, 0x2b, 0xcf,
0x2a, 0xb0, 0x8a, 0xac, 0x12, 0xab, 0xcc, 0xaa, 0xb0, 0xaa, 0xac, 0x1a, 0xab,
0x9f, 0x35, 0xc0, 0xaa, 0xb3, 0x1a, 0xac, 0x41, 0xd6, 0x10, 0x6b, 0x98, 0x35,
0xc2, 0x1a, 0x65, 0x8d, 0xb1, 0xc6, 0x59, 0x13, 0xac, 0x49, 0xd6, 0x14, 0xeb,
0xb7, 0x3d, 0x9c, 0xc1, 0x67, 0xc8, 0x18, 0x72, 0xd2, 0x07, 0x0c, 0x8a, 0x49,
0x75, 0x51, 0x2c, 0x8a, 0xa2, 0xd8, 0x14, 0x87, 0xe2, 0x52, 0x3c, 0xaa, 0x9b,
0xea, 0xa1, 0xf8, 0x54, 0x2f, 0xd5, 0x47, 0x09, 0x28, 0x21, 0x25, 0xa2, 0xc4,
0x94, 0x84, 0x92, 0x52, 0x32, 0x4a, 0x4e, 0x29, 0x28, 0x25, 0xa5, 0xa2, 0xd4,
0x94, 0x86, 0xd2, 0x52, 0x3a, 0x4a, 0x4f, 0x19, 0x28, 0x23, 0x65, 0xa2, 0xcc,
0x94, 0x85, 0xb2, 0x52, 0x36, 0xca, 0x4e, 0x39, 0x28, 0x27, 0xe5, 0xa2, 0xdc,
0x94, 0x87, 0xf2, 0x52, 0x3e, 0xca, 0x4f, 0x05, 0xa8, 0x20, 0x15, 0xa2, 0xc2,
0x54, 0x84, 0x8a, 0x52, 0x31, 0x2a, 0x4e, 0x25, 0xa8, 0x24, 0x95, 0xa2, 0xd2,
0x54, 0x86, 0xca, 0x52, 0x39, 0x2a, 0x4f, 0x15, 0xa8, 0x22, 0x55, 0xa2, 0xca,
0x54, 0x85, 0xaa, 0x52, 0x35, 0xaa, 0x9f, 0x1a, 0xa0, 0xea, 0x54, 0x83, 0x1a,
0xa4, 0x86, 0xa8, 0x61, 0x6a, 0x84, 0x1a, 0xa5, 0xc6, 0xa8, 0x71, 0x6a, 0x82,
0x9a, 0xa4, 0xa6, 0xa8, 0x26, 0x35, 0x4d, 0xcd, 0x50, 0x9d, 0x9b, 0x1c, 0x43,
0xcb, 0x90, 0x30, 0xa4, 0x8c, 0x61, 0xe1, 0x82, 0x85, 0xb1, 0xa6, 0xd0, 0x32,
0xd7, 0xba, 0xd6, 0xbe, 0x7f, 0x5f, 0xf2, 0xf4, 0xeb, 0x85, 0x9a, 0x9a, 0x5e,
0x2b, 0x66, 0xad, 0x45, 0x5d, 0x06, 0xdf, 0xf7, 0xef, 0xcc, 0xa0, 0x40, 0x44,
0x41, 0x33, 0x2a, 0xe9, 0x0a, 0xb2, 0x8c, 0xe6, 0x70, 0x5c, 0xa6, 0x76, 0xff,
0x15, 0x63, 0x40, 0xcf, 0x86, 0x46, 0xef, 0xc7, 0x0a, 0x5c, 0xe3, 0x82, 0x32,
0x43, 0xc3, 0x03, 0x66, 0x05, 0xbb, 0x01, 0xfb, 0x2d, 0x3d, 0x6b, 0xfc, 0xb5,
0xde, 0x35, 0x2a, 0xb8, 0x20, 0x27, 0xfb, 0xdf, 0x1a, 0x3b, 0x88, 0x7d, 0x52,
0x2a, 0xb4, 0xc0, 0x53, 0xcb, 0x09, 0x92, 0x5b, 0x42, 0x50, 0xb0, 0x26, 0x5c,
0xe3, 0x05, 0x65, 0x0e, 0xd1, 0x5a, 0x42, 0x86, 0xbd, 0x6f, 0x8d, 0x7e, 0x0a,
0x72, 0x60, 0x1f, 0xb7, 0x5b, 0x94, 0x12, 0x0f, 0xf6, 0x3b, 0x5a, 0xe6, 0x6a,
0x74, 0x07, 0xeb, 0xfa, 0x9e, 0xa0, 0x4c, 0x2c, 0x85, 0x44, 0xb6, 0x56, 0x93,
0x8f, 0x2b, 0x1b, 0x5e, 0xd2, 0x96, 0xb8, 0x7c, 0xad, 0xf3, 0xfc, 0xb4, 0xa6,
0x5c, 0xfb, 0x75, 0xa4, 0xc6, 0xd1, 0x8a, 0x65, 0xbb, 0x6a, 0x4d, 0x4d, 0xcb,
0x35, 0x1d, 0x3d, 0x25, 0xd5, 0xae, 0xc9, 0x50, 0x2b, 0x9f, 0xe4, 0xd2, 0x1b,
0xd4, 0xa0, 0x25, 0x3a, 0x5f, 0xdd, 0x24, 0x08, 0xce, 0x68, 0xa6, 0xec, 0xba,
0x35, 0x31, 0x91, 0xeb, 0x45, 0x05, 0xe5, 0xf7, 0xef, 0x79, 0x65, 0xbf, 0x50,
0xbf, 0x66, 0x58, 0xf3, 0x04, 0xdc, 0x01, 0xe4, 0xa4, 0x66, 0x08, 0x8d, 0x6b,
0x92, 0xa0, 0x34, 0x28, 0x0b, 0x4a, 0x3d, 0x72, 0xd8, 0x4d, 0x2a, 0x07, 0x84,
0x93, 0xc8, 0x76, 0x49, 0x46, 0x76, 0x1b, 0xd9, 0x8a, 0xac, 0x6c, 0xd5, 0xfa,
0x4d, 0x6b, 0x0a, 0x12, 0x43, 0x49, 0xa0, 0x8a, 0x40, 0xf3, 0x9a, 0xcf, 0xf0,
0x77, 0x76, 0x6a, 0x9d, 0xdf, 0xa0, 0x0f, 0x5a, 0xd6, 0xb4, 0xd0, 0xe9, 0x82,
0x49, 0xe2, 0xdd, 0xa5, 0x1e, 0x17, 0x23, 0xcf, 0xa0, 0x3a, 0xc8, 0x73, 0x5b,
0xe9, 0x6c, 0xed, 0x1a, 0x9b, 0x46, 0x6f, 0x36, 0x04, 0x63, 0xae, 0x01, 0xa3,
0x6d, 0xcd, 0x0e, 0xa9, 0x92, 0x61, 0x0c, 0x9a, 0x83, 0x8e, 0x35, 0xe7, 0x9a,
0x6b, 0xad, 0x66, 0x2e, 0xf9, 0xdd, 0x42, 0x72, 0x06, 0x77, 0x5a, 0x67, 0x0a,
0xea, 0xc5, 0x9e, 0x35, 0xab, 0xdc, 0xbb, 0x36, 0x60, 0xf1, 0x41, 0xea, 0x5f,
0x1b, 0x53, 0x58, 0x82, 0x3f, 0x74, 0x2c, 0xf4, 0x6f, 0x60, 0x2d, 0xb8, 0x16,
0x5a, 0x0b, 0xaf, 0x0d, 0x49, 0x23, 0x6b, 0xd1, 0x8e, 0x57, 0x6c, 0xcd, 0x1a,
0xf4, 0x08, 0xe3, 0x6b, 0x89, 0xb5, 0xa2, 0x72, 0x58, 0xba, 0xe0, 0x12, 0x3b,
0x53, 0xb2, 0x24, 0xd1, 0xa6, 0xd6, 0xd2, 0x6b, 0x19, 0x50, 0xd9, 0xb5, 0x09,
0x64, 0x37, 0x10, 0x34, 0xd9, 0xfe, 0xd3, 0x33, 0x71, 0x6d, 0xd8, 0x61, 0x0f,
0xe6, 0xe1, 0x53, 0x5c, 0xd3, 0x3a, 0x4b, 0x6b, 0x65, 0x7f, 0x79, 0xad, 0xd7,
0x50, 0x59, 0x73, 0x68, 0xaa, 0x6b, 0xb3, 0x1a, 0xa3, 0xb8, 0xd6, 0x9e, 0x25,
0x28, 0x03, 0x6b, 0x21, 0x6b, 0xdb, 0x9e, 0x69, 0x71, 0x07, 0xeb, 0x6b, 0x0d,
0x48, 0x06, 0xd7, 0x86, 0xd6, 0xbc, 0xc2, 0x8a, 0x55, 0xa3, 0x93, 0xaa, 0x59,
0xbe, 0xe1, 0x35, 0xbf, 0x79, 0x64, 0xcd, 0x20, 0x1e, 0x5d, 0x73, 0x05, 0xc7,
0xd6, 0xf4, 0x3e, 0x5b, 0xd0, 0x11, 0x1c, 0x55, 0x3b, 0x83, 0xac, 0xd8, 0xf8,
0x5a, 0x81, 0xe4, 0x36, 0xf1, 0xd3, 0x98, 0x07, 0x83, 0x93, 0xe0, 0xa6, 0x50,
0x9a, 0x6b, 0x91, 0x60, 0x28, 0x38, 0xdd, 0x9e, 0x99, 0xed, 0xfe, 0x74, 0x7b,
0x82, 0x33, 0x6b, 0xb3, 0x6b, 0x73, 0x6b, 0xf3, 0x6b, 0x81, 0xe0, 0x94, 0x72,
0x61, 0x6d, 0x71, 0xcd, 0xa9, 0xc1, 0x88, 0xad, 0x2d, 0xaf, 0xb1, 0xa5, 0x2b,
0x6b, 0x8c, 0xf5, 0x28, 0x7a, 0xc7, 0x1b, 0x64, 0xae, 0x77, 0xad, 0x57, 0xfc,
0xac, 0xf5, 0x39, 0x0d, 0xb5, 0xee, 0x0b, 0xb2, 0xd7, 0xc3, 0x41, 0xce, 0x3a,
0x77, 0x9d, 0xb7, 0x8e, 0xbe, 0x09, 0x76, 0xaf, 0xfb, 0x83, 0x3d, 0xeb, 0xfc,
0x75, 0x06, 0x66, 0xb4, 0x4f, 0xd8, 0xbb, 0xde, 0xb7, 0xce, 0x94, 0x9b, 0xc4,
0xff, 0xe2, 0x94, 0x8a, 0xe1, 0xc9, 0xda, 0x33, 0xea, 0x6a, 0x2a, 0xc9, 0x89,
0xbf, 0x4e, 0xa0, 0x41, 0xe1, 0x17, 0x82, 0x12, 0xa1, 0x88, 0xd7, 0x25, 0xeb,
0xd2, 0x75, 0xd9, 0x7a, 0xd2, 0x2d, 0x5f, 0x57, 0xac, 0x2b, 0x15, 0x94, 0xb9,
0x2a, 0x56, 0xae, 0xab, 0xa0, 0x51, 0xaf, 0x6b, 0xd6, 0x23, 0x3a, 0xed, 0xba,
0x6e, 0x5d, 0xbf, 0x9e, 0x0a, 0x1a, 0xd6, 0xf3, 0xc1, 0x6c, 0xd0, 0x08, 0x79,
0x82, 0x8c, 0x9c, 0xc0, 0x9c, 0x6e, 0xaf, 0xa1, 0x60, 0x26, 0x68, 0x5a, 0xcf,
0x61, 0xb5, 0x25, 0x83, 0xe6, 0xf5, 0x3e, 0x83, 0x65, 0x7d, 0xca, 0x53, 0x08,
0x16, 0x83, 0xbf, 0x67, 0xc1, 0xd2, 0x8d, 0x04, 0xad, 0xf0, 0xb5, 0xad, 0x07,
0x31, 0xde, 0x72, 0x57, 0x1d, 0x16, 0xe3, 0xf0, 0x92, 0x23, 0x63, 0xfb, 0xba,
0x63, 0x7d, 0x38, 0xe8, 0x5c, 0x77, 0xad, 0xbb, 0x49, 0x76, 0x9e, 0xf5, 0xfe,
0xe0, 0x58, 0xd0, 0x0b, 0x3a, 0x6c, 0xf2, 0xad, 0x5b, 0x95, 0xfe, 0xf5, 0xac,
0x23, 0xb0, 0xee, 0x28, 0x06, 0xd7, 0x47, 0x83, 0x39, 0x5b, 0x68, 0xbd, 0x02,
0xdf, 0x19, 0x65, 0x78, 0x3d, 0xb2, 0x3e, 0xad, 0x2c, 0x05, 0xa3, 0xeb, 0xb1,
0xf5, 0xf8, 0x7a, 0x62, 0x3d, 0xad, 0xc5, 0xd9, 0x14, 0x4c, 0xae, 0x8f, 0xb9,
0x7d, 0x96, 0x5a, 0x70, 0x42, 0x91, 0x5a, 0x2f, 0x07, 0x07, 0x83, 0xd5, 0x60,
0xc8, 0x3f, 0x14, 0x34, 0x05, 0xd2, 0x88, 0x96, 0x41, 0xc9, 0xae, 0xe7, 0x00,
0xf3, 0xeb, 0xfd, 0x64, 0x1f, 0x18, 0x57, 0x20, 0xd2, 0xfa, 0x5f, 0x39, 0x16,
0xd6, 0x8b, 0xeb, 0xa5, 0xf5, 0x71, 0x44, 0x2f, 0xaf, 0x57, 0xd6, 0x27, 0x82,
0xd3, 0x41, 0xbf, 0xb0, 0x0a, 0x6d, 0x0d, 0xa5, 0x7f, 0x3d, 0xe8, 0x6e, 0x06,
0x07, 0xd6, 0xeb, 0xeb, 0x0d, 0x70, 0x53, 0xc1, 0xd9, 0xe0, 0x20, 0xf0, 0xd0,
0xfa, 0x0c, 0xac, 0xab, 0x64, 0xc6, 0x0c, 0xaf, 0x8f, 0x40, 0x32, 0xba, 0x3e,
0x06, 0x38, 0xa9, 0x18, 0x5f, 0x9f, 0x20, 0x71, 0x27, 0x01, 0xe7, 0x82, 0x53,
0x84, 0x6e, 0xae, 0x4f, 0xaf, 0xdb, 0x90, 0x25, 0xdb, 0x5c, 0xb3, 0xce, 0xa0,
0xfe, 0xf9, 0x4e, 0x2f, 0xc9, 0xc9, 0x5a, 0x5b, 0x08, 0xce, 0xb6, 0xad, 0xd7,
0xe7, 0xd7, 0x97, 0x82, 0x0b, 0x74, 0x56, 0x8b, 0x04, 0xcb, 0x3c, 0x4b, 0xeb,
0xcb, 0xeb, 0x2b, 0xeb, 0xfd, 0x0a, 0xc6, 0x06, 0x73, 0xa3, 0x6b, 0x03, 0xfd,
0x89, 0x22, 0xd2, 0xcc, 0x3a, 0x17, 0x83, 0xd4, 0x06, 0x1b, 0x34, 0x67, 0x83,
0xbb, 0xc1, 0xdb, 0xe8, 0xde, 0xe8, 0xd9, 0xf8, 0xb5, 0xdf, 0xf9, 0xe0, 0x6d,
0x6a, 0x0b, 0xf6, 0x9d, 0xde, 0x8d, 0x3e, 0xd0, 0x2b, 0xc1, 0xae, 0xd0, 0x72,
0xd0, 0xaa, 0xc6, 0xbe, 0xa0, 0xc3, 0x18, 0x6e, 0x08, 0x89, 0xbd, 0x68, 0x43,
0x85, 0x9e, 0x10, 0xb7, 0xe3, 0x86, 0x24, 0x1b, 0xd2, 0x8d, 0x00, 0xb2, 0x93,
0x81, 0x63, 0x84, 0x98, 0x21, 0x64, 0xb7, 0x21, 0xb0, 0x2b, 0x36, 0x96, 0x4c,
0xca, 0x8d, 0x2e, 0xc8, 0x55, 0x1b, 0xea, 0x0d, 0x9f, 0x87, 0x82, 0x5c, 0x03,
0x0b, 0x1d, 0xf6, 0x29, 0xed, 0x86, 0x6e, 0x83, 0x1d, 0xd2, 0x93, 0x48, 0x86,
0x0d, 0x5e, 0xc8, 0xb8, 0xc1, 0x09, 0x99, 0x36, 0xfc, 0x26, 0xf3, 0x86, 0x85,
0xce, 0x86, 0x1b, 0xea, 0x0e, 0x59, 0xdb, 0x99, 0x6c, 0x84, 0x88, 0x84, 0x1f,
0xb2, 0x13, 0xdc, 0x13, 0x72, 0x6c, 0x38, 0xc9, 0x1e, 0xee, 0xdc, 0x50, 0xc8,
0xfa, 0x42, 0x82, 0x90, 0x6b, 0x43, 0x80, 0x19, 0xe1, 0xde, 0xf0, 0x6c, 0x78,
0x37, 0x7a, 0x51, 0x87, 0x6f, 0xc3, 0xbf, 0x11, 0xd8, 0x08, 0xc2, 0x3a, 0x8c,
0xd2, 0x44, 0xef, 0x89, 0x43, 0xa2, 0x90, 0x30, 0x14, 0xd9, 0x88, 0x07, 0xa3,
0x1b, 0x92, 0x50, 0x6c, 0x23, 0xbe, 0x91, 0xd8, 0x48, 0x6e, 0xac, 0xa0, 0x35,
0x52, 0xd8, 0xa7, 0xe8, 0x1a, 0xd3, 0x1b, 0x19, 0x50, 0x14, 0xda, 0x9d, 0xdd,
0xc8, 0x81, 0xca, 0xa3, 0x14, 0x36, 0x52, 0xde, 0xe2, 0x46, 0x69, 0xa3, 0x0c,
0x5a, 0x1e, 0xaa, 0x6c, 0x54, 0x37, 0x64, 0x21, 0x65, 0x48, 0x11, 0x22, 0xfb,
0x61, 0x48, 0x1d, 0x6a, 0x0a, 0x6b, 0x1b, 0x32, 0xa5, 0x46, 0xa1, 0xd5, 0x2d,
0x5a, 0x58, 0xf2, 0xba, 0x71, 0x56, 0xd9, 0xbf, 0x31, 0xaa, 0xd2, 0x86, 0x9c,
0x5e, 0xbb, 0x6d, 0x60, 0x63, 0x1e, 0xeb, 0x53, 0x13, 0xaa, 0x6f, 0xe8, 0x42,
0x0d, 0xf8, 0x0f, 0x6e, 0x0c, 0xb5, 0xa3, 0x62, 0xdf, 0x99, 0x96, 0x90, 0xd1,
0x27, 0xf5, 0xea, 0x11, 0x6b, 0x64, 0x63, 0xc5, 0x3e, 0x0a, 0x4e, 0x6a, 0x32,
0x86, 0x4c, 0x21, 0xbe, 0x73, 0x4e, 0xa9, 0x09, 0x98, 0x49, 0x1d, 0x6c, 0xf9,
0x8f, 0xdc, 0xb4, 0x6e, 0xb9, 0x79, 0x42, 0x2e, 0xa3, 0xf7, 0xac, 0x29, 0xf4,
0xfc, 0x18, 0xec, 0x2d, 0xb0, 0xb1, 0x86, 0xc6, 0x37, 0x26, 0x36, 0xca, 0xf6,
0x82, 0xa8, 0xad, 0x71, 0x84, 0x96, 0xd5, 0x93, 0x1b, 0xf6, 0x90, 0x5d, 0x3d,
0xb5, 0xe1, 0x0c, 0x8d, 0xf6, 0xbb, 0x42, 0x26, 0x8f, 0x1b, 0x56, 0x9e, 0x90,
0x37, 0xd4, 0xd0, 0x37, 0x37, 0xbc, 0xda, 0x1f, 0x11, 0xa6, 0x49, 0xdd, 0x1c,
0xe9, 0xcc, 0x46, 0x20, 0x34, 0xbb, 0xe1, 0x0b, 0xe9, 0xbc, 0x7e, 0x58, 0xa5,
0x5d, 0xc1, 0x50, 0x28, 0x14, 0x0e, 0x15, 0x6c, 0x73, 0x44, 0x1f, 0x0f, 0x45,
0x43, 0xb1, 0x50, 0x24, 0x54, 0x51, 0x27, 0x42, 0x83, 0xde, 0xaa, 0x7f, 0x1e,
0xd2, 0x05, 0x94, 0xc5, 0x8d, 0x64, 0x68, 0x69, 0x63, 0x99, 0xd8, 0xac, 0x00,
0x72, 0x8d, 0xa9, 0x50, 0x1a, 0xbd, 0xc9, 0xd8, 0x4c, 0x23, 0xca, 0x92, 0xc5,
0xe0, 0x2f, 0x22, 0x53, 0xe6, 0x26, 0xce, 0x82, 0x4d, 0xd6, 0x26, 0x05, 0xcc,
0xde, 0xb4, 0x85, 0x51, 0xdf, 0x66, 0xdb, 0x23, 0x13, 0xa2, 0x9a, 0x36, 0x39,
0x17, 0x74, 0x36, 0x94, 0xf7, 0xf0, 0x88, 0xac, 0x7b, 0xb3, 0xae, 0x5b, 0x32,
0xa3, 0x77, 0x42, 0x55, 0x3b, 0x59, 0x57, 0xa1, 0x1e, 0xc8, 0x8b, 0xa1, 0x3e,
0x09, 0x7f, 0xb3, 0x77, 0xb3, 0x6f, 0xb3, 0x14, 0xe2, 0xc8, 0x05, 0x9b, 0x5e,
0xfb, 0x82, 0x28, 0xa8, 0x23, 0x77, 0x16, 0x67, 0x39, 0x54, 0xb2, 0x09, 0x37,
0x45, 0x9b, 0x01, 0x43, 0x25, 0x24, 0xde, 0xe4, 0xbb, 0xd3, 0x46, 0xa6, 0x14,
0xe7, 0xb7, 0xb4, 0x4a, 0xfa, 0xad, 0x9f, 0x40, 0xb5, 0x42, 0xb2, 0x29, 0xdd,
0xac, 0x85, 0x64, 0x9b, 0xf2, 0xcd, 0x29, 0xbf, 0x62, 0xf3, 0xaf, 0x19, 0xde,
0xd0, 0xfd, 0x45, 0x29, 0x21, 0xd3, 0x39, 0xbd, 0x98, 0x4f, 0x03, 0x21, 0xd5,
0xe6, 0x9c, 0xaf, 0x1e, 0xa2, 0x2d, 0x80, 0x57, 0x6c, 0xea, 0x4d, 0xcd, 0xe6,
0x20, 0x28, 0xed, 0x26, 0xcf, 0xb8, 0xa2, 0x6e, 0x2a, 0x86, 0x42, 0x2e, 0xcd,
0x98, 0x4a, 0xb7, 0xf9, 0xcb, 0x93, 0xa0, 0x75, 0x24, 0xa4, 0x87, 0x84, 0x83,
0xec, 0x0d, 0x9b, 0x63, 0xea, 0xd1, 0xd0, 0x58, 0x48, 0x68, 0xc2, 0xe8, 0x86,
0x3a, 0xef, 0x08, 0x42, 0xc6, 0x4d, 0xb9, 0xc7, 0xb4, 0x69, 0x86, 0x95, 0x65,
0xb3, 0xaa, 0xb2, 0x02, 0x8f, 0x87, 0x6c, 0x9b, 0xf6, 0x4d, 0x07, 0xa8, 0x69,
0x45, 0x5e, 0x3d, 0xe2, 0x70, 0x92, 0x98, 0xcd, 0xd0, 0x24, 0xed, 0xe5, 0xda,
0x5c, 0x74, 0x0d, 0xea, 0x17, 0x43, 0x55, 0xc9, 0x74, 0x68, 0x2a, 0x14, 0x40,
0x3c, 0xf7, 0xa6, 0x67, 0xd3, 0x4b, 0xd7, 0x3c, 0x0b, 0xab, 0x99, 0x90, 0x0f,
0x9c, 0x7f, 0xd3, 0x8a, 0xb9, 0x14, 0x68, 0xf7, 0x95, 0x62, 0x29, 0xd4, 0xeb,
0x0f, 0x82, 0x0a, 0x6d, 0xce, 0xd1, 0x51, 0x96, 0x43, 0x0b, 0xa1, 0xf0, 0xe6,
0x7c, 0x28, 0xb2, 0x19, 0xdd, 0x8c, 0x6d, 0xc6, 0xa1, 0x4b, 0x6c, 0x06, 0xfc,
0x49, 0x12, 0x65, 0x5e, 0x69, 0x21, 0x3b, 0x7f, 0xd3, 0x9f, 0xda, 0x4c, 0x6f,
0x66, 0x36, 0xb3, 0xed, 0x5c, 0x74, 0x49, 0x5b, 0x4d, 0xc5, 0x0c, 0x77, 0x61,
0xac, 0x72, 0x9b, 0xf9, 0xcd, 0x9a, 0x9f, 0xac, 0xb8, 0x00, 0x15, 0x2e, 0x6c,
0x16, 0x37, 0x4b, 0x9b, 0x0b, 0xca, 0xf2, 0x66, 0x65, 0x93, 0x15, 0xae, 0x6e,
0x0a, 0x50, 0x6b, 0x6d, 0x93, 0x0d, 0xbb, 0xb8, 0xa7, 0x7f, 0x53, 0x6b, 0x1d,
0xd8, 0x64, 0xfb, 0xea, 0x9b, 0x29, 0xb2, 0x2e, 0x1b, 0x9b, 0x1c, 0xc8, 0x07,
0x11, 0x6f, 0x68, 0x33, 0x36, 0x8e, 0x9e, 0xd8, 0x14, 0xda, 0x47, 0x36, 0xb9,
0xe1, 0x6e, 0xa9, 0x04, 0xf7, 0x9d, 0xd1, 0xcd, 0xb1, 0x4d, 0x86, 0x9e, 0x17,
0x1e, 0x70, 0xf7, 0x86, 0xc7, 0x37, 0xbb, 0x8d, 0xdd, 0xe1, 0xa0, 0x7c, 0x62,
0xb3, 0x27, 0xdc, 0x23, 0x9d, 0xdc, 0x9c, 0xda, 0x6c, 0xb6, 0xb3, 0xa0, 0x5b,
0x39, 0xb3, 0x39, 0xbb, 0xd9, 0xa7, 0xe8, 0x0b, 0xcf, 0x6d, 0x0a, 0xc2, 0xf3,
0x9b, 0x0b, 0x9b, 0xc2, 0xb0, 0x28, 0x9c, 0xa1, 0xe7, 0xef, 0xa2, 0x32, 0xef,
0x5d, 0xdc, 0xac, 0x7b, 0x67, 0xed, 0x4b, 0xb0, 0x9e, 0x70, 0x8b, 0x51, 0xa3,
0x04, 0x65, 0x79, 0x73, 0x65, 0x93, 0xb1, 0x25, 0x03, 0xa5, 0x08, 0xcb, 0xc3,
0xcc, 0x2d, 0xcc, 0x40, 0x14, 0x65, 0x58, 0x27, 0xf6, 0x7a, 0x58, 0x5b, 0x4b,
0x6a, 0x55, 0x98, 0xda, 0x62, 0x6f, 0xa5, 0x4c, 0x9c, 0x2d, 0xee, 0x16, 0x53,
0xcf, 0xc3, 0xea, 0x52, 0xc3, 0x96, 0x07, 0x9b, 0xee, 0xad, 0x9e, 0x2d, 0xfe,
0x56, 0xc6, 0xd9, 0xbb, 0xd5, 0xb7, 0x25, 0x00, 0xaf, 0x09, 0x0b, 0xb7, 0xb4,
0x61, 0xd1, 0x96, 0x0e, 0x7a, 0xf1, 0x16, 0x59, 0xa9, 0x61, 0x96, 0xab, 0x2e,
0xaf, 0x09, 0x25, 0x5b, 0xd2, 0x2d, 0xd9, 0x96, 0xc1, 0x6e, 0x08, 0xeb, 0x74,
0xf2, 0xad, 0x86, 0x11, 0x77, 0x95, 0xb0, 0x31, 0xdc, 0xa5, 0x2f, 0x29, 0x2d,
0x61, 0xbd, 0x53, 0xb9, 0xa5, 0xd8, 0xb2, 0x86, 0x7f, 0x64, 0x99, 0x75, 0x4a,
0xcd, 0xa3, 0x66, 0x2e, 0x59, 0xc3, 0xa3, 0x76, 0x91, 0x45, 0xb5, 0x35, 0xea,
0x50, 0x6f, 0xf9, 0x71, 0xcf, 0xb2, 0xb7, 0x7b, 0xc8, 0xa8, 0x41, 0x5c, 0x2d,
0x8a, 0x6e, 0x4b, 0xa6, 0x20, 0xab, 0x97, 0xf8, 0xe9, 0xb7, 0x0c, 0x5b, 0xce,
0x30, 0x5f, 0x34, 0x2d, 0x1c, 0x91, 0x1a, 0xb7, 0xb8, 0xe6, 0x90, 0x6c, 0x02,
0x7b, 0x92, 0x27, 0xac, 0x10, 0x9b, 0x60, 0xeb, 0x26, 0x36, 0xe6, 0xad, 0x6e,
0x12, 0xd5, 0x1b, 0xb6, 0x6c, 0x4d, 0x90, 0x5b, 0xa4, 0x75, 0xcb, 0xb6, 0xf5,
0xf7, 0xac, 0xb4, 0x77, 0x68, 0xc7, 0x96, 0x13, 0xb4, 0x0f, 0x5e, 0x61, 0xbf,
0x6b, 0x6b, 0x89, 0x9c, 0xe8, 0x6e, 0x48, 0xe4, 0x4a, 0x7f, 0xd8, 0x43, 0xac,
0xbc, 0x5b, 0xc1, 0x70, 0x00, 0xfa, 0x82, 0x41, 0x25, 0xf2, 0x6d, 0xf9, 0x21,
0xcb, 0x8b, 0x42, 0xe1, 0xc0, 0x56, 0x18, 0xb2, 0xe0, 0x96, 0x42, 0x19, 0xda,
0x0a, 0x6f, 0x45, 0xc2, 0x91, 0xad, 0x28, 0x34, 0xb1, 0xad, 0x51, 0x9c, 0x3b,
0x71, 0xe2, 0x97, 0x00, 0x14, 0x6b, 0xa2, 0xb0, 0x4a, 0x12, 0xbe, 0xe9, 0x91,
0xa9, 0xd3, 0x32, 0x8e, 0x2f, 0x68, 0x32, 0x38, 0x97, 0xb5, 0x29, 0x22, 0x4b,
0x6f, 0x65, 0xb6, 0x1c, 0xba, 0xec, 0x56, 0x5d, 0x3b, 0x8d, 0x91, 0x9b, 0xd1,
0xe5, 0xb6, 0x8c, 0x4e, 0xc4, 0xdf, 0x2a, 0x6c, 0x25, 0xc2, 0xc5, 0x2d, 0x8b,
0x28, 0x64, 0x5a, 0x56, 0xda, 0x94, 0x03, 0xf2, 0xd2, 0x56, 0x79, 0x2b, 0x13,
0x66, 0x58, 0x56, 0xcc, 0x3d, 0x72, 0x96, 0x3e, 0x1b, 0x4e, 0x87, 0xad, 0xe2,
0x7e, 0xb3, 0x52, 0xeb, 0xd1, 0xb0, 0xb1, 0xaf, 0x55, 0xb6, 0xc6, 0x25, 0xfd,
0x2a, 0x37, 0x76, 0xd3, 0x5c, 0x38, 0x1f, 0xae, 0x6e, 0xb9, 0x64, 0x76, 0x09,
0x7d, 0x87, 0x57, 0x39, 0x65, 0x05, 0x2b, 0x25, 0x12, 0xd9, 0xf5, 0x5e, 0x86,
0x6a, 0xde, 0xe7, 0xb0, 0xad, 0xa0, 0x85, 0xb5, 0xad, 0x5f, 0x56, 0xe8, 0x96,
0x00, 0xbd, 0x3b, 0x80, 0x3c, 0x2b, 0x72, 0xb7, 0x67, 0xa0, 0xa3, 0xcb, 0x39,
0xeb, 0x5b, 0x8d, 0xad, 0xfe, 0xf0, 0xe0, 0x56, 0x5e, 0x5a, 0x0a, 0x97, 0xc3,
0xd5, 0xf0, 0x10, 0x74, 0xc3, 0x44, 0x3f, 0xb2, 0x35, 0xba, 0x55, 0x83, 0x47,
0x46, 0x56, 0xc2, 0x6d, 0xb7, 0xd7, 0x5d, 0x09, 0x17, 0xc2, 0x15, 0x44, 0x2e,
0x42, 0xc6, 0x0a, 0x8c, 0x6d, 0x8d, 0xc3, 0x6a, 0xd2, 0x3d, 0xb1, 0x55, 0xb7,
0x96, 0x95, 0xe3, 0x2a, 0x72, 0x6a, 0x6f, 0xd5, 0xc3, 0x53, 0x90, 0xe6, 0xec,
0xff, 0xee, 0x3e, 0xd9, 0xdc, 0x1a, 0x26, 0x63, 0x37, 0x0d, 0xab, 0x19, 0x94,
0xd9, 0xad, 0xb9, 0xad, 0x15, 0xed, 0xfc, 0xd6, 0x8c, 0x76, 0x01, 0xdc, 0xe2,
0xd6, 0x12, 0xe0, 0x58, 0x78, 0x04, 0x36, 0x5d, 0xde, 0xe5, 0xad, 0xc1, 0xf0,
0x54, 0x78, 0x94, 0x9e, 0x47, 0x13, 0x61, 0xbb, 0xd2, 0x80, 0x51, 0x5e, 0xd9,
0x9a, 0x0c, 0x33, 0xb6, 0xb1, 0xb3, 0x6e, 0x37, 0xc3, 0x5d, 0xdb, 0x33, 0xed,
0x5c, 0xb6, 0x29, 0xf0, 0xe3, 0x6a, 0x73, 0x80, 0xbd, 0x3d, 0x14, 0x6e, 0x84,
0xa7, 0xc3, 0x9c, 0xed, 0x71, 0xe2, 0xc5, 0xdd, 0xe6, 0x6d, 0xff, 0x5d, 0x77,
0x37, 0xa1, 0x7b, 0x00, 0xf9, 0xdb, 0x73, 0xed, 0x1a, 0x22, 0x0b, 0xe1, 0xde,
0xed, 0xbe, 0xed, 0x95, 0xb0, 0x60, 0x5b, 0xb8, 0xcd, 0x88, 0x2c, 0x86, 0x45,
0xdb, 0xe2, 0x6d, 0x7d, 0x04, 0xab, 0x68, 0xbb, 0xa1, 0x16, 0xd1, 0xbd, 0x2b,
0xdd, 0x9e, 0x0f, 0xcb, 0xb6, 0xe5, 0xdb, 0x8a, 0x6d, 0x2a, 0x32, 0x23, 0x64,
0x45, 0x94, 0xdb, 0x94, 0xd0, 0xed, 0x62, 0xc2, 0x6a, 0x09, 0x31, 0x54, 0xdb,
0xb3, 0xe1, 0xe5, 0xb0, 0x53, 0xad, 0x26, 0xb1, 0x35, 0xdb, 0xda, 0xed, 0x7f,
0xf1, 0xc6, 0x3d, 0xf2, 0x2b, 0xaf, 0xdb, 0x9e, 0x15, 0x0a, 0x88, 0x8c, 0x13,
0xe1, 0x02, 0x53, 0xfa, 0x86, 0x47, 0x0f, 0x3f, 0xc3, 0x76, 0x6f, 0x84, 0x1f,
0x31, 0x92, 0x08, 0x02, 0xfa, 0x94, 0x33, 0xd1, 0xf1, 0xfa, 0x60, 0x67, 0xde,
0xee, 0x89, 0x58, 0xb6, 0xad, 0xdb, 0xb6, 0x6d, 0x3b, 0x91, 0x4a, 0x45, 0x8e,
0x6d, 0xb9, 0x5a, 0x68, 0x70, 0x6e, 0xbb, 0x08, 0xef, 0xde, 0xf6, 0x6c, 0x7b,
0xb7, 0x79, 0x91, 0x32, 0xed, 0xdb, 0x1d, 0xf1, 0x6d, 0x33, 0x85, 0xff, 0xb5,
0xe7, 0x77, 0xff, 0x76, 0xe0, 0x47, 0xcc, 0x48, 0x17, 0xd6, 0x19, 0x47, 0x1f,
0xdc, 0x56, 0xa3, 0xc6, 0xd0, 0x76, 0x18, 0x52, 0x55, 0x44, 0x08, 0x3a, 0xb2,
0x1d, 0xdd, 0x8e, 0x6d, 0x5b, 0xb0, 0xc3, 0x8b, 0x22, 0x71, 0x62, 0x3b, 0x66,
0x96, 0x47, 0xd8, 0xfa, 0x04, 0xe8, 0xe4, 0x76, 0x0a, 0x50, 0x12, 0x49, 0x03,
0x56, 0xbd, 0x99, 0xed, 0x2c, 0xb0, 0x96, 0xac, 0x66, 0x45, 0x44, 0x19, 0xc9,
0x81, 0xcb, 0x6f, 0x17, 0xb6, 0x65, 0x11, 0x4d, 0xa4, 0x08, 0xba, 0xb4, 0x5d,
0x06, 0x14, 0x47, 0x2a, 0x6d, 0xeb, 0xed, 0xff, 0xea, 0x1b, 0x06, 0x53, 0xc4,
0xde, 0xee, 0x83, 0x48, 0x6d, 0x5b, 0x17, 0xe9, 0xdf, 0x1e, 0xd8, 0x76, 0x44,
0x44, 0x38, 0x11, 0xea, 0xdb, 0xae, 0x48, 0x63, 0x9b, 0xa9, 0x32, 0x44, 0x96,
0x2d, 0xe4, 0x4d, 0xcb, 0xf6, 0x10, 0x22, 0x0e, 0x6f, 0x8f, 0x6c, 0x8f, 0x6e,
0x8f, 0x91, 0xd8, 0xe3, 0xdb, 0x96, 0x88, 0x36, 0xd2, 0x8b, 0x73, 0x71, 0x54,
0x5a, 0x93, 0x58, 0x23, 0x46, 0x7a, 0x34, 0x26, 0xb6, 0x27, 0x89, 0x7e, 0x46,
0xe1, 0x8e, 0x38, 0x23, 0x11, 0x93, 0x5b, 0xc6, 0x97, 0x4f, 0x6d, 0xdb, 0xa0,
0x6d, 0x62, 0x57, 0x69, 0xd2, 0x79, 0x59, 0x45, 0xbf, 0xe7, 0x31, 0x0d, 0xcd,
0x0c, 0xca, 0xec, 0xb6, 0x3f, 0xe2, 0x8d, 0xcc, 0x6d, 0x73, 0xa2, 0x38, 0x47,
0xc0, 0x2f, 0x6c, 0x2f, 0x02, 0x2e, 0x11, 0xbf, 0xe5, 0xed, 0x95, 0x6d, 0xc6,
0x4e, 0x88, 0xd4, 0xc4, 0xdc, 0xe9, 0xda, 0xc1, 0xce, 0x15, 0x61, 0xed, 0x04,
0xda, 0x63, 0xbd, 0xe3, 0x23, 0x52, 0xf6, 0x8e, 0x57, 0x13, 0xec, 0xcc, 0x0b,
0xce, 0xce, 0xbf, 0x6b, 0x35, 0x77, 0x27, 0x02, 0xab, 0x24, 0x6d, 0x19, 0x8f,
0xc4, 0x22, 0xbc, 0x9d, 0xee, 0x1d, 0x31, 0xda, 0xda, 0xb3, 0x63, 0x13, 0xf3,
0x89, 0x5f, 0xef, 0x4e, 0xdf, 0x8e, 0x60, 0x47, 0xb8, 0x23, 0xda, 0x11, 0x83,
0x0f, 0xc3, 0x36, 0x1a, 0xe1, 0xea, 0x25, 0x22, 0x09, 0xb8, 0x44, 0xe4, 0xdf,
0xf7, 0x68, 0x9e, 0x9c, 0x7d, 0x52, 0x12, 0xa3, 0x1c, 0x91, 0xed, 0x2c, 0xe9,
0xf3, 0x11, 0xf9, 0x4e, 0x36, 0xa2, 0xd8, 0xc9, 0x45, 0x94, 0x3b, 0x85, 0x88,
0x0a, 0x1a, 0xf5, 0x8e, 0x66, 0x47, 0x0b, 0xac, 0xdb, 0xd1, 0xef, 0x18, 0x76,
0x74, 0x22, 0xe3, 0x8e, 0x09, 0x9c, 0x99, 0xf8, 0x58, 0x00, 0xad, 0x3b, 0x2a,
0x93, 0x6d, 0x27, 0x15, 0xb1, 0xef, 0xa4, 0xe9, 0x9a, 0x1c, 0xbf, 0xb4, 0x65,
0x81, 0xac, 0x22, 0x27, 0x64, 0xae, 0x1d, 0xf7, 0x8e, 0x67, 0xc7, 0xbb, 0x53,
0x82, 0x9d, 0x0f, 0xfc, 0x98, 0xd4, 0xbf, 0x53, 0x8d, 0x14, 0x23, 0x95, 0x48,
0x00, 0x5c, 0x10, 0x25, 0xb4, 0x13, 0x06, 0xec, 0x73, 0x47, 0x48, 0x84, 0x18,
0xf6, 0x10, 0xa5, 0xf3, 0xa7, 0x1d, 0x8c, 0x8e, 0x1f, 0xdd, 0x89, 0xed, 0xd4,
0x22, 0x36, 0x49, 0x1c, 0x56, 0x03, 0x91, 0xc4, 0x4e, 0x92, 0x58, 0x0f, 0x76,
0xda, 0xd9, 0x88, 0xa4, 0xe8, 0x0c, 0xd2, 0x3b, 0x19, 0x42, 0x65, 0x77, 0x72,
0x3b, 0xf9, 0x9d, 0x3a, 0x2c, 0x54, 0x8e, 0x36, 0x3f, 0x14, 0x29, 0xec, 0x14,
0x77, 0x4a, 0x3b, 0x65, 0x68, 0x2b, 0x3b, 0xd5, 0x9d, 0xda, 0xce, 0x30, 0xf1,
0xee, 0x6f, 0x47, 0xdc, 0x19, 0x05, 0x3d, 0x12, 0xa9, 0x77, 0x5a, 0x31, 0x0e,
0xbe, 0x01, 0x6e, 0x2a, 0x32, 0x11, 0x19, 0x8b, 0x4c, 0x82, 0x1b, 0x24, 0xba,
0x66, 0x64, 0x68, 0x67, 0x78, 0x67, 0x64, 0x67, 0x7c, 0x67, 0x62, 0x67, 0x3a,
0x32, 0xba, 0x33, 0xb6, 0x33, 0x03, 0xdd, 0x2c, 0x9d, 0xc7, 0x5c, 0xc4, 0x16,
0x9a, 0xdc, 0x59, 0xd2, 0xfa, 0x34, 0x53, 0x3b, 0xcd, 0x9d, 0x29, 0xf1, 0xf4,
0xce, 0x9c, 0x70, 0xa6, 0xdd, 0x5f, 0x96, 0xd9, 0x9d, 0xb9, 0x9d, 0xf9, 0x9d,
0x85, 0x9d, 0x45, 0x12, 0x65, 0x19, 0x70, 0x65, 0x67, 0x1e, 0x5e, 0x2c, 0xf5,
0xd2, 0x4e, 0x40, 0x98, 0x27, 0xef, 0x15, 0x18, 0xbb, 0xcc, 0x5d, 0xf4, 0x5d,
0xc4, 0x41, 0x4e, 0xaa, 0x09, 0xec, 0xad, 0x4b, 0x91, 0xc5, 0x48, 0xd7, 0x2e,
0x6b, 0xb7, 0xe8, 0x5e, 0x26, 0x35, 0x50, 0xbb, 0x8c, 0xe8, 0x4a, 0x84, 0xbd,
0xcb, 0x8c, 0x72, 0x76, 0xbb, 0x30, 0x03, 0x67, 0xb1, 0xda, 0xb8, 0xbb, 0x45,
0x11, 0x0b, 0x34, 0x6f, 0x97, 0x0d, 0x48, 0xa1, 0x74, 0xef, 0xf6, 0xec, 0x72,
0xa3, 0x7c, 0xc4, 0x4a, 0xdb, 0x7a, 0x01, 0xfb, 0x76, 0x05, 0xbb, 0xc2, 0x5d,
0xd1, 0x2e, 0x2f, 0x2a, 0x13, 0x16, 0xd4, 0xe2, 0x5d, 0x09, 0x64, 0xd2, 0x5d,
0x9d, 0x42, 0xb6, 0x2b, 0xdf, 0x0d, 0x90, 0xf5, 0xa3, 0xd8, 0x55, 0xee, 0x92,
0xbd, 0x23, 0xda, 0x13, 0x25, 0x73, 0x0b, 0x50, 0xb5, 0xab, 0xde, 0xd5, 0xec,
0xf6, 0x81, 0xaa, 0xaa, 0xc9, 0x3d, 0x7c, 0x57, 0xb7, 0x1b, 0x22, 0x27, 0xaf,
0x02, 0xa7, 0xb8, 0x7e, 0xd7, 0xb0, 0xcb, 0x8f, 0x0a, 0xa2, 0x26, 0x75, 0x97,
0xca, 0xb8, 0xfb, 0x1f, 0xad, 0x60, 0x49, 0xd4, 0x04, 0x3d, 0xa5, 0x36, 0xef,
0x4a, 0x2c, 0x96, 0x5d, 0xeb, 0xae, 0x30, 0x9a, 0xb6, 0xda, 0x20, 0xb1, 0xef,
0x3a, 0x76, 0x9d, 0xbb, 0xae, 0x5d, 0x37, 0x68, 0xcf, 0xae, 0x77, 0xd7, 0x07,
0xec, 0x47, 0x09, 0xec, 0x06, 0x77, 0x43, 0xbb, 0x61, 0x50, 0x91, 0x5d, 0x29,
0x6a, 0x8f, 0xee, 0x96, 0x0d, 0xb1, 0x4e, 0x0d, 0xe2, 0xa8, 0x0c, 0x32, 0x83,
0x22, 0xfe, 0x4b, 0x9d, 0xf2, 0x68, 0x62, 0xb7, 0x08, 0x49, 0x12, 0x25, 0xb5,
0x9b, 0x06, 0xcc, 0xec, 0x66, 0x77, 0x73, 0xbb, 0xf9, 0x5d, 0x45, 0xb4, 0xb0,
0xcb, 0x52, 0x19, 0x25, 0x2a, 0xd2, 0xae, 0xd2, 0x6e, 0x79, 0xb7, 0xb2, 0xab,
0x6e, 0xb7, 0x89, 0xf6, 0xd7, 0x10, 0xb9, 0x32, 0xda, 0xf9, 0x2d, 0xa2, 0x13,
0xb7, 0x9f, 0x50, 0x22, 0xa2, 0xd1, 0x12, 0xa8, 0x8b, 0x0e, 0xec, 0xd6, 0x89,
0xb4, 0xea, 0x69, 0x00, 0x0f, 0xe9, 0x07, 0x09, 0x67, 0x88, 0x1a, 0xa3, 0xfa,
0xe8, 0xd0, 0xae, 0x39, 0xfa, 0x77, 0x46, 0x4a, 0xc7, 0xf0, 0xee, 0xc8, 0x6e,
0x5d, 0x18, 0x77, 0xad, 0xc0, 0xc6, 0x12, 0x1d, 0x05, 0x1c, 0xdb, 0x1d, 0x07,
0x9c, 0xa0, 0x6b, 0x98, 0x24, 0x78, 0x8a, 0xe6, 0x96, 0xf5, 0xcd, 0xdd, 0xe9,
0x5d, 0x95, 0x76, 0x66, 0x37, 0xe7, 0x18, 0xc7, 0xae, 0x35, 0xa4, 0x9e, 0xdd,
0x9d, 0xdb, 0x9d, 0xdf, 0x4d, 0xa1, 0xaf, 0xc5, 0xf6, 0x85, 0xdd, 0xc5, 0xdd,
0x39, 0x45, 0x00, 0xbb, 0xf0, 0xd2, 0xee, 0xf2, 0xae, 0x29, 0x6a, 0x8d, 0x32,
0xf6, 0x98, 0x7b, 0xbf, 0xf6, 0xb3, 0xd5, 0x4c, 0xff, 0xd6, 0x87, 0x2c, 0xba,
0xa0, 0xb3, 0x47, 0x59, 0x7b, 0xd4, 0x1e, 0x7b, 0xcf, 0x49, 0xb2, 0x6a, 0xe0,
0xa9, 0x9b, 0xb3, 0xc7, 0x25, 0x3e, 0x7d, 0xd2, 0x36, 0xe4, 0x81, 0x66, 0x34,
0x4b, 0xa2, 0x29, 0x77, 0x37, 0xa8, 0x61, 0xbd, 0x93, 0x3e, 0x3f, 0x7a, 0xf6,
0xfa, 0xc9, 0x78, 0xfb, 0xe1, 0xc7, 0xdf, 0xd3, 0xb9, 0x73, 0xfe, 0x5f, 0xeb,
0xe9, 0xdd, 0x6b, 0x8a, 0xdd, 0xd1, 0xbe, 0x3d, 0x01, 0xbc, 0x84, 0x7b, 0xa2,
0x3d, 0xb5, 0xc9, 0x07, 0xcb, 0x8a, 0x4d, 0x0c, 0xde, 0x65, 0xab, 0xda, 0x54,
0x4e, 0x9f, 0x95, 0xbe, 0xc9, 0xab, 0x25, 0x90, 0x49, 0xf7, 0x5c, 0xd0, 0xcb,
0x48, 0xcd, 0xf2, 0x3d, 0xc5, 0xde, 0x0c, 0xf6, 0x56, 0x79, 0xe7, 0x0d, 0x94,
0x07, 0x3a, 0x07, 0xc9, 0x30, 0x48, 0xd6, 0x80, 0x72, 0x2f, 0x40, 0x38, 0x15,
0xec, 0xfd, 0x3a, 0xf5, 0x9e, 0x66, 0x4f, 0x0b, 0xaa, 0x17, 0xf3, 0x2e, 0x08,
0xb9, 0x6e, 0x4f, 0xbf, 0x67, 0xd8, 0x33, 0x42, 0x62, 0xda, 0x33, 0x03, 0x5a,
0xf6, 0xac, 0x24, 0x6e, 0xdd, 0x6d, 0x6b, 0xb7, 0x78, 0x6f, 0xd9, 0xd4, 0xb9,
0x05, 0x5a, 0x1d, 0x90, 0x84, 0xa3, 0xce, 0x3d, 0xd7, 0x9e, 0x9b, 0xee, 0x29,
0x0f, 0x70, 0xc0, 0xe3, 0x05, 0x8c, 0x90, 0x3a, 0x92, 0x04, 0xfa, 0xf6, 0xfc,
0x7b, 0x82, 0xce, 0x9b, 0xd1, 0x44, 0x34, 0x14, 0x8d, 0x46, 0xe3, 0xd1, 0x20,
0xac, 0xd8, 0xa4, 0x1f, 0x5c, 0xee, 0x50, 0xdb, 0x6f, 0x2f, 0x05, 0x6b, 0x9b,
0x25, 0x0c, 0x7a, 0x1a, 0x3b, 0xe8, 0x88, 0x3e, 0xb2, 0x17, 0x05, 0x1d, 0xdb,
0xcb, 0x44, 0xe3, 0x7b, 0xe9, 0x68, 0x62, 0xaf, 0xae, 0x4a, 0xee, 0x65, 0xa3,
0xf9, 0x68, 0x2e, 0x9a, 0x82, 0xbc, 0x18, 0x4d, 0xef, 0xc5, 0xa2, 0x65, 0xf8,
0x64, 0xf6, 0xb2, 0xe0, 0x4b, 0xd1, 0x02, 0x3d, 0x3b, 0x72, 0xed, 0x96, 0x69,
0x42, 0x68, 0x6d, 0xd4, 0x54, 0x89, 0x6a, 0x8d, 0x23, 0xc2, 0xaa, 0x23, 0x4f,
0x67, 0x98, 0x41, 0xcf, 0xd5, 0xa2, 0xd5, 0x68, 0x7f, 0x74, 0x20, 0x5a, 0x8f,
0x36, 0x88, 0x47, 0x61, 0xaf, 0x48, 0xb4, 0x21, 0xf7, 0x60, 0xb4, 0xb4, 0x57,
0x26, 0xb4, 0x5d, 0x3c, 0xd4, 0xee, 0xf3, 0xbd, 0xea, 0x5e, 0x6d, 0x4f, 0xeb,
0x13, 0x62, 0xb7, 0x75, 0x85, 0x9d, 0x3a, 0x83, 0x79, 0x38, 0x3a, 0xe4, 0x1d,
0xa0, 0x63, 0xd5, 0xf7, 0xa4, 0xde, 0xc6, 0xde, 0xe0, 0xde, 0x28, 0x2c, 0x07,
0xcc, 0x43, 0x7b, 0x0a, 0x9b, 0xd1, 0x9c, 0x70, 0x8d, 0x45, 0xc7, 0xa3, 0x8b,
0xa2, 0xe1, 0xbd, 0x91, 0x3d, 0xb5, 0x76, 0x22, 0x3a, 0x0a, 0xdb, 0xb1, 0xbd,
0xf1, 0xbd, 0xa0, 0x70, 0xf2, 0xa7, 0xb9, 0x3b, 0x15, 0x9d, 0xa0, 0x63, 0x4c,
0xee, 0x95, 0x31, 0x5a, 0x53, 0x7b, 0x13, 0xd2, 0xa2, 0xbd, 0xd9, 0xe9, 0xa3,
0xd9, 0x68, 0xcc, 0x34, 0x13, 0x35, 0x2a, 0x9a, 0x7b, 0xd3, 0x7b, 0x19, 0xcf,
0x34, 0x3c, 0x6b, 0xb6, 0xf9, 0xe8, 0xcc, 0xde, 0x5c, 0x74, 0x16, 0x7e, 0x73,
0x7b, 0xf3, 0x7b, 0x0b, 0x7b, 0x8b, 0xd1, 0xc5, 0xbd, 0x85, 0xe8, 0x12, 0xf8,
0x25, 0x44, 0x58, 0x8a, 0xf2, 0xf4, 0x2b, 0x51, 0xca, 0xb2, 0xbc, 0xb7, 0x1c,
0x5d, 0xd9, 0x93, 0xb8, 0x19, 0xfb, 0xe4, 0x8c, 0xdc, 0x9f, 0xd5, 0x65, 0x6c,
0x5d, 0xfb, 0x2c, 0x70, 0x8c, 0x18, 0x05, 0xc8, 0xde, 0xe7, 0xec, 0x53, 0xaa,
0x1f, 0xb5, 0x30, 0x63, 0x0c, 0x47, 0xde, 0x19, 0xf2, 0xfe, 0xf4, 0x6e, 0xce,
0xc1, 0xdd, 0xe7, 0xed, 0xf7, 0xc4, 0xba, 0xf7, 0xe9, 0x99, 0xba, 0xaf, 0x6c,
0xbf, 0x03, 0xde, 0xb7, 0xf9, 0x7a, 0x21, 0x11, 0xc0, 0x92, 0x1f, 0xc7, 0xdc,
0x8f, 0x61, 0x86, 0xd3, 0x16, 0xec, 0x98, 0x60, 0xdf, 0x86, 0x75, 0x21, 0xdc,
0x57, 0x7a, 0xe8, 0x5f, 0x3a, 0x6d, 0xa2, 0x7d, 0xf1, 0xbe, 0x64, 0x5f, 0x0a,
0x0b, 0x4e, 0x4c, 0x46, 0xdb, 0xc9, 0x81, 0x6b, 0x1e, 0xc5, 0xbe, 0x5b, 0xad,
0x04, 0xd5, 0xad, 0x27, 0x33, 0x10, 0x94, 0x7a, 0x5f, 0x03, 0xc8, 0x45, 0x44,
0xed, 0x7e, 0x50, 0xa3, 0xdb, 0x0f, 0xe0, 0x1e, 0xae, 0x27, 0x3e, 0x2a, 0xa1,
0x53, 0x69, 0xd8, 0xef, 0x31, 0x86, 0x3a, 0x37, 0x2d, 0x7e, 0xac, 0x17, 0x76,
0xdd, 0x31, 0xe3, 0xbe, 0x69, 0xdf, 0x4c, 0xc7, 0xb5, 0xec, 0x5b, 0xf7, 0x95,
0x22, 0x81, 0xd4, 0xb6, 0xcf, 0x83, 0xce, 0xe6, 0x15, 0xb9, 0xc8, 0xe8, 0xed,
0x3b, 0xa0, 0x77, 0xee, 0xbb, 0x00, 0xdd, 0xed, 0xf8, 0x42, 0x0f, 0x6d, 0x3f,
0x4f, 0x47, 0x0b, 0x69, 0xbc, 0xfb, 0x61, 0xd0, 0x5d, 0x42, 0xdf, 0x7e, 0x67,
0xe7, 0x8b, 0x91, 0x55, 0xb9, 0x1f, 0xd8, 0x0f, 0x12, 0x99, 0x30, 0x16, 0xda,
0x0f, 0x77, 0xb4, 0x5a, 0xb4, 0x5e, 0x02, 0x0b, 0x11, 0x4a, 0x64, 0x5f, 0x10,
0x13, 0x91, 0xd5, 0x14, 0xdd, 0x8f, 0xed, 0xf7, 0x41, 0x12, 0xdf, 0x4f, 0xec,
0xa7, 0xdd, 0x49, 0x62, 0x9d, 0x02, 0xac, 0x2a, 0xd3, 0x1d, 0x4f, 0x45, 0x4c,
0x19, 0xfb, 0xe9, 0xd7, 0x11, 0x3d, 0x7d, 0xff, 0x8d, 0xf1, 0x03, 0x64, 0x46,
0xee, 0x67, 0xf7, 0xbd, 0x8e, 0xdc, 0x7e, 0x7e, 0x5f, 0x4e, 0xac, 0x0a, 0xb4,
0x5f, 0xb1, 0xe3, 0x5f, 0xea, 0x50, 0x1c, 0x35, 0xfd, 0xdb, 0x2e, 0x2d, 0x51,
0xc5, 0x2a, 0xed, 0xba, 0xf6, 0x93, 0xae, 0x1a, 0x91, 0xa8, 0x11, 0x41, 0x16,
0xeb, 0xdf, 0xff, 0xe7, 0x19, 0x31, 0x40, 0x64, 0xf5, 0xfd, 0x06, 0xc1, 0x83,
0xfb, 0x1a, 0xef, 0xbf, 0x3e, 0x4b, 0x86, 0x3a, 0xbe, 0xc3, 0xa0, 0xf2, 0x8e,
0x11, 0xc2, 0x8f, 0x12, 0x38, 0xb6, 0xaf, 0x89, 0x89, 0x5d, 0xe3, 0xa0, 0x27,
0xf6, 0x27, 0xf7, 0xa7, 0x80, 0x9b, 0x1d, 0xeb, 0xe9, 0x0e, 0x35, 0xd3, 0xa1,
0x66, 0xf7, 0xe7, 0xf6, 0xe7, 0xc1, 0x2d, 0x10, 0xc9, 0x22, 0xe0, 0xd2, 0xfe,
0xf2, 0xbe, 0x36, 0x66, 0x8c, 0xe9, 0x62, 0x2b, 0xe0, 0x1c, 0x62, 0x03, 0xf2,
0x65, 0x1c, 0x60, 0x26, 0xa2, 0x74, 0x1d, 0x68, 0xf0, 0x14, 0xa7, 0x8f, 0xcd,
0x93, 0xfb, 0x2d, 0xeb, 0xc0, 0xfb, 0x53, 0x9f, 0xd9, 0x62, 0x66, 0xc2, 0x51,
0xb0, 0x63, 0x1f, 0xd0, 0x7d, 0x71, 0x50, 0xc5, 0xc9, 0x6a, 0x82, 0x9c, 0x7b,
0x60, 0x21, 0x5a, 0x6b, 0x8c, 0x47, 0xeb, 0xba, 0x0f, 0x7e, 0xf9, 0x3d, 0xea,
0x80, 0x4f, 0xf3, 0xf6, 0x98, 0x03, 0x96, 0xbd, 0x07, 0x7d, 0x07, 0x82, 0x5f,
0x2c, 0x84, 0x07, 0x93, 0xd8, 0xb1, 0x5d, 0x31, 0x67, 0xec, 0x9f, 0x3d, 0xe2,
0x8e, 0x89, 0x60, 0x2b, 0x41, 0x91, 0xa2, 0xc8, 0x68, 0x3f, 0xf9, 0xc1, 0x28,
0x19, 0x47, 0x45, 0x27, 0x8e, 0x0f, 0xbe, 0x59, 0xab, 0x92, 0xf0, 0x36, 0xac,
0x48, 0x0f, 0x78, 0x31, 0x38, 0x3f, 0xb0, 0xea, 0xa7, 0xda, 0x02, 0xe0, 0xc3,
0x31, 0x35, 0x24, 0x41, 0x50, 0xa1, 0x9f, 0x6a, 0xd4, 0x1c, 0x68, 0x69, 0xbb,
0xb0, 0x26, 0x12, 0xd3, 0xb5, 0xdb, 0xaa, 0x8a, 0xc6, 0xf4, 0x07, 0x0b, 0x1a,
0x25, 0x56, 0x58, 0x2c, 0x16, 0x8f, 0xa5, 0x35, 0x1c, 0x95, 0xe1, 0x20, 0x4c,
0x8f, 0x1d, 0x57, 0xe6, 0x52, 0x26, 0x62, 0x49, 0xec, 0x4d, 0xc6, 0x83, 0x64,
0xbb, 0x16, 0x72, 0x3e, 0x99, 0x0e, 0xcc, 0x07, 0xa9, 0x58, 0x17, 0xd6, 0x69,
0x1a, 0xb2, 0x0c, 0x89, 0x9f, 0x05, 0xcc, 0xa3, 0x58, 0x0e, 0xac, 0x07, 0xb6,
0x03, 0xfb, 0x41, 0x21, 0xe6, 0x40, 0xf4, 0x62, 0xcc, 0x79, 0x30, 0x6e, 0x76,
0x1d, 0x70, 0x44, 0x0d, 0xad, 0x59, 0xe8, 0x3e, 0x48, 0x98, 0x84, 0x52, 0x99,
0xd6, 0x73, 0xc0, 0x55, 0x79, 0x0f, 0x7c, 0xed, 0xcc, 0x0f, 0x02, 0x07, 0xfd,
0xb6, 0xe0, 0x01, 0x43, 0x27, 0x92, 0xd6, 0x2d, 0x83, 0x56, 0xa5, 0x50, 0x25,
0x9b, 0xc6, 0x1e, 0x65, 0x26, 0xef, 0x49, 0xc2, 0xb2, 0x21, 0xa3, 0x56, 0xcb,
0xf5, 0x95, 0xda, 0xad, 0x38, 0x08, 0x93, 0xcc, 0x23, 0x07, 0xd1, 0x83, 0xac,
0x2c, 0x76, 0xe0, 0x51, 0xc7, 0x0f, 0x12, 0x07, 0x62, 0x49, 0x45, 0xc4, 0xd7,
0x3b, 0xc5, 0xc9, 0x83, 0x72, 0xcc, 0xee, 0x4b, 0xc1, 0x22, 0x4d, 0xac, 0x5c,
0xba, 0xcc, 0x41, 0xf6, 0xa0, 0xaa, 0xad, 0xc4, 0xa6, 0xa4, 0x61, 0x3b, 0xcf,
0x5b, 0x45, 0x84, 0x1a, 0xc9, 0x33, 0xe5, 0xca, 0xc1, 0x22, 0x7f, 0x30, 0xd0,
0x1e, 0x55, 0xe9, 0xac, 0xbc, 0x1f, 0xb8, 0x70, 0x50, 0x3c, 0x28, 0x1d, 0x94,
0x0f, 0x2a, 0x07, 0x62, 0x8c, 0x91, 0xd8, 0x30, 0x14, 0x63, 0x68, 0xaa, 0x07,
0x2e, 0xf1, 0x20, 0x74, 0xf5, 0xd8, 0x70, 0xac, 0x11, 0xeb, 0x71, 0xf8, 0xb2,
0x12, 0xac, 0xc6, 0x11, 0x12, 0xc3, 0xe8, 0xaf, 0x1d, 0x8c, 0xc6, 0xfa, 0x11,
0x67, 0x3c, 0x36, 0x70, 0xb0, 0x62, 0x19, 0x83, 0xb4, 0xcb, 0x88, 0xf9, 0xa7,
0x21, 0x2b, 0xe0, 0x20, 0x68, 0x9e, 0xd5, 0x4e, 0xbb, 0x86, 0x21, 0xf1, 0x69,
0x27, 0x62, 0xbd, 0xfa, 0xc9, 0xd8, 0x54, 0x2c, 0x22, 0x54, 0x9b, 0xc3, 0x86,
0xc6, 0x41, 0x33, 0x26, 0xb1, 0xf7, 0x61, 0x5c, 0x05, 0x28, 0xd3, 0x24, 0xda,
0x88, 0x71, 0x90, 0xe4, 0x2c, 0xa4, 0x57, 0xed, 0xd0, 0xc1, 0xf0, 0xc1, 0x0c,
0x34, 0xb3, 0xb1, 0x91, 0x83, 0x62, 0xfb, 0x8d, 0x13, 0xb4, 0x73, 0xb1, 0xb1,
0x76, 0x6d, 0x07, 0x13, 0x07, 0x76, 0xf9, 0x24, 0xa8, 0xa9, 0x03, 0xa6, 0xae,
0x49, 0xbc, 0xa6, 0x0f, 0x66, 0x80, 0xe7, 0x63, 0x0b, 0xb1, 0xac, 0x96, 0x6f,
0x68, 0xda, 0xa3, 0x86, 0x39, 0x27, 0xd3, 0xe1, 0x92, 0x2f, 0xd2, 0xa3, 0x3e,
0x26, 0x5b, 0x02, 0xb5, 0x82, 0xb3, 0x37, 0x60, 0x17, 0xe2, 0xcc, 0x8b, 0x68,
0x96, 0x63, 0xcc, 0x38, 0x23, 0xbe, 0x0c, 0xc9, 0x0a, 0x34, 0x4a, 0xfa, 0x14,
0x9f, 0x3d, 0x98, 0x6b, 0xc7, 0x41, 0x11, 0x62, 0x8c, 0x3d, 0x36, 0xa7, 0x76,
0xe1, 0x60, 0xf1, 0x20, 0x69, 0x5a, 0xc0, 0x33, 0xe5, 0xd2, 0xc1, 0xf2, 0xc1,
0x0a, 0xa9, 0x8d, 0x15, 0x67, 0x1c, 0x52, 0xf1, 0xb8, 0x9d, 0x79, 0x28, 0x21,
0x6d, 0xed, 0x3a, 0x64, 0x1d, 0x72, 0xe2, 0x64, 0xa6, 0xc4, 0xa9, 0x43, 0xf6,
0x21, 0xe7, 0x90, 0x7b, 0xf8, 0xcf, 0xf9, 0xcd, 0x3b, 0xec, 0x86, 0xb4, 0x07,
0x85, 0x47, 0x6c, 0xf9, 0x87, 0x4d, 0x69, 0x77, 0xbc, 0xb7, 0x2d, 0x8b, 0xff,
0x6e, 0xdb, 0x07, 0xa9, 0xe0, 0x50, 0x78, 0xc8, 0x17, 0x8b, 0x0e, 0xc5, 0x24,
0x96, 0x04, 0x50, 0x63, 0xaa, 0x4a, 0xa5, 0x87, 0xbd, 0x71, 0x6e, 0x67, 0x4f,
0x09, 0x9b, 0x65, 0x87, 0x29, 0x89, 0xfc, 0x50, 0x71, 0x28, 0x88, 0x8b, 0xe2,
0x05, 0x8c, 0x9b, 0xf2, 0xb0, 0x2f, 0x2e, 0x44, 0x3c, 0xc9, 0x2f, 0x31, 0xc5,
0xe0, 0xa4, 0x28, 0x2a, 0x44, 0x51, 0xff, 0x92, 0x9b, 0xa6, 0xc3, 0xe9, 0x40,
0xc9, 0x68, 0x2f, 0x2d, 0x91, 0xea, 0xec, 0x7d, 0xf2, 0x5f, 0xbe, 0xba, 0x11,
0xcb, 0xe3, 0x1a, 0x62, 0xa1, 0x8a, 0xeb, 0x0f, 0x67, 0xdd, 0x33, 0x6e, 0xc3,
0xa1, 0x11, 0x96, 0x26, 0x94, 0x01, 0xba, 0x07, 0x95, 0xf1, 0xa8, 0x0e, 0xab,
0x35, 0x6e, 0xee, 0xc4, 0xb5, 0x1c, 0x4e, 0xd2, 0xbf, 0x35, 0x6a, 0xe1, 0x6b,
0x3d, 0x1c, 0x24, 0x7b, 0xab, 0x39, 0x6e, 0x83, 0x85, 0x25, 0xae, 0x8b, 0x4b,
0x24, 0xfa, 0xb8, 0x23, 0x6e, 0x8f, 0xdb, 0xe2, 0x26, 0xba, 0x76, 0x23, 0xc1,
0xd6, 0xb8, 0xe3, 0xd0, 0x09, 0x1b, 0xd7, 0xa1, 0x1b, 0x70, 0x0e, 0xeb, 0xc1,
0xfe, 0x53, 0xe6, 0x1e, 0x42, 0x7b, 0x3b, 0x12, 0x1f, 0x4d, 0xf9, 0x81, 0x03,
0x84, 0x0e, 0x1e, 0x86, 0x08, 0x0e, 0x03, 0x46, 0x50, 0x12, 0x87, 0x9e, 0xb8,
0x13, 0x91, 0xdd, 0x28, 0x93, 0xbe, 0xd8, 0xa1, 0x8b, 0xd4, 0x12, 0xa5, 0xfd,
0xe2, 0x04, 0x1b, 0x88, 0x2c, 0x79, 0x98, 0x3a, 0x4c, 0x1f, 0x66, 0x20, 0xc9,
0x76, 0xe2, 0x4f, 0x19, 0x72, 0xa0, 0xbd, 0xf1, 0x3c, 0xa0, 0x42, 0x5d, 0x20,
0x72, 0x1f, 0xb1, 0xf6, 0x13, 0x58, 0x3c, 0x2c, 0xd1, 0xb6, 0xe5, 0xc3, 0x0a,
0xa8, 0xea, 0x61, 0x28, 0x5e, 0x3b, 0x0c, 0x12, 0x5d, 0x20, 0xde, 0xdf, 0xee,
0xa1, 0xc3, 0xba, 0x4d, 0x4d, 0xb7, 0x30, 0x01, 0x5c, 0x3f, 0x6c, 0x1c, 0x0e,
0x1e, 0x0e, 0xd1, 0x5e, 0xc3, 0xc0, 0x23, 0xed, 0x4c, 0xa1, 0x19, 0x3d, 0x1c,
0x03, 0x15, 0xee, 0x8c, 0xe0, 0x38, 0x6d, 0x33, 0x71, 0x18, 0x85, 0x2c, 0xd6,
0xce, 0x1f, 0x92, 0xe6, 0xff, 0x42, 0x56, 0x44, 0x93, 0x8c, 0x37, 0x0f, 0xa7,
0x0f, 0xfb, 0x71, 0xbb, 0x4d, 0xc5, 0xe3, 0x3f, 0x8d, 0xfb, 0x0c, 0xed, 0x37,
0x0b, 0x9c, 0x86, 0x7c, 0xee, 0xb0, 0x28, 0xcd, 0xc4, 0x17, 0xc0, 0xcd, 0xa3,
0xe4, 0xe2, 0x59, 0x62, 0x9b, 0x07, 0x5c, 0x3c, 0x5c, 0x82, 0xa4, 0xd0, 0xae,
0xdb, 0xd8, 0x85, 0xf1, 0x5b, 0x3e, 0xac, 0x02, 0x56, 0x4c, 0x2b, 0x87, 0x3c,
0x95, 0x52, 0xdd, 0xad, 0x1a, 0x97, 0x31, 0x8e, 0xd0, 0xc6, 0x1f, 0x63, 0x4f,
0xc6, 0xcf, 0xad, 0x2c, 0xc5, 0xd9, 0x5e, 0x8b, 0xa3, 0x0c, 0x59, 0x8f, 0x8a,
0x79, 0xd4, 0x05, 0x3d, 0x1f, 0xf3, 0x8f, 0x63, 0x09, 0xcb, 0x59, 0xa0, 0xa3,
0x9a, 0x0c, 0xb9, 0x21, 0x98, 0x9c, 0xd4, 0xd1, 0x8f, 0x2c, 0x2a, 0xf1, 0x69,
0x29, 0x9b, 0xa6, 0xfb, 0xe3, 0x1c, 0x50, 0xdc, 0x23, 0xde, 0x11, 0x03, 0xf7,
0xc4, 0xee, 0xa3, 0x5a, 0xbc, 0x1a, 0x1f, 0x40, 0xa4, 0x21, 0x70, 0x3d, 0x47,
0xfc, 0xa3, 0xbf, 0x5a, 0x50, 0x21, 0x33, 0xa7, 0x8f, 0xf0, 0x31, 0xac, 0x35,
0xb7, 0xb1, 0xf7, 0x28, 0x62, 0x66, 0xe2, 0xae, 0x24, 0x38, 0x62, 0xc2, 0x56,
0x78, 0x54, 0x8f, 0x37, 0xe2, 0x63, 0xfa, 0xce, 0xb7, 0x9c, 0x1e, 0x11, 0x6c,
0x87, 0x49, 0x9e, 0x43, 0xf1, 0xc1, 0xf8, 0x32, 0x72, 0x98, 0x6a, 0xcf, 0x7d,
0x48, 0xc5, 0x47, 0x69, 0xdc, 0x9c, 0x46, 0xda, 0x6b, 0xe3, 0x48, 0x46, 0x22,
0x8e, 0xc5, 0x87, 0x3c, 0xf2, 0xa3, 0xd1, 0xb8, 0x82, 0x70, 0xca, 0x23, 0x15,
0xb0, 0xfa, 0x68, 0x1c, 0x16, 0x5c, 0xe7, 0x44, 0x5c, 0xef, 0x9e, 0xa4, 0xfb,
0x52, 0x03, 0xb9, 0xf6, 0x48, 0x77, 0xa4, 0x3f, 0x32, 0x1c, 0x19, 0x41, 0x9b,
0x50, 0x24, 0x52, 0x83, 0x5b, 0xe0, 0x68, 0xc6, 0xa7, 0x61, 0xc3, 0x57, 0x49,
0xa5, 0x33, 0x71, 0xa5, 0xd2, 0xea, 0xe3, 0xf9, 0x66, 0xa4, 0x73, 0x71, 0xf3,
0x51, 0x17, 0x72, 0xeb, 0x55, 0x89, 0x48, 0x5e, 0x05, 0xf2, 0x0e, 0x40, 0xac,
0xb7, 0x90, 0x5a, 0xac, 0x47, 0x73, 0xba, 0xbf, 0x47, 0x68, 0xd8, 0x3a, 0xef,
0x56, 0x91, 0x95, 0xd3, 0x87, 0xbb, 0x62, 0xd6, 0x45, 0xdf, 0x9d, 0x10, 0xd3,
0x06, 0x6b, 0xfb, 0x91, 0xe3, 0x28, 0x65, 0x33, 0xab, 0x9d, 0xa0, 0x5d, 0x47,
0x1e, 0xa5, 0xfb, 0x68, 0x84, 0x7e, 0x1e, 0xf1, 0x40, 0xe2, 0x45, 0xb1, 0x08,
0x47, 0x75, 0x02, 0x95, 0xc3, 0xd7, 0x59, 0x05, 0x47, 0xfe, 0xa3, 0x00, 0xe4,
0x0b, 0xf1, 0xc5, 0x78, 0x88, 0xbc, 0x2b, 0x08, 0x82, 0x5b, 0x8a, 0xcf, 0xfa,
0x7b, 0x03, 0xe1, 0xa3, 0x10, 0xe8, 0xc8, 0xd1, 0x4a, 0x7c, 0x39, 0x1e, 0x3d,
0x8a, 0x1d, 0x39, 0x24, 0xf1, 0xa3, 0xc4, 0x11, 0x23, 0x41, 0xff, 0x4e, 0x9b,
0xa0, 0x12, 0xc9, 0xa3, 0xae, 0x44, 0xea, 0xc8, 0xe8, 0x92, 0xe8, 0x39, 0x09,
0x76, 0x82, 0x09, 0x4d, 0x9a, 0xe4, 0xcc, 0x4d, 0xf0, 0x40, 0x67, 0x8e, 0xba,
0x69, 0xdb, 0xde, 0x44, 0x0f, 0x28, 0x7e, 0xa2, 0x0f, 0xb0, 0x2a, 0x1a, 0xb5,
0x0a, 0x80, 0x17, 0x14, 0x33, 0x62, 0x39, 0x6a, 0x14, 0x26, 0x16, 0xed, 0x19,
0x77, 0xf6, 0x48, 0x94, 0xe8, 0xc3, 0xad, 0x2b, 0x77, 0x94, 0x3f, 0x2a, 0x1c,
0x89, 0x13, 0x46, 0xb7, 0x2c, 0xc1, 0x08, 0x8a, 0x82, 0xc5, 0x23, 0xa1, 0x76,
0xda, 0x2e, 0x87, 0x7d, 0x4e, 0xc6, 0xb2, 0x2e, 0x08, 0x15, 0x09, 0xb6, 0x5b,
0xa8, 0x2a, 0xa1, 0x96, 0xa0, 0xa5, 0x7c, 0x54, 0x01, 0x1e, 0x43, 0x0b, 0xab,
0x47, 0xb5, 0xa3, 0xfe, 0xa3, 0x81, 0xa3, 0x31, 0xaf, 0x4a, 0xe9, 0x55, 0xd6,
0x8f, 0x94, 0xb0, 0x6f, 0x1c, 0x0d, 0x1e, 0xa9, 0x12, 0x43, 0x47, 0x86, 0xc4,
0xf0, 0x51, 0x8d, 0x9c, 0x8b, 0x23, 0x47, 0x94, 0x75, 0xf4, 0x48, 0x20, 0x57,
0x93, 0xac, 0xc6, 0x8e, 0x7a, 0x5c, 0xe3, 0x47, 0x76, 0xcb, 0xc4, 0xd1, 0xe4,
0x91, 0x86, 0x48, 0xa6, 0x8e, 0x9a, 0x88, 0x37, 0x7d, 0xa4, 0x05, 0x27, 0xc4,
0x3e, 0xa6, 0x4b, 0xcc, 0x1c, 0xe9, 0x41, 0xcf, 0x1e, 0x19, 0x01, 0x67, 0x6c,
0x73, 0xed, 0x91, 0x4c, 0x98, 0x13, 0xf3, 0x47, 0x96, 0x76, 0xfe, 0x47, 0xd2,
0x84, 0x84, 0xf8, 0x2d, 0x1e, 0x59, 0x13, 0x26, 0xc5, 0xd2, 0xd1, 0x32, 0xf4,
0x1c, 0xd7, 0x4a, 0xbb, 0xa7, 0xd5, 0x0a, 0x17, 0xdb, 0xea, 0x71, 0xd9, 0xa0,
0x67, 0x1c, 0x4b, 0xf5, 0x76, 0x11, 0xf3, 0xd8, 0x9e, 0xe8, 0x3a, 0x66, 0x1d,
0xe3, 0x6e, 0x95, 0xa0, 0x8e, 0x27, 0xbd, 0x6c, 0x50, 0x45, 0x27, 0xe7, 0x98,
0x7b, 0xec, 0x4e, 0x2c, 0x8b, 0xf8, 0x46, 0x57, 0xc2, 0x99, 0x30, 0x2b, 0xa2,
0x38, 0x43, 0xfc, 0x09, 0x6f, 0x82, 0x77, 0xec, 0x49, 0x70, 0xfc, 0x35, 0x65,
0x37, 0xac, 0x7a, 0x8e, 0xe7, 0x75, 0xbe, 0x84, 0xd7, 0xa6, 0x27, 0xb3, 0x80,
0x7f, 0x6c, 0xb4, 0x87, 0x12, 0x41, 0x52, 0x6f, 0xef, 0x71, 0xdf, 0x71, 0x00,
0x54, 0x38, 0xd1, 0xaf, 0x14, 0xc0, 0x52, 0x7c, 0x4c, 0xce, 0xc3, 0xe3, 0x48,
0x62, 0xc9, 0x95, 0xd1, 0x89, 0x8e, 0x25, 0xc7, 0xd1, 0xc4, 0xbc, 0x53, 0x7a,
0x2c, 0x3b, 0x96, 0x43, 0x63, 0xb2, 0x73, 0xe8, 0xb9, 0xa0, 0x38, 0x16, 0x92,
0x19, 0x14, 0x4b, 0xf4, 0xc8, 0xfe, 0x9e, 0x59, 0x52, 0x83, 0xf2, 0x98, 0x8f,
0xf9, 0xa4, 0x3a, 0x56, 0x1f, 0x6b, 0x60, 0xaf, 0x3d, 0x9e, 0x95, 0xb2, 0xc9,
0x8c, 0xd0, 0x1d, 0xeb, 0x8f, 0x0d, 0xc7, 0xc6, 0x63, 0x13, 0xa4, 0xf1, 0x44,
0x5c, 0xa3, 0xf6, 0x68, 0xc8, 0x13, 0xc5, 0x8a, 0x28, 0x93, 0x30, 0x43, 0xd6,
0xb0, 0x58, 0x8e, 0xad, 0xc0, 0x49, 0x7a, 0xb4, 0x6d, 0xc7, 0xf6, 0x63, 0xc7,
0xf1, 0xac, 0xd8, 0x79, 0xec, 0x3a, 0x76, 0x1f, 0x7b, 0x8e, 0x7b, 0x93, 0xe9,
0x84, 0xf7, 0xd8, 0x07, 0x0b, 0xa1, 0xc3, 0x0f, 0x98, 0x82, 0x5d, 0xe0, 0x38,
0x91, 0x08, 0x1e, 0x2f, 0x60, 0x0e, 0xe7, 0x12, 0x21, 0x92, 0x77, 0x98, 0xc0,
0xc8, 0x71, 0x25, 0xd1, 0x48, 0x94, 0x60, 0x91, 0xb5, 0x45, 0x8f, 0x63, 0xc7,
0xfd, 0x89, 0x9c, 0x2b, 0x7e, 0x9c, 0x38, 0x2e, 0x26, 0x92, 0xc7, 0xb5, 0xc4,
0x80, 0x3f, 0x81, 0x35, 0x9d, 0x3a, 0x8e, 0x99, 0xf3, 0xa4, 0xae, 0xf4, 0x71,
0x5e, 0x56, 0x4f, 0xf4, 0x1a, 0x6b, 0xa2, 0x72, 0x62, 0x4e, 0x3c, 0xd0, 0x9e,
0x73, 0x88, 0x22, 0xc2, 0xd8, 0x55, 0xdb, 0x11, 0x40, 0xe7, 0x8e, 0x3b, 0x5f,
0xa4, 0x25, 0x7e, 0x7a, 0x0f, 0x78, 0x3c, 0x9c, 0x98, 0x49, 0x34, 0x89, 0x64,
0x22, 0x51, 0x38, 0x2e, 0x1e, 0x97, 0x8e, 0xc7, 0x13, 0x73, 0xfe, 0xf2, 0xf1,
0x24, 0x91, 0x89, 0xe5, 0x95, 0x63, 0x11, 0x72, 0xab, 0x1e, 0x2f, 0xe8, 0x6a,
0xc7, 0xfd, 0x88, 0x31, 0x9f, 0x18, 0x22, 0x9a, 0x01, 0xd0, 0x63, 0x89, 0x42,
0xa2, 0x7e, 0xbc, 0x20, 0x9e, 0x4a, 0x4c, 0x27, 0x42, 0xb8, 0xe9, 0x36, 0x8e,
0xb9, 0x6a, 0xa5, 0x78, 0x24, 0x31, 0x97, 0x98, 0x4d, 0x48, 0x50, 0x37, 0xcf,
0xdc, 0x2f, 0x19, 0xa4, 0xeb, 0xb5, 0xe0, 0xce, 0x3c, 0x9a, 0xf8, 0xe5, 0x1e,
0x7f, 0x3c, 0x0c, 0xdd, 0x42, 0x62, 0xe4, 0x78, 0x39, 0xc1, 0x48, 0x42, 0xdb,
0x8e, 0x78, 0xac, 0xd3, 0x8e, 0x1f, 0x73, 0x92, 0xe3, 0xd6, 0xc5, 0xc4, 0x04,
0xf1, 0x9c, 0x3c, 0xa6, 0x92, 0x53, 0xc7, 0xf3, 0xe2, 0xe6, 0x71, 0x57, 0x92,
0x95, 0x9c, 0x86, 0x6c, 0x25, 0xc1, 0x84, 0xf5, 0xcc, 0xf1, 0xec, 0xf1, 0x80,
0xb2, 0x1b, 0xeb, 0x77, 0xee, 0x58, 0x26, 0x9d, 0x3f, 0x5e, 0x38, 0x4e, 0x89,
0xd8, 0xc9, 0xc5, 0x63, 0xb5, 0xa3, 0xf7, 0xa7, 0xf7, 0xde, 0x4b, 0xc7, 0xcb,
0xc7, 0x25, 0x67, 0x36, 0xc1, 0x4f, 0x0a, 0x93, 0x35, 0xef, 0xca, 0x31, 0x2f,
0x49, 0xde, 0xb1, 0x9d, 0x34, 0x6c, 0x7d, 0x49, 0xe6, 0x09, 0xfd, 0xdd, 0x22,
0x30, 0xeb, 0x64, 0x5c, 0x2f, 0x48, 0x26, 0xec, 0xd4, 0x09, 0xfb, 0x84, 0x73,
0xc2, 0x25, 0x1a, 0xde, 0x49, 0x37, 0xb0, 0x03, 0x6b, 0xb1, 0x27, 0xd9, 0x73,
0xc2, 0x27, 0x32, 0x51, 0xb2, 0xf7, 0x64, 0x51, 0xd5, 0x77, 0xe2, 0x31, 0x0a,
0x4e, 0x84, 0x27, 0x51, 0x61, 0x77, 0x92, 0x9b, 0x14, 0x9d, 0xa4, 0x4d, 0xe8,
0x29, 0xe8, 0x97, 0x12, 0x52, 0xcd, 0xaf, 0xb7, 0x11, 0xbb, 0x59, 0x97, 0x94,
0x9c, 0x64, 0x4c, 0xca, 0xa4, 0xf4, 0x44, 0x96, 0x94, 0x27, 0x65, 0x27, 0xfd,
0x5a, 0x55, 0x52, 0x9b, 0x94, 0x9f, 0x28, 0x4e, 0x14, 0x49, 0x4a, 0xa7, 0x3c,
0x51, 0x93, 0x8c, 0xa4, 0x49, 0xd5, 0xc9, 0x92, 0x77, 0xd1, 0xab, 0x46, 0x14,
0xcd, 0x89, 0x3e, 0x69, 0x48, 0xc6, 0x84, 0xda, 0x13, 0xdd, 0x89, 0xfe, 0xc4,
0x70, 0x62, 0x3c, 0x91, 0x24, 0x4d, 0x27, 0x66, 0x68, 0x2c, 0x27, 0x93, 0x72,
0xb6, 0xd0, 0x0a, 0xca, 0x76, 0x22, 0xc7, 0x89, 0xa1, 0x49, 0xda, 0x4f, 0x3a,
0x77, 0x85, 0xa4, 0x19, 0x91, 0x1c, 0x27, 0xce, 0x13, 0x47, 0x92, 0x7e, 0xf3,
0x72, 0xe2, 0x26, 0x5a, 0x67, 0xd2, 0x73, 0xe2, 0x3d, 0xf1, 0x81, 0xf6, 0x13,
0xde, 0x9e, 0x74, 0x25, 0x4d, 0x49, 0x1b, 0xac, 0x02, 0x27, 0x6e, 0x40, 0x4f,
0x32, 0x78, 0x12, 0x3a, 0x31, 0x26, 0x97, 0x34, 0xe1, 0x13, 0x6b, 0x32, 0x6e,
0x16, 0xab, 0xc4, 0x49, 0x59, 0xe7, 0x1b, 0xa7, 0x24, 0x2c, 0x1a, 0xe4, 0xa9,
0xdf, 0x9f, 0x0c, 0x24, 0x83, 0x24, 0x76, 0x22, 0x19, 0x39, 0x89, 0x27, 0xa3,
0x88, 0xb6, 0xec, 0x51, 0x20, 0x8f, 0x28, 0xa4, 0x36, 0x85, 0x94, 0xbc, 0xef,
0x0d, 0x25, 0x63, 0x90, 0x2b, 0xfd, 0x91, 0x64, 0x5c, 0x18, 0x4b, 0xc6, 0x4f,
0xbc, 0xc9, 0x70, 0x32, 0x95, 0xb4, 0x2a, 0x7c, 0xc9, 0x04, 0xa9, 0x3d, 0x79,
0x92, 0x02, 0xce, 0xf9, 0xd2, 0x27, 0x99, 0x93, 0xec, 0x49, 0x8f, 0x2f, 0x77,
0x92, 0x27, 0xf2, 0x2c, 0x89, 0x5c, 0x4c, 0x16, 0xc0, 0x15, 0x4f, 0x56, 0xd0,
0xa3, 0xf3, 0xfe, 0x52, 0xb2, 0x74, 0x52, 0x3e, 0xc9, 0x43, 0x93, 0x49, 0x56,
0x4e, 0xaa, 0x27, 0xe9, 0x64, 0x01, 0x74, 0xed, 0xa4, 0x1f, 0x36, 0x03, 0x27,
0x75, 0xba, 0xed, 0x42, 0x77, 0x03, 0x94, 0xd4, 0x3e, 0x78, 0x62, 0x57, 0x0c,
0x9d, 0x94, 0x93, 0xb9, 0xe4, 0xf0, 0x49, 0x85, 0xee, 0x83, 0x45, 0xc5, 0x0f,
0x2c, 0x6a, 0xbf, 0xad, 0x39, 0x19, 0x3d, 0x19, 0x82, 0x7c, 0xac, 0x9d, 0x1f,
0xb2, 0x1e, 0x3f, 0x99, 0x38, 0x99, 0x3c, 0x69, 0x10, 0xcb, 0xc1, 0x24, 0x4f,
0x5d, 0x4f, 0xf6, 0x27, 0x6b, 0xc9, 0xe1, 0x64, 0x35, 0x39, 0x9a, 0x9c, 0x3a,
0x69, 0x9e, 0x2c, 0x76, 0xbe, 0x0c, 0x9a, 0x3e, 0xf9, 0xe5, 0xeb, 0xcb, 0x93,
0xd9, 0x93, 0xb9, 0x93, 0x79, 0xc8, 0x16, 0x4e, 0x16, 0x4f, 0xc6, 0xe1, 0xbf,
0x72, 0x32, 0x96, 0x5c, 0x6a, 0xf7, 0x06, 0xb1, 0x63, 0x9c, 0x32, 0x4f, 0x31,
0xab, 0x4e, 0xc9, 0xfe, 0x8f, 0x9d, 0x66, 0x0a, 0x16, 0x13, 0xc9, 0x81, 0xe4,
0x12, 0x72, 0x99, 0x6c, 0xcf, 0xdc, 0xe4, 0x74, 0x72, 0x36, 0xd9, 0x4c, 0xce,
0x25, 0x59, 0xb0, 0xa1, 0x4e, 0xd9, 0xc4, 0x92, 0x73, 0x3a, 0x9f, 0x5c, 0x48,
0x0e, 0xa2, 0xa7, 0x97, 0x92, 0x8b, 0x49, 0x03, 0xf6, 0xb8, 0x3e, 0x63, 0xbf,
0x78, 0x49, 0xcc, 0x3d, 0x5d, 0x4e, 0xf2, 0x4e, 0x0d, 0xf4, 0x9c, 0xf6, 0x1a,
0x57, 0x92, 0xdd, 0xa7, 0x96, 0x61, 0x46, 0xaa, 0xa4, 0xe8, 0x39, 0x65, 0xa6,
0xf8, 0xa7, 0xbd, 0xc4, 0x7b, 0xcc, 0xd8, 0x07, 0x2c, 0x38, 0xed, 0x4a, 0x09,
0x09, 0xcf, 0x4a, 0xa9, 0x65, 0x54, 0x0a, 0x4f, 0x67, 0x29, 0x4e, 0x2a, 0x41,
0xbf, 0x13, 0xf4, 0x29, 0x45, 0xd0, 0x95, 0x70, 0x03, 0x16, 0x03, 0x6b, 0x3d,
0x83, 0x3a, 0x6e, 0x4a, 0x72, 0x2a, 0x3d, 0x95, 0x81, 0x93, 0x9f, 0x8e, 0x1b,
0x75, 0xa3, 0x65, 0x9c, 0xb7, 0x83, 0x5a, 0xc5, 0xa9, 0x4f, 0xcd, 0x83, 0xaf,
0xf2, 0x54, 0x75, 0xaa, 0x3e, 0x75, 0x98, 0x35, 0xa7, 0x1c, 0xb7, 0x16, 0x36,
0x13, 0x88, 0xa3, 0x3b, 0xe5, 0xa7, 0xf4, 0xa0, 0xbb, 0xa1, 0xef, 0x4d, 0x91,
0x27, 0xd7, 0x94, 0xe1, 0x94, 0xbe, 0x79, 0xa7, 0xfe, 0xea, 0x21, 0xe3, 0xa9,
0xc8, 0x6d, 0x82, 0x54, 0x81, 0xac, 0xcd, 0x44, 0x9b, 0x27, 0xe7, 0x73, 0xc5,
0x69, 0x69, 0x67, 0x99, 0xb2, 0x9e, 0x8a, 0x53, 0x32, 0xbd, 0x06, 0x7b, 0xae,
0x30, 0xa5, 0x48, 0xc9, 0x3b, 0x77, 0x10, 0x51, 0xca, 0x4a, 0xf6, 0x59, 0xdb,
0xa9, 0xfd, 0xd4, 0x71, 0xea, 0x3c, 0xcd, 0xfb, 0x24, 0x29, 0x69, 0x4a, 0x99,
0x1a, 0xb4, 0xc9, 0x52, 0x12, 0x55, 0xde, 0x48, 0x66, 0x6f, 0x4a, 0x8a, 0x2c,
0x27, 0xcd, 0xbf, 0xae, 0x33, 0x17, 0xe2, 0xba, 0x49, 0x4d, 0x55, 0x67, 0x6f,
0xba, 0xf3, 0x0b, 0x04, 0x7a, 0xd3, 0xd3, 0xce, 0xdc, 0xea, 0x3d, 0xf5, 0x01,
0x4f, 0x7b, 0xfc, 0xa7, 0x9a, 0x14, 0x43, 0x3c, 0x68, 0x09, 0x9c, 0x06, 0x89,
0xb5, 0x15, 0x39, 0x87, 0x4e, 0xa5, 0x16, 0x7d, 0xca, 0x96, 0x32, 0xa6, 0x1c,
0x29, 0x0b, 0x78, 0x73, 0x6a, 0xcc, 0x11, 0x3e, 0xd5, 0xa6, 0x96, 0xc5, 0xea,
0xd4, 0x84, 0x6c, 0xca, 0x2c, 0x4f, 0x45, 0x4e, 0xa3, 0xa7, 0xaa, 0x94, 0x54,
0x95, 0x31, 0xc6, 0x4e, 0x15, 0x7a, 0x53, 0x2a, 0x4c, 0xb2, 0x9c, 0x94, 0x39,
0x25, 0xbf, 0x3f, 0x7d, 0xc4, 0x11, 0x75, 0x40, 0xc2, 0x30, 0xb8, 0x52, 0x7e,
0x44, 0x72, 0xa7, 0x12, 0xa7, 0xcb, 0x8a, 0xe4, 0x69, 0x20, 0xc5, 0xd4, 0x34,
0x54, 0x7f, 0xd9, 0xa4, 0x4e, 0xd3, 0xa7, 0x6c, 0x9d, 0x2e, 0xb5, 0xac, 0xf1,
0xa6, 0x32, 0xa7, 0x59, 0x92, 0x47, 0x52, 0xe3, 0x4b, 0x59, 0x85, 0xb9, 0xd3,
0xfc, 0xa9, 0x33, 0x55, 0x20, 0x92, 0xe2, 0x29, 0x0f, 0x73, 0xa7, 0x44, 0xe8,
0x32, 0x60, 0xe5, 0x74, 0xea, 0xe7, 0x33, 0x4a, 0xfe, 0x6b, 0xbd, 0x9e, 0x14,
0x47, 0x58, 0x3d, 0xad, 0x9d, 0x5a, 0x70, 0xc3, 0xec, 0x6f, 0x8f, 0xe7, 0x4f,
0xdf, 0x28, 0x0e, 0x9c, 0xd6, 0x49, 0x94, 0xc6, 0xe9, 0x24, 0x22, 0x0e, 0x9e,
0x46, 0x9d, 0xa1, 0x54, 0x1e, 0xeb, 0x6b, 0xe8, 0x74, 0xf8, 0x74, 0xe4, 0x74,
0x14, 0xba, 0x31, 0xa2, 0xef, 0x36, 0x8f, 0x9f, 0x4e, 0x9c, 0xf6, 0x68, 0xc2,
0xa9, 0xc9, 0xd3, 0x68, 0x2a, 0x88, 0xfc, 0xa7, 0x4e, 0x9b, 0xa7, 0xd3, 0xa7,
0x25, 0xf4, 0xa2, 0xce, 0x3a, 0x43, 0x6c, 0x66, 0x4f, 0xb3, 0xa6, 0xdf, 0xdb,
0x3c, 0x77, 0x3a, 0x7f, 0xba, 0xe8, 0xf6, 0x6b, 0x8b, 0xf0, 0x28, 0xa4, 0x16,
0x4e, 0x17, 0x4f, 0xe7, 0x48, 0xed, 0x4b, 0xa7, 0x2b, 0x98, 0xf1, 0xcb, 0xa7,
0x2b, 0xa7, 0xa9, 0x94, 0x4a, 0xcf, 0x38, 0xc3, 0xbd, 0xdd, 0x2e, 0x72, 0x30,
0xcf, 0xba, 0x40, 0xb1, 0xce, 0x12, 0xb0, 0xa6, 0xce, 0x72, 0x26, 0xf6, 0x19,
0x99, 0xfd, 0x67, 0x73, 0xda, 0x6c, 0x8a, 0x0b, 0x5a, 0x89, 0xd9, 0x10, 0x4f,
0x65, 0x52, 0x3c, 0xd0, 0x11, 0xf4, 0x73, 0xf7, 0x59, 0xcf, 0x59, 0x0c, 0xb6,
0x0c, 0x05, 0xff, 0xac, 0xf7, 0x2c, 0x47, 0x7a, 0xbc, 0xef, 0x2c, 0x97, 0xea,
0xf1, 0xfb, 0xd5, 0x32, 0x4b, 0x3a, 0x25, 0x38, 0xcb, 0x1a, 0x85, 0x67, 0x32,
0x55, 0xd5, 0xd0, 0x2f, 0xd2, 0x9a, 0x92, 0x29, 0x9b, 0x4c, 0x74, 0x26, 0x3e,
0x93, 0x90, 0xa8, 0x0e, 0xd4, 0x1f, 0xb0, 0xe6, 0x53, 0x7f, 0xe7, 0x5a, 0x40,
0xf6, 0xd2, 0xb3, 0x12, 0x24, 0x95, 0x94, 0x0c, 0x36, 0x0a, 0x73, 0x23, 0x25,
0x3f, 0xab, 0x82, 0x57, 0x9c, 0xf5, 0x77, 0xec, 0x94, 0x67, 0x26, 0xd7, 0x94,
0x55, 0x75, 0x36, 0x90, 0x52, 0x9f, 0x69, 0xce, 0xb4, 0x67, 0x7c, 0xfa, 0x96,
0xe8, 0xf4, 0xa9, 0xa4, 0xba, 0x33, 0xfa, 0xef, 0x0e, 0xce, 0xfa, 0x30, 0xbb,
0x6b, 0xf0, 0x31, 0xd0, 0x92, 0x72, 0xca, 0x08, 0xca, 0x84, 0x32, 0x27, 0xa5,
0xff, 0x8e, 0xef, 0xcc, 0x72, 0x36, 0x20, 0xb2, 0x9e, 0xd5, 0x61, 0x65, 0x3b,
0xb3, 0x9f, 0xb9, 0x7c, 0xc3, 0xa4, 0x0e, 0xc7, 0x99, 0x93, 0xf8, 0x68, 0x30,
0x8b, 0xa7, 0x52, 0x2e, 0xd0, 0xee, 0xb3, 0x91, 0x94, 0x07, 0x78, 0x30, 0x35,
0x91, 0xf2, 0xd2, 0xf1, 0x22, 0xb0, 0xf5, 0x81, 0xf6, 0xa3, 0x04, 0x50, 0x82,
0x67, 0xa1, 0xb3, 0x51, 0xc8, 0x26, 0x53, 0xe1, 0xb3, 0x08, 0x78, 0xb3, 0x73,
0x08, 0xb7, 0x97, 0xe8, 0x59, 0x8c, 0xb6, 0x1f, 0x4a, 0xc5, 0xcf, 0xc6, 0xe8,
0x36, 0x38, 0xc9, 0xbe, 0x97, 0x38, 0x9b, 0x50, 0x27, 0x89, 0x36, 0x67, 0xfc,
0x7d, 0xd4, 0x52, 0x44, 0x3e, 0x9b, 0x4a, 0x03, 0x67, 0xce, 0xb2, 0x67, 0xb9,
0xb3, 0x3c, 0x1d, 0x87, 0x8d, 0xa8, 0x85, 0xb3, 0xe2, 0x59, 0xe9, 0xac, 0x0c,
0x49, 0xe5, 0xac, 0x7a, 0x56, 0x03, 0xee, 0xa7, 0xb5, 0x4d, 0xd4, 0x50, 0xa4,
0xdf, 0xa3, 0x0e, 0x40, 0x36, 0x4d, 0xd7, 0x58, 0x3f, 0x6b, 0x80, 0x9b, 0x01,
0xe7, 0xc7, 0x0e, 0xc3, 0x34, 0x0e, 0x82, 0x1b, 0x3a, 0xfb, 0xe9, 0x6f, 0x3d,
0x90, 0xd1, 0x30, 0xf8, 0x91, 0xb3, 0xe5, 0xd4, 0xcf, 0x79, 0x8c, 0x9e, 0x8d,
0x9d, 0x8d, 0x9f, 0xc9, 0x34, 0x0b, 0x90, 0xce, 0x13, 0xcd, 0xc4, 0xd9, 0xe4,
0x99, 0xd8, 0x31, 0x05, 0xdb, 0xe6, 0x99, 0xcc, 0x3e, 0xdd, 0x8e, 0x8a, 0x32,
0x7b, 0x26, 0xb2, 0x2d, 0xa6, 0xe6, 0x40, 0xcd, 0x9f, 0x2d, 0xc1, 0x6e, 0xcc,
0xb5, 0x70, 0x66, 0x73, 0x74, 0xe1, 0xbc, 0x9d, 0x40, 0xdb, 0x82, 0x9e, 0xc5,
0x9f, 0xea, 0x72, 0x61, 0x96, 0x50, 0xe9, 0x95, 0xd4, 0xd2, 0xd9, 0xf2, 0xd9,
0x4a, 0xbb, 0x77, 0x7d, 0x1c, 0xec, 0x09, 0x8c, 0xf3, 0x2e, 0x40, 0x16, 0x0a,
0xf3, 0xbc, 0xeb, 0x9c, 0x75, 0x4e, 0x9d, 0x17, 0x4d, 0xec, 0x73, 0xcc, 0xbd,
0x73, 0xee, 0x39, 0x13, 0x52, 0x43, 0x8a, 0x07, 0xae, 0xfb, 0x9c, 0xdd, 0xb6,
0x4d, 0xff, 0xf4, 0x6e, 0x2e, 0xcd, 0x4f, 0x73, 0x6c, 0x7d, 0xe9, 0x9e, 0x73,
0xfe, 0x39, 0x4b, 0xc3, 0x83, 0xa6, 0xf7, 0xbc, 0x0f, 0x96, 0x5a, 0x99, 0x00,
0x50, 0x90, 0x16, 0x9e, 0x73, 0xd3, 0x12, 0x48, 0xc5, 0x69, 0xd1, 0xb9, 0x28,
0x2d, 0x3e, 0x27, 0xeb, 0x33, 0x2d, 0x01, 0x96, 0xa7, 0x27, 0xf4, 0xd2, 0x73,
0x59, 0x5a, 0x46, 0x64, 0xf2, 0x73, 0x15, 0x89, 0xaa, 0x38, 0x57, 0x9e, 0xab,
0xce, 0x3b, 0x5f, 0x10, 0xd3, 0x94, 0xe6, 0x5c, 0x0b, 0x4a, 0x87, 0xa2, 0x48,
0xeb, 0x01, 0x0d, 0xe7, 0xca, 0xf4, 0x78, 0xca, 0x78, 0x6e, 0x22, 0x7a, 0xf3,
0xb9, 0x26, 0xad, 0x86, 0xb7, 0x85, 0x70, 0xd6, 0xf3, 0xb9, 0x94, 0x36, 0x2d,
0x04, 0x6f, 0x3b, 0x4f, 0xa1, 0x07, 0xec, 0x44, 0xaa, 0x4b, 0xeb, 0xd3, 0xc6,
0xb4, 0x21, 0x6d, 0x4a, 0xaf, 0x88, 0x1d, 0xe7, 0x72, 0x95, 0xf3, 0xdc, 0x75,
0xbe, 0xe4, 0x16, 0xd0, 0x23, 0xef, 0x86, 0x8d, 0x5f, 0x89, 0x9d, 0xe2, 0xdc,
0x92, 0xf6, 0xd2, 0x75, 0xda, 0x11, 0x21, 0xec, 0xf2, 0x9d, 0x17, 0x64, 0x7e,
0x48, 0x02, 0xe7, 0xb6, 0xb4, 0x35, 0x1d, 0x75, 0x38, 0xd2, 0x32, 0x7a, 0x77,
0x71, 0xa5, 0x9d, 0xe9, 0xe0, 0x79, 0x08, 0x3a, 0xb5, 0x54, 0x4e, 0x6e, 0x36,
0x49, 0x7b, 0x98, 0xf6, 0x8d, 0x9c, 0xbb, 0xe8, 0xb3, 0xb5, 0x89, 0xd5, 0xee,
0x46, 0x24, 0xa1, 0x91, 0xdb, 0x9e, 0x39, 0x2e, 0x0f, 0xe8, 0x28, 0xb1, 0x8a,
0xd1, 0xb6, 0xf1, 0x73, 0x6f, 0xda, 0x07, 0x69, 0x02, 0xbc, 0xd2, 0x9d, 0x8b,
0xd9, 0x8d, 0x49, 0x50, 0x5e, 0x9c, 0x09, 0x49, 0xec, 0x57, 0x35, 0xa7, 0xc5,
0x99, 0x22, 0x96, 0x69, 0x40, 0x9f, 0x2d, 0x73, 0x6e, 0xc2, 0xf3, 0x78, 0x20,
0x1d, 0xd4, 0x66, 0xc1, 0x07, 0xd3, 0xb9, 0x73, 0x39, 0x56, 0x5a, 0xfe, 0x3c,
0x2a, 0xf7, 0x19, 0x0b, 0xe7, 0x45, 0xfa, 0x49, 0x2f, 0x94, 0x36, 0x6b, 0x1c,
0x96, 0xe2, 0x79, 0x46, 0xa3, 0x40, 0xfd, 0xa5, 0xf3, 0xf2, 0x79, 0x85, 0xc4,
0x08, 0xa3, 0x9e, 0x65, 0x72, 0x5f, 0x99, 0x15, 0x65, 0x91, 0x73, 0x15, 0xd2,
0x58, 0xba, 0x76, 0x1e, 0x49, 0xc7, 0xd3, 0x2a, 0x7f, 0x14, 0xda, 0xfe, 0xf3,
0x01, 0xc8, 0x16, 0x8d, 0x09, 0xd0, 0xf5, 0x73, 0xb1, 0xb9, 0x01, 0x2e, 0x09,
0x7a, 0x10, 0x78, 0xe8, 0x7c, 0x41, 0x3a, 0x7c, 0x9e, 0x06, 0x97, 0xa2, 0x67,
0xc0, 0xc8, 0x79, 0x26, 0x9d, 0x4d, 0x2f, 0x92, 0x15, 0xbd, 0x64, 0x97, 0x5b,
0x86, 0x65, 0x39, 0x4d, 0x89, 0xec, 0x81, 0x59, 0x9d, 0x90, 0x9c, 0xca, 0xa3,
0xe7, 0xb9, 0xf4, 0x18, 0x7c, 0xc7, 0xcf, 0x27, 0xe8, 0xf6, 0x4e, 0x9e, 0x33,
0xc5, 0x25, 0xe2, 0x3f, 0x75, 0xde, 0x3c, 0x9f, 0x6e, 0x8f, 0xa9, 0xaa, 0x98,
0x9e, 0x01, 0xee, 0x51, 0xab, 0xf5, 0xb3, 0xe7, 0x73, 0xe7, 0x05, 0x68, 0x35,
0xfa, 0xf9, 0x73, 0xa3, 0xb7, 0x1b, 0x3d, 0xb0, 0x70, 0xbe, 0x78, 0x9e, 0x10,
0xfa, 0x8d, 0x4b, 0xe7, 0xcb, 0xe7, 0x3f, 0xfd, 0xea, 0x9d, 0x5e, 0x39, 0x67,
0x5c, 0x88, 0x8c, 0x0e, 0x11, 0xf3, 0xa2, 0xeb, 0x82, 0x75, 0x41, 0x5d, 0xc4,
0x74, 0xec, 0x8b, 0x7e, 0xcf, 0xa4, 0x9a, 0x73, 0xc1, 0xbd, 0xe0, 0x5d, 0x74,
0x5f, 0x68, 0xf5, 0x3d, 0x17, 0x1c, 0x23, 0xff, 0xa2, 0xf7, 0x02, 0x7b, 0xe2,
0x45, 0x2d, 0x5d, 0x49, 0x57, 0xd3, 0x42, 0xd0, 0x82, 0x0b, 0xb2, 0x1f, 0x90,
0x5f, 0x75, 0xd9, 0x19, 0xd1, 0xc5, 0x60, 0x7a, 0x45, 0xa3, 0x54, 0xd5, 0xd3,
0xe2, 0x0b, 0x09, 0xd1, 0x34, 0xd2, 0xd2, 0x0b, 0xa5, 0x41, 0x06, 0x5a, 0x71,
0x31, 0x80, 0x4c, 0xe4, 0x17, 0x82, 0xce, 0xbd, 0x55, 0x79, 0xa1, 0xba, 0x50,
0x43, 0xa3, 0xb9, 0xd0, 0x5e, 0x0c, 0xa7, 0x87, 0xd2, 0xe3, 0x69, 0xdd, 0x85,
0xfe, 0x62, 0x02, 0x56, 0x23, 0xed, 0x95, 0x23, 0x19, 0x4d, 0x8f, 0xa5, 0x63,
0x4e, 0xe3, 0x85, 0xe9, 0xc2, 0x0c, 0xab, 0x92, 0xcb, 0xad, 0x98, 0x24, 0x2d,
0xb5, 0x5e, 0x88, 0x8d, 0xb6, 0x0b, 0x9d, 0xde, 0x71, 0xe1, 0xbc, 0x70, 0x5d,
0x84, 0x2d, 0xee, 0x0b, 0x2f, 0xf4, 0x96, 0x0b, 0xfb, 0x85, 0xe7, 0xc2, 0x81,
0xf9, 0x34, 0x95, 0x9e, 0x25, 0x76, 0x1e, 0x71, 0x33, 0x3d, 0x03, 0xca, 0x77,
0xe1, 0xbf, 0x08, 0x5c, 0x4c, 0x83, 0x0a, 0x5e, 0x0c, 0xe9, 0x42, 0x17, 0xf4,
0xbe, 0x65, 0xb1, 0x09, 0xe7, 0xd2, 0xe1, 0x8b, 0xc8, 0x45, 0xf4, 0x22, 0x76,
0x31, 0x0f, 0x6d, 0xfc, 0x22, 0x01, 0x5d, 0x37, 0x4e, 0xae, 0x24, 0xf0, 0x44,
0xe7, 0x77, 0x48, 0x4b, 0xfb, 0xf9, 0xe7, 0x62, 0x88, 0x8c, 0x74, 0xfa, 0x22,
0x03, 0x9d, 0xce, 0x93, 0x25, 0x51, 0x98, 0x99, 0x45, 0xf8, 0xe5, 0x2e, 0x56,
0xda, 0x33, 0x21, 0x9d, 0xbf, 0x28, 0x5c, 0x2c, 0xa4, 0x8b, 0x17, 0xa5, 0x0b,
0x46, 0x86, 0xdc, 0x44, 0xec, 0xe5, 0x8b, 0x25, 0x92, 0x49, 0x05, 0xd6, 0xd5,
0x8b, 0xda, 0x45, 0xa7, 0xbf, 0x41, 0x75, 0x11, 0x9b, 0x61, 0x1d, 0x2b, 0x33,
0x70, 0xe1, 0xf1, 0xcd, 0xe1, 0xfc, 0xa9, 0x5f, 0x50, 0x99, 0x9f, 0xfe, 0x56,
0x09, 0x74, 0xe3, 0x82, 0x0b, 0x38, 0x78, 0x31, 0x04, 0xfb, 0x61, 0x14, 0x1e,
0x38, 0xb7, 0xdc, 0x29, 0x52, 0xa9, 0xba, 0x41, 0xf5, 0x64, 0x26, 0x74, 0x65,
0xd3, 0xc8, 0x85, 0xe1, 0x22, 0x19, 0xd6, 0x9b, 0x74, 0xa6, 0xa4, 0xd9, 0x41,
0xde, 0xfa, 0x4c, 0x06, 0x31, 0x53, 0x60, 0x3d, 0x76, 0x31, 0xaa, 0xe8, 0xc5,
0x79, 0xb2, 0x82, 0xcc, 0x57, 0x5c, 0xe3, 0x17, 0x7c, 0x3a, 0xfa, 0xc4, 0xc5,
0x94, 0xda, 0x60, 0xed, 0xcd, 0x08, 0xf0, 0xbc, 0x31, 0x09, 0x3b, 0xbd, 0x67,
0xea, 0xa2, 0xc7, 0xda, 0x97, 0x59, 0x92, 0x36, 0xc1, 0x4d, 0xd3, 0x59, 0x0a,
0x32, 0xc2, 0x4c, 0x1a, 0xfb, 0x2b, 0xcb, 0x3b, 0xe3, 0xc9, 0x7a, 0x28, 0x8d,
0x98, 0x78, 0x0f, 0xb5, 0xbf, 0x2d, 0xbb, 0x08, 0x61, 0x57, 0x96, 0x66, 0x14,
0x19, 0x39, 0x64, 0xf3, 0x64, 0xbe, 0x16, 0x65, 0xb3, 0x17, 0x12, 0x70, 0x32,
0xba, 0x8e, 0xb9, 0x0b, 0x65, 0x66, 0xfe, 0x62, 0xe1, 0x62, 0x9e, 0x9c, 0xcf,
0x8b, 0x88, 0xb9, 0xe8, 0x73, 0x09, 0x8b, 0x6a, 0x2d, 0xce, 0xa1, 0x9c, 0x76,
0xe9, 0x62, 0xf9, 0x62, 0x8a, 0xdc, 0xc5, 0x34, 0xc4, 0xde, 0x6f, 0x5b, 0xb9,
0x50, 0x65, 0x7a, 0xcc, 0xea, 0xcc, 0xa4, 0x3e, 0xe7, 0xd5, 0x66, 0x74, 0x99,
0xba, 0x8f, 0x71, 0x49, 0x9f, 0x6c, 0xb0, 0x60, 0x5e, 0xaa, 0x55, 0x5d, 0x97,
0x31, 0x87, 0x21, 0x33, 0x6c, 0xcb, 0xa7, 0xcb, 0x69, 0xd6, 0x65, 0x40, 0x46,
0x5d, 0x3a, 0x1c, 0xf4, 0x29, 0x72, 0x69, 0x82, 0x8d, 0x5e, 0x6f, 0xc5, 0x6d,
0x8d, 0x43, 0xbc, 0xb8, 0x97, 0x0e, 0x48, 0x16, 0xc0, 0xeb, 0x81, 0xad, 0x19,
0x0b, 0x20, 0xef, 0xb2, 0xfb, 0x32, 0x60, 0xec, 0x81, 0x9e, 0x8f, 0x32, 0xe2,
0xe9, 0xbd, 0x8c, 0xf8, 0xfb, 0x2e, 0x05, 0x97, 0x03, 0x1e, 0xe1, 0xa5, 0x57,
0x9c, 0x27, 0xb3, 0xd2, 0x19, 0xb0, 0x67, 0xa6, 0xe9, 0xfb, 0x8c, 0x8d, 0x64,
0x66, 0xfc, 0x69, 0x44, 0x02, 0x4a, 0xd1, 0xa5, 0xf8, 0x52, 0x72, 0xe9, 0xcd,
0xb8, 0x33, 0xd2, 0x4b, 0x9f, 0xd8, 0x99, 0xf1, 0x67, 0xa2, 0xed, 0x36, 0x5f,
0xca, 0x2f, 0x15, 0xa4, 0x5e, 0xd5, 0xa5, 0xd3, 0xac, 0xbe, 0xd4, 0x5c, 0x9a,
0xdc, 0xda, 0xcb, 0x38, 0x34, 0xba, 0x4b, 0xfd, 0x25, 0x93, 0xde, 0x45, 0x62,
0x99, 0x71, 0x87, 0xc1, 0xa3, 0x91, 0x1a, 0x2e, 0x67, 0x8d, 0x46, 0xf2, 0x5e,
0xc1, 0x78, 0x19, 0xb1, 0x9a, 0x2e, 0xfb, 0x30, 0x42, 0xe6, 0xcb, 0x50, 0x26,
0x48, 0x6a, 0xb2, 0x5c, 0x86, 0x81, 0x03, 0xed, 0xac, 0x2f, 0x13, 0x80, 0x3e,
0x22, 0xf5, 0x00, 0x46, 0x32, 0xae, 0x8c, 0xed, 0x72, 0xd8, 0x62, 0xbf, 0x9c,
0xf3, 0xda, 0xb5, 0x4d, 0xb5, 0xe3, 0xd2, 0x89, 0x3a, 0x95, 0x28, 0x6a, 0x32,
0xea, 0x63, 0x1e, 0x93, 0xc4, 0x6f, 0x75, 0xdb, 0x5d, 0xa2, 0xff, 0xe8, 0xeb,
0x88, 0x49, 0xa3, 0x1b, 0x1e, 0x52, 0x63, 0x37, 0x76, 0x54, 0x0f, 0xdd, 0xc3,
0xde, 0xcb, 0x54, 0xc6, 0x07, 0x5a, 0xa3, 0x5a, 0xea, 0xdc, 0x32, 0x03, 0x97,
0xfe, 0xcb, 0x4c, 0xa6, 0x29, 0x29, 0x65, 0x82, 0x97, 0x21, 0xe8, 0xc2, 0x97,
0x91, 0xcb, 0xe8, 0x65, 0x3e, 0x13, 0xbb, 0x9c, 0xa2, 0x77, 0x79, 0x8f, 0x84,
0x8f, 0x7a, 0xe3, 0x97, 0x6e, 0x49, 0x00, 0x38, 0x71, 0x99, 0xcd, 0xd4, 0x14,
0x1e, 0xc5, 0x88, 0x2d, 0x79, 0x99, 0xba, 0x4c, 0x23, 0x5f, 0x3b, 0x76, 0xac,
0x34, 0x3c, 0x33, 0x97, 0xb9, 0x4c, 0xa1, 0xdd, 0x12, 0x39, 0x5f, 0xe1, 0xba,
0xd4, 0x4a, 0x3d, 0xb2, 0x2c, 0xa4, 0xb9, 0xcb, 0xfc, 0x65, 0x19, 0xd2, 0xc2,
0xe5, 0xbc, 0x7a, 0x02, 0xb3, 0x49, 0x41, 0xef, 0x0a, 0x15, 0xba, 0xbf, 0x85,
0x74, 0xaf, 0x15, 0x49, 0x8e, 0xa5, 0xcb, 0xf2, 0x65, 0xe5, 0xb2, 0x7a, 0x59,
0x03, 0x37, 0x96, 0xe9, 0xbf, 0x94, 0x88, 0xab, 0xb0, 0x1b, 0xb8, 0xac, 0x5f,
0x36, 0x2e, 0x07, 0x21, 0x9b, 0xce, 0xd4, 0xc0, 0x9b, 0xfd, 0x43, 0x97, 0xc3,
0x99, 0xe1, 0xcb, 0x82, 0x63, 0x04, 0xb2, 0xd1, 0xcb, 0xce, 0xd7, 0x80, 0x6d,
0x5b, 0x3a, 0xae, 0x54, 0xd8, 0x00, 0x35, 0x76, 0xa9, 0x55, 0x8d, 0x43, 0x3f,
0x71, 0x39, 0x94, 0x99, 0xbc, 0x1c, 0x84, 0xa4, 0x3f, 0x33, 0x91, 0x99, 0xba,
0x34, 0xe8, 0x9b, 0xed, 0x68, 0x97, 0x23, 0xd1, 0xba, 0x72, 0xc9, 0x37, 0x73,
0x39, 0x4b, 0x62, 0xd4, 0x33, 0x73, 0x97, 0x4d, 0x6b, 0x97, 0xa4, 0x57, 0x3d,
0x7f, 0x59, 0x84, 0xed, 0x78, 0xa6, 0x44, 0xfa, 0x69, 0x34, 0x33, 0x99, 0x59,
0xb8, 0x1c, 0xfd, 0xed, 0xaf, 0x5b, 0x56, 0xa4, 0x8b, 0x97, 0xe2, 0x2c, 0x76,
0xf0, 0x4b, 0x97, 0x77, 0x36, 0xb3, 0x2c, 0x5d, 0xbe, 0x5c, 0x81, 0xcf, 0xca,
0x25, 0xe3, 0x8a, 0x79, 0x65, 0xf4, 0x74, 0x5d, 0x31, 0xb2, 0x5d, 0x59, 0xd6,
0x15, 0x27, 0x3b, 0x9f, 0xa1, 0xae, 0xba, 0xb1, 0x6f, 0xb2, 0xaf, 0x38, 0x57,
0xc8, 0xc8, 0xd6, 0x93, 0x5d, 0x82, 0x1d, 0x17, 0x9e, 0x5c, 0xf0, 0xcc, 0x2c,
0x0f, 0xb0, 0xfb, 0xaa, 0xe7, 0x8a, 0x7f, 0xd5, 0x7b, 0xa5, 0x32, 0xf0, 0xb3,
0x7d, 0x57, 0x82, 0x2b, 0x09, 0xe9, 0x7b, 0xe1, 0x95, 0xe8, 0x8a, 0xdc, 0xa2,
0xb3, 0x3a, 0xa9, 0xf8, 0x4a, 0x72, 0x25, 0xbd, 0x0a, 0x06, 0x66, 0x48, 0xfb,
0xd8, 0xd9, 0xa4, 0x50, 0x06, 0xdd, 0x5c, 0x46, 0x7e, 0xa5, 0xb8, 0x52, 0x7b,
0x97, 0x33, 0x4c, 0x83, 0xc3, 0x3a, 0x95, 0x51, 0x5e, 0xa9, 0xae, 0xa8, 0xac,
0x9a, 0x78, 0x69, 0xae, 0xb4, 0xc0, 0x0b, 0x06, 0x41, 0x76, 0x42, 0xc2, 0x50,
0x76, 0x9e, 0x87, 0xb2, 0x0b, 0x19, 0x21, 0xea, 0xe6, 0x65, 0x17, 0x11, 0xa9,
0x17, 0x54, 0x5f, 0xf6, 0xef, 0x36, 0x19, 0xb2, 0x3a, 0xf8, 0xe8, 0xaf, 0xfc,
0x76, 0xc3, 0x15, 0x0b, 0x72, 0xe3, 0x95, 0x06, 0xd0, 0x04, 0x99, 0x0e, 0x38,
0x49, 0xde, 0x71, 0x99, 0x49, 0x74, 0xcb, 0x15, 0xfd, 0x75, 0xc8, 0x95, 0x97,
0xbe, 0xc9, 0xda, 0xae, 0x3a, 0x4f, 0xb3, 0x2e, 0x65, 0xd6, 0x8d, 0xf5, 0x6f,
0x6f, 0xc7, 0xca, 0x1a, 0x4c, 0x8e, 0x2b, 0x59, 0xd6, 0x9c, 0x35, 0x21, 0xc2,
0x98, 0xdd, 0x98, 0x1d, 0xb4, 0x3b, 0xaf, 0x5c, 0x57, 0xee, 0x2b, 0x0f, 0xb4,
0xde, 0x2b, 0xdf, 0x95, 0x35, 0xab, 0xc8, 0xfa, 0xaf, 0x9c, 0x72, 0x75, 0x36,
0xa7, 0x0b, 0x5c, 0x05, 0xaf, 0x42, 0x57, 0x45, 0x87, 0x36, 0xeb, 0xc1, 0xfe,
0x2e, 0xcd, 0xca, 0xb3, 0x92, 0x6c, 0xf8, 0x2a, 0x72, 0x25, 0x0c, 0xa4, 0x25,
0xaa, 0x6c, 0xf4, 0x2a, 0x76, 0x65, 0xc9, 0xca, 0x7e, 0x7b, 0x42, 0x1a, 0x20,
0xab, 0x22, 0x7e, 0x95, 0x23, 0xeb, 0x21, 0x9a, 0x4d, 0x20, 0xae, 0x28, 0x90,
0xc8, 0x26, 0x81, 0x53, 0x24, 0x27, 0xb5, 0x21, 0x4e, 0xb7, 0x31, 0x96, 0x4d,
0xd3, 0x59, 0x66, 0xae, 0xb2, 0x57, 0xe1, 0x6c, 0x8e, 0x70, 0x79, 0xc0, 0xc2,
0x95, 0x3d, 0x5b, 0x04, 0xae, 0x64, 0x6d, 0xed, 0x96, 0x12, 0xfb, 0xd2, 0x55,
0xb9, 0x2d, 0xb9, 0x0a, 0x66, 0xab, 0xc0, 0x9e, 0xac, 0x13, 0x52, 0x17, 0x4a,
0x08, 0xa5, 0xd6, 0x1e, 0xbb, 0x66, 0x3f, 0xa0, 0x3f, 0xab, 0x53, 0x39, 0xad,
0x55, 0x93, 0x17, 0x52, 0x47, 0x76, 0x00, 0x12, 0x37, 0xf1, 0xae, 0x5f, 0x35,
0xae, 0x7c, 0xbe, 0x41, 0xfa, 0x5e, 0x1b, 0xc8, 0xa6, 0xe8, 0x1c, 0x06, 0x49,
0x9d, 0x43, 0x80, 0xa5, 0x6c, 0x9a, 0xc8, 0x06, 0xda, 0xf1, 0xb2, 0xc3, 0x57,
0x23, 0x90, 0x8d, 0x5e, 0x15, 0xb3, 0x63, 0xc0, 0xe3, 0x74, 0x9e, 0x05, 0xe8,
0x82, 0xed, 0xaf, 0x37, 0x4c, 0x13, 0x57, 0xb9, 0xec, 0xe4, 0xd5, 0xd4, 0x55,
0x26, 0xdb, 0x84, 0xae, 0xdc, 0x19, 0xb5, 0x7a, 0x76, 0xda, 0x39, 0x4a, 0xb8,
0x69, 0xc8, 0x67, 0xae, 0x1a, 0xd9, 0xe1, 0x6c, 0x7f, 0x76, 0x16, 0x74, 0x13,
0xb3, 0x4e, 0xe9, 0x9a, 0xbb, 0xca, 0x42, 0x3b, 0x7f, 0x55, 0xcd, 0x1a, 0xf5,
0x0b, 0x57, 0x01, 0xef, 0x5c, 0x76, 0x28, 0xbb, 0x48, 0x47, 0x5f, 0xba, 0x62,
0x2a, 0xbb, 0xc4, 0x05, 0xd2, 0xa3, 0x11, 0x58, 0x2d, 0x43, 0xbe, 0x82, 0xc2,
0xb8, 0x36, 0xe9, 0xc7, 0xb3, 0xcc, 0xeb, 0xd9, 0xec, 0xbc, 0x76, 0x52, 0xd2,
0x75, 0x8d, 0x59, 0x62, 0x61, 0x5d, 0x53, 0xd7, 0x7f, 0xd5, 0x39, 0x92, 0x65,
0x5f, 0x73, 0xae, 0x27, 0xb3, 0x33, 0x59, 0xee, 0x35, 0xef, 0x5a, 0x4e, 0xee,
0x76, 0xdd, 0xd0, 0xf6, 0x5c, 0xf3, 0xaf, 0x7b, 0x89, 0x55, 0xdf, 0xb5, 0x00,
0xd8, 0x2b, 0x6b, 0x22, 0xaa, 0x90, 0xf6, 0x63, 0xe0, 0x69, 0xd3, 0x63, 0x9f,
0x82, 0x44, 0x04, 0xc9, 0x74, 0x56, 0x4c, 0xe4, 0x92, 0xeb, 0x9f, 0x47, 0x53,
0x7a, 0x3d, 0x96, 0x95, 0x75, 0x24, 0x13, 0x3f, 0xcd, 0x4d, 0xf9, 0x75, 0x51,
0xe2, 0xb2, 0x28, 0xa0, 0x53, 0x5e, 0x2f, 0x41, 0xae, 0xba, 0x56, 0x83, 0xd6,
0xa0, 0x68, 0x51, 0x16, 0xb2, 0x0d, 0xcc, 0xf1, 0xf9, 0xac, 0xee, 0xa7, 0x68,
0x8c, 0x1c, 0xfd, 0x5c, 0x75, 0x9d, 0xcc, 0x18, 0xae, 0x8d, 0xd7, 0xa6, 0xeb,
0xc5, 0x76, 0x1b, 0xb3, 0x2b, 0x80, 0xe6, 0x8e, 0x1d, 0x3f, 0x67, 0xb9, 0xe6,
0xc2, 0x72, 0x24, 0x63, 0xbd, 0xb6, 0x5d, 0xdb, 0x21, 0xe7, 0xe4, 0x1c, 0xb4,
0x96, 0x4d, 0x22, 0x74, 0x01, 0x3a, 0xaf, 0x5d, 0xd7, 0x6e, 0x48, 0x07, 0xb3,
0x54, 0x8e, 0x45, 0xa4, 0x1e, 0x70, 0xbe, 0x6b, 0x2f, 0xb1, 0xf4, 0xd3, 0xf6,
0x81, 0xeb, 0x6e, 0xe8, 0xd8, 0x81, 0xe0, 0x75, 0xe8, 0x3a, 0x4c, 0xcb, 0x7a,
0x73, 0x8b, 0xf2, 0xc8, 0x75, 0xf4, 0x9a, 0x97, 0xeb, 0xc9, 0x75, 0xfe, 0xa6,
0x8e, 0xe8, 0xe2, 0xd7, 0x1c, 0x9c, 0x5c, 0x7d, 0x90, 0x26, 0x68, 0xdb, 0xe4,
0x75, 0xea, 0x3a, 0x7d, 0xfd, 0xeb, 0xfc, 0x16, 0xe7, 0x04, 0xb9, 0xcc, 0x75,
0xf6, 0x3a, 0x77, 0x9d, 0xbf, 0x9e, 0xf2, 0x09, 0x73, 0x85, 0xeb, 0x22, 0x2c,
0x4a, 0xd7, 0xf9, 0x4e, 0xdf, 0x94, 0xaf, 0x2b, 0xd7, 0xd5, 0x6b, 0x09, 0x1d,
0x5d, 0x9a, 0xab, 0xd1, 0x11, 0xfa, 0x81, 0x65, 0xa2, 0x81, 0x6b, 0x79, 0x6e,
0x40, 0xc1, 0xc0, 0x79, 0x1e, 0x93, 0xd7, 0x89, 0x86, 0x25, 0x6e, 0x10, 0x3c,
0x78, 0x3d, 0x44, 0xf0, 0x30, 0x81, 0x05, 0xb2, 0x8e, 0x47, 0xae, 0x47, 0xaf,
0x95, 0x39, 0x45, 0x4e, 0x9d, 0xd3, 0xc9, 0xc6, 0x20, 0x8f, 0xcb, 0xf5, 0xd2,
0x71, 0x3a, 0x9e, 0x8e, 0xd4, 0x30, 0x71, 0xad, 0x05, 0xd6, 0xe7, 0x26, 0x21,
0xf5, 0x8b, 0xa7, 0xae, 0x15, 0x98, 0x65, 0x06, 0x48, 0x9a, 0xd7, 0x06, 0xa9,
0x09, 0x78, 0x1a, 0xf2, 0x99, 0x6b, 0x23, 0x28, 0x33, 0xca, 0x2c, 0x38, 0x4b,
0x6e, 0xee, 0xda, 0x9a, 0x2b, 0x68, 0x64, 0x46, 0x06, 0xd6, 0xea, 0xb8, 0x6b,
0x1e, 0xb2, 0xb2, 0xdb, 0x1a, 0x58, 0x20, 0x71, 0x17, 0xaf, 0xa7, 0x35, 0x4b,
0x84, 0x0a, 0xaa, 0x27, 0xfd, 0xcb, 0x84, 0xb2, 0xe5, 0xec, 0xf0, 0x2d, 0xe2,
0xac, 0x58, 0xb9, 0x66, 0xdc, 0x38, 0x72, 0x4e, 0x70, 0xcc, 0x1b, 0x77, 0xce,
0x95, 0xeb, 0xba, 0x49, 0x92, 0x15, 0x95, 0xd7, 0x0d, 0x6b, 0xad, 0xd0, 0x7b,
0x72, 0xbf, 0xfd, 0x2f, 0x06, 0xb9, 0x2e, 0x03, 0xeb, 0xc6, 0x4b, 0xa4, 0xd4,
0x0d, 0x19, 0x9b, 0x1c, 0xfb, 0x86, 0x03, 0x8a, 0x7b, 0xc3, 0xbb, 0x09, 0xd0,
0xd6, 0xdd, 0x37, 0x3d, 0x37, 0xc1, 0x5c, 0x28, 0xc7, 0xbf, 0xe9, 0xbd, 0xe9,
0xbb, 0x09, 0xe7, 0x04, 0x37, 0xd1, 0x5c, 0x24, 0x17, 0xcb, 0x51, 0x62, 0x37,
0x5a, 0x13, 0xcf, 0x09, 0x6f, 0x44, 0x37, 0x6c, 0x8d, 0x57, 0x92, 0xc8, 0x89,
0x6f, 0x24, 0x37, 0x66, 0x9b, 0x97, 0x7c, 0xc5, 0x24, 0xbd, 0x91, 0xdd, 0x74,
0xc9, 0x92, 0x24, 0x86, 0x1c, 0x11, 0x53, 0x39, 0xc5, 0xcd, 0xb0, 0xbb, 0x4e,
0xaf, 0x70, 0x87, 0x3d, 0x9d, 0xeb, 0xc7, 0x78, 0x2a, 0xa1, 0x59, 0x04, 0x56,
0xdd, 0x44, 0xe8, 0x5f, 0x86, 0x33, 0xf0, 0x50, 0x43, 0xaa, 0x21, 0xf9, 0x68,
0x6f, 0x74, 0x37, 0xf4, 0x17, 0x5b, 0xb9, 0x6c, 0xbb, 0x27, 0x6f, 0x0a, 0x80,
0x06, 0xc8, 0xf2, 0x74, 0x76, 0x46, 0xd0, 0xa6, 0x9b, 0xbf, 0xdb, 0x64, 0xbe,
0xb1, 0x80, 0xb3, 0xde, 0xd8, 0x88, 0xac, 0x94, 0xb3, 0xd3, 0x3a, 0xc7, 0x8d,
0xf3, 0xa6, 0xa4, 0x71, 0xdd, 0x88, 0xbc, 0xee, 0x9b, 0x72, 0xae, 0x42, 0xbc,
0x59, 0xed, 0x35, 0x06, 0x7d, 0x95, 0x8e, 0xe5, 0xa5, 0x6d, 0xfb, 0x73, 0x35,
0x48, 0x7c, 0x37, 0xfe, 0x9b, 0x00, 0x2d, 0x09, 0x02, 0x87, 0x3a, 0xb5, 0x84,
0x6f, 0x6a, 0x86, 0xc8, 0x4d, 0xf4, 0x46, 0xe5, 0x72, 0x63, 0x1f, 0x8d, 0xdd,
0xc4, 0x89, 0xc6, 0xe6, 0x4c, 0xdc, 0x4c, 0x5b, 0x4d, 0xba, 0x92, 0xec, 0xd7,
0x5e, 0x4e, 0xde, 0xa4, 0xa0, 0x4f, 0xdf, 0xd8, 0x9d, 0x99, 0x9b, 0x3e, 0xcc,
0xac, 0x2c, 0xb8, 0xdc, 0x4d, 0x1d, 0x35, 0x18, 0x71, 0x4b, 0xcc, 0xdf, 0xcc,
0x89, 0x0a, 0x37, 0xc5, 0x9b, 0x49, 0xfb, 0x40, 0x4e, 0xaf, 0x8a, 0xb4, 0xdf,
0xe2, 0x77, 0x46, 0x49, 0x7e, 0x3b, 0x01, 0x7a, 0x30, 0x57, 0x82, 0x47, 0x19,
0xa5, 0x72, 0x63, 0xc2, 0x49, 0x51, 0x96, 0x4d, 0xe6, 0xaa, 0xe0, 0x6a, 0x28,
0xfd, 0x37, 0x03, 0x37, 0x75, 0x45, 0x1d, 0x14, 0x25, 0x1b, 0x27, 0x7e, 0xa3,
0xb9, 0xa1, 0x5c, 0x11, 0xb3, 0xb3, 0x71, 0x33, 0x78, 0x33, 0x74, 0x63, 0xb4,
0x0e, 0x93, 0xdc, 0x52, 0xf6, 0x61, 0xa2, 0x6d, 0x02, 0x4e, 0xe5, 0xba, 0x14,
0x23, 0x37, 0xa3, 0x37, 0xbd, 0xe2, 0xb1, 0x9b, 0xf1, 0x1b, 0x8d, 0x7a, 0x24,
0x37, 0x96, 0x9b, 0x20, 0x56, 0x93, 0x80, 0x09, 0x4f, 0xd3, 0xfc, 0xfb, 0xfd,
0x68, 0x96, 0x8c, 0xda, 0x52, 0xdb, 0xf7, 0x66, 0x39, 0xd7, 0xbc, 0x09, 0x88,
0xa7, 0xe9, 0xbe, 0xe0, 0xba, 0x97, 0xbd, 0x8c, 0x7c, 0x97, 0xd6, 0xac, 0x9f,
0xcb, 0xad, 0xe4, 0xea, 0xe8, 0x0d, 0x85, 0x7c, 0x06, 0xba, 0xe9, 0xdc, 0x42,
0x6e, 0x96, 0xd8, 0x34, 0x8d, 0x13, 0xb8, 0x91, 0x0e, 0x38, 0xe7, 0xc0, 0xcd,
0xdf, 0x2c, 0xdc, 0x2c, 0xde, 0x2c, 0xdd, 0xcc, 0xe6, 0x96, 0x6f, 0x18, 0x9e,
0x95, 0x9b, 0x79, 0x44, 0x64, 0xe5, 0x19, 0xb7, 0xcc, 0x3c, 0xf3, 0x76, 0xf1,
0xc7, 0xee, 0x71, 0xcb, 0xf4, 0x38, 0x1d, 0x15, 0xf4, 0x20, 0x85, 0x1b, 0x04,
0xeb, 0x76, 0xc4, 0x42, 0xdd, 0x52, 0x79, 0xf6, 0x2d, 0xe7, 0x16, 0x75, 0xdd,
0x76, 0xe5, 0x53, 0xe6, 0x99, 0x1c, 0xef, 0xd6, 0x23, 0xea, 0xbe, 0xed, 0xb9,
0x25, 0xfb, 0x11, 0x81, 0xbd, 0xb7, 0x7e, 0x9f, 0x30, 0x8f, 0xdd, 0xe1, 0x56,
0x00, 0x5e, 0x78, 0x2b, 0xc8, 0x8b, 0x6e, 0xe9, 0xd3, 0x15, 0x77, 0x03, 0x7e,
0x5e, 0x7c, 0x3b, 0x4c, 0xd6, 0xab, 0xdc, 0xce, 0xce, 0xff, 0xf4, 0xc5, 0x90,
0x55, 0x72, 0x2b, 0xbd, 0x95, 0xdd, 0x7a, 0x45, 0x06, 0x15, 0x8f, 0xc8, 0x15,
0xb7, 0x4a, 0xf8, 0xa9, 0x6e, 0x39, 0xba, 0x3e, 0xf0, 0xbd, 0x79, 0x2e, 0x60,
0x4f, 0x5e, 0x0d, 0x59, 0x5d, 0xa2, 0xb9, 0xed, 0xce, 0xbb, 0x1c, 0x5a, 0xd0,
0x7d, 0xe4, 0x19, 0xa8, 0xa9, 0x9f, 0x36, 0xfe, 0xe7, 0x5f, 0xce, 0xeb, 0x60,
0x2f, 0xcf, 0x4b, 0x11, 0xc7, 0x87, 0xbb, 0x9b, 0xfe, 0xd6, 0x00, 0xde, 0x88,
0x22, 0xca, 0x4b, 0xf2, 0xa6, 0x5b, 0xb5, 0xc8, 0xdc, 0xe6, 0x55, 0x62, 0x3c,
0x73, 0xe8, 0x70, 0xae, 0x94, 0x5d, 0x96, 0x5b, 0x2b, 0x9d, 0x79, 0x89, 0x64,
0xcc, 0x92, 0x68, 0x0c, 0x32, 0x92, 0x9b, 0xed, 0xf6, 0xa7, 0x5f, 0x35, 0x08,
0xad, 0x86, 0xdc, 0x71, 0x6b, 0xa1, 0xdf, 0xde, 0x0a, 0x61, 0xaf, 0x20, 0x96,
0xce, 0x5b, 0xd7, 0xad, 0x38, 0xef, 0xbe, 0x55, 0xe6, 0x3d, 0xb7, 0xde, 0x5b,
0xdf, 0x6d, 0x1e, 0xf9, 0x4e, 0xd9, 0xcc, 0xf6, 0xff, 0xe0, 0x2f, 0x10, 0x10,
0x2f, 0x40, 0x62, 0xca, 0xc9, 0xe9, 0x16, 0xc3, 0x38, 0x06, 0x6f, 0xf5, 0x88,
0x16, 0xba, 0x35, 0xe5, 0xc3, 0x44, 0x63, 0xf1, 0x47, 0x80, 0xa3, 0xb7, 0x55,
0xfa, 0x06, 0x13, 0xbb, 0x75, 0xe6, 0xcd, 0x79, 0x43, 0x3e, 0x0e, 0x69, 0xe2,
0x36, 0xea, 0xb7, 0xc1, 0x3a, 0x79, 0x9b, 0x02, 0xe7, 0xd6, 0x39, 0x48, 0x1e,
0xde, 0x7c, 0x1a, 0xdc, 0x84, 0xcd, 0x0d, 0x2e, 0x03, 0x2a, 0x7b, 0x6b, 0xcd,
0xe7, 0x6e, 0xf3, 0xb7, 0x4a, 0x4b, 0x01, 0x9c, 0x27, 0x5f, 0xbc, 0x35, 0x42,
0x63, 0xcf, 0x97, 0x6e, 0x7d, 0xf9, 0x25, 0xa1, 0x05, 0xb4, 0x3f, 0x5f, 0xbe,
0xad, 0xdc, 0x6a, 0xf1, 0xac, 0x51, 0xd0, 0x55, 0x6f, 0x29, 0x77, 0xed, 0xb6,
0x0f, 0x7b, 0xa0, 0x26, 0xef, 0xca, 0xab, 0x6d, 0xfd, 0xb7, 0x03, 0x74, 0x0f,
0xd4, 0x6f, 0xe5, 0xe8, 0xf9, 0x86, 0x24, 0xa4, 0xb6, 0xea, 0x75, 0x79, 0xb3,
0xee, 0xd7, 0xb6, 0x78, 0x71, 0x87, 0xd7, 0xd2, 0xa3, 0x1c, 0xce, 0x8f, 0xe8,
0xd4, 0x38, 0xe9, 0x4a, 0xf9, 0xc6, 0x6d, 0x26, 0xdf, 0x94, 0x05, 0x6c, 0x83,
0xb7, 0xf1, 0x7c, 0x21, 0x2f, 0x10, 0x8a, 0x45, 0x43, 0xed, 0x91, 0x16, 0x23,
0xe7, 0x3c, 0xdf, 0x1c, 0xc8, 0x87, 0xf2, 0x26, 0xf2, 0x7e, 0x78, 0x98, 0xae,
0x63, 0x04, 0xb8, 0x9c, 0x1f, 0xbd, 0xcd, 0xe5, 0xc7, 0x6e, 0xc7, 0x41, 0xc7,
0x3a, 0xf3, 0x26, 0x9b, 0x9f, 0xb8, 0x9d, 0x24, 0x56, 0x53, 0xb7, 0xcd, 0xdb,
0x1e, 0xef, 0x34, 0xe8, 0x74, 0x3e, 0x9f, 0x9f, 0x01, 0x9e, 0xbd, 0x9d, 0xbb,
0x9d, 0xbf, 0x5d, 0x00, 0x15, 0x54, 0x2e, 0xde, 0xda, 0x7e, 0x7c, 0xc1, 0x68,
0x59, 0xba, 0x5d, 0xbe, 0x5d, 0xb9, 0x8d, 0x92, 0x08, 0x8c, 0x3b, 0xe6, 0x1d,
0xfd, 0x24, 0xe9, 0xeb, 0x22, 0x54, 0x82, 0xc8, 0x83, 0xf9, 0x49, 0x72, 0x63,
0x8e, 0xe4, 0x59, 0x44, 0x9a, 0xea, 0xd4, 0x47, 0x81, 0x67, 0xdf, 0x85, 0x02,
0x7a, 0xed, 0x0a, 0x56, 0x61, 0x25, 0xff, 0xcf, 0xd1, 0xeb, 0x73, 0x72, 0x60,
0x33, 0x96, 0xd7, 0x90, 0x7b, 0x2b, 0x97, 0xf8, 0x17, 0xd1, 0x2b, 0xb5, 0x3c,
0x8f, 0xd0, 0x02, 0xbf, 0x19, 0x6d, 0x9b, 0xcc, 0x77, 0x83, 0x1b, 0x25, 0x6f,
0x4c, 0xc6, 0xdb, 0xf3, 0x9a, 0xe8, 0xaa, 0x24, 0x1e, 0xff, 0xae, 0xf7, 0x6e,
0xb0, 0xbd, 0x7e, 0xee, 0x86, 0xf3, 0x02, 0x22, 0x0f, 0xf8, 0x06, 0x88, 0xa6,
0xcf, 0x26, 0x04, 0xdf, 0x00, 0x2d, 0xba, 0x13, 0xdf, 0x49, 0xee, 0x26, 0xf2,
0xd2, 0xbb, 0xa1, 0xbc, 0x03, 0x7b, 0xb5, 0xec, 0x4e, 0x7e, 0xd7, 0x9f, 0x57,
0xdc, 0x31, 0xb5, 0x2b, 0x79, 0xe5, 0x9d, 0xea, 0x4e, 0x0d, 0xbb, 0x41, 0xcc,
0x9e, 0x7a, 0x7e, 0x24, 0x3f, 0xfa, 0x5b, 0x96, 0xc3, 0xe6, 0xb4, 0xf9, 0xdf,
0xcd, 0x3d, 0xcd, 0xdd, 0x4c, 0x5e, 0x7b, 0xa7, 0xbb, 0x5b, 0x22, 0x3e, 0x0b,
0x80, 0x3c, 0xd2, 0x13, 0x5d, 0x85, 0xd9, 0xbc, 0x1e, 0x31, 0x0d, 0x28, 0xc6,
0xbb, 0xb9, 0x7c, 0x31, 0x3f, 0x2f, 0x53, 0x63, 0x0d, 0x99, 0xda, 0x32, 0xec,
0xa2, 0xe6, 0xbb, 0x59, 0x95, 0x05, 0xb4, 0xf5, 0xce, 0x06, 0x28, 0xc1, 0x0a,
0x6a, 0xc2, 0x97, 0x59, 0x68, 0x88, 0xfa, 0x4d, 0x76, 0x48, 0x1c, 0x28, 0xce,
0x3b, 0xd7, 0xdd, 0x5f, 0xf5, 0xcc, 0x63, 0x17, 0x32, 0x49, 0x17, 0xc8, 0xda,
0x75, 0x13, 0xa9, 0xe7, 0xce, 0x7b, 0xc7, 0xf0, 0x86, 0xad, 0x11, 0x70, 0xbe,
0x3b, 0xff, 0xdd, 0x62, 0x7e, 0x39, 0x1f, 0x20, 0x9a, 0x20, 0xa0, 0x98, 0xbc,
0x63, 0x0a, 0xdd, 0x85, 0x41, 0x33, 0x0a, 0xf3, 0x88, 0x3d, 0x45, 0xb7, 0xca,
0x22, 0xfd, 0x67, 0x2b, 0xa2, 0xb0, 0x8a, 0xdd, 0xc5, 0xef, 0x12, 0x77, 0x0d,
0xf2, 0x56, 0x2e, 0x79, 0x27, 0x28, 0xa4, 0xee, 0xd2, 0x77, 0xdd, 0x85, 0x39,
0x63, 0xe6, 0x2e, 0x7b, 0x57, 0x41, 0xcf, 0xe4, 0xee, 0xf2, 0xb0, 0x2a, 0x61,
0x64, 0x24, 0x05, 0xcc, 0x70, 0x3a, 0xb3, 0xe2, 0x1d, 0xbf, 0xc0, 0xb7, 0xf2,
0x0a, 0x29, 0xfa, 0x37, 0x71, 0x6f, 0x81, 0xbe, 0x4d, 0x01, 0x53, 0x28, 0x7d,
0x85, 0xd2, 0x5d, 0x19, 0xb6, 0xdc, 0x02, 0xa7, 0xd0, 0x5b, 0xa8, 0xdc, 0x31,
0x30, 0xf7, 0x59, 0x85, 0xea, 0x5d, 0x8d, 0xf8, 0xf7, 0xdf, 0x0d, 0xdc, 0xd5,
0xef, 0x84, 0xb0, 0x6b, 0xdc, 0x89, 0x0a, 0x83, 0x77, 0x43, 0x77, 0xc3, 0x90,
0x8f, 0xdc, 0x99, 0x49, 0x8e, 0xa3, 0x9d, 0xd6, 0x8f, 0xdd, 0x8d, 0xdf, 0xc9,
0x61, 0x25, 0x2b, 0x28, 0x0a, 0x13, 0x77, 0x93, 0x77, 0x53, 0x77, 0x4d, 0xe8,
0xd4, 0x74, 0x5d, 0xd3, 0x77, 0x33, 0x77, 0xb3, 0x77, 0x16, 0xf4, 0xbb, 0x14,
0x92, 0xb9, 0xbb, 0x79, 0xe2, 0xa7, 0x24, 0xda, 0x05, 0x3a, 0x46, 0x45, 0x31,
0x6f, 0x16, 0x17, 0x34, 0xe8, 0xc5, 0xc5, 0x3b, 0x55, 0x61, 0xe9, 0x6e, 0x19,
0xf2, 0x95, 0xbb, 0x7f, 0xf1, 0xff, 0x01, 0x15, 0xb4, 0xc4, 0xcf, 0x00, 0xc8,
0xb8, 0x37, 0x13, 0x9a, 0x79, 0xaf, 0x29, 0x0c, 0xaa, 0xb8, 0xe4, 0xcd, 0x84,
0x8a, 0xee, 0xc5, 0xae, 0x7b, 0xd6, 0x3d, 0xc6, 0xcc, 0xa7, 0x83, 0x85, 0xa9,
0x30, 0x6d, 0xa6, 0xee, 0x8d, 0xa0, 0x7a, 0x50, 0xd8, 0xf7, 0x8d, 0x31, 0xf2,
0xae, 0xe7, 0xde, 0x06, 0x8e, 0x7b, 0xcf, 0xbb, 0x77, 0x15, 0xba, 0xef, 0x1d,
0x74, 0xae, 0x3d, 0xf7, 0xfc, 0xfb, 0x5e, 0x78, 0x5a, 0xc0, 0x5b, 0xdb, 0xfd,
0x03, 0xda, 0x09, 0x6c, 0xa7, 0xf5, 0x7e, 0xcc, 0x11, 0xc1, 0xbd, 0x1f, 0x9c,
0xa7, 0xe0, 0x06, 0xf4, 0x15, 0xa2, 0xf6, 0x40, 0x41, 0x78, 0x4f, 0x9e, 0xe7,
0x08, 0x9c, 0xb6, 0x8c, 0x74, 0x66, 0x23, 0x45, 0xf6, 0x70, 0xf1, 0x7d, 0x10,
0x96, 0x61, 0x14, 0x09, 0xb1, 0x90, 0x02, 0xca, 0x08, 0x25, 0x07, 0x0c, 0x15,
0x3a, 0x5f, 0xe9, 0xde, 0x2b, 0xef, 0xe9, 0xaf, 0x75, 0xee, 0xd5, 0xf7, 0x9a,
0x7b, 0xed, 0xfd, 0x34, 0x5a, 0x63, 0x22, 0xb2, 0x08, 0xb1, 0xd2, 0xdd, 0xeb,
0x09, 0x37, 0xd0, 0xd9, 0x6d, 0x0d, 0xf7, 0xc6, 0xfb, 0xce, 0x2c, 0x29, 0x98,
0xef, 0x2d, 0xf7, 0x3f, 0xfd, 0x5f, 0x0b, 0x62, 0x2b, 0x38, 0xdb, 0x7d, 0xd3,
0x46, 0x75, 0x9e, 0xd3, 0xec, 0xf7, 0x0e, 0xc8, 0xaa, 0xf4, 0x1d, 0x22, 0xaf,
0x0d, 0xab, 0x9d, 0xc4, 0xc3, 0x45, 0xfb, 0xb9, 0xef, 0x3d, 0x84, 0xe2, 0x04,
0xfa, 0xe9, 0x77, 0x32, 0x83, 0xf4, 0xbb, 0x8d, 0x38, 0x32, 0xf0, 0xde, 0xfb,
0xee, 0xfd, 0xf7, 0x81, 0xfb, 0xe0, 0x7d, 0x0c, 0x5c, 0xe8, 0xfe, 0xf7, 0xd1,
0x09, 0xff, 0x22, 0x89, 0xdc, 0xa7, 0x0a, 0x6a, 0x4b, 0xb6, 0x90, 0x28, 0x44,
0xef, 0x63, 0xd0, 0x64, 0x0a, 0x71, 0xa2, 0x4f, 0xdc, 0xa7, 0x0b, 0x46, 0x5b,
0xea, 0x3f, 0xf8, 0xfb, 0xb5, 0x69, 0xac, 0xa3, 0xe4, 0x7d, 0x9e, 0xee, 0x19,
0x2e, 0x32, 0x48, 0xc1, 0x33, 0x7d, 0x9f, 0xb9, 0xcf, 0xde, 0xe7, 0x40, 0xe5,
0xef, 0x8b, 0x44, 0x57, 0xb8, 0x2f, 0x00, 0xe7, 0x3a, 0x3d, 0x58, 0xbc, 0xff,
0x77, 0x11, 0x93, 0x85, 0xdf, 0xfe, 0x37, 0x23, 0x4f, 0x89, 0xd8, 0x96, 0x0b,
0xe5, 0xfb, 0xca, 0x7d, 0xf5, 0xbe, 0x76, 0xdf, 0x0f, 0xbe, 0x04, 0xab, 0x81,
0xfb, 0x3a, 0xd1, 0x34, 0x3a, 0xb1, 0x86, 0x3a, 0x6f, 0x77, 0xaa, 0x05, 0xb1,
0x1b, 0x73, 0x15, 0x56, 0x83, 0xd0, 0x0e, 0xdd, 0xcb, 0x3a, 0xdf, 0x1b, 0x3a,
0x3a, 0xbf, 0x72, 0x0e, 0x43, 0x33, 0x82, 0x32, 0x7a, 0x3f, 0x76, 0x3f, 0xde,
0x89, 0x21, 0xc1, 0x7a, 0x9f, 0xa0, 0x39, 0x7b, 0xc7, 0x76, 0x92, 0x96, 0x4c,
0xdd, 0x37, 0xef, 0xa7, 0x41, 0x2f, 0xfa, 0x67, 0xee, 0x67, 0xef, 0x07, 0x11,
0x7f, 0x1e, 0x33, 0x67, 0x0e, 0x92, 0x79, 0x62, 0xd1, 0x5f, 0x18, 0x2a, 0x2c,
0x80, 0x1a, 0x16, 0x2d, 0x02, 0x2e, 0xa1, 0x2c, 0xa3, 0xac, 0xa0, 0x34, 0x60,
0x5b, 0x72, 0xd4, 0x0a, 0xf5, 0x82, 0x53, 0xcf, 0x78, 0x08, 0x91, 0x2f, 0xaa,
0x86, 0xdb, 0x63, 0xa3, 0xfd, 0x57, 0xbd, 0xc0, 0x7c, 0xa0, 0x7f, 0x39, 0x25,
0xf3, 0xb2, 0x8b, 0xe6, 0xc6, 0x0a, 0x2c, 0x50, 0xd4, 0xc3, 0x00, 0xfc, 0x38,
0xd8, 0x5f, 0xd8, 0x44, 0x3e, 0x42, 0x7a, 0x8c, 0x03, 0x3a, 0xe8, 0x1b, 0xff,
0x6b, 0xd7, 0x68, 0x72, 0x1f, 0x78, 0xb4, 0x57, 0x40, 0xd7, 0x0d, 0xaa, 0xe7,
0xe1, 0xef, 0xe8, 0x13, 0xb4, 0xd5, 0x24, 0xc1, 0xfc, 0x87, 0xde, 0x87, 0x3e,
0x47, 0xdf, 0x83, 0xe0, 0x27, 0x8b, 0x66, 0x41, 0x48, 0x73, 0xd3, 0x05, 0xd1,
0x83, 0xf8, 0x41, 0x02, 0x4e, 0xe2, 0x90, 0xfe, 0x25, 0xb3, 0xcd, 0xb6, 0xf7,
0x90, 0x07, 0x39, 0xf8, 0x79, 0x50, 0x31, 0xcc, 0x82, 0x99, 0x82, 0xe2, 0x61,
0xae, 0x30, 0x22, 0x52, 0x3e, 0x4c, 0x41, 0xa2, 0x7a, 0x50, 0x43, 0xa7, 0x21,
0xf6, 0x99, 0xc8, 0x42, 0x67, 0x4c, 0x07, 0x4c, 0x4a, 0xcd, 0x52, 0x87, 0x5b,
0x2c, 0xb0, 0x0c, 0xa9, 0xf0, 0xcf, 0xed, 0x5e, 0x26, 0x3a, 0xed, 0x03, 0xa3,
0x88, 0x71, 0x29, 0xac, 0x80, 0xd3, 0x3d, 0x30, 0x8b, 0xfa, 0x9f, 0x32, 0x5b,
0x70, 0x18, 0x1e, 0x8c, 0x0f, 0x26, 0x5a, 0xd2, 0x55, 0x24, 0xb7, 0x23, 0x02,
0xcd, 0xb4, 0xcc, 0x42, 0xb0, 0xf5, 0x81, 0x82, 0xd4, 0x06, 0xda, 0xde, 0xf1,
0x76, 0xd0, 0x14, 0x1b, 0x9a, 0xbc, 0xd5, 0xf9, 0xc0, 0x2d, 0x72, 0x40, 0xb9,
0x1e, 0x78, 0x80, 0xdd, 0x28, 0xee, 0x87, 0x82, 0xb6, 0x82, 0x7d, 0xc3, 0xf3,
0xe0, 0x7d, 0x18, 0xf6, 0xf6, 0x14, 0xf9, 0xc5, 0xb8, 0x89, 0xa5, 0xed, 0x2d,
0xf6, 0x15, 0x7d, 0x0f, 0xfe, 0x87, 0x40, 0xbb, 0x87, 0x1f, 0x04, 0xc5, 0xb0,
0xdb, 0x41, 0x46, 0x4f, 0x58, 0x4c, 0x60, 0x27, 0x0b, 0x3d, 0x84, 0x1f, 0x22,
0xd0, 0xf4, 0x5a, 0xa3, 0x80, 0xb1, 0x87, 0x38, 0xa0, 0xa8, 0x38, 0x20, 0x4e,
0x3c, 0x8c, 0xc8, 0x92, 0x0f, 0x76, 0x6f, 0xea, 0x41, 0xee, 0x4d, 0x3f, 0x48,
0xc5, 0xd2, 0x40, 0x86, 0xae, 0x3d, 0xec, 0xc9, 0x3e, 0x74, 0x63, 0x76, 0xe6,
0x08, 0x9f, 0x7f, 0x28, 0x00, 0x17, 0x1f, 0x14, 0x18, 0x69, 0x31, 0x69, 0x47,
0xe9, 0xa1, 0xfc, 0x60, 0xc1, 0xbe, 0x51, 0x79, 0xa8, 0x3e, 0x74, 0x29, 0x25,
0xc5, 0xda, 0x43, 0x54, 0x2d, 0x2b, 0x4a, 0xa1, 0xeb, 0x27, 0x1e, 0x72, 0x50,
0x03, 0x74, 0xac, 0xfa, 0x43, 0x83, 0xa6, 0x14, 0xc5, 0x41, 0x42, 0x29, 0x8b,
0x9d, 0xd5, 0xd0, 0x69, 0xb7, 0x1e, 0xbb, 0x88, 0xaa, 0x23, 0x57, 0x17, 0x87,
0x69, 0x0d, 0x4b, 0x39, 0xf2, 0x30, 0xfa, 0xe0, 0x44, 0x6b, 0xc6, 0x1e, 0xb4,
0xd0, 0x8f, 0x43, 0x3e, 0xfd, 0xe3, 0xcd, 0x73, 0xc7, 0x7a, 0x82, 0xd8, 0x4e,
0x3e, 0x28, 0xe5, 0xba, 0xa2, 0x01, 0x52, 0x7d, 0x71, 0x0a, 0x92, 0x26, 0x91,
0x4e, 0x03, 0x1a, 0x21, 0x0b, 0xe1, 0xc6, 0x61, 0x22, 0x1e, 0x33, 0x0f, 0xb3,
0x0f, 0x0d, 0xf9, 0xdc, 0x83, 0x11, 0xab, 0x68, 0x99, 0xfe, 0xa5, 0x7d, 0xfe,
0xc1, 0x52, 0xb4, 0x16, 0xcd, 0x44, 0xbf, 0x40, 0xd7, 0x3c, 0x42, 0x66, 0xbd,
0xd3, 0xae, 0xfa, 0xe9, 0xf7, 0xf3, 0xc5, 0x87, 0x25, 0xa2, 0xb5, 0x17, 0xf9,
0x16, 0x5b, 0x71, 0xf9, 0x61, 0xe5, 0x41, 0x16, 0x28, 0x3b, 0x18, 0x8f, 0xcc,
0x47, 0x8c, 0xf3, 0x23, 0x0b, 0x90, 0x7a, 0x24, 0x3b, 0x60, 0x91, 0x0d, 0xcc,
0x79, 0xec, 0xfc, 0x7d, 0xe6, 0x23, 0x8f, 0xd0, 0x9e, 0xa2, 0xb3, 0xd8, 0xfd,
0xd8, 0x03, 0x3a, 0xea, 0x75, 0x17, 0xbd, 0x45, 0xfe, 0xa3, 0x95, 0x9c, 0xf2,
0xbd, 0x90, 0xf4, 0x3d, 0x06, 0x51, 0xbf, 0xe0, 0x51, 0xf8, 0x18, 0x28, 0xce,
0x58, 0x7a, 0x1d, 0xa2, 0x76, 0x34, 0xa5, 0x1f, 0x32, 0xf1, 0xa3, 0x04, 0xb4,
0xaf, 0x28, 0x7d, 0x14, 0xf9, 0xc4, 0xe4, 0x4e, 0x2b, 0x7b, 0x94, 0x43, 0xa2,
0x78, 0x0c, 0x15, 0x47, 0xe9, 0xfd, 0x44, 0xf9, 0x38, 0xa3, 0x2a, 0xff, 0xf6,
0x45, 0x91, 0xea, 0x31, 0x5c, 0x8c, 0x14, 0xd5, 0xb0, 0xd4, 0xd0, 0x99, 0x68,
0x1f, 0x63, 0x45, 0x5d, 0x27, 0x2b, 0xfd, 0xa3, 0xe1, 0xd1, 0xf8, 0x68, 0x22,
0xbc, 0x85, 0xdc, 0x4d, 0xcd, 0x8f, 0x96, 0xc7, 0x44, 0xd1, 0xfa, 0x18, 0x2f,
0xda, 0x1e, 0xed, 0x90, 0x3b, 0x1e, 0x9d, 0x8f, 0xc9, 0xa2, 0xeb, 0xd1, 0x47,
0xf6, 0xfc, 0x74, 0x7b, 0xfe, 0x3d, 0xa6, 0x8a, 0x9e, 0xc7, 0x6c, 0x31, 0x53,
0xf4, 0xd2, 0x71, 0x7c, 0x8f, 0x7e, 0x50, 0x81, 0x47, 0xad, 0x32, 0xf8, 0x18,
0x7a, 0xe4, 0xa2, 0x3d, 0x5e, 0xf4, 0x18, 0x9b, 0x7c, 0x11, 0x13, 0x86, 0x26,
0x42, 0xec, 0xa2, 0x80, 0xb1, 0xc7, 0x41, 0x79, 0xfc, 0x31, 0x41, 0xfb, 0x25,
0x81, 0x53, 0x8f, 0xe9, 0xc7, 0x0c, 0x70, 0x96, 0xc8, 0x72, 0x8f, 0x79, 0x82,
0x4b, 0xd2, 0xc2, 0x63, 0x11, 0x54, 0xa9, 0x93, 0x69, 0xdd, 0x9f, 0x47, 0xdd,
0x65, 0xf0, 0x15, 0x94, 0x2a, 0x4a, 0xb1, 0x58, 0x7b, 0xec, 0x07, 0x1e, 0x78,
0x2c, 0xb5, 0x47, 0x97, 0xd4, 0x56, 0x7f, 0x6c, 0x40, 0x92, 0x2b, 0x0e, 0x3e,
0xaa, 0x34, 0x43, 0x8f, 0xc3, 0x8f, 0x26, 0x6b, 0xa1, 0x38, 0x42, 0x62, 0x8c,
0x3e, 0x8e, 0x11, 0x3c, 0x4e, 0xe0, 0x04, 0x1d, 0x77, 0xf2, 0xb1, 0xda, 0x5e,
0xc3, 0xda, 0x29, 0xf0, 0x4d, 0x94, 0x72, 0x71, 0xfa, 0x71, 0x06, 0x78, 0xf6,
0x51, 0x4f, 0x6e, 0x46, 0x2e, 0x67, 0x85, 0xcc, 0x88, 0x15, 0x02, 0xe7, 0x1e,
0xe7, 0xa1, 0x5b, 0x78, 0x6c, 0x14, 0x17, 0x1f, 0x97, 0x1e, 0x97, 0x41, 0xaf,
0x3c, 0xea, 0x94, 0x8c, 0x27, 0xe6, 0x53, 0xd7, 0x13, 0x6e, 0xb0, 0x32, 0xd6,
0x53, 0x7f, 0x71, 0xd9, 0x47, 0x81, 0x16, 0xfa, 0xd9, 0x4f, 0xbf, 0xfc, 0xaf,
0x75, 0x4f, 0xff, 0xf8, 0x7b, 0xdd, 0x27, 0xde, 0x2f, 0xb2, 0x19, 0x9c, 0xf2,
0xdd, 0x4f, 0xf5, 0x62, 0x0f, 0xa4, 0xfc, 0xa7, 0xde, 0xa7, 0xbe, 0x27, 0xc1,
0x93, 0xf0, 0x49, 0xf4, 0x24, 0x7e, 0x92, 0x3c, 0x49, 0x9f, 0x64, 0x4f, 0x83,
0xc5, 0xb8, 0x3f, 0x21, 0x5f, 0x72, 0xba, 0xc9, 0xbd, 0x44, 0xfe, 0x34, 0xd4,
0x99, 0xfb, 0x23, 0x45, 0xc5, 0xd3, 0x38, 0x38, 0xe5, 0x93, 0x0a, 0xbe, 0xea,
0x27, 0x0d, 0x1d, 0x57, 0x0b, 0xac, 0xa3, 0x69, 0xfd, 0x93, 0x81, 0x50, 0xc3,
0xb0, 0x33, 0x82, 0x1a, 0x2b, 0x0e, 0x2a, 0x7d, 0xa2, 0x89, 0xa2, 0xe9, 0x69,
0xdc, 0x30, 0x5a, 0xcc, 0x62, 0xc4, 0xcc, 0x4f, 0xcd, 0x22, 0xab, 0x89, 0x59,
0xf0, 0x64, 0x7d, 0xb2, 0x3d, 0x4d, 0x16, 0xa7, 0x8b, 0x76, 0xd8, 0x39, 0x9e,
0x9c, 0x4f, 0x03, 0xc5, 0xa9, 0xa2, 0xeb, 0xc9, 0xfd, 0xa4, 0x25, 0x6f, 0x63,
0x67, 0x8a, 0xbf, 0x3d, 0x6d, 0x83, 0xf7, 0x3c, 0x79, 0x61, 0xbb, 0x82, 0x79,
0xe9, 0x7b, 0xf2, 0x3f, 0x05, 0x40, 0x07, 0x51, 0xe6, 0x68, 0xcb, 0xd0, 0x53,
0xf8, 0x29, 0xf2, 0x14, 0xfd, 0xa9, 0xb5, 0xb1, 0xa7, 0xf8, 0x53, 0x02, 0x7c,
0x12, 0x65, 0xbe, 0x98, 0x7a, 0x4a, 0x3f, 0x65, 0x9e, 0x6a, 0xc5, 0x2c, 0xb1,
0xc8, 0x3d, 0x2d, 0x14, 0xf3, 0x4f, 0x85, 0xa7, 0xe2, 0x53, 0x89, 0xf0, 0xe5,
0xa7, 0xca, 0x93, 0x55, 0x5a, 0x7d, 0xaa, 0x11, 0xae, 0x9f, 0x8e, 0x32, 0x00,
0x5c, 0x47, 0xa1, 0xda, 0xff, 0x27, 0xd1, 0x3f, 0xfa, 0x76, 0xf0, 0x69, 0xe8,
0x69, 0x11, 0xb5, 0x0f, 0x13, 0xcd, 0x52, 0x71, 0x84, 0xe0, 0xd1, 0xa7, 0x65,
0x3a, 0xa3, 0x31, 0xf0, 0xe3, 0x4f, 0x13, 0x4f, 0x1a, 0xac, 0x9c, 0xc9, 0xa7,
0xa9, 0x27, 0x46, 0x09, 0xeb, 0xc3, 0xc5, 0x2c, 0x35, 0x21, 0x67, 0x49, 0xbb,
0x4a, 0xd3, 0x4f, 0xac, 0xd2, 0xcc, 0xd3, 0x2c, 0xf1, 0xa2, 0x4a, 0x73, 0x4f,
0x9c, 0x12, 0xb7, 0xc4, 0x86, 0xcd, 0x3c, 0x24, 0x11, 0x57, 0x77, 0x89, 0x07,
0x7a, 0xe1, 0x69, 0xf1, 0x69, 0x89, 0x58, 0x2c, 0x3f, 0xf1, 0x4b, 0x3d, 0xa5,
0xde, 0xd2, 0xca, 0x4f, 0x79, 0xf4, 0x95, 0x84, 0x25, 0x41, 0x89, 0xec, 0x2b,
0x2a, 0xc6, 0xb3, 0x18, 0x94, 0xa8, 0xc4, 0x7c, 0xee, 0x7a, 0xb6, 0xe1, 0xa6,
0x1b, 0xc1, 0x4d, 0x48, 0x8b, 0xdb, 0xab, 0xa4, 0xa4, 0x34, 0xb2, 0x9e, 0xa9,
0x67, 0x8c, 0x99, 0x86, 0xfd, 0x3c, 0x2f, 0x92, 0x96, 0x38, 0xcf, 0x21, 0x1f,
0xf7, 0x99, 0xf7, 0x5c, 0x71, 0xcb, 0x88, 0x6f, 0xf7, 0xb3, 0xd5, 0x26, 0xf1,
0x59, 0x54, 0x3a, 0x72, 0x77, 0xea, 0x79, 0xf6, 0x58, 0xa4, 0x61, 0xfe, 0x73,
0x9f, 0xb5, 0x2e, 0x96, 0x97, 0x7a, 0x9f, 0xfb, 0x9e, 0x05, 0xcf, 0xc2, 0x67,
0x72, 0x53, 0x7c, 0x56, 0xc0, 0x5e, 0x5b, 0x12, 0x3f, 0x4b, 0x9e, 0xd5, 0x25,
0x55, 0xc9, 0x9c, 0x66, 0x4b, 0x94, 0x25, 0xe9, 0x73, 0x5a, 0x28, 0x7b, 0xee,
0x76, 0xca, 0x61, 0xe3, 0x26, 0x67, 0x81, 0x02, 0x94, 0xc8, 0xaf, 0x2b, 0x69,
0x4a, 0x59, 0x0b, 0xdb, 0xa8, 0x7c, 0x56, 0x3d, 0xf7, 0x38, 0xd5, 0xcf, 0xbd,
0x38, 0x4b, 0x0c, 0x25, 0xbe, 0xdf, 0xa7, 0x30, 0x22, 0x8a, 0xbe, 0x14, 0x77,
0x9a, 0x80, 0xcd, 0xed, 0x3e, 0x79, 0xce, 0x08, 0xb5, 0xf0, 0x99, 0xd1, 0x3b,
0xc0, 0x59, 0x4b, 0x23, 0x76, 0x4b, 0x49, 0xf7, 0xac, 0x7f, 0x36, 0x3c, 0x1b,
0x9f, 0x4d, 0xcf, 0xe6, 0x67, 0x36, 0x76, 0x6c, 0xcb, 0xb3, 0x9b, 0xe4, 0x6a,
0x7d, 0xb6, 0x95, 0xec, 0xa0, 0x5c, 0x25, 0x67, 0x89, 0x22, 0xbf, 0xfc, 0x98,
0x4d, 0x26, 0x93, 0xed, 0xd9, 0x20, 0xb3, 0x3f, 0x3b, 0x9e, 0x3d, 0x25, 0xe7,
0x33, 0xfd, 0x95, 0xc0, 0xb3, 0x17, 0x56, 0xee, 0x67, 0x5f, 0xa9, 0xf3, 0x35,
0xd2, 0x73, 0xa0, 0xe4, 0x7d, 0xf6, 0x97, 0x7e, 0xfa, 0x2e, 0xea, 0xa7, 0xdf,
0xbf, 0x12, 0xa5, 0xba, 0x33, 0x54, 0xf2, 0x3d, 0x47, 0x88, 0x3e, 0x56, 0xd2,
0x1b, 0xfc, 0x88, 0x14, 0x2f, 0x45, 0x4b, 0x46, 0x6d, 0xe0, 0x39, 0xf8, 0x1c,
0x7a, 0x0e, 0x96, 0xc2, 0xa5, 0xf0, 0xb3, 0xd9, 0x15, 0x79, 0x76, 0x91, 0x53,
0x21, 0x05, 0xcb, 0xe8, 0x73, 0xb2, 0x14, 0x7b, 0x8e, 0x93, 0x3a, 0xd3, 0xe0,
0xd9, 0x5a, 0x41, 0xfb, 0x17, 0xae, 0xe7, 0x59, 0x5b, 0x06, 0x9c, 0xc7, 0x9a,
0x84, 0x26, 0x57, 0x4a, 0x3d, 0xa7, 0x9f, 0x33, 0xcf, 0x0c, 0x7f, 0xb6, 0x94,
0x25, 0x96, 0x39, 0xc0, 0x06, 0x79, 0x92, 0xca, 0x83, 0x2a, 0x3c, 0x17, 0x9f,
0xcb, 0xa5, 0xd2, 0x73, 0xb5, 0x54, 0x2b, 0x45, 0x2d, 0x9d, 0x37, 0xb2, 0xcf,
0x15, 0x44, 0x28, 0xa2, 0xe4, 0x4b, 0x85, 0x52, 0xe5, 0xb9, 0x54, 0xaa, 0x3e,
0xd7, 0x9e, 0xfb, 0x89, 0xff, 0xc0, 0x73, 0xfd, 0xb9, 0x5e, 0x6a, 0x3c, 0xf7,
0x97, 0x06, 0x9f, 0x07, 0x60, 0x31, 0x44, 0xa4, 0xc3, 0xcf, 0x23, 0xc0, 0xa3,
0xcf, 0x63, 0x84, 0x1b, 0x07, 0x9c, 0x78, 0x9e, 0x7c, 0x9e, 0x7a, 0x6e, 0x3e,
0x37, 0x4a, 0x43, 0xa5, 0xe1, 0xd2, 0x48, 0x69, 0xfa, 0x79, 0xb4, 0x34, 0xf3,
0x3c, 0xfb, 0x3c, 0x08, 0x9f, 0x39, 0xba, 0x9f, 0xe6, 0x7f, 0x58, 0xb7, 0x67,
0xda, 0xf3, 0xe2, 0xf3, 0x58, 0x69, 0x89, 0xf0, 0xcb, 0xcf, 0x2b, 0xcf, 0x8c,
0x97, 0x89, 0x12, 0xf3, 0x85, 0x3e, 0x1b, 0x5f, 0xa8, 0x17, 0x9b, 0x9f, 0xfd,
0xc2, 0x79, 0xe1, 0xbe, 0x34, 0x4b, 0x93, 0xa5, 0xa9, 0x12, 0xef, 0xa5, 0xeb,
0xa5, 0xfb, 0xa5, 0xfc, 0xd3, 0x53, 0xdf, 0x0a, 0xb9, 0x55, 0xf6, 0xbc, 0xb8,
0x71, 0x9a, 0xcf, 0x94, 0xf8, 0xc4, 0x73, 0x9a, 0xf4, 0x66, 0x2f, 0xe8, 0xd9,
0xd2, 0x1c, 0xe8, 0xbe, 0x17, 0x01, 0xe8, 0xa5, 0xd2, 0x7c, 0x69, 0xa1, 0xb4,
0x08, 0x7e, 0xb9, 0x24, 0x7c, 0x11, 0xbd, 0x88, 0x5f, 0x56, 0x4a, 0x92, 0x17,
0x46, 0x19, 0xcf, 0x18, 0xd0, 0x32, 0x81, 0xbb, 0x50, 0x04, 0xce, 0xa0, 0x8d,
0x55, 0x9e, 0x74, 0x48, 0x31, 0xca, 0x54, 0x59, 0x06, 0x0d, 0xbb, 0xdc, 0x6d,
0x93, 0xbf, 0x70, 0x24, 0x56, 0x15, 0xa7, 0x4c, 0xf6, 0xb6, 0xb2, 0xe2, 0x45,
0xf9, 0xc2, 0x03, 0xcd, 0x23, 0xe7, 0x51, 0x0f, 0x28, 0xd5, 0x4b, 0x37, 0xd1,
0xf1, 0xcb, 0xbd, 0x65, 0xf5, 0x8b, 0xe6, 0x45, 0x0b, 0x3f, 0xdd, 0x8b, 0x1e,
0xd0, 0xf0, 0x62, 0x7c, 0x31, 0xbd, 0x98, 0x5f, 0x2c, 0x2f, 0xd6, 0x17, 0x1b,
0x78, 0x3b, 0xc9, 0xd0, 0xf1, 0xd2, 0x68, 0xbf, 0x41, 0x2f, 0xd3, 0xef, 0x1f,
0x08, 0x6e, 0x4c, 0x09, 0xcb, 0xa2, 0xb2, 0x98, 0xd0, 0x4e, 0x58, 0xf5, 0x21,
0xba, 0xeb, 0x45, 0x52, 0x8e, 0x63, 0x4f, 0x74, 0xbf, 0x14, 0x3c, 0x78, 0x9e,
0x12, 0x79, 0x5e, 0x12, 0x22, 0xef, 0x8b, 0xef, 0x45, 0x5a, 0xf6, 0xd3, 0x7d,
0x24, 0x87, 0x7d, 0x00, 0xb4, 0xac, 0x3c, 0x8e, 0x55, 0x17, 0x04, 0xa5, 0x32,
0xaa, 0x72, 0x58, 0x0d, 0x65, 0x93, 0x37, 0xf4, 0xa2, 0x84, 0xd6, 0x2e, 0x4d,
0x38, 0x55, 0xe5, 0xf0, 0x8b, 0xba, 0x1c, 0x81, 0x56, 0x03, 0x49, 0x14, 0x38,
0x8b, 0x7e, 0x8b, 0xbd, 0xc4, 0x5f, 0x62, 0xc0, 0x7a, 0x3c, 0xef, 0x26, 0x20,
0x1b, 0x34, 0x25, 0xdb, 0x79, 0x97, 0x53, 0x80, 0x65, 0x5d, 0xfa, 0xc5, 0x4d,
0x66, 0x9c, 0x11, 0x1e, 0x99, 0x17, 0x43, 0x59, 0x5f, 0x5e, 0x76, 0x66, 0x5f,
0x1c, 0x52, 0x1e, 0x6e, 0x1a, 0x39, 0xba, 0xf6, 0x3c, 0x70, 0xe1, 0xa5, 0x08,
0x58, 0x6a, 0xfb, 0xbc, 0x54, 0x5e, 0xec, 0xe5, 0x2a, 0x28, 0x4b, 0xd9, 0x60,
0x10, 0x23, 0x72, 0x0d, 0xb4, 0xb9, 0x6c, 0x2d, 0xdb, 0x10, 0xa3, 0xff, 0xc5,
0x44, 0xb7, 0x77, 0xe0, 0xa5, 0xfe, 0xd2, 0x78, 0xe9, 0xec, 0x67, 0x2f, 0x43,
0x2f, 0xc3, 0x2f, 0x8e, 0xb2, 0xb3, 0x3c, 0xf2, 0x22, 0x40, 0x26, 0x15, 0xe9,
0xe8, 0xcb, 0x18, 0xb4, 0x35, 0xcc, 0xca, 0x71, 0x62, 0x35, 0xf1, 0x32, 0xf9,
0xe2, 0x22, 0xbe, 0x53, 0x84, 0x6f, 0xbe, 0x4c, 0xbf, 0xcc, 0x10, 0x6a, 0x96,
0x8e, 0x32, 0xf7, 0x32, 0x4f, 0x28, 0x77, 0xd9, 0x57, 0x5e, 0x00, 0xb5, 0xf8,
0xb2, 0xf4, 0xb2, 0xfc, 0x32, 0x60, 0x58, 0x79, 0xb1, 0xda, 0x19, 0xaf, 0xfe,
0x72, 0xc4, 0xc3, 0x7c, 0xf5, 0xb4, 0x47, 0xf8, 0xd5, 0x5b, 0x66, 0xbd, 0xd2,
0xcf, 0x9b, 0xc0, 0xec, 0x57, 0xce, 0x2b, 0xf7, 0xf5, 0xaf, 0x4c, 0x42, 0x65,
0x1e, 0xa1, 0xbb, 0x5f, 0x83, 0xe5, 0x40, 0xb9, 0x87, 0x96, 0xf3, 0x5f, 0x7f,
0x79, 0x4e, 0x2b, 0xf7, 0xbe, 0xf6, 0xbd, 0x86, 0x49, 0x36, 0x51, 0x02, 0x05,
0xaf, 0xc2, 0x57, 0x11, 0x6d, 0x23, 0xa6, 0x71, 0xbc, 0x2c, 0x79, 0x8d, 0xb5,
0x67, 0x16, 0xe1, 0x7d, 0x98, 0x9b, 0x32, 0x42, 0xc9, 0x01, 0xe3, 0x3a, 0xbb,
0x5f, 0xf1, 0xaa, 0x7c, 0x4d, 0x94, 0x55, 0xe0, 0x14, 0xb8, 0x65, 0xaa, 0x5f,
0x93, 0x24, 0x52, 0x0a, 0x30, 0x57, 0xce, 0x94, 0xb3, 0x65, 0xcd, 0x6b, 0x9a,
0xee, 0x2b, 0x2d, 0x1d, 0x31, 0x0f, 0x5e, 0x47, 0xd3, 0x05, 0x5a, 0xa7, 0x7f,
0x35, 0x10, 0x89, 0x11, 0xb0, 0x08, 0x99, 0xe9, 0xb5, 0x54, 0x56, 0x78, 0xcb,
0xa0, 0xcc, 0xaf, 0x96, 0x57, 0x2b, 0xa4, 0xe3, 0xde, 0x4a, 0xd9, 0xf6, 0xea,
0xb7, 0xd8, 0x5f, 0x07, 0x31, 0x8b, 0x86, 0xe4, 0x0e, 0xc8, 0x9c, 0xaf, 0x1a,
0x4b, 0xb5, 0xac, 0x96, 0xbb, 0x5e, 0xdd, 0xe0, 0x82, 0x46, 0x0f, 0x1d, 0xd5,
0xfb, 0x23, 0xd7, 0xd7, 0x5a, 0x59, 0xf7, 0xe3, 0xef, 0xdd, 0x5f, 0x03, 0x44,
0x12, 0x24, 0xb0, 0xbf, 0x1c, 0x7a, 0x0d, 0x13, 0x2a, 0xf2, 0x3a, 0x80, 0x1a,
0xd8, 0xca, 0x98, 0xfa, 0xb7, 0xf7, 0x2e, 0x44, 0xdb, 0x28, 0xc7, 0x5e, 0xe3,
0xaf, 0x89, 0x76, 0x3b, 0x6d, 0x71, 0xb5, 0xff, 0xa7, 0xf7, 0xef, 0xc9, 0xd7,
0x14, 0xa4, 0x69, 0x14, 0x16, 0xe6, 0xb2, 0xc7, 0x91, 0x01, 0x95, 0x25, 0x3e,
0x89, 0xce, 0x2f, 0xd4, 0x59, 0xfa, 0xbe, 0x9a, 0x7b, 0xcd, 0xbf, 0x0e, 0xa1,
0x96, 0xc2, 0x6b, 0x91, 0xce, 0xae, 0x04, 0x5c, 0xa6, 0xe9, 0xca, 0xeb, 0x3f,
0x9f, 0xd6, 0xaa, 0xaf, 0x1e, 0x7d, 0x0d, 0xf2, 0xfe, 0xd7, 0x01, 0xc0, 0xfa,
0x6b, 0x83, 0xb6, 0x19, 0x04, 0x1e, 0x7a, 0x15, 0xfb, 0x6d, 0x88, 0x3c, 0xfc,
0xca, 0x21, 0xef, 0xe5, 0xba, 0xb0, 0xf6, 0x46, 0xca, 0x7f, 0xfb, 0x8e, 0xc0,
0x66, 0x0c, 0xfc, 0x28, 0xf1, 0x19, 0xea, 0xfc, 0xe6, 0x3c, 0x5a, 0x9e, 0x21,
0x6f, 0x82, 0xc6, 0x20, 0x9f, 0x28, 0x2b, 0x24, 0xc3, 0xe5, 0x71, 0x50, 0x83,
0xf0, 0x16, 0x8a, 0x26, 0x5e, 0x87, 0xd1, 0xfe, 0x70, 0x60, 0xb2, 0xdd, 0xcb,
0x24, 0x56, 0xf3, 0x75, 0xfa, 0x75, 0x06, 0xdc, 0x14, 0xca, 0x64, 0x79, 0x96,
0xc4, 0xf2, 0xb8, 0xe7, 0x5e, 0x53, 0xc6, 0x26, 0xf4, 0xf3, 0xaf, 0x0b, 0x90,
0x4c, 0x97, 0x17, 0x5f, 0x97, 0x5e, 0x97, 0x5f, 0x57, 0xda, 0x76, 0x9d, 0x0c,
0xfc, 0x12, 0xc6, 0xdb, 0x62, 0x99, 0xf9, 0xb6, 0x50, 0xee, 0x7a, 0xc3, 0x6d,
0x8a, 0x7e, 0x1a, 0x5d, 0x2a, 0xcf, 0x96, 0x59, 0x6f, 0xd4, 0x1b, 0xfb, 0x6d,
0xb9, 0x3c, 0x57, 0xe6, 0x40, 0xc3, 0x45, 0x49, 0x3a, 0x67, 0xca, 0xbc, 0xb7,
0xee, 0xb7, 0xf9, 0x72, 0xcf, 0x1b, 0xff, 0x8d, 0x7e, 0x52, 0xad, 0xf4, 0xd1,
0x94, 0xe0, 0x4d, 0xf8, 0x26, 0x22, 0x74, 0x2f, 0xa0, 0xf8, 0x8d, 0x51, 0x29,
0xb5, 0xff, 0xdf, 0x51, 0xd0, 0x2b, 0xa4, 0xb6, 0x21, 0xf2, 0x1e, 0x41, 0xfa,
0x26, 0x7b, 0x63, 0x55, 0x30, 0xf7, 0xde, 0x94, 0xc4, 0x56, 0xf5, 0xa6, 0x06,
0xee, 0x82, 0x44, 0xf3, 0x26, 0x7f, 0xf3, 0x76, 0x9e, 0xb8, 0xb5, 0x6f, 0x54,
0xa5, 0xf3, 0xf6, 0x1c, 0x16, 0x16, 0x9c, 0x1e, 0xfa, 0x37, 0x4e, 0x85, 0x5d,
0xf9, 0xe5, 0xae, 0x57, 0x31, 0x40, 0x67, 0x44, 0x31, 0xbd, 0x99, 0xdf, 0x2c,
0x6f, 0x9d, 0xff, 0x7f, 0xe1, 0xad, 0x5e, 0xb6, 0x81, 0xb3, 0xbf, 0x0d, 0x96,
0xbb, 0x2b, 0xbc, 0x8a, 0x83, 0xd6, 0x38, 0x09, 0x76, 0xbd, 0xb9, 0x3b, 0x96,
0x5c, 0xad, 0xe7, 0xad, 0xe1, 0xf7, 0xbe, 0x85, 0xb5, 0xbe, 0xb7, 0x9e, 0x8a,
0x82, 0xdc, 0x4d, 0xfd, 0x6f, 0x81, 0xb7, 0xe0, 0x9b, 0x51, 0xc6, 0x91, 0x55,
0x34, 0xa1, 0xb7, 0x30, 0x6d, 0x1b, 0x79, 0x93, 0xfa, 0xa2, 0xa0, 0x45, 0x95,
0xd8, 0x9b, 0xb0, 0x62, 0x35, 0xf5, 0x56, 0xe2, 0xe0, 0x04, 0x95, 0xc4, 0x5b,
0xf2, 0xcd, 0xa3, 0x33, 0x1a, 0xfa, 0x2a, 0x7c, 0xe4, 0xd6, 0x4d, 0x6e, 0x91,
0x3e, 0xb4, 0x23, 0xf5, 0xa6, 0x75, 0xa5, 0x61, 0x91, 0x41, 0x49, 0x74, 0xe6,
0x6b, 0xb6, 0x53, 0xf3, 0x1c, 0x66, 0x5e, 0xee, 0x4d, 0x5c, 0xc9, 0xbf, 0x15,
0x20, 0x2b, 0xbe, 0x49, 0x2a, 0xae, 0x4a, 0x92, 0x3c, 0x0f, 0xe9, 0x02, 0xb2,
0xce, 0xd7, 0xbd, 0xd2, 0x4a, 0xe9, 0xad, 0xfc, 0x16, 0x16, 0xcf, 0x5a, 0x19,
0xed, 0x37, 0x1a, 0xb0, 0xac, 0xbe, 0xd5, 0xde, 0xfa, 0xdf, 0x06, 0x40, 0xd5,
0x49, 0xac, 0xc6, 0xdb, 0xe0, 0x9b, 0x8c, 0xee, 0x95, 0xa1, 0x4e, 0xf4, 0x05,
0x99, 0xbc, 0x32, 0xfc, 0x36, 0xf2, 0xa6, 0xac, 0x8c, 0xfe, 0xe8, 0xe7, 0xca,
0xd8, 0x1b, 0xcf, 0x31, 0x0e, 0x5a, 0x5d, 0x99, 0xa0, 0xad, 0x26, 0xdf, 0x34,
0x15, 0x6d, 0x65, 0x0a, 0x5c, 0x4a, 0x1e, 0x11, 0xdb, 0xec, 0x5c, 0x5d, 0x55,
0xd3, 0x04, 0x37, 0x4d, 0xf4, 0x33, 0x6f, 0xb3, 0x6f, 0xba, 0xca, 0xdc, 0x1b,
0x8f, 0x7e, 0xb3, 0x3e, 0x0f, 0xa9, 0x5b, 0x6c, 0xc1, 0xd9, 0xb4, 0xf0, 0xa6,
0xaf, 0x2c, 0x82, 0x1b, 0xc2, 0x6c, 0x5c, 0x22, 0xb6, 0xcb, 0x6f, 0x2b, 0x6f,
0x36, 0x13, 0xe3, 0xdd, 0x54, 0x61, 0xbe, 0x9b, 0x2b, 0x0d, 0x47, 0xd7, 0xbb,
0xc9, 0x60, 0x40, 0x4e, 0x25, 0x0b, 0xeb, 0x9d, 0x7a, 0x37, 0x56, 0xd8, 0xef,
0xa4, 0x5f, 0xf5, 0x9c, 0xf7, 0x5f, 0x46, 0x8f, 0x70, 0x59, 0x21, 0xef, 0x9d,
0x87, 0xb5, 0xda, 0xfd, 0xde, 0x43, 0x6b, 0xf9, 0xef, 0x96, 0x4a, 0xef, 0x7b,
0xdf, 0xfb, 0x9c, 0x55, 0xf0, 0x6e, 0xad, 0x38, 0x7e, 0x7c, 0xd7, 0x41, 0x74,
0xbd, 0x5e, 0x11, 0x70, 0x97, 0xcb, 0x56, 0xb1, 0x57, 0x62, 0x16, 0xf1, 0xbb,
0x03, 0xf7, 0x6b, 0xc9, 0xbb, 0xb3, 0xe2, 0xa8, 0x48, 0x7f, 0x8a, 0x2c, 0xa3,
0x69, 0x39, 0xb0, 0xe2, 0x7d, 0x4c, 0xab, 0x7c, 0x57, 0xbd, 0xbb, 0x2b, 0xe3,
0x98, 0x7f, 0xea, 0x77, 0x0d, 0x64, 0xbe, 0x8a, 0xf6, 0x5d, 0xf7, 0xae, 0x7f,
0xf7, 0x54, 0xa2, 0x62, 0xbf, 0xc2, 0x5b, 0xb1, 0xab, 0x26, 0xb1, 0x42, 0xfb,
0xdd, 0xfe, 0x8a, 0xe1, 0xdd, 0xf8, 0x1e, 0xf5, 0x98, 0xde, 0xcd, 0xef, 0x41,
0xd2, 0xa3, 0x96, 0xf7, 0x90, 0x31, 0x20, 0x52, 0x8b, 0xf9, 0x9d, 0x77, 0x60,
0xd6, 0x77, 0xdb, 0x7b, 0x00, 0x3a, 0x3b, 0xa9, 0xc3, 0xf1, 0xee, 0x04, 0x76,
0xbd, 0xbb, 0xdf, 0x43, 0x95, 0x70, 0x65, 0x16, 0xa3, 0xee, 0x01, 0xef, 0x45,
0x89, 0x54, 0x7c, 0xef, 0x01, 0x3c, 0xd9, 0xf9, 0x89, 0x5d, 0x8c, 0x1e, 0x9f,
0x41, 0x45, 0xe0, 0xbd, 0x1f, 0x6d, 0x0d, 0xbe, 0xc7, 0x2b, 0xd3, 0x64, 0xac,
0x13, 0x95, 0xd0, 0xfb, 0x92, 0x31, 0xfc, 0xee, 0xb3, 0x47, 0xde, 0x8b, 0xc6,
0x69, 0x75, 0xf4, 0x3d, 0x06, 0x8f, 0x24, 0xec, 0xe3, 0xef, 0x89, 0x4e, 0x9b,
0x92, 0xef, 0xa9, 0xf7, 0xb2, 0x65, 0xc8, 0x94, 0x7e, 0x4f, 0x57, 0xb2, 0x95,
0x54, 0x25, 0xf3, 0xd3, 0x2a, 0xc8, 0xbc, 0x33, 0x15, 0x59, 0x62, 0x99, 0xfb,
0xa9, 0x0f, 0x72, 0x15, 0x36, 0xe6, 0x72, 0x1e, 0x92, 0x01, 0x59, 0xd8, 0x57,
0x20, 0xf6, 0x05, 0x70, 0xc5, 0xf7, 0x22, 0xa1, 0x4b, 0xef, 0x7d, 0xa2, 0xf2,
0x7b, 0x85, 0x78, 0x54, 0xe8, 0x68, 0x33, 0x92, 0x72, 0xa5, 0x54, 0xa9, 0xbe,
0xd7, 0x2a, 0xf9, 0x4a, 0xed, 0xbd, 0xbf, 0xc2, 0xf3, 0xf7, 0xbf, 0x0f, 0x54,
0x06, 0xde, 0xeb, 0xd0, 0xd7, 0xdf, 0x9b, 0xd1, 0x41, 0xe0, 0xc6, 0x5f, 0x33,
0xad, 0x32, 0x5c, 0x69, 0xbc, 0xcb, 0xfc, 0x23, 0xe0, 0xc7, 0xc6, 0x03, 0xfa,
0xd1, 0xca, 0x58, 0x25, 0x81, 0x99, 0xa2, 0xb4, 0x8f, 0x43, 0x32, 0xf8, 0x3e,
0xf4, 0xce, 0xb5, 0x0c, 0xbf, 0x8f, 0xbc, 0x4f, 0x80, 0xd3, 0x5a, 0x26, 0x2b,
0xa3, 0xa4, 0xa6, 0x31, 0x40, 0x0a, 0xed, 0x36, 0x84, 0x72, 0x16, 0x89, 0x76,
0x1c, 0xdc, 0xc4, 0xfb, 0xe4, 0xbb, 0x53, 0x3a, 0x05, 0x2b, 0x66, 0x15, 0x19,
0x54, 0xa6, 0xde, 0xeb, 0xe8, 0x9f, 0xe9, 0x0a, 0xab, 0x4a, 0xbf, 0x89, 0x82,
0x26, 0x48, 0x76, 0x85, 0x26, 0xdd, 0xba, 0xb9, 0xca, 0x3c, 0x64, 0x3d, 0x64,
0xdf, 0x5e, 0xa8, 0x4c, 0xbf, 0xe7, 0xc9, 0xf3, 0xf3, 0x0c, 0xb4, 0x69, 0x43,
0xd5, 0x35, 0xfb, 0xbe, 0x54, 0x99, 0x7b, 0x9f, 0x7f, 0x5f, 0x78, 0xaf, 0x9b,
0x17, 0xdf, 0x97, 0xde, 0x97, 0xdf, 0x57, 0xde, 0x19, 0x1f, 0x38, 0xad, 0x2b,
0xcc, 0x8f, 0xc5, 0xca, 0x32, 0xc9, 0x7e, 0x91, 0x5e, 0x8d, 0x5d, 0x90, 0xb3,
0x3e, 0xa8, 0x0f, 0xf6, 0x07, 0xfd, 0x5e, 0xa8, 0xda, 0xe7, 0xe2, 0x7c, 0xb0,
0x9d, 0xf3, 0x88, 0x9d, 0x96, 0x53, 0xd5, 0xae, 0x2a, 0xf7, 0x43, 0xe6, 0x5c,
0xa9, 0xe4, 0x2d, 0x8b, 0x90, 0x2c, 0xd8, 0x78, 0x1f, 0x33, 0xbf, 0x9c, 0x3b,
0x4a, 0x92, 0x63, 0x37, 0xed, 0xdd, 0xf3, 0xc1, 0xad, 0xf2, 0x3f, 0xba, 0x21,
0xeb, 0xfd, 0xe8, 0x83, 0xac, 0xb7, 0x2a, 0xf8, 0xe8, 0xab, 0x0a, 0x3f, 0x7a,
0xaa, 0xfc, 0xaa, 0xe8, 0x43, 0xfc, 0xc1, 0xab, 0x72, 0xa0, 0x93, 0x10, 0x6b,
0x46, 0xf5, 0x9f, 0xa7, 0x88, 0x14, 0x9a, 0x80, 0x3b, 0x86, 0xa7, 0x6d, 0x19,
0x28, 0x19, 0x2c, 0xc4, 0x55, 0xf9, 0x87, 0xa2, 0xaa, 0xf8, 0x50, 0x7e, 0xc8,
0xc1, 0x4d, 0x39, 0x38, 0x5e, 0xd5, 0x87, 0x46, 0x23, 0xac, 0xaa, 0xaa, 0xd2,
0xaa, 0xfa, 0x43, 0x52, 0x15, 0x54, 0x35, 0x1f, 0xa2, 0xaa, 0xf6, 0xc3, 0x45,
0xdf, 0x49, 0x75, 0x1f, 0x9d, 0x1d, 0x13, 0xf7, 0x17, 0xfd, 0xc7, 0x32, 0x56,
0x8e, 0xe1, 0xc3, 0xf8, 0xc1, 0x74, 0x9a, 0xa0, 0xd1, 0x57, 0xcd, 0x1f, 0x96,
0x76, 0x8b, 0xb1, 0x6a, 0xad, 0x1f, 0xb6, 0x0f, 0xfb, 0x87, 0x83, 0xd8, 0x97,
0x8c, 0x9a, 0xaa, 0xb3, 0x5d, 0xb7, 0xd3, 0xf5, 0x61, 0xa8, 0x46, 0xdc, 0xee,
0x8f, 0x8c, 0xc5, 0xf3, 0xa1, 0xae, 0x6a, 0x49, 0x8e, 0xba, 0x4e, 0xa6, 0x5e,
0xd8, 0xf8, 0x3e, 0xfc, 0x6d, 0xcb, 0x8f, 0xe0, 0x47, 0x08, 0xd8, 0x48, 0x74,
0x56, 0xfa, 0xcc, 0xb0, 0xdb, 0x6d, 0x55, 0x2b, 0x24, 0xe1, 0x0f, 0x53, 0x35,
0x42, 0x22, 0xcb, 0x03, 0x9d, 0xf3, 0xf9, 0xc3, 0x5d, 0x8d, 0x7d, 0xc4, 0x3f,
0xfc, 0x55, 0x4f, 0x35, 0xf1, 0x91, 0xfc, 0x48, 0x41, 0x9f, 0x46, 0xc9, 0x7c,
0x38, 0xaa, 0xd9, 0x8f, 0xdc, 0x47, 0xfe, 0xa3, 0x00, 0xae, 0xf8, 0xe1, 0x84,
0x7f, 0x09, 0x54, 0xf9, 0xa3, 0xf2, 0xe1, 0xab, 0x56, 0x3f, 0x6a, 0xa0, 0xcd,
0xd5, 0x58, 0xd8, 0x55, 0xb5, 0x90, 0xba, 0xbc, 0x80, 0xfd, 0x90, 0x0d, 0xd0,
0x2d, 0x0d, 0x57, 0xeb, 0x1f, 0x6e, 0xb4, 0x3e, 0x00, 0x79, 0xe3, 0x63, 0xf0,
0x23, 0x58, 0x1d, 0x82, 0x26, 0x54, 0x8d, 0x56, 0x87, 0x3b, 0x7d, 0x31, 0x02,
0x6a, 0xf4, 0x63, 0x0c, 0x70, 0xfc, 0x23, 0x52, 0x9d, 0x71, 0x4e, 0x7c, 0x4c,
0x12, 0x5d, 0xac, 0xba, 0xe4, 0x1f, 0x71, 0xa7, 0x49, 0xdc, 0x04, 0x81, 0x53,
0xb4, 0x4f, 0x13, 0x38, 0x5e, 0x0d, 0xa3, 0xf7, 0x52, 0xd5, 0x4c, 0x75, 0xe6,
0x63, 0xf6, 0x63, 0xee, 0x23, 0x59, 0x9d, 0xfe, 0x28, 0xc0, 0x2a, 0x5b, 0x9d,
0xff, 0x58, 0xf8, 0x58, 0xfc, 0x58, 0xfa, 0x58, 0xfe, 0x58, 0xf9, 0xc8, 0x55,
0xed, 0x55, 0xc6, 0x27, 0xe6, 0xee, 0x67, 0xbe, 0x5a, 0x84, 0xb6, 0x0b, 0x34,
0xeb, 0x93, 0xf4, 0x6a, 0x95, 0xfa, 0x64, 0x83, 0xe2, 0xa0, 0x70, 0x3f, 0xed,
0xd8, 0xbb, 0xcb, 0x74, 0x4f, 0xf2, 0x88, 0xbe, 0xfb, 0xb3, 0xe7, 0xb3, 0x4c,
0x9e, 0x1f, 0xfc, 0x72, 0x9e, 0xa2, 0x42, 0x74, 0xfc, 0xcf, 0x5e, 0xe8, 0xa4,
0xb0, 0xad, 0xe3, 0xb9, 0x54, 0x08, 0x6d, 0xdf, 0x67, 0xb5, 0x3d, 0x67, 0xb0,
0xcb, 0x09, 0x3e, 0x9b, 0x38, 0x59, 0xec, 0x26, 0xe9, 0x8f, 0xf3, 0x85, 0xec,
0xc9, 0xc2, 0x4f, 0xa3, 0x50, 0xf4, 0xd9, 0xa8, 0x0e, 0xc0, 0xa6, 0x56, 0x65,
0x48, 0xc5, 0x9f, 0x21, 0xfd, 0x20, 0x89, 0x54, 0x6f, 0xf7, 0x53, 0x75, 0xb4,
0xed, 0xfb, 0x39, 0x52, 0x1d, 0xae, 0x0e, 0x11, 0xa9, 0xf4, 0x53, 0x86, 0xf8,
0x63, 0x55, 0xf9, 0xa7, 0xe2, 0x53, 0xf9, 0x39, 0x5e, 0x55, 0x1b, 0x55, 0x9f,
0x13, 0xed, 0x99, 0x85, 0xa2, 0xfe, 0x9c, 0x04, 0xd4, 0x7c, 0x6a, 0x3f, 0x75,
0x9f, 0x61, 0x72, 0x0b, 0xd1, 0x7f, 0x2a, 0x4d, 0x06, 0x92, 0xeb, 0x74, 0xd5,
0xf8, 0x69, 0xfa, 0x34, 0x7f, 0x2e, 0xd9, 0x2c, 0x9f, 0xcd, 0xaa, 0xf5, 0xd3,
0x06, 0xe9, 0x4c, 0xd5, 0xfe, 0x29, 0x73, 0x0f, 0x9b, 0x1c, 0xd8, 0x39, 0x67,
0xe9, 0x96, 0x39, 0x3e, 0x9d, 0xc8, 0xd4, 0x09, 0xad, 0xeb, 0x93, 0x3e, 0x33,
0x88, 0x66, 0x01, 0x70, 0xb1, 0xea, 0xfe, 0x5c, 0x6a, 0xe7, 0x89, 0x27, 0x8b,
0xe5, 0x6a, 0x80, 0x9c, 0xb3, 0x83, 0xb2, 0x6e, 0xac, 0x75, 0x46, 0xcd, 0xf3,
0x39, 0xe5, 0x75, 0xaa, 0x56, 0xaa, 0xde, 0x4f, 0xdf, 0xa7, 0xff, 0x93, 0x55,
0xeb, 0x47, 0xcb, 0xb5, 0xed, 0xff, 0x5b, 0xfb, 0x53, 0xe2, 0x0a, 0x7e, 0x86,
0x3e, 0xc3, 0x9f, 0x15, 0x5d, 0x57, 0x2d, 0xf2, 0x19, 0xd1, 0xba, 0x54, 0xfd,
0x9a, 0x86, 0x4c, 0xee, 0x66, 0xd6, 0xa2, 0x9f, 0x31, 0xd4, 0xe1, 0x30, 0x99,
0x3d, 0xb3, 0xea, 0x38, 0xa9, 0x2d, 0x41, 0xd7, 0x99, 0xfc, 0x1c, 0xd0, 0xe4,
0xac, 0xa9, 0x4f, 0x4e, 0xad, 0xe0, 0x4f, 0xa9, 0xd3, 0x9f, 0xdc, 0x9a, 0x19,
0xbd, 0xd9, 0x5d, 0xa3, 0x67, 0x8c, 0x5e, 0x88, 0x35, 0x9c, 0xf9, 0xcc, 0x7e,
0xe6, 0x3e, 0x79, 0xb5, 0xfc, 0x67, 0xe1, 0xb3, 0x5b, 0xa7, 0x57, 0x3a, 0x4d,
0x54, 0xad, 0xa7, 0x56, 0xfc, 0x2c, 0x91, 0x18, 0xec, 0x5a, 0x50, 0x51, 0xfe,
0xec, 0xab, 0x89, 0x6b, 0x43, 0x8a, 0x0a, 0x24, 0x55, 0x22, 0xed, 0xad, 0xd5,
0x80, 0xfb, 0x3f, 0x07, 0x3e, 0xe5, 0xb5, 0xfa, 0x67, 0xe3, 0xd3, 0x4d, 0xee,
0x8b, 0x23, 0x3e, 0xad, 0x50, 0x82, 0xd8, 0x83, 0x9f, 0x43, 0xb2, 0xa1, 0x4f,
0x21, 0xa8, 0x61, 0x3a, 0x0f, 0x11, 0xe8, 0x91, 0xcf, 0x65, 0x9b, 0xa0, 0xc6,
0x07, 0xc5, 0x95, 0x54, 0x31, 0x9f, 0x46, 0x3f, 0xb9, 0xca, 0xb1, 0xcf, 0x71,
0x58, 0x28, 0x21, 0x9b, 0x00, 0x9e, 0xfc, 0x9c, 0xfa, 0x6c, 0x02, 0x4f, 0x7f,
0xce, 0x00, 0xce, 0x7e, 0xca, 0x20, 0x9f, 0xfb, 0x9c, 0xff, 0x5c, 0x00, 0xa7,
0x00, 0xbd, 0xd8, 0x9e, 0x11, 0x24, 0xf7, 0xa5, 0xcf, 0x65, 0xd0, 0x21, 0x85,
0xc4, 0xac, 0xaa, 0x8d, 0x9a, 0x56, 0x3e, 0x19, 0xdf, 0xec, 0x44, 0x6e, 0xae,
0x69, 0x09, 0x66, 0x7e, 0xeb, 0xfa, 0x46, 0x9e, 0x5c, 0xbf, 0x19, 0x6b, 0x0b,
0xda, 0x9c, 0x50, 0x53, 0xb3, 0xd4, 0x1c, 0x35, 0x8f, 0x2a, 0xee, 0xa5, 0xbe,
0xc5, 0xad, 0xba, 0x1a, 0xfb, 0x1b, 0xe7, 0x9b, 0xad, 0xc6, 0xfd, 0xa6, 0xae,
0xe9, 0xdb, 0x5f, 0x1f, 0xd5, 0x74, 0x42, 0x37, 0x99, 0x7f, 0xbc, 0x6f, 0xdd,
0xdf, 0x7a, 0xbe, 0xf1, 0xbf, 0xf5, 0x7e, 0xd3, 0x93, 0x38, 0x19, 0xf9, 0xb0,
0xb3, 0xef, 0x9b, 0xe0, 0x9b, 0xf0, 0xdb, 0x08, 0x6e, 0x21, 0x41, 0xff, 0x18,
0x99, 0x6b, 0xa3, 0xd0, 0x89, 0xbe, 0x39, 0x6b, 0xe2, 0x6f, 0x2b, 0x68, 0x87,
0xb5, 0xe6, 0xaa, 0x79, 0x20, 0x99, 0xb7, 0xfa, 0x6b, 0x52, 0xd4, 0xea, 0xae,
0xc9, 0xbe, 0xc9, 0x81, 0xa3, 0x6e, 0x8f, 0x54, 0xf1, 0x4d, 0xf9, 0xcd, 0xe3,
0x55, 0x81, 0xcb, 0xb7, 0x4f, 0xdc, 0x6f, 0x3e, 0xd8, 0x2d, 0xfb, 0x35, 0xdf,
0xb4, 0x24, 0x3b, 0xdd, 0x37, 0xfd, 0x37, 0x6f, 0x4d, 0xf2, 0x6d, 0x8c, 0xbc,
0x89, 0x18, 0xb6, 0x07, 0x48, 0x9d, 0x86, 0x6f, 0xf1, 0x5a, 0xb0, 0x96, 0xa8,
0x75, 0xfe, 0x72, 0xed, 0x9b, 0xe9, 0x5b, 0xe4, 0x47, 0xeb, 0xe0, 0x65, 0xf9,
0x46, 0xbf, 0x21, 0x76, 0x58, 0xbf, 0xd9, 0xbe, 0xb9, 0xb5, 0xb1, 0x9a, 0xfd,
0x5b, 0xb8, 0x96, 0xac, 0x85, 0x88, 0x85, 0x55, 0xe7, 0xf8, 0xe6, 0x24, 0x16,
0x94, 0xc7, 0xf5, 0xcd, 0xfd, 0xcd, 0xab, 0xf3, 0xb4, 0x33, 0xa9, 0x15, 0x6b,
0x5e, 0xe0, 0x6c, 0xcd, 0xf7, 0xad, 0x00, 0xbb, 0x5c, 0xad, 0x54, 0xcb, 0x00,
0x9b, 0x6a, 0x11, 0xa3, 0x1f, 0x72, 0x4f, 0xfb, 0xff, 0xff, 0xac, 0x05, 0xbe,
0x05, 0xbf, 0xa5, 0x6a, 0x21, 0xe2, 0xcd, 0x30, 0x85, 0x31, 0x2b, 0x7b, 0x74,
0x61, 0x70, 0x91, 0xff, 0xa7, 0xbd, 0xaf, 0xdc, 0x6e, 0x5e, 0xd9, 0xb6, 0x7c,
0x16, 0xc7, 0x61, 0x34, 0x33, 0x33, 0x3b, 0xec, 0x30, 0x9b, 0x05, 0xb6, 0x14,
0xa6, 0xe7, 0xea, 0x07, 0x89, 0x19, 0x62, 0xe6, 0x3c, 0xc3, 0xe9, 0xe9, 0xfa,
0x74, 0x7c, 0xb2, 0xf7, 0xb9, 0x7d, 0x7b, 0xf4, 0x9f, 0xdb, 0x30, 0x3a, 0x63,
0xd4, 0xaa, 0x05, 0xb3, 0x56, 0x71, 0xa9, 0x24, 0x97, 0x94, 0xa9, 0x07, 0x84,
0x05, 0xb3, 0xca, 0x7a, 0x87, 0x54, 0x07, 0x5f, 0xb1, 0x68, 0x9c, 0xe4, 0x76,
0x1b, 0x8d, 0x46, 0x0f, 0x61, 0x89, 0x7c, 0x1d, 0x91, 0x54, 0xc7, 0x5f, 0x27,
0xd1, 0x9b, 0x69, 0xff, 0x47, 0x93, 0xd1, 0x13, 0x68, 0x5e, 0xfd, 0xa7, 0x5f,
0x67, 0x5f, 0x6b, 0x64, 0x7c, 0x9f, 0x7f, 0xcd, 0xde, 0xef, 0xfd, 0x4a, 0x4c,
0x47, 0x46, 0x34, 0x1d, 0x65, 0xa3, 0x97, 0x5f, 0x59, 0xf0, 0x57, 0x5f, 0x06,
0x3d, 0x4d, 0x3c, 0x5e, 0x7f, 0xdd, 0x7c, 0x71, 0x51, 0x3e, 0x7a, 0x0b, 0xf4,
0x7d, 0xf4, 0xee, 0xeb, 0x35, 0xaa, 0x77, 0x3e, 0x46, 0xa3, 0x5f, 0x0f, 0xd1,
0xa7, 0xe8, 0x73, 0x34, 0xf6, 0xf5, 0x02, 0x54, 0x1c, 0xb6, 0xc4, 0xd7, 0x5b,
0xf4, 0x3d, 0x9a, 0xfc, 0x4a, 0x7d, 0x05, 0xb0, 0xe2, 0x7d, 0x40, 0xfb, 0x19,
0xa5, 0xbe, 0xd2, 0x5f, 0xf4, 0x17, 0xf3, 0xc5, 0x0a, 0x39, 0x65, 0xbe, 0xb2,
0x5f, 0xa2, 0x18, 0x46, 0xd5, 0x2c, 0xe7, 0xb9, 0x98, 0x38, 0x36, 0x1f, 0xe3,
0xbf, 0x16, 0x62, 0x8b, 0xb1, 0xfb, 0xaf, 0x87, 0xaf, 0xe5, 0xd8, 0x52, 0x8c,
0xf4, 0x3a, 0xa1, 0x8f, 0x5f, 0x4f, 0x5f, 0xcf, 0xc0, 0xae, 0xc6, 0xd6, 0x62,
0x2f, 0xd3, 0xd2, 0x7f, 0xbd, 0x7d, 0xbd, 0x7f, 0x7d, 0x7c, 0x6d, 0xc6, 0xd6,
0x63, 0x1b, 0xb1, 0x6b, 0xdd, 0x1e, 0xea, 0xf1, 0xf9, 0x75, 0x88, 0xf1, 0x22,
0xf7, 0x88, 0x72, 0x19, 0x32, 0x12, 0x82, 0x98, 0x99, 0xb4, 0x67, 0x2b, 0x46,
0x0b, 0xef, 0x76, 0xce, 0xe5, 0xc4, 0xb9, 0xf9, 0xdc, 0x42, 0x0e, 0xeb, 0x51,
0x4c, 0x06, 0xaf, 0xd1, 0xa0, 0x34, 0xa6, 0x88, 0xc9, 0xc1, 0xed, 0x05, 0x17,
0x73, 0xca, 0xd8, 0x52, 0xee, 0xd3, 0xb3, 0x9c, 0x5b, 0xc9, 0xad, 0xe6, 0xc8,
0x35, 0x01, 0xfa, 0xb5, 0xdc, 0x3a, 0xe1, 0xb5, 0xe0, 0x37, 0x72, 0x9a, 0x98,
0x9a, 0x94, 0x65, 0x33, 0xb7, 0x95, 0xd3, 0xc5, 0x64, 0xc8, 0x51, 0x02, 0xeb,
0x9c, 0xd5, 0xaa, 0x94, 0x12, 0x94, 0x2c, 0x67, 0x8a, 0xe9, 0x09, 0xc2, 0x00,
0x2a, 0x87, 0xce, 0x8c, 0xd8, 0x12, 0x33, 0x12, 0x9d, 0x22, 0xb7, 0x82, 0x91,
0xa4, 0xcc, 0xa9, 0x72, 0x4b, 0xb8, 0x72, 0xaa, 0x61, 0xb5, 0xc5, 0xec, 0xb0,
0x68, 0xc0, 0x39, 0x10, 0xdf, 0x04, 0x91, 0x4f, 0x4e, 0x47, 0x3c, 0xad, 0xa3,
0xfc, 0xae, 0x98, 0x33, 0xf6, 0xeb, 0xd4, 0x41, 0x4e, 0xb8, 0xdb, 0xc8, 0x25,
0xcd, 0x6e, 0xe8, 0x8d, 0x90, 0x4d, 0x39, 0x0f, 0x38, 0x73, 0xce, 0x3b, 0xad,
0x8b, 0xc2, 0x02, 0x8d, 0x35, 0x67, 0xcb, 0x05, 0xd1, 0xe6, 0xf6, 0x9c, 0xef,
0x57, 0x5a, 0x7f, 0xcc, 0x91, 0x3b, 0xf7, 0xdf, 0x06, 0x9d, 0x39, 0x57, 0xce,
0x9d, 0xdb, 0x0f, 0xaa, 0x71, 0xb5, 0x0b, 0x6a, 0x43, 0xb1, 0x7d, 0x43, 0x30,
0xe6, 0xc9, 0x79, 0x91, 0xce, 0x97, 0x0b, 0xc7, 0x56, 0x0c, 0xfe, 0x5c, 0x20,
0x17, 0xcc, 0xed, 0xd8, 0x42, 0xb9, 0xed, 0x58, 0x38, 0xb7, 0x9d, 0x0b, 0x68,
0x77, 0x72, 0x91, 0xc0, 0x4e, 0x6c, 0x97, 0xf8, 0xda, 0x8b, 0xed, 0xe6, 0xf6,
0x72, 0xfb, 0xb9, 0x83, 0xdc, 0x3e, 0x91, 0x0f, 0x91, 0x2e, 0x82, 0x70, 0x20,
0xe4, 0x74, 0x04, 0xfe, 0x18, 0xe1, 0x84, 0x94, 0x74, 0xd5, 0x70, 0x9a, 0x3b,
0xcb, 0xd1, 0x81, 0x73, 0x48, 0x17, 0xb9, 0xcb, 0x5c, 0x24, 0x76, 0x95, 0x33,
0xdb, 0xaf, 0x73, 0x87, 0xb1, 0x1b, 0xa1, 0x26, 0xb7, 0x53, 0xfc, 0x3f, 0xd3,
0xc6, 0xfe, 0xba, 0xc3, 0x38, 0x11, 0x64, 0x3d, 0x66, 0xf0, 0x29, 0xf8, 0x33,
0x41, 0xd6, 0xfa, 0xce, 0x63, 0x77, 0x39, 0xd6, 0x7a, 0x31, 0xad, 0x31, 0xd2,
0xc7, 0x10, 0x2e, 0x67, 0x69, 0xe3, 0x90, 0x3e, 0x43, 0x37, 0xb1, 0x44, 0xee,
0x3a, 0x76, 0x15, 0x93, 0x38, 0x92, 0xb9, 0xdb, 0xd8, 0x22, 0x56, 0xd4, 0x3b,
0x01, 0x11, 0x8d, 0x69, 0xc2, 0x31, 0xf0, 0x29, 0x52, 0x82, 0x78, 0x2c, 0x19,
0x4b, 0xc4, 0x16, 0x3c, 0xe9, 0xdc, 0x8b, 0x0b, 0x6d, 0x19, 0x5e, 0xc1, 0x3c,
0xa3, 0x72, 0xb3, 0xdf, 0xa4, 0xfe, 0xd4, 0x19, 0xfb, 0xb9, 0x55, 0xdc, 0x47,
0x50, 0xb1, 0x54, 0x8c, 0xce, 0x85, 0x14, 0x0c, 0xb1, 0xef, 0x6b, 0x12, 0xe4,
0x99, 0x16, 0xe3, 0x61, 0x73, 0x19, 0x68, 0x56, 0x35, 0x76, 0x7f, 0x36, 0xc7,
0xc6, 0x68, 0xa4, 0x09, 0x61, 0xad, 0x0d, 0x6b, 0x93, 0x58, 0x4f, 0x12, 0xc2,
0x0e, 0x8c, 0xcb, 0xf1, 0xb9, 0x63, 0xf7, 0xdf, 0xf7, 0x50, 0x97, 0x92, 0xfb,
0xe9, 0xd8, 0xc0, 0x78, 0xbd, 0x17, 0xf2, 0x3c, 0x72, 0x3f, 0xe4, 0x4e, 0x6d,
0x8f, 0x44, 0x7a, 0x02, 0x7d, 0xce, 0xbd, 0xe4, 0x1e, 0x63, 0xaf, 0xb9, 0xb7,
0x1c, 0x17, 0x7b, 0x88, 0x65, 0x80, 0xe6, 0x63, 0x8b, 0xd3, 0xff, 0x38, 0x91,
0x3b, 0x20, 0x57, 0xbd, 0x0f, 0x49, 0xf6, 0x6f, 0xad, 0xf6, 0x91, 0xfb, 0xcc,
0x3d, 0xc7, 0x44, 0xf9, 0x97, 0xd8, 0x5c, 0x5e, 0x9c, 0xd7, 0xa2, 0x56, 0xf3,
0x79, 0xb4, 0xa1, 0x6a, 0x21, 0xbf, 0x88, 0x78, 0x31, 0x6e, 0x74, 0x2f, 0xe5,
0x93, 0xfa, 0x65, 0xf0, 0x06, 0x95, 0xc7, 0xe2, 0x0a, 0x6f, 0x06, 0x9e, 0x62,
0xfb, 0x96, 0x95, 0xfc, 0x7f, 0xf4, 0xbb, 0xee, 0x6a, 0x7e, 0x2d, 0xbf, 0x0e,
0xcb, 0x9e, 0xf2, 0x35, 0xb6, 0x81, 0x78, 0x13, 0x61, 0x8b, 0x20, 0xdf, 0x63,
0x12, 0x12, 0x4b, 0x41, 0xdf, 0x48, 0x09, 0x64, 0x44, 0xfe, 0x88, 0xc9, 0xf3,
0x8b, 0xd3, 0xdd, 0x1c, 0xea, 0xaa, 0x10, 0x7c, 0x4a, 0x1d, 0x4a, 0x70, 0x2a,
0x04, 0x71, 0xfc, 0xb7, 0x77, 0x75, 0x7e, 0x2e, 0xae, 0x21, 0x18, 0x6d, 0xfe,
0x33, 0xa6, 0x03, 0x77, 0x80, 0x7e, 0x8a, 0x7a, 0x17, 0xe2, 0xfa, 0xfc, 0x7c,
0x7c, 0x5b, 0xbb, 0x87, 0x11, 0x6a, 0xf8, 0x5b, 0xb9, 0x94, 0x71, 0x63, 0xde,
0x24, 0xe8, 0x56, 0xe2, 0xab, 0x71, 0x73, 0xde, 0x92, 0xb7, 0x42, 0xce, 0x4c,
0xcf, 0xd6, 0xe4, 0x97, 0xe3, 0xf6, 0xfc, 0xb3, 0x76, 0x89, 0xe4, 0xb2, 0x46,
0xa8, 0x23, 0x2f, 0x73, 0xcc, 0xf9, 0xc4, 0xb3, 0xfb, 0xd3, 0x33, 0xdb, 0x56,
0xdc, 0x99, 0x97, 0xc4, 0xd7, 0xe3, 0xee, 0xbc, 0x27, 0xef, 0x45, 0xca, 0x0d,
0xe0, 0x36, 0xe3, 0x3e, 0xe2, 0xd3, 0x9f, 0xdf, 0xd1, 0xba, 0x08, 0xa7, 0x82,
0x56, 0x16, 0x0f, 0x80, 0x0f, 0x22, 0xc4, 0xbc, 0xa1, 0x3c, 0xe5, 0x5f, 0xf6,
0x86, 0xc1, 0x4b, 0x61, 0xd9, 0xce, 0x2b, 0xe2, 0x72, 0xa1, 0x2e, 0x0e, 0xbf,
0x7a, 0x56, 0xab, 0x1d, 0xd8, 0x35, 0x90, 0x76, 0xf3, 0x6a, 0xeb, 0x5e, 0x5e,
0x4b, 0xf4, 0x7a, 0x50, 0x73, 0x7c, 0x7f, 0xda, 0xde, 0x71, 0x5d, 0xdc, 0xec,
0x36, 0x42, 0x36, 0xc5, 0x0f, 0x21, 0x47, 0xf2, 0x32, 0xac, 0x01, 0xce, 0xb8,
0x25, 0x7e, 0x94, 0x3f, 0x80, 0x6c, 0x8d, 0x1f, 0xe7, 0x4f, 0x10, 0xdb, 0x80,
0x10, 0xd9, 0x30, 0xe6, 0xc1, 0x9f, 0xe5, 0x1d, 0x71, 0x7b, 0xdc, 0x15, 0x3f,
0x07, 0x7f, 0x91, 0xbf, 0xcc, 0xbb, 0xe3, 0x9e, 0xf8, 0x15, 0x78, 0xbb, 0xf9,
0x3a, 0x9f, 0x44, 0x6a, 0x6f, 0x3c, 0x82, 0x3d, 0xcc, 0x9a, 0xe1, 0x26, 0x7f,
0x9b, 0xdf, 0x20, 0xeb, 0xdd, 0x5d, 0x3e, 0x9a, 0x8f, 0xe5, 0x53, 0xfa, 0x88,
0x3d, 0x9e, 0x4f, 0x00, 0x99, 0xcc, 0xa7, 0xf2, 0xbe, 0xb8, 0x3f, 0x2e, 0x95,
0xa6, 0xf3, 0x81, 0x38, 0x95, 0xa7, 0xf3, 0xc1, 0x78, 0x28, 0xce, 0xc0, 0x12,
0x9e, 0xd6, 0x24, 0x6e, 0x54, 0xad, 0x9e, 0xec, 0x80, 0x8b, 0x5a, 0x76, 0xe3,
0x7e, 0x03, 0x9b, 0xdf, 0x03, 0x2f, 0xd9, 0xce, 0xe4, 0xb3, 0x40, 0xec, 0xc7,
0x2f, 0x7c, 0x67, 0x0a, 0x2e, 0xcf, 0xe7, 0xe7, 0xad, 0x47, 0xc6, 0xfb, 0x7c,
0xd6, 0xbb, 0x89, 0x3c, 0x1e, 0xf2, 0x8f, 0xbf, 0x7a, 0xe5, 0x29, 0x7f, 0x10,
0xdf, 0xd5, 0x1e, 0xc6, 0x03, 0x98, 0x39, 0x77, 0x42, 0x4b, 0x3c, 0xe7, 0x8f,
0xe2, 0x2f, 0x79, 0xaf, 0xed, 0xc1, 0x6d, 0xd6, 0x44, 0xe2, 0x0b, 0xd6, 0xd7,
0x5f, 0xf8, 0x63, 0x82, 0x79, 0xcb, 0xbf, 0xe7, 0x3f, 0xf2, 0x9f, 0xf9, 0x57,
0xe1, 0xfc, 0x90, 0xa8, 0x40, 0xd6, 0xe6, 0x82, 0x18, 0xf1, 0x7c, 0x61, 0x76,
0xce, 0x05, 0xdc, 0x69, 0xfc, 0x24, 0x7e, 0x8e, 0x34, 0x8b, 0x85, 0x33, 0xd0,
0x8b, 0xf8, 0x12, 0x74, 0x57, 0xf1, 0xe5, 0xc2, 0x25, 0xa4, 0xb0, 0x62, 0xa5,
0x70, 0x8d, 0xf8, 0x06, 0xb7, 0x7d, 0x18, 0xad, 0x05, 0xa9, 0xce, 0x8b, 0xd6,
0x88, 0xc6, 0x97, 0x30, 0x8e, 0xd6, 0x80, 0xcb, 0x48, 0x63, 0xf1, 0x38, 0xc9,
0x6f, 0x1d, 0xd2, 0x46, 0x21, 0x11, 0xdf, 0x2c, 0x6c, 0x15, 0x24, 0xe0, 0xa5,
0x05, 0x19, 0xc9, 0x45, 0x0e, 0xaa, 0x28, 0x28, 0x0b, 0x1c, 0xe6, 0x6a, 0x32,
0xae, 0x22, 0x3a, 0x75, 0x21, 0x85, 0x34, 0x1a, 0xf0, 0x5a, 0x04, 0x5d, 0x21,
0xee, 0xd5, 0x17, 0x0c, 0xe0, 0xdc, 0x18, 0x63, 0x54, 0xdc, 0x58, 0x30, 0x81,
0x37, 0x17, 0x2c, 0x85, 0x15, 0xb9, 0x4c, 0x62, 0x2d, 0xd8, 0x0a, 0xf6, 0x82,
0xa3, 0x90, 0x8e, 0x33, 0xf1, 0x90, 0xdb, 0x59, 0x70, 0x98, 0x5d, 0x85, 0x43,
0x99, 0xbb, 0xb0, 0xe4, 0xf7, 0x10, 0x5f, 0xde, 0xc2, 0xb9, 0xfa, 0x4c, 0xe5,
0x2b, 0xd0, 0x71, 0x7f, 0x21, 0x25, 0x0b, 0x14, 0x82, 0x85, 0x5f, 0x67, 0x45,
0x14, 0xa1, 0xc2, 0xbf, 0xcf, 0xb9, 0x70, 0x21, 0x2b, 0xe5, 0xe2, 0xa9, 0xd0,
0xb9, 0x6d, 0x1b, 0x56, 0x07, 0xd6, 0x9d, 0xcf, 0xf8, 0x4e, 0x21, 0x22, 0x7b,
0x47, 0x99, 0x5e, 0xe3, 0xd9, 0xf8, 0x6e, 0x81, 0x8d, 0xef, 0x15, 0x32, 0xf1,
0xfd, 0xc2, 0xad, 0x81, 0x52, 0x3d, 0xd9, 0x0f, 0x80, 0x3a, 0x2c, 0xec, 0x60,
0x9e, 0x47, 0xc0, 0x1d, 0x21, 0xec, 0xe0, 0x0a, 0x73, 0x1f, 0xe7, 0x81, 0x3f,
0x2e, 0x9c, 0x40, 0x7e, 0x89, 0x3f, 0xc4, 0x9f, 0x21, 0x9d, 0x16, 0xce, 0x0a,
0xe7, 0x85, 0x8b, 0xc2, 0x76, 0xe0, 0x29, 0x7e, 0x24, 0xfb, 0x90, 0xbf, 0xc5,
0x2f, 0x0b, 0x57, 0x85, 0x8f, 0xf8, 0x75, 0xe1, 0x86, 0x94, 0x63, 0x5f, 0xfd,
0xb7, 0xb3, 0x2c, 0x89, 0xf5, 0xc4, 0x46, 0x82, 0x8c, 0xa9, 0xc2, 0x9a, 0x24,
0x5a, 0x88, 0x15, 0xe2, 0xc0, 0x25, 0x0a, 0xc9, 0x82, 0x22, 0x31, 0xfb, 0xbd,
0x9d, 0x3c, 0x69, 0x58, 0x4b, 0xa4, 0x0a, 0xe9, 0x02, 0x55, 0x58, 0x4d, 0xd0,
0x85, 0x85, 0xc4, 0x7c, 0x82, 0x29, 0xcc, 0x25, 0x44, 0x89, 0x5b, 0x3b, 0x5b,
0x78, 0xb3, 0x2d, 0x25, 0x32, 0x48, 0x95, 0x2d, 0x70, 0x24, 0x8f, 0x45, 0xa4,
0xe4, 0x0b, 0xf7, 0x85, 0x87, 0xc2, 0x0a, 0xb8, 0xc7, 0x69, 0x1f, 0x59, 0x0f,
0x48, 0xbe, 0x4f, 0x85, 0xe7, 0x82, 0x55, 0xba, 0x9c, 0x78, 0x29, 0xec, 0x69,
0x4d, 0xc5, 0xdb, 0xc2, 0x6b, 0xe1, 0xad, 0xf0, 0x5e, 0xc8, 0x5a, 0xff, 0xf1,
0xbf, 0xf4, 0xf7, 0x41, 0x72, 0xd1, 0xc1, 0xb7, 0x1e, 0xe1, 0x58, 0xf6, 0x49,
0xe4, 0x4d, 0x99, 0x26, 0x21, 0x2a, 0x62, 0x7c, 0x15, 0xc5, 0xa0, 0xf3, 0x08,
0x0b, 0xc5, 0xcd, 0xc4, 0x62, 0x51, 0x05, 0x8c, 0x31, 0xa1, 0x26, 0xb5, 0x59,
0x2a, 0x2a, 0x85, 0x5a, 0x2d, 0x17, 0x1f, 0xe3, 0x2b, 0xc5, 0xd5, 0xa2, 0x1c,
0xf2, 0x5a, 0x71, 0xbd, 0xb8, 0x95, 0xd8, 0x28, 0x6e, 0x16, 0xb7, 0x8a, 0xdb,
0x0a, 0x69, 0xc2, 0x00, 0x9d, 0x4c, 0xc0, 0x49, 0x8a, 0xd2, 0xa2, 0x29, 0x21,
0x2b, 0x4a, 0x12, 0xef, 0x6e, 0x79, 0x31, 0x50, 0x14, 0xbe, 0x26, 0x2c, 0x9c,
0x34, 0xd5, 0x26, 0xfe, 0xd6, 0xaf, 0x09, 0x45, 0x51, 0x59, 0x54, 0x15, 0xdd,
0x82, 0xfe, 0x0d, 0x63, 0x54, 0x8d, 0x34, 0x9a, 0xa2, 0x0b, 0x77, 0x15, 0xe7,
0x2a, 0xcc, 0xfb, 0x84, 0xb6, 0xa8, 0x2b, 0xea, 0xa1, 0x3b, 0x95, 0x19, 0x40,
0xf7, 0x71, 0xdd, 0x71, 0x0a, 0xe8, 0x13, 0x9d, 0x11, 0x9a, 0x1d, 0xa7, 0xef,
0x6f, 0x5e, 0xcd, 0x45, 0xc6, 0x67, 0x29, 0x5a, 0xff, 0x89, 0x92, 0x1d, 0x6a,
0x56, 0xbc, 0x7e, 0x48, 0x66, 0x04, 0x6b, 0xd1, 0x93, 0xb0, 0x15, 0xed, 0x48,
0xb7, 0x9b, 0x70, 0x14, 0xed, 0x09, 0x27, 0x38, 0x47, 0x42, 0x87, 0x91, 0xe2,
0x2a, 0x7a, 0x49, 0x0a, 0x77, 0xd1, 0x95, 0x58, 0xf6, 0x07, 0x12, 0x57, 0x12,
0x0f, 0x6c, 0x5e, 0x04, 0x0b, 0xf4, 0x3e, 0xa1, 0x26, 0xfe, 0xe2, 0x5f, 0x4e,
0xdb, 0xc2, 0x12, 0xfc, 0x4b, 0xee, 0x69, 0xf7, 0x3e, 0xe4, 0x4b, 0xa2, 0x0b,
0x02, 0xfb, 0x29, 0x9c, 0x06, 0xbb, 0x21, 0x9a, 0xed, 0x44, 0x88, 0xa4, 0x3f,
0x48, 0x30, 0xc1, 0xbf, 0xb5, 0x44, 0xf1, 0x22, 0xb1, 0x5d, 0xdc, 0x29, 0x1e,
0x04, 0x77, 0x09, 0x62, 0xaf, 0xb8, 0x1a, 0xda, 0x07, 0x77, 0x50, 0x3c, 0x14,
0x72, 0x8c, 0x14, 0x9f, 0xed, 0x47, 0xc5, 0xe3, 0xe2, 0x49, 0x31, 0x2d, 0x3f,
0x15, 0x74, 0x67, 0x45, 0xce, 0x7b, 0x97, 0x10, 0xb9, 0xce, 0x8b, 0x17, 0x45,
0xa9, 0xe4, 0x12, 0xda, 0xf3, 0xc4, 0x55, 0xf1, 0x38, 0xc1, 0x59, 0xf7, 0x12,
0xa7, 0x89, 0xab, 0xc4, 0x75, 0x71, 0x1d, 0xd7, 0x9c, 0x9b, 0xe2, 0x6d, 0x71,
0x55, 0x72, 0x57, 0x3c, 0x4a, 0x44, 0x8b, 0xd7, 0x89, 0x67, 0xcc, 0x9e, 0x58,
0x31, 0x2e, 0x78, 0x48, 0x14, 0xcf, 0x50, 0xb2, 0x48, 0x22, 0xf9, 0xab, 0x5e,
0x07, 0xb3, 0x27, 0xb8, 0x5b, 0x58, 0xd9, 0x52, 0xc5, 0x74, 0x71, 0xdd, 0x40,
0x09, 0xf6, 0x23, 0x72, 0xbf, 0xe1, 0x86, 0x0f, 0xba, 0x18, 0x47, 0xca, 0xcc,
0xac, 0xf6, 0x0c, 0x10, 0x6c, 0x31, 0x53, 0xcc, 0x12, 0xe4, 0x09, 0xf4, 0x1c,
0x38, 0xbe, 0xf8, 0x84, 0x16, 0xb8, 0x17, 0x52, 0x3f, 0x9b, 0xa2, 0x89, 0x87,
0x62, 0x2a, 0xc1, 0x5b, 0x1f, 0x8b, 0x4f, 0xc5, 0x58, 0xe2, 0xb9, 0x48, 0x27,
0x5e, 0x60, 0xbb, 0xc4, 0xd5, 0x91, 0x49, 0xbc, 0x16, 0xdf, 0x8a, 0x87, 0xc1,
0xdb, 0x84, 0x46, 0xfe, 0x5e, 0x4c, 0x22, 0xfd, 0x47, 0x91, 0x4a, 0xac, 0x4f,
0xbf, 0x55, 0x4f, 0x52, 0xb3, 0x24, 0xa7, 0x44, 0x22, 0x8d, 0x58, 0x54, 0xfa,
0x0f, 0x4f, 0x5c, 0x11, 0xad, 0x18, 0x74, 0x05, 0xbb, 0x01, 0x51, 0x78, 0xbe,
0xb4, 0x50, 0x5a, 0x2c, 0x2d, 0x41, 0xe6, 0x49, 0xda, 0x65, 0x62, 0x5f, 0x2d,
0xad, 0x95, 0x5e, 0x13, 0xeb, 0xe0, 0xb9, 0x84, 0x1d, 0xab, 0xd7, 0x46, 0x69,
0x93, 0xe8, 0x77, 0x12, 0x5b, 0x33, 0xaf, 0x12, 0x70, 0x52, 0x04, 0x59, 0x29,
0x84, 0x3b, 0xf9, 0xb9, 0xc0, 0x4b, 0xe2, 0x19, 0x1e, 0xee, 0x13, 0x0f, 0xa0,
0x2a, 0xac, 0x24, 0x72, 0xd8, 0x14, 0xa5, 0x27, 0x48, 0xd9, 0x84, 0xb2, 0xa4,
0x2a, 0xa9, 0x4b, 0x9a, 0xd2, 0x81, 0x43, 0x4b, 0xd2, 0xeb, 0x4a, 0xfa, 0xd2,
0x63, 0xe2, 0x13, 0x6b, 0x80, 0x81, 0xc8, 0x2b, 0x25, 0x63, 0xc9, 0x54, 0x9a,
0xb3, 0x99, 0xff, 0x52, 0x66, 0x3b, 0xfc, 0x5a, 0x4a, 0x6f, 0x09, 0x51, 0x12,
0x33, 0x92, 0xfc, 0xfe, 0x6c, 0x85, 0xfd, 0x33, 0x71, 0x68, 0xf2, 0x1a, 0xc4,
0x49, 0x72, 0xef, 0xae, 0xb2, 0x95, 0xec, 0x25, 0x47, 0xc9, 0x59, 0x72, 0xc1,
0x32, 0x9f, 0x74, 0x97, 0x5e, 0xbc, 0x1f, 0x09, 0x4f, 0xe9, 0x10, 0xb9, 0x7a,
0x4b, 0xbe, 0x92, 0xbf, 0x14, 0x28, 0x05, 0x4b, 0xa1, 0x52, 0xb8, 0xf4, 0x9e,
0xd8, 0x16, 0x7c, 0x87, 0xc3, 0x73, 0x2e, 0xde, 0xbb, 0x03, 0x69, 0x0d, 0x3e,
0x76, 0xff, 0xd6, 0x4a, 0x52, 0xe8, 0xf6, 0x4a, 0xfb, 0xa5, 0x03, 0xe8, 0x0f,
0x4b, 0xb2, 0x64, 0xa4, 0xb4, 0x90, 0x3c, 0x22, 0x98, 0x47, 0xf7, 0x71, 0xe9,
0xa4, 0xb4, 0x95, 0x5c, 0x4a, 0x9e, 0x96, 0x56, 0x92, 0x67, 0xa5, 0x73, 0xa2,
0xbd, 0x28, 0xc9, 0x93, 0xcb, 0x48, 0x73, 0x59, 0x5a, 0x27, 0x25, 0xe2, 0xa4,
0x57, 0xa5, 0x28, 0x66, 0xca, 0x46, 0x52, 0x92, 0xbc, 0x06, 0xe2, 0xa6, 0x74,
0x0b, 0x7a, 0x87, 0xb0, 0x98, 0x8c, 0x96, 0x16, 0xad, 0xb1, 0xd2, 0x6a, 0x72,
0x49, 0xef, 0x34, 0x4b, 0xd4, 0xf7, 0x81, 0xfb, 0xd2, 0x4b, 0x80, 0x9b, 0x9d,
0xe7, 0x8e, 0x03, 0x93, 0x28, 0x25, 0x4b, 0xa9, 0x92, 0x3a, 0xa9, 0x84, 0xaf,
0x74, 0x89, 0x2a, 0xd1, 0x25, 0x06, 0xda, 0x50, 0x98, 0x9d, 0x95, 0x32, 0x33,
0x6d, 0xd5, 0x64, 0xb6, 0xc4, 0x21, 0x7e, 0x08, 0xf2, 0x25, 0x55, 0x52, 0x93,
0x9c, 0x9d, 0xd5, 0x21, 0xdc, 0x03, 0x2c, 0x8f, 0x08, 0x86, 0xa4, 0x0e, 0xf2,
0x53, 0xe9, 0x59, 0x48, 0x2b, 0x76, 0xe9, 0x93, 0x2f, 0xe0, 0x5f, 0x4b, 0x41,
0xcf, 0x26, 0x41, 0xbe, 0xfd, 0xaa, 0xfb, 0x3b, 0xe1, 0x3f, 0x4a, 0x3c, 0xca,
0x63, 0x4c, 0xda, 0x92, 0xf7, 0xd6, 0x4f, 0x68, 0xac, 0x49, 0x51, 0x79, 0xae,
0x8c, 0xde, 0x05, 0x5e, 0x5c, 0x9e, 0x2f, 0xdb, 0x93, 0x5e, 0xb2, 0xae, 0x9a,
0x92, 0x16, 0x68, 0x16, 0xca, 0x8b, 0xb0, 0x2d, 0x95, 0x97, 0xcb, 0x2b, 0x65,
0x33, 0xf1, 0x28, 0x3d, 0x9f, 0x3b, 0x5f, 0x2d, 0xaf, 0x95, 0x9d, 0xc9, 0xf5,
0x32, 0x79, 0x96, 0x40, 0xe8, 0x66, 0xd9, 0x31, 0x2b, 0xe3, 0x16, 0x34, 0x92,
0xb2, 0xf0, 0x1c, 0x16, 0xf3, 0xdb, 0x70, 0xe3, 0x4a, 0xfe, 0x6a, 0x7d, 0x58,
0x64, 0x08, 0x72, 0x04, 0x45, 0x59, 0x09, 0xea, 0x4e, 0xaa, 0xca, 0xb1, 0xff,
0xa6, 0x16, 0x52, 0x68, 0xca, 0xbf, 0xfb, 0xca, 0x93, 0x8c, 0x60, 0x2f, 0xbb,
0x3f, 0x3d, 0xf5, 0x55, 0xd6, 0x95, 0x7d, 0xc9, 0xf3, 0x1d, 0x7d, 0xd9, 0x50,
0x36, 0x96, 0x4d, 0xe5, 0x07, 0xe8, 0x74, 0x21, 0x73, 0x99, 0x57, 0xf9, 0x93,
0x96, 0xb2, 0xb5, 0x6c, 0x2b, 0xdb, 0xcb, 0x0e, 0x92, 0x36, 0x80, 0xdc, 0x9c,
0xe0, 0x18, 0xbb, 0x8b, 0xc8, 0x6e, 0xd0, 0xa0, 0x50, 0x02, 0x4f, 0xd9, 0x5b,
0xf6, 0x41, 0x7e, 0x75, 0xf9, 0xcb, 0xba, 0xff, 0xe1, 0x69, 0x50, 0x1a, 0x88,
0x5b, 0xd9, 0x6e, 0x72, 0x2f, 0x19, 0x10, 0x4a, 0x13, 0x44, 0x1c, 0x82, 0x0f,
0xa3, 0x3e, 0x04, 0x2e, 0x8c, 0xb0, 0x8d, 0xb0, 0x33, 0x2b, 0xeb, 0xee, 0x54,
0x9b, 0xb4, 0x61, 0x95, 0xd9, 0x2b, 0xef, 0x97, 0x0f, 0xca, 0xdb, 0xc9, 0x9d,
0xe4, 0x29, 0xf0, 0x87, 0xd0, 0x1f, 0x24, 0x8f, 0x92, 0x11, 0xc4, 0x47, 0xe5,
0xe3, 0xf2, 0x49, 0x79, 0x3f, 0x79, 0x5a, 0x3e, 0x2b, 0x9f, 0xff, 0xaa, 0xe5,
0x45, 0xf9, 0xb2, 0x7c, 0x05, 0xf9, 0xba, 0x7c, 0x98, 0xbc, 0x29, 0x47, 0x92,
0x47, 0x98, 0x8d, 0xc7, 0x48, 0x6b, 0x9d, 0xbe, 0x8b, 0xa4, 0xb6, 0x91, 0x95,
0xf3, 0xb6, 0x7c, 0x07, 0xc4, 0x59, 0x32, 0x0a, 0x1a, 0x43, 0x30, 0xcb, 0xe3,
0xe5, 0xeb, 0x64, 0x02, 0xdc, 0x79, 0xf2, 0x2a, 0x99, 0x24, 0xde, 0x52, 0x65,
0x9d, 0x27, 0x0d, 0x8e, 0x42, 0xb8, 0x20, 0xf5, 0xbd, 0x4c, 0x7a, 0xbc, 0x27,
0x9e, 0x9b, 0xe4, 0xbf, 0x5d, 0x09, 0x6d, 0x54, 0x92, 0x29, 0x27, 0x92, 0x6c,
0x39, 0x53, 0x4e, 0xcb, 0x62, 0xb0, 0xaf, 0xfa, 0xe3, 0xc9, 0x6c, 0x99, 0x2b,
0xdf, 0x25, 0xf9, 0x72, 0x34, 0x99, 0x4a, 0xd2, 0xc9, 0x7b, 0x78, 0x49, 0x27,
0x1f, 0xca, 0x8f, 0xe5, 0xa7, 0x72, 0x32, 0x79, 0x9b, 0x7c, 0x2e, 0xbf, 0x08,
0x65, 0x3e, 0xb2, 0xbf, 0x96, 0xef, 0xa7, 0x69, 0xb0, 0x26, 0xbd, 0x95, 0xdf,
0xa1, 0xfd, 0x40, 0xf8, 0x44, 0xe0, 0x48, 0x4e, 0xa2, 0x0a, 0x3f, 0xcb, 0x71,
0xae, 0x22, 0xae, 0x60, 0xd6, 0x56, 0x16, 0x40, 0x19, 0xa2, 0xcd, 0x80, 0x2e,
0x56, 0x96, 0x2a, 0xd9, 0xe4, 0x72, 0x65, 0xa5, 0xb2, 0x5a, 0x61, 0x93, 0x6b,
0x15, 0xb2, 0x0b, 0x03, 0xdd, 0xa8, 0x08, 0x6f, 0x2b, 0xe1, 0xae, 0x4e, 0x1b,
0x7e, 0x4e, 0x6e, 0x56, 0x5e, 0x66, 0x9e, 0x44, 0x29, 0xe4, 0x88, 0xeb, 0xe2,
0x5b, 0x72, 0xab, 0xf2, 0x29, 0x68, 0x25, 0xc0, 0x3f, 0x26, 0x1f, 0x92, 0x52,
0xc4, 0x73, 0x29, 0x59, 0x45, 0x5e, 0x39, 0xc3, 0xbe, 0xf7, 0x7d, 0x3a, 0x92,
0x53, 0x42, 0x4d, 0x93, 0x0a, 0xd8, 0x94, 0x15, 0x15, 0xe8, 0x2b, 0xf4, 0x72,
0xec, 0x29, 0x9f, 0x48, 0x6a, 0xb5, 0x90, 0x57, 0x82, 0xdc, 0x79, 0x2d, 0xa5,
0x34, 0x15, 0x6d, 0x45, 0x57, 0xd1, 0x57, 0x0c, 0x15, 0x63, 0xc5, 0x04, 0x9b,
0xb9, 0x62, 0xa9, 0xe8, 0xc9, 0xd5, 0xc9, 0x4a, 0x90, 0x36, 0x50, 0x3b, 0x82,
0xa3, 0xe2, 0xac, 0xb8, 0x2a, 0xb3, 0x73, 0x98, 0x95, 0xc5, 0x94, 0x07, 0xd2,
0x42, 0xca, 0x2b, 0xe8, 0x7c, 0x42, 0xbc, 0x99, 0xf2, 0x57, 0x02, 0x95, 0x60,
0x65, 0x19, 0x25, 0x09, 0x41, 0x27, 0x41, 0x1c, 0x9e, 0xa5, 0x8b, 0x05, 0xe5,
0xd3, 0xfa, 0xa4, 0xb6, 0x2b, 0x3b, 0x95, 0xb5, 0xd4, 0x2e, 0xd1, 0x6f, 0x41,
0x23, 0x4b, 0x49, 0x53, 0x7b, 0x95, 0xfd, 0xca, 0x41, 0x65, 0x85, 0xd4, 0xe0,
0x10, 0x96, 0x75, 0x70, 0x46, 0x22, 0x45, 0x2a, 0x47, 0x04, 0x79, 0x5c, 0x39,
0x41, 0x7c, 0x4a, 0xf8, 0xb3, 0x8a, 0x0a, 0xb6, 0xf3, 0xca, 0x45, 0xe5, 0xb2,
0xf2, 0xaf, 0x1e, 0xbe, 0xaa, 0x5c, 0x43, 0xba, 0x41, 0x50, 0xc0, 0x7a, 0x5b,
0x51, 0xa6, 0xee, 0x88, 0x55, 0x97, 0xd2, 0xa7, 0xa2, 0x95, 0x55, 0x79, 0xac,
0x62, 0x23, 0xbf, 0x29, 0x6b, 0x53, 0xf1, 0x4a, 0x02, 0x96, 0xe4, 0xb4, 0x97,
0x52, 0x29, 0x82, 0x49, 0x57, 0xa8, 0x0a, 0x0d, 0x4e, 0x93, 0x32, 0xa4, 0xd4,
0x29, 0xa6, 0x62, 0x4a, 0x65, 0x2a, 0xd9, 0x0a, 0x57, 0xb1, 0xa4, 0xcc, 0xf0,
0xc5, 0x57, 0xd8, 0xca, 0x7d, 0xe5, 0xa1, 0xf2, 0x08, 0xc4, 0x53, 0xe5, 0x19,
0xd4, 0x96, 0xb2, 0xa6, 0x4e, 0x84, 0x1e, 0x71, 0xa5, 0x5e, 0x66, 0xa5, 0x78,
0xad, 0xbc, 0x81, 0x7f, 0xaf, 0xd8, 0x53, 0x1f, 0x44, 0xf7, 0x59, 0x71, 0x90,
0x5a, 0x38, 0x53, 0xa2, 0xaa, 0x3b, 0x35, 0x57, 0x15, 0xce, 0x2e, 0xab, 0xc5,
0x55, 0x6f, 0x6a, 0xbe, 0xea, 0x49, 0x2d, 0x54, 0x25, 0x58, 0x99, 0x16, 0xab,
0x4b, 0xd5, 0xe5, 0xea, 0x4a, 0x75, 0x5f, 0xbb, 0x74, 0xb1, 0x4a, 0x30, 0x6b,
0x55, 0x5f, 0x6a, 0x07, 0x96, 0xf5, 0xea, 0x46, 0x55, 0x2b, 0xdf, 0xac, 0xfa,
0x53, 0x5b, 0xd5, 0x5d, 0xa9, 0xa4, 0x1a, 0x31, 0x05, 0x52, 0xd2, 0xaa, 0xac,
0x7a, 0xa0, 0x0d, 0xa6, 0xae, 0x25, 0x72, 0xc1, 0x9f, 0xd1, 0xab, 0x00, 0x17,
0x4a, 0xcd, 0xce, 0x45, 0x98, 0x95, 0xd5, 0x03, 0x22, 0xed, 0x82, 0xb2, 0x98,
0x53, 0x2a, 0xd8, 0xd5, 0x08, 0x7b, 0xa9, 0xed, 0xd4, 0x85, 0x4a, 0x53, 0x0d,
0xa7, 0x0e, 0x53, 0xbf, 0xde, 0x33, 0x25, 0x3b, 0xce, 0x0b, 0xdc, 0x63, 0x9d,
0xcd, 0xb4, 0x47, 0x02, 0xa7, 0xb4, 0x45, 0x52, 0xda, 0xea, 0x49, 0x4a, 0x57,
0xd5, 0x57, 0x0d, 0xf0, 0xb0, 0x93, 0x32, 0x56, 0x4d, 0x88, 0x4f, 0xa7, 0x3d,
0x20, 0x60, 0xcc, 0x90, 0x2d, 0x55, 0x96, 0x5c, 0xcb, 0x8e, 0xa1, 0xbb, 0x48,
0x5d, 0x11, 0xcb, 0x9e, 0x66, 0x1f, 0xb1, 0x95, 0xac, 0x39, 0x56, 0x52, 0x56,
0x5b, 0xd5, 0x5e, 0xbd, 0x4c, 0x39, 0xaa, 0xa7, 0xba, 0xc7, 0xd0, 0x75, 0xea,
0x26, 0xf5, 0x30, 0xdb, 0xcf, 0x3a, 0xab, 0xae, 0xaa, 0xbb, 0xea, 0xa9, 0x7a,
0xab, 0x73, 0xb8, 0x67, 0xf1, 0x55, 0xfd, 0xd5, 0x40, 0xf5, 0x36, 0xa5, 0x24,
0xa3, 0xf1, 0x2e, 0x15, 0x85, 0x9f, 0x60, 0xf5, 0xce, 0x17, 0x4b, 0x85, 0xaa,
0x16, 0x1d, 0xc6, 0xfa, 0xaf, 0x2f, 0xe9, 0x87, 0xab, 0xe9, 0xd4, 0xef, 0x99,
0xbe, 0x5d, 0xdd, 0xa9, 0xee, 0x56, 0xa9, 0xd4, 0x91, 0x29, 0x95, 0xda, 0x43,
0xae, 0xfb, 0xd5, 0x78, 0x30, 0x4e, 0x10, 0xc9, 0x94, 0xd1, 0xf2, 0x69, 0x3e,
0xa8, 0x26, 0x20, 0xd1, 0x08, 0x87, 0x55, 0x31, 0xf9, 0xf2, 0x05, 0x0b, 0x9e,
0x49, 0x45, 0xaa, 0x47, 0xd5, 0xe3, 0x2a, 0x85, 0xb5, 0x67, 0xcd, 0x9f, 0x81,
0xe6, 0xa4, 0x7a, 0x8a, 0xd4, 0x67, 0xd5, 0xf3, 0xea, 0x05, 0xe2, 0xcb, 0xea,
0x7b, 0x8a, 0x83, 0xf6, 0xaa, 0x3a, 0xfb, 0x22, 0x6b, 0xea, 0xba, 0x7a, 0x53,
0xbd, 0x85, 0x7c, 0x9f, 0x7a, 0x98, 0x95, 0xe0, 0xae, 0x1a, 0xad, 0xc6, 0x08,
0x26, 0x5e, 0x7d, 0x81, 0xf6, 0x35, 0x95, 0xa8, 0x26, 0xab, 0xcf, 0xc4, 0x9e,
0x82, 0x3e, 0x5d, 0x7d, 0x4c, 0x51, 0xd5, 0x6c, 0xea, 0x29, 0x45, 0x57, 0x19,
0x82, 0x63, 0x09, 0x7d, 0x4b, 0xa9, 0x33, 0x58, 0x29, 0x08, 0x9f, 0x15, 0xf2,
0x58, 0x96, 0x71, 0x84, 0xe3, 0xab, 0xf7, 0xd5, 0x07, 0x70, 0x9f, 0xa9, 0x4b,
0xd5, 0x47, 0xea, 0xb1, 0xfa, 0x54, 0x7d, 0xae, 0xce, 0xa5, 0xb1, 0x3e, 0xa4,
0x85, 0xd3, 0x4e, 0xe9, 0x17, 0x58, 0xc5, 0xe9, 0xd7, 0xea, 0x42, 0xfa, 0x0d,
0x9c, 0xd4, 0xf8, 0x5e, 0x5d, 0x4c, 0x7f, 0x80, 0x5b, 0x22, 0x88, 0xcf, 0xaa,
0xa8, 0x36, 0x57, 0x13, 0xd7, 0x96, 0xd3, 0x26, 0xac, 0x32, 0x11, 0xb4, 0xe9,
0x0a, 0xd1, 0xcf, 0xfb, 0x5c, 0xee, 0xd5, 0xf4, 0x7c, 0x6d, 0x2d, 0xbd, 0x86,
0x2b, 0xce, 0x42, 0x0d, 0xe3, 0x4d, 0xb9, 0x58, 0x23, 0x2b, 0x53, 0x7a, 0xa9,
0xb6, 0x5c, 0x4b, 0xeb, 0xad, 0xee, 0x0d, 0x20, 0xb7, 0xe5, 0x2b, 0xb5, 0x55,
0xa2, 0x5f, 0xab, 0xad, 0xd7, 0x36, 0x85, 0x5c, 0x37, 0x6a, 0x92, 0xf4, 0x13,
0x7c, 0x6d, 0xa5, 0x5d, 0x58, 0xa3, 0xa4, 0x44, 0x2b, 0x4b, 0x6f, 0x02, 0x27,
0x4f, 0xef, 0x28, 0xb6, 0x6a, 0x92, 0x9a, 0xb4, 0x26, 0x23, 0xa9, 0x14, 0xb0,
0xc9, 0x6b, 0x4a, 0x50, 0x55, 0x5a, 0x9d, 0xfe, 0x9f, 0xdf, 0xb5, 0xec, 0xa0,
0x0f, 0x14, 0x35, 0x65, 0x4d, 0x55, 0x53, 0xd7, 0x34, 0xf0, 0xa0, 0x41, 0x1a,
0x6d, 0x5a, 0xf7, 0x2b, 0x25, 0x87, 0x35, 0x4f, 0x5b, 0x5b, 0x36, 0xeb, 0xa1,
0xd3, 0x01, 0xa1, 0x47, 0x30, 0xd4, 0x84, 0xd9, 0x80, 0xd8, 0x54, 0x33, 0xc0,
0x62, 0x06, 0x67, 0x4c, 0x5b, 0x04, 0xbd, 0x15, 0xb1, 0xad, 0x66, 0x41, 0x4d,
0xdf, 0x1c, 0xa6, 0xb4, 0xbd, 0xe6, 0x80, 0xec, 0xac, 0x45, 0x30, 0xf6, 0x0f,
0x51, 0x7e, 0x2b, 0xf0, 0xf3, 0x2e, 0x57, 0xcd, 0x92, 0x76, 0xd7, 0x3c, 0x35,
0xa9, 0xda, 0x5b, 0xf3, 0xd5, 0xcc, 0xe9, 0x27, 0xdb, 0x06, 0x59, 0x33, 0x6c,
0xb0, 0xda, 0xd3, 0xfe, 0xda, 0xb1, 0x29, 0x80, 0x54, 0xc1, 0x1a, 0xad, 0x0e,
0xd5, 0x1c, 0xe9, 0xb0, 0xe0, 0x79, 0xdd, 0xbf, 0x5d, 0xdb, 0xa9, 0x5d, 0xa2,
0x6d, 0x77, 0xa1, 0x79, 0x9c, 0xfe, 0x02, 0x1a, 0xf0, 0x59, 0xf7, 0x6a, 0xce,
0xf4, 0x3e, 0x41, 0xb8, 0xcd, 0x19, 0xfb, 0x89, 0xe9, 0xa0, 0x76, 0x08, 0x29,
0x52, 0x73, 0xc1, 0xd7, 0x11, 0xb8, 0xe3, 0x9a, 0x37, 0x7d, 0x52, 0xf3, 0xa5,
0x4f, 0x05, 0x2f, 0x67, 0xb5, 0xf3, 0x69, 0xc9, 0x75, 0x36, 0x9b, 0x27, 0x7d,
0x51, 0x3b, 0x35, 0x99, 0xbc, 0x97, 0xb5, 0xab, 0xda, 0xf5, 0x1f, 0x0f, 0xe9,
0x9b, 0xda, 0x6d, 0x8d, 0xd2, 0x63, 0x4e, 0x49, 0xef, 0x6a, 0xa1, 0xf4, 0x11,
0x4a, 0x1d, 0xad, 0x31, 0xfa, 0x18, 0xac, 0x34, 0xb4, 0xc1, 0x70, 0x30, 0x1d,
0x48, 0x2f, 0x61, 0x36, 0x05, 0x95, 0xf6, 0xb0, 0x4e, 0x7e, 0x86, 0x7d, 0x7c,
0xbc, 0x96, 0xa8, 0x25, 0x61, 0x4f, 0xd5, 0xd2, 0x35, 0xaa, 0xe6, 0x47, 0xae,
0x74, 0x8d, 0xa9, 0xb1, 0xd0, 0x6c, 0xa7, 0x33, 0xb5, 0x9d, 0x74, 0x38, 0x9d,
0xad, 0x1d, 0xa1, 0x35, 0x2c, 0xe8, 0x43, 0xae, 0xc6, 0xea, 0x97, 0x70, 0x55,
0xe0, 0x6b, 0xf7, 0xb5, 0xfd, 0xf4, 0x43, 0xcd, 0x82, 0xba, 0xd8, 0xec, 0x8f,
0xb5, 0xa7, 0x9a, 0x2a, 0xf8, 0x5c, 0x8b, 0x08, 0x2d, 0x4f, 0x69, 0x5e, 0x6a,
0x66, 0xcb, 0xde, 0xb4, 0xfc, 0x69, 0x5a, 0x73, 0x90, 0x3e, 0x4c, 0xbf, 0xd6,
0x76, 0xd3, 0x6f, 0xa4, 0x84, 0x37, 0x16, 0xaf, 0xeb, 0xbd, 0xf6, 0x51, 0xdb,
0xc2, 0x6a, 0x73, 0x2e, 0xfb, 0x24, 0x3a, 0x51, 0x7d, 0xae, 0x8e, 0x31, 0x8d,
0x75, 0x41, 0x5c, 0xb7, 0xa3, 0x55, 0xe6, 0xeb, 0x0a, 0xf2, 0x7c, 0xe3, 0x34,
0xbd, 0x50, 0x3f, 0x86, 0x97, 0xc5, 0x7a, 0xc0, 0xbe, 0x54, 0x5f, 0xae, 0xaf,
0xd4, 0xad, 0x96, 0x5d, 0xc5, 0x09, 0x34, 0xa7, 0xd3, 0xdf, 0x7a, 0xea, 0xbe,
0xd0, 0x5a, 0x7d, 0xbd, 0xbe, 0x51, 0xb7, 0x84, 0x37, 0xeb, 0xa4, 0x65, 0xd2,
0xf1, 0xb4, 0xd2, 0xb1, 0x55, 0x8f, 0xa5, 0x25, 0xf5, 0xdb, 0x74, 0x3a, 0x7d,
0x07, 0xe4, 0x15, 0xc2, 0xbb, 0xe3, 0x52, 0x28, 0xd9, 0x79, 0x5a, 0x5a, 0x17,
0x05, 0x33, 0x68, 0x09, 0x59, 0xfd, 0x1a, 0xba, 0x8b, 0xb4, 0xbc, 0xae, 0xa8,
0x2b, 0xeb, 0xd1, 0xf4, 0x3d, 0x56, 0x51, 0x2b, 0x6a, 0xa9, 0x82, 0xa7, 0x57,
0x9b, 0xba, 0xee, 0xf4, 0x9f, 0x48, 0x6f, 0xb0, 0x22, 0x2d, 0xb8, 0x34, 0x75,
0x6d, 0x3d, 0x49, 0xd2, 0x9b, 0xeb, 0xba, 0x7a, 0x02, 0x5c, 0x0c, 0x3b, 0x5c,
0x3a, 0xad, 0x27, 0x79, 0xde, 0x40, 0xa6, 0xd2, 0x0c, 0xe8, 0xba, 0x26, 0x95,
0x3e, 0xd4, 0x1a, 0xea, 0x07, 0x06, 0x63, 0xdd, 0x54, 0x67, 0xd3, 0x47, 0xb3,
0xfb, 0x37, 0x0e, 0xd6, 0x07, 0xe2, 0x81, 0x4f, 0x2b, 0xbd, 0x16, 0x92, 0xce,
0x4a, 0x68, 0x46, 0x28, 0x97, 0x0d, 0xd2, 0x15, 0x39, 0x29, 0x60, 0x07, 0x77,
0x4f, 0xb4, 0x8f, 0x69, 0x47, 0xdd, 0x59, 0x77, 0xd5, 0xdd, 0x75, 0x0f, 0x74,
0xde, 0xfa, 0x2b, 0xd1, 0x3e, 0xa5, 0x43, 0xf5, 0x97, 0xf4, 0x33, 0xe1, 0x7d,
0x75, 0x7f, 0x3d, 0x00, 0xdb, 0x1b, 0x24, 0xa9, 0x21, 0x58, 0xff, 0x48, 0xbf,
0xa7, 0x13, 0xb8, 0xef, 0x0a, 0xd7, 0x45, 0x94, 0xb0, 0xc6, 0x91, 0x5c, 0x8e,
0x67, 0x4f, 0x28, 0x3e, 0xd3, 0x73, 0xd4, 0x0e, 0x74, 0x62, 0xca, 0xa1, 0xb4,
0xc6, 0x5e, 0xd0, 0xfb, 0xf3, 0x40, 0xee, 0xd6, 0x19, 0xcd, 0x5e, 0x7d, 0x9f,
0x60, 0x0f, 0xea, 0x0b, 0xd4, 0x21, 0xb8, 0x45, 0x2a, 0x02, 0x6a, 0xd2, 0x1f,
0xd5, 0x8f, 0xeb, 0xb3, 0x7b, 0xd9, 0x93, 0x93, 0xfa, 0x12, 0x75, 0x5a, 0x5f,
0xa6, 0xce, 0xea, 0x32, 0xb4, 0xd7, 0x0a, 0xb5, 0x4a, 0x9d, 0xd7, 0x2f, 0xea,
0x6b, 0x24, 0xb7, 0x75, 0x6a, 0x03, 0xf1, 0xe5, 0xb4, 0x26, 0xf5, 0xeb, 0xfa,
0x9a, 0xfd, 0xa6, 0x7e, 0x5b, 0xdf, 0x24, 0x96, 0xbb, 0x7a, 0xb4, 0x2e, 0x01,
0xb7, 0x25, 0x94, 0x2a, 0x56, 0x5f, 0x74, 0xc5, 0xeb, 0x52, 0x2a, 0x51, 0xdf,
0xf0, 0x27, 0xeb, 0x32, 0x68, 0xe5, 0x54, 0xaa, 0xae, 0xa0, 0xd2, 0x48, 0x4b,
0xd5, 0xe9, 0xba, 0x12, 0x1a, 0xa6, 0xce, 0xd6, 0xb9, 0xfa, 0x89, 0x2b, 0x03,
0x5d, 0x56, 0x28, 0xc1, 0xb9, 0x49, 0x45, 0xf1, 0xf5, 0x7b, 0x48, 0x0f, 0x08,
0x8f, 0xf5, 0xa7, 0x7a, 0x5a, 0xbb, 0xb9, 0xad, 0xa6, 0x9e, 0xeb, 0xff, 0x9a,
0xf1, 0x2f, 0xd3, 0xfe, 0xab, 0xbf, 0x81, 0x6a, 0x28, 0xb3, 0x57, 0x4b, 0xbd,
0xd7, 0xad, 0xf0, 0xf6, 0x21, 0x20, 0x74, 0xa4, 0x04, 0x06, 0xea, 0xb3, 0x2e,
0xfa, 0xc6, 0x6a, 0x40, 0x19, 0xa9, 0xb9, 0x6f, 0x97, 0xdf, 0x44, 0x99, 0xa1,
0x17, 0x43, 0x33, 0xff, 0xbd, 0xf0, 0x6d, 0x11, 0x4a, 0x69, 0xa3, 0x16, 0xa1,
0x59, 0xfa, 0x5e, 0xfe, 0xde, 0x90, 0xc7, 0x31, 0x1e, 0x93, 0xde, 0x1b, 0x5d,
0x44, 0x8b, 0x5a, 0x7f, 0x93, 0xab, 0x89, 0xf7, 0x52, 0x16, 0xf2, 0x38, 0xa9,
0x3d, 0xc5, 0x81, 0xc5, 0x41, 0x79, 0xa9, 0x17, 0xfb, 0x2d, 0xf6, 0x7c, 0x6e,
0xca, 0x43, 0x6d, 0x62, 0x04, 0xfb, 0xa8, 0x5b, 0xf7, 0xa5, 0x6d, 0xf5, 0x7b,
0xed, 0x3b, 0xeb, 0x31, 0x3a, 0x5d, 0xf0, 0xe8, 0xf6, 0x53, 0xb2, 0x00, 0xb5,
0x1c, 0xb6, 0x39, 0x9c, 0xe1, 0xf5, 0xef, 0x8d, 0xef, 0xac, 0xde, 0x4f, 0x6d,
0x7e, 0x4b, 0x6d, 0x5b, 0xf0, 0x76, 0x46, 0x2d, 0x5b, 0x25, 0x88, 0x9f, 0x31,
0xae, 0xb6, 0xd1, 0x7f, 0xb2, 0x6f, 0x29, 0xc9, 0x43, 0xfe, 0x1d, 0xa6, 0xcc,
0x7a, 0x4e, 0xaf, 0xf8, 0xbe, 0x40, 0x4f, 0x45, 0xdd, 0xca, 0xef, 0x0d, 0x4d,
0x88, 0x0a, 0xc2, 0x5b, 0x0a, 0x28, 0x15, 0x30, 0x56, 0xec, 0x87, 0xd5, 0xdf,
0xbb, 0x4e, 0xd4, 0xf6, 0x5b, 0x0b, 0x59, 0x47, 0xd2, 0xe9, 0x41, 0x0d, 0xdf,
0x46, 0xd0, 0x1d, 0x6a, 0x97, 0x3a, 0xd2, 0x6e, 0x53, 0xa6, 0x6f, 0xf3, 0xb7,
0x65, 0x8a, 0xff, 0xde, 0xa3, 0xf6, 0x91, 0xfe, 0x90, 0x12, 0xdb, 0x6c, 0xdf,
0x07, 0x54, 0x4c, 0x81, 0x39, 0x0a, 0x39, 0x42, 0x1d, 0x83, 0xda, 0xbf, 0x4f,
0xa9, 0x73, 0xc4, 0x17, 0x94, 0xe3, 0x5b, 0xb8, 0xda, 0x7e, 0xff, 0xe3, 0xff,
0xb0, 0xbf, 0x43, 0x8b, 0xeb, 0x3b, 0x6c, 0xb8, 0x9c, 0xb6, 0x28, 0xca, 0xb6,
0x2b, 0xf7, 0x7c, 0x5f, 0x51, 0x5e, 0x70, 0x8f, 0xd6, 0x6b, 0xe8, 0x6e, 0xa8,
0x34, 0x39, 0x3b, 0xbd, 0xf5, 0xb7, 0xb7, 0xf2, 0x7d, 0x40, 0xdc, 0x52, 0x7e,
0xd0, 0xc0, 0xb7, 0x8a, 0xac, 0x2d, 0x41, 0xf0, 0xa7, 0xe4, 0xd7, 0xc9, 0xd0,
0x9f, 0xfe, 0xfc, 0xde, 0x16, 0xea, 0xba, 0x23, 0xc4, 0x77, 0xd4, 0xec, 0x0e,
0xe6, 0x7b, 0xef, 0x7b, 0x9f, 0x68, 0xb3, 0xe4, 0x14, 0xc4, 0xc1, 0x34, 0x3f,
0x72, 0xa6, 0xfc, 0xf0, 0x3b, 0x42, 0xf4, 0x47, 0x84, 0x1e, 0x7f, 0x6f, 0x60,
0x6f, 0x74, 0x32, 0xf5, 0x3c, 0xed, 0xd5, 0xef, 0x38, 0x75, 0xfe, 0xcd, 0x82,
0x8b, 0x4d, 0xdb, 0x14, 0x71, 0x94, 0x78, 0xbc, 0xfc, 0xbe, 0xfa, 0xbe, 0xfe,
0xbe, 0x99, 0x96, 0xe8, 0x9b, 0xa6, 0xd2, 0xd0, 0xdd, 0x7d, 0x27, 0x40, 0xa3,
0xc4, 0x47, 0xec, 0x3b, 0xfe, 0x9d, 0xa2, 0x12, 0xe0, 0x93, 0xdf, 0x49, 0x8a,
0x82, 0xfe, 0x09, 0x75, 0xc9, 0x4c, 0xfb, 0x08, 0x6b, 0x6d, 0x96, 0x4a, 0x7d,
0xa7, 0x61, 0xa3, 0xbe, 0x8f, 0xb1, 0x56, 0x31, 0x14, 0x4b, 0xd1, 0x24, 0xd5,
0x4a, 0x98, 0xf9, 0xce, 0x7c, 0x67, 0xbf, 0xd5, 0x0e, 0xee, 0x7b, 0xe5, 0x2f,
0xcf, 0xfe, 0x38, 0x8a, 0x07, 0xe2, 0x81, 0xba, 0x27, 0xb8, 0x87, 0xef, 0xc7,
0xef, 0x27, 0x70, 0x3c, 0x75, 0x4f, 0x1d, 0x07, 0x9f, 0x85, 0x9a, 0x2e, 0xb9,
0x9e, 0xa9, 0x17, 0xc2, 0xbf, 0x82, 0xbe, 0xfd, 0xa5, 0xcf, 0x1f, 0xa9, 0x27,
0xea, 0x85, 0x7a, 0xff, 0xfe, 0xf8, 0xfe, 0xfc, 0x16, 0x35, 0xc8, 0x7d, 0x4b,
0x43, 0x4c, 0xe2, 0x15, 0xfa, 0xd7, 0xfd, 0x33, 0x35, 0x0f, 0xdd, 0x42, 0xe3,
0x83, 0x7a, 0xa3, 0x16, 0x1b, 0x4b, 0x8d, 0xe5, 0xc6, 0x4a, 0x43, 0xf8, 0x2d,
0x84, 0xc4, 0x6b, 0x8d, 0xf5, 0xc6, 0xeb, 0x74, 0x1e, 0x92, 0xb6, 0x17, 0xd1,
0x0b, 0xf4, 0x1c, 0xfd, 0x49, 0x6d, 0x34, 0xc4, 0xf4, 0x66, 0x63, 0xab, 0x21,
0x69, 0xcc, 0x0b, 0xbe, 0xa4, 0x8d, 0x35, 0x81, 0x5b, 0x44, 0x2c, 0x6b, 0xc8,
0x1b, 0x8a, 0x86, 0xb2, 0x71, 0x64, 0x59, 0xa6, 0x55, 0x0d, 0x75, 0x63, 0x95,
0x5e, 0x9a, 0xe5, 0xa9, 0x21, 0x7e, 0xb5, 0x0d, 0x1d, 0x62, 0x7d, 0xc3, 0xd0,
0x30, 0x36, 0x36, 0x60, 0x93, 0x4f, 0xf7, 0xc2, 0x04, 0x63, 0x6a, 0x98, 0x1b,
0x96, 0xc6, 0xe6, 0x0c, 0xbf, 0x45, 0x5b, 0x1b, 0xb6, 0x86, 0x8c, 0x96, 0x42,
0x23, 0x41, 0xb0, 0x37, 0x14, 0xb4, 0x1c, 0xf1, 0xe3, 0x9f, 0xff, 0x67, 0xd9,
0x50, 0xd1, 0xce, 0x86, 0x92, 0x56, 0xd3, 0x2e, 0xa1, 0xdc, 0x1a, 0xda, 0xdd,
0xf0, 0x80, 0xf7, 0x36, 0x7c, 0x44, 0xa3, 0xa3, 0xfd, 0x8d, 0xd9, 0x19, 0x19,
0x70, 0xc1, 0x86, 0x96, 0xf6, 0x98, 0xf5, 0x74, 0xa8, 0x11, 0x6e, 0xd0, 0x2a,
0x03, 0x6d, 0x82, 0xaf, 0x6d, 0xe8, 0x77, 0x66, 0xa8, 0xdd, 0xc6, 0x1e, 0xe1,
0xcd, 0xb0, 0xec, 0x37, 0x0e, 0xc0, 0x1f, 0x36, 0x22, 0x0d, 0x0b, 0x6d, 0xa4,
0x8f, 0x1a, 0x56, 0xe8, 0x0e, 0x0d, 0x36, 0x5a, 0xa2, 0x94, 0x63, 0x6d, 0x3e,
0x86, 0xed, 0xa4, 0xb1, 0x89, 0x1e, 0x3d, 0x6d, 0xfc, 0xe5, 0x09, 0x10, 0x7d,
0x46, 0xe4, 0x0c, 0x79, 0xbf, 0xd4, 0xe4, 0x74, 0xcc, 0x6a, 0x73, 0x4e, 0xf4,
0x6e, 0xc8, 0x77, 0x8d, 0x0b, 0xf0, 0x97, 0x8d, 0xab, 0x5f, 0x29, 0xaf, 0x1b,
0x0a, 0xc3, 0x4d, 0xe3, 0xb6, 0xe1, 0xa2, 0x9d, 0xf4, 0x89, 0xda, 0x43, 0x47,
0x61, 0x8b, 0x35, 0xf6, 0xb0, 0x5b, 0xf2, 0x21, 0x45, 0xbc, 0x91, 0x68, 0x9c,
0xe9, 0xbc, 0xe0, 0x76, 0x89, 0xbf, 0x64, 0x23, 0x05, 0x7b, 0x80, 0x0e, 0xd1,
0x51, 0x9f, 0x9f, 0x4e, 0x37, 0xa8, 0x06, 0xdd, 0x08, 0xc2, 0xb2, 0x43, 0x87,
0x69, 0xa9, 0x92, 0x69, 0x6c, 0xd3, 0x6c, 0x23, 0x03, 0x44, 0x16, 0x81, 0x6b,
0xec, 0xd1, 0x7c, 0xe3, 0xbe, 0x71, 0xe2, 0x3e, 0xc2, 0xce, 0xfa, 0xa1, 0xf1,
0xd8, 0x78, 0x6a, 0x28, 0x84, 0x67, 0x38, 0xfb, 0xf4, 0x73, 0xe3, 0xa5, 0xf1,
0xda, 0x78, 0x6b, 0xcc, 0x05, 0x0f, 0xe9, 0xf7, 0xc6, 0x01, 0xf1, 0x7e, 0x4c,
0x5b, 0x83, 0x1f, 0x8d, 0xcf, 0xc6, 0x11, 0x2d, 0x6a, 0xd2, 0xf2, 0x08, 0x7d,
0x46, 0xcf, 0x35, 0x51, 0x4f, 0x62, 0x3b, 0xa1, 0x65, 0xce, 0x73, 0x5a, 0x0c,
0x79, 0xbe, 0xb9, 0xd0, 0x5c, 0x6c, 0x2e, 0x35, 0x97, 0xc1, 0x5f, 0xd0, 0x2b,
0x4d, 0xe1, 0x77, 0x3e, 0x7a, 0xb5, 0xb9, 0xd6, 0xa4, 0xb0, 0xe6, 0x2e, 0xa8,
0xaf, 0xe8, 0x6b, 0xfa, 0x86, 0x5e, 0x6f, 0xfe, 0xd7, 0xad, 0x34, 0x5e, 0xf3,
0x2d, 0xbd, 0xd1, 0xdc, 0x30, 0xdc, 0xd1, 0x9b, 0xcd, 0x2d, 0xe4, 0x1b, 0xa5,
0x25, 0x4d, 0x69, 0x53, 0xd6, 0x14, 0xed, 0x7e, 0xce, 0xfe, 0xdb, 0x6e, 0x8c,
0xce, 0x44, 0xe3, 0xf4, 0xbc, 0x7d, 0xcd, 0x6c, 0x21, 0xf7, 0xca, 0xf2, 0xa6,
0xa2, 0x99, 0xa0, 0x95, 0x40, 0x1f, 0xf8, 0xf6, 0x1d, 0x9f, 0x28, 0xb9, 0xaa,
0xb9, 0x62, 0x57, 0x37, 0x35, 0xcd, 0x55, 0xac, 0x35, 0xcf, 0xfe, 0x88, 0x59,
0x2b, 0xd4, 0x40, 0xd7, 0xd4, 0x83, 0x33, 0x34, 0x2f, 0xd0, 0xff, 0xc6, 0xe6,
0xb5, 0xca, 0xd4, 0x34, 0x37, 0x0f, 0x7d, 0x96, 0x59, 0xfd, 0x92, 0xbf, 0x66,
0x97, 0x15, 0xda, 0x34, 0x6d, 0x6b, 0xda, 0x9b, 0x29, 0xfa, 0x0a, 0x3b, 0x5a,
0x47, 0xf3, 0xd1, 0x45, 0xd1, 0x4f, 0xc8, 0x51, 0xee, 0x74, 0x36, 0x69, 0x7a,
0xd7, 0xe8, 0x22, 0xe9, 0x58, 0xda, 0xdd, 0xf4, 0x34, 0x6d, 0x81, 0x4f, 0x3a,
0x4b, 0x73, 0xb4, 0x17, 0x3a, 0xaf, 0xc3, 0xd7, 0xbc, 0xb2, 0x3d, 0x59, 0xfd,
0xcd, 0x65, 0x57, 0xa0, 0x99, 0xa1, 0x0f, 0xb0, 0x96, 0x04, 0x09, 0xf6, 0x85,
0x0e, 0x35, 0x1f, 0xe9, 0x05, 0x66, 0xc5, 0x75, 0x65, 0xe7, 0x91, 0xd7, 0xa7,
0x63, 0xcf, 0x79, 0x4f, 0x3f, 0xd3, 0x57, 0xe6, 0x70, 0x33, 0xee, 0x0e, 0x38,
0xb6, 0x81, 0xb2, 0x59, 0x9e, 0xe8, 0x4d, 0xdb, 0xbc, 0xed, 0x81, 0x5e, 0x91,
0xcc, 0x09, 0xa7, 0xbc, 0x5e, 0xe9, 0x9d, 0xe6, 0x6e, 0x73, 0x7f, 0x5a, 0xc3,
0xe6, 0x61, 0xf3, 0xda, 0xb6, 0x07, 0x4e, 0x69, 0xf4, 0x99, 0x23, 0xcd, 0xa3,
0xe6, 0x3b, 0xfd, 0x46, 0x1f, 0x37, 0x59, 0xc9, 0x07, 0x29, 0xfb, 0x16, 0x56,
0xe2, 0x25, 0xe6, 0x64, 0xda, 0xdb, 0xae, 0xb4, 0xf9, 0xb4, 0x79, 0xd6, 0x3c,
0xc6, 0x9e, 0xef, 0x79, 0xfa, 0x66, 0x1b, 0xa3, 0x0e, 0x9a, 0xa5, 0xe7, 0xcd,
0x88, 0xef, 0x5a, 0x26, 0x62, 0xe6, 0x18, 0x31, 0x33, 0xcf, 0xe8, 0x5d, 0x62,
0xfb, 0xad, 0x64, 0x99, 0xc1, 0xba, 0xc2, 0x88, 0xef, 0x31, 0x0a, 0x9a, 0x46,
0xdb, 0x65, 0x73, 0x15, 0x32, 0x2f, 0x0d, 0x58, 0xaf, 0x9a, 0x5b, 0x98, 0x1d,
0x27, 0xc1, 0xeb, 0xe6, 0x4d, 0x73, 0x8d, 0x59, 0x27, 0xa7, 0x02, 0x6f, 0x9b,
0xcf, 0xd6, 0x88, 0x61, 0x9d, 0xb9, 0x43, 0x0e, 0x5b, 0xc0, 0x45, 0x9b, 0x51,
0xe3, 0x06, 0xb3, 0x66, 0x5d, 0xb5, 0xc6, 0x9a, 0x77, 0xd8, 0xb9, 0xf9, 0x43,
0x52, 0x68, 0x39, 0x8f, 0x9c, 0x91, 0x31, 0x12, 0xe6, 0xee, 0x76, 0x5f, 0x11,
0x07, 0x92, 0xa1, 0x13, 0x4d, 0x25, 0xa3, 0x60, 0x92, 0xcd, 0xd4, 0xb4, 0x55,
0x9b, 0x2a, 0x86, 0x6a, 0x6a, 0x84, 0x9d, 0x1a, 0x3d, 0xb5, 0x37, 0xd9, 0x66,
0x06, 0x71, 0x76, 0xd6, 0x13, 0x5c, 0x93, 0x6f, 0xde, 0x37, 0xaf, 0x31, 0x07,
0x1f, 0x9a, 0x9b, 0xd3, 0xef, 0xb4, 0xc1, 0xeb, 0xf1, 0xec, 0x7d, 0x5e, 0x0d,
0xf3, 0xd8, 0xd4, 0x32, 0x4f, 0xcd, 0xe7, 0xe6, 0x4b, 0x53, 0xc7, 0xbc, 0x22,
0x95, 0x68, 0x76, 0xd6, 0xfc, 0xad, 0xf9, 0x41, 0xbc, 0xa4, 0x50, 0x9a, 0xcf,
0xa6, 0xa8, 0x35, 0xd7, 0xc2, 0x2e, 0xa3, 0x35, 0x0f, 0x7a, 0x3c, 0xfd, 0x4f,
0x83, 0xb0, 0xe9, 0x84, 0x56, 0xdd, 0x68, 0x91, 0xdf, 0xed, 0x40, 0x17, 0x5b,
0x4b, 0xad, 0x65, 0xc4, 0x26, 0x66, 0xa5, 0xb5, 0x8a, 0x78, 0x0d, 0x41, 0xa1,
0xd6, 0x23, 0x4f, 0x03, 0xb3, 0x4e, 0x50, 0xf7, 0x7f, 0xae, 0x70, 0xe0, 0xf7,
0x31, 0xa3, 0x25, 0x2d, 0x69, 0x4b, 0x78, 0x33, 0xa0, 0xa5, 0x0d, 0x6e, 0xb6,
0xcc, 0xbf, 0xde, 0xb5, 0xdc, 0x77, 0xca, 0x5b, 0x8a, 0x96, 0x12, 0x76, 0x33,
0xd2, 0xab, 0x5a, 0xea, 0x96, 0x06, 0xbc, 0xb6, 0x35, 0x7b, 0x47, 0x94, 0x70,
0x7a, 0x50, 0xcb, 0xd4, 0x3f, 0x62, 0x63, 0xcb, 0xd4, 0x32, 0xb7, 0xac, 0x8c,
0x05, 0xbc, 0x15, 0xc1, 0x86, 0x60, 0x47, 0x70, 0xb6, 0x5c, 0xa0, 0x0e, 0x04,
0x37, 0x82, 0x47, 0xf0, 0x30, 0xe7, 0xf4, 0xb6, 0x7c, 0x2d, 0x3b, 0xe3, 0x6f,
0xd9, 0x90, 0x3e, 0x00, 0x6d, 0xb0, 0x15, 0x02, 0x0d, 0xb7, 0xb6, 0x41, 0x77,
0x5a, 0xbb, 0xad, 0x5f, 0x6f, 0x35, 0x08, 0xfc, 0x7e, 0xeb, 0xa0, 0xb5, 0xe7,
0x72, 0x30, 0x2a, 0xe3, 0x95, 0xe1, 0xd4, 0x9d, 0xb5, 0x1f, 0x12, 0x3d, 0x67,
0x88, 0xb4, 0x28, 0x5c, 0x51, 0x9d, 0xcc, 0x51, 0xcb, 0xc5, 0x1c, 0xb7, 0x4e,
0x5a, 0xa7, 0xbf, 0xd2, 0x9e, 0xb5, 0xce, 0xcd, 0x6e, 0xe6, 0xbc, 0xe5, 0x41,
0x2e, 0x17, 0xd0, 0x7b, 0x19, 0x76, 0xfa, 0xfd, 0x13, 0xe3, 0xe5, 0x0c, 0xe3,
0x67, 0x7c, 0xcc, 0x55, 0xeb, 0x04, 0xad, 0xca, 0x6b, 0x2d, 0xfa, 0xeb, 0xd6,
0x4d, 0xeb, 0xf6, 0x57, 0xfa, 0xbb, 0x56, 0x88, 0x89, 0x42, 0x8e, 0xb5, 0xe2,
0xad, 0x18, 0x56, 0xab, 0x20, 0x93, 0x68, 0x05, 0xe0, 0x2b, 0x69, 0x4b, 0x42,
0xcb, 0x6a, 0x52, 0x2d, 0xbb, 0x25, 0xdd, 0xa2, 0x5a, 0x34, 0x24, 0x89, 0x87,
0x11, 0x52, 0x6a, 0x81, 0x64, 0x09, 0x9f, 0x69, 0x85, 0x81, 0xbe, 0xc4, 0x1e,
0x2c, 0x0b, 0x99, 0x43, 0xd8, 0x65, 0xb6, 0x19, 0xbe, 0x75, 0xdf, 0x7a, 0x68,
0xed, 0x30, 0x8f, 0xad, 0xa7, 0xd6, 0x73, 0xeb, 0xa5, 0xb5, 0xcf, 0xec, 0x31,
0xaf, 0xb0, 0xbd, 0x02, 0x77, 0xc0, 0xbc, 0xb5, 0xde, 0x5b, 0x1f, 0x90, 0x3e,
0x5b, 0x87, 0x4c, 0x84, 0x11, 0xb5, 0xe7, 0xda, 0xe8, 0xfb, 0xf6, 0xb6, 0x67,
0x4f, 0x77, 0x6d, 0x38, 0x9a, 0x8e, 0x20, 0x66, 0x3e, 0xe4, 0x34, 0x32, 0x81,
0x40, 0xe8, 0x84, 0xb9, 0x41, 0x9f, 0xcd, 0xb7, 0x17, 0x80, 0x38, 0x65, 0x16,
0xdb, 0x62, 0xe7, 0x52, 0x7b, 0xb9, 0x7d, 0xc1, 0x3c, 0xcb, 0xfd, 0xe6, 0x95,
0xf6, 0x19, 0xb0, 0xe7, 0x08, 0x57, 0x8e, 0xd5, 0xf6, 0x5a, 0xfb, 0xc0, 0xff,
0x0e, 0xec, 0x7a, 0x7b, 0x03, 0xd8, 0xcd, 0xf6, 0x56, 0x5b, 0xd2, 0x96, 0xb6,
0x65, 0x6d, 0x79, 0x5b, 0x78, 0xb2, 0xc5, 0x5c, 0x33, 0x0a, 0xf0, 0x4a, 0x04,
0x55, 0xfb, 0x92, 0x51, 0x23, 0xbe, 0x65, 0x34, 0x6d, 0x2d, 0xb1, 0xeb, 0xda,
0xfa, 0xb6, 0xa1, 0x6d, 0x04, 0x6f, 0x6a, 0x9b, 0x41, 0x2d, 0xed, 0x4b, 0x97,
0x1d, 0x23, 0xc8, 0xda, 0x8e, 0x33, 0xb6, 0xb6, 0xbd, 0x7d, 0xc7, 0xc4, 0x18,
0x07, 0xf4, 0x4e, 0xc1, 0x9b, 0xab, 0xed, 0x6e, 0xdf, 0x30, 0xb3, 0xa7, 0xcd,
0x6d, 0x6f, 0xdb, 0xd7, 0xf6, 0xc3, 0x16, 0x68, 0x87, 0xc9, 0x17, 0x1b, 0xa2,
0xb0, 0x05, 0xdb, 0xa1, 0x76, 0x98, 0xe0, 0xb7, 0xdb, 0xe9, 0xd0, 0x4e, 0x7b,
0xb7, 0x7d, 0xa2, 0xd9, 0x6b, 0xef, 0xb7, 0x0f, 0xa0, 0x3b, 0x44, 0x88, 0xb4,
0x59, 0xe6, 0x08, 0xf1, 0x71, 0xfb, 0xa4, 0xad, 0x70, 0xa6, 0x98, 0xd3, 0xf6,
0x59, 0x9b, 0x66, 0xd2, 0xcc, 0x79, 0x3b, 0x33, 0xed, 0xcb, 0xf6, 0x65, 0xfb,
0xaa, 0x9d, 0x65, 0xae, 0xdb, 0xff, 0xea, 0xab, 0x24, 0x73, 0xd3, 0xbe, 0x6d,
0x3f, 0x32, 0xf7, 0xd2, 0xbb, 0x76, 0xb4, 0x9d, 0x00, 0x2a, 0xd6, 0x8e, 0xb7,
0x37, 0xa6, 0xe7, 0x4b, 0x98, 0x44, 0xfb, 0xca, 0x94, 0x6c, 0xa7, 0xda, 0xe9,
0x19, 0x9e, 0x6a, 0xd3, 0x6d, 0xa6, 0x7d, 0x2a, 0xbc, 0xd3, 0xc1, 0xb6, 0x33,
0xed, 0x6c, 0x9b, 0x6b, 0xf3, 0xb0, 0xdf, 0xb7, 0x1f, 0xda, 0x8f, 0x6d, 0x8f,
0xff, 0xa9, 0x7d, 0x47, 0x66, 0x84, 0x0b, 0xbd, 0x69, 0x20, 0xd7, 0xd1, 0xe7,
0xf6, 0x4b, 0xfb, 0x95, 0x78, 0x78, 0x6b, 0xbf, 0x93, 0x78, 0xc3, 0xfa, 0xd1,
0xbe, 0x47, 0x4e, 0x0c, 0xc3, 0x33, 0x9f, 0x6d, 0x7b, 0x40, 0xd4, 0xd1, 0x38,
0x1e, 0x18, 0x8e, 0xd4, 0x7d, 0xae, 0x23, 0xee, 0x08, 0x4f, 0x4f, 0x3a, 0x0b,
0xe0, 0x16, 0x3b, 0x4b, 0x44, 0x5e, 0x06, 0x5d, 0xc7, 0x4e, 0x6b, 0x85, 0x48,
0xab, 0x02, 0x66, 0xad, 0xf3, 0xc2, 0xac, 0x77, 0x9e, 0x99, 0x8d, 0xce, 0x66,
0x67, 0xab, 0x23, 0x81, 0x56, 0xda, 0x91, 0x75, 0xe4, 0x1d, 0x45, 0x47, 0x09,
0x5e, 0xd5, 0x51, 0x77, 0x34, 0x1d, 0x2d, 0xc1, 0xea, 0x3a, 0xfa, 0x8e, 0xa1,
0x63, 0xec, 0x3c, 0x31, 0x26, 0xc8, 0x5b, 0x7e, 0x33, 0xa8, 0x05, 0xc1, 0xda,
0xb1, 0x75, 0xec, 0x04, 0xe1, 0xe8, 0x38, 0x11, 0xbb, 0x3a, 0xee, 0x8e, 0x07,
0xb1, 0xb7, 0xf3, 0x66, 0xf4, 0x21, 0xf6, 0x77, 0x02, 0x9d, 0x57, 0xe6, 0xd2,
0x87, 0xb6, 0xef, 0xec, 0x4b, 0x43, 0xd0, 0x84, 0xa7, 0x28, 0x2f, 0x37, 0x7b,
0xc3, 0xee, 0x59, 0xb9, 0xdd, 0x79, 0x67, 0x76, 0x3a, 0xe7, 0xa4, 0x55, 0x76,
0x3b, 0x7b, 0xb0, 0xef, 0x0b, 0xe5, 0x5b, 0xc7, 0x9d, 0xef, 0x41, 0x67, 0xb6,
0x97, 0x06, 0xf7, 0xc6, 0xd0, 0xe6, 0x08, 0xd1, 0x1c, 0x75, 0x8e, 0x49, 0xcc,
0x98, 0x45, 0xac, 0x18, 0x3d, 0x7c, 0xd2, 0x39, 0xed, 0x9c, 0x75, 0xce, 0x3b,
0x6f, 0xa6, 0x8b, 0xce, 0x1c, 0x3b, 0xcf, 0x5e, 0x76, 0xae, 0x3a, 0x7b, 0xaa,
0xeb, 0x8e, 0xd3, 0x7b, 0xd3, 0xb9, 0xed, 0xdc, 0x18, 0xc4, 0x58, 0xbb, 0x3e,
0x99, 0x67, 0x72, 0x52, 0xc7, 0x1c, 0xbe, 0xeb, 0x44, 0x3b, 0x8b, 0x6c, 0xac,
0x13, 0x27, 0x3e, 0x16, 0xd8, 0x25, 0xf6, 0xdf, 0x9e, 0xac, 0x93, 0xf6, 0x4c,
0x74, 0x92, 0x9d, 0x14, 0x30, 0x49, 0xf4, 0xc5, 0x01, 0x59, 0x29, 0xd3, 0x1d,
0xaa, 0x43, 0x43, 0x13, 0x71, 0x30, 0x9d, 0x75, 0x96, 0xed, 0x64, 0xc0, 0x67,
0x3b, 0x76, 0xfb, 0x32, 0x3c, 0x70, 0xe0, 0x57, 0x04, 0x4f, 0x7c, 0xe7, 0x1e,
0xd2, 0x03, 0xc2, 0x63, 0xe7, 0x09, 0x74, 0x43, 0xfd, 0xdc, 0x59, 0x63, 0x5f,
0x3a, 0xaf, 0x9d, 0x37, 0x48, 0xef, 0x9d, 0x8f, 0x8e, 0x44, 0xf3, 0x29, 0xd4,
0x4d, 0xd4, 0x45, 0x9f, 0xb0, 0x73, 0xdd, 0x6b, 0x93, 0xb8, 0x3b, 0xdf, 0x5d,
0xe8, 0x2e, 0x76, 0x7f, 0xbd, 0x4b, 0x0c, 0x7e, 0xb9, 0xbb, 0xd2, 0x7d, 0x91,
0xaf, 0x82, 0x5b, 0x23, 0x96, 0x75, 0x50, 0x09, 0xbb, 0xd1, 0x35, 0xeb, 0x5e,
0xac, 0x9b, 0xe0, 0x7d, 0x8e, 0x2d, 0xa2, 0x97, 0x10, 0x2a, 0x05, 0x95, 0x75,
0xe5, 0xa0, 0x8a, 0xae, 0x5e, 0xae, 0xec, 0xea, 0xc1, 0xa9, 0xba, 0x9b, 0xec,
0x16, 0x6b, 0x9f, 0xfe, 0xff, 0x1c, 0xa1, 0x7c, 0xea, 0xae, 0xa6, 0xab, 0xfd,
0x83, 0x67, 0x75, 0xdd, 0xdf, 0x35, 0x37, 0x40, 0x52, 0xb3, 0xc6, 0xae, 0xa9,
0x6b, 0xee, 0x5a, 0xba, 0x3a, 0xd6, 0xda, 0xb5, 0x75, 0xed, 0x5d, 0x47, 0xd7,
0x49, 0x50, 0x5a, 0x76, 0x03, 0xed, 0xe0, 0x22, 0xbc, 0x8c, 0x95, 0xb3, 0x2a,
0xd6, 0x4d, 0x78, 0x4f, 0x57, 0xc3, 0x7a, 0xbb, 0x3e, 0xf0, 0x16, 0x95, 0x1f,
0x54, 0xcf, 0x2a, 0xd9, 0x40, 0x37, 0xd8, 0x55, 0xb0, 0xff, 0xd9, 0xae, 0x25,
0xdc, 0xdd, 0xee, 0x86, 0xba, 0x3b, 0xdd, 0x5d, 0xa4, 0xd8, 0xeb, 0xee, 0x77,
0x0f, 0xba, 0x66, 0xf6, 0x90, 0xf8, 0xb3, 0xb0, 0x91, 0xee, 0x91, 0x50, 0xae,
0xe3, 0xee, 0x49, 0xf7, 0xb4, 0x6b, 0x25, 0x9e, 0x4c, 0xac, 0x91, 0x3d, 0xeb,
0x9e, 0x77, 0x2f, 0xba, 0x37, 0xa6, 0x55, 0x97, 0x61, 0xe6, 0xfd, 0x12, 0x58,
0xe7, 0x7f, 0x90, 0x97, 0x9d, 0xe8, 0xae, 0xba, 0xd7, 0xb0, 0xdf, 0x74, 0x6f,
0xbb, 0x77, 0xdd, 0x68, 0xd7, 0xc1, 0xda, 0xa0, 0x7d, 0x9e, 0x7e, 0xd9, 0x92,
0x8d, 0x41, 0x9f, 0x40, 0x88, 0x23, 0xb8, 0xa1, 0x4d, 0x76, 0xbd, 0x6c, 0x8a,
0xe4, 0x9b, 0x06, 0xa5, 0x10, 0xe8, 0x59, 0xeb, 0x1c, 0x28, 0x3c, 0xec, 0xeb,
0xf4, 0xbf, 0xa6, 0x09, 0x1a, 0xb6, 0xbb, 0xcf, 0xfa, 0xd8, 0x0c, 0xa4, 0x20,
0x9b, 0xed, 0xfa, 0x59, 0xae, 0x1b, 0x60, 0xf9, 0x19, 0xfa, 0x1e, 0x5c, 0x88,
0x7d, 0x00, 0x7d, 0xec, 0x3e, 0x75, 0x9f, 0xbb, 0xdb, 0xec, 0x4b, 0xf7, 0x95,
0x58, 0x77, 0x90, 0xcf, 0xee, 0xac, 0xac, 0x07, 0xec, 0x1e, 0x7b, 0xc8, 0x1e,
0x41, 0x8e, 0x20, 0xbc, 0x77, 0xdf, 0xba, 0x5a, 0xc7, 0x47, 0xf7, 0x73, 0xe6,
0x47, 0xd4, 0x43, 0xe9, 0x90, 0xeb, 0x31, 0xbb, 0x69, 0x9d, 0xeb, 0x91, 0x9d,
0x28, 0x2b, 0xee, 0x39, 0x7c, 0xa7, 0xec, 0x9a, 0x7c, 0xbe, 0xb7, 0xd0, 0x5b,
0xec, 0x19, 0xb0, 0x5b, 0x8b, 0xe0, 0xde, 0xf8, 0x50, 0x71, 0x06, 0x0f, 0xe7,
0x08, 0x17, 0xec, 0xa5, 0xe0, 0x7f, 0xa9, 0xb7, 0xdc, 0x5b, 0xe9, 0x5d, 0xb1,
0xab, 0xbd, 0x23, 0xc5, 0x81, 0xfc, 0x42, 0xab, 0xf2, 0xac, 0xf5, 0x6e, 0xd8,
0x6b, 0x76, 0x1d, 0x9e, 0x36, 0x7a, 0x9b, 0xbd, 0xdb, 0x59, 0x39, 0xce, 0xe0,
0x65, 0x0b, 0x5a, 0x09, 0xc9, 0x23, 0xc6, 0x4a, 0x7b, 0x51, 0xf6, 0x8e, 0x95,
0xf5, 0xe2, 0xac, 0xbc, 0x27, 0x3c, 0x81, 0x27, 0x58, 0x45, 0xcf, 0x2d, 0x51,
0xf6, 0x54, 0xbd, 0x04, 0xab, 0xee, 0x51, 0x6c, 0x9a, 0xe8, 0x34, 0x3d, 0x6d,
0x4f, 0xd7, 0xd3, 0xf7, 0x18, 0x96, 0x66, 0x59, 0x68, 0x36, 0x5d, 0x86, 0x9e,
0x11, 0xa9, 0x32, 0xac, 0xa9, 0x67, 0xee, 0x59, 0x7a, 0xd6, 0x5e, 0x96, 0xe5,
0xa1, 0xb7, 0xf5, 0x38, 0xd6, 0xde, 0xa3, 0xbc, 0x8e, 0x9e, 0x93, 0xf8, 0xbc,
0x67, 0x5d, 0x88, 0xdd, 0x3d, 0x4f, 0xcf, 0x8b, 0xf8, 0x01, 0x88, 0x28, 0x66,
0xa8, 0x0f, 0xfc, 0x23, 0xfb, 0x04, 0xc9, 0xdf, 0xf3, 0xfa, 0x03, 0x42, 0xee,
0xc1, 0x5e, 0xa8, 0x17, 0xee, 0x6d, 0xf7, 0xfc, 0xd6, 0x9d, 0xde, 0x2e, 0x74,
0xf3, 0x12, 0xbf, 0x6d, 0xaf, 0xf7, 0x0c, 0x14, 0xed, 0xfd, 0xdd, 0xe3, 0x6f,
0xec, 0x0b, 0x7b, 0x89, 0xd5, 0xe4, 0x95, 0xb5, 0x4d, 0x7f, 0x71, 0x04, 0xf2,
0x00, 0xe1, 0xb0, 0x17, 0xe9, 0x1d, 0x11, 0x4f, 0x4e, 0xdf, 0x07, 0x2b, 0xca,
0x7c, 0xb2, 0x73, 0x19, 0xb4, 0x69, 0x4f, 0x24, 0x3d, 0x32, 0xbf, 0x1b, 0x8f,
0x15, 0xe2, 0x8c, 0xb0, 0x47, 0xc6, 0x3e, 0x75, 0x01, 0xfc, 0x09, 0xb0, 0x73,
0x68, 0x91, 0xf9, 0x8c, 0xc3, 0x71, 0xda, 0x0b, 0x86, 0xd6, 0x5c, 0xef, 0xec,
0x22, 0xee, 0x22, 0xa4, 0x9a, 0xb3, 0xde, 0x79, 0xef, 0x34, 0x78, 0xd1, 0xbb,
0x04, 0xe2, 0xaa, 0x77, 0xdd, 0xbb, 0xe9, 0xdd, 0xf6, 0x5e, 0x54, 0x0a, 0xd8,
0x96, 0xd5, 0x77, 0xbd, 0x1b, 0x9b, 0x68, 0x7a, 0x8e, 0x29, 0xb3, 0x2e, 0x67,
0xa7, 0xe7, 0xdc, 0x48, 0x8e, 0x87, 0xf2, 0xe5, 0x4c, 0xac, 0xb7, 0x92, 0x59,
0xca, 0xdc, 0xa9, 0xe3, 0xbd, 0x73, 0xdd, 0xad, 0x29, 0x01, 0x7d, 0xb2, 0x27,
0x26, 0x77, 0xf4, 0xc7, 0xa1, 0x54, 0x2f, 0xdd, 0xa3, 0x7a, 0x6b, 0x99, 0x4d,
0x86, 0xee, 0xad, 0x0a, 0xe5, 0x60, 0x7a, 0x6c, 0x6f, 0x33, 0xb3, 0x9e, 0xd9,
0xc8, 0x64, 0x7a, 0x5b, 0xd0, 0x49, 0x32, 0x54, 0x48, 0x9a, 0x91, 0x65, 0xb2,
0x3d, 0xaf, 0x45, 0x2f, 0xfc, 0xff, 0xeb, 0x0f, 0x73, 0x9c, 0xbc, 0x65, 0xa1,
0x0b, 0xd2, 0x32, 0x8d, 0xf1, 0x14, 0xb5, 0x55, 0x66, 0xb8, 0x9e, 0x22, 0xc3,
0xeb, 0x55, 0x19, 0x39, 0xf1, 0xb3, 0xac, 0xe7, 0x49, 0x09, 0x74, 0x99, 0x8d,
0x14, 0xda, 0xb7, 0x77, 0xb8, 0xfb, 0xd8, 0x7b, 0x32, 0x6b, 0x32, 0x4f, 0xbd,
0xe7, 0xde, 0x0b, 0xb1, 0x2c, 0x84, 0xb2, 0xb3, 0xef, 0x01, 0xad, 0x49, 0x5f,
0x7b, 0xb7, 0x16, 0x95, 0xb0, 0x5b, 0x7c, 0xeb, 0xa9, 0x7d, 0xef, 0x3d, 0x8b,
0xf0, 0x76, 0x36, 0x1d, 0x4a, 0x63, 0x17, 0xa3, 0xcf, 0x7c, 0xf4, 0x9c, 0xce,
0x37, 0x20, 0x3e, 0x7b, 0xa2, 0xbe, 0x21, 0x33, 0xd7, 0x37, 0x66, 0x02, 0x66,
0x53, 0x46, 0xdc, 0x67, 0xc8, 0x6f, 0x17, 0xda, 0x8c, 0x25, 0x63, 0x43, 0xce,
0x56, 0x04, 0x33, 0x29, 0x81, 0x9d, 0x50, 0x47, 0x66, 0xbe, 0xbf, 0xd0, 0x7f,
0xb5, 0x2e, 0xf6, 0x6f, 0xc8, 0x97, 0x1b, 0x96, 0xfa, 0xcb, 0xfd, 0x95, 0xbe,
0x93, 0xd8, 0x34, 0x81, 0xd5, 0x3e, 0x66, 0x62, 0xe6, 0x5f, 0x3d, 0xe8, 0xce,
0xac, 0xf5, 0x57, 0xc3, 0xeb, 0xfd, 0xd9, 0x2f, 0xcd, 0xa7, 0x1e, 0xc1, 0xea,
0xcd, 0xf8, 0x08, 0xb7, 0xd1, 0x0f, 0x65, 0x36, 0xfb, 0x7e, 0xf0, 0x01, 0x84,
0x60, 0x26, 0x9c, 0xd9, 0x12, 0xd0, 0x92, 0xbe, 0x94, 0x70, 0x8e, 0x3f, 0x5f,
0x4f, 0xea, 0x3f, 0x05, 0xe4, 0x7d, 0x45, 0xdf, 0x69, 0x51, 0xf6, 0x55, 0xfd,
0x6d, 0x60, 0x79, 0xb4, 0xdd, 0x4e, 0x66, 0x8f, 0x0f, 0x04, 0xd4, 0xfd, 0x5d,
0xc8, 0x7b, 0x19, 0x4d, 0x7f, 0x3f, 0x13, 0x91, 0x6b, 0xfb, 0x87, 0xd3, 0xf1,
0x60, 0xd6, 0x91, 0xd4, 0x11, 0xf0, 0xfa, 0xfe, 0xfc, 0xf4, 0x7b, 0x6d, 0x7d,
0x63, 0xdf, 0xd4, 0x3f, 0xca, 0x9c, 0x65, 0xcc, 0xfd, 0x93, 0x8c, 0x05, 0x56,
0x6b, 0xdf, 0xd6, 0x3f, 0x25, 0xa5, 0xe0, 0xe5, 0xc7, 0x99, 0xf3, 0x3f, 0xb5,
0x84, 0xfe, 0x02, 0x9c, 0x07, 0x7b, 0xe7, 0xcb, 0xcc, 0xd5, 0xac, 0x2e, 0x8e,
0xbe, 0xb3, 0xef, 0xea, 0xdf, 0x99, 0xdc, 0x7d, 0x0f, 0x10, 0xd7, 0xd0, 0x7b,
0xfb, 0xbe, 0xbe, 0x7b, 0xfa, 0x6d, 0xc7, 0xfe, 0x1d, 0x41, 0xdd, 0x82, 0xde,
0x10, 0x2e, 0x9b, 0x0e, 0xf4, 0xcf, 0x7c, 0x41, 0x92, 0x7f, 0xa8, 0x1f, 0xee,
0x47, 0x33, 0xb1, 0xcc, 0x76, 0x7f, 0x07, 0xf2, 0x6e, 0x7f, 0xaf, 0xbf, 0x8f,
0xf8, 0x00, 0xe1, 0xb0, 0x1f, 0x01, 0x3d, 0x42, 0x88, 0x67, 0x8e, 0xfb, 0x27,
0xfd, 0x44, 0xe6, 0xb4, 0x9f, 0xcc, 0x9c, 0xf5, 0xcf, 0xfb, 0xa9, 0xcc, 0x45,
0xff, 0xb2, 0x7f, 0x35, 0xcd, 0xa7, 0x7f, 0x03, 0x7a, 0xa2, 0xb8, 0x25, 0xbe,
0xee, 0xfa, 0xd1, 0x7e, 0x0c, 0x5c, 0xaa, 0x9f, 0xce, 0xc4, 0xfb, 0x09, 0x70,
0xc9, 0x7e, 0x9a, 0x58, 0xa8, 0xfe, 0xdf, 0x57, 0x4b, 0x2a, 0x23, 0x76, 0xd3,
0xd0, 0x32, 0x7d, 0x26, 0xa3, 0x97, 0xb1, 0xfd, 0x6c, 0x06, 0x7f, 0xfd, 0x2c,
0x34, 0x5c, 0x7f, 0x5e, 0x18, 0x09, 0x56, 0x95, 0xdb, 0xa7, 0x73, 0xcc, 0x61,
0x9e, 0x5e, 0x69, 0xe3, 0x46, 0xbe, 0x7f, 0x86, 0x71, 0x7e, 0x0f, 0x04, 0x9f,
0x79, 0xec, 0x3f, 0xf5, 0xb9, 0x8c, 0x2d, 0x98, 0x50, 0xec, 0x7a, 0xce, 0x5c,
0xcf, 0xd0, 0xbd, 0xf4, 0xdf, 0xcd, 0xa1, 0xd0, 0x43, 0xff, 0x14, 0x2d, 0xf9,
0x0a, 0xf9, 0x0d, 0xe1, 0xbd, 0xff, 0x88, 0xfa, 0x7e, 0xf4, 0x1f, 0x32, 0xcb,
0x83, 0xcf, 0x59, 0x09, 0x44, 0x03, 0xbf, 0x7f, 0xdd, 0x35, 0x37, 0x10, 0x0f,
0xe6, 0x07, 0x18, 0x95, 0x83, 0xc5, 0xc1, 0xb6, 0x74, 0x09, 0xdc, 0x53, 0xe6,
0x9e, 0xb4, 0xce, 0x8e, 0x37, 0x15, 0x7c, 0xce, 0xac, 0x0c, 0x7e, 0x9d, 0x5b,
0x05, 0xff, 0x92, 0x59, 0x23, 0x9a, 0xf5, 0xc1, 0x5b, 0x26, 0x65, 0x3b, 0x95,
0x9f, 0xc9, 0x5f, 0x81, 0xde, 0x18, 0x6c, 0x0e, 0xb6, 0x06, 0x49, 0x85, 0x4c,
0x23, 0x19, 0x48, 0x07, 0x29, 0x85, 0x6c, 0x20, 0x1f, 0x98, 0xc9, 0xd5, 0xfb,
0x4a, 0xf8, 0x85, 0x4d, 0x31, 0x50, 0x22, 0x9d, 0x6a, 0xa0, 0x1e, 0x9c, 0x91,
0x13, 0xb6, 0x9a, 0xc1, 0x7b, 0x46, 0x4b, 0x3c, 0x7d, 0x64, 0x3e, 0x33, 0xa2,
0x2c, 0x76, 0xbf, 0xd9, 0xb9, 0xec, 0x7f, 0xcd, 0x9d, 0xfb, 0x13, 0x56, 0xaf,
0xf9, 0xac, 0x0e, 0xb9, 0xeb, 0x07, 0x86, 0xc1, 0x42, 0xd6, 0x38, 0x58, 0x24,
0x39, 0x9b, 0xa0, 0x59, 0xca, 0x9a, 0x07, 0x16, 0xc4, 0xd6, 0x81, 0x4d, 0xa8,
0xb9, 0x9d, 0xc4, 0x8e, 0xc1, 0x4a, 0x76, 0x39, 0xeb, 0x1c, 0xac, 0x02, 0xe9,
0x12, 0x2c, 0xee, 0xc1, 0x7f, 0x96, 0xcb, 0xbd, 0x27, 0xf0, 0xe7, 0x8c, 0x3d,
0x7a, 0xcb, 0x33, 0x90, 0x29, 0xbd, 0x40, 0xfb, 0x06, 0xfe, 0x41, 0x00, 0xf1,
0x5a, 0x36, 0x38, 0x58, 0x87, 0xa7, 0xf5, 0x5d, 0xfd, 0xf9, 0x1e, 0x59, 0x5b,
0xde, 0x24, 0xa1, 0x81, 0x1e, 0x63, 0x39, 0xfc, 0xcb, 0xe7, 0xbd, 0x5e, 0xe2,
0xff, 0x34, 0x6d, 0x0f, 0x36, 0x80, 0xbc, 0xc4, 0xf5, 0x68, 0x67, 0xb0, 0x3b,
0xd8, 0xcc, 0x9e, 0x4d, 0xbf, 0x86, 0xfe, 0xcf, 0x91, 0xa1, 0xdf, 0x1b, 0x6c,
0x65, 0x19, 0x99, 0x24, 0xbb, 0x3f, 0x38, 0x18, 0x1c, 0x0e, 0xa4, 0x40, 0x46,
0x06, 0x47, 0x83, 0xe3, 0x81, 0x3c, 0xab, 0xc8, 0x9e, 0x0c, 0x54, 0x59, 0x59,
0xf6, 0x14, 0x1e, 0x95, 0xd0, 0x9f, 0x0d, 0xce, 0x07, 0xa7, 0x64, 0xf5, 0xba,
0x18, 0xa8, 0x21, 0x6b, 0x48, 0x9d, 0x2f, 0x07, 0x57, 0x83, 0xeb, 0xc1, 0xcd,
0xe0, 0x56, 0xc8, 0xf7, 0x6e, 0x10, 0x1d, 0xc4, 0x06, 0xf1, 0x81, 0x36, 0xab,
0x83, 0x3d, 0x31, 0x48, 0x0e, 0xf4, 0x04, 0x67, 0xcc, 0xa6, 0x06, 0xe9, 0x01,
0x35, 0x30, 0x40, 0x32, 0x67, 0x6d, 0x59, 0x7a, 0xc0, 0x20, 0x85, 0x29, 0x6b,
0xc9, 0x5a, 0xa1, 0x61, 0x07, 0x76, 0x50, 0x9b, 0x2a, 0x33, 0xc8, 0x42, 0xcb,
0x0d, 0x78, 0xd0, 0xfb, 0xc1, 0xc3, 0xe0, 0x71, 0xf0, 0x5f, 0xf7, 0x3c, 0x86,
0x37, 0x38, 0xb2, 0xce, 0xec, 0xf5, 0xf4, 0x4d, 0x24, 0xe4, 0xfa, 0x3c, 0x1d,
0xab, 0xbf, 0x72, 0x77, 0x65, 0x5f, 0xa7, 0xe5, 0x15, 0xce, 0xd2, 0x85, 0xdd,
0xee, 0xac, 0x07, 0x25, 0x7e, 0x1b, 0xbc, 0x0f, 0x3e, 0x06, 0x27, 0xf6, 0xb4,
0xeb, 0x53, 0xc0, 0x8a, 0x86, 0x73, 0x43, 0xac, 0x19, 0x59, 0x31, 0xe8, 0x3c,
0xc2, 0xc7, 0xf4, 0xea, 0x34, 0x0c, 0xd8, 0x8e, 0xa4, 0x0c, 0xee, 0x13, 0x58,
0xd5, 0xe2, 0xf0, 0x2f, 0x79, 0xda, 0x43, 0xd9, 0x8c, 0x6a, 0x69, 0xb8, 0x3c,
0x64, 0xc9, 0x2a, 0x1b, 0xcc, 0xae, 0x0c, 0x57, 0x87, 0xfe, 0xec, 0xda, 0x30,
0x90, 0x5d, 0x1f, 0xfa, 0x48, 0xcb, 0x1d, 0xcd, 0x46, 0xf5, 0x06, 0x49, 0xbb,
0x39, 0xdc, 0x1a, 0x4a, 0x86, 0xe1, 0xec, 0x36, 0xf4, 0xd2, 0xe1, 0x4e, 0x76,
0x17, 0xb1, 0x6c, 0x28, 0x27, 0xb6, 0xfd, 0xac, 0x02, 0xf1, 0x1e, 0x34, 0xca,
0xa1, 0x6a, 0x78, 0x6c, 0x3c, 0xc8, 0xaa, 0x87, 0x9a, 0xa1, 0x76, 0x18, 0xf9,
0x35, 0x33, 0x74, 0x43, 0x3d, 0x30, 0x72, 0xe5, 0x61, 0xd6, 0x30, 0x34, 0x0e,
0xdf, 0xac, 0xf2, 0x3f, 0xef, 0x69, 0x91, 0xf4, 0xc7, 0x33, 0x9c, 0x19, 0xb2,
0x05, 0xc1, 0x3a, 0xb4, 0x0d, 0xed, 0xc4, 0xe6, 0x18, 0x06, 0xc9, 0x97, 0xee,
0x4e, 0x80, 0x71, 0x0e, 0x5d, 0xd0, 0x6d, 0x90, 0xeb, 0x90, 0x1b, 0x9c, 0x67,
0xe8, 0x1d, 0x9e, 0x66, 0x7d, 0xbf, 0xea, 0x76, 0x05, 0xd4, 0x45, 0x36, 0x30,
0x3c, 0xcf, 0x5e, 0x66, 0x83, 0xc3, 0x33, 0x48, 0x7e, 0x62, 0x0d, 0x0d, 0xc3,
0xc3, 0xed, 0xe1, 0x4d, 0x76, 0x87, 0x48, 0xbb, 0x84, 0xee, 0x0d, 0xaf, 0xb3,
0xfb, 0xc3, 0x3b, 0x92, 0xb7, 0x5d, 0x75, 0x8b, 0xf8, 0x00, 0xfa, 0x28, 0x91,
0x63, 0xd3, 0x51, 0x94, 0x8d, 0x0b, 0xe5, 0x4a, 0x66, 0xd3, 0xd9, 0x54, 0xf6,
0x1f, 0xff, 0x9b, 0xfe, 0xde, 0x31, 0x36, 0x0e, 0x51, 0xb2, 0xc8, 0x90, 0xca,
0x1e, 0x0d, 0x8f, 0x87, 0x34, 0x4a, 0x72, 0x02, 0xf9, 0x74, 0x78, 0x36, 0x3c,
0x47, 0x6c, 0x90, 0x5f, 0x80, 0x5e, 0x0e, 0x19, 0xe8, 0xaf, 0x86, 0xd7, 0x43,
0x36, 0x7b, 0x03, 0xf9, 0x76, 0x98, 0x9d, 0xbe, 0xe7, 0x30, 0xad, 0xd1, 0xaf,
0xf6, 0x89, 0x0d, 0x33, 0xd9, 0xf8, 0x30, 0x9b, 0x4d, 0x0c, 0xb9, 0x2c, 0x9f,
0x4d, 0x0e, 0x53, 0xc3, 0xf4, 0xf0, 0xe6, 0xcf, 0x57, 0x43, 0x87, 0x34, 0x70,
0xf7, 0xd9, 0x87, 0x2c, 0x83, 0xf8, 0x31, 0xfb, 0x94, 0x65, 0x87, 0x99, 0xe1,
0x73, 0x36, 0x0b, 0x89, 0x1b, 0x4a, 0x3d, 0xaf, 0x59, 0x7e, 0xb8, 0xe8, 0x7d,
0xcb, 0xbe, 0x20, 0x97, 0x8f, 0xec, 0xfd, 0xf0, 0x61, 0xf8, 0x9e, 0x7d, 0x84,
0xed, 0x13, 0xf2, 0xd3, 0xf0, 0x79, 0x28, 0xe2, 0x30, 0x72, 0x21, 0xbf, 0x0e,
0xdf, 0x86, 0xef, 0xc3, 0x8f, 0xe1, 0xe7, 0x50, 0x34, 0x9a, 0x1b, 0xcd, 0x41,
0x2b, 0x1e, 0xcd, 0x8f, 0x30, 0x1a, 0x47, 0x8b, 0xa3, 0xa5, 0xd1, 0x32, 0xb8,
0x15, 0x84, 0xd5, 0x91, 0xb0, 0x93, 0x40, 0x2c, 0xe6, 0xd6, 0x47, 0xf3, 0xdc,
0xc6, 0x68, 0x93, 0xe8, 0x16, 0xb8, 0x2d, 0xc4, 0x8b, 0xdc, 0x12, 0x52, 0x2e,
0x73, 0x92, 0xd1, 0x0a, 0xb7, 0xca, 0xad, 0x71, 0xeb, 0x9c, 0x14, 0x5a, 0xd9,
0x68, 0x83, 0xdb, 0x84, 0x5e, 0x79, 0xbe, 0xc5, 0xc9, 0x47, 0x8a, 0x91, 0x12,
0x3a, 0x15, 0x82, 0x7a, 0xa4, 0x19, 0x3d, 0xdf, 0x29, 0x94, 0x5a, 0xc1, 0xab,
0x48, 0x2e, 0xd3, 0x49, 0x39, 0x09, 0xb7, 0x40, 0x9e, 0x82, 0xeb, 0x88, 0x56,
0x3f, 0x32, 0x8c, 0xe4, 0x9c, 0x82, 0x93, 0x4d, 0xd3, 0x73, 0xe4, 0x37, 0x4e,
0xbf, 0x71, 0x64, 0x1a, 0x99, 0x47, 0x2a, 0x48, 0x6f, 0x4a, 0x0b, 0x41, 0x59,
0x09, 0xb5, 0x81, 0xda, 0x11, 0x1c, 0x23, 0x27, 0xa8, 0x0b, 0xc1, 0x3d, 0xf2,
0x8c, 0xbc, 0x23, 0xdf, 0xc8, 0x3f, 0x5a, 0x10, 0x9e, 0x6d, 0x05, 0x46, 0x6a,
0x2e, 0x08, 0x4b, 0x68, 0x14, 0x1e, 0x6d, 0x8f, 0x7e, 0xfd, 0x7a, 0x3f, 0xda,
0x25, 0x92, 0x96, 0xdb, 0x1b, 0xed, 0x8f, 0x0e, 0x46, 0x87, 0x90, 0x22, 0xa3,
0xa3, 0xd1, 0x31, 0xe2, 0x93, 0x91, 0x49, 0x72, 0x3a, 0x3a, 0x1b, 0xe9, 0xb8,
0x35, 0x9f, 0x86, 0x3b, 0x87, 0x46, 0xcf, 0x19, 0x48, 0x59, 0x2e, 0x48, 0x9a,
0xcb, 0xd1, 0xd5, 0xc8, 0xc8, 0x99, 0xb8, 0x5f, 0xcf, 0xbc, 0x47, 0x37, 0x23,
0x33, 0x77, 0x3b, 0x62, 0xfc, 0x1b, 0xfa, 0xbb, 0xd1, 0xab, 0x6e, 0x0b, 0xf7,
0xe6, 0xd1, 0x51, 0x6c, 0x14, 0x07, 0xde, 0x42, 0x70, 0x89, 0x51, 0x72, 0x64,
0x07, 0x97, 0x1a, 0xa5, 0xa1, 0xa3, 0x46, 0xf4, 0xc8, 0xca, 0x31, 0xb3, 0xf2,
0x38, 0x38, 0x76, 0x94, 0x19, 0x65, 0x35, 0x36, 0xc1, 0x67, 0x76, 0xe4, 0xe4,
0xb8, 0x91, 0x8b, 0x73, 0x43, 0xf6, 0x23, 0xac, 0xea, 0xf9, 0xd1, 0x3d, 0x41,
0xdf, 0x61, 0x96, 0x3d, 0x80, 0x7b, 0x44, 0x08, 0x70, 0x5e, 0xce, 0xc3, 0xf9,
0xb8, 0x27, 0xf0, 0xcf, 0xa3, 0x4b, 0x5c, 0x93, 0x5f, 0x46, 0xaf, 0x82, 0xcf,
0xb7, 0xd1, 0x36, 0x17, 0xe6, 0x42, 0xdc, 0x3b, 0x64, 0x39, 0x56, 0xfe, 0x8f,
0xd1, 0xe7, 0x48, 0x34, 0x9e, 0x1b, 0x93, 0xd3, 0x88, 0xa0, 0xf3, 0xe3, 0x05,
0xd0, 0x45, 0x84, 0x13, 0xf8, 0x3f, 0x44, 0x88, 0x70, 0x7b, 0xdc, 0x31, 0xb7,
0x34, 0x3e, 0xe0, 0x6e, 0xb0, 0x8e, 0x2d, 0x8f, 0x03, 0xe1, 0x95, 0xf1, 0x11,
0xb7, 0xcf, 0xed, 0x72, 0x3b, 0xdc, 0x2a, 0x70, 0x6b, 0xe3, 0xf5, 0xf1, 0xc6,
0xf8, 0x8c, 0xdb, 0x04, 0xbf, 0x45, 0xfc, 0x5c, 0x72, 0x92, 0xb1, 0x74, 0x7c,
0xc1, 0x9d, 0x73, 0xb2, 0xb1, 0x7c, 0xac, 0x18, 0x2b, 0xc7, 0x2a, 0xa2, 0xf7,
0x7a, 0x4f, 0x39, 0x5e, 0x72, 0xc5, 0xa9, 0xc7, 0x37, 0xa4, 0x3e, 0x9a, 0xb1,
0x76, 0xac, 0x83, 0x85, 0x95, 0x07, 0x39, 0x35, 0xae, 0x2d, 0xfa, 0xf1, 0x1d,
0xd1, 0x1b, 0xa0, 0x33, 0x8e, 0x4d, 0x63, 0xf3, 0xf8, 0x96, 0xbb, 0xe6, 0x36,
0xec, 0x96, 0xb1, 0x75, 0x2c, 0xfc, 0xfa, 0x39, 0xb6, 0x8f, 0x1d, 0xe0, 0x33,
0x7e, 0xe7, 0xd8, 0x85, 0xd8, 0x3d, 0x3e, 0x09, 0x79, 0x10, 0x47, 0x39, 0xef,
0x78, 0x7b, 0xec, 0x1b, 0xfb, 0xc7, 0x81, 0x71, 0x8c, 0xf8, 0x08, 0x0a, 0x29,
0xe2, 0xdc, 0xee, 0x38, 0x34, 0x0e, 0x8f, 0x77, 0x88, 0xbc, 0x07, 0xba, 0x8f,
0x70, 0x40, 0xa4, 0xc3, 0x71, 0x82, 0x8b, 0x8c, 0x93, 0x04, 0x7f, 0x34, 0xfe,
0xc7, 0xff, 0x73, 0x7f, 0x7a, 0xc7, 0xf1, 0x38, 0x85, 0xda, 0xa9, 0xa7, 0x5f,
0xd9, 0xe3, 0xd2, 0xc2, 0x18, 0xa2, 0x10, 0x9f, 0x8c, 0xa5, 0x7e, 0x07, 0x66,
0xd7, 0xb6, 0xeb, 0x14, 0xf5, 0x3e, 0x1b, 0x5f, 0x8c, 0x33, 0xc4, 0x9a, 0xe5,
0x4c, 0x2e, 0x86, 0xa3, 0xc1, 0x9f, 0x93, 0xf6, 0x58, 0x25, 0xd7, 0x97, 0xcb,
0xf1, 0x0b, 0xb1, 0x3e, 0x83, 0x5e, 0x8d, 0xaf, 0x89, 0xe5, 0x41, 0x7a, 0x33,
0xbe, 0x1d, 0xdf, 0x8d, 0x1f, 0x05, 0xaf, 0x0f, 0x24, 0xe6, 0xa7, 0x73, 0x11,
0xa3, 0x84, 0xe3, 0x64, 0x86, 0x15, 0x92, 0x36, 0x3a, 0x8e, 0x01, 0x1f, 0x1f,
0x27, 0xc6, 0xc9, 0x5f, 0x2d, 0x9c, 0x1a, 0xdf, 0x6a, 0xd3, 0x63, 0x7a, 0xfc,
0xce, 0xbd, 0x21, 0xc5, 0x2b, 0xc7, 0x8c, 0xd9, 0xf1, 0x13, 0x47, 0x8d, 0x3f,
0xb8, 0xcc, 0xf8, 0x13, 0x9a, 0xec, 0x2f, 0xec, 0x02, 0x3f, 0xcf, 0xc3, 0xe3,
0x98, 0x9f, 0xe9, 0x16, 0x79, 0x72, 0x5d, 0x93, 0x8a, 0xf8, 0x39, 0xfe, 0x7e,
0x7c, 0xaf, 0xd5, 0x06, 0x1e, 0xc7, 0x0f, 0x63, 0x31, 0xff, 0x24, 0x20, 0x9e,
0xc7, 0x2f, 0xe3, 0xd7, 0xb1, 0x8c, 0x7c, 0x31, 0x7c, 0x8d, 0x7f, 0x83, 0x76,
0x89, 0x17, 0xd6, 0xe2, 0xf1, 0x07, 0xc1, 0xac, 0xf3, 0x9f, 0x63, 0xd1, 0x04,
0x77, 0x7e, 0x93, 0xd9, 0xfb, 0x11, 0x93, 0x79, 0xf0, 0x0b, 0x93, 0x15, 0x20,
0x97, 0xf9, 0x45, 0xa2, 0x5f, 0x9a, 0x2c, 0x4f, 0xce, 0xc8, 0x29, 0x85, 0x95,
0xc9, 0x2a, 0x34, 0x6b, 0x93, 0xf5, 0xc9, 0xc6, 0x64, 0x13, 0xdc, 0x06, 0xff,
0xbb, 0x9d, 0xb7, 0x08, 0x7a, 0x73, 0xa6, 0xdb, 0xe2, 0x25, 0x93, 0x55, 0x5e,
0x0a, 0xad, 0x6c, 0x72, 0x8f, 0xda, 0xc8, 0x27, 0x12, 0xd8, 0xae, 0x1d, 0x0a,
0x82, 0x53, 0xf0, 0xca, 0x89, 0x92, 0x97, 0xf3, 0x2a, 0x22, 0xa9, 0xa7, 0x28,
0x5e, 0xc3, 0x6b, 0x26, 0x52, 0x60, 0x54, 0xbc, 0x16, 0xb2, 0x6e, 0xa2, 0x9f,
0x95, 0x4b, 0x2d, 0x78, 0xd5, 0xf1, 0x86, 0x89, 0x71, 0x62, 0x9a, 0x98, 0x61,
0xd1, 0xf2, 0x16, 0xc1, 0x6e, 0x9d, 0xd8, 0x26, 0xf6, 0x19, 0xd6, 0x31, 0x31,
0xf0, 0x4e, 0x48, 0x2e, 0x04, 0x37, 0x82, 0x91, 0xf7, 0x4c, 0x4c, 0xbc, 0x17,
0x9c, 0x37, 0xec, 0x9b, 0xf8, 0x05, 0x9c, 0x9e, 0x4f, 0xdb, 0xe8, 0x3f, 0xcf,
0xc7, 0xf8, 0xc0, 0x24, 0x34, 0x4b, 0x1d, 0x26, 0x5c, 0x50, 0x90, 0xb7, 0x11,
0xef, 0x4c, 0x76, 0x27, 0x7b, 0x44, 0xde, 0x9f, 0x1c, 0x90, 0xf8, 0x70, 0x62,
0xe1, 0xad, 0x7c, 0x64, 0x72, 0x34, 0xb1, 0xf1, 0xff, 0x37, 0xcd, 0x04, 0x3b,
0x29, 0xad, 0x42, 0xe3, 0xe0, 0x8f, 0x27, 0x27, 0x93, 0xd3, 0x89, 0x13, 0xf2,
0x96, 0xe1, 0x6c, 0xe2, 0xe2, 0xcf, 0x27, 0x17, 0x93, 0xcb, 0xc9, 0x15, 0x6a,
0x77, 0x3d, 0x71, 0x13, 0x94, 0x87, 0xf7, 0x22, 0xbe, 0x99, 0xdc, 0x42, 0x17,
0xe0, 0x7d, 0xbc, 0x01, 0x57, 0x0c, 0x3f, 0x7f, 0x37, 0x61, 0x43, 0x51, 0xd2,
0x06, 0x31, 0xd0, 0x20, 0x1f, 0x9f, 0x9c, 0xce, 0x4e, 0xf1, 0x25, 0x26, 0x21,
0xfe, 0x13, 0x3b, 0xb6, 0xe4, 0x24, 0xcc, 0xef, 0x20, 0x6d, 0x6a, 0xb2, 0xcb,
0xa7, 0x27, 0xd4, 0x84, 0x26, 0x78, 0x66, 0xc2, 0x4e, 0x32, 0x84, 0xdb, 0xe6,
0x69, 0x6d, 0x30, 0x70, 0xeb, 0x7f, 0x3a, 0xc4, 0x3c, 0x3a, 0x7f, 0xf3, 0xcf,
0xee, 0xc7, 0x31, 0x53, 0xb2, 0x40, 0x70, 0x04, 0xc5, 0x4f, 0xf6, 0xf9, 0x6d,
0xe5, 0x01, 0x7f, 0xc8, 0x47, 0xe0, 0xeb, 0x01, 0x57, 0xf7, 0x23, 0xfe, 0xfe,
0x4f, 0x2f, 0x5c, 0x9d, 0x62, 0xce, 0xde, 0xda, 0x8e, 0xf9, 0x53, 0xfe, 0x84,
0x7f, 0x98, 0x9c, 0x09, 0x7d, 0xf0, 0x38, 0x39, 0x07, 0xf7, 0x34, 0xb9, 0x10,
0xe4, 0xe7, 0xc9, 0xcb, 0xe4, 0x75, 0x72, 0xc9, 0xbf, 0x4d, 0xde, 0x27, 0x1f,
0x48, 0x79, 0xc5, 0x7f, 0x4e, 0xae, 0xf9, 0x1b, 0x5e, 0xf4, 0x73, 0x0b, 0xc4,
0x1d, 0x1f, 0xe5, 0x63, 0x88, 0xe7, 0x7e, 0xc4, 0x3f, 0xf3, 0x3f, 0xc2, 0x2a,
0xc9, 0x27, 0xf8, 0x85, 0x9f, 0x7f, 0x96, 0x67, 0xde, 0xb9, 0xf8, 0xb3, 0xf4,
0xb3, 0xfc, 0xb3, 0xf2, 0x73, 0xae, 0x59, 0xfd, 0x49, 0xf1, 0x6b, 0x3f, 0xeb,
0xb0, 0x6d, 0xfc, 0x6c, 0xfe, 0x6c, 0x09, 0x18, 0xc9, 0x4f, 0xd0, 0x9a, 0xe6,
0xa5, 0x82, 0x24, 0x13, 0x62, 0xf9, 0x8f, 0xe2, 0x87, 0x22, 0x65, 0x50, 0x42,
0xa3, 0xfa, 0x51, 0x83, 0x6a, 0x88, 0x4d, 0x0b, 0xaa, 0xfb, 0xd1, 0xff, 0x88,
0xbc, 0x86, 0x1f, 0xe3, 0x0f, 0xcd, 0x9b, 0x20, 0x9b, 0x11, 0x2c, 0x3f, 0xd6,
0x1f, 0xdb, 0x8f, 0xfd, 0xc7, 0x41, 0x50, 0x0c, 0xaf, 0x26, 0xdf, 0xc8, 0x38,
0xa1, 0x68, 0x72, 0x2f, 0xc8, 0xf2, 0xce, 0x9f, 0x0c, 0xef, 0xfa, 0x71, 0xff,
0x78, 0x7e, 0xbc, 0x40, 0xf8, 0x08, 0xca, 0xff, 0x13, 0xf8, 0xe1, 0x78, 0x9e,
0xbf, 0xe7, 0x33, 0xa1, 0x2c, 0xc9, 0xed, 0x81, 0x7f, 0xe4, 0x83, 0x3f, 0xa1,
0x9f, 0xe7, 0x69, 0x2b, 0xf0, 0xe1, 0x9f, 0xed, 0x9f, 0x9d, 0x9f, 0xdd, 0x9f,
0xbd, 0x9f, 0x57, 0x7e, 0x1f, 0x29, 0x0e, 0x7e, 0xde, 0xf8, 0x17, 0x82, 0x3b,
0x24, 0xe9, 0x23, 0x3f, 0xff, 0xf9, 0x58, 0x51, 0x4d, 0xbf, 0x2b, 0xfc, 0x73,
0xfc, 0x73, 0xf2, 0x73, 0x0a, 0xe4, 0xd9, 0xcf, 0x3b, 0x7f, 0xfe, 0x73, 0x31,
0x4b, 0xf3, 0xc1, 0xef, 0xdf, 0x5e, 0x42, 0xfa, 0xe4, 0xaf, 0x7e, 0xae, 0x7f,
0x6e, 0xc0, 0xdd, 0xfe, 0xac, 0x8a, 0xb0, 0xf3, 0x12, 0x65, 0x44, 0xbc, 0xe8,
0x01, 0x9c, 0x4f, 0xe4, 0x17, 0x3d, 0x8a, 0xce, 0x44, 0xf3, 0xe0, 0x17, 0x44,
0x66, 0x91, 0x44, 0x2c, 0x15, 0xcb, 0xc4, 0x72, 0xb1, 0x42, 0xac, 0x14, 0xab,
0xc4, 0x6a, 0xb1, 0x46, 0xac, 0x15, 0x2f, 0x89, 0x96, 0x45, 0xb7, 0xa2, 0x6b,
0xd1, 0x9d, 0x68, 0x45, 0xf4, 0x24, 0xb2, 0x8a, 0x6d, 0x62, 0xbb, 0xd8, 0x21,
0x76, 0x8a, 0x5d, 0x62, 0xb7, 0xd8, 0x23, 0xf6, 0x8a, 0x7d, 0x62, 0xbf, 0x38,
0x20, 0x0e, 0x8a, 0x43, 0xe2, 0xb0, 0x78, 0x5b, 0xbc, 0x23, 0xde, 0x15, 0xef,
0x89, 0xf7, 0xc5, 0x07, 0xe2, 0x43, 0x71, 0x44, 0x7c, 0x24, 0x3e, 0x16, 0x9f,
0x88, 0x43, 0xf0, 0x1e, 0x16, 0x49, 0x44, 0x32, 0xd1, 0xa6, 0xe8, 0x5a, 0x7c,
0x23, 0xbe, 0x15, 0xdf, 0x89, 0xa3, 0xe2, 0x98, 0x38, 0x2e, 0x4e, 0x88, 0x93,
0xe2, 0x94, 0x38, 0x2d, 0xa6, 0xc4, 0xb4, 0x98, 0x11, 0xb3, 0xe2, 0x8c, 0x38,
0x2b, 0xe6, 0xc4, 0xbc, 0xf8, 0x5e, 0xfc, 0x20, 0x7e, 0x14, 0x3f, 0x89, 0x9f,
0xc5, 0x2f, 0xe2, 0x57, 0xf1, 0xb6, 0xc8, 0x2e, 0xda, 0x11, 0xfd, 0xe3, 0xff,
0xff, 0xfd, 0xf3, 0xd9, 0x13, 0xda, 0x82, 0x15, 0xfd, 0x77,
};
optimizesize void *__jisxcommon_encmap(void) {
return xload(&__jisxcommon_encmap_ptr,
__jisxcommon_encmap_rodata,
27219, 44032); /* 61.8164% profit */
}
| 167,845 | 2,107 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/_codecs_iso2022.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
/* clang-format off */
/*
* _codecs_iso2022.c: Codecs collection for ISO-2022 encodings.
*
* Written by Hye-Shik "Bourne to Macro" Chang <[email protected]>
*/
#define USING_IMPORTED_MAPS
#define USING_BINARY_PAIR_SEARCH
#define EMULATE_JISX0213_2000_ENCODE_INVALID MAP_UNMAPPABLE
#define EMULATE_JISX0213_2000_DECODE_INVALID MAP_UNMAPPABLE
#include "third_party/python/Modules/cjkcodecs/alg_jisx0201.inc"
#include "third_party/python/Modules/cjkcodecs/emu_jisx0213_2000.inc"
#include "third_party/python/Modules/cjkcodecs/cjkcodecs.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/cjkcodecs/somanyencodings.h"
#include "third_party/python/Include/import.h"
PYTHON_PROVIDE("_codecs_iso2022");
PYTHON_PROVIDE("_codecs_iso2022.getcodec");
/* STATE
state->c[0-3]
00000000
||^^^^^|
|+-----+---- G0-3 Character Set
+----------- Is G0-3 double byte?
state->c[4]
00000000
||
|+---- Locked-Shift?
+----- ESC Throughout
*/
#define ESC 0x1B
#define SO 0x0E
#define SI 0x0F
#define LF 0x0A
#define MAX_ESCSEQLEN 16
#define CHARSET_ISO8859_1 'A'
#define CHARSET_ASCII 'B'
#define CHARSET_ISO8859_7 'F'
#define CHARSET_JISX0201_K 'I'
#define CHARSET_JISX0201_R 'J'
#define CHARSET_GB2312 ('A'|CHARSET_DBCS)
#define CHARSET_JISX0208 ('B'|CHARSET_DBCS)
#define CHARSET_KSX1001 ('C'|CHARSET_DBCS)
#define CHARSET_JISX0212 ('D'|CHARSET_DBCS)
#define CHARSET_GB2312_8565 ('E'|CHARSET_DBCS)
#define CHARSET_CNS11643_1 ('G'|CHARSET_DBCS)
#define CHARSET_CNS11643_2 ('H'|CHARSET_DBCS)
#define CHARSET_JISX0213_2000_1 ('O'|CHARSET_DBCS)
#define CHARSET_JISX0213_2 ('P'|CHARSET_DBCS)
#define CHARSET_JISX0213_2004_1 ('Q'|CHARSET_DBCS)
#define CHARSET_JISX0208_O ('@'|CHARSET_DBCS)
#define CHARSET_DBCS 0x80
#define ESCMARK(mark) ((mark) & 0x7f)
#define IS_ESCEND(c) (((c) >= 'A' && (c) <= 'Z') || (c) == '@')
#define IS_ISO2022ESC(c2) \
((c2) == '(' || (c2) == ')' || (c2) == '$' || \
(c2) == '.' || (c2) == '&')
/* this is not a complete list of ISO-2022 escape sequence headers.
* but, it's enough to implement CJK instances of iso-2022. */
#define MAP_UNMAPPABLE 0xFFFF
#define MAP_MULTIPLE_AVAIL 0xFFFE /* for JIS X 0213 */
#define F_SHIFTED 0x01
#define F_ESCTHROUGHOUT 0x02
#define STATE_SETG(dn, v) do { ((state)->c[dn]) = (v); } while (0)
#define STATE_GETG(dn) ((state)->c[dn])
#define STATE_G0 STATE_GETG(0)
#define STATE_G1 STATE_GETG(1)
#define STATE_G2 STATE_GETG(2)
#define STATE_G3 STATE_GETG(3)
#define STATE_SETG0(v) STATE_SETG(0, v)
#define STATE_SETG1(v) STATE_SETG(1, v)
#define STATE_SETG2(v) STATE_SETG(2, v)
#define STATE_SETG3(v) STATE_SETG(3, v)
#define STATE_SETFLAG(f) do { ((state)->c[4]) |= (f); } while (0)
#define STATE_GETFLAG(f) ((state)->c[4] & (f))
#define STATE_CLEARFLAG(f) do { ((state)->c[4]) &= ~(f); } while (0)
#define STATE_CLEARFLAGS() do { ((state)->c[4]) = 0; } while (0)
#define ISO2022_CONFIG ((const struct iso2022_config *)config)
#define CONFIG_ISSET(flag) (ISO2022_CONFIG->flags & (flag))
#define CONFIG_DESIGNATIONS (ISO2022_CONFIG->designations)
/* iso2022_config.flags */
#define NO_SHIFT 0x01
#define USE_G2 0x02
#define USE_JISX0208_EXT 0x04
/*-*- internal data structures -*-*/
typedef int (*iso2022_init_func)(void);
typedef Py_UCS4 (*iso2022_decode_func)(const unsigned char *data);
typedef DBCHAR (*iso2022_encode_func)(const Py_UCS4 *data, Py_ssize_t *length);
struct iso2022_designation {
unsigned char mark;
unsigned char plane;
unsigned char width;
iso2022_init_func initializer;
iso2022_decode_func decoder;
iso2022_encode_func encoder;
};
struct iso2022_config {
int flags;
const struct iso2022_designation *designations; /* non-ascii desigs */
};
/*-*- iso-2022 codec implementation -*-*/
CODEC_INIT(iso2022)
{
const struct iso2022_designation *desig;
for (desig = CONFIG_DESIGNATIONS; desig->mark; desig++)
if (desig->initializer != NULL && desig->initializer() != 0)
return -1;
return 0;
}
ENCODER_INIT(iso2022)
{
STATE_CLEARFLAGS();
STATE_SETG0(CHARSET_ASCII);
STATE_SETG1(CHARSET_ASCII);
return 0;
}
ENCODER_RESET(iso2022)
{
if (STATE_GETFLAG(F_SHIFTED)) {
WRITEBYTE1(SI);
NEXT_OUT(1);
STATE_CLEARFLAG(F_SHIFTED);
}
if (STATE_G0 != CHARSET_ASCII) {
WRITEBYTE3(ESC, '(', 'B');
NEXT_OUT(3);
STATE_SETG0(CHARSET_ASCII);
}
return 0;
}
ENCODER(iso2022)
{
while (*inpos < inlen) {
const struct iso2022_designation *dsg;
DBCHAR encoded;
Py_UCS4 c = INCHAR1;
Py_ssize_t insize;
if (c < 0x80) {
if (STATE_G0 != CHARSET_ASCII) {
WRITEBYTE3(ESC, '(', 'B');
STATE_SETG0(CHARSET_ASCII);
NEXT_OUT(3);
}
if (STATE_GETFLAG(F_SHIFTED)) {
WRITEBYTE1(SI);
STATE_CLEARFLAG(F_SHIFTED);
NEXT_OUT(1);
}
WRITEBYTE1((unsigned char)c);
NEXT(1, 1);
continue;
}
insize = 1;
encoded = MAP_UNMAPPABLE;
for (dsg = CONFIG_DESIGNATIONS; dsg->mark; dsg++) {
Py_ssize_t length = 1;
encoded = dsg->encoder(&c, &length);
if (encoded == MAP_MULTIPLE_AVAIL) {
/* this implementation won't work for pair
* of non-bmp characters. */
if (inlen - *inpos < 2) {
if (!(flags & MBENC_FLUSH))
return MBERR_TOOFEW;
length = -1;
}
else
length = 2;
encoded = dsg->encoder(&c, &length);
if (encoded != MAP_UNMAPPABLE) {
insize = length;
break;
}
}
else if (encoded != MAP_UNMAPPABLE)
break;
}
if (!dsg->mark)
return 1;
assert(dsg->width == 1 || dsg->width == 2);
switch (dsg->plane) {
case 0: /* G0 */
if (STATE_GETFLAG(F_SHIFTED)) {
WRITEBYTE1(SI);
STATE_CLEARFLAG(F_SHIFTED);
NEXT_OUT(1);
}
if (STATE_G0 != dsg->mark) {
if (dsg->width == 1) {
WRITEBYTE3(ESC, '(', ESCMARK(dsg->mark));
STATE_SETG0(dsg->mark);
NEXT_OUT(3);
}
else if (dsg->mark == CHARSET_JISX0208) {
WRITEBYTE3(ESC, '$', ESCMARK(dsg->mark));
STATE_SETG0(dsg->mark);
NEXT_OUT(3);
}
else {
WRITEBYTE4(ESC, '$', '(',
ESCMARK(dsg->mark));
STATE_SETG0(dsg->mark);
NEXT_OUT(4);
}
}
break;
case 1: /* G1 */
if (STATE_G1 != dsg->mark) {
if (dsg->width == 1) {
WRITEBYTE3(ESC, ')', ESCMARK(dsg->mark));
STATE_SETG1(dsg->mark);
NEXT_OUT(3);
}
else {
WRITEBYTE4(ESC, '$', ')', ESCMARK(dsg->mark));
STATE_SETG1(dsg->mark);
NEXT_OUT(4);
}
}
if (!STATE_GETFLAG(F_SHIFTED)) {
WRITEBYTE1(SO);
STATE_SETFLAG(F_SHIFTED);
NEXT_OUT(1);
}
break;
default: /* G2 and G3 is not supported: no encoding in
* CJKCodecs are using them yet */
return MBERR_INTERNAL;
}
if (dsg->width == 1) {
WRITEBYTE1((unsigned char)encoded);
NEXT_OUT(1);
}
else {
WRITEBYTE2(encoded >> 8, encoded & 0xff);
NEXT_OUT(2);
}
NEXT_INCHAR(insize);
}
return 0;
}
DECODER_INIT(iso2022)
{
STATE_CLEARFLAGS();
STATE_SETG0(CHARSET_ASCII);
STATE_SETG1(CHARSET_ASCII);
STATE_SETG2(CHARSET_ASCII);
return 0;
}
DECODER_RESET(iso2022)
{
STATE_SETG0(CHARSET_ASCII);
STATE_CLEARFLAG(F_SHIFTED);
return 0;
}
static Py_ssize_t
iso2022processesc(const void *config, MultibyteCodec_State *state,
const unsigned char **inbuf, Py_ssize_t *inleft)
{
unsigned char charset, designation;
Py_ssize_t i, esclen = 0;
for (i = 1;i < MAX_ESCSEQLEN;i++) {
if (i >= *inleft)
return MBERR_TOOFEW;
if (IS_ESCEND((*inbuf)[i])) {
esclen = i + 1;
break;
}
else if (CONFIG_ISSET(USE_JISX0208_EXT) && i+1 < *inleft &&
(*inbuf)[i] == '&' && (*inbuf)[i+1] == '@') {
i += 2;
}
}
switch (esclen) {
case 0:
return 1; /* unterminated escape sequence */
case 3:
if (INBYTE2 == '$') {
charset = INBYTE3 | CHARSET_DBCS;
designation = 0;
}
else {
charset = INBYTE3;
if (INBYTE2 == '(')
designation = 0;
else if (INBYTE2 == ')')
designation = 1;
else if (CONFIG_ISSET(USE_G2) && INBYTE2 == '.')
designation = 2;
else
return 3;
}
break;
case 4:
if (INBYTE2 != '$')
return 4;
charset = INBYTE4 | CHARSET_DBCS;
if (INBYTE3 == '(')
designation = 0;
else if (INBYTE3 == ')')
designation = 1;
else
return 4;
break;
case 6: /* designation with prefix */
if (CONFIG_ISSET(USE_JISX0208_EXT) &&
(*inbuf)[3] == ESC && (*inbuf)[4] == '$' &&
(*inbuf)[5] == 'B') {
charset = 'B' | CHARSET_DBCS;
designation = 0;
}
else
return 6;
break;
default:
return esclen;
}
/* raise error when the charset is not designated for this encoding */
if (charset != CHARSET_ASCII) {
const struct iso2022_designation *dsg;
for (dsg = CONFIG_DESIGNATIONS; dsg->mark; dsg++) {
if (dsg->mark == charset)
break;
}
if (!dsg->mark)
return esclen;
}
STATE_SETG(designation, charset);
*inleft -= esclen;
(*inbuf) += esclen;
return 0;
}
#define ISO8859_7_DECODE(c, writer) \
if ((c) < 0xa0) { \
OUTCHAR(c); \
} else if ((c) < 0xc0 && (0x288f3bc9L & (1L << ((c)-0xa0)))) { \
OUTCHAR(c); \
} else if ((c) >= 0xb4 && (c) <= 0xfe && ((c) >= 0xd4 || \
(0xbffffd77L & (1L << ((c)-0xb4))))) { \
OUTCHAR(0x02d0 + (c)); \
} else if ((c) == 0xa1) { \
OUTCHAR(0x2018); \
} else if ((c) == 0xa2) { \
OUTCHAR(0x2019); \
} else if ((c) == 0xaf) { \
OUTCHAR(0x2015); \
}
static Py_ssize_t
iso2022processg2(const void *config, MultibyteCodec_State *state,
const unsigned char **inbuf, Py_ssize_t *inleft,
_PyUnicodeWriter *writer)
{
/* not written to use encoder, decoder functions because only few
* encodings use G2 designations in CJKCodecs */
if (STATE_G2 == CHARSET_ISO8859_1) {
if (INBYTE3 < 0x80)
OUTCHAR(INBYTE3 + 0x80);
else
return 3;
}
else if (STATE_G2 == CHARSET_ISO8859_7) {
ISO8859_7_DECODE(INBYTE3 ^ 0x80, writer)
else
return 3;
}
else if (STATE_G2 == CHARSET_ASCII) {
if (INBYTE3 & 0x80)
return 3;
else
OUTCHAR(INBYTE3);
}
else
return MBERR_INTERNAL;
(*inbuf) += 3;
*inleft -= 3;
return 0;
}
DECODER(iso2022)
{
const struct iso2022_designation *dsgcache = NULL;
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_ssize_t err;
if (STATE_GETFLAG(F_ESCTHROUGHOUT)) {
/* ESC throughout mode:
* for non-iso2022 escape sequences */
OUTCHAR(c); /* assume as ISO-8859-1 */
NEXT_IN(1);
if (IS_ESCEND(c)) {
STATE_CLEARFLAG(F_ESCTHROUGHOUT);
}
continue;
}
switch (c) {
case ESC:
REQUIRE_INBUF(2);
if (IS_ISO2022ESC(INBYTE2)) {
err = iso2022processesc(config, state,
inbuf, &inleft);
if (err != 0)
return err;
}
else if (CONFIG_ISSET(USE_G2) && INBYTE2 == 'N') {/* SS2 */
REQUIRE_INBUF(3);
err = iso2022processg2(config, state,
inbuf, &inleft, writer);
if (err != 0)
return err;
}
else {
OUTCHAR(ESC);
STATE_SETFLAG(F_ESCTHROUGHOUT);
NEXT_IN(1);
}
break;
case SI:
if (CONFIG_ISSET(NO_SHIFT))
goto bypass;
STATE_CLEARFLAG(F_SHIFTED);
NEXT_IN(1);
break;
case SO:
if (CONFIG_ISSET(NO_SHIFT))
goto bypass;
STATE_SETFLAG(F_SHIFTED);
NEXT_IN(1);
break;
case LF:
STATE_CLEARFLAG(F_SHIFTED);
OUTCHAR(LF);
NEXT_IN(1);
break;
default:
if (c < 0x20) /* C0 */
goto bypass;
else if (c >= 0x80)
return 1;
else {
const struct iso2022_designation *dsg;
unsigned char charset;
Py_UCS4 decoded;
if (STATE_GETFLAG(F_SHIFTED))
charset = STATE_G1;
else
charset = STATE_G0;
if (charset == CHARSET_ASCII) {
bypass:
OUTCHAR(c);
NEXT_IN(1);
break;
}
if (dsgcache != NULL &&
dsgcache->mark == charset)
dsg = dsgcache;
else {
for (dsg = CONFIG_DESIGNATIONS;
dsg->mark != charset
#ifdef Py_DEBUG
&& dsg->mark != '\0'
#endif
; dsg++)
{
/* noop */
}
assert(dsg->mark != '\0');
dsgcache = dsg;
}
REQUIRE_INBUF(dsg->width);
decoded = dsg->decoder(*inbuf);
if (decoded == MAP_UNMAPPABLE)
return dsg->width;
if (decoded < 0x10000) {
OUTCHAR(decoded);
}
else if (decoded < 0x30000) {
OUTCHAR(decoded);
}
else { /* JIS X 0213 pairs */
OUTCHAR2(decoded >> 16, decoded & 0xffff);
}
NEXT_IN(dsg->width);
}
break;
}
}
return 0;
}
/*-*- mapping access functions -*-*/
static int
ksx1001_init(void)
{
return 0;
}
static Py_UCS4
ksx1001_decoder(const unsigned char *data)
{
Py_UCS4 u;
if (TRYMAP_DEC(ksx1001, u, data[0], data[1]))
return u;
else
return MAP_UNMAPPABLE;
}
static DBCHAR
ksx1001_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded;
assert(*length == 1);
if (*data < 0x10000) {
if (TRYMAP_ENC(cp949, coded, *data)) {
if (!(coded & 0x8000))
return coded;
}
}
return MAP_UNMAPPABLE;
}
static int
jisx0208_init(void)
{
return 0;
}
static Py_UCS4
jisx0208_decoder(const unsigned char *data)
{
Py_UCS4 u;
if (data[0] == 0x21 && data[1] == 0x40) /* F/W REVERSE SOLIDUS */
return 0xff3c;
else if (TRYMAP_DEC(jisx0208, u, data[0], data[1]))
return u;
else
return MAP_UNMAPPABLE;
}
static DBCHAR
jisx0208_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded;
assert(*length == 1);
if (*data < 0x10000) {
if (*data == 0xff3c) /* F/W REVERSE SOLIDUS */
return 0x2140;
else if (TRYMAP_ENC(jisxcommon, coded, *data)) {
if (!(coded & 0x8000))
return coded;
}
}
return MAP_UNMAPPABLE;
}
static int
jisx0212_init(void)
{
return 0;
}
static Py_UCS4
jisx0212_decoder(const unsigned char *data)
{
Py_UCS4 u;
if (TRYMAP_DEC(jisx0212, u, data[0], data[1]))
return u;
else
return MAP_UNMAPPABLE;
}
static DBCHAR
jisx0212_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded;
assert(*length == 1);
if (*data < 0x10000) {
if (TRYMAP_ENC(jisxcommon, coded, *data)) {
if (coded & 0x8000)
return coded & 0x7fff;
}
}
return MAP_UNMAPPABLE;
}
static int
jisx0213_init(void)
{
return 0;
}
#define config ((void *)2000)
static Py_UCS4
jisx0213_2000_1_decoder(const unsigned char *data)
{
Py_UCS4 u;
EMULATE_JISX0213_2000_DECODE_PLANE1(u, data[0], data[1])
else if (data[0] == 0x21 && data[1] == 0x40) /* F/W REVERSE SOLIDUS */
return 0xff3c;
else if (TRYMAP_DEC(jisx0208, u, data[0], data[1]))
;
else if (TRYMAP_DEC(jisx0213_1_bmp, u, data[0], data[1]))
;
else if (TRYMAP_DEC(jisx0213_1_emp, u, data[0], data[1]))
u |= 0x20000;
else if (TRYMAP_DEC(jisx0213_pair, u, data[0], data[1]))
;
else
return MAP_UNMAPPABLE;
return u;
}
static Py_UCS4
jisx0213_2000_2_decoder(const unsigned char *data)
{
Py_UCS4 u;
EMULATE_JISX0213_2000_DECODE_PLANE2_CHAR(u, data[0], data[1])
if (TRYMAP_DEC(jisx0213_2_bmp, u, data[0], data[1]))
;
else if (TRYMAP_DEC(jisx0213_2_emp, u, data[0], data[1]))
u |= 0x20000;
else
return MAP_UNMAPPABLE;
return u;
}
#undef config
static Py_UCS4
jisx0213_2004_1_decoder(const unsigned char *data)
{
Py_UCS4 u;
if (data[0] == 0x21 && data[1] == 0x40) /* F/W REVERSE SOLIDUS */
return 0xff3c;
else if (TRYMAP_DEC(jisx0208, u, data[0], data[1]))
;
else if (TRYMAP_DEC(jisx0213_1_bmp, u, data[0], data[1]))
;
else if (TRYMAP_DEC(jisx0213_1_emp, u, data[0], data[1]))
u |= 0x20000;
else if (TRYMAP_DEC(jisx0213_pair, u, data[0], data[1]))
;
else
return MAP_UNMAPPABLE;
return u;
}
static Py_UCS4
jisx0213_2004_2_decoder(const unsigned char *data)
{
Py_UCS4 u;
if (TRYMAP_DEC(jisx0213_2_bmp, u, data[0], data[1]))
;
else if (TRYMAP_DEC(jisx0213_2_emp, u, data[0], data[1]))
u |= 0x20000;
else
return MAP_UNMAPPABLE;
return u;
}
static DBCHAR
jisx0213_encoder(const Py_UCS4 *data, Py_ssize_t *length, void *config)
{
DBCHAR coded;
switch (*length) {
case 1: /* first character */
if (*data >= 0x10000) {
if ((*data) >> 16 == 0x20000 >> 16) {
EMULATE_JISX0213_2000_ENCODE_EMP(coded, *data)
else if (TRYMAP_ENC(jisx0213_emp, coded, (*data) & 0xffff))
return coded;
}
return MAP_UNMAPPABLE;
}
EMULATE_JISX0213_2000_ENCODE_BMP(coded, *data)
else if (TRYMAP_ENC(jisx0213_bmp, coded, *data)) {
if (coded == MULTIC)
return MAP_MULTIPLE_AVAIL;
}
else if (TRYMAP_ENC(jisxcommon, coded, *data)) {
if (coded & 0x8000)
return MAP_UNMAPPABLE;
}
else
return MAP_UNMAPPABLE;
return coded;
case 2: /* second character of unicode pair */
coded = find_pairencmap((ucs2_t)data[0], (ucs2_t)data[1],
jisx0213_pair_encmap(), JISX0213_ENCPAIRS);
if (coded != DBCINV)
return coded;
/* fall through */
case -1: /* flush unterminated */
*length = 1;
coded = find_pairencmap((ucs2_t)data[0], 0,
jisx0213_pair_encmap(), JISX0213_ENCPAIRS);
if (coded == DBCINV)
return MAP_UNMAPPABLE;
else
return coded;
break;
default:
return MAP_UNMAPPABLE;
}
}
static DBCHAR
jisx0213_2000_1_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded = jisx0213_encoder(data, length, (void *)2000);
if (coded == MAP_UNMAPPABLE || coded == MAP_MULTIPLE_AVAIL)
return coded;
else if (coded & 0x8000)
return MAP_UNMAPPABLE;
else
return coded;
}
static DBCHAR
jisx0213_2000_1_encoder_paironly(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded;
Py_ssize_t ilength = *length;
coded = jisx0213_encoder(data, length, (void *)2000);
switch (ilength) {
case 1:
if (coded == MAP_MULTIPLE_AVAIL)
return MAP_MULTIPLE_AVAIL;
else
return MAP_UNMAPPABLE;
case 2:
if (*length != 2)
return MAP_UNMAPPABLE;
else
return coded;
default:
return MAP_UNMAPPABLE;
}
}
static DBCHAR
jisx0213_2000_2_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded = jisx0213_encoder(data, length, (void *)2000);
if (coded == MAP_UNMAPPABLE || coded == MAP_MULTIPLE_AVAIL)
return coded;
else if (coded & 0x8000)
return coded & 0x7fff;
else
return MAP_UNMAPPABLE;
}
static DBCHAR
jisx0213_2004_1_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded = jisx0213_encoder(data, length, NULL);
if (coded == MAP_UNMAPPABLE || coded == MAP_MULTIPLE_AVAIL)
return coded;
else if (coded & 0x8000)
return MAP_UNMAPPABLE;
else
return coded;
}
static DBCHAR
jisx0213_2004_1_encoder_paironly(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded;
Py_ssize_t ilength = *length;
coded = jisx0213_encoder(data, length, NULL);
switch (ilength) {
case 1:
if (coded == MAP_MULTIPLE_AVAIL)
return MAP_MULTIPLE_AVAIL;
else
return MAP_UNMAPPABLE;
case 2:
if (*length != 2)
return MAP_UNMAPPABLE;
else
return coded;
default:
return MAP_UNMAPPABLE;
}
}
static DBCHAR
jisx0213_2004_2_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded = jisx0213_encoder(data, length, NULL);
if (coded == MAP_UNMAPPABLE || coded == MAP_MULTIPLE_AVAIL)
return coded;
else if (coded & 0x8000)
return coded & 0x7fff;
else
return MAP_UNMAPPABLE;
}
static Py_UCS4
jisx0201_r_decoder(const unsigned char *data)
{
Py_UCS4 u;
JISX0201_R_DECODE_CHAR(*data, u)
else
return MAP_UNMAPPABLE;
return u;
}
static DBCHAR
jisx0201_r_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded;
JISX0201_R_ENCODE(*data, coded)
else
return MAP_UNMAPPABLE;
return coded;
}
static Py_UCS4
jisx0201_k_decoder(const unsigned char *data)
{
Py_UCS4 u;
JISX0201_K_DECODE_CHAR(*data ^ 0x80, u)
else
return MAP_UNMAPPABLE;
return u;
}
static DBCHAR
jisx0201_k_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded;
JISX0201_K_ENCODE(*data, coded)
else
return MAP_UNMAPPABLE;
return coded - 0x80;
}
static int
gb2312_init(void)
{
return 0;
}
static Py_UCS4
gb2312_decoder(const unsigned char *data)
{
Py_UCS4 u;
if (TRYMAP_DEC(gb2312, u, data[0], data[1]))
return u;
else
return MAP_UNMAPPABLE;
}
static DBCHAR
gb2312_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
DBCHAR coded;
assert(*length == 1);
if (*data < 0x10000) {
if (TRYMAP_ENC(gbcommon, coded, *data)) {
if (!(coded & 0x8000))
return coded;
}
}
return MAP_UNMAPPABLE;
}
static Py_UCS4
dummy_decoder(const unsigned char *data)
{
return MAP_UNMAPPABLE;
}
static DBCHAR
dummy_encoder(const Py_UCS4 *data, Py_ssize_t *length)
{
return MAP_UNMAPPABLE;
}
/*-*- registry tables -*-*/
#define REGISTRY_KSX1001_G0 { CHARSET_KSX1001, 0, 2, \
ksx1001_init, \
ksx1001_decoder, ksx1001_encoder }
#define REGISTRY_KSX1001_G1 { CHARSET_KSX1001, 1, 2, \
ksx1001_init, \
ksx1001_decoder, ksx1001_encoder }
#define REGISTRY_JISX0201_R { CHARSET_JISX0201_R, 0, 1, \
NULL, \
jisx0201_r_decoder, jisx0201_r_encoder }
#define REGISTRY_JISX0201_K { CHARSET_JISX0201_K, 0, 1, \
NULL, \
jisx0201_k_decoder, jisx0201_k_encoder }
#define REGISTRY_JISX0208 { CHARSET_JISX0208, 0, 2, \
jisx0208_init, \
jisx0208_decoder, jisx0208_encoder }
#define REGISTRY_JISX0208_O { CHARSET_JISX0208_O, 0, 2, \
jisx0208_init, \
jisx0208_decoder, jisx0208_encoder }
#define REGISTRY_JISX0212 { CHARSET_JISX0212, 0, 2, \
jisx0212_init, \
jisx0212_decoder, jisx0212_encoder }
#define REGISTRY_JISX0213_2000_1 { CHARSET_JISX0213_2000_1, 0, 2, \
jisx0213_init, \
jisx0213_2000_1_decoder, \
jisx0213_2000_1_encoder }
#define REGISTRY_JISX0213_2000_1_PAIRONLY { CHARSET_JISX0213_2000_1, 0, 2, \
jisx0213_init, \
jisx0213_2000_1_decoder, \
jisx0213_2000_1_encoder_paironly }
#define REGISTRY_JISX0213_2000_2 { CHARSET_JISX0213_2, 0, 2, \
jisx0213_init, \
jisx0213_2000_2_decoder, \
jisx0213_2000_2_encoder }
#define REGISTRY_JISX0213_2004_1 { CHARSET_JISX0213_2004_1, 0, 2, \
jisx0213_init, \
jisx0213_2004_1_decoder, \
jisx0213_2004_1_encoder }
#define REGISTRY_JISX0213_2004_1_PAIRONLY { CHARSET_JISX0213_2004_1, 0, 2, \
jisx0213_init, \
jisx0213_2004_1_decoder, \
jisx0213_2004_1_encoder_paironly }
#define REGISTRY_JISX0213_2004_2 { CHARSET_JISX0213_2, 0, 2, \
jisx0213_init, \
jisx0213_2004_2_decoder, \
jisx0213_2004_2_encoder }
#define REGISTRY_GB2312 { CHARSET_GB2312, 0, 2, \
gb2312_init, \
gb2312_decoder, gb2312_encoder }
#define REGISTRY_CNS11643_1 { CHARSET_CNS11643_1, 1, 2, \
cns11643_init, \
cns11643_1_decoder, cns11643_1_encoder }
#define REGISTRY_CNS11643_2 { CHARSET_CNS11643_2, 2, 2, \
cns11643_init, \
cns11643_2_decoder, cns11643_2_encoder }
#define REGISTRY_ISO8859_1 { CHARSET_ISO8859_1, 2, 1, \
NULL, dummy_decoder, dummy_encoder }
#define REGISTRY_ISO8859_7 { CHARSET_ISO8859_7, 2, 1, \
NULL, dummy_decoder, dummy_encoder }
#define REGISTRY_SENTINEL { 0, }
#define CONFIGDEF(var, attrs) \
static const struct iso2022_config iso2022_##var##_config = { \
attrs, iso2022_##var##_designations \
};
static const struct iso2022_designation iso2022_kr_designations[] = {
REGISTRY_KSX1001_G1, REGISTRY_SENTINEL
};
CONFIGDEF(kr, 0)
static const struct iso2022_designation iso2022_jp_designations[] = {
REGISTRY_JISX0208, REGISTRY_JISX0201_R, REGISTRY_JISX0208_O,
REGISTRY_SENTINEL
};
CONFIGDEF(jp, NO_SHIFT | USE_JISX0208_EXT)
static const struct iso2022_designation iso2022_jp_1_designations[] = {
REGISTRY_JISX0208, REGISTRY_JISX0212, REGISTRY_JISX0201_R,
REGISTRY_JISX0208_O, REGISTRY_SENTINEL
};
CONFIGDEF(jp_1, NO_SHIFT | USE_JISX0208_EXT)
static const struct iso2022_designation iso2022_jp_2_designations[] = {
REGISTRY_JISX0208, REGISTRY_JISX0212, REGISTRY_KSX1001_G0,
REGISTRY_GB2312, REGISTRY_JISX0201_R, REGISTRY_JISX0208_O,
REGISTRY_ISO8859_1, REGISTRY_ISO8859_7, REGISTRY_SENTINEL
};
CONFIGDEF(jp_2, NO_SHIFT | USE_G2 | USE_JISX0208_EXT)
static const struct iso2022_designation iso2022_jp_2004_designations[] = {
REGISTRY_JISX0213_2004_1_PAIRONLY, REGISTRY_JISX0208,
REGISTRY_JISX0213_2004_1, REGISTRY_JISX0213_2004_2, REGISTRY_SENTINEL
};
CONFIGDEF(jp_2004, NO_SHIFT | USE_JISX0208_EXT)
static const struct iso2022_designation iso2022_jp_3_designations[] = {
REGISTRY_JISX0213_2000_1_PAIRONLY, REGISTRY_JISX0208,
REGISTRY_JISX0213_2000_1, REGISTRY_JISX0213_2000_2, REGISTRY_SENTINEL
};
CONFIGDEF(jp_3, NO_SHIFT | USE_JISX0208_EXT)
static const struct iso2022_designation iso2022_jp_ext_designations[] = {
REGISTRY_JISX0208, REGISTRY_JISX0212, REGISTRY_JISX0201_R,
REGISTRY_JISX0201_K, REGISTRY_JISX0208_O, REGISTRY_SENTINEL
};
CONFIGDEF(jp_ext, NO_SHIFT | USE_JISX0208_EXT)
BEGIN_MAPPINGS_LIST
/* no mapping table here */
END_MAPPINGS_LIST
#define ISO2022_CODEC(variation) { \
"iso2022_" #variation, \
&iso2022_##variation##_config, \
iso2022_codec_init, \
_STATEFUL_METHODS(iso2022) \
},
BEGIN_CODECS_LIST
ISO2022_CODEC(kr)
ISO2022_CODEC(jp)
ISO2022_CODEC(jp_1)
ISO2022_CODEC(jp_2)
ISO2022_CODEC(jp_2004)
ISO2022_CODEC(jp_3)
ISO2022_CODEC(jp_ext)
END_CODECS_LIST
I_AM_A_MODULE_FOR(iso2022)
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__codecs_iso2022 = {
"_codecs_iso2022",
PyInit__codecs_iso2022,
};
| 32,689 | 1,087 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/big5hkscs_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) big5hkscs_decmap_ptr;
static const unsigned char big5hkscs_decmap_rodata[] = {
0xed, 0xcf, 0x3d, 0x0e, 0x01, 0x51, 0x00, 0x45, 0xe1, 0x37, 0x18, 0xff, 0x66,
0x18, 0x63, 0x24, 0x1a, 0x8d, 0x5d, 0x68, 0xce, 0x0e, 0x48, 0x14, 0x0a, 0x8d,
0x46, 0x62, 0x0b, 0xf6, 0x40, 0x42, 0xa2, 0x50, 0x68, 0xa6, 0x91, 0xb0, 0x17,
0x12, 0x05, 0x89, 0x42, 0xa3, 0xb4, 0x07, 0x37, 0x5e, 0xa2, 0xd5, 0xe8, 0x14,
0x73, 0x92, 0xaf, 0xbf, 0xd7, 0x98, 0xa4, 0xa4, 0xef, 0x39, 0x86, 0x59, 0xd7,
0x70, 0xd8, 0x19, 0x34, 0x71, 0x50, 0x27, 0xc5, 0xeb, 0x91, 0x42, 0x71, 0x1a,
0x8d, 0x33, 0xa8, 0xed, 0xf2, 0xba, 0xbb, 0x68, 0x9b, 0x45, 0xa3, 0x1c, 0x6a,
0xe5, 0xd1, 0xcd, 0xda, 0x14, 0xd0, 0xb0, 0x88, 0xa2, 0x12, 0xba, 0x58, 0xeb,
0x32, 0x1a, 0x54, 0x50, 0xe0, 0xa1, 0xb3, 0xb5, 0xf4, 0x51, 0xaf, 0x8a, 0xbc,
0x1a, 0x3a, 0x5a, 0xff, 0xf8, 0x7d, 0x1e, 0xc4, 0x7a, 0x06, 0x68, 0x5f, 0xff,
0xcf, 0x7d, 0xbf, 0x34, 0x0d, 0xaf, 0x5a, 0x85, 0xa8, 0xdf, 0x40, 0x7e, 0x84,
0x4e, 0xd6, 0xa2, 0xf9, 0xf9, 0xf5, 0x06,
};
optimizesize void *big5hkscs_decmap(void) {
return xload(&big5hkscs_decmap_ptr,
big5hkscs_decmap_rodata,
150, 1024); /* 14.6484% profit */
}
| 1,249 | 25 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/_codecs_cn.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/cjkcodecs/cjkcodecs.h"
/* clang-format off */
PYTHON_PROVIDE("_codecs_cn");
PYTHON_PROVIDE("_codecs_cn.__map_gb18030ext");
PYTHON_PROVIDE("_codecs_cn.__map_gb2312");
PYTHON_PROVIDE("_codecs_cn.__map_gbcommon");
PYTHON_PROVIDE("_codecs_cn.__map_gbkext");
PYTHON_PROVIDE("_codecs_cn.getcodec");
/*
* _codecs_cn.c: Codecs collection for Mainland Chinese encodings
*
* Written by Hye-Shik "Bourne to Macro" Chang <[email protected]>
*/
static const struct _gb18030_to_unibmp_ranges {
Py_UCS4 first, last;
DBCHAR base;
} gb18030_to_unibmp_ranges[] = {
{128,163,0},{165,166,36},{169,175,38},{178,182,45},{184,214,50},{216,223,81},{
226,231,89},{235,235,95},{238,241,96},{244,246,100},{248,248,103},{251,251,104
},{253,256,105},{258,274,109},{276,282,126},{284,298,133},{300,323,148},{325,
327,172},{329,332,175},{334,362,179},{364,461,208},{463,463,306},{465,465,307
},{467,467,308},{469,469,309},{471,471,310},{473,473,311},{475,475,312},{477,
504,313},{506,592,341},{594,608,428},{610,710,443},{712,712,544},{716,728,545
},{730,912,558},{930,930,741},{938,944,742},{962,962,749},{970,1024,750},{1026
,1039,805},{1104,1104,819},{1106,8207,820},{8209,8210,7922},{8215,8215,7924},{
8218,8219,7925},{8222,8228,7927},{8231,8239,7934},{8241,8241,7943},{8244,8244,
7944},{8246,8250,7945},{8252,8363,7950},{8365,8450,8062},{8452,8452,8148},{
8454,8456,8149},{8458,8469,8152},{8471,8480,8164},{8482,8543,8174},{8556,8559,
8236},{8570,8591,8240},{8596,8597,8262},{8602,8711,8264},{8713,8718,8374},{
8720,8720,8380},{8722,8724,8381},{8726,8729,8384},{8731,8732,8388},{8737,8738,
8390},{8740,8740,8392},{8742,8742,8393},{8748,8749,8394},{8751,8755,8396},{
8760,8764,8401},{8766,8775,8406},{8777,8779,8416},{8781,8785,8419},{8787,8799,
8424},{8802,8803,8437},{8808,8813,8439},{8816,8852,8445},{8854,8856,8482},{
8858,8868,8485},{8870,8894,8496},{8896,8977,8521},{8979,9311,8603},{9322,9331,
8936},{9372,9471,8946},{9548,9551,9046},{9588,9600,9050},{9616,9618,9063},{
9622,9631,9066},{9634,9649,9076},{9652,9659,9092},{9662,9669,9100},{9672,9674,
9108},{9676,9677,9111},{9680,9697,9113},{9702,9732,9131},{9735,9736,9162},{
9738,9791,9164},{9793,9793,9218},{9795,11904,9219},{11906,11907,11329},{11909,
11911,11331},{11913,11914,11334},{11917,11926,11336},{11928,11942,11346},{
11944,11945,11361},{11947,11949,11363},{11951,11954,11366},{11956,11957,11370
},{11960,11962,11372},{11964,11977,11375},{11979,12271,11389},{12284,12287,
11682},{12292,12292,11686},{12312,12316,11687},{12319,12320,11692},{12330,
12349,11694},{12351,12352,11714},{12436,12442,11716},{12447,12448,11723},{
12535,12539,11725},{12543,12548,11730},{12586,12831,11736},{12842,12848,11982
},{12850,12962,11989},{12964,13197,12102},{13200,13211,12336},{13215,13216,
12348},{13218,13251,12350},{13253,13261,12384},{13263,13264,12393},{13267,
13268,12395},{13270,13382,12397},{13384,13426,12510},{13428,13725,12553},{
13727,13837,12851},{13839,13849,12962},{13851,14615,12973},{14617,14701,13738
},{14703,14798,13823},{14801,14814,13919},{14816,14962,13933},{14964,15181,
14080},{15183,15469,14298},{15471,15583,14585},{15585,16469,14698},{16471,
16734,15583},{16736,17206,15847},{17208,17323,16318},{17325,17328,16434},{
17330,17372,16438},{17374,17621,16481},{17623,17995,16729},{17997,18016,17102
},{18018,18210,17122},{18212,18216,17315},{18218,18299,17320},{18301,18316,
17402},{18318,18758,17418},{18760,18809,17859},{18811,18812,17909},{18814,
18817,17911},{18820,18820,17915},{18823,18842,17916},{18844,18846,17936},{
18848,18869,17939},{18872,19574,17961},{19576,19614,18664},{19620,19730,18703
},{19738,19885,18814},{19887,19967,18962},{40870,55295,19043},{59244,59244,
33469},{59336,59336,33470},{59367,59379,33471},{59413,59413,33484},{59417,
59421,33485},{59423,59429,33490},{59431,59434,33497},{59437,59440,33501},{
59443,59450,33505},{59452,59458,33513},{59460,59475,33520},{59478,59491,33536
},{59493,63787,33550},{63789,63864,37845},{63866,63892,37921},{63894,63974,
37948},{63976,63984,38029},{63986,64011,38038},{64016,64016,38064},{64018,
64018,38065},{64021,64023,38066},{64025,64030,38069},{64034,64034,38075},{
64037,64038,38076},{64042,65071,38078},{65074,65074,39108},{65093,65096,39109
},{65107,65107,39113},{65112,65112,39114},{65127,65127,39115},{65132,65280,
39116},{65375,65503,39265},{65510,65535,39394},{0,0,39420}};
/* GBK and GB2312 map differently in few code points that are listed below:
*
* gb2312 gbk
* A1A4 U+30FB KATAKANA MIDDLE DOT U+00B7 MIDDLE DOT
* A1AA U+2015 HORIZONTAL BAR U+2014 EM DASH
* A844 undefined U+2015 HORIZONTAL BAR
*/
#define GBK_DECODE(dc1, dc2, writer) \
if ((dc1) == 0xa1 && (dc2) == 0xaa) { \
OUTCHAR(0x2014); \
} \
else if ((dc1) == 0xa8 && (dc2) == 0x44) { \
OUTCHAR(0x2015); \
} \
else if ((dc1) == 0xa1 && (dc2) == 0xa4) { \
OUTCHAR(0x00b7); \
} \
else if (TRYMAP_DEC(gb2312, decoded, dc1 ^ 0x80, dc2 ^ 0x80)) { \
OUTCHAR(decoded); \
} \
else if (TRYMAP_DEC(gbkext, decoded, dc1, dc2)) { \
OUTCHAR(decoded); \
}
#define GBK_ENCODE(code, assi) \
if ((code) == 0x2014) { \
(assi) = 0xa1aa; \
} else if ((code) == 0x2015) { \
(assi) = 0xa844; \
} else if ((code) == 0x00b7) { \
(assi) = 0xa1a4; \
} else if ((code) != 0x30fb && TRYMAP_ENC(gbcommon, assi, code)) { \
; \
}
/*
* GB2312 codec
*/
ENCODER(gb2312)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
if (c < 0x80) {
WRITEBYTE1((unsigned char)c);
NEXT(1, 1);
continue;
}
if (c > 0xFFFF)
return 1;
REQUIRE_OUTBUF(2);
if (TRYMAP_ENC(gbcommon, code, c))
;
else
return 1;
if (code & 0x8000) /* MSB set: GBK */
return 1;
OUTBYTE1((code >> 8) | 0x80);
OUTBYTE2((code & 0xFF) | 0x80);
NEXT(1, 2);
}
return 0;
}
DECODER(gb2312)
{
while (inleft > 0) {
unsigned char c = **inbuf;
Py_UCS4 decoded;
if (c < 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
REQUIRE_INBUF(2);
if (TRYMAP_DEC(gb2312, decoded, c ^ 0x80, INBYTE2 ^ 0x80)) {
OUTCHAR(decoded);
NEXT_IN(2);
}
else
return 1;
}
return 0;
}
/*
* GBK codec
*/
ENCODER(gbk)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
if (c < 0x80) {
WRITEBYTE1((unsigned char)c);
NEXT(1, 1);
continue;
}
if (c > 0xFFFF)
return 1;
REQUIRE_OUTBUF(2);
GBK_ENCODE(c, code)
else
return 1;
OUTBYTE1((code >> 8) | 0x80);
if (code & 0x8000)
OUTBYTE2((code & 0xFF)); /* MSB set: GBK */
else
OUTBYTE2((code & 0xFF) | 0x80); /* MSB unset: GB2312 */
NEXT(1, 2);
}
return 0;
}
DECODER(gbk)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_UCS4 decoded;
if (c < 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
REQUIRE_INBUF(2);
GBK_DECODE(c, INBYTE2, writer)
else
return 1;
NEXT_IN(2);
}
return 0;
}
/*
* GB18030 codec
*/
ENCODER(gb18030)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
if (c < 0x80) {
WRITEBYTE1(c);
NEXT(1, 1);
continue;
}
if (c >= 0x10000) {
Py_UCS4 tc = c - 0x10000;
assert (c <= 0x10FFFF);
REQUIRE_OUTBUF(4);
OUTBYTE4((unsigned char)(tc % 10) + 0x30);
tc /= 10;
OUTBYTE3((unsigned char)(tc % 126) + 0x81);
tc /= 126;
OUTBYTE2((unsigned char)(tc % 10) + 0x30);
tc /= 10;
OUTBYTE1((unsigned char)(tc + 0x90));
NEXT(1, 4);
continue;
}
REQUIRE_OUTBUF(2);
GBK_ENCODE(c, code)
else if (TRYMAP_ENC(gb18030ext, code, c))
;
else {
const struct _gb18030_to_unibmp_ranges *utrrange;
REQUIRE_OUTBUF(4);
for (utrrange = gb18030_to_unibmp_ranges;
utrrange->first != 0;
utrrange++)
if (utrrange->first <= c &&
c <= utrrange->last) {
Py_UCS4 tc;
tc = c - utrrange->first +
utrrange->base;
OUTBYTE4((unsigned char)(tc % 10) + 0x30);
tc /= 10;
OUTBYTE3((unsigned char)(tc % 126) + 0x81);
tc /= 126;
OUTBYTE2((unsigned char)(tc % 10) + 0x30);
tc /= 10;
OUTBYTE1((unsigned char)tc + 0x81);
NEXT(1, 4);
break;
}
if (utrrange->first == 0)
return 1;
continue;
}
OUTBYTE1((code >> 8) | 0x80);
if (code & 0x8000)
OUTBYTE2((code & 0xFF)); /* MSB set: GBK or GB18030ext */
else
OUTBYTE2((code & 0xFF) | 0x80); /* MSB unset: GB2312 */
NEXT(1, 2);
}
return 0;
}
DECODER(gb18030)
{
while (inleft > 0) {
unsigned char c = INBYTE1, c2;
Py_UCS4 decoded;
if (c < 0x80) {
OUTCHAR(c);
NEXT_IN(1);
continue;
}
REQUIRE_INBUF(2);
c2 = INBYTE2;
if (c2 >= 0x30 && c2 <= 0x39) { /* 4 bytes seq */
const struct _gb18030_to_unibmp_ranges *utr;
unsigned char c3, c4;
Py_UCS4 lseq;
REQUIRE_INBUF(4);
c3 = INBYTE3;
c4 = INBYTE4;
if (c < 0x81 || c > 0xFE ||
c3 < 0x81 || c3 > 0xFE ||
c4 < 0x30 || c4 > 0x39)
return 1;
c -= 0x81; c2 -= 0x30;
c3 -= 0x81; c4 -= 0x30;
if (c < 4) { /* U+0080 - U+FFFF */
lseq = ((Py_UCS4)c * 10 + c2) * 1260 +
(Py_UCS4)c3 * 10 + c4;
if (lseq < 39420) {
for (utr = gb18030_to_unibmp_ranges;
lseq >= (utr + 1)->base;
utr++) ;
OUTCHAR(utr->first - utr->base + lseq);
NEXT_IN(4);
continue;
}
}
else if (c >= 15) { /* U+10000 - U+10FFFF */
lseq = 0x10000 + (((Py_UCS4)c-15) * 10 + c2)
* 1260 + (Py_UCS4)c3 * 10 + c4;
if (lseq <= 0x10FFFF) {
OUTCHAR(lseq);
NEXT_IN(4);
continue;
}
}
return 1;
}
GBK_DECODE(c, c2, writer)
else if (TRYMAP_DEC(gb18030ext, decoded, c, c2))
OUTCHAR(decoded);
else
return 1;
NEXT_IN(2);
}
return 0;
}
/*
* HZ codec
*/
ENCODER_INIT(hz)
{
state->i = 0;
return 0;
}
ENCODER_RESET(hz)
{
if (state->i != 0) {
WRITEBYTE2('~', '}');
state->i = 0;
NEXT_OUT(2);
}
return 0;
}
ENCODER(hz)
{
while (*inpos < inlen) {
Py_UCS4 c = INCHAR1;
DBCHAR code;
if (c < 0x80) {
if (state->i) {
WRITEBYTE2('~', '}');
NEXT_OUT(2);
state->i = 0;
}
WRITEBYTE1((unsigned char)c);
NEXT(1, 1);
if (c == '~') {
WRITEBYTE1('~');
NEXT_OUT(1);
}
continue;
}
if (c > 0xFFFF)
return 1;
if (TRYMAP_ENC(gbcommon, code, c))
;
else
return 1;
if (code & 0x8000) /* MSB set: GBK */
return 1;
if (state->i == 0) {
WRITEBYTE4('~', '{', code >> 8, code & 0xff);
NEXT(1, 4);
state->i = 1;
}
else {
WRITEBYTE2(code >> 8, code & 0xff);
NEXT(1, 2);
}
}
return 0;
}
DECODER_INIT(hz)
{
state->i = 0;
return 0;
}
DECODER_RESET(hz)
{
state->i = 0;
return 0;
}
DECODER(hz)
{
while (inleft > 0) {
unsigned char c = INBYTE1;
Py_UCS4 decoded;
if (c == '~') {
unsigned char c2 = INBYTE2;
REQUIRE_INBUF(2);
if (c2 == '~' && state->i == 0)
OUTCHAR('~');
else if (c2 == '{' && state->i == 0)
state->i = 1; /* set GB */
else if (c2 == '\n' && state->i == 0)
; /* line-continuation */
else if (c2 == '}' && state->i == 1)
state->i = 0; /* set ASCII */
else
return 1;
NEXT_IN(2);
continue;
}
if (c & 0x80)
return 1;
if (state->i == 0) { /* ASCII mode */
OUTCHAR(c);
NEXT_IN(1);
}
else { /* GB mode */
REQUIRE_INBUF(2);
if (TRYMAP_DEC(gb2312, decoded, c, INBYTE2)) {
OUTCHAR(decoded);
NEXT_IN(2);
}
else
return 1;
}
}
return 0;
}
BEGIN_MAPPINGS_LIST
MAPPING_DECONLY(gb2312)
MAPPING_DECONLY(gbkext)
MAPPING_ENCONLY(gbcommon)
MAPPING_ENCDEC(gb18030ext)
END_MAPPINGS_LIST
BEGIN_CODECS_LIST
CODEC_STATELESS(gb2312)
CODEC_STATELESS(gbk)
CODEC_STATELESS(gb18030)
CODEC_STATEFUL(hz)
END_CODECS_LIST
I_AM_A_MODULE_FOR(cn)
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__codecs_cn = {
"_codecs_cn",
PyInit__codecs_cn,
};
| 15,929 | 531 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__gb2312_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __gb2312_decmap_ptr;
static const unsigned char __gb2312_decmap_rodata[11651] = {
0xb5, 0xbb, 0x77, 0x54, 0x54, 0xd9, 0xd7, 0x2d, 0x7a, 0xe7, 0xae, 0x53, 0x45,
0x51, 0x14, 0x05, 0x14, 0x45, 0x46, 0x92, 0x48, 0x52, 0x10, 0x05, 0x05, 0x51,
0x01, 0xc5, 0x9c, 0xb3, 0xad, 0xad, 0xb6, 0xda, 0x6a, 0xab, 0x6d, 0xab, 0x6d,
0x68, 0x53, 0xb7, 0x4d, 0xce, 0x39, 0xe7, 0x2c, 0x41, 0x82, 0x64, 0x90, 0x9c,
0x33, 0x92, 0x04, 0x13, 0x19, 0x25, 0xa8, 0x48, 0x50, 0x11, 0x11, 0xe4, 0x15,
0xdd, 0xbf, 0xef, 0xde, 0x37, 0xde, 0x1b, 0xdf, 0x1b, 0xef, 0x8f, 0x7b, 0x77,
0xfd, 0x51, 0xe3, 0x9c, 0xb1, 0xcf, 0xae, 0xbd, 0xd7, 0x9a, 0x73, 0xae, 0xb5,
0xaa, 0x56, 0x99, 0x17, 0x83, 0x90, 0x09, 0x5a, 0x7f, 0x0e, 0x68, 0x05, 0xcc,
0xac, 0x02, 0x50, 0xdd, 0x26, 0x9e, 0xb3, 0x0c, 0xb7, 0x59, 0x86, 0x92, 0x1c,
0x61, 0x90, 0x0f, 0x26, 0x44, 0x86, 0xfc, 0x3b, 0x38, 0x44, 0x98, 0x14, 0x15,
0x60, 0x87, 0xe9, 0x77, 0x6b, 0x2c, 0x20, 0xda, 0xb4, 0x95, 0x58, 0x77, 0x62,
0x95, 0x2f, 0x99, 0x83, 0xe0, 0x6b, 0xda, 0x38, 0x5e, 0x81, 0x71, 0x4e, 0x53,
0x40, 0xc2, 0xc4, 0x16, 0xf2, 0x44, 0x82, 0xb8, 0x40, 0x07, 0xc1, 0xa2, 0xb4,
0x30, 0x5f, 0x58, 0xdf, 0x27, 0xe1, 0x34, 0xcb, 0x29, 0x46, 0xd1, 0x57, 0x81,
0xa9, 0x19, 0x01, 0xd2, 0xfb, 0x9d, 0xe1, 0x71, 0xbf, 0xcb, 0x02, 0x3d, 0xe2,
0xb8, 0xce, 0x84, 0x30, 0xb6, 0x42, 0x0d, 0x23, 0x12, 0xc9, 0x74, 0x1a, 0xa1,
0xcc, 0x8d, 0x7c, 0x74, 0xc8, 0xff, 0x7b, 0xec, 0xfc, 0xff, 0xbc, 0xf7, 0xf0,
0x03, 0xe3, 0x7f, 0xe4, 0x65, 0x33, 0xfe, 0xd7, 0x75, 0x36, 0xff, 0x7a, 0x9a,
0xf1, 0x7f, 0x9b, 0x9b, 0x38, 0xc9, 0xbf, 0x2a, 0xa7, 0x15, 0xd1, 0xc8, 0xff,
0xa1, 0xe1, 0x4c, 0xca, 0x0a, 0x19, 0xff, 0xfb, 0x97, 0x95, 0xff, 0x3f, 0xb2,
0xd9, 0x9a, 0x4c, 0xfc, 0x3f, 0x6f, 0x51, 0xff, 0xb1, 0xdc, 0xb8, 0xc0, 0xff,
0xf8, 0x77, 0x04, 0x8c, 0x0b, 0xfc, 0x37, 0x73, 0x5c, 0xff, 0x7d, 0x58, 0x5d,
0xeb, 0xbf, 0x5d, 0x3f, 0x74, 0xf4, 0xbf, 0x56, 0xf9, 0xcf, 0x08, 0x1a, 0xfd,
0x77, 0x31, 0xc3, 0x15, 0xff, 0xed, 0x33, 0x41, 0xc2, 0x26, 0x2f, 0x69, 0xaf,
0x68, 0xe7, 0xf6, 0x9f, 0x39, 0x6b, 0x8b, 0x7b, 0x95, 0xb4, 0x2a, 0x5a, 0x29,
0xd2, 0x51, 0xc8, 0x77, 0xd9, 0x04, 0x7a, 0x91, 0x41, 0xcb, 0xa4, 0xe5, 0xd2,
0x28, 0x8a, 0x2a, 0xa2, 0x2d, 0x8c, 0x9b, 0xf9, 0x5f, 0xab, 0x8f, 0xe7, 0xfd,
0xff, 0x32, 0x7a, 0xb3, 0xee, 0xff, 0x46, 0xeb, 0x7d, 0x2f, 0xc2, 0x5b, 0x2b,
0xf2, 0xe5, 0x2b, 0x6a, 0xb5, 0xd3, 0x57, 0xfd, 0xe1, 0x81, 0x48, 0x3b, 0x38,
0xa0, 0x67, 0x75, 0xd0, 0x8a, 0x70, 0xad, 0x5e, 0xf5, 0x6c, 0x99, 0x27, 0x1e,
0x78, 0x4b, 0xab, 0x49, 0x42, 0xc1, 0xfa, 0x10, 0x9d, 0xd0, 0x1d, 0xc1, 0x9c,
0x02, 0x75, 0x6b, 0x0f, 0xf4, 0x9f, 0xae, 0x3f, 0xf5, 0xec, 0xa2, 0xbf, 0x59,
0xbc, 0x17, 0x72, 0x77, 0x26, 0x2e, 0x73, 0x5c, 0x15, 0xa3, 0x12, 0xd5, 0x8d,
0x01, 0x95, 0x5a, 0xe5, 0x16, 0x83, 0x4f, 0xdb, 0x4b, 0xfe, 0xfa, 0x48, 0xab,
0x59, 0x75, 0xa3, 0x30, 0x08, 0x99, 0x31, 0x98, 0x70, 0x47, 0xf7, 0x89, 0x62,
0xf1, 0x0f, 0x09, 0x68, 0x57, 0x7b, 0xd6, 0x8a, 0xd0, 0x3f, 0xbe, 0x44, 0x22,
0x6b, 0x0e, 0x09, 0x3f, 0xb5, 0xea, 0x3b, 0x8a, 0xbd, 0x32, 0xea, 0x32, 0x1a,
0xdd, 0x92, 0xb0, 0xff, 0xed, 0x24, 0x3c, 0xe2, 0x31, 0x79, 0xcc, 0x69, 0x5f,
0xce, 0x2a, 0x0b, 0x93, 0x71, 0xc6, 0xc4, 0xfd, 0x87, 0x47, 0xac, 0xca, 0xe1,
0xb9, 0x38, 0xdd, 0x24, 0x1f, 0x8f, 0x76, 0x75, 0xf9, 0x22, 0xd5, 0x16, 0xcf,
0xc8, 0xf3, 0x14, 0xe4, 0x6c, 0x1e, 0xad, 0x41, 0x8a, 0x66, 0x22, 0x55, 0xfd,
0x53, 0x27, 0x6b, 0xf6, 0xf0, 0x80, 0x89, 0xab, 0x81, 0xe3, 0x6a, 0x3b, 0x2f,
0x92, 0xfc, 0x01, 0x4e, 0x8b, 0xe6, 0x04, 0x52, 0xb3, 0x11, 0xf8, 0x1c, 0x2f,
0x5e, 0xa2, 0xb0, 0x1e, 0x6f, 0x37, 0x66, 0x07, 0x13, 0x7b, 0xe5, 0x70, 0x1b,
0x12, 0xfb, 0x05, 0x71, 0xf2, 0x52, 0xa1, 0xa2, 0x8e, 0x7e, 0x88, 0x33, 0x75,
0x79, 0x88, 0x24, 0xad, 0xf2, 0x0d, 0x05, 0x3f, 0x95, 0xac, 0xb8, 0xde, 0x37,
0x8e, 0x2f, 0x46, 0x91, 0xcb, 0xec, 0x15, 0x62, 0x3d, 0xc9, 0xa4, 0x23, 0x2c,
0x7e, 0xa9, 0x56, 0xec, 0x30, 0x8d, 0x3e, 0x91, 0x54, 0x80, 0xac, 0x18, 0xd8,
0x5c, 0x99, 0xda, 0x3d, 0x7b, 0x2b, 0xd8, 0x0e, 0x5e, 0xea, 0xa3, 0x4a, 0x7d,
0x36, 0x88, 0x66, 0xd8, 0xe3, 0xfb, 0xea, 0x86, 0x06, 0x38, 0xfa, 0xc0, 0xe1,
0x87, 0x47, 0x97, 0xdb, 0xcf, 0x74, 0xe9, 0x3e, 0x41, 0xe3, 0x59, 0x26, 0x3d,
0xde, 0xc0, 0x99, 0xbc, 0x3e, 0x3e, 0xf4, 0x77, 0x58, 0x29, 0x1e, 0xc8, 0x4c,
0x92, 0x8c, 0x22, 0xe4, 0xbd, 0x82, 0x65, 0x34, 0xa6, 0x8d, 0x72, 0xa4, 0xa2,
0xe9, 0x83, 0x8a, 0x15, 0xeb, 0x13, 0x0d, 0xdb, 0x12, 0x60, 0xb5, 0x2d, 0x4d,
0xf4, 0x23, 0xbc, 0xc7, 0x41, 0xa8, 0x72, 0xe2, 0x14, 0x81, 0xc7, 0x2a, 0x1d,
0xf6, 0x08, 0x97, 0xeb, 0xd8, 0xeb, 0x33, 0x82, 0xa2, 0xb5, 0xdf, 0xdd, 0xf0,
0xed, 0x68, 0xb1, 0xb4, 0xb3, 0x66, 0x2b, 0xad, 0x75, 0x87, 0xb7, 0xca, 0x83,
0xed, 0x7f, 0xc4, 0xfd, 0xd0, 0x76, 0xae, 0x27, 0x19, 0x03, 0xf7, 0x3d, 0xa2,
0x10, 0xcd, 0x0b, 0x39, 0xee, 0x78, 0xb0, 0xd6, 0xf4, 0xcd, 0x9f, 0x0e, 0x02,
0x81, 0x55, 0x78, 0x10, 0x06, 0xb7, 0x73, 0x49, 0xc4, 0x7f, 0xe3, 0x40, 0x29,
0x5e, 0x9d, 0xa9, 0x49, 0xc5, 0xf3, 0xd5, 0x59, 0xee, 0x28, 0xa2, 0x86, 0x50,
0xb7, 0x33, 0x9d, 0xde, 0x92, 0x85, 0xbc, 0x0e, 0x8c, 0x9b, 0xe4, 0x33, 0xda,
0x1b, 0xe0, 0xc0, 0xdf, 0x94, 0xfa, 0x7b, 0x93, 0xf2, 0x15, 0x19, 0x66, 0x2d,
0xfb, 0xa2, 0xca, 0x10, 0x2e, 0xfe, 0xde, 0xb0, 0xf6, 0x50, 0xaf, 0x0d, 0x6c,
0x78, 0x0f, 0x13, 0xf0, 0xee, 0xd0, 0xf4, 0xd1, 0x7c, 0x4e, 0x5e, 0x0d, 0x06,
0x3c, 0xe0, 0x48, 0xef, 0xda, 0x1d, 0xe4, 0x43, 0x62, 0xea, 0xe0, 0x75, 0x29,
0x4f, 0x4b, 0x30, 0xd9, 0x38, 0x78, 0x6b, 0x36, 0xc9, 0x6b, 0x40, 0xdc, 0xad,
0xa6, 0x33, 0x56, 0xd6, 0xf0, 0x3f, 0x99, 0xbd, 0xdd, 0x8e, 0x1d, 0xfe, 0xfb,
0x60, 0x21, 0x2c, 0xc3, 0xd0, 0x99, 0x8c, 0x5a, 0x81, 0xef, 0x97, 0x3d, 0x36,
0xb4, 0x57, 0x23, 0xf3, 0x21, 0x3c, 0x4c, 0x2b, 0x0b, 0xc0, 0x8b, 0xf8, 0x2d,
0xd4, 0x6c, 0x64, 0x6f, 0x9e, 0xf2, 0x5b, 0x92, 0x41, 0x9f, 0xc8, 0x46, 0x49,
0x34, 0x3a, 0x78, 0xce, 0x9e, 0xf8, 0x18, 0x01, 0x27, 0x84, 0xba, 0xc2, 0x7a,
0xeb, 0xe0, 0x8a, 0x11, 0xbd, 0xe8, 0xc3, 0x3e, 0x01, 0xa4, 0x25, 0x84, 0xc4,
0xb1, 0x1e, 0xd5, 0xc2, 0x5b, 0x3f, 0xfb, 0x4a, 0xa5, 0x78, 0x16, 0xd3, 0xb5,
0x13, 0x73, 0x5e, 0xa4, 0xb4, 0x18, 0x79, 0x19, 0x7c, 0x1f, 0x3f, 0x31, 0x89,
0x35, 0x47, 0x18, 0xaf, 0xfa, 0x33, 0x2c, 0x12, 0x91, 0x51, 0x0d, 0x8b, 0x2c,
0xb4, 0x99, 0x4d, 0x9d, 0xf1, 0xdb, 0xf4, 0x42, 0x2d, 0xf7, 0xf7, 0xb8, 0x7b,
0x23, 0xe9, 0x78, 0xcb, 0xb4, 0xa0, 0x1a, 0x45, 0x03, 0x4d, 0x9f, 0xdb, 0x20,
0x62, 0x4d, 0xa0, 0xc1, 0xa3, 0x27, 0x08, 0xd7, 0x1c, 0x91, 0x49, 0x59, 0xfe,
0x3d, 0x06, 0x2e, 0x0b, 0xe3, 0x79, 0x99, 0x6e, 0x28, 0x3c, 0x58, 0x66, 0x0f,
0xdf, 0x6d, 0x1e, 0xca, 0x6e, 0x06, 0xdd, 0x52, 0x03, 0xc9, 0x28, 0x3b, 0x93,
0x65, 0x94, 0xf8, 0x7b, 0xe6, 0x03, 0x14, 0x66, 0xe1, 0xa5, 0x66, 0x83, 0x25,
0x4a, 0xfc, 0xd0, 0x67, 0x87, 0x37, 0xdb, 0x1b, 0x4d, 0x5c, 0xcf, 0x7e, 0x77,
0x81, 0x5d, 0x19, 0x1e, 0x8e, 0x60, 0xf8, 0xbc, 0xfd, 0x5f, 0x23, 0x45, 0xe4,
0xf5, 0xf2, 0xa7, 0xe5, 0x28, 0x58, 0x59, 0x74, 0x3e, 0x65, 0xc9, 0xe8, 0x5f,
0x2f, 0x31, 0xd1, 0x82, 0xaa, 0x07, 0x68, 0xa0, 0xe7, 0xca, 0x77, 0xe5, 0x62,
0xf4, 0x4a, 0xca, 0xe9, 0x67, 0xbb, 0x0b, 0xce, 0x8c, 0x5d, 0xe8, 0x4f, 0x43,
0x5f, 0x31, 0xde, 0x2c, 0x18, 0x7c, 0x80, 0x9c, 0x46, 0x84, 0x15, 0x61, 0xe3,
0x87, 0x53, 0x1e, 0x3f, 0x16, 0xbe, 0xc3, 0xb4, 0x8c, 0xaf, 0x40, 0x50, 0x38,
0x2a, 0x43, 0xe1, 0x95, 0x81, 0xfa, 0xd5, 0x8f, 0x42, 0xd1, 0x15, 0x0c, 0x97,
0xdd, 0x89, 0x7e, 0x28, 0x2b, 0x43, 0xe1, 0x62, 0x27, 0xe9, 0xf2, 0x6b, 0x56,
0x1b, 0x1f, 0x9f, 0x4f, 0xab, 0x47, 0x49, 0x1a, 0xea, 0x16, 0x4c, 0x85, 0xa0,
0x45, 0x7c, 0xf8, 0xea, 0x9e, 0xda, 0x4e, 0xc4, 0xba, 0x91, 0x7c, 0x66, 0xe4,
0xef, 0xb1, 0xfa, 0x1d, 0x95, 0x28, 0x9b, 0x44, 0xa5, 0x51, 0x06, 0xdb, 0x3d,
0x02, 0x73, 0xe3, 0x78, 0xfe, 0xf3, 0xd4, 0xfa, 0x81, 0x45, 0x9d, 0x7e, 0x98,
0xbe, 0xf6, 0x59, 0x75, 0x60, 0x45, 0x83, 0xa6, 0xef, 0xed, 0x57, 0xf2, 0x09,
0x8f, 0xd1, 0xb5, 0x2b, 0xf1, 0xc7, 0x66, 0x0b, 0xb4, 0x9e, 0x49, 0x7c, 0x8f,
0x4e, 0x7b, 0x78, 0x1e, 0x74, 0x15, 0x9d, 0xcb, 0x44, 0x9b, 0xc8, 0xa8, 0xe8,
0x1b, 0xf2, 0x9e, 0xe3, 0x9c, 0x80, 0xa1, 0xfd, 0x76, 0x87, 0xec, 0x52, 0x31,
0x35, 0x8d, 0xbc, 0x6d, 0x0e, 0xf4, 0xe1, 0x1f, 0x1e, 0x2c, 0x68, 0x5c, 0x96,
0x51, 0x02, 0x87, 0x25, 0x63, 0xb2, 0x01, 0xab, 0x87, 0x36, 0x87, 0x9c, 0x1e,
0x5f, 0x5a, 0x4c, 0x62, 0xae, 0x3f, 0xde, 0x93, 0x49, 0x9a, 0x31, 0x8b, 0x8e,
0x2a, 0x3c, 0x2b, 0x43, 0x64, 0x32, 0x5a, 0xf7, 0xb6, 0xf1, 0x12, 0x76, 0x3f,
0x53, 0x2d, 0x11, 0x1f, 0x38, 0x96, 0xf0, 0x6b, 0xe4, 0xa6, 0x20, 0xd1, 0xe2,
0x15, 0x15, 0xd7, 0xe2, 0xbe, 0xe2, 0x19, 0xd7, 0x29, 0x1a, 0x2d, 0xa5, 0x08,
0x2a, 0x46, 0xae, 0x39, 0x46, 0x6f, 0xfa, 0xed, 0xcb, 0xe1, 0x55, 0x4e, 0x62,
0x2e, 0x03, 0xc1, 0x37, 0x8a, 0x7e, 0x75, 0x97, 0x69, 0xbc, 0xde, 0xb4, 0x69,
0x40, 0x6f, 0xfa, 0x56, 0x4d, 0x1a, 0xa2, 0x43, 0x31, 0x1a, 0x82, 0x60, 0x11,
0x97, 0xcd, 0xae, 0xd5, 0xf8, 0xf6, 0x6b, 0xc5, 0x91, 0xca, 0x8d, 0xb5, 0x7c,
0xcc, 0x4d, 0xc1, 0x73, 0x79, 0xce, 0xf5, 0xcf, 0x37, 0xfd, 0xd4, 0x7d, 0xc3,
0x31, 0x7b, 0x36, 0xb9, 0x10, 0x5f, 0xce, 0x16, 0x1d, 0x33, 0x79, 0xf9, 0x63,
0xd3, 0x4f, 0x5f, 0x6f, 0xf9, 0x4b, 0x07, 0x8b, 0x17, 0x70, 0x46, 0x7c, 0x51,
0x3c, 0x8d, 0xce, 0x5e, 0x24, 0x2c, 0xac, 0xbf, 0xff, 0xde, 0x0a, 0x79, 0x0f,
0x11, 0x7a, 0x38, 0x49, 0xb9, 0x88, 0x37, 0xb9, 0xe5, 0x9b, 0x17, 0xe2, 0x14,
0x8b, 0x44, 0x6b, 0x16, 0x44, 0x67, 0x22, 0x61, 0x51, 0xc8, 0x0d, 0x6b, 0x6a,
0xa0, 0x0c, 0xdf, 0xcc, 0xfc, 0xcf, 0xe5, 0x3d, 0x85, 0xa3, 0x76, 0xa4, 0x7a,
0x81, 0xa2, 0xc5, 0x5f, 0x95, 0x7e, 0xa4, 0xfb, 0x3b, 0xbc, 0xff, 0xe8, 0xf7,
0xc3, 0x5b, 0x3f, 0x94, 0x1c, 0x0d, 0x15, 0x74, 0x52, 0x28, 0xde, 0x6b, 0xc1,
0xf4, 0xd6, 0x0b, 0xf0, 0x44, 0x9a, 0x13, 0xf1, 0xf2, 0x26, 0x97, 0xdc, 0x37,
0xcd, 0xae, 0xf5, 0xb4, 0x24, 0x61, 0x2a, 0x9e, 0x02, 0x0f, 0x2e, 0xd7, 0xcb,
0x24, 0xaf, 0xfe, 0xa0, 0x5c, 0x24, 0xf2, 0xa2, 0x07, 0x05, 0x52, 0x1d, 0x51,
0xb0, 0x70, 0x46, 0x96, 0x25, 0x79, 0x29, 0x92, 0x22, 0x5b, 0xa2, 0xfe, 0x60,
0x00, 0xee, 0xc5, 0x98, 0xfb, 0x0c, 0xa1, 0x70, 0xce, 0x87, 0x5a, 0x94, 0x38,
0x22, 0x7d, 0x4d, 0xe5, 0xc1, 0xc1, 0x53, 0x71, 0x66, 0xdd, 0x46, 0x95, 0xbf,
0x59, 0x5d, 0xf9, 0xb4, 0xc1, 0x92, 0xed, 0x5d, 0x86, 0x4c, 0x8d, 0x48, 0x91,
0xd9, 0xf3, 0xb5, 0x97, 0xd2, 0xcf, 0x45, 0xe8, 0x8c, 0xc9, 0x96, 0x23, 0xf4,
0x8c, 0x53, 0x23, 0xec, 0xff, 0x8a, 0x39, 0xdc, 0xed, 0x87, 0xea, 0x6c, 0xd4,
0xed, 0x1b, 0xb4, 0xc3, 0xe4, 0xda, 0x90, 0x7d, 0xb9, 0x36, 0xb0, 0x62, 0x07,
0xdf, 0x74, 0x8a, 0x81, 0x9b, 0x74, 0xe9, 0x59, 0xb7, 0x60, 0x0c, 0xcb, 0x06,
0x7b, 0x91, 0xba, 0x21, 0x84, 0x09, 0x5b, 0x70, 0xbd, 0x87, 0xe1, 0x17, 0x0d,
0x3e, 0x30, 0x32, 0x6d, 0xc9, 0xc4, 0x24, 0x0a, 0xfe, 0xb0, 0x3d, 0xfb, 0x31,
0x0d, 0x16, 0xab, 0xe3, 0xc4, 0x4c, 0x0b, 0x18, 0xc9, 0x1d, 0xf8, 0x1a, 0x02,
0xc7, 0x20, 0x38, 0x2c, 0x1d, 0x2c, 0x42, 0x97, 0x51, 0xe6, 0xc2, 0x96, 0x3c,
0x24, 0xc4, 0x21, 0xd7, 0x86, 0x58, 0xe4, 0x92, 0xb4, 0x28, 0x52, 0xa5, 0x17,
0x5b, 0x89, 0x48, 0x99, 0x7e, 0xbd, 0xb1, 0xd5, 0x31, 0xd9, 0x18, 0x20, 0xd3,
0xca, 0x09, 0xaf, 0x51, 0x79, 0x3f, 0x20, 0x0f, 0x43, 0x79, 0x28, 0x70, 0x47,
0xe9, 0x67, 0xf0, 0xa1, 0x50, 0x73, 0xb7, 0x7a, 0x1a, 0x05, 0x6f, 0xe0, 0x99,
0x0c, 0x1f, 0xd1, 0xd9, 0x14, 0x58, 0xd0, 0xfa, 0x42, 0x49, 0x5b, 0x34, 0x26,
0xe5, 0xd2, 0xb6, 0x54, 0x84, 0xa1, 0xfa, 0x78, 0xa4, 0x56, 0xef, 0xe1, 0x21,
0x83, 0xb8, 0x6b, 0x11, 0x47, 0x8a, 0x52, 0xe1, 0xf8, 0x67, 0xea, 0x0d, 0xd7,
0x31, 0x44, 0xe8, 0xd5, 0x6b, 0x7c, 0xbc, 0x30, 0x13, 0x88, 0xa8, 0x34, 0x44,
0x1c, 0x6a, 0x49, 0xc2, 0xc7, 0xeb, 0x7d, 0xbf, 0xb6, 0xdd, 0x19, 0x68, 0x84,
0xd7, 0x04, 0x9a, 0xb5, 0xcc, 0x3f, 0xc2, 0x41, 0xff, 0xcb, 0xd9, 0xa1, 0xbb,
0xcf, 0x77, 0x7e, 0xb5, 0x23, 0xd3, 0x2e, 0x64, 0xfc, 0xe4, 0xe7, 0x4c, 0xc4,
0xf4, 0xe3, 0x71, 0x37, 0x32, 0xd2, 0x90, 0x69, 0x8f, 0x34, 0x43, 0x4b, 0x4b,
0x04, 0x68, 0x75, 0x18, 0xf5, 0x7e, 0xc2, 0xeb, 0x9f, 0xe2, 0xcf, 0xf7, 0xa5,
0xe1, 0x51, 0x08, 0x26, 0xcf, 0x65, 0x73, 0x7d, 0x4d, 0xbf, 0x39, 0x23, 0x48,
0xd3, 0x7a, 0x43, 0x2d, 0xe5, 0x7c, 0xf9, 0xe3, 0x63, 0x44, 0x1a, 0x3c, 0xd5,
0x49, 0xfe, 0x2b, 0x2a, 0x0e, 0x59, 0x3d, 0xb0, 0x15, 0x29, 0x70, 0x46, 0x3f,
0xb7, 0xf6, 0xcf, 0x37, 0x5f, 0xd1, 0x91, 0x89, 0xe2, 0xe5, 0x83, 0x35, 0xa8,
0x59, 0xe0, 0xc1, 0xf2, 0x15, 0x77, 0xe4, 0xf9, 0x2f, 0x7b, 0x79, 0xa9, 0xd3,
0x1b, 0x96, 0xf2, 0xfe, 0x08, 0x4e, 0x87, 0x4f, 0x05, 0x32, 0x0c, 0x5c, 0xd7,
0x24, 0xa5, 0xc0, 0x93, 0xf6, 0xf6, 0x58, 0xa9, 0xcc, 0xed, 0xda, 0xa5, 0xe5,
0x6b, 0xd2, 0x63, 0x10, 0xf7, 0x43, 0xc4, 0xb6, 0xf6, 0x74, 0x24, 0x7c, 0xc7,
0x4b, 0x3b, 0x32, 0x9c, 0x02, 0xf7, 0xcb, 0x1b, 0x86, 0x1d, 0x31, 0xe4, 0x88,
0x6a, 0x5d, 0x87, 0xf7, 0xe0, 0x9b, 0xd4, 0x51, 0xe4, 0x5b, 0x13, 0xdc, 0x54,
0x5e, 0x30, 0xec, 0x43, 0x48, 0x9d, 0x1b, 0x6c, 0xd7, 0xd6, 0xeb, 0x3c, 0xa8,
0x40, 0x72, 0x11, 0x4a, 0xb5, 0xbe, 0x4e, 0x20, 0xc6, 0x17, 0x5e, 0x0f, 0x51,
0x2f, 0xd0, 0x88, 0xe4, 0x67, 0x78, 0x16, 0x08, 0x4f, 0xb1, 0xe4, 0x44, 0xd8,
0xdc, 0x0a, 0x50, 0x4e, 0x32, 0xad, 0x3f, 0x1a, 0x65, 0xe0, 0x4b, 0x3a, 0x76,
0xe4, 0x4b, 0xa6, 0xe9, 0x25, 0xa5, 0xe2, 0xc9, 0xe9, 0xaa, 0xbd, 0x96, 0xe1,
0xc8, 0x1c, 0x45, 0x34, 0x71, 0x77, 0x24, 0xad, 0x07, 0x2b, 0xe9, 0xcd, 0x02,
0xfc, 0x83, 0xa7, 0x6c, 0x0a, 0x91, 0x9b, 0xd8, 0x1b, 0x24, 0x11, 0xe8, 0x01,
0x8f, 0xb3, 0x9f, 0x05, 0x66, 0x59, 0x23, 0xa7, 0x5f, 0x97, 0x23, 0xe2, 0xd2,
0xb0, 0x1f, 0xb2, 0xc8, 0x93, 0x23, 0x3e, 0x0b, 0xc6, 0x05, 0xde, 0x8e, 0xc1,
0xeb, 0x66, 0xba, 0x76, 0x83, 0x33, 0x3e, 0x78, 0x91, 0xa0, 0x1d, 0x05, 0x57,
0x9b, 0xee, 0xe6, 0xae, 0x89, 0x21, 0x8d, 0x0c, 0xab, 0x20, 0x92, 0x21, 0xc5,
0x97, 0xe9, 0xa2, 0xa3, 0xf5, 0xfc, 0x7d, 0x18, 0x94, 0x9c, 0x49, 0x57, 0x2e,
0xb4, 0xc6, 0x48, 0x18, 0xa6, 0x23, 0xd0, 0x78, 0xa2, 0x5f, 0x2b, 0x71, 0x41,
0xf6, 0xb6, 0x60, 0x83, 0x97, 0x33, 0x98, 0x2d, 0x22, 0x91, 0x33, 0x98, 0xfb,
0x84, 0xef, 0x1a, 0x4d, 0xc2, 0xad, 0xd4, 0xdb, 0x55, 0x2f, 0x16, 0xf5, 0xc4,
0xa1, 0xfb, 0x03, 0xc6, 0x9c, 0x49, 0x9b, 0x2d, 0x29, 0x3d, 0x67, 0x7e, 0xc4,
0xcd, 0x74, 0xf8, 0x52, 0xb9, 0x49, 0x8b, 0x2f, 0x82, 0x9a, 0x30, 0xfd, 0x02,
0xf1, 0x4b, 0xfb, 0xf3, 0x31, 0x16, 0x84, 0xc7, 0xa9, 0x08, 0xfc, 0x23, 0x75,
0xe3, 0x03, 0x86, 0xb5, 0x0f, 0xe9, 0x4c, 0x24, 0xf5, 0x75, 0xc8, 0xdf, 0xdd,
0xbb, 0x2a, 0x41, 0x27, 0xfb, 0xb7, 0x89, 0x7a, 0xd8, 0xd9, 0x92, 0xc0, 0x39,
0xa4, 0x7a, 0x92, 0x0e, 0x47, 0xf8, 0x39, 0x22, 0x52, 0xad, 0x54, 0xde, 0xdc,
0x1f, 0xcf, 0xde, 0xe2, 0xd3, 0xde, 0x3a, 0x56, 0xf8, 0x42, 0x97, 0x13, 0xb5,
0x1a, 0xa3, 0xea, 0xe5, 0x3d, 0x28, 0x31, 0xac, 0xbd, 0xf5, 0xee, 0x7c, 0xc9,
0x9d, 0xdc, 0xb5, 0x95, 0xd7, 0xeb, 0x46, 0xf1, 0x5e, 0x3f, 0xa7, 0x12, 0x6d,
0x97, 0xe3, 0x0e, 0x26, 0xd5, 0x22, 0xc5, 0x1a, 0x6f, 0x7e, 0x0e, 0xb4, 0x20,
0x35, 0x6a, 0x51, 0xb2, 0x71, 0x4b, 0x33, 0xd7, 0x36, 0x1f, 0x7c, 0x67, 0x58,
0x87, 0x60, 0x7f, 0x0c, 0x93, 0xd1, 0x77, 0x08, 0xfc, 0x8c, 0x6e, 0x3e, 0x2c,
0xa4, 0xc7, 0x52, 0xf0, 0x48, 0xb4, 0x7b, 0x10, 0x85, 0xeb, 0xf9, 0xf4, 0x08,
0x96, 0x9b, 0x7d, 0x87, 0x1e, 0x3f, 0x12, 0x32, 0x8b, 0xe0, 0x2d, 0x11, 0x74,
0x8b, 0x3f, 0x82, 0xf5, 0xe3, 0xbe, 0xa1, 0x4a, 0xf5, 0x73, 0x21, 0x5c, 0xf3,
0xf1, 0x49, 0xfe, 0x9b, 0x2b, 0xf1, 0x3e, 0x57, 0xb1, 0x39, 0x5e, 0x3d, 0x90,
0xe3, 0x1b, 0xcb, 0x37, 0xe2, 0xe0, 0xa5, 0x4e, 0x7a, 0x35, 0xeb, 0x8d, 0x68,
0x2f, 0x35, 0xbd, 0xee, 0x0d, 0x57, 0x2e, 0x7d, 0xc7, 0x8c, 0xe1, 0xf4, 0xc5,
0xf8, 0x07, 0x70, 0x11, 0xcc, 0x79, 0x86, 0x59, 0x0b, 0xbc, 0xf6, 0x42, 0x51,
0x27, 0x32, 0x02, 0x51, 0x94, 0x82, 0xd7, 0x67, 0x07, 0x7f, 0x6e, 0xa2, 0x32,
0xb2, 0x91, 0x82, 0xa4, 0xcb, 0xce, 0x9b, 0xfa, 0xbd, 0x31, 0xc2, 0x1b, 0xe0,
0x7a, 0x3b, 0xe1, 0xc3, 0xa1, 0x89, 0x45, 0x21, 0x0f, 0xe0, 0x48, 0x0d, 0xdc,
0xcf, 0x14, 0x8b, 0x3b, 0xd8, 0xba, 0xe1, 0xf3, 0x2b, 0x44, 0x47, 0x92, 0x2f,
0x51, 0x08, 0x38, 0x92, 0xb2, 0x73, 0x74, 0xeb, 0x33, 0xed, 0x58, 0x19, 0xeb,
0xcb, 0x1f, 0x6e, 0x87, 0x84, 0x23, 0x3f, 0x7f, 0xde, 0x04, 0x71, 0x57, 0x4b,
0x0f, 0x39, 0xff, 0x14, 0x5f, 0x8e, 0xcc, 0x4d, 0x9e, 0x1c, 0xef, 0xfb, 0xa9,
0xd1, 0x48, 0x97, 0x72, 0x74, 0xc5, 0xe8, 0xbd, 0x32, 0x62, 0xc1, 0x79, 0x2b,
0xd2, 0x81, 0x57, 0xd2, 0x5d, 0x9b, 0x72, 0xf7, 0x56, 0xfd, 0xf6, 0x36, 0x09,
0x5e, 0x9c, 0x18, 0xd9, 0xaa, 0x7d, 0x9f, 0xd4, 0x07, 0x57, 0x75, 0xae, 0x79,
0x12, 0x8c, 0xb2, 0x72, 0x8c, 0xad, 0x88, 0xda, 0x93, 0x72, 0xfb, 0x8d, 0xe6,
0x27, 0x0b, 0xa4, 0x67, 0xc3, 0x83, 0xd1, 0xf3, 0xf7, 0x0b, 0xb1, 0xa7, 0x32,
0xcd, 0xce, 0xb0, 0xa7, 0x5c, 0xfb, 0x11, 0x60, 0x0f, 0x27, 0xcd, 0xf7, 0xe8,
0x30, 0x28, 0x38, 0x1a, 0xb3, 0x3b, 0x50, 0x25, 0x5b, 0xdb, 0x31, 0x14, 0x0e,
0x66, 0xbd, 0x97, 0x67, 0x59, 0xb3, 0xda, 0xce, 0x56, 0x18, 0x3b, 0x12, 0xf0,
0x5b, 0xbf, 0xf0, 0xd7, 0xcd, 0x0f, 0x85, 0x92, 0xbd, 0xe0, 0x64, 0x8f, 0xb1,
0xcf, 0xf0, 0xf2, 0x43, 0xee, 0xaa, 0xee, 0x25, 0x45, 0x92, 0x49, 0x9e, 0x70,
0x5e, 0x93, 0xb8, 0xce, 0x63, 0xc9, 0x88, 0xa2, 0x25, 0xd3, 0xf2, 0x11, 0xf2,
0x2e, 0xfb, 0xac, 0xa8, 0x4e, 0x85, 0x5f, 0x11, 0x6a, 0xc9, 0xeb, 0x00, 0xbc,
0x2b, 0x42, 0xe5, 0xfe, 0x17, 0x4b, 0x62, 0x68, 0x79, 0x86, 0xc9, 0x2b, 0x9d,
0x25, 0xd3, 0x82, 0x60, 0xb5, 0xb3, 0x22, 0x01, 0xa1, 0x76, 0x28, 0xe3, 0x3e,
0xff, 0xeb, 0x7e, 0xba, 0xbe, 0x3f, 0x37, 0xfe, 0xe6, 0xb0, 0x4e, 0x93, 0x15,
0xe9, 0xcd, 0x46, 0x3d, 0xf1, 0xbe, 0xe3, 0xf4, 0x67, 0xd9, 0xed, 0x68, 0x1b,
0xf8, 0xef, 0x2c, 0xb1, 0x85, 0x03, 0x7d, 0xea, 0x39, 0xea, 0xd4, 0x3b, 0x77,
0xf1, 0x65, 0xc8, 0x56, 0x62, 0x8a, 0x98, 0xaf, 0x9d, 0x31, 0x74, 0x14, 0x0f,
0x42, 0x3d, 0xe3, 0x83, 0x78, 0xda, 0xcf, 0xcf, 0x16, 0x8d, 0x9b, 0xa3, 0xf6,
0xca, 0xd4, 0xd6, 0x61, 0x77, 0x32, 0xed, 0x05, 0xd3, 0xb9, 0x04, 0x8c, 0xed,
0x4c, 0xa6, 0x4f, 0x04, 0xc2, 0x6e, 0xe7, 0xc4, 0x85, 0x2f, 0x4e, 0x24, 0x6b,
0x59, 0xda, 0x21, 0xbf, 0x45, 0xb3, 0x3f, 0x27, 0x2e, 0xc8, 0x77, 0x83, 0xcd,
0x65, 0xbb, 0x8d, 0x4f, 0xf3, 0x91, 0xea, 0x8c, 0x8e, 0x20, 0x14, 0x38, 0x60,
0xce, 0xac, 0x52, 0x3d, 0x7e, 0x59, 0x61, 0x3c, 0xda, 0x82, 0xf1, 0x7e, 0x55,
0xe2, 0x72, 0xaf, 0x4d, 0xb4, 0xc2, 0x22, 0x28, 0x04, 0xf9, 0x21, 0x41, 0x7a,
0xe2, 0x05, 0xfa, 0x27, 0x10, 0xe7, 0x83, 0x3b, 0x25, 0x91, 0xe8, 0xd8, 0xf4,
0x6d, 0x95, 0x93, 0xba, 0xed, 0xb2, 0x04, 0xd5, 0x4f, 0xa5, 0xe8, 0x39, 0xe0,
0xa7, 0xed, 0x77, 0xd2, 0xff, 0xfe, 0x88, 0x07, 0x79, 0x1b, 0x0b, 0x87, 0x24,
0x7c, 0x3f, 0xed, 0x5e, 0x87, 0xaf, 0xdf, 0x31, 0xb9, 0xfe, 0xa1, 0xf6, 0xc8,
0x5f, 0x53, 0xdc, 0xea, 0x3f, 0x3f, 0x5d, 0xac, 0xf3, 0x44, 0xd4, 0xdf, 0x2f,
0xf3, 0xe1, 0x2a, 0x30, 0x1a, 0x05, 0x7f, 0x5f, 0x54, 0x8a, 0x36, 0x5c, 0x88,
0xa5, 0x39, 0x9a, 0x5d, 0x8f, 0x3d, 0x34, 0x83, 0xc2, 0x93, 0x0f, 0x92, 0x31,
0x2d, 0x98, 0x49, 0x2c, 0x2b, 0x31, 0x7c, 0x36, 0x2d, 0x12, 0xb3, 0x62, 0x76,
0xb4, 0x6e, 0xe1, 0x97, 0xda, 0x16, 0xe7, 0x46, 0xd2, 0xd0, 0x45, 0xf7, 0xad,
0x42, 0x41, 0x11, 0xf2, 0x83, 0x49, 0x41, 0x12, 0xde, 0x22, 0x8f, 0xf6, 0xc2,
0xc8, 0xc1, 0xf0, 0xc9, 0xc2, 0xa7, 0x4c, 0xf3, 0x8d, 0x0d, 0xb4, 0x27, 0xaa,
0x8e, 0x6b, 0x2a, 0xae, 0x46, 0xad, 0xc9, 0xa9, 0x41, 0x54, 0x1f, 0x22, 0xbf,
0x22, 0x47, 0xdc, 0x6e, 0xc3, 0xc8, 0xd5, 0x2e, 0x93, 0x4c, 0xc5, 0x70, 0x93,
0xa8, 0x1a, 0xd4, 0xdb, 0x13, 0x1b, 0x57, 0x4c, 0x67, 0xe0, 0xab, 0x05, 0xf1,
0x11, 0xf6, 0x5c, 0xd1, 0x5e, 0x06, 0x87, 0x1b, 0xfc, 0xcc, 0xef, 0x6d, 0x05,
0xc6, 0x0d, 0xfb, 0x7e, 0x6c, 0x32, 0x76, 0xba, 0x90, 0x80, 0x82, 0x54, 0x64,
0x6c, 0xcf, 0x49, 0xc1, 0x3b, 0x01, 0xe6, 0xa3, 0x0f, 0x68, 0x0f, 0x44, 0xf3,
0x51, 0x37, 0x94, 0x6e, 0x7f, 0x2d, 0x5c, 0xb8, 0xaa, 0xd0, 0xc0, 0xaf, 0x09,
0xb3, 0x6b, 0xf9, 0x5a, 0xf4, 0xea, 0x7c, 0x15, 0x6d, 0x5c, 0x64, 0x68, 0xb7,
0x35, 0xe7, 0x99, 0x41, 0xf4, 0xe6, 0xf0, 0x25, 0x0f, 0x8a, 0x61, 0xad, 0xfc,
0xc1, 0x15, 0x55, 0xec, 0xd4, 0x15, 0x2f, 0xbc, 0x11, 0x4b, 0xcf, 0x08, 0x82,
0xf3, 0x91, 0x92, 0x42, 0x0c, 0x31, 0x02, 0x6f, 0x36, 0x1c, 0x7a, 0x99, 0x02,
0x17, 0x67, 0x92, 0x75, 0xe7, 0xd3, 0xd5, 0x51, 0xdd, 0xef, 0x3f, 0x95, 0x04,
0x90, 0xca, 0xcf, 0x18, 0xe0, 0xa4, 0x28, 0x34, 0x96, 0xe3, 0xfd, 0x8e, 0xf0,
0x23, 0x35, 0xf7, 0x06, 0x85, 0x3f, 0x6f, 0xf0, 0x51, 0x8b, 0x2b, 0x45, 0x55,
0x15, 0x9e, 0x57, 0xe2, 0x8d, 0x4e, 0x8d, 0x99, 0xf5, 0x0b, 0xf8, 0xe5, 0x90,
0xfc, 0x2d, 0x43, 0x57, 0x24, 0x72, 0x98, 0x1f, 0x8b, 0x11, 0xf9, 0x11, 0x23,
0x5e, 0x48, 0xab, 0x46, 0x27, 0x95, 0xf0, 0x0d, 0x2d, 0x7a, 0x3d, 0x45, 0x78,
0xf4, 0x0c, 0x8e, 0x47, 0x02, 0x6d, 0x31, 0xf2, 0x3b, 0xf2, 0xa2, 0xd1, 0x75,
0xaf, 0x45, 0xfd, 0xd5, 0x51, 0xff, 0xa3, 0x4f, 0x45, 0xbd, 0x96, 0x24, 0x7b,
0xa0, 0x31, 0x86, 0x0c, 0xd8, 0xcf, 0x2b, 0xfd, 0x5b, 0x27, 0xd2, 0x3c, 0x89,
0xa6, 0x4d, 0x89, 0xe4, 0xe1, 0x55, 0xee, 0x48, 0x26, 0x2a, 0x15, 0x5a, 0xce,
0x3a, 0xdb, 0xc3, 0xad, 0x15, 0x96, 0xa6, 0xd5, 0x42, 0xa3, 0x67, 0x87, 0xa6,
0xd0, 0x79, 0xd4, 0x2b, 0x14, 0x73, 0x0a, 0x2d, 0x2e, 0x68, 0x8b, 0x41, 0xcf,
0x9d, 0xe7, 0xbb, 0xdc, 0xfe, 0xc8, 0x21, 0x4e, 0x92, 0xbd, 0xcb, 0xea, 0xc7,
0x61, 0x89, 0x48, 0xf9, 0x6f, 0xde, 0x64, 0x48, 0xc4, 0x5a, 0xdf, 0xd1, 0xc4,
0xe1, 0x4e, 0x8b, 0xd9, 0xc0, 0x3b, 0x54, 0xb9, 0x93, 0x71, 0xf5, 0xc8, 0x60,
0xcc, 0xb9, 0xa2, 0x3d, 0x09, 0x8f, 0x2f, 0xd4, 0x93, 0x32, 0x56, 0x28, 0x65,
0xb7, 0xab, 0xd4, 0x1e, 0x71, 0x27, 0x12, 0x7a, 0x10, 0x38, 0x84, 0x0a, 0xbd,
0x84, 0x50, 0x38, 0xa6, 0x21, 0xcb, 0xcc, 0xcf, 0x99, 0x98, 0xb3, 0x8a, 0x17,
0xf6, 0xea, 0xa7, 0x25, 0xc2, 0x63, 0xa5, 0xab, 0x2b, 0x3a, 0xd4, 0x42, 0xbc,
0x49, 0x2b, 0x6d, 0x98, 0x0a, 0xa6, 0x47, 0x6a, 0xb6, 0x88, 0x07, 0x4b, 0xba,
0x9d, 0x98, 0x58, 0x9b, 0xb7, 0xb6, 0x58, 0x3a, 0x4a, 0xe2, 0xbd, 0xd8, 0x77,
0x4b, 0x58, 0x51, 0xb1, 0xa7, 0xcc, 0x85, 0x5a, 0x7e, 0x73, 0xb8, 0x78, 0x7b,
0x78, 0xf7, 0x80, 0x1d, 0x3a, 0xd6, 0xfa, 0xdd, 0x78, 0x69, 0x30, 0x15, 0x80,
0xe6, 0x39, 0x54, 0x27, 0xe1, 0xd9, 0xaf, 0xce, 0x54, 0xb1, 0x89, 0xf5, 0xdf,
0x4e, 0xf7, 0xf2, 0xac, 0x30, 0x27, 0x6a, 0x47, 0x73, 0xbc, 0xd0, 0x7c, 0xbd,
0x87, 0xf6, 0x64, 0x51, 0x4e, 0x09, 0x42, 0xb4, 0x9f, 0x25, 0xa1, 0x52, 0x30,
0x70, 0x61, 0x99, 0x6a, 0x15, 0x3b, 0x30, 0x00, 0xad, 0xe7, 0xbf, 0x88, 0xc7,
0x28, 0xbb, 0x50, 0x5f, 0x8d, 0xcc, 0x8d, 0xb2, 0x65, 0x9b, 0x96, 0x5a, 0x6d,
0x7f, 0xed, 0x0b, 0x57, 0xe5, 0x48, 0xa3, 0xaa, 0x3a, 0x44, 0xc6, 0xe3, 0x59,
0x21, 0xbc, 0x18, 0xc5, 0xda, 0x19, 0x09, 0x18, 0xd7, 0x7b, 0x14, 0x83, 0x62,
0x77, 0x04, 0x3d, 0x82, 0xf5, 0xba, 0x57, 0xa2, 0x96, 0xc6, 0x8f, 0x4f, 0x76,
0x85, 0x23, 0x48, 0xe5, 0x8b, 0xe6, 0x84, 0xb1, 0x07, 0x6d, 0x76, 0x83, 0xd5,
0xde, 0x3a, 0xb6, 0x63, 0x04, 0xe2, 0xcf, 0xd7, 0xdf, 0x0a, 0x57, 0x6f, 0x48,
0xc4, 0x80, 0x1d, 0xb1, 0x48, 0x20, 0xee, 0xd1, 0xa4, 0xa4, 0x17, 0x39, 0x2b,
0x0a, 0x8e, 0x95, 0x1b, 0xcd, 0xb1, 0x12, 0x96, 0x4d, 0x2d, 0xb5, 0x21, 0x09,
0x1c, 0xcb, 0x4e, 0x44, 0x4c, 0xc3, 0x59, 0xdb, 0x6a, 0x45, 0x46, 0x25, 0x92,
0xa4, 0xd2, 0x56, 0x7d, 0x1d, 0x82, 0xef, 0x63, 0xf8, 0xfd, 0xde, 0xe7, 0x87,
0x71, 0xe5, 0x37, 0xf1, 0xa8, 0x5d, 0xd9, 0xcc, 0x73, 0x3f, 0x53, 0x79, 0xbe,
0xc4, 0x93, 0x3c, 0xbf, 0x1d, 0x77, 0xed, 0x4d, 0x38, 0x7c, 0xfd, 0xf0, 0x2e,
0x0c, 0x43, 0x37, 0xec, 0x56, 0x3d, 0x16, 0x28, 0xe6, 0xf5, 0x6a, 0x36, 0x2d,
0xea, 0xdf, 0x63, 0x5f, 0x8d, 0x91, 0x18, 0xc4, 0xc8, 0xf8, 0x69, 0xb4, 0xad,
0xef, 0xba, 0x5f, 0xb8, 0x32, 0xbe, 0x14, 0x13, 0x9a, 0x8e, 0x5d, 0x88, 0xb0,
0xc4, 0x17, 0xb6, 0xcf, 0xaf, 0x56, 0xdc, 0x27, 0x91, 0xc4, 0x8b, 0xd1, 0x69,
0x32, 0xb8, 0xbc, 0x56, 0x2c, 0x28, 0x05, 0x7d, 0x32, 0x3d, 0xfa, 0x9e, 0x57,
0xc2, 0x44, 0x23, 0x8c, 0xc7, 0x45, 0x5e, 0xa2, 0xe1, 0x44, 0xa9, 0x40, 0xf8,
0x81, 0x34, 0xf5, 0xc0, 0x54, 0x3c, 0x76, 0xc2, 0xf8, 0x42, 0x5b, 0xb9, 0x46,
0xad, 0x01, 0xf1, 0xd1, 0xe5, 0x33, 0xf1, 0x48, 0x59, 0xdc, 0xe8, 0x82, 0x40,
0xcd, 0x0b, 0x0e, 0x05, 0x70, 0xdf, 0x93, 0xfe, 0x8b, 0xbf, 0xc4, 0x23, 0x5a,
0xa0, 0x2f, 0x46, 0x3d, 0xf1, 0x98, 0x5e, 0xc2, 0xf8, 0x4a, 0x73, 0x44, 0xb4,
0x3f, 0x3f, 0xff, 0x75, 0x15, 0x78, 0x61, 0x12, 0x19, 0x87, 0x4c, 0x77, 0xd2,
0x64, 0x87, 0xf4, 0xfb, 0x73, 0xe2, 0xed, 0x25, 0xc8, 0x17, 0x7e, 0xae, 0x1b,
0x2d, 0xd9, 0xf0, 0x12, 0x31, 0x74, 0xdb, 0x95, 0x2e, 0xc6, 0xb6, 0x0b, 0x72,
0xaf, 0x38, 0xef, 0x7e, 0xd3, 0x82, 0xbe, 0x75, 0xae, 0x86, 0xf1, 0xcc, 0x1a,
0xbe, 0xbe, 0x1c, 0xed, 0xd9, 0x33, 0x23, 0xe9, 0xd3, 0x8c, 0x72, 0x1b, 0xe2,
0x29, 0x18, 0x91, 0x84, 0xb0, 0x9f, 0x92, 0x3f, 0x23, 0x3b, 0x04, 0xa5, 0x97,
0xbb, 0x0b, 0x30, 0xed, 0x09, 0x0f, 0x91, 0xe6, 0xc3, 0x29, 0x8d, 0x48, 0xb2,
0x40, 0x91, 0x15, 0xa6, 0x0e, 0x97, 0x96, 0x21, 0xe0, 0x25, 0x6c, 0xe5, 0xac,
0x76, 0xb5, 0xbf, 0xc4, 0xc7, 0x9f, 0x6a, 0x6e, 0xb7, 0x5b, 0xa0, 0x96, 0xca,
0x5e, 0x5e, 0xbc, 0xb1, 0xf0, 0x76, 0x59, 0x14, 0x71, 0x75, 0x24, 0x95, 0xba,
0x0f, 0xf2, 0xd1, 0x7d, 0xa5, 0x7e, 0x04, 0x55, 0xaf, 0xd1, 0x67, 0x54, 0x6d,
0xf6, 0xdd, 0xd4, 0x71, 0x47, 0xb0, 0x8a, 0xc5, 0xe2, 0x00, 0x5f, 0x52, 0x5d,
0x82, 0xa0, 0x6c, 0xb4, 0xdc, 0xe5, 0x87, 0x40, 0xb7, 0x41, 0xa4, 0x8d, 0xa2,
0xc8, 0x93, 0x58, 0xf1, 0xc6, 0xee, 0xbf, 0x94, 0x88, 0xd7, 0xfc, 0x60, 0x54,
0x6d, 0x8d, 0x77, 0xee, 0xb0, 0x70, 0x81, 0xbf, 0x3b, 0x2a, 0x16, 0x06, 0x49,
0x38, 0x1d, 0x7d, 0x9e, 0x43, 0x82, 0xfe, 0xea, 0x4f, 0x46, 0x65, 0x20, 0xbe,
0xc2, 0xf5, 0x8a, 0xd5, 0x0c, 0xf2, 0xb5, 0x6b, 0x1b, 0xe0, 0x93, 0x8e, 0xd1,
0xb5, 0x33, 0xea, 0x91, 0x3f, 0xd9, 0xe9, 0x4d, 0x05, 0xa3, 0x66, 0x97, 0x5d,
0x01, 0x2a, 0xbd, 0xc9, 0xf0, 0x20, 0x26, 0x36, 0x27, 0xe8, 0x85, 0xac, 0x6b,
0xaf, 0xc3, 0xeb, 0x1f, 0xa2, 0x99, 0x2e, 0xfe, 0xa8, 0xbf, 0x6b, 0xb3, 0xe8,
0x05, 0x99, 0xde, 0x50, 0x92, 0x8f, 0x7a, 0x8d, 0xce, 0xf3, 0x7d, 0xaf, 0xf0,
0xa8, 0x09, 0xce, 0xbd, 0x28, 0x08, 0x20, 0xee, 0x56, 0xe4, 0xa3, 0x37, 0x29,
0xff, 0xa1, 0x68, 0x91, 0x00, 0x3f, 0x95, 0x99, 0x92, 0x2f, 0x3b, 0x5f, 0xb5,
0x7c, 0x6a, 0x77, 0x05, 0x37, 0xcb, 0x34, 0x95, 0x4f, 0x40, 0xe9, 0x5e, 0x85,
0xa9, 0x9d, 0xbd, 0xbf, 0xd9, 0xf1, 0xba, 0x0e, 0x38, 0x6e, 0xb6, 0xdb, 0x1e,
0x98, 0x0e, 0x37, 0x0b, 0x12, 0x8f, 0x87, 0xb7, 0xc2, 0xb7, 0xd8, 0xeb, 0x3f,
0x56, 0xc8, 0xe5, 0x54, 0x28, 0x57, 0x9b, 0x35, 0x89, 0x7f, 0x3c, 0x3b, 0x76,
0xaf, 0x79, 0xd3, 0x67, 0x6e, 0xd9, 0xb1, 0xf6, 0x4c, 0xb4, 0x5e, 0x8e, 0xf5,
0xc1, 0x80, 0x37, 0x29, 0x4a, 0x44, 0xbd, 0x98, 0xa5, 0xd1, 0xd3, 0xdd, 0x4b,
0x1a, 0x3c, 0x88, 0x1d, 0x73, 0x88, 0x93, 0xb9, 0xe8, 0x7d, 0x31, 0x09, 0x4b,
0x22, 0xaf, 0xc7, 0x31, 0x6b, 0x34, 0xb2, 0xc8, 0xdc, 0x1e, 0x55, 0xdb, 0x02,
0x4e, 0xbe, 0xfe, 0x21, 0xe9, 0x76, 0xba, 0xa4, 0xa7, 0xc1, 0xcc, 0xf5, 0x24,
0xb5, 0x34, 0x32, 0xae, 0x5b, 0xb0, 0xf8, 0xa3, 0x6e, 0xb5, 0x1b, 0xa2, 0xd6,
0x67, 0x98, 0x3c, 0xdc, 0x32, 0x1b, 0x0d, 0x73, 0xdd, 0xf6, 0xeb, 0x49, 0x36,
0x24, 0xa6, 0x10, 0xdd, 0x15, 0x68, 0x5f, 0x1e, 0xfa, 0x18, 0xcf, 0x49, 0xf7,
0x37, 0x54, 0xfa, 0x20, 0x42, 0xb7, 0x9d, 0xd6, 0x17, 0x85, 0x18, 0xc9, 0x1a,
0x5f, 0xd8, 0x88, 0x37, 0x69, 0x8e, 0xfc, 0xde, 0xf5, 0x16, 0xfd, 0x0f, 0xf0,
0x7d, 0x57, 0xc3, 0xd9, 0x24, 0xcd, 0x24, 0x66, 0x29, 0x2d, 0x78, 0x04, 0x0a,
0x3e, 0xc1, 0xa4, 0xf8, 0x29, 0x02, 0xc9, 0x8b, 0x5f, 0x06, 0x74, 0x23, 0xef,
0xc4, 0xdb, 0x63, 0x58, 0xd3, 0x65, 0x45, 0xf8, 0x95, 0xf6, 0x0b, 0xae, 0x52,
0x0e, 0x17, 0xb3, 0x76, 0x64, 0x8a, 0xf0, 0x8b, 0xc0, 0xe0, 0x9b, 0x99, 0xac,
0x97, 0x26, 0xe3, 0xd7, 0xc3, 0x2f, 0x24, 0x24, 0x61, 0x4a, 0xd0, 0x55, 0x2b,
0x79, 0xd5, 0x43, 0xc5, 0xa2, 0x4c, 0xb8, 0x61, 0x8a, 0x5e, 0xbc, 0x20, 0xc7,
0x0b, 0xb9, 0xa7, 0x7c, 0xf6, 0xb9, 0xfd, 0xf9, 0x76, 0x97, 0xff, 0xaa, 0x6f,
0x4b, 0x1f, 0xe9, 0x94, 0x18, 0xcf, 0x89, 0x8f, 0x25, 0xa1, 0x6a, 0x5f, 0xb6,
0x58, 0xd4, 0x22, 0xf3, 0x3d, 0xdd, 0x1b, 0x8b, 0xb8, 0xc1, 0x6d, 0xe8, 0x2c,
0x42, 0xa4, 0x2d, 0xec, 0x8f, 0xbe, 0x53, 0x2d, 0xb2, 0x22, 0x3d, 0xe8, 0xea,
0xc2, 0x60, 0x28, 0x48, 0x8a, 0x2d, 0x1f, 0x04, 0x93, 0xc7, 0x07, 0x55, 0x66,
0xf7, 0xb6, 0xbf, 0x42, 0x66, 0x1f, 0x5e, 0x8b, 0x99, 0x5f, 0xb3, 0x49, 0x44,
0x8f, 0x3f, 0x79, 0x51, 0x8d, 0xb7, 0x82, 0x56, 0x3b, 0x3b, 0x86, 0x61, 0xa1,
0xf9, 0xec, 0x5c, 0x88, 0x96, 0x07, 0x2f, 0xc3, 0x78, 0xd4, 0x15, 0xb9, 0x4b,
0x5c, 0xb7, 0x7c, 0xdc, 0x91, 0x65, 0x98, 0xaa, 0xfc, 0x4e, 0xfb, 0xfd, 0xaa,
0x18, 0x29, 0x67, 0x93, 0x31, 0xcc, 0x8a, 0x17, 0x2a, 0xba, 0x1c, 0x8f, 0x37,
0x4c, 0x27, 0xe1, 0x16, 0xe4, 0xab, 0x88, 0xcb, 0x4b, 0x24, 0xf3, 0x51, 0xbf,
0xed, 0xc1, 0xad, 0x81, 0x25, 0xfc, 0x6c, 0xc4, 0x2d, 0x08, 0xbd, 0x52, 0xc5,
0x76, 0x70, 0xb5, 0xc5, 0xe0, 0x1c, 0x12, 0x97, 0xf5, 0xdd, 0x8a, 0xb7, 0xc4,
0x74, 0x1b, 0x2a, 0xc2, 0x31, 0x78, 0xb6, 0xd0, 0x9b, 0x7c, 0x09, 0x23, 0xd5,
0x8b, 0xe2, 0xfc, 0x11, 0x12, 0x82, 0xda, 0xcf, 0x68, 0x0e, 0x22, 0x93, 0xd7,
0x9a, 0xd7, 0x57, 0xca, 0xce, 0xee, 0x2c, 0x14, 0x99, 0xca, 0x81, 0xaf, 0x91,
0x9f, 0x0d, 0xfa, 0x8e, 0x54, 0x38, 0x20, 0x56, 0xcc, 0xfb, 0x82, 0xc7, 0x9e,
0x8f, 0x94, 0x13, 0xe7, 0xb1, 0xd4, 0x93, 0x4e, 0x7e, 0x8e, 0x5c, 0x64, 0x47,
0xc2, 0xe5, 0x07, 0xae, 0x3b, 0x78, 0x21, 0x44, 0x3a, 0x67, 0x0e, 0x0c, 0xb7,
0x30, 0x3c, 0xd6, 0x1b, 0x93, 0x9f, 0x59, 0x6c, 0x61, 0x8d, 0x6a, 0xb5, 0xfa,
0x05, 0x1f, 0xd4, 0xa7, 0x25, 0x5e, 0x99, 0x58, 0xd6, 0xa0, 0xf7, 0x70, 0xa2,
0xe0, 0xdc, 0xae, 0x91, 0xcb, 0x4d, 0x2b, 0xc2, 0x24, 0xbd, 0xe4, 0x9a, 0x56,
0x14, 0xc8, 0x56, 0xea, 0x7f, 0xba, 0xdf, 0xbb, 0x7e, 0x78, 0xab, 0x1d, 0xdd,
0xf3, 0x92, 0xef, 0x9a, 0xd8, 0x0e, 0x58, 0x1e, 0x99, 0xa9, 0x43, 0x6f, 0x0d,
0x4a, 0xcf, 0xcf, 0x55, 0xa0, 0x40, 0xa4, 0xe3, 0xea, 0xc7, 0x63, 0xde, 0xbd,
0x70, 0xbb, 0x9c, 0xb4, 0xc7, 0x9c, 0x59, 0xba, 0xa7, 0x79, 0xa3, 0x23, 0xed,
0x93, 0xd1, 0xe0, 0xb6, 0x76, 0x23, 0x07, 0xea, 0x9b, 0x52, 0x8a, 0xa6, 0xb9,
0xc2, 0x98, 0x40, 0xac, 0x40, 0x23, 0xa3, 0x9b, 0x9f, 0xc9, 0x32, 0xdc, 0x24,
0x7d, 0xd7, 0x55, 0xca, 0xb7, 0x5c, 0x78, 0x4e, 0x3e, 0xdf, 0x8e, 0x37, 0xcc,
0x13, 0x74, 0xbe, 0x5b, 0xf8, 0x93, 0xbd, 0x44, 0xb7, 0x15, 0x9a, 0x4f, 0x95,
0xa7, 0xa2, 0x24, 0x0a, 0x93, 0x65, 0x28, 0x16, 0x4b, 0x54, 0x7d, 0xcc, 0xab,
0xb2, 0x23, 0xaf, 0x6f, 0x54, 0xfd, 0x18, 0x6a, 0x8d, 0xa7, 0x74, 0xb7, 0x43,
0x91, 0xab, 0xda, 0xe8, 0x25, 0xa6, 0xdf, 0x7d, 0x10, 0x75, 0xb5, 0xdc, 0x78,
0x52, 0xb8, 0x4f, 0xf2, 0xf1, 0x45, 0xfb, 0x4e, 0x34, 0xbe, 0xe3, 0x17, 0xb7,
0x16, 0x36, 0xa8, 0xb4, 0xc4, 0x93, 0x3f, 0xe7, 0x5a, 0x70, 0xa6, 0xc2, 0xf4,
0xa5, 0x2d, 0xf2, 0x94, 0xdf, 0x1c, 0xc9, 0x78, 0x04, 0x3f, 0x9d, 0x29, 0xda,
0xb0, 0x0b, 0x6a, 0x1d, 0x51, 0xe1, 0xc5, 0x17, 0xc2, 0xf6, 0x7c, 0xd4, 0x18,
0x8f, 0x26, 0x61, 0xcc, 0x0e, 0xe1, 0x11, 0x98, 0x65, 0x24, 0xc4, 0xa2, 0x58,
0xca, 0x99, 0x5b, 0xb2, 0x3f, 0x7f, 0x47, 0xf3, 0xbe, 0x87, 0xed, 0xa8, 0xd3,
0x6e, 0xed, 0x45, 0x72, 0x32, 0x9c, 0xaa, 0x91, 0xa2, 0x1a, 0x9a, 0x8c, 0x38,
0x2a, 0xdd, 0x17, 0x4e, 0xcb, 0x3d, 0x9d, 0x11, 0xfc, 0xe3, 0x70, 0x01, 0x5e,
0x89, 0x67, 0x1d, 0xf2, 0x4d, 0x86, 0x05, 0xbf, 0xe4, 0xb8, 0x15, 0xee, 0x8c,
0x54, 0xed, 0x84, 0x9d, 0xb3, 0x71, 0x98, 0x34, 0x69, 0xa9, 0xc5, 0xa0, 0x3f,
0x31, 0x6f, 0x45, 0x16, 0x6d, 0x94, 0x5f, 0x65, 0xe4, 0xa5, 0xa3, 0x78, 0x6d,
0xaf, 0x69, 0xfb, 0xda, 0x31, 0x39, 0xdf, 0x7b, 0x7c, 0xf2, 0x0c, 0xa9, 0xf6,
0x2f, 0xcc, 0x12, 0xad, 0x62, 0x7f, 0x91, 0x2a, 0x50, 0x1e, 0xd5, 0xb1, 0x14,
0xb1, 0xbe, 0x39, 0x28, 0x3f, 0xcd, 0x4d, 0xbd, 0xf4, 0xf0, 0xb8, 0x9d, 0x71,
0xf1, 0x96, 0xef, 0xea, 0x8f, 0x4e, 0x59, 0xbb, 0xc3, 0xfc, 0xce, 0xf8, 0x1b,
0xf4, 0xed, 0x14, 0x0e, 0xb7, 0x41, 0xba, 0xfe, 0x70, 0x19, 0xaa, 0x0c, 0x2b,
0x49, 0x07, 0xaf, 0x9c, 0x37, 0x79, 0xb7, 0xca, 0x16, 0xcf, 0x0f, 0xf5, 0xb8,
0xc2, 0xa2, 0x0c, 0x9f, 0x56, 0xd4, 0xc3, 0xfd, 0x5e, 0x66, 0x38, 0x8a, 0xd8,
0x81, 0x7a, 0x63, 0xbc, 0x10, 0xd3, 0xa6, 0x6a, 0x5c, 0xb6, 0xb2, 0x25, 0x33,
0xe3, 0xb0, 0xd9, 0x5b, 0x90, 0x06, 0xd7, 0xcf, 0x68, 0x9c, 0x44, 0x62, 0x09,
0xa9, 0xd0, 0xa0, 0xea, 0x1c, 0x48, 0xe8, 0x0d, 0x57, 0x6b, 0xe4, 0x39, 0xf3,
0x03, 0x72, 0x45, 0x13, 0x26, 0x79, 0x71, 0x06, 0xfb, 0x0a, 0x38, 0x21, 0x3b,
0x27, 0xf8, 0xac, 0x17, 0x78, 0x13, 0x84, 0xfc, 0x34, 0x7c, 0xf5, 0x43, 0x93,
0x70, 0xad, 0xc2, 0xeb, 0x04, 0xb8, 0xf0, 0x53, 0x09, 0xf1, 0x52, 0x45, 0xeb,
0xb5, 0x0f, 0x1e, 0x20, 0x8e, 0xfe, 0xdd, 0xb0, 0x6f, 0x00, 0xcf, 0xea, 0xf0,
0xfc, 0x52, 0x9b, 0x13, 0xf2, 0xf4, 0x67, 0x1e, 0xc2, 0x29, 0x12, 0xd3, 0x65,
0xe8, 0xe6, 0x1f, 0x71, 0x4b, 0xdc, 0x85, 0xca, 0xf3, 0xbd, 0x5e, 0xc4, 0x86,
0x1a, 0x4a, 0x44, 0xbf, 0x64, 0x98, 0x0d, 0x1e, 0x16, 0xa1, 0xe1, 0x56, 0xfb,
0xfe, 0xa2, 0x5b, 0xd5, 0xeb, 0x23, 0x13, 0x90, 0xa4, 0x98, 0xea, 0x82, 0xaa,
0x2b, 0x96, 0xc2, 0xce, 0x17, 0x47, 0x54, 0xeb, 0x19, 0x53, 0x92, 0x6d, 0xda,
0xaf, 0xbb, 0x30, 0xb7, 0xac, 0x37, 0x13, 0xef, 0x0f, 0x4d, 0x4a, 0x3f, 0x23,
0x6f, 0x92, 0x91, 0xe6, 0x48, 0x5e, 0x5d, 0xb3, 0x50, 0x6c, 0x3c, 0xd8, 0x37,
0x0c, 0x27, 0x7e, 0x5e, 0x6a, 0x85, 0x88, 0x61, 0xf8, 0x3f, 0x41, 0xec, 0xdf,
0xd3, 0xa1, 0x68, 0xa8, 0x41, 0xcb, 0x14, 0x22, 0x52, 0xe1, 0x75, 0xa1, 0x58,
0xe6, 0xa1, 0x0f, 0x69, 0xdc, 0xdc, 0x38, 0x88, 0x40, 0xe1, 0x42, 0x5b, 0x52,
0x55, 0x81, 0x94, 0x78, 0x44, 0x79, 0xa1, 0xe4, 0xb7, 0x72, 0x0f, 0x24, 0x6d,
0x9f, 0x30, 0x1e, 0xe4, 0xcb, 0x34, 0x72, 0xd3, 0x50, 0x67, 0x54, 0x2d, 0x69,
0xe7, 0x84, 0xc4, 0x04, 0xf2, 0xa0, 0x05, 0x1f, 0x8c, 0xa2, 0xef, 0x34, 0x18,
0x0c, 0xab, 0xbe, 0x5a, 0x15, 0x48, 0x3e, 0x9a, 0xc3, 0xfb, 0x48, 0xa4, 0xfe,
0xdc, 0x95, 0x21, 0xdd, 0x92, 0x55, 0xaf, 0x5b, 0x11, 0x68, 0xe0, 0xd4, 0x81,
0xda, 0xdf, 0xb3, 0x6f, 0x0d, 0x99, 0x58, 0x9c, 0x6c, 0xd3, 0x10, 0x8e, 0xd9,
0x90, 0xd1, 0x83, 0x67, 0x51, 0xa4, 0x65, 0x02, 0x25, 0x03, 0x70, 0x55, 0x28,
0xf5, 0x46, 0xd2, 0xef, 0x2e, 0xbb, 0x52, 0x8e, 0x25, 0x89, 0x3c, 0xb5, 0x46,
0x24, 0xa3, 0x8e, 0xfe, 0x54, 0x74, 0xfc, 0x70, 0x9e, 0xd0, 0xd7, 0xed, 0x69,
0xce, 0xf8, 0x9c, 0x81, 0xd7, 0x5b, 0x7c, 0x45, 0xdf, 0x9e, 0xee, 0x61, 0xe5,
0x88, 0xdb, 0x74, 0xa0, 0x49, 0x73, 0x54, 0xa0, 0xeb, 0x39, 0xbe, 0x59, 0x93,
0xa7, 0xb7, 0x46, 0x7f, 0x35, 0xef, 0x86, 0xb7, 0xcc, 0x77, 0xd9, 0x2a, 0xb3,
0x67, 0x66, 0xaf, 0x2d, 0x51, 0x4c, 0xf3, 0x8a, 0xc0, 0xf7, 0x03, 0x83, 0xae,
0x28, 0x95, 0x30, 0x57, 0x49, 0x3c, 0xf6, 0x91, 0xf5, 0xf0, 0xb7, 0x1a, 0x0f,
0x32, 0xdd, 0x8a, 0xa8, 0x59, 0x8c, 0x49, 0x56, 0x70, 0x1d, 0x8f, 0x74, 0x08,
0x7d, 0xdb, 0xfa, 0x4c, 0xe1, 0xe5, 0x61, 0xe7, 0x97, 0xe8, 0xec, 0x41, 0xb3,
0x42, 0xee, 0xb9, 0x18, 0x43, 0x8f, 0xfd, 0x9f, 0xb9, 0x2e, 0x27, 0x9f, 0xd4,
0xf2, 0x91, 0x6b, 0x65, 0xe6, 0x72, 0xa0, 0xf8, 0x42, 0xca, 0x96, 0x77, 0xd9,
0x78, 0xca, 0x9d, 0xb8, 0x32, 0xad, 0xee, 0x71, 0x60, 0x6c, 0x45, 0xe9, 0x9a,
0xb2, 0xcb, 0x8f, 0x16, 0x47, 0x68, 0xe6, 0xfe, 0xd5, 0xf1, 0xe3, 0xf7, 0x15,
0xed, 0x08, 0xab, 0x44, 0x4e, 0x24, 0x5e, 0xe9, 0x74, 0xa6, 0x20, 0xf2, 0xc7,
0x20, 0x8d, 0x27, 0xd7, 0xb3, 0x03, 0xf1, 0x6a, 0x51, 0xb9, 0xb4, 0x67, 0x0f,
0x6c, 0x82, 0x61, 0x75, 0x2a, 0xdc, 0x30, 0x2d, 0x1d, 0x11, 0x16, 0x88, 0x95,
0xf8, 0x7e, 0xb4, 0x4e, 0xb5, 0x7e, 0xd3, 0x83, 0x42, 0x4c, 0x79, 0x91, 0x9a,
0x51, 0x34, 0xcb, 0x07, 0x8e, 0xa2, 0x71, 0x73, 0x9b, 0x0f, 0x9a, 0x1a, 0x61,
0x23, 0xfb, 0x99, 0x4b, 0xd2, 0xb4, 0xcb, 0xa2, 0x31, 0xa7, 0x14, 0x28, 0x31,
0xa6, 0xfb, 0x56, 0xc7, 0x7c, 0x9b, 0xcb, 0x2e, 0x3b, 0xf6, 0xa8, 0x25, 0x6c,
0x24, 0x06, 0x66, 0xf1, 0xd1, 0x12, 0x11, 0xbb, 0x6b, 0x3d, 0xd1, 0x20, 0x91,
0xa0, 0xd7, 0x60, 0xd6, 0x46, 0x55, 0x5f, 0xac, 0xd6, 0xe9, 0xfe, 0xcb, 0x53,
0xaf, 0xe1, 0x40, 0xd7, 0x55, 0xf6, 0x1b, 0x56, 0xdb, 0x9f, 0xcf, 0x93, 0xd1,
0xaf, 0xb8, 0xbd, 0xdf, 0x03, 0x03, 0x8f, 0x31, 0x1e, 0x83, 0x5a, 0xb9, 0x24,
0xf1, 0xe9, 0x73, 0xbd, 0xfa, 0xd6, 0x0b, 0x53, 0x6e, 0x16, 0x14, 0x62, 0x82,
0x5f, 0x71, 0xd6, 0xe3, 0xb5, 0x27, 0x86, 0xf7, 0x8f, 0x09, 0xbd, 0x3b, 0x56,
0x18, 0x47, 0x0a, 0xb6, 0x96, 0x25, 0xa0, 0xa9, 0x18, 0xb1, 0xdd, 0xe8, 0x71,
0x43, 0x45, 0x04, 0x42, 0xf5, 0x9a, 0xa6, 0xd0, 0x66, 0x49, 0xec, 0x25, 0xda,
0xcf, 0x87, 0x58, 0x20, 0x7e, 0x71, 0xcb, 0x2f, 0x83, 0x67, 0xcb, 0xf7, 0xd6,
0x87, 0xc2, 0x5b, 0x32, 0xef, 0x33, 0x7a, 0x76, 0x3e, 0x58, 0x17, 0x4e, 0x12,
0x07, 0xf0, 0xc2, 0x9a, 0x8c, 0x91, 0x69, 0x7b, 0x52, 0xaf, 0x50, 0x92, 0x89,
0x00, 0x43, 0x4b, 0xc1, 0x02, 0x6e, 0x79, 0x0e, 0x42, 0x99, 0x05, 0x81, 0x68,
0x13, 0xf2, 0xed, 0x44, 0xd0, 0x14, 0x3e, 0xc0, 0x53, 0x21, 0x7d, 0x55, 0x12,
0x3d, 0xd4, 0x01, 0xcd, 0x9e, 0xe8, 0x7a, 0x02, 0xaf, 0x3f, 0x22, 0xa9, 0x64,
0xa1, 0xd1, 0x85, 0x96, 0x19, 0x98, 0xfd, 0x80, 0x99, 0x1c, 0x58, 0xec, 0x9d,
0x51, 0x68, 0x0e, 0x46, 0xd3, 0x37, 0xe4, 0x55, 0xa1, 0xeb, 0x87, 0xf0, 0x3d,
0x79, 0x7f, 0xba, 0x23, 0xed, 0x74, 0xb0, 0x42, 0xe0, 0x4f, 0x31, 0xb0, 0x72,
0x22, 0x91, 0x8b, 0x2d, 0xa3, 0x50, 0x10, 0x86, 0x7e, 0x12, 0x25, 0xe1, 0xf9,
0x73, 0x84, 0x03, 0xfa, 0xa4, 0x3f, 0xc9, 0x5a, 0xaa, 0x67, 0xaf, 0xce, 0x33,
0x4c, 0xcc, 0xc6, 0xf8, 0xe5, 0x1c, 0x77, 0xb8, 0xec, 0xac, 0x3a, 0x16, 0xac,
0x51, 0xc0, 0x6b, 0x6a, 0x42, 0x98, 0x0b, 0xe9, 0xbb, 0x63, 0xff, 0x4b, 0xc0,
0xdf, 0x2f, 0x97, 0xbc, 0x64, 0x15, 0xf9, 0x61, 0xc6, 0x05, 0xc1, 0x56, 0xc8,
0x3b, 0x92, 0xa2, 0x5e, 0xb0, 0xcb, 0x62, 0xe3, 0x4b, 0xb5, 0xa8, 0x25, 0xe9,
0x54, 0xc1, 0xaa, 0x27, 0xea, 0xd5, 0xe7, 0x3c, 0xfc, 0x90, 0x29, 0x95, 0x7f,
0xd3, 0xf7, 0x80, 0x9f, 0x27, 0x92, 0xa4, 0xc7, 0x68, 0x25, 0x0a, 0xd4, 0xfb,
0x38, 0x32, 0x3b, 0x02, 0x5f, 0xb5, 0x4f, 0xa7, 0xdf, 0x99, 0xc3, 0xbc, 0x0f,
0x16, 0x2a, 0xef, 0x9a, 0xe7, 0xbf, 0x3c, 0xbc, 0x96, 0x1a, 0x86, 0xa9, 0xdb,
0x1f, 0x6f, 0x96, 0xac, 0x8e, 0x4e, 0x47, 0xa2, 0x51, 0x90, 0x2d, 0xf1, 0xcc,
0xc4, 0xf7, 0xed, 0x73, 0x3b, 0x9f, 0x25, 0x23, 0x7f, 0x41, 0xfe, 0x91, 0xee,
0xed, 0xde, 0xc5, 0x70, 0xd2, 0x7e, 0x6b, 0x96, 0xad, 0xe7, 0xa0, 0x5a, 0xbf,
0x38, 0xd8, 0x94, 0xd9, 0x7a, 0xa2, 0xe3, 0x8a, 0x83, 0x03, 0x02, 0xae, 0x26,
0xde, 0x6a, 0x3f, 0x5c, 0x2b, 0xe3, 0x76, 0xd3, 0xe9, 0xb6, 0xb3, 0xd2, 0xf3,
0x13, 0xce, 0xea, 0x55, 0x57, 0x1b, 0x76, 0x55, 0xc6, 0x21, 0x75, 0x49, 0xb4,
0x6a, 0xe1, 0x4f, 0x16, 0x75, 0x18, 0x54, 0x7f, 0xb7, 0xe8, 0xe5, 0x72, 0x2f,
0x66, 0x0d, 0x95, 0x76, 0x29, 0x64, 0xdd, 0xcb, 0x44, 0xdc, 0xb2, 0x58, 0xe1,
0xcc, 0x6c, 0x34, 0xc7, 0x17, 0x23, 0xf3, 0x33, 0x1d, 0x1e, 0x18, 0xec, 0x41,
0xb2, 0x5c, 0xd7, 0xb2, 0x8a, 0x03, 0xd3, 0x7a, 0xc5, 0x51, 0x98, 0xfd, 0xd1,
0x6a, 0x41, 0xd0, 0x89, 0xda, 0x1d, 0x3d, 0xda, 0x36, 0xb2, 0xe6, 0xd7, 0xb7,
0x96, 0xb5, 0xc0, 0x73, 0x5f, 0xe5, 0xb5, 0x02, 0x93, 0x88, 0x03, 0xcd, 0xc6,
0x43, 0xd7, 0x3c, 0xc4, 0xfc, 0xf6, 0x44, 0x2f, 0x6d, 0xd4, 0xcd, 0x37, 0x9b,
0x3c, 0xed, 0x93, 0x06, 0xe7, 0x30, 0x7c, 0x4b, 0x43, 0xf9, 0x34, 0x5e, 0x59,
0x21, 0xe6, 0xef, 0xc1, 0x6b, 0xd9, 0x2b, 0xfc, 0x35, 0x26, 0xa8, 0x68, 0xd3,
0x7c, 0x9e, 0xc5, 0x15, 0xf3, 0x30, 0xb4, 0xd9, 0x23, 0x3f, 0x12, 0x41, 0x8b,
0x23, 0x6a, 0x50, 0x7e, 0xa6, 0x7d, 0x67, 0x9d, 0x98, 0xd5, 0xd2, 0xe0, 0xfd,
0x99, 0x76, 0xc8, 0x3c, 0x12, 0x3c, 0x8a, 0x2e, 0x39, 0x8b, 0x0a, 0xb8, 0xb7,
0x22, 0x56, 0xd3, 0xad, 0x1f, 0xcd, 0xd2, 0xcf, 0x4f, 0x74, 0xaf, 0x73, 0xd6,
0x34, 0xd7, 0x8b, 0xfa, 0xcd, 0x59, 0xa3, 0x88, 0x1d, 0xbd, 0x3f, 0xec, 0x90,
0xe3, 0x75, 0xf5, 0xee, 0x7d, 0x4d, 0xb6, 0x08, 0xa2, 0x0d, 0xdf, 0x0e, 0x17,
0xb3, 0x8c, 0x44, 0xe3, 0xe9, 0x89, 0xa3, 0xb3, 0x24, 0x50, 0xa1, 0xed, 0x25,
0x22, 0xb4, 0x9e, 0x90, 0xe4, 0x6b, 0x36, 0x5c, 0x8f, 0x15, 0x99, 0x46, 0x9d,
0x0c, 0x73, 0xd3, 0x40, 0x6e, 0xe0, 0x9f, 0x31, 0x06, 0x5e, 0x61, 0xc8, 0x8f,
0xc6, 0xe7, 0x73, 0x0d, 0xae, 0x08, 0xb7, 0x22, 0xa3, 0x6d, 0xb0, 0xbc, 0xdc,
0xb9, 0xb5, 0x97, 0x17, 0x78, 0x32, 0x90, 0x63, 0xa7, 0x5a, 0xe5, 0x83, 0xfc,
0x2d, 0x25, 0x8b, 0xb2, 0x5e, 0x21, 0x69, 0x0a, 0xbe, 0x61, 0x98, 0x99, 0x2f,
0xc9, 0xe2, 0x54, 0xac, 0x4b, 0x11, 0xe5, 0x88, 0xb2, 0x0d, 0x16, 0x12, 0x21,
0xec, 0x2f, 0xac, 0x89, 0xeb, 0x6d, 0xc7, 0x9d, 0xf5, 0xda, 0xf9, 0xbb, 0x3a,
0x96, 0x28, 0xf9, 0x90, 0x99, 0x28, 0x57, 0x36, 0x8a, 0x48, 0xe5, 0x48, 0x1f,
0xb4, 0xde, 0xfb, 0x86, 0xb4, 0x7b, 0xf6, 0x37, 0x86, 0x15, 0x3b, 0x44, 0xe5,
0x43, 0x2a, 0xe0, 0x66, 0xdc, 0xa1, 0x1a, 0xbf, 0x32, 0xc5, 0x20, 0x64, 0x55,
0x74, 0x35, 0x1e, 0x9f, 0x1b, 0xdf, 0x51, 0xf9, 0xeb, 0xfb, 0x5d, 0xfd, 0x37,
0x62, 0xb7, 0xbe, 0xaf, 0xc7, 0xe3, 0x0c, 0x84, 0xae, 0x6d, 0xe7, 0xc5, 0x79,
0xc1, 0x21, 0x9e, 0x7c, 0x77, 0x44, 0xdb, 0x41, 0xdf, 0x1b, 0xe9, 0x07, 0x73,
0xd9, 0x53, 0xa6, 0x3e, 0x87, 0xbb, 0x79, 0x51, 0x74, 0xab, 0x65, 0xc1, 0x0d,
0x68, 0xdb, 0x5f, 0x2a, 0xdf, 0xea, 0x85, 0xa6, 0x9f, 0xdd, 0x7f, 0x8a, 0xf8,
0xfb, 0x93, 0x4c, 0x29, 0x65, 0xb3, 0x20, 0x56, 0x66, 0x1a, 0xfe, 0x22, 0xa5,
0x02, 0x5f, 0x75, 0xdf, 0x7a, 0x10, 0x0f, 0xa5, 0x47, 0xa1, 0x88, 0xd8, 0xe8,
0x20, 0xd0, 0xa3, 0x53, 0xb3, 0x2d, 0xc6, 0x1a, 0x4f, 0x8c, 0x63, 0x44, 0x5c,
0xe9, 0x1f, 0xe3, 0x30, 0xac, 0x25, 0x19, 0xa7, 0xdf, 0xe1, 0x00, 0xab, 0x13,
0x3d, 0xb7, 0x1a, 0x4a, 0x91, 0x63, 0x85, 0x21, 0x6d, 0x8b, 0x24, 0x04, 0xfa,
0x11, 0xab, 0x14, 0x52, 0x7c, 0xaf, 0xfe, 0x96, 0x57, 0x31, 0x9e, 0x48, 0x38,
0x18, 0xf2, 0xd3, 0xc1, 0x77, 0x8a, 0xa5, 0xa7, 0x6c, 0xac, 0x31, 0x54, 0x02,
0xab, 0xe3, 0xdf, 0xe2, 0x31, 0xe6, 0x87, 0x64, 0xa1, 0xea, 0x9f, 0x03, 0xcc,
0x49, 0x71, 0x2c, 0x1e, 0x2c, 0x8e, 0xd8, 0xfc, 0xc9, 0x0d, 0xef, 0xce, 0x4e,
0xe9, 0xf9, 0x9d, 0x0e, 0xe7, 0x7c, 0xdc, 0xf2, 0x69, 0x5d, 0xb9, 0xca, 0x23,
0xa3, 0x10, 0x35, 0x7f, 0x0b, 0x92, 0x1d, 0x40, 0x1e, 0xde, 0xf6, 0xbd, 0xcf,
0xaf, 0x22, 0x1f, 0xaa, 0x4d, 0x5d, 0x1b, 0xfe, 0xa5, 0x79, 0xaf, 0x78, 0xf2,
0x09, 0x7e, 0x69, 0x7b, 0xbd, 0x63, 0xdf, 0x47, 0x93, 0xc4, 0x3c, 0x44, 0xd4,
0xa3, 0x94, 0xf4, 0x28, 0x3c, 0xd7, 0x1a, 0x6a, 0x45, 0x7a, 0x29, 0x1c, 0x75,
0x5b, 0xff, 0xca, 0xc3, 0x8c, 0x41, 0x78, 0x12, 0x32, 0xfd, 0xe0, 0xa8, 0xe3,
0xa1, 0xd1, 0x65, 0x87, 0x17, 0x1b, 0xe2, 0x11, 0xb0, 0x69, 0xd8, 0xd4, 0x86,
0xd9, 0x62, 0x45, 0x1a, 0x1c, 0xe1, 0xac, 0x10, 0x71, 0xae, 0x42, 0x70, 0x5a,
0x30, 0xce, 0x1a, 0x6e, 0x91, 0x70, 0x55, 0x6c, 0x5a, 0x1f, 0x4f, 0x1c, 0x04,
0xd3, 0x05, 0x7b, 0xa4, 0xbf, 0x28, 0xb6, 0xdc, 0x9e, 0xe3, 0x4f, 0x36, 0x89,
0x59, 0x96, 0xc4, 0x73, 0x9d, 0x85, 0x5f, 0x18, 0xaa, 0x4d, 0xf2, 0xcf, 0x79,
0xf1, 0x85, 0xfd, 0xda, 0xa8, 0x7c, 0xcf, 0xea, 0xcc, 0x06, 0x4c, 0xba, 0x11,
0x37, 0x85, 0x90, 0x68, 0xd4, 0xa9, 0x59, 0xac, 0x08, 0x74, 0x41, 0x99, 0x17,
0xb2, 0x24, 0x5b, 0x24, 0xbe, 0x88, 0xbf, 0x5c, 0xdb, 0x54, 0x89, 0x22, 0x37,
0xd2, 0x29, 0x68, 0x9b, 0x4d, 0x46, 0x6f, 0x3d, 0x8b, 0xc5, 0xf3, 0x5e, 0x84,
0x89, 0x3f, 0x96, 0x9e, 0xdc, 0x55, 0x15, 0x81, 0xc6, 0x55, 0xe9, 0x62, 0xaf,
0xb5, 0xdb, 0x8b, 0x31, 0xee, 0x08, 0x2b, 0xd2, 0xf9, 0xd7, 0x64, 0x16, 0x7c,
0x4f, 0x56, 0xfd, 0x32, 0xe2, 0x86, 0xc0, 0x77, 0xd8, 0x19, 0x71, 0xc2, 0x45,
0x31, 0xc1, 0x05, 0x71, 0x76, 0xa4, 0x52, 0xb4, 0xf1, 0x56, 0xcc, 0xca, 0x67,
0xbf, 0x8e, 0xfc, 0x3d, 0x50, 0x81, 0x4e, 0x19, 0xcb, 0x6d, 0x6f, 0x12, 0x50,
0xa7, 0x5b, 0x26, 0x1d, 0x1c, 0x4b, 0xac, 0xde, 0xe2, 0xe9, 0xb2, 0xa8, 0x73,
0xd6, 0xc2, 0xe1, 0xbd, 0xf8, 0xa8, 0xe4, 0xb5, 0xf4, 0xc9, 0xdd, 0x8f, 0x9e,
0xa4, 0x9a, 0xf5, 0x96, 0x91, 0xfb, 0x75, 0xfe, 0x1b, 0xed, 0x07, 0x9b, 0x23,
0xb7, 0xbc, 0x59, 0x60, 0xa7, 0xd9, 0x4f, 0xec, 0xf5, 0xde, 0x9e, 0xca, 0x4b,
0x44, 0x9a, 0x2f, 0x3c, 0x0e, 0xfb, 0x8b, 0x8e, 0x5f, 0x7c, 0x7e, 0xcd, 0xf5,
0xea, 0xb4, 0xe9, 0x17, 0x77, 0x12, 0x6e, 0x92, 0x45, 0xf5, 0xa4, 0x22, 0x28,
0x11, 0xb5, 0x97, 0x42, 0xb5, 0x47, 0x86, 0x91, 0x7c, 0x6c, 0xf4, 0x80, 0x65,
0x0b, 0x7a, 0xfd, 0x31, 0xb5, 0xf8, 0xf2, 0x93, 0x3f, 0x23, 0x8a, 0x90, 0xf6,
0x00, 0x9f, 0x85, 0x72, 0xb7, 0x36, 0xc7, 0x62, 0xcc, 0x03, 0x6d, 0xb1, 0x18,
0x96, 0xbc, 0x52, 0x66, 0x52, 0xdd, 0x8b, 0x3a, 0x7b, 0x38, 0xff, 0xf6, 0xc5,
0xb0, 0x73, 0x8b, 0x93, 0x71, 0x2e, 0xf9, 0x24, 0x91, 0xac, 0x68, 0x5e, 0x81,
0x04, 0x65, 0xe7, 0x45, 0xe9, 0xf5, 0x48, 0x5e, 0xd8, 0x28, 0x1f, 0x2b, 0x13,
0xa2, 0xf2, 0x9a, 0x58, 0xf3, 0xab, 0x94, 0x6c, 0xf4, 0x9d, 0xf5, 0x8d, 0xc7,
0x47, 0x6f, 0x8c, 0x3b, 0x20, 0x97, 0xd6, 0x53, 0x88, 0x92, 0x53, 0xa3, 0x1b,
0x6d, 0x67, 0xe1, 0xf6, 0x5b, 0xe2, 0xea, 0x37, 0x6a, 0x76, 0x01, 0x78, 0xb9,
0x88, 0xef, 0xaa, 0xba, 0xf5, 0x56, 0x25, 0xa8, 0x74, 0x20, 0x6d, 0xfd, 0x68,
0x4a, 0xc1, 0xa0, 0x5c, 0xcc, 0xf2, 0x6f, 0x9f, 0x11, 0xb7, 0x25, 0x6f, 0x41,
0xe0, 0x8f, 0xa3, 0xfb, 0xbd, 0x6f, 0x74, 0x3a, 0xa1, 0xdd, 0x03, 0x8c, 0xa9,
0x75, 0x56, 0x83, 0x98, 0x92, 0xf2, 0xe4, 0x15, 0xf2, 0x26, 0x56, 0x3a, 0x5e,
0xab, 0x3b, 0xe7, 0x4c, 0xeb, 0x53, 0xc8, 0x38, 0x9d, 0xba, 0x79, 0x38, 0x0e,
0xc1, 0x7f, 0xbe, 0xff, 0xbd, 0xd5, 0x68, 0xb8, 0x0d, 0xf6, 0xf7, 0x6a, 0x36,
0x5b, 0xcb, 0xbc, 0xf7, 0x43, 0x43, 0x11, 0x86, 0xbe, 0x22, 0x68, 0x02, 0x4d,
0x2b, 0xa3, 0x69, 0xd1, 0x7f, 0x51, 0x59, 0x62, 0x0e, 0xf8, 0x38, 0x86, 0xbe,
0x35, 0x4f, 0x47, 0xc0, 0x79, 0x11, 0x4b, 0xe2, 0xa5, 0xa3, 0x5b, 0x50, 0xb5,
0xce, 0x76, 0xaf, 0x53, 0x0c, 0x6c, 0x93, 0xd0, 0x7a, 0x31, 0x31, 0x1a, 0x83,
0x76, 0x64, 0x44, 0x3a, 0xe7, 0x13, 0x5e, 0x5c, 0xf4, 0xfb, 0xdd, 0xdf, 0x86,
0xb4, 0x7a, 0xa3, 0x4e, 0x28, 0x79, 0x61, 0x5b, 0x24, 0xba, 0x62, 0x31, 0xb3,
0xba, 0x39, 0x1e, 0x81, 0x82, 0xde, 0x89, 0xc8, 0x31, 0x0a, 0x62, 0xcd, 0xf9,
0x20, 0x44, 0xe4, 0xf3, 0xce, 0x5a, 0xcd, 0x98, 0x5d, 0x91, 0x1b, 0xc6, 0xcf,
0x14, 0xee, 0xb4, 0xe1, 0xd7, 0xb0, 0xe7, 0x3c, 0xee, 0x04, 0x7b, 0xe2, 0xc9,
0xdd, 0x39, 0x5b, 0x52, 0xab, 0xe9, 0xbd, 0xf9, 0xcb, 0xc1, 0xfa, 0x12, 0xbc,
0x5e, 0xe5, 0x91, 0x8f, 0xf8, 0xad, 0x96, 0xde, 0xc4, 0xcd, 0x03, 0xb3, 0x5b,
0xbf, 0x88, 0x7f, 0xdd, 0xfe, 0x9a, 0x5f, 0x4c, 0xaa, 0xcf, 0x6e, 0x6d, 0x8a,
0x86, 0x5f, 0x1c, 0x46, 0x6e, 0x94, 0x07, 0x21, 0xc9, 0x03, 0x53, 0x47, 0x5d,
0xe5, 0xad, 0x6d, 0x10, 0xb6, 0x26, 0x3d, 0x0c, 0xc5, 0xbf, 0x76, 0x9a, 0x16,
0x29, 0xcd, 0x34, 0x21, 0xf6, 0x70, 0xf4, 0x26, 0x8f, 0x1a, 0xbc, 0xe2, 0xc5,
0x65, 0xa2, 0x8b, 0x1e, 0x2d, 0x6d, 0xa1, 0x16, 0xf6, 0x63, 0xd9, 0xf6, 0xa6,
0x58, 0xcc, 0x1a, 0x24, 0xdf, 0x7f, 0x64, 0x4e, 0x92, 0x84, 0x13, 0xf9, 0x11,
0xac, 0x15, 0x5f, 0x0e, 0xe6, 0x48, 0x4d, 0x6f, 0x4f, 0xb9, 0xd0, 0x19, 0x8e,
0xc4, 0x7d, 0xfd, 0xf7, 0x27, 0x16, 0x7f, 0x93, 0xcc, 0x5a, 0x9f, 0x55, 0x8e,
0x58, 0x1f, 0xf2, 0x80, 0xa4, 0xbd, 0xc1, 0x4b, 0xd3, 0xd4, 0x59, 0x14, 0x77,
0x20, 0xfb, 0x48, 0x44, 0x22, 0x9c, 0xab, 0x51, 0xa0, 0x1d, 0xa2, 0x5a, 0x67,
0x36, 0xc8, 0x78, 0x2b, 0xd1, 0xa4, 0x36, 0x75, 0xb3, 0xe1, 0x05, 0x52, 0x0c,
0x52, 0x8d, 0xbd, 0x63, 0xf0, 0x2d, 0x0a, 0x0f, 0x9f, 0xa0, 0xf9, 0x6f, 0x6b,
0x0e, 0xbf, 0x28, 0xe6, 0x57, 0x72, 0x1f, 0x57, 0x7e, 0x5a, 0x1f, 0xe8, 0xc0,
0x3f, 0xc3, 0xa0, 0x71, 0xea, 0x62, 0x87, 0x60, 0x74, 0x0c, 0xc1, 0x21, 0x0c,
0xef, 0xb5, 0x66, 0x97, 0x7e, 0xdd, 0x38, 0x2f, 0x7b, 0x4a, 0x96, 0x37, 0x2f,
0xe4, 0xe0, 0xf7, 0x90, 0x74, 0x7c, 0xb2, 0xc2, 0x4f, 0xdf, 0x68, 0x4f, 0xc4,
0x2e, 0xf1, 0xb5, 0x37, 0x79, 0xff, 0x54, 0x0a, 0x3f, 0xa5, 0x1d, 0x1f, 0x43,
0xb6, 0x54, 0xb2, 0x15, 0xf1, 0x09, 0x46, 0xdd, 0x96, 0x96, 0x49, 0x0c, 0x7f,
0x42, 0x8e, 0xd0, 0x64, 0x27, 0x8a, 0x9c, 0x89, 0x65, 0x21, 0xe6, 0x4e, 0x7f,
0x35, 0x9e, 0x72, 0x23, 0xd9, 0x73, 0x88, 0xb3, 0x44, 0x24, 0xb7, 0x1d, 0xe4,
0x1b, 0x29, 0x16, 0x71, 0x55, 0x79, 0x26, 0x98, 0x7e, 0x34, 0xe9, 0x78, 0xed,
0x6b, 0xb4, 0x9a, 0xc3, 0x6f, 0xab, 0xc5, 0x46, 0x67, 0x43, 0xab, 0x5d, 0xc5,
0x35, 0xf8, 0xbc, 0x34, 0xec, 0xd8, 0x43, 0x7e, 0x26, 0xb1, 0x30, 0x42, 0xbe,
0xb5, 0x06, 0xd5, 0xa7, 0xd2, 0x48, 0x2c, 0x7d, 0x5c, 0x67, 0x74, 0x65, 0xa9,
0x03, 0xda, 0x8e, 0xd6, 0xac, 0x75, 0xdf, 0x34, 0x4e, 0x6c, 0x44, 0x02, 0xcf,
0x4c, 0xff, 0x16, 0x2d, 0xea, 0x62, 0x8f, 0x39, 0xa9, 0xef, 0xf4, 0x48, 0x67,
0xcc, 0xc5, 0xe1, 0xdb, 0x8e, 0x3d, 0x65, 0xdc, 0x31, 0x07, 0xf2, 0x48, 0xaa,
0xb9, 0x07, 0x43, 0x5a, 0xce, 0x15, 0xc8, 0xb3, 0x43, 0xc2, 0x5f, 0x43, 0xe1,
0xf8, 0xa2, 0x9f, 0x72, 0xdd, 0xce, 0x07, 0xcf, 0xad, 0xf0, 0xa2, 0x16, 0x8e,
0xa4, 0xd8, 0x82, 0xcc, 0xe8, 0xbe, 0x19, 0x41, 0x9c, 0xbe, 0x58, 0x5f, 0x04,
0xbe, 0x86, 0x91, 0x16, 0x9d, 0x0f, 0x13, 0x48, 0x8f, 0x22, 0x7d, 0xab, 0x3e,
0xdd, 0xe8, 0xbf, 0xcd, 0xf7, 0x64, 0xb7, 0xee, 0xa0, 0x6e, 0xeb, 0xe5, 0xe7,
0x0f, 0xf1, 0xde, 0x70, 0x6e, 0x02, 0xce, 0xe3, 0xf0, 0x7b, 0x8b, 0x2e, 0xf9,
0x0f, 0xac, 0x27, 0xf4, 0xa7, 0x1a, 0xdf, 0x15, 0x2c, 0x0d, 0x92, 0xd5, 0xe3,
0x6f, 0x94, 0x6c, 0xb2, 0xce, 0x40, 0x97, 0x71, 0xaa, 0xae, 0xb5, 0xa1, 0xb3,
0x48, 0x73, 0x31, 0xea, 0x7e, 0x2f, 0x41, 0xb1, 0x4c, 0x7e, 0x19, 0xca, 0x5a,
0xf1, 0x70, 0x5d, 0x69, 0x32, 0x1a, 0xfb, 0x10, 0xcf, 0xea, 0x60, 0x4d, 0x5c,
0xed, 0xe4, 0xba, 0xaf, 0xb7, 0x37, 0xf3, 0xd1, 0x8f, 0xb2, 0x45, 0x12, 0xf5,
0xe9, 0x39, 0xfa, 0x0b, 0xf0, 0xfe, 0x44, 0xf5, 0xea, 0x6b, 0xe5, 0x72, 0xfd,
0xdd, 0xe8, 0xfb, 0x3b, 0xfb, 0x50, 0x99, 0x4c, 0x61, 0x1b, 0x5e, 0x1c, 0x76,
0xa9, 0x44, 0xa2, 0x03, 0x69, 0xf8, 0x82, 0x26, 0x17, 0xd2, 0xe0, 0x4d, 0x42,
0xa7, 0x91, 0xad, 0xd9, 0xb2, 0xd4, 0x2d, 0x11, 0xc5, 0x7c, 0x7d, 0x99, 0xc0,
0xa8, 0x52, 0x96, 0x37, 0xde, 0x99, 0x4d, 0xd2, 0x06, 0x77, 0xbe, 0xbd, 0x1c,
0xb4, 0x3f, 0xb0, 0x11, 0xdd, 0x5f, 0xf8, 0x12, 0x34, 0x22, 0x58, 0xba, 0xae,
0x87, 0x9e, 0x13, 0x84, 0x15, 0x83, 0xba, 0xb9, 0xc2, 0x96, 0xba, 0x41, 0xbb,
0x8a, 0x12, 0x30, 0xd5, 0x88, 0x47, 0x77, 0x3e, 0x32, 0xc6, 0xd4, 0x6c, 0x8f,
0xe5, 0x2a, 0x26, 0xf5, 0xe0, 0xfd, 0x00, 0xf2, 0xce, 0xf9, 0x49, 0x77, 0xd1,
0x67, 0x2e, 0xf1, 0xd5, 0x3b, 0xcc, 0xac, 0xfa, 0xd7, 0xef, 0xe6, 0x78, 0x95,
0x81, 0xee, 0x05, 0x3d, 0x0b, 0x7b, 0x24, 0xca, 0x03, 0x10, 0x95, 0x88, 0xcc,
0xe5, 0x3d, 0xa7, 0xde, 0xc9, 0x7d, 0x0a, 0x07, 0x9f, 0xe5, 0x54, 0xd8, 0xbd,
0x8a, 0x35, 0x95, 0x8c, 0xc7, 0x07, 0xbe, 0x49, 0xb7, 0x3b, 0x20, 0xfc, 0x52,
0x77, 0x08, 0x06, 0x28, 0x27, 0x8d, 0xef, 0xf7, 0xbc, 0xe2, 0xd1, 0xa1, 0x13,
0x73, 0x25, 0x7d, 0x69, 0xca, 0xdd, 0x12, 0x83, 0x74, 0x93, 0x48, 0x8d, 0xba,
0x0d, 0x1d, 0xb1, 0xe0, 0xfb, 0xe9, 0x11, 0xad, 0x32, 0x16, 0xdd, 0xb7, 0x1b,
0xf7, 0x8d, 0x19, 0x59, 0xfe, 0xfc, 0x6d, 0x59, 0xf9, 0xfa, 0xbc, 0xfd, 0x96,
0x66, 0xdd, 0xbf, 0xd9, 0x9a, 0x3c, 0x30, 0x7d, 0x2e, 0x96, 0xa3, 0x11, 0x25,
0x13, 0x74, 0xd6, 0xdd, 0x34, 0x31, 0x1f, 0x21, 0x5f, 0xd1, 0x52, 0x05, 0x3f,
0xad, 0x26, 0x0b, 0x58, 0x34, 0x22, 0x5a, 0xb8, 0x93, 0x33, 0xa3, 0x31, 0x61,
0x89, 0xa0, 0xab, 0xd6, 0x86, 0x15, 0x39, 0xb0, 0x2c, 0x40, 0x66, 0x1a, 0xac,
0x27, 0x90, 0x90, 0x8d, 0xba, 0x95, 0x33, 0x55, 0x68, 0x51, 0x89, 0x35, 0x8e,
0x3e, 0x30, 0x67, 0x62, 0xbd, 0x78, 0xce, 0x01, 0x43, 0x32, 0xaf, 0x0c, 0xcd,
0x37, 0x65, 0x32, 0x2b, 0xd9, 0x71, 0xea, 0x95, 0x4b, 0x9e, 0x2e, 0x28, 0xf3,
0x22, 0x5d, 0x3f, 0x55, 0x1b, 0x46, 0xfe, 0x30, 0xbd, 0xe4, 0x51, 0x23, 0x52,
0xaa, 0xd1, 0x41, 0xfb, 0xba, 0x31, 0xde, 0x16, 0xf9, 0x7b, 0xe6, 0x4e, 0x74,
0xed, 0x6c, 0xf0, 0x80, 0xef, 0xa6, 0x62, 0x09, 0x07, 0xd6, 0x90, 0x72, 0x95,
0xf4, 0x23, 0xf9, 0xe2, 0x13, 0xde, 0x97, 0xc2, 0x78, 0x55, 0xaa, 0x73, 0xbf,
0xbe, 0x12, 0xfc, 0x66, 0xf6, 0xa4, 0x0e, 0x6f, 0xd6, 0x4c, 0xab, 0x14, 0xc3,
0x62, 0xff, 0xbb, 0x5b, 0x53, 0x25, 0x70, 0x64, 0x3c, 0x5a, 0xd4, 0x60, 0xe0,
0xc9, 0xea, 0x54, 0x6d, 0xdb, 0x32, 0x4a, 0xa6, 0x14, 0x5c, 0x97, 0x66, 0x29,
0xe7, 0xf0, 0xab, 0xd9, 0x41, 0xcc, 0x6c, 0x0e, 0xff, 0xb9, 0xe4, 0x9e, 0xad,
0x70, 0x2e, 0x99, 0xba, 0x4d, 0x9c, 0x58, 0x51, 0x36, 0xb0, 0xa1, 0x57, 0x68,
0xd9, 0xef, 0xed, 0xda, 0x79, 0x3a, 0x78, 0x47, 0xc8, 0xb5, 0x49, 0xde, 0x3b,
0xb9, 0x0a, 0x66, 0xb2, 0x41, 0x4d, 0x2a, 0x52, 0x22, 0x51, 0xf3, 0xe3, 0xf7,
0x16, 0x34, 0xea, 0x76, 0xaa, 0x7d, 0x16, 0x7f, 0x2d, 0x17, 0xbc, 0x21, 0xd3,
0x89, 0x6c, 0x73, 0xaf, 0xc7, 0x48, 0x16, 0xde, 0x2f, 0x8a, 0x5b, 0x9b, 0x71,
0xb7, 0x61, 0x4d, 0xe8, 0xf6, 0xec, 0xd5, 0xdf, 0x1c, 0xe0, 0xa6, 0x56, 0x68,
0x8f, 0x47, 0x97, 0x2a, 0xb5, 0x9a, 0x9a, 0x61, 0x17, 0x84, 0x77, 0x3a, 0x7d,
0x77, 0x5b, 0xef, 0x4f, 0x2c, 0x0d, 0xfe, 0x79, 0xd5, 0x5b, 0xd1, 0xa4, 0x03,
0x79, 0x1a, 0x31, 0xa4, 0xd5, 0xa8, 0x76, 0xff, 0xa8, 0x0d, 0x3f, 0x7a, 0xe6,
0x3c, 0xe7, 0x43, 0xcb, 0xed, 0x60, 0x72, 0x13, 0x3a, 0x64, 0xbc, 0x15, 0x1b,
0xce, 0x59, 0xa5, 0x20, 0xed, 0x8f, 0xb7, 0xcb, 0xf2, 0xad, 0xd1, 0xd8, 0x8d,
0x64, 0xe3, 0x17, 0x6b, 0x5a, 0xf7, 0xdb, 0xc6, 0x21, 0xf1, 0xf8, 0x97, 0x87,
0x78, 0x1a, 0x89, 0xd8, 0x4d, 0x8f, 0x77, 0xd6, 0xa8, 0x5b, 0xc6, 0x63, 0x36,
0x1f, 0x29, 0x4b, 0xba, 0x75, 0xdc, 0x7f, 0x69, 0x54, 0x4b, 0x4e, 0x41, 0x23,
0xaf, 0x86, 0x35, 0xfa, 0x0c, 0xc5, 0xa1, 0x70, 0xd6, 0x9f, 0x1b, 0x82, 0xed,
0xa6, 0x6e, 0x38, 0x19, 0x4f, 0xec, 0x4f, 0x5c, 0x5a, 0xb8, 0xda, 0x77, 0x95,
0xdb, 0x18, 0xa6, 0xec, 0x60, 0x27, 0xd7, 0xcf, 0x8e, 0xb8, 0xd2, 0xc5, 0xce,
0xe9, 0x83, 0x43, 0x03, 0xfc, 0xf7, 0xbb, 0x50, 0x8d, 0x5b, 0x43, 0xed, 0x90,
0xf4, 0x18, 0x2d, 0x59, 0x68, 0x5d, 0x69, 0xb3, 0x2b, 0x23, 0x10, 0x8f, 0x77,
0xbf, 0xdb, 0xf6, 0xfc, 0x3b, 0x5e, 0x55, 0xe3, 0xa1, 0x0f, 0x1e, 0xd4, 0xa2,
0xd6, 0x05, 0x16, 0xf7, 0x3e, 0xdd, 0xb1, 0xdf, 0xe2, 0x21, 0x5c, 0xd2, 0x84,
0x19, 0xcd, 0xe8, 0x1f, 0xe2, 0x76, 0x97, 0x0c, 0x63, 0x7a, 0xab, 0xeb, 0xae,
0xae, 0xad, 0xef, 0x35, 0x47, 0x8e, 0x7f, 0x38, 0x3c, 0xfe, 0x43, 0x50, 0xc4,
0xfc, 0x6f, 0xd9, 0x1e, 0xfc, 0xed, 0x9d, 0x2a, 0x72, 0x41, 0x7b, 0x33, 0x02,
0xe2, 0x61, 0xa5, 0x9c, 0x60, 0x14, 0x7c, 0xda, 0xee, 0xc4, 0x37, 0xda, 0x90,
0x62, 0xf2, 0x82, 0x74, 0x53, 0x0b, 0x32, 0xc4, 0xee, 0x66, 0x77, 0x99, 0x7d,
0xd4, 0xe9, 0xe6, 0xd9, 0x92, 0x8f, 0x88, 0xcb, 0x20, 0x4e, 0x73, 0xb0, 0xe1,
0x59, 0x28, 0x47, 0x27, 0xe3, 0x73, 0x12, 0x12, 0xc5, 0x83, 0xc4, 0xf9, 0x09,
0xe7, 0x99, 0x80, 0x7b, 0xe5, 0xa7, 0x7b, 0x0f, 0x38, 0xc6, 0x61, 0xe0, 0xb4,
0x5d, 0x36, 0xda, 0x75, 0xd2, 0x42, 0x51, 0x52, 0x46, 0x5a, 0xd0, 0x57, 0x42,
0x06, 0x4b, 0x89, 0xec, 0x81, 0xb7, 0x8d, 0x78, 0x11, 0x8c, 0x4e, 0xa9, 0x4a,
0xe2, 0xb3, 0xc0, 0x53, 0x5c, 0x89, 0x4d, 0x71, 0x3f, 0xb8, 0x12, 0x37, 0x0d,
0x9b, 0x61, 0x7e, 0x95, 0x1c, 0x42, 0x13, 0x55, 0xca, 0x1f, 0xc2, 0xbb, 0x41,
0xd0, 0x4b, 0xe8, 0x6c, 0xb6, 0x31, 0x5b, 0x9a, 0x48, 0xab, 0x32, 0x04, 0x63,
0x6a, 0xd0, 0x5f, 0x0d, 0x16, 0x14, 0x18, 0x11, 0x54, 0x74, 0x36, 0x52, 0x4b,
0x21, 0xca, 0x16, 0xde, 0x21, 0xcc, 0x93, 0xb9, 0xbb, 0xfb, 0x84, 0x35, 0x3a,
0x71, 0x92, 0x5a, 0xbd, 0xe1, 0x1c, 0x37, 0xf2, 0x70, 0xde, 0x61, 0x06, 0x25,
0xb2, 0x55, 0xf2, 0x1a, 0xcd, 0x48, 0x44, 0x48, 0x5a, 0x99, 0x7e, 0xe2, 0xc7,
0x93, 0x4b, 0xa3, 0x41, 0x51, 0x5b, 0xb5, 0xb8, 0xc2, 0x12, 0xf2, 0xcb, 0x4f,
0x6f, 0x4a, 0xc5, 0xb5, 0x55, 0xc6, 0x38, 0xbe, 0x46, 0x71, 0x39, 0x23, 0x11,
0x37, 0x55, 0x65, 0xd8, 0x6b, 0x14, 0x0e, 0x50, 0x94, 0x8a, 0xe1, 0xc9, 0x65,
0x10, 0x12, 0x5d, 0xce, 0x7c, 0xc5, 0x2c, 0xbe, 0x59, 0x73, 0x5d, 0xb6, 0x05,
0xd1, 0x45, 0x24, 0xbd, 0x01, 0x1d, 0xa6, 0x4e, 0x89, 0x08, 0x5d, 0xee, 0x6f,
0x45, 0x7a, 0x79, 0x49, 0xe1, 0x24, 0x46, 0x21, 0x53, 0x5a, 0xe3, 0xd3, 0x2b,
0x8c, 0xbc, 0x42, 0x0d, 0xd5, 0x21, 0x6f, 0xa7, 0x38, 0xcc, 0x7a, 0xcf, 0xaa,
0x60, 0x4d, 0x0e, 0xe0, 0x52, 0xe7, 0x20, 0x0a, 0x6b, 0x30, 0xa3, 0x10, 0xb5,
0xd6, 0xef, 0x4e, 0x68, 0x3a, 0x7c, 0x94, 0x03, 0x72, 0xc0, 0x96, 0x86, 0xe4,
0x29, 0x69, 0xc6, 0xe4, 0x20, 0xd8, 0x84, 0xc1, 0x23, 0x94, 0x24, 0x11, 0x65,
0x82, 0x49, 0x08, 0x45, 0x11, 0x06, 0x83, 0x30, 0x99, 0x84, 0x45, 0x31, 0xe6,
0x07, 0xff, 0x06, 0x83, 0xc5, 0xa0, 0xe6, 0xbb, 0x8b, 0x18, 0x14, 0x9d, 0xc5,
0x7f, 0x63, 0x52, 0x0c, 0x32, 0xff, 0xa2, 0x48, 0x40, 0x3f, 0x54, 0x2a, 0x1d,
0x09, 0x0b, 0x4a, 0xc2, 0x6a, 0x60, 0x73, 0x24, 0x25, 0x45, 0x59, 0x6c, 0x4a,
0x83, 0xc5, 0x5b, 0x9e, 0x2a, 0xcd, 0xa4, 0x04, 0xd4, 0x24, 0xd4, 0xc0, 0x60,
0xd2, 0x44, 0x8c, 0xc5, 0x85, 0x55, 0xa5, 0x18, 0xd2, 0x6a, 0x02, 0x42, 0x82,
0x4c, 0x25, 0xa6, 0x02, 0x7b, 0x8d, 0x00, 0x4b, 0x9e, 0xc6, 0xe3, 0x31, 0xc6,
0x67, 0xf0, 0x56, 0xbe, 0x48, 0x96, 0x47, 0x54, 0x2c, 0x05, 0x3b, 0x99, 0x6c,
0xfd, 0x2e, 0x5a, 0xe8, 0xed, 0x42, 0xa9, 0xd4, 0x9f, 0x67, 0xf5, 0x38, 0x03,
0xd1, 0x64, 0x3c, 0x84, 0xf8, 0x6a, 0xa7, 0x1d, 0x69, 0x3b, 0x5e, 0x21, 0x9b,
0x0b, 0x91, 0x5c, 0xda, 0x9f, 0x5c, 0xe9, 0x46, 0x06, 0x83, 0xc6, 0x65, 0x4b,
0x90, 0xa3, 0xeb, 0x38, 0xbb, 0x0c, 0xf5, 0x56, 0x8a, 0x63, 0x11, 0x8b, 0x4b,
0xbf, 0x21, 0xb6, 0x74, 0x87, 0xd1, 0x6e, 0xd9, 0x75, 0xb2, 0x17, 0x19, 0x14,
0x84, 0xf5, 0x6e, 0x0b, 0x72, 0xd5, 0x85, 0x8f, 0x51, 0x8a, 0x8a, 0x6a, 0x6b,
0x04, 0x0f, 0x6d, 0x76, 0x04, 0x47, 0x4b, 0x54, 0x45, 0xaf, 0xc9, 0x9a, 0xf4,
0x49, 0xa4, 0x7f, 0xc2, 0x27, 0x0b, 0x30, 0x29, 0x25, 0xc1, 0x35, 0x9b, 0x79,
0x0c, 0x36, 0xa5, 0x2a, 0xcb, 0x96, 0xd3, 0xa5, 0x96, 0xfb, 0xc0, 0x58, 0xcc,
0x88, 0x48, 0x2c, 0x95, 0x5c, 0xc4, 0x95, 0xd8, 0xc6, 0xdb, 0x7f, 0x77, 0xcf,
0xc2, 0x45, 0x87, 0x44, 0x0e, 0xea, 0x9a, 0xb1, 0xcf, 0x2b, 0xef, 0xfe, 0x93,
0xab, 0x2e, 0x4f, 0x2e, 0x48, 0xb8, 0xe2, 0x22, 0x8f, 0xc4, 0xc2, 0x9b, 0x24,
0x40, 0x84, 0xfe, 0x14, 0x77, 0x8e, 0x9b, 0x8a, 0x08, 0x18, 0xae, 0xdd, 0xeb,
0x89, 0xb3, 0xb2, 0xc2, 0xe7, 0xc0, 0x08, 0x40, 0x30, 0x18, 0x34, 0x06, 0xb1,
0xc6, 0x95, 0x3f, 0x88, 0x3a, 0x4f, 0x9b, 0xab, 0x2d, 0x76, 0x43, 0xe6, 0xf0,
0x1f, 0x77, 0x8c, 0xd8, 0x3c, 0x55, 0x8a, 0x65, 0x0e, 0x03, 0x99, 0x88, 0x47,
0x88, 0x4c, 0x81, 0xcc, 0x8f, 0xa6, 0x3b, 0x9d, 0x61, 0xb8, 0x53, 0xe2, 0x67,
0xc9, 0x93, 0x52, 0x12, 0x64, 0xc1, 0x56, 0xc1, 0x7a, 0xfc, 0xba, 0x60, 0x12,
0x12, 0x5c, 0xe8, 0x6b, 0x10, 0x39, 0x05, 0xe5, 0x5b, 0xbc, 0x4d, 0xb2, 0x4b,
0xa8, 0xc7, 0xb8, 0x1d, 0x07, 0x69, 0xc6, 0x92, 0xbd, 0x4b, 0xc4, 0x24, 0x04,
0x77, 0xfc, 0xa5, 0x2b, 0xb8, 0x2a, 0x18, 0xb4, 0x7d, 0xb3, 0x26, 0xed, 0xa6,
0x6e, 0xf0, 0x84, 0xde, 0x4a, 0xc3, 0x15, 0xb7, 0xe8, 0xb9, 0x50, 0x36, 0x15,
0x10, 0x32, 0x7c, 0x64, 0x50, 0xba, 0xf2, 0x04, 0x77, 0x1f, 0x73, 0x9d, 0xe8,
0xe2, 0x8b, 0x0b, 0xb5, 0xcf, 0xd3, 0x84, 0x37, 0x2d, 0x5c, 0xb9, 0x69, 0x8f,
0xd9, 0x96, 0x45, 0x3b, 0xbe, 0x05, 0x83, 0xe7, 0x27, 0xc5, 0x7a, 0x1f, 0x84,
0xb2, 0x20, 0xb0, 0x68, 0x1e, 0x32, 0x31, 0xaa, 0x0c, 0x8e, 0x68, 0x8a, 0xf4,
0x9a, 0x8b, 0x86, 0x0a, 0x4a, 0x74, 0x9d, 0xf3, 0x87, 0x6d, 0xa1, 0x2a, 0xf2,
0x94, 0xbf, 0x9e, 0x03, 0xe1, 0x6a, 0xec, 0x70, 0xc1, 0x7d, 0xb3, 0x75, 0x8e,
0x90, 0xbf, 0xc4, 0x5e, 0x6a, 0x7c, 0x53, 0x5f, 0xd1, 0x9e, 0xf8, 0x11, 0x11,
0x57, 0x22, 0xf0, 0xab, 0x12, 0x4b, 0x5d, 0x5f, 0xf0, 0xee, 0x0e, 0xed, 0x7d,
0x06, 0x77, 0xc9, 0xda, 0xf5, 0x6c, 0x25, 0x8e, 0x2c, 0x6d, 0x97, 0x21, 0xb7,
0x42, 0xda, 0x95, 0xe6, 0x7a, 0xd0, 0xed, 0x87, 0x7e, 0x9d, 0x68, 0x22, 0xad,
0x0e, 0x35, 0x1d, 0xa6, 0x22, 0xdf, 0xce, 0x7c, 0xe4, 0x2c, 0x32, 0xbb, 0x44,
0xfd, 0xaa, 0x10, 0x0e, 0xd5, 0x55, 0x42, 0x32, 0x97, 0x88, 0xb6, 0x9c, 0xe2,
0xe5, 0x73, 0x1b, 0xb5, 0xe4, 0xd6, 0x1c, 0xc4, 0x51, 0x52, 0x86, 0xd3, 0x67,
0xf4, 0x98, 0xb2, 0xb2, 0x84, 0x3a, 0x4b, 0x84, 0xae, 0xc9, 0x29, 0xdc, 0xfd,
0xe5, 0xda, 0x46, 0x9d, 0x75, 0x27, 0x88, 0x3a, 0xb5, 0x84, 0x71, 0x77, 0xcf,
0x8e, 0x67, 0xd8, 0x72, 0x58, 0x63, 0xb1, 0x8a, 0xba, 0xa0, 0xb1, 0x31, 0x21,
0x76, 0xa0, 0xff, 0x70, 0xc2, 0x15, 0x21, 0x38, 0x26, 0x7a, 0x4a, 0x78, 0xcd,
0xba, 0x14, 0x38, 0x60, 0x71, 0x35, 0xcc, 0xc8, 0x7e, 0x56, 0x24, 0x64, 0x7f,
0x4c, 0x44, 0x10, 0xf4, 0xc9, 0x52, 0x55, 0xb1, 0x65, 0x87, 0xc4, 0x65, 0xc9,
0x4e, 0xb2, 0x52, 0x56, 0xb9, 0x67, 0x00, 0xef, 0xde, 0x60, 0x31, 0x53, 0x62,
0x13, 0xb6, 0x52, 0xbb, 0xd8, 0x87, 0xd6, 0xae, 0x39, 0xb8, 0x5e, 0x4b, 0x8c,
0xa1, 0x28, 0x7a, 0xc6, 0x4c, 0x56, 0x48, 0x89, 0x70, 0xe5, 0x0d, 0xb7, 0x31,
0xd8, 0x4c, 0x0d, 0x71, 0x79, 0x36, 0x8b, 0x0d, 0xb5, 0x01, 0x39, 0x9e, 0x20,
0xdd, 0x94, 0x47, 0x04, 0x65, 0x95, 0x38, 0x0c, 0x46, 0xbc, 0xc0, 0x42, 0x35,
0x06, 0x5b, 0x4e, 0x89, 0x88, 0x70, 0xa9, 0xe5, 0x8b, 0x56, 0x2a, 0x83, 0x2d,
0xb7, 0x46, 0x5c, 0x56, 0x5e, 0x75, 0x99, 0xbe, 0x11, 0xd9, 0x02, 0x51, 0x71,
0xa1, 0xa5, 0x5a, 0x77, 0xf5, 0xc4, 0xb9, 0x27, 0x94, 0x35, 0x16, 0xca, 0x9b,
0xc0, 0x58, 0x52, 0x5e, 0x87, 0xc9, 0x2f, 0x1c, 0xbe, 0xe4, 0x42, 0xbe, 0x83,
0xc1, 0x94, 0xe4, 0x73, 0x84, 0xcb, 0x64, 0x48, 0xb3, 0x44, 0x39, 0xf5, 0x91,
0xb0, 0x88, 0x86, 0xff, 0x4e, 0x06, 0x93, 0x41, 0x24, 0x69, 0xb2, 0x60, 0x2d,
0xe1, 0x08, 0x71, 0x29, 0x06, 0x4f, 0x4e, 0x49, 0x8c, 0x18, 0x0a, 0xc8, 0x6b,
0x6b, 0x40, 0x44, 0x56, 0x47, 0x9d, 0x23, 0x2d, 0x6c, 0x4c, 0xe7, 0x71, 0xa5,
0x19, 0x0a, 0xb9, 0x46, 0xef, 0xa2, 0x60, 0xcd, 0xd7, 0xa7, 0x39, 0x98, 0x95,
0x5a, 0x10, 0xe6, 0x3f, 0xad, 0x6b, 0xa2, 0x0c, 0x36, 0xff, 0xf9, 0x7f, 0x48,
0x47, 0x48, 0xfc, 0x7b, 0xa8, 0x08, 0x49, 0x2a, 0x08, 0x2e, 0x17, 0xe0, 0x4a,
0x14, 0xe7, 0xc2, 0x22, 0x17, 0xe0, 0xc9, 0x52, 0xe1, 0x4e, 0x78, 0x67, 0x07,
0x96, 0xac, 0xf0, 0x79, 0xcd, 0x25, 0x1b, 0x19, 0xfa, 0x1c, 0x62, 0xc0, 0x90,
0x5c, 0x6f, 0xb8, 0x40, 0x42, 0x8a, 0x66, 0x48, 0xad, 0xbb, 0xb8, 0x3a, 0x19,
0x84, 0xc2, 0x95, 0x3d, 0x6a, 0xcb, 0x99, 0x6a, 0x8a, 0x7a, 0x0a, 0x42, 0x0a,
0x91, 0x38, 0x25, 0xfe, 0x83, 0xe0, 0x42, 0x8d, 0xed, 0xcf, 0xc1, 0x56, 0x96,
0x3f, 0x2e, 0x2d, 0x6f, 0x64, 0x7c, 0xe8, 0xf2, 0x52, 0x35, 0x25, 0xa3, 0xf5,
0x8f, 0x98, 0x89, 0xaf, 0xe0, 0x45, 0xa3, 0xd8, 0x7c, 0xc2, 0xb3, 0x29, 0x16,
0x9f, 0xe6, 0xf3, 0xfd, 0x83, 0x7c, 0xce, 0xcf, 0x37, 0x12, 0xbe, 0x0a, 0x23,
0x31, 0xee, 0x68, 0x35, 0x2d, 0xd6, 0x30, 0x16, 0x5d, 0x98, 0x86, 0xd5, 0x92,
0x4c, 0x91, 0xcd, 0x44, 0x92, 0x52, 0xda, 0xb4, 0x8b, 0xb9, 0xd3, 0x1b, 0x44,
0x58, 0x6f, 0xeb, 0x31, 0xf1, 0x2d, 0x0b, 0x18, 0x77, 0x36, 0x18, 0x2a, 0xfc,
0xb1, 0x70, 0xc5, 0x65, 0x96, 0x05, 0xe8, 0x5a, 0x12, 0x46, 0x1b, 0xd6, 0x72,
0x56, 0xf0, 0x59, 0xb8, 0x2e, 0x1f, 0x66, 0x27, 0x28, 0x2b, 0x5c, 0x24, 0x57,
0x98, 0x86, 0xcb, 0x3e, 0x90, 0x07, 0xa0, 0x2d, 0x3f, 0x19, 0x82, 0xf5, 0xa7,
0x0f, 0x8a, 0x09, 0xdc, 0x6d, 0x43, 0x29, 0xf2, 0x30, 0x0d, 0x5b, 0x98, 0x18,
0xb9, 0xe2, 0x01, 0x76, 0x9d, 0x25, 0x66, 0x32, 0xc6, 0x59, 0xe4, 0xc7, 0x65,
0xee, 0x08, 0x84, 0x0f, 0xee, 0x50, 0x4b, 0x68, 0x02, 0xa6, 0x1b, 0x57, 0xfe,
0x7d, 0x6e, 0xa3, 0x2d, 0xcd, 0x80, 0x6c, 0x5c, 0x60, 0x70, 0x89, 0xa3, 0xb5,
0xcf, 0x0b, 0xeb, 0x4c, 0x8b, 0xc1, 0x84, 0xba, 0x10, 0x8f, 0x96, 0x0c, 0x11,
0x33, 0x55, 0xba, 0xb4, 0xb1, 0xac, 0x22, 0xa5, 0x70, 0x88, 0x2b, 0xb2, 0x46,
0x40, 0x5f, 0x21, 0x6f, 0x3f, 0x53, 0x85, 0xa6, 0xaa, 0xf6, 0xe1, 0x6c, 0x17,
0xbf, 0xc0, 0x7d, 0x81, 0x30, 0x65, 0x9e, 0x75, 0xe6, 0x7c, 0xff, 0x4e, 0x72,
0x0d, 0xe6, 0xd8, 0x5d, 0x5c, 0x23, 0x4a, 0x89, 0x2b, 0xce, 0xa2, 0xcb, 0x4a,
0x18, 0x81, 0xb3, 0x52, 0x53, 0x80, 0x2b, 0xa9, 0x41, 0xc4, 0x28, 0x2d, 0x59,
0x42, 0xd3, 0x55, 0xe4, 0x09, 0x97, 0xc5, 0x60, 0x32, 0x06, 0x5c, 0x16, 0x5b,
0x50, 0xf4, 0x73, 0x39, 0x38, 0xa0, 0x1e, 0xb3, 0xc3, 0x14, 0x6a, 0x15, 0xb8,
0x8d, 0xb4, 0xd7, 0x34, 0x46, 0xa2, 0x0b, 0xa2, 0x2c, 0x01, 0xa6, 0xab, 0x0b,
0x46, 0x9d, 0xf1, 0x7d, 0x14, 0x01, 0xdf, 0xf0, 0x42, 0x88, 0xe2, 0x19, 0x12,
0x61, 0xa9, 0x73, 0x6b, 0x65, 0xd8, 0xc7, 0x4c, 0xe8, 0x7b, 0x96, 0xb9, 0x82,
0xec, 0x3d, 0xb4, 0x55, 0x62, 0xbd, 0x1a, 0x7d, 0x1f, 0xb5, 0x51, 0x55, 0xf1,
0xe8, 0xae, 0x55, 0x92, 0xcb, 0x76, 0xa8, 0x7d, 0x08, 0x80, 0x55, 0x00, 0x16,
0x6c, 0x66, 0xd8, 0xe3, 0xe8, 0xef, 0xa6, 0x94, 0xc1, 0x1e, 0x86, 0xfc, 0x0a,
0x25, 0x39, 0xe6, 0x51, 0x79, 0x18, 0xb2, 0xb8, 0x0f, 0x69, 0x1c, 0x2b, 0x9a,
0xa4, 0xbc, 0x19, 0xa5, 0x10, 0x33, 0x03, 0xbe, 0xb6, 0xb2, 0xf8, 0xf2, 0xc1,
0x64, 0xf0, 0x7d, 0xc1, 0xd7, 0xd8, 0x7f, 0x1c, 0xc0, 0x7f, 0x51, 0x6e, 0x57,
0xf9, 0x3e, 0x99, 0xbf, 0x2f, 0xcf, 0xf7, 0x0c, 0x87, 0xe2, 0x6b, 0x32, 0x83,
0xc9, 0x22, 0x9c, 0x7f, 0xd0, 0xb1, 0x52, 0x9b, 0x39, 0x2f, 0xd3, 0x7c, 0xdc,
0xf0, 0x95, 0x98, 0x9a, 0xd7, 0x6a, 0xbe, 0xb2, 0xfd, 0xdb, 0xff, 0xc8, 0xf8,
0xaf, 0x56, 0x50, 0xea, 0xb3, 0x25, 0x1c, 0x8f, 0x55, 0x9d, 0xa8, 0x3c, 0x9e,
0xfc, 0x9b, 0xcb, 0x0d, 0x86, 0x91, 0x14, 0xfd, 0xa4, 0x8c, 0x82, 0x9e, 0x80,
0x2c, 0x17, 0x46, 0x52, 0x95, 0x9e, 0xe8, 0xf7, 0xc0, 0x3a, 0x9a, 0xd8, 0xe6,
0xab, 0x46, 0x2b, 0x4f, 0x5f, 0x00, 0x43, 0x94, 0x46, 0x53, 0xc6, 0xae, 0x95,
0x82, 0x34, 0xe6, 0x1a, 0x71, 0x95, 0x35, 0x72, 0x72, 0x84, 0xcd, 0x54, 0xe3,
0x91, 0x65, 0x3a, 0x87, 0x96, 0xf6, 0x38, 0x83, 0x90, 0xa2, 0x52, 0x70, 0x24,
0x17, 0xaf, 0xbf, 0xbd, 0x7a, 0x15, 0x77, 0x9b, 0xc2, 0xcf, 0xe7, 0xc4, 0x15,
0xcc, 0xd4, 0x59, 0x43, 0x58, 0x7e, 0xea, 0xcc, 0xba, 0xdf, 0x73, 0x70, 0x76,
0xf3, 0xb6, 0x9d, 0x07, 0x36, 0xdd, 0x91, 0x38, 0xf0, 0x43, 0x00, 0x6e, 0x5f,
0x24, 0x47, 0xc9, 0x22, 0x8d, 0xd5, 0xa6, 0xc6, 0x75, 0xb8, 0xaa, 0xb2, 0x75,
0xc7, 0x4e, 0x9a, 0x34, 0x4c, 0xfc, 0xc9, 0xf6, 0x15, 0x0c, 0xc3, 0xdd, 0xc9,
0x78, 0x4e, 0xfa, 0xb1, 0x89, 0xec, 0x3c, 0xf4, 0xcb, 0x4a, 0xf1, 0x44, 0x0c,
0xe2, 0x68, 0x29, 0xae, 0xec, 0x5a, 0xbd, 0x72, 0xd7, 0x32, 0x2d, 0x5d, 0x13,
0x3b, 0xa4, 0x10, 0x07, 0x10, 0x67, 0x3e, 0xdb, 0x37, 0xd2, 0x97, 0x6c, 0x90,
0xd6, 0x50, 0xa4, 0x76, 0x6d, 0x54, 0xe2, 0x6a, 0x79, 0xc1, 0x97, 0x0f, 0x93,
0xd7, 0x38, 0x69, 0x85, 0x03, 0x24, 0x10, 0x6f, 0x10, 0x0d, 0xa1, 0x72, 0x84,
0x41, 0x72, 0x7b, 0x1a, 0x34, 0x6f, 0x69, 0x9e, 0xdc, 0xa2, 0x85, 0xe5, 0x0b,
0x35, 0xfc, 0x55, 0x56, 0x46, 0x28, 0x12, 0x16, 0x5d, 0x9e, 0x08, 0xc9, 0x12,
0x36, 0xd7, 0xd2, 0x0d, 0x14, 0xf3, 0x1f, 0x3b, 0xce, 0x5b, 0x97, 0x6f, 0x44,
0x8a, 0x31, 0x6f, 0x1e, 0x2e, 0xe5, 0x47, 0xb3, 0x49, 0x87, 0x34, 0xdf, 0x92,
0x7c, 0x30, 0x89, 0x4e, 0xde, 0x1f, 0xd5, 0x63, 0x49, 0x2a, 0x51, 0x54, 0x81,
0xc9, 0x27, 0xbe, 0xbd, 0xf4, 0x15, 0xd2, 0xe8, 0x9d, 0x74, 0x55, 0x4d, 0x47,
0xad, 0x20, 0xb5, 0x74, 0x9a, 0x0e, 0x9d, 0x85, 0xc8, 0x5f, 0x1a, 0xce, 0x49,
0x2c, 0x92, 0xe7, 0x48, 0x8a, 0x9b, 0xca, 0x8a, 0xae, 0x14, 0x5f, 0x6f, 0x44,
0x78, 0x0c, 0xcf, 0x00, 0x10, 0x06, 0xdf, 0xde, 0x7c, 0xc6, 0x10, 0x1a, 0x5b,
0x94, 0x19, 0xc5, 0x61, 0xfc, 0x6b, 0xef, 0x8a, 0xe3, 0xa7, 0xad, 0xc0, 0xe5,
0x2a, 0x10, 0x16, 0x87, 0xff, 0x89, 0x5e, 0xc6, 0x07, 0x66, 0x10, 0x4a, 0xd2,
0xc8, 0xf3, 0x4b, 0xe9, 0x7b, 0xb8, 0x3c, 0x11, 0xa6, 0x34, 0x05, 0x8e, 0x28,
0x7f, 0x2a, 0x47, 0x54, 0x90, 0x2d, 0xfa, 0x55, 0xce, 0x74, 0x49, 0xb9, 0x1e,
0x8b, 0xb9, 0xfd, 0xf5, 0x1e, 0xbf, 0x66, 0x78, 0xe6, 0x82, 0x2e, 0xb6, 0xaf,
0xff, 0xdc, 0xc0, 0x39, 0x29, 0x21, 0x8a, 0xc3, 0x38, 0xc9, 0x5f, 0x6c, 0xc1,
0x32, 0x4a, 0x4b, 0x8a, 0xe7, 0xf2, 0x4b, 0xe0, 0x2f, 0xf2, 0x6c, 0x86, 0xb0,
0x29, 0x31, 0xe0, 0x35, 0xfc, 0x32, 0xfd, 0x8b, 0xbb, 0x76, 0xd5, 0x92, 0xa5,
0xf2, 0xea, 0xfa, 0x4b, 0x98, 0x9c, 0xf5, 0x2b, 0x88, 0x8e, 0x32, 0x57, 0x8d,
0x28, 0x0a, 0xa5, 0x47, 0xa3, 0x49, 0x30, 0x26, 0x08, 0x42, 0x0a, 0x5f, 0xb6,
0x05, 0x6f, 0xe7, 0x6c, 0xa8, 0xbb, 0x58, 0x7d, 0x71, 0x01, 0x7b, 0x85, 0xd5,
0x51, 0x35, 0x8a, 0xc7, 0x50, 0x1b, 0x9b, 0xef, 0x25, 0xe6, 0xdb, 0xa2, 0x21,
0x03, 0x6f, 0x96, 0x59, 0x2f, 0xef, 0xbb, 0x5d, 0xe1, 0x01, 0xcb, 0x41, 0x7c,
0x1b, 0xc0, 0x3e, 0x1e, 0x0d, 0x5c, 0x8a, 0xc9, 0x7c, 0xaa, 0x65, 0x28, 0xc4,
0x59, 0xc3, 0x12, 0x93, 0x62, 0x5f, 0x5e, 0xed, 0x0c, 0x06, 0x63, 0x39, 0x65,
0x0d, 0x6d, 0xe9, 0x8d, 0x47, 0x77, 0x1f, 0xa3, 0xd6, 0xac, 0xa4, 0x64, 0x44,
0xcc, 0x21, 0xa5, 0xa6, 0xba, 0x45, 0xf2, 0x0b, 0xe3, 0x39, 0x09, 0x46, 0x0c,
0x3e, 0xaf, 0x05, 0x9b, 0x45, 0x5e, 0xff, 0xc8, 0x62, 0x33, 0x54, 0x89, 0x18,
0x47, 0x54, 0x82, 0xab, 0x20, 0xa2, 0x26, 0xc9, 0x52, 0x92, 0x95, 0x2e, 0xfb,
0x05, 0xcf, 0xb1, 0x9e, 0x2e, 0xbb, 0x5d, 0x97, 0xe7, 0x8e, 0x2c, 0x70, 0xc2,
0xe1, 0x0f, 0xa9, 0x63, 0xec, 0x8b, 0x9f, 0xee, 0xe0, 0xd9, 0xee, 0x4a, 0x38,
0x53, 0x9f, 0xd4, 0x29, 0x51, 0xae, 0x3c, 0x11, 0xae, 0xdb, 0x6a, 0xbd, 0x4d,
0x99, 0x18, 0x12, 0x62, 0x60, 0xa4, 0xcd, 0x11, 0x63, 0x6f, 0x33, 0xd6, 0x26,
0xa7, 0x0e, 0x88, 0xb1, 0xd6, 0x9c, 0x16, 0xe1, 0x2c, 0xd2, 0x62, 0x51, 0x0a,
0x1c, 0xf5, 0x13, 0x2c, 0xc5, 0x4d, 0x6c, 0x35, 0x65, 0x63, 0x15, 0xa1, 0x25,
0x4f, 0x02, 0x50, 0xc6, 0xb7, 0xaf, 0x4f, 0x38, 0xd4, 0xe6, 0xa3, 0xb1, 0xaa,
0xa8, 0x98, 0x86, 0xb0, 0x02, 0x43, 0x97, 0x88, 0x0b, 0xe8, 0xc8, 0x0b, 0x31,
0xf4, 0xe5, 0x15, 0xf9, 0xf2, 0x2b, 0x4f, 0x94, 0x58, 0xa2, 0x36, 0x2c, 0xb6,
0x3c, 0x9d, 0xae, 0xa6, 0xc3, 0xe1, 0x3d, 0x54, 0xe7, 0xd2, 0x5a, 0x16, 0x17,
0x2d, 0x96, 0xa6, 0x8b, 0x8a, 0xd2, 0x7b, 0x55, 0x74, 0x03, 0x37, 0xc6, 0x2c,
0xe3, 0x53, 0x65, 0x1e, 0x0a, 0x7c, 0x36, 0xd1, 0x58, 0xf3, 0x6d, 0xf2, 0x1c,
0x30, 0xc0, 0xf8, 0x8f, 0xe8, 0xcd, 0xe3, 0x84, 0xc5, 0xfc, 0x9f, 0x4d, 0xd4,
0xf3, 0xfe, 0xc4, 0x3f, 0x3a, 0x48, 0xfd, 0x8b, 0x20, 0x06, 0xf9, 0x27, 0x2f,
0xe2, 0x4f, 0x9f, 0xcf, 0x90, 0xa8, 0xf9, 0x09, 0xff, 0xb4, 0x35, 0x53, 0x8c,
0xf9, 0xd9, 0xa2, 0x84, 0x36, 0x0f, 0x86, 0x7f, 0x12, 0x23, 0xc2, 0x90, 0x51,
0xe0, 0xdf, 0x62, 0xfc, 0x33, 0xe7, 0x5f, 0x3d, 0x25, 0x34, 0xe6, 0x7f, 0x75,
0x66, 0xcf, 0x67, 0x50, 0x84, 0xfc, 0xfe, 0xe0, 0x26, 0x2b, 0xf7, 0xde, 0xe0,
0x75, 0x5d, 0x71, 0xd1, 0x95, 0xb3, 0xd7, 0xa6, 0xae, 0xc1, 0x50, 0x7c, 0x1b,
0x4d, 0x7f, 0xc6, 0x03, 0xad, 0xbc, 0xe1, 0x3f, 0x1b, 0x45, 0xf8, 0x31, 0x4a,
0xd2, 0x49, 0x80, 0xf2, 0xc7, 0x50, 0x14, 0x28, 0xf6, 0xfc, 0x43, 0x6c, 0xb0,
0xe6, 0x61, 0xcc, 0x64, 0x90, 0x7f, 0x25, 0xfa, 0x1f, 0x30, 0xcf, 0xaf, 0xcf,
0xfa, 0x4f, 0x73, 0x35, 0x4b, 0x80, 0x5d, 0xc2, 0x9f, 0x4c, 0xf1, 0xe8, 0x0a,
0x62, 0x4a, 0x84, 0x29, 0xbd, 0x08, 0x6a, 0xd0, 0x10, 0x5b, 0xc2, 0xa2, 0xd1,
0x38, 0x02, 0x86, 0x0b, 0x25, 0x19, 0x2a, 0x8a, 0x2c, 0x8e, 0xa4, 0xcc, 0x4a,
0x19, 0x3a, 0x93, 0x5a, 0xaf, 0x47, 0x33, 0x5d, 0xc4, 0x50, 0x10, 0x97, 0x17,
0x94, 0xd0, 0x57, 0x11, 0x17, 0x15, 0xd2, 0x62, 0x66, 0x2d, 0xaa, 0x12, 0x7f,
0x05, 0xc2, 0x61, 0x53, 0xb2, 0x2a, 0x42, 0xd2, 0x02, 0x2c, 0x76, 0xdf, 0x4a,
0x16, 0x57, 0x92, 0x62, 0x98, 0x6e, 0x59, 0xc0, 0x92, 0x5d, 0xae, 0xae, 0x45,
0x49, 0xef, 0x5b, 0xad, 0xbe, 0x44, 0xee, 0xb4, 0x88, 0x90, 0xa8, 0xf2, 0x01,
0x31, 0x49, 0xc9, 0x6d, 0x5a, 0xdd, 0xbb, 0x33, 0xb4, 0xdf, 0x68, 0x50, 0x4d,
0xd4, 0x7b, 0x3e, 0x75, 0xd8, 0xff, 0x6e, 0x05, 0xdc, 0xed, 0x07, 0xe4, 0x19,
0x1c, 0x96, 0x8e, 0x68, 0xb4, 0xea, 0xdb, 0xd5, 0xf3, 0x71, 0x8c, 0xbf, 0x3d,
0xf6, 0x3f, 0x49, 0x22, 0x83, 0xa4, 0x6e, 0xe5, 0xe8, 0x52, 0x2a, 0x82, 0x14,
0x8e, 0xae, 0xa0, 0xad, 0x5f, 0xc0, 0x13, 0xe0, 0x68, 0x2f, 0x91, 0x95, 0x5f,
0xb0, 0x7c, 0x35, 0x4f, 0x8c, 0xa6, 0xcf, 0x5e, 0x71, 0x51, 0x94, 0x08, 0xb2,
0x37, 0xda, 0xe2, 0xc2, 0x12, 0x4d, 0x61, 0xe1, 0x33, 0xcc, 0x05, 0x4a, 0x14,
0x43, 0x40, 0x5f, 0x77, 0x15, 0x87, 0xab, 0xbe, 0x85, 0xa7, 0x4e, 0x17, 0x91,
0x17, 0xb5, 0x45, 0x11, 0x1f, 0x4e, 0x84, 0xbe, 0x42, 0x69, 0xf3, 0x06, 0xa3,
0x2b, 0x4a, 0xcb, 0x97, 0x4a, 0x48, 0x1f, 0x33, 0x14, 0x3e, 0x20, 0x75, 0x8f,
0xbe, 0x67, 0xb1, 0xfa, 0x9e, 0x1b, 0xbf, 0x73, 0x69, 0xba, 0xa2, 0x8b, 0x35,
0x94, 0x79, 0x2a, 0xfc, 0x63, 0xed, 0xa1, 0x6b, 0x4a, 0xab, 0xb0, 0x75, 0x19,
0x4e, 0xaa, 0xd2, 0x14, 0xf1, 0x15, 0x4a, 0x90, 0x67, 0x48, 0x0a, 0x12, 0x15,
0x89, 0xf5, 0x06, 0x57, 0x17, 0xc8, 0x29, 0x6b, 0x31, 0x94, 0xf9, 0x39, 0xba,
0xa4, 0xc9, 0x0d, 0x4a, 0xf3, 0xe4, 0x5e, 0x15, 0x86, 0xbc, 0xec, 0x32, 0x25,
0x18, 0x2f, 0x21, 0x2a, 0x52, 0x0b, 0x24, 0x37, 0x6e, 0x93, 0x63, 0x73, 0xb9,
0x46, 0x8a, 0x92, 0x2a, 0x74, 0x49, 0xc2, 0xdc, 0x20, 0x47, 0x53, 0xe3, 0x48,
0x68, 0x48, 0x0a, 0xa8, 0x72, 0x31, 0x23, 0xc9, 0x3f, 0xc4, 0xd2, 0x14, 0x99,
0x0a, 0x69, 0x42, 0x78, 0x94, 0x30, 0x43, 0x96, 0x21, 0x42, 0x78, 0x6c, 0x16,
0xc5, 0x0f, 0xfe, 0xdc, 0x44, 0x69, 0x0e, 0x23, 0x1c, 0x9c, 0xef, 0xb0, 0xe0,
0x23, 0x5b, 0x94, 0x50, 0xef, 0xd8, 0x6f, 0x8e, 0xb9, 0x1f, 0x97, 0xe6, 0x6b,
0x8f, 0x12, 0x8f, 0x30, 0xf9, 0x34, 0x11, 0xa4, 0xab, 0xaa, 0x38, 0x4b, 0x3a,
0x5d, 0x49, 0x3e, 0xa3, 0xc0, 0x51, 0x12, 0x60, 0x31, 0x58, 0xac, 0xcf, 0x42,
0xdf, 0x71, 0x42, 0x34, 0x8d, 0xc4, 0xcd, 0xf7, 0x9a, 0x0a, 0x58, 0x6c, 0x54,
0x51, 0xa2, 0x9b, 0x7a, 0x81, 0x5d, 0x47, 0x51, 0x96, 0x3c, 0x36, 0x8d, 0x68,
0xd1, 0xa0, 0x20, 0xcc, 0x96, 0x27, 0x52, 0x14, 0x4b, 0x4d, 0x58, 0x92, 0xce,
0x54, 0x21, 0xf3, 0xf2, 0xc2, 0x06, 0xbb, 0x46, 0xa2, 0x65, 0x8b, 0x93, 0xd9,
0x39, 0xfd, 0x38, 0x28, 0x0d, 0x12, 0x1e, 0x9d, 0xc6, 0x53, 0x25, 0x0c, 0xa6,
0x22, 0x91, 0xd6, 0xdc, 0x21, 0x49, 0x34, 0x97, 0x50, 0xda, 0xdb, 0xa4, 0x74,
0xb8, 0x94, 0x2c, 0x25, 0x21, 0x2d, 0xc9, 0x16, 0x16, 0x10, 0x95, 0xd2, 0x15,
0x21, 0x0a, 0x44, 0x64, 0x07, 0x9b, 0x2d, 0xc3, 0x52, 0xe1, 0xb1, 0x04, 0xa4,
0xa9, 0x3a, 0x26, 0x4f, 0x54, 0x50, 0x4d, 0x60, 0x3c, 0x08, 0x93, 0xee, 0x10,
0x15, 0xa0, 0xb8, 0x6c, 0x66, 0x28, 0x9a, 0x68, 0x2f, 0x75, 0x5b, 0xc1, 0x13,
0xd0, 0x11, 0xe4, 0x70, 0x60, 0xc8, 0x60, 0xc8, 0x5b, 0x2b, 0x33, 0xfe, 0xc5,
0x2a, 0x15, 0x44, 0x64, 0xa9, 0x58, 0x65, 0x06, 0x51, 0x61, 0x3e, 0xf8, 0xb3,
0xf4, 0xcf, 0x28, 0x31, 0x53, 0xfd, 0xf7, 0xf8, 0xa1, 0x18, 0x37, 0xbb, 0xc8,
0xd1, 0x38, 0xa5, 0x79, 0x72, 0x90, 0x1a, 0x07, 0x34, 0x39, 0x60, 0x7e, 0x3e,
0x3f, 0xfe, 0xfc, 0x4b, 0x88, 0xff, 0xc4, 0x1d, 0xea, 0x7f, 0x02, 0x9e, 0xf1,
0xcf, 0x5f, 0x52, 0xfe, 0x43, 0x17, 0xf2, 0x1f, 0x52, 0xcc, 0xab, 0x71, 0x9d,
0x04, 0x57, 0x9a, 0x50, 0x2b, 0x05, 0x44, 0x14, 0xa8, 0x69, 0x21, 0x70, 0x4a,
0x39, 0x65, 0x1c, 0x26, 0xc5, 0x02, 0x8b, 0xce, 0x25, 0xfc, 0xb8, 0x42, 0x63,
0x52, 0x60, 0x31, 0x9b, 0x05, 0xb7, 0xad, 0xdf, 0x05, 0x5f, 0x06, 0xc5, 0xe2,
0x0a, 0x28, 0xc9, 0x49, 0x2b, 0x70, 0x98, 0xd2, 0xcc, 0x0c, 0x0e, 0xb1, 0xb1,
0x84, 0xab, 0x05, 0xf8, 0x9f, 0xc8, 0xf9, 0xa2, 0xe5, 0xba, 0x98, 0xba, 0xcd,
0x5f, 0x10, 0x0c, 0x0e, 0x8d, 0xc6, 0x62, 0x9d, 0xe3, 0x31, 0x78, 0x34, 0x36,
0x61, 0xff, 0x5f,
};
optimizesize void *__gb2312_decmap(void) {
return xloadzd(&__gb2312_decmap_ptr,
__gb2312_decmap_rodata,
11651, 13102, 7482, 2, 0xa41681b8u); /* 77.8602% profit */
}
| 72,056 | 910 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/jisx0213_1_bmp_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) jisx0213_1_bmp_decmap_ptr;
static const unsigned char jisx0213_1_bmp_decmap_rodata[] = {
0x63, 0x60, 0x18, 0x1c, 0x80, 0x91, 0x41, 0xbf, 0x36, 0x80, 0x41, 0xb1, 0x6e,
0x1d, 0x83, 0x76, 0xd9, 0x2f, 0x06, 0x6d, 0x0f, 0x09, 0x46, 0xcb, 0xba, 0x38,
0x46, 0xa7, 0xba, 0xd9, 0x8c, 0x8e, 0x35, 0xd7, 0x19, 0x15, 0xeb, 0x4c, 0x99,
0x14, 0xeb, 0x26, 0x03, 0xf1, 0x47, 0x20, 0xf6, 0x67, 0x56, 0xac, 0x5b, 0x0b,
0xc4, 0xdc, 0x2c, 0x8a, 0x75, 0x03, 0xe9, 0xe6, 0x4c, 0x96, 0xd0, 0x3a, 0x86,
0x41, 0x06, 0x26, 0xb3, 0xa8, 0xd7, 0xbd, 0x06, 0x86, 0x8b, 0x27, 0xab, 0x62,
0xdd, 0x72, 0x20, 0x66, 0x65, 0x53, 0xac, 0x4d, 0x62, 0x53, 0xac, 0x3b, 0x00,
0xc4, 0x72, 0xec, 0x8a, 0x75, 0x35, 0x40, 0x7c, 0x0b, 0x88, 0x2d, 0x38, 0x14,
0x07, 0x9d, 0xdb, 0x47, 0x01, 0xfd, 0x01, 0x00,
};
optimizesize void *jisx0213_1_bmp_decmap(void) {
return xload(&jisx0213_1_bmp_decmap_ptr,
jisx0213_1_bmp_decmap_rodata,
112, 1024); /* 10.9375% profit */
}
| 1,040 | 22 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/gb18030ext_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) gb18030ext_encmap_ptr;
static const unsigned char gb18030ext_encmap_rodata[] = {
0x63, 0x60, 0x60, 0x60, 0x60, 0x64, 0xf8, 0xf9, 0x93, 0x61, 0x80, 0x00, 0x13,
0xc3, 0x9a, 0x35, 0xe4, 0xe8, 0x63, 0x66, 0x68, 0x3c, 0xe5, 0xcb, 0xf0, 0xe1,
0x77, 0x24, 0x83, 0x9d, 0x1d, 0xb2, 0x78, 0x14, 0x83, 0x7b, 0x71, 0x3b, 0xc3,
0xbc, 0x79, 0x1d, 0x0c, 0x7c, 0x52, 0x30, 0xb1, 0xa9, 0x0c, 0x12, 0xf7, 0x63,
0x19, 0x8b, 0x8b, 0xe3, 0x18, 0xfd, 0xfc, 0xe2, 0x19, 0xf3, 0x1e, 0x20, 0xab,
0xbf, 0xc4, 0x18, 0x16, 0x76, 0x99, 0x31, 0x3e, 0x1e, 0xc4, 0xbe, 0xc2, 0x68,
0x7e, 0xb7, 0x9a, 0xe9, 0xda, 0x35, 0x10, 0xbb, 0x86, 0xc9, 0x27, 0x71, 0x12,
0x93, 0x72, 0x2f, 0x88, 0xfd, 0x97, 0xc9, 0x7d, 0x3b, 0x4c, 0x7d, 0x1e, 0x73,
0xf9, 0xe2, 0xd9, 0xcc, 0xc2, 0xeb, 0x18, 0x46, 0xc1, 0x28, 0xa0, 0x02, 0x30,
0x67, 0x61, 0xf8, 0x6f, 0xce, 0x0a, 0xc4, 0x6c, 0x40, 0xcc, 0x0e, 0xc4, 0x1c,
0x40, 0xcc, 0x09, 0xc4, 0x5c, 0x40, 0xcc, 0x0d, 0xc4, 0x3c, 0x0c, 0x29, 0xb4,
0xb4, 0x1f, 0x00,
};
optimizesize void *gb18030ext_encmap(void) {
return xload(&gb18030ext_encmap_ptr,
gb18030ext_encmap_rodata,
146, 1024); /* 14.2578% profit */
}
| 1,230 | 25 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__big5hkscs_bmp_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __big5hkscs_bmp_encmap_ptr;
static const unsigned char __big5hkscs_bmp_encmap_rodata[] = {
0xed, 0x7d, 0xf9, 0x3f, 0x55, 0xdd, 0xf7, 0xf8, 0xbf, 0xd6, 0x40, 0x21, 0x0a,
0x95, 0x21, 0x34, 0x21, 0xa2, 0x32, 0x26, 0x14, 0xbf, 0x3e, 0xd7, 0x83, 0x4a,
0x49, 0x28, 0x45, 0xb3, 0x06, 0x49, 0x66, 0x4a, 0xa2, 0xb3, 0x0f, 0xa5, 0x28,
0xa9, 0x4c, 0x99, 0xc7, 0x42, 0x4a, 0xba, 0xee, 0xbd, 0x7c, 0x57, 0xfb, 0xd9,
0xcf, 0x7e, 0x9f, 0x61, 0x9f, 0xe9, 0xde, 0x5b, 0x3d, 0x9f, 0xd7, 0xeb, 0x7b,
0x5f, 0x2f, 0xee, 0x39, 0x67, 0xaf, 0xbd, 0xf6, 0x9a, 0xd7, 0xda, 0x7b, 0x9f,
0x73, 0xee, 0x7b, 0x6e, 0xcd, 0xd0, 0x27, 0xd0, 0xe4, 0x6f, 0x12, 0x9e, 0x87,
0x98, 0x82, 0x4c, 0xab, 0x12, 0x98, 0x7d, 0xa6, 0x3d, 0x26, 0xa5, 0xfe, 0x51,
0xa6, 0x48, 0x51, 0x5b, 0x8c, 0xe9, 0x30, 0xee, 0x9f, 0x60, 0x8a, 0xa3, 0xd7,
0x8f, 0x99, 0x8e, 0xd2, 0x63, 0x0b, 0x7f, 0xdc, 0x94, 0x02, 0x67, 0x57, 0x4c,
0x7e, 0xa6, 0x08, 0x93, 0x16, 0x75, 0xbb, 0x4c, 0x87, 0x44, 0x30, 0xc1, 0xa6,
0x23, 0x1a, 0x7d, 0x62, 0x4d, 0x6b, 0x0e, 0x7d, 0xac, 0xfc, 0x6e, 0x53, 0xa2,
0x00, 0xc7, 0x0a, 0x6f, 0xac, 0x7f, 0xb2, 0x83, 0xe3, 0xff, 0x17, 0x3e, 0x01,
0xa6, 0x83, 0xc0, 0x45, 0xbc, 0x69, 0xaf, 0x29, 0x09, 0xbe, 0x53, 0xe1, 0xef,
0x04, 0xfc, 0xa5, 0xc1, 0x5f, 0x3a, 0xfc, 0x95, 0x98, 0xbe, 0xf3, 0xd1, 0x98,
0xcb, 0x1f, 0x22, 0xd9, 0x2c, 0x0b, 0xce, 0x6e, 0xc9, 0xa4, 0xb0, 0xca, 0x94,
0xa3, 0x59, 0x45, 0xba, 0x4b, 0xa2, 0x36, 0x1b, 0xff, 0x67, 0x64, 0xf1, 0x81,
0x33, 0x23, 0xb5, 0xf6, 0xaf, 0xe8, 0x1b, 0x5a, 0x42, 0xdf, 0xd1, 0x32, 0xfa,
0x81, 0x56, 0x90, 0x05, 0x59, 0x91, 0x0d, 0xad, 0xa2, 0x75, 0xfc, 0x7a, 0x7e,
0x03, 0xbf, 0x91, 0x77, 0xe1, 0x5d, 0xf9, 0x4d, 0xfc, 0x66, 0xde, 0x8d, 0x77,
0xe7, 0x3d, 0xf8, 0x2d, 0xbc, 0x27, 0xef, 0xc5, 0x6f, 0xe5, 0xb7, 0xf1, 0xde,
0xbc, 0x0f, 0xef, 0xcb, 0x6f, 0xe7, 0x77, 0xf0, 0x3b, 0x79, 0x3f, 0xde, 0x9f,
0x0f, 0xe0, 0x03, 0xf9, 0x5d, 0x7c, 0x30, 0x1f, 0xc2, 0xef, 0xe6, 0xf7, 0xf0,
0x7b, 0xf9, 0x7d, 0xfc, 0x7e, 0x3e, 0x94, 0x0f, 0xe3, 0xc3, 0xf9, 0x03, 0x7c,
0x04, 0x1f, 0xc9, 0x1f, 0xe4, 0xa3, 0xf8, 0x68, 0xfe, 0x10, 0x7f, 0x98, 0x3f,
0xc2, 0xc7, 0xf0, 0xb1, 0x7c, 0x1c, 0x1f, 0xcf, 0x27, 0xf0, 0x89, 0xfc, 0x51,
0x90, 0x4a, 0x10, 0x1f, 0x6a, 0xba, 0x66, 0x0a, 0x37, 0xdd, 0x30, 0xbd, 0x66,
0xca, 0xe8, 0x0d, 0xff, 0x5f, 0xb6, 0xb5, 0x2a, 0xae, 0x9a, 0xab, 0xe1, 0x6a,
0xb9, 0x3a, 0xae, 0x9e, 0x6b, 0xe0, 0x1a, 0xb9, 0x47, 0xdc, 0x63, 0xee, 0x4f,
0xd2, 0x73, 0x8c, 0x4f, 0xfe, 0x85, 0xf2, 0x4a, 0xe2, 0x4b, 0x4d, 0xb7, 0x4d,
0x25, 0xdc, 0x15, 0xee, 0x2a, 0x77, 0x8d, 0xbb, 0xce, 0xdd, 0xe0, 0x6e, 0x72,
0xb7, 0xb8, 0x52, 0xee, 0x36, 0x93, 0xe7, 0x3b, 0xdc, 0x5d, 0xee, 0x1e, 0x57,
0xc6, 0xdd, 0xe7, 0xca, 0xb9, 0x07, 0x5c, 0x05, 0xf7, 0x90, 0xab, 0xe4, 0xcc,
0xe6, 0x1f, 0xe6, 0x09, 0xf3, 0xbc, 0x79, 0xc0, 0x3c, 0x65, 0xfe, 0x62, 0xfe,
0x68, 0xfe, 0x64, 0x5e, 0x32, 0x8f, 0x9a, 0xe7, 0xcc, 0xcb, 0xe6, 0x71, 0xf3,
0xb4, 0x79, 0xd1, 0x3c, 0x64, 0x9e, 0x35, 0x7f, 0x33, 0x8f, 0x98, 0x27, 0xcd,
0x0b, 0xe6, 0x41, 0xf3, 0x67, 0xf3, 0x77, 0xf3, 0x98, 0x79, 0xc6, 0xfc, 0xd5,
0x3c, 0x6c, 0x5e, 0x31, 0x5b, 0xcc, 0x36, 0xb3, 0xd5, 0x3c, 0xc1, 0xf5, 0x10,
0x0e, 0xdf, 0xc1, 0xf7, 0x7b, 0xfe, 0x03, 0xdf, 0x0b, 0xdf, 0x7d, 0xf0, 0xd7,
0xcf, 0x0f, 0x48, 0x78, 0x1f, 0x14, 0x9d, 0x7f, 0xe4, 0x87, 0x24, 0xed, 0xc3,
0x70, 0x3e, 0x82, 0xaf, 0x8d, 0xc2, 0xff, 0x31, 0xf8, 0x1b, 0x97, 0x40, 0x4c,
0x08, 0xce, 0x27, 0xe1, 0x78, 0x4a, 0xd2, 0x3e, 0x4d, 0xce, 0x67, 0xe0, 0x7b,
0x96, 0xff, 0x04, 0xff, 0x3f, 0x8b, 0x20, 0xe6, 0xf8, 0x79, 0xd1, 0xf9, 0x02,
0x3d, 0xfb, 0xc2, 0x77, 0x70, 0x43, 0xdc, 0x30, 0x37, 0xf2, 0x07, 0xec, 0x65,
0x92, 0x9b, 0xe2, 0xa6, 0xb9, 0x19, 0x6e, 0x96, 0xfb, 0xc4, 0x7d, 0xe6, 0xe6,
0xb8, 0x79, 0x6e, 0x81, 0xfb, 0xc2, 0x2d, 0x72, 0x5f, 0xb9, 0x6f, 0xdc, 0x12,
0xf7, 0x9d, 0x5b, 0xe6, 0x7e, 0x70, 0x66, 0x6e, 0x85, 0xb3, 0x70, 0x56, 0xce,
0xc6, 0xad, 0x72, 0xeb, 0xd0, 0x7a, 0xb4, 0x01, 0x6d, 0x44, 0x2e, 0xc8, 0x15,
0x6d, 0x42, 0x9b, 0x91, 0x1b, 0x72, 0x47, 0x1e, 0x68, 0x0b, 0xf2, 0x44, 0x5e,
0x68, 0x2b, 0xda, 0x86, 0xbc, 0x91, 0x0f, 0xf2, 0x45, 0xdb, 0xd1, 0x0e, 0xb4,
0x13, 0xf9, 0x21, 0x7f, 0x14, 0x80, 0x02, 0xd1, 0x2e, 0x14, 0x84, 0x82, 0x51,
0x08, 0xda, 0x8d, 0xf6, 0xa0, 0xbd, 0x68, 0x1f, 0xda, 0x8f, 0x42, 0x51, 0x18,
0x0a, 0x47, 0x07, 0x50, 0x04, 0x8a, 0x44, 0x07, 0x51, 0x14, 0x8a, 0x46, 0x87,
0xd0, 0x61, 0x74, 0x04, 0xc5, 0xa0, 0x58, 0x14, 0x87, 0xe2, 0x51, 0x02, 0x4a,
0x44, 0x47, 0x51, 0x12, 0x3a, 0x86, 0x92, 0x51, 0x0a, 0x4a, 0x95, 0xc4, 0xad,
0x6e, 0xfe, 0x2d, 0xdf, 0xcf, 0x0d, 0x60, 0x69, 0x1d, 0x47, 0x27, 0x50, 0x1a,
0x4a, 0x47, 0x25, 0xe8, 0x0a, 0xba, 0x8a, 0xae, 0xa1, 0xeb, 0xe8, 0x06, 0xba,
0x89, 0x6e, 0xa1, 0x52, 0x74, 0x1b, 0xdd, 0x41, 0x77, 0xd1, 0x3d, 0x54, 0x86,
0xee, 0xa3, 0x72, 0xf4, 0x00, 0x55, 0xa0, 0x87, 0xa8, 0x12, 0x55, 0xa1, 0x6a,
0x54, 0x83, 0x6a, 0x51, 0x1d, 0xaa, 0x47, 0x0d, 0xa8, 0x11, 0x3d, 0x42, 0x8f,
0x51, 0x13, 0x7a, 0x82, 0x9a, 0xd1, 0x53, 0xd4, 0x82, 0x5a, 0xd1, 0x33, 0xc4,
0x21, 0x84, 0x78, 0xd4, 0x86, 0xda, 0xd1, 0x73, 0xf4, 0x02, 0x75, 0xa0, 0x97,
0xe8, 0x15, 0xea, 0x44, 0x5d, 0xe8, 0x35, 0x7a, 0x83, 0xba, 0xd1, 0x5b, 0xd4,
0x83, 0xde, 0xa1, 0xf7, 0xe8, 0x03, 0xea, 0x45, 0x7d, 0xa8, 0x1f, 0x0d, 0xa0,
0x41, 0xf4, 0x11, 0x0d, 0xa1, 0x61, 0x34, 0x82, 0x46, 0xd1, 0x18, 0x1a, 0x47,
0x13, 0x68, 0x12, 0x4d, 0xa1, 0x69, 0x34, 0x83, 0x66, 0xd1, 0x27, 0xf4, 0x19,
0xcd, 0xa1, 0x79, 0xb4, 0x80, 0xbe, 0xa0, 0x45, 0x01, 0x17, 0xa3, 0x5c, 0x2f,
0xd7, 0xc7, 0xad, 0x33, 0xad, 0x37, 0x6d, 0x30, 0x6d, 0x34, 0xb9, 0x98, 0x36,
0x99, 0xdc, 0x4d, 0x1e, 0x26, 0x2f, 0xd3, 0x36, 0x93, 0xb7, 0xc9, 0xc7, 0xe4,
0x6b, 0xda, 0x61, 0xda, 0x69, 0x4a, 0xe1, 0xbb, 0xf8, 0x63, 0x67, 0x58, 0x3a,
0xfb, 0x98, 0x27, 0xbf, 0xf6, 0x2d, 0x6b, 0x6d, 0xed, 0x6d, 0x86, 0x31, 0xdd,
0x77, 0x9c, 0x55, 0x6b, 0xfd, 0x78, 0x41, 0x78, 0x16, 0xb9, 0xf2, 0xf3, 0x7f,
0x6f, 0x46, 0xe0, 0x29, 0xbd, 0xd8, 0xfb, 0x30, 0x35, 0x21, 0xaa, 0xf0, 0xfd,
0x0c, 0x8a, 0x97, 0xf3, 0x94, 0xa0, 0x7b, 0xff, 0xa6, 0xfd, 0x32, 0x45, 0x23,
0x9d, 0x37, 0xc2, 0xf5, 0xf6, 0x4b, 0xff, 0x1e, 0xdd, 0x2e, 0x32, 0xd2, 0x6f,
0xe6, 0xc2, 0x91, 0xbf, 0x7f, 0xaf, 0x6f, 0xf2, 0x99, 0x7a, 0xa0, 0xa6, 0x40,
0x86, 0x33, 0x02, 0x39, 0x6e, 0xc9, 0x92, 0xd4, 0x91, 0x16, 0x76, 0xbf, 0xcf,
0xb8, 0xcf, 0x40, 0x2e, 0x44, 0x26, 0xda, 0xbb, 0xf2, 0xd2, 0x1b, 0x05, 0x1e,
0xfb, 0xce, 0xe8, 0xd2, 0x79, 0xae, 0x59, 0xa6, 0xd1, 0x54, 0x32, 0xbe, 0x45,
0xd2, 0x62, 0xbd, 0xa4, 0xa3, 0x86, 0x85, 0x3e, 0x4d, 0xa4, 0xdf, 0x2a, 0x7c,
0x4f, 0xe0, 0xe3, 0x4d, 0x44, 0x6f, 0x73, 0xe4, 0x3b, 0xbd, 0x98, 0xd8, 0x68,
0x31, 0x8d, 0xc5, 0xf9, 0x70, 0x96, 0xa9, 0x4f, 0xca, 0xb6, 0xec, 0xc7, 0x99,
0x1f, 0x2e, 0x8b, 0xaf, 0xcd, 0x62, 0x29, 0xbc, 0xbb, 0x1c, 0xa5, 0x8a, 0x23,
0xf8, 0xe2, 0xda, 0xda, 0x03, 0x19, 0xc4, 0x6e, 0xe0, 0x37, 0xf6, 0x2f, 0x49,
0x6d, 0x25, 0xb1, 0xb4, 0x4e, 0x42, 0xe9, 0x01, 0x2b, 0xa5, 0x58, 0x26, 0xdf,
0x4f, 0x85, 0x77, 0x4e, 0xb9, 0xad, 0xfc, 0x7b, 0xe6, 0x7a, 0x52, 0x8b, 0x8f,
0x18, 0xa0, 0x26, 0x38, 0xdb, 0xa8, 0x8d, 0x0d, 0x8a, 0xb4, 0x30, 0x9f, 0x61,
0xb4, 0xff, 0x34, 0xd3, 0x5b, 0x1b, 0x28, 0xd6, 0x41, 0xb0, 0xaf, 0x5a, 0x72,
0x56, 0x7f, 0x3e, 0x9c, 0xd8, 0x42, 0xcf, 0x39, 0x02, 0x77, 0x11, 0xfb, 0x35,
0xf5, 0x5f, 0x57, 0x88, 0x16, 0x69, 0x96, 0x80, 0x9c, 0x30, 0x98, 0x78, 0xf9,
0xe5, 0x7b, 0x5d, 0x60, 0xe1, 0x0e, 0x3a, 0x8b, 0xa0, 0xf7, 0xa4, 0xc8, 0xe7,
0x03, 0x49, 0x24, 0x5b, 0xca, 0xa9, 0xc5, 0xd7, 0xaf, 0xd8, 0xaa, 0x2d, 0x6a,
0x54, 0xaf, 0x9c, 0xf1, 0x87, 0x1e, 0x37, 0xa8, 0xee, 0xea, 0x00, 0xba, 0x1c,
0xf7, 0x6c, 0xb5, 0xa9, 0xf5, 0x2b, 0xb9, 0xf8, 0xbf, 0xe3, 0xc5, 0x1c, 0x73,
0x0e, 0xe4, 0x6e, 0x51, 0x7c, 0x73, 0x3d, 0xbf, 0x3d, 0x1f, 0xcf, 0x9d, 0x80,
0xfe, 0x66, 0x8b, 0x8f, 0x48, 0xa7, 0xf7, 0x04, 0x36, 0x70, 0x08, 0x8f, 0x12,
0xbd, 0xe2, 0x48, 0x74, 0x78, 0x7a, 0x41, 0xa9, 0xe5, 0x78, 0xa1, 0x73, 0xe3,
0xd0, 0x5e, 0x99, 0x8d, 0x6f, 0x39, 0x6b, 0x14, 0xc7, 0x23, 0x4a, 0x53, 0x4d,
0x8e, 0xb1, 0x9e, 0x5b, 0xb2, 0xed, 0xa3, 0xba, 0xf2, 0xdc, 0xff, 0x8e, 0x9f,
0xe1, 0x85, 0x80, 0x85, 0x4b, 0x61, 0x0c, 0x5c, 0x07, 0x45, 0x5a, 0x8a, 0x50,
0x1c, 0x6d, 0x46, 0x66, 0x51, 0xf3, 0x70, 0x25, 0x32, 0x7b, 0xed, 0x17, 0x7c,
0x66, 0xcf, 0xae, 0xfd, 0xa1, 0xcf, 0x06, 0xab, 0x33, 0xb0, 0x1c, 0x90, 0xe9,
0xb8, 0x83, 0xda, 0xfa, 0x00, 0xe6, 0xcd, 0xd7, 0x89, 0x72, 0x7b, 0x91, 0x79,
0x58, 0x01, 0xdb, 0x11, 0x5d, 0xa3, 0xdc, 0x62, 0xc6, 0xb0, 0x1b, 0x8a, 0x92,
0x88, 0x51, 0xc1, 0x1a, 0x6b, 0x80, 0xaf, 0x30, 0xdd, 0xb2, 0xfe, 0x2a, 0xc9,
0xe9, 0x7b, 0x4f, 0x4b, 0x21, 0x12, 0xb3, 0x5b, 0x24, 0x55, 0x50, 0xa7, 0x28,
0x93, 0x27, 0x82, 0x95, 0x3f, 0x16, 0x44, 0x0c, 0x1e, 0x47, 0xb2, 0xfa, 0x8b,
0x3a, 0xd7, 0x82, 0x9c, 0xa4, 0xad, 0x3a, 0x41, 0xb6, 0xd9, 0x85, 0xfd, 0xb3,
0x52, 0x64, 0x29, 0x6e, 0x0a, 0xd5, 0x47, 0x1a, 0x1e, 0x3f, 0x0d, 0xb7, 0x3e,
0xfd, 0xdb, 0x03, 0xa2, 0x67, 0x09, 0xbe, 0xd2, 0xa5, 0x59, 0x91, 0x55, 0x5a,
0x37, 0x6b, 0xd6, 0x01, 0xd7, 0xce, 0xf6, 0x32, 0x6a, 0x11, 0x1f, 0x43, 0xd5,
0xde, 0x0d, 0x91, 0x84, 0x9e, 0x51, 0x7c, 0xad, 0x54, 0xc7, 0xc9, 0x90, 0xf3,
0xab, 0x72, 0x25, 0x31, 0xdc, 0x1a, 0xfd, 0x8b, 0x6b, 0xca, 0x3b, 0x3a, 0x35,
0x37, 0xa5, 0x23, 0x17, 0xdd, 0x73, 0xd8, 0x0a, 0xdc, 0x41, 0x1a, 0xcd, 0x1a,
0xb1, 0x2d, 0x06, 0x6c, 0xbb, 0x5c, 0x36, 0x52, 0x7a, 0xee, 0xca, 0x69, 0x16,
0x74, 0x4a, 0xae, 0xf4, 0x4a, 0x85, 0xac, 0xef, 0x9c, 0x8a, 0x9f, 0x1d, 0x2f,
0x90, 0x59, 0x8c, 0x01, 0x2e, 0x6b, 0x24, 0xb0, 0x0f, 0x35, 0x73, 0x5b, 0x43,
0x76, 0xbd, 0x0c, 0x7f, 0x63, 0xb6, 0x0b, 0xe1, 0xcd, 0xd3, 0xa6, 0x3b, 0x2b,
0xfe, 0x35, 0x86, 0xe5, 0x38, 0x24, 0x91, 0xe6, 0x76, 0x9b, 0x3d, 0x7a, 0x69,
0x01, 0x9a, 0x6a, 0x49, 0x74, 0x58, 0x80, 0xac, 0x36, 0xad, 0x2b, 0xff, 0x7c,
0x17, 0x40, 0x3d, 0x53, 0x95, 0x5a, 0xbb, 0xa0, 0xf5, 0x45, 0x76, 0x88, 0xad,
0xea, 0xec, 0x3e, 0x42, 0xe7, 0x0f, 0x12, 0x81, 0x7c, 0x71, 0x16, 0x9e, 0x2a,
0xfe, 0x33, 0x59, 0xef, 0xfa, 0xc5, 0xdf, 0x39, 0x9a, 0x5f, 0xd6, 0x9f, 0x5d,
0xa9, 0xec, 0x01, 0x6d, 0x3c, 0x21, 0xd9, 0x62, 0x90, 0x4a, 0xfc, 0xb5, 0x20,
0x7f, 0x5c, 0x57, 0x8d, 0x06, 0x57, 0x89, 0xee, 0xfa, 0xb2, 0x67, 0xb2, 0xee,
0x33, 0xe6, 0x25, 0x55, 0xba, 0x2b, 0x3c, 0x77, 0x99, 0xb5, 0x76, 0x31, 0xed,
0x77, 0x56, 0x60, 0x3f, 0x1c, 0xd0, 0xf9, 0x12, 0x43, 0x59, 0x4f, 0x2b, 0x63,
0x0e, 0xc4, 0x3e, 0xdf, 0x23, 0xca, 0xec, 0xcf, 0xce, 0xcf, 0x53, 0x3c, 0xef,
0x04, 0xdc, 0x2e, 0x48, 0x6c, 0xf7, 0x86, 0xa4, 0x1e, 0x68, 0xc2, 0x95, 0xdf,
0x47, 0xd0, 0xda, 0x57, 0x0a, 0xe9, 0x0e, 0x71, 0x67, 0x49, 0x67, 0xa4, 0x88,
0xcf, 0x17, 0x9f, 0x47, 0x8b, 0x64, 0x66, 0x63, 0xca, 0xda, 0x5b, 0x34, 0xaf,
0x78, 0x51, 0x14, 0x0e, 0xfc, 0xb8, 0x60, 0xbb, 0x39, 0x52, 0x50, 0x22, 0x88,
0x79, 0xa1, 0x92, 0xf5, 0x95, 0x5e, 0x05, 0x0f, 0xda, 0x7e, 0x66, 0x1a, 0xcb,
0xac, 0x4a, 0x32, 0x13, 0x4d, 0xc9, 0x8f, 0xc2, 0x73, 0xd5, 0x10, 0x7a, 0x3d,
0x34, 0xfb, 0x60, 0x5e, 0xec, 0xe5, 0xdf, 0x6f, 0x95, 0x51, 0x58, 0x63, 0x88,
0xe6, 0xc3, 0x77, 0x8a, 0x73, 0x51, 0xaf, 0x55, 0x47, 0xc6, 0x19, 0xb8, 0xf4,
0x7b, 0xf8, 0xb1, 0xac, 0x36, 0xe6, 0xbf, 0xc0, 0xba, 0x2d, 0x27, 0x33, 0x91,
0x30, 0x51, 0xae, 0x8a, 0x11, 0xc5, 0xd8, 0x3a, 0xdc, 0xf6, 0x89, 0xce, 0x59,
0xe6, 0xb0, 0x0f, 0xb5, 0x80, 0xe5, 0x7c, 0x27, 0xd7, 0x6c, 0xa7, 0x9e, 0x51,
0x3b, 0x3a, 0x70, 0xfe, 0x08, 0x96, 0xc1, 0xc0, 0xf9, 0xdb, 0xd8, 0x26, 0x5e,
0xe3, 0xe8, 0xb9, 0xef, 0xfc, 0x73, 0x0a, 0xb1, 0x00, 0xbd, 0x42, 0xc0, 0xc6,
0x47, 0xa9, 0x2f, 0xbe, 0xc0, 0x6d, 0x07, 0x73, 0x3b, 0x04, 0xd6, 0xf8, 0x12,
0x8e, 0xad, 0x18, 0xff, 0xd5, 0xdc, 0xfd, 0xc4, 0xea, 0xab, 0x01, 0x73, 0x68,
0xee, 0x66, 0x91, 0x6d, 0x77, 0xe6, 0xaf, 0xfd, 0x47, 0x3e, 0x5d, 0x94, 0x92,
0xa3, 0xb9, 0x43, 0x0c, 0xcf, 0x89, 0xcf, 0x35, 0x1c, 0x0d, 0x0d, 0xf1, 0xb6,
0xf0, 0xcb, 0xea, 0xb5, 0x0f, 0x12, 0x3a, 0x76, 0xa9, 0x46, 0x97, 0x3e, 0x0a,
0x3d, 0x20, 0xa3, 0xff, 0x96, 0xe4, 0xca, 0x61, 0x05, 0x9a, 0x2d, 0x7f, 0x97,
0xfd, 0xdd, 0x46, 0x67, 0xb5, 0x21, 0x3a, 0xb3, 0xd2, 0x98, 0x9d, 0xb6, 0x30,
0xa1, 0xd0, 0x6f, 0x4a, 0x05, 0x9f, 0x17, 0xa1, 0xdc, 0x9f, 0xbd, 0x0e, 0x8e,
0x2d, 0xf7, 0x2e, 0x8d, 0x78, 0xb3, 0x14, 0xd3, 0x27, 0x38, 0x6a, 0xf9, 0xad,
0x59, 0xf6, 0x9b, 0x2e, 0xa9, 0xd4, 0x12, 0x7e, 0x26, 0x65, 0x31, 0xa8, 0x51,
0xc3, 0x6e, 0xbb, 0x44, 0x35, 0x2c, 0x67, 0xb8, 0x5e, 0xf1, 0x00, 0x6b, 0x4a,
0xbf, 0xe4, 0x92, 0xbd, 0x9a, 0x3f, 0x45, 0x33, 0xec, 0x3a, 0x5a, 0xfb, 0xb6,
0xe5, 0x3a, 0x47, 0x0a, 0x6f, 0x72, 0x7f, 0x97, 0xbc, 0x37, 0x51, 0xda, 0x9f,
0x40, 0x15, 0xd0, 0xa5, 0x32, 0xee, 0x56, 0xec, 0x47, 0x09, 0xe7, 0x34, 0xd7,
0xd3, 0x9c, 0xb0, 0xe6, 0xe2, 0x56, 0xa0, 0xa3, 0x72, 0x17, 0xc0, 0xec, 0xa4,
0x95, 0xc0, 0x56, 0x85, 0x9e, 0xab, 0x27, 0xb5, 0x31, 0xee, 0x01, 0x0e, 0x03,
0x19, 0x70, 0x9f, 0x72, 0xe7, 0x75, 0xe8, 0x63, 0xaf, 0xdd, 0x7e, 0x92, 0x78,
0xca, 0x31, 0x69, 0xed, 0x64, 0xf0, 0xec, 0xa2, 0xa0, 0xa7, 0xe7, 0x84, 0x4a,
0x3f, 0x1d, 0x12, 0x0e, 0x94, 0xc0, 0x04, 0xa9, 0xf4, 0x69, 0xd5, 0xc5, 0xbd,
0x2b, 0xc9, 0x34, 0x35, 0xb8, 0xe2, 0xdc, 0x78, 0x7e, 0xed, 0xb7, 0x7e, 0x3a,
0x44, 0x32, 0x69, 0x3b, 0xef, 0x6d, 0xab, 0x3b, 0xb9, 0xf6, 0x1f, 0xf8, 0x70,
0xe7, 0x9c, 0x8d, 0x31, 0x02, 0x6b, 0x6a, 0xd4, 0xc1, 0xc8, 0x5d, 0x27, 0xca,
0x77, 0x56, 0x83, 0xab, 0x16, 0x49, 0x82, 0xde, 0x3e, 0x2a, 0x3b, 0x84, 0x09,
0x98, 0xd6, 0x75, 0x50, 0x3d, 0x6f, 0x2b, 0x4a, 0x2d, 0x08, 0xd3, 0x94, 0x45,
0x89, 0x0e, 0xcb, 0xbd, 0x2e, 0x81, 0xb9, 0x59, 0xb0, 0xf6, 0x1f, 0xfd, 0x7c,
0xd6, 0x6d, 0x81, 0xf7, 0x80, 0x87, 0x74, 0x95, 0x3b, 0x51, 0x8e, 0xe4, 0xc6,
0x42, 0x1c, 0xe9, 0x54, 0x99, 0x71, 0x3e, 0x14, 0x49, 0x61, 0xbb, 0x60, 0x86,
0xb3, 0x1b, 0xeb, 0x36, 0x18, 0x57, 0xae, 0x43, 0x60, 0x35, 0xa9, 0xb2, 0xd9,
0xe3, 0xaa, 0xaa, 0xaf, 0x3e, 0x3a, 0x13, 0x92, 0x6d, 0xa3, 0x10, 0x61, 0x34,
0x9e, 0x2d, 0x5b, 0xf7, 0x9f, 0xeb, 0x38, 0x1f, 0x26, 0xc9, 0xd2, 0x9e, 0x67,
0xda, 0x4e, 0x36, 0x52, 0x5a, 0xae, 0x83, 0x6d, 0xec, 0x60, 0x46, 0xc0, 0x13,
0xf4, 0xea, 0x4e, 0xa0, 0xef, 0x0a, 0x43, 0x52, 0xa9, 0xa2, 0x7e, 0x65, 0x94,
0x02, 0x1e, 0x73, 0x32, 0x46, 0xed, 0xbf, 0x05, 0x46, 0xeb, 0x81, 0x98, 0xf3,
0x98, 0xe4, 0xfb, 0x24, 0x95, 0x88, 0x1b, 0x9b, 0xbb, 0x05, 0xd7, 0x72, 0xed,
0x58, 0x06, 0xf3, 0x04, 0x07, 0xa2, 0xa3, 0xef, 0xc8, 0x36, 0x4b, 0xe6, 0x86,
0xa5, 0x18, 0x9b, 0x0f, 0xc3, 0x3f, 0x50, 0x81, 0xcb, 0x5f, 0x4a, 0xe3, 0xbc,
0x3b, 0xed, 0xa8, 0xed, 0x6c, 0x54, 0xc4, 0xbd, 0xf9, 0x2f, 0x67, 0xda, 0x68,
0x80, 0x2a, 0xb6, 0x8f, 0x97, 0x02, 0xb3, 0x37, 0x60, 0x88, 0x97, 0x32, 0x2f,
0xab, 0x17, 0xc8, 0x79, 0x16, 0x8e, 0x5f, 0xfd, 0x47, 0xfc, 0xf0, 0xa9, 0x43,
0x19, 0xb7, 0x4d, 0x50, 0x45, 0xf7, 0x3b, 0x9c, 0xc3, 0x42, 0xec, 0xd0, 0x95,
0xab, 0xce, 0x58, 0xfc, 0xf0, 0x5c, 0x8a, 0xd3, 0x56, 0xe4, 0x2a, 0x20, 0x32,
0x7b, 0x66, 0xf7, 0x51, 0xc9, 0x8d, 0x5e, 0xb0, 0x1f, 0x97, 0xa7, 0x0a, 0xcf,
0x5e, 0x8c, 0xb6, 0xd4, 0x4b, 0xfe, 0x7f, 0xfd, 0x2a, 0x5b, 0x98, 0xb3, 0x93,
0x8f, 0x41, 0x15, 0x5b, 0x5e, 0x59, 0xf9, 0x95, 0xd6, 0xeb, 0x6b, 0x70, 0xee,
0x3c, 0x2c, 0xa2, 0x34, 0xe2, 0xef, 0x2a, 0xe6, 0x4e, 0xce, 0xdd, 0x5f, 0x34,
0x23, 0x9f, 0x76, 0xa2, 0xcf, 0xb7, 0x5b, 0x74, 0xea, 0xe6, 0x17, 0x54, 0x96,
0x5d, 0x3a, 0xaa, 0xb4, 0xa5, 0x02, 0x0f, 0x27, 0xec, 0xfb, 0x96, 0x2a, 0x5a,
0x64, 0xbf, 0x06, 0xff, 0x7e, 0x82, 0x15, 0xbd, 0x6b, 0xa2, 0xac, 0xeb, 0x5e,
0xd4, 0xc7, 0xa4, 0xff, 0x99, 0xe2, 0xea, 0xe0, 0x0f, 0x91, 0xde, 0xc2, 0xe8,
0x5a, 0xee, 0x4e, 0x9c, 0xb7, 0xba, 0x25, 0x6b, 0xbb, 0x27, 0x44, 0x12, 0xf7,
0x82, 0xd6, 0x61, 0xd1, 0x15, 0x37, 0x85, 0x7b, 0x29, 0xdc, 0xe1, 0x7a, 0x9a,
0x8e, 0x75, 0xc8, 0xdb, 0x34, 0x5b, 0x7a, 0x4b, 0x30, 0x6d, 0x36, 0x34, 0xdf,
0x7c, 0x6f, 0xb0, 0xe2, 0x6f, 0x13, 0x64, 0xe9, 0x9d, 0x85, 0x6b, 0xbf, 0xf5,
0xd3, 0x28, 0x18, 0x3b, 0x00, 0xc6, 0xae, 0xcd, 0x7c, 0xab, 0x52, 0x33, 0xac,
0x17, 0x69, 0x64, 0x97, 0x26, 0xad, 0xc1, 0xbf, 0x99, 0x9b, 0x5f, 0x90, 0xc5,
0x55, 0xbc, 0x3c, 0x58, 0x23, 0x5f, 0x34, 0x90, 0x68, 0x77, 0xdb, 0x70, 0xf4,
0x5f, 0xd2, 0x55, 0xb7, 0xed, 0xb5, 0x4b, 0xba, 0xae, 0x39, 0x01, 0xb2, 0x39,
0x5b, 0xa8, 0x08, 0x93, 0xbb, 0xc2, 0x9c, 0xae, 0x9a, 0x19, 0xd3, 0x5f, 0x59,
0x7f, 0xaf, 0x46, 0xa2, 0xf3, 0x8e, 0x00, 0xb5, 0xdb, 0x64, 0xfb, 0x56, 0x9b,
0xb0, 0xa6, 0x26, 0x34, 0x76, 0x25, 0xdf, 0x41, 0x5d, 0x75, 0x14, 0x5b, 0x71,
0x37, 0xf6, 0xe9, 0x86, 0x9c, 0x14, 0x81, 0x4d, 0xc7, 0x3a, 0x68, 0xaf, 0xc9,
0x79, 0x1d, 0x40, 0x97, 0xc7, 0xc5, 0x18, 0x4c, 0x45, 0x94, 0x88, 0x96, 0x3d,
0x39, 0xce, 0xe1, 0x7f, 0xbd, 0xcc, 0xea, 0xae, 0xe3, 0x1d, 0xa0, 0x7a, 0x88,
0xb2, 0xdb, 0x44, 0x6d, 0x5b, 0x35, 0xec, 0x73, 0x27, 0x69, 0xef, 0xd0, 0xb1,
0xcb, 0x92, 0xc2, 0x90, 0xcc, 0x22, 0xb1, 0x13, 0x7f, 0xa8, 0x14, 0x5f, 0x92,
0xd9, 0xf7, 0x6b, 0x72, 0x2d, 0xd0, 0xa1, 0x5a, 0x2a, 0x81, 0x31, 0x97, 0xaf,
0x03, 0x3d, 0x35, 0x8a, 0xe2, 0x4f, 0x97, 0x81, 0xba, 0xb3, 0x46, 0xe7, 0xdd,
0x92, 0x73, 0x97, 0xdc, 0x99, 0x94, 0x6f, 0xb4, 0x04, 0xc1, 0xf5, 0x36, 0x91,
0xa4, 0xde, 0x58, 0x9c, 0xa3, 0xd1, 0xb2, 0x9c, 0xb5, 0x3f, 0xfe, 0x09, 0xc8,
0xde, 0xa4, 0x43, 0x63, 0x7e, 0x92, 0x39, 0x41, 0x32, 0x73, 0xcd, 0xe5, 0x78,
0xd1, 0x43, 0x03, 0xfb, 0x76, 0x15, 0x00, 0xdb, 0x43, 0xf1, 0x6c, 0xc3, 0x15,
0xc1, 0x4b, 0xa2, 0xad, 0x27, 0x10, 0x71, 0x5a, 0xc1, 0xba, 0xbb, 0x71, 0xe4,
0x89, 0x17, 0xc5, 0xa5, 0x26, 0xce, 0x2c, 0x88, 0x47, 0x9b, 0xa0, 0xc7, 0x13,
0xc6, 0x33, 0x19, 0xe3, 0x9a, 0x55, 0xf2, 0x71, 0x9e, 0x53, 0xbd, 0xeb, 0xc8,
0x5f, 0xc5, 0xca, 0x2c, 0x12, 0xaf, 0xe8, 0xcc, 0x78, 0x45, 0x28, 0x6f, 0x06,
0x5a, 0xba, 0xe0, 0x78, 0x44, 0xd5, 0xee, 0xd2, 0x21, 0x1a, 0xd5, 0x0b, 0x64,
0xf8, 0x14, 0x73, 0x10, 0xa3, 0x73, 0x4d, 0xed, 0x07, 0xb1, 0x3f, 0x94, 0x19,
0x8d, 0x67, 0x8b, 0xaf, 0x55, 0xc7, 0x7a, 0x65, 0xe7, 0x3e, 0x71, 0x69, 0xd1,
0x1b, 0x8c, 0x77, 0x84, 0x51, 0x63, 0x47, 0x9c, 0xb9, 0x76, 0x46, 0xa7, 0x47,
0x63, 0x9e, 0xb6, 0xaa, 0x50, 0xb8, 0x2d, 0x23, 0x59, 0x86, 0xab, 0x9a, 0x7a,
0x46, 0x37, 0xf4, 0x7c, 0x2d, 0xe3, 0xe0, 0x26, 0xee, 0x71, 0x45, 0x50, 0x75,
0x1e, 0x39, 0xe3, 0x4c, 0xaf, 0x98, 0xc9, 0x33, 0x06, 0x1f, 0x63, 0x70, 0xf4,
0xab, 0x02, 0x78, 0x6f, 0x2c, 0x1b, 0x7f, 0x6a, 0xaf, 0x07, 0xc8, 0x2e, 0xd5,
0x0f, 0x99, 0x35, 0xf4, 0x30, 0xa5, 0x58, 0x41, 0xe0, 0xef, 0x18, 0xa4, 0x61,
0x30, 0xef, 0x2e, 0xb3, 0x47, 0x2c, 0x8c, 0x7b, 0x44, 0x24, 0xf1, 0x45, 0x52,
0xd7, 0x1e, 0xba, 0xfc, 0x9e, 0x52, 0x10, 0xe8, 0xc4, 0x59, 0xe8, 0x2d, 0x01,
0x1d, 0xa1, 0xa2, 0x98, 0xb8, 0xce, 0xae, 0x55, 0xe6, 0x04, 0xa0, 0xfe, 0x9e,
0x8a, 0x34, 0xa6, 0x05, 0x75, 0x59, 0xa9, 0x6e, 0xa9, 0xdd, 0x16, 0x41, 0x7e,
0x90, 0xe8, 0xc2, 0xcf, 0xc0, 0x3d, 0x5d, 0xb7, 0x0c, 0x78, 0x64, 0x9c, 0xa6,
0x04, 0x4a, 0x30, 0x5d, 0xa3, 0xb2, 0xca, 0xf1, 0x86, 0xa0, 0x0a, 0xb9, 0x93,
0x0b, 0x51, 0x54, 0x57, 0xbd, 0xd6, 0x2a, 0xa9, 0x7b, 0xcb, 0xce, 0x44, 0x28,
0x68, 0xfa, 0xca, 0x99, 0x83, 0x76, 0xdb, 0x40, 0xa4, 0x53, 0xbd, 0xf5, 0xdf,
0x8f, 0x0f, 0xc3, 0x3f, 0x62, 0x18, 0x34, 0xc6, 0x31, 0xae, 0xf9, 0xd2, 0xbe,
0xbb, 0x64, 0xfb, 0x71, 0x2d, 0x24, 0xbf, 0x0c, 0x00, 0xcc, 0x15, 0x95, 0x55,
0xf2, 0x56, 0x02, 0xe7, 0x0b, 0x99, 0x6d, 0x3b, 0xd3, 0x57, 0x77, 0x5e, 0xaa,
0xc7, 0x9c, 0x3f, 0xc3, 0x90, 0x41, 0x44, 0xb7, 0x69, 0x2b, 0xb7, 0x56, 0x22,
0x0b, 0x37, 0x63, 0xaa, 0xd2, 0x99, 0x32, 0x6d, 0x20, 0xf2, 0xaa, 0x06, 0x2b,
0xbb, 0x22, 0x80, 0xb8, 0x0a, 0xc7, 0xd7, 0x56, 0x2a, 0x2f, 0xdc, 0x90, 0xf4,
0xfa, 0x48, 0x46, 0xef, 0xc3, 0x56, 0x59, 0x0a, 0xad, 0x3b, 0x64, 0xf4, 0xdc,
0x11, 0xf5, 0x49, 0x95, 0x58, 0xc7, 0xd0, 0xcf, 0xaa, 0xf2, 0x72, 0x1a, 0xe6,
0x76, 0x58, 0xd0, 0xb7, 0x5c, 0xa7, 0xce, 0x3b, 0x2e, 0x4f, 0x0a, 0xec, 0xef,
0xc1, 0xca, 0x0d, 0xc5, 0x0c, 0xb0, 0x22, 0xa9, 0x19, 0x2a, 0xec, 0xb2, 0xaa,
0x4a, 0xe8, 0xd5, 0x2a, 0xb2, 0xaa, 0x18, 0x89, 0x97, 0x95, 0xb3, 0x57, 0xa6,
0x04, 0x50, 0xa3, 0x06, 0x9e, 0xac, 0x79, 0x73, 0x61, 0x8c, 0x40, 0x57, 0x09,
0xe8, 0x7d, 0x2b, 0x1a, 0x73, 0x27, 0x86, 0x78, 0x46, 0xa8, 0xf2, 0x53, 0xc4,
0xfe, 0x90, 0x60, 0xa8, 0x56, 0xe0, 0xbc, 0x46, 0x74, 0xbd, 0x9f, 0xc8, 0xab,
0xd5, 0x12, 0xa7, 0x1a, 0x47, 0xea, 0x57, 0x90, 0x41, 0x2f, 0xe3, 0x38, 0x4f,
0xa7, 0xcc, 0xdb, 0x23, 0xb1, 0x5d, 0x8f, 0x53, 0x7e, 0xd3, 0x04, 0x74, 0x96,
0x16, 0xb7, 0x52, 0x6e, 0x10, 0xf6, 0x02, 0x7f, 0x91, 0x5c, 0x6e, 0x2b, 0xc8,
0x20, 0x40, 0x55, 0x37, 0xa3, 0xa0, 0xdb, 0x7d, 0x54, 0xbf, 0x5f, 0x30, 0x17,
0x35, 0x20, 0x27, 0x9e, 0x78, 0x64, 0x97, 0x08, 0xeb, 0x6b, 0xd9, 0x18, 0xf5,
0x97, 0xba, 0x75, 0x5b, 0xdd, 0x07, 0x45, 0xc8, 0x3e, 0x68, 0x19, 0x22, 0x55,
0xe3, 0x32, 0xd4, 0x68, 0x2b, 0x96, 0xc9, 0x8c, 0xd4, 0xe2, 0x7e, 0x0c, 0x3f,
0x00, 0xff, 0xa7, 0x05, 0x3c, 0xb4, 0x31, 0x9f, 0x23, 0x1e, 0x59, 0x99, 0xc5,
0x30, 0xa3, 0xa2, 0x31, 0x78, 0x12, 0xdb, 0x7b, 0xcf, 0x04, 0x66, 0x2c, 0x09,
0xaa, 0xd2, 0x5d, 0x19, 0x93, 0x2b, 0x57, 0x04, 0xb2, 0x9d, 0x31, 0xe0, 0x39,
0x9f, 0x57, 0xee, 0x89, 0xf6, 0x29, 0x02, 0x2d, 0xf3, 0x2b, 0xf3, 0x50, 0xf5,
0x7c, 0x22, 0x55, 0x69, 0xbb, 0xa8, 0xc2, 0x3f, 0x0c, 0x71, 0xe4, 0x93, 0x82,
0x06, 0x5c, 0x70, 0x35, 0x3a, 0x02, 0xf0, 0x47, 0x0d, 0x65, 0xeb, 0x27, 0xa0,
0x1f, 0x3f, 0x3b, 0xef, 0xf3, 0x4b, 0xb9, 0x8c, 0xb0, 0x8e, 0xbf, 0x19, 0x8c,
0x15, 0x25, 0x8c, 0x3b, 0x80, 0x7e, 0x10, 0x1c, 0x0b, 0x19, 0x9b, 0x31, 0x35,
0xcb, 0x94, 0xf3, 0x37, 0x20, 0xdb, 0x76, 0xea, 0x11, 0x5f, 0x32, 0xcc, 0x2a,
0xa3, 0xed, 0x82, 0x1a, 0x69, 0x91, 0x4a, 0xe8, 0xab, 0x8e, 0x48, 0x12, 0x72,
0xc6, 0x27, 0x73, 0x08, 0x7b, 0xe8, 0x37, 0x06, 0x74, 0xb7, 0xcc, 0xb7, 0x53,
0x14, 0xd6, 0xd0, 0x97, 0x32, 0x6e, 0x32, 0xd7, 0xaa, 0xea, 0x05, 0x6b, 0x97,
0x01, 0x54, 0xce, 0xdf, 0x05, 0x63, 0xf9, 0xd3, 0xab, 0xcb, 0x70, 0x75, 0x3d,
0xc6, 0xff, 0x03, 0xb7, 0x7f, 0xd1, 0x29, 0xd7, 0x15, 0x09, 0xe5, 0x1b, 0xc0,
0x16, 0x9a, 0x18, 0x7d, 0xaf, 0x32, 0x66, 0xcc, 0xcb, 0x0a, 0x63, 0x6c, 0x05,
0xaa, 0xfa, 0x05, 0x39, 0xb8, 0xf7, 0xdc, 0x8f, 0xa2, 0x28, 0x81, 0x34, 0x6a,
0x14, 0xf7, 0x12, 0x36, 0x31, 0x46, 0xd9, 0x64, 0x78, 0xe7, 0x61, 0xb3, 0x08,
0x8b, 0x1b, 0xa9, 0x47, 0x07, 0x69, 0x2c, 0xdd, 0x9e, 0xf9, 0x1d, 0x2c, 0xa4,
0x97, 0xd6, 0x90, 0xe9, 0x06, 0x9e, 0x50, 0xb6, 0x65, 0x8c, 0x09, 0x66, 0x53,
0x1b, 0x15, 0xac, 0x7f, 0x1a, 0x30, 0xfa, 0x12, 0xef, 0x5c, 0x2a, 0x5a, 0x20,
0xf8, 0x27, 0x05, 0x3d, 0x1f, 0x65, 0xce, 0x2b, 0x8c, 0x5a, 0xa3, 0x98, 0x13,
0x3a, 0xa1, 0xc7, 0xec, 0xe5, 0xd2, 0xec, 0x57, 0x45, 0xc3, 0xe0, 0x05, 0xe3,
0x92, 0xfe, 0x3c, 0x03, 0xdf, 0x36, 0x85, 0x75, 0x8e, 0x59, 0x06, 0xec, 0x0e,
0x80, 0xdd, 0x69, 0xb9, 0x02, 0xde, 0xd2, 0x03, 0x12, 0xdf, 0x23, 0xcb, 0x23,
0x4b, 0x84, 0xd7, 0x1a, 0xc3, 0xbb, 0xa3, 0xaf, 0x0b, 0xa3, 0x2e, 0x4d, 0x29,
0xc6, 0x89, 0xa6, 0xcc, 0xa7, 0x39, 0xfb, 0x45, 0xf4, 0xec, 0x55, 0xc8, 0x7a,
0xbb, 0xcf, 0x34, 0x83, 0x2e, 0x9f, 0x61, 0x7b, 0xb8, 0xca, 0xf4, 0x98, 0x43,
0x90, 0x41, 0xd2, 0x25, 0x2b, 0x1d, 0x3b, 0x04, 0xf1, 0xf6, 0x91, 0xa1, 0x67,
0xd1, 0x9f, 0x29, 0xac, 0x1f, 0x04, 0x31, 0x63, 0x43, 0x30, 0xc8, 0x2f, 0x08,
0xfe, 0xfc, 0x19, 0x32, 0x0f, 0xff, 0x0b, 0x72, 0x65, 0xfe, 0x2e, 0xdd, 0xab,
0x4e, 0x73, 0x92, 0x91, 0x47, 0x74, 0xd7, 0x01, 0x37, 0x99, 0xf7, 0xa2, 0xbd,
0x80, 0xb8, 0xde, 0x8d, 0xed, 0x3d, 0xcc, 0x92, 0x84, 0xa9, 0xd8, 0xab, 0x42,
0xcb, 0x38, 0xb6, 0xd3, 0xa7, 0xc4, 0x02, 0x2c, 0xc4, 0x7f, 0x12, 0x24, 0xeb,
0xb3, 0xf1, 0xba, 0xe6, 0x40, 0x2f, 0x08, 0xd4, 0xf5, 0xfc, 0x29, 0x19, 0x0f,
0x8d, 0x40, 0xd1, 0x57, 0x3c, 0x4f, 0x9f, 0xc4, 0x6d, 0x11, 0x0a, 0xf3, 0x9b,
0x34, 0x5a, 0x17, 0x7c, 0x13, 0xcc, 0xfb, 0x96, 0xb1, 0x45, 0x35, 0x33, 0xec,
0x2a, 0x46, 0xb4, 0xde, 0xf1, 0x05, 0x8f, 0xb0, 0x5e, 0xb0, 0xb3, 0xe3, 0x41,
0x56, 0x1d, 0x26, 0x54, 0xf7, 0x01, 0x97, 0x04, 0x2b, 0x08, 0x13, 0x67, 0x36,
0x48, 0xb8, 0x8d, 0x90, 0xc9, 0xaf, 0x54, 0x75, 0x27, 0x73, 0x62, 0xe5, 0xa0,
0xaa, 0xf6, 0xc7, 0x35, 0xf6, 0x24, 0xd3, 0x08, 0x35, 0x87, 0x74, 0xda, 0xd0,
0x15, 0x01, 0x35, 0x0d, 0x44, 0x93, 0xe1, 0xf8, 0x7b, 0xab, 0xee, 0xbb, 0x47,
0x8f, 0xfc, 0xf3, 0x44, 0x06, 0x83, 0xaf, 0x51, 0x9c, 0x85, 0x77, 0x08, 0x34,
0x7a, 0x3c, 0xef, 0xbe, 0x43, 0x3b, 0xc4, 0xc7, 0x44, 0x95, 0xc7, 0xfd, 0xcc,
0x47, 0x8a, 0xf1, 0x62, 0x02, 0xb7, 0xc4, 0x08, 0xe4, 0x30, 0x4c, 0x75, 0x9b,
0x76, 0x21, 0x9d, 0x7a, 0xce, 0x07, 0xb3, 0xc6, 0x0a, 0x11, 0xa5, 0x3e, 0x59,
0xa1, 0xea, 0x89, 0x27, 0x63, 0xc4, 0x69, 0xc8, 0x3c, 0x18, 0xe2, 0xc1, 0x42,
0xfe, 0xa2, 0x64, 0xc5, 0x29, 0xd1, 0xd2, 0x0c, 0x76, 0x1b, 0x92, 0x31, 0x08,
0xad, 0xbb, 0x71, 0xc4, 0x68, 0x17, 0x55, 0x8c, 0x1b, 0x14, 0xf6, 0x35, 0x23,
0x21, 0x56, 0x1c, 0xd7, 0xa5, 0xe5, 0x3d, 0x80, 0x75, 0x6f, 0xc6, 0xda, 0x2f,
0xfe, 0x74, 0x68, 0xec, 0x81, 0xbd, 0xd1, 0x19, 0x53, 0x3d, 0x99, 0xf7, 0x6e,
0xfb, 0x0a, 0xec, 0xbe, 0x85, 0xae, 0x06, 0x56, 0x2b, 0x8e, 0x59, 0x47, 0x6c,
0xf9, 0xa1, 0xc8, 0x5f, 0x12, 0x2f, 0x7f, 0x11, 0x45, 0x97, 0x15, 0xaa, 0xd1,
0x8f, 0x14, 0xee, 0x86, 0x86, 0x4c, 0xef, 0xe8, 0x90, 0xf9, 0x31, 0xc2, 0xc3,
0x8e, 0xfc, 0x67, 0x92, 0xfd, 0xf2, 0x9d, 0x45, 0x15, 0x96, 0x74, 0xd9, 0x1e,
0xfa, 0x06, 0x18, 0x7d, 0x82, 0xfa, 0xdb, 0x92, 0x24, 0x02, 0x3e, 0x13, 0xd9,
0x9d, 0xed, 0x9f, 0x15, 0x51, 0x4c, 0x85, 0x0f, 0xb6, 0xe2, 0xe9, 0xdc, 0xe0,
0xfc, 0x05, 0xcd, 0xc8, 0xef, 0x29, 0xf1, 0xe7, 0x68, 0xd5, 0x3d, 0x89, 0x64,
0x1a, 0x4b, 0x47, 0x24, 0xfd, 0xb6, 0x01, 0x6f, 0x55, 0x54, 0x06, 0x71, 0x78,
0xdc, 0x70, 0x5c, 0x81, 0x06, 0x61, 0xae, 0xbd, 0x25, 0xfa, 0x6b, 0xa4, 0x92,
0xfd, 0x8a, 0x61, 0xd7, 0x9d, 0xf5, 0x22, 0x10, 0xf1, 0x20, 0x87, 0x79, 0xd9,
0x6a, 0x5a, 0x33, 0xbd, 0x52, 0x8f, 0x47, 0x99, 0x15, 0x71, 0x96, 0x60, 0xad,
0xc1, 0xf8, 0x62, 0x44, 0x7b, 0x19, 0x95, 0x06, 0xf7, 0x69, 0x6e, 0x32, 0x77,
0x5f, 0xd7, 0x9f, 0xff, 0x06, 0x63, 0xc5, 0x03, 0xe6, 0x46, 0x4d, 0x7c, 0xc7,
0x14, 0xee, 0xe3, 0x18, 0x81, 0xa8, 0x93, 0x2c, 0xa9, 0x7c, 0xfa, 0x49, 0x84,
0x89, 0xcf, 0xab, 0x22, 0xd1, 0x6a, 0x0b, 0x89, 0x01, 0x77, 0x19, 0x11, 0x65,
0x45, 0x61, 0x7f, 0xf3, 0xa8, 0x81, 0xfb, 0x7b, 0x7b, 0x31, 0x7f, 0x11, 0xa0,
0x95, 0x6b, 0x24, 0x7a, 0x7c, 0xa4, 0x1c, 0xef, 0x30, 0x74, 0xa7, 0xc3, 0x3e,
0x88, 0x1b, 0x95, 0xd4, 0x16, 0x9e, 0x88, 0x7c, 0xd8, 0x0d, 0xe2, 0xe9, 0x33,
0x81, 0xa4, 0x10, 0x39, 0x7e, 0x0e, 0xf1, 0x2b, 0x45, 0x65, 0x5e, 0x11, 0x21,
0x88, 0xd9, 0x1f, 0x44, 0x12, 0x78, 0x6d, 0xd9, 0x9f, 0x11, 0xca, 0x8c, 0x54,
0x69, 0x8a, 0x6b, 0x9a, 0x09, 0x0a, 0xbb, 0x5a, 0xd1, 0x3a, 0xea, 0x8e, 0x17,
0x40, 0x71, 0x19, 0x91, 0xd0, 0x61, 0x83, 0xfb, 0x99, 0x5d, 0x0a, 0x36, 0x72,
0xd4, 0xd2, 0xad, 0x62, 0x3d, 0x3d, 0x96, 0xf7, 0x92, 0xd6, 0x10, 0x90, 0xae,
0x27, 0xe8, 0x64, 0x04, 0x47, 0xac, 0xb6, 0xcc, 0x35, 0xa7, 0x7d, 0xfa, 0x2c,
0x6d, 0x32, 0x19, 0xb8, 0x30, 0xa5, 0xf2, 0xd9, 0x8e, 0xa7, 0x88, 0xa6, 0x15,
0xd7, 0x00, 0x06, 0x74, 0x7a, 0xe3, 0x62, 0x76, 0x18, 0xe8, 0x7a, 0x11, 0xfc,
0xdd, 0xcb, 0xce, 0xa7, 0x3d, 0x26, 0x45, 0x23, 0x2d, 0x16, 0x47, 0xaa, 0xf2,
0x11, 0x40, 0x78, 0x9f, 0xd0, 0x58, 0xbd, 0x48, 0x20, 0x33, 0x83, 0x41, 0x01,
0xf6, 0x8f, 0x82, 0x63, 0x37, 0x51, 0xff, 0xc4, 0xbf, 0x46, 0x69, 0xdb, 0x2d,
0xdc, 0x73, 0x4c, 0x27, 0xff, 0x47, 0x71, 0xf4, 0x4e, 0x56, 0xa5, 0x79, 0xaf,
0x64, 0x96, 0x32, 0x0e, 0xb8, 0xf7, 0xa9, 0xdc, 0xb7, 0xb9, 0x3f, 0xbb, 0x84,
0xc4, 0x8f, 0x75, 0xba, 0xf7, 0xce, 0xef, 0x11, 0x0a, 0x66, 0x88, 0x5f, 0x7e,
0xc2, 0xfc, 0x75, 0x33, 0xa4, 0x34, 0x2b, 0xc0, 0x39, 0xf4, 0x4f, 0x06, 0x32,
0xb0, 0xc3, 0x11, 0x2e, 0xa2, 0xfb, 0x0b, 0x93, 0xbe, 0x00, 0xec, 0xe7, 0x07,
0xa4, 0x73, 0x33, 0x03, 0xbb, 0x74, 0x53, 0x44, 0xfa, 0x2f, 0xec, 0x78, 0x7f,
0xdf, 0xcb, 0xcb, 0x56, 0xe8, 0x3d, 0x26, 0x9a, 0xd3, 0x1e, 0xb5, 0x73, 0x57,
0xf5, 0x8b, 0x4e, 0x2b, 0x38, 0x28, 0xe0, 0x75, 0x9b, 0x01, 0x3f, 0xd8, 0x6a,
0xa7, 0xcf, 0x7c, 0xa3, 0x74, 0xbd, 0x24, 0x12, 0x6a, 0xc1, 0x57, 0xc2, 0x15,
0x2a, 0xc4, 0x54, 0x91, 0x1d, 0x1c, 0x77, 0xd2, 0x73, 0x7c, 0x51, 0x1a, 0xf7,
0x1e, 0x6f, 0xc7, 0xdc, 0x59, 0x8a, 0x9c, 0x33, 0x9a, 0x8d, 0xf0, 0x1c, 0x78,
0x7a, 0x1d, 0xd8, 0xd7, 0x7a, 0xeb, 0x46, 0xeb, 0xbe, 0xb3, 0x9b, 0xac, 0xfb,
0x0d, 0x49, 0x30, 0x5a, 0xf7, 0x93, 0x2b, 0x9e, 0xd6, 0x55, 0x1d, 0x52, 0xaa,
0xc5, 0xf9, 0xbc, 0x93, 0x6b, 0x67, 0x46, 0xfc, 0x54, 0x1a, 0x15, 0xba, 0x40,
0x4b, 0x3e, 0xaa, 0x3b, 0x7a, 0x3b, 0x64, 0xad, 0xf7, 0x25, 0xd9, 0xf7, 0x90,
0xc3, 0xef, 0x0a, 0xd9, 0x87, 0x31, 0xfa, 0x33, 0xe8, 0x88, 0x95, 0xd5, 0xe0,
0x3e, 0x92, 0x0a, 0xe6, 0x04, 0x48, 0xe3, 0xb9, 0xa1, 0xbc, 0x76, 0x84, 0x68,
0xe6, 0xad, 0xb5, 0x54, 0x85, 0xf3, 0x7d, 0x8c, 0xb6, 0x03, 0xaa, 0xf3, 0x9c,
0xe7, 0x12, 0xb9, 0xf4, 0x9a, 0x9d, 0x61, 0x5d, 0xa9, 0x40, 0xed, 0x90, 0x88,
0xe7, 0x68, 0x07, 0x9f, 0x5e, 0x8c, 0x16, 0x70, 0xd6, 0x8f, 0x31, 0x47, 0x2a,
0xcc, 0xc6, 0x0f, 0x3b, 0xe9, 0xde, 0xbc, 0x38, 0x91, 0x85, 0x84, 0xfd, 0xaf,
0x06, 0x27, 0xb3, 0xfa, 0xce, 0xc2, 0x7d, 0x85, 0xe3, 0x3a, 0xdf, 0x07, 0x12,
0x54, 0x7c, 0x97, 0xc6, 0xeb, 0x75, 0x8a, 0xeb, 0x15, 0x5f, 0x64, 0x33, 0x77,
0x2f, 0x15, 0xaf, 0x49, 0x57, 0x8c, 0xc2, 0xf1, 0x94, 0xf2, 0x24, 0x15, 0x59,
0x94, 0xca, 0x32, 0xc8, 0x11, 0xcc, 0xcd, 0x6d, 0xd2, 0xa7, 0x83, 0x44, 0x88,
0x44, 0x26, 0x8e, 0x44, 0x15, 0xce, 0xe3, 0x48, 0x5b, 0x8a, 0xa0, 0xe7, 0x09,
0x15, 0x4a, 0xbc, 0x71, 0xde, 0x4b, 0x39, 0x9b, 0x8c, 0x6d, 0x64, 0xc0, 0xae,
0x77, 0xac, 0x1c, 0x05, 0x9e, 0x93, 0x44, 0x1a, 0x4b, 0x54, 0xb5, 0xb8, 0x63,
0xd9, 0xd7, 0x31, 0x45, 0x57, 0x44, 0x74, 0xb5, 0x48, 0x66, 0x41, 0x29, 0xc5,
0x29, 0xcc, 0x38, 0x61, 0x05, 0xdf, 0x4d, 0xd2, 0x45, 0x67, 0x87, 0x9d, 0xd5,
0xeb, 0x2e, 0x3b, 0x72, 0xec, 0xb7, 0x7f, 0xee, 0x89, 0x64, 0xf6, 0x4c, 0x55,
0x8c, 0x77, 0xae, 0x22, 0xab, 0x2b, 0x07, 0xa9, 0x1d, 0xb5, 0xfb, 0x2d, 0x37,
0x9b, 0x20, 0xf2, 0x95, 0x69, 0xf8, 0x5f, 0x39, 0xa3, 0xdd, 0x47, 0x10, 0x85,
0x8e, 0x67, 0x9f, 0x30, 0x10, 0x9b, 0x7b, 0x30, 0xf5, 0x77, 0x89, 0xae, 0x83,
0x80, 0xf7, 0xd2, 0x5f, 0xf6, 0x6e, 0xba, 0x13, 0x12, 0xb9, 0x54, 0x28, 0x72,
0xda, 0x2c, 0x58, 0xd1, 0xab, 0x54, 0xd0, 0xe4, 0xdd, 0x5f, 0x78, 0x0f, 0xb1,
0xa7, 0x24, 0x92, 0x3c, 0xd3, 0xd8, 0x79, 0xb8, 0xa7, 0x28, 0xb3, 0x16, 0x52,
0x6f, 0x5c, 0x21, 0x3a, 0xf1, 0xd0, 0x51, 0x7f, 0x54, 0x63, 0xce, 0xae, 0x66,
0x6f, 0x01, 0x2a, 0xbc, 0x2e, 0x5d, 0xfb, 0x25, 0x6f, 0x20, 0xb4, 0x09, 0x24,
0x5c, 0x05, 0xe3, 0xb5, 0x58, 0x2b, 0x1c, 0xd2, 0xfb, 0x75, 0x43, 0x54, 0x96,
0x30, 0xc7, 0xe2, 0x34, 0xd7, 0x71, 0x83, 0x08, 0x84, 0x97, 0x03, 0x6b, 0x8f,
0xdd, 0x74, 0xf5, 0x33, 0x19, 0xb0, 0xdd, 0x61, 0x50, 0x72, 0x53, 0x17, 0x2f,
0xae, 0x0c, 0xbb, 0xf4, 0x23, 0xf4, 0x35, 0x11, 0xdb, 0x7c, 0x02, 0xdf, 0x13,
0x78, 0x8d, 0xf8, 0xda, 0xdf, 0x1b, 0x45, 0x34, 0x7f, 0x55, 0x94, 0xf6, 0x1d,
0xeb, 0x15, 0xcd, 0x9d, 0x6d, 0xf4, 0xef, 0x9d, 0xd3, 0xdc, 0x4b, 0x83, 0xf1,
0xf1, 0x99, 0x0e, 0xaf, 0x79, 0xae, 0x00, 0xf3, 0x10, 0x68, 0x6e, 0x37, 0xe8,
0x75, 0x6d, 0xd6, 0xbb, 0x20, 0x4d, 0xce, 0x12, 0x01, 0xdc, 0xa7, 0xff, 0x82,
0x37, 0x76, 0x74, 0xc8, 0xe8, 0xf9, 0xaa, 0x6b, 0x96, 0xda, 0x89, 0xfb, 0x35,
0x28, 0xac, 0x80, 0xbd, 0xc1, 0xad, 0xdd, 0x76, 0x46, 0x98, 0xb2, 0xec, 0x77,
0x82, 0x9e, 0x7d, 0x54, 0xd3, 0xa1, 0x8a, 0xcf, 0x13, 0xbd, 0xd5, 0xe9, 0x7b,
0xbd, 0x04, 0x6f, 0x1c, 0xae, 0x90, 0x07, 0xe0, 0x2c, 0x4c, 0xb0, 0xc6, 0x74,
0x9f, 0xd8, 0xed, 0xa2, 0xc2, 0x4a, 0xd9, 0x7b, 0x32, 0xca, 0x47, 0x82, 0xe5,
0x8d, 0x64, 0xd4, 0x61, 0x06, 0xbf, 0x49, 0x92, 0xe7, 0x92, 0xf6, 0xcb, 0x60,
0xba, 0x08, 0x96, 0x07, 0x12, 0xaf, 0x09, 0x64, 0xac, 0x42, 0xf8, 0xca, 0x66,
0xb0, 0xdb, 0x05, 0x57, 0xbc, 0xf0, 0x71, 0x93, 0x4c, 0x7f, 0xf1, 0x2a, 0xfb,
0x00, 0xde, 0x96, 0xc7, 0x86, 0xe3, 0x56, 0x1f, 0xc3, 0x0e, 0xbf, 0x14, 0xcd,
0x32, 0xb8, 0x6f, 0x80, 0x8c, 0x95, 0x2e, 0x19, 0xfd, 0x21, 0xe6, 0xd3, 0x97,
0xe2, 0x98, 0x12, 0xcd, 0xed, 0xfb, 0x35, 0x9f, 0xe3, 0x32, 0xab, 0xd8, 0xa7,
0xb7, 0xdd, 0x77, 0x45, 0x4e, 0xe6, 0x7f, 0xa5, 0xf4, 0x2f, 0x92, 0xa3, 0x76,
0x4c, 0xe3, 0x51, 0x87, 0x9f, 0x50, 0x1d, 0xd7, 0x94, 0x70, 0x20, 0x91, 0x41,
0x95, 0xc4, 0x06, 0xbc, 0x68, 0xd5, 0xbf, 0x5b, 0xe5, 0x1e, 0xd7, 0x34, 0x43,
0xfb, 0xfa, 0x9b, 0xcf, 0x7d, 0x77, 0x42, 0xe6, 0xf7, 0xa6, 0x7b, 0x00, 0x91,
0x19, 0xd5, 0xd9, 0x16, 0x6b, 0x5a, 0xb1, 0x35, 0xff, 0xa0, 0x2c, 0xab, 0x6c,
0xc3, 0x1e, 0xeb, 0xc7, 0xdc, 0x09, 0x69, 0xc3, 0xba, 0x9a, 0x22, 0xb2, 0xf9,
0xa1, 0x93, 0xa6, 0xd1, 0x8b, 0xa5, 0x22, 0x49, 0xb8, 0xc8, 0xfa, 0xad, 0xc3,
0xf3, 0x8a, 0x5a, 0x66, 0x0e, 0xf2, 0xb8, 0x50, 0x27, 0x92, 0xd5, 0xaa, 0xa4,
0x77, 0x94, 0x43, 0x7b, 0x72, 0x75, 0x64, 0xcc, 0x74, 0x8d, 0x67, 0x4b, 0xbe,
0xa9, 0xd8, 0xc3, 0x09, 0x8d, 0x35, 0xaa, 0x49, 0xdc, 0x77, 0x9e, 0xcc, 0xe1,
0x3c, 0x04, 0x11, 0xd1, 0x15, 0xe4, 0x72, 0x9d, 0xce, 0xa9, 0x86, 0x56, 0xdd,
0x6c, 0x9b, 0x6d, 0x8b, 0xab, 0x51, 0x02, 0x88, 0x47, 0xaa, 0x79, 0xb9, 0xe4,
0xc2, 0x95, 0xac, 0x9a, 0x42, 0xab, 0xa6, 0xff, 0x95, 0x30, 0xf2, 0xb6, 0x8f,
0xc4, 0x3a, 0xef, 0x51, 0x3f, 0x7c, 0x8c, 0xc7, 0xbc, 0xa6, 0x2a, 0xd7, 0x0f,
0x0a, 0x77, 0x3e, 0x6e, 0xc5, 0x58, 0x9f, 0x60, 0x0c, 0x0b, 0xcc, 0x59, 0x6b,
0xe5, 0x59, 0x17, 0x45, 0xbf, 0xb8, 0x49, 0xe9, 0x7c, 0x4a, 0xf9, 0xae, 0x56,
0xd9, 0xe9, 0xf7, 0x15, 0x61, 0x6a, 0xc6, 0x7d, 0x36, 0x69, 0x48, 0xa3, 0x4b,
0x65, 0xa6, 0xd2, 0xae, 0x39, 0x83, 0x7a, 0x45, 0xfc, 0xe2, 0xdb, 0xc5, 0x56,
0xa6, 0x66, 0xd6, 0x4b, 0x78, 0xf3, 0xd4, 0xd8, 0xcf, 0xf5, 0xb7, 0xcd, 0x5b,
0x07, 0x25, 0xd1, 0x71, 0x83, 0xed, 0x90, 0xca, 0x6a, 0xb6, 0x19, 0xa4, 0x1a,
0xa0, 0xba, 0x8b, 0xb5, 0x3b, 0xff, 0xf8, 0x6a, 0x87, 0x60, 0xa5, 0x63, 0x4e,
0x23, 0x96, 0x5d, 0x85, 0x98, 0xb9, 0x4b, 0x44, 0xf7, 0x92, 0xa0, 0xc7, 0xfc,
0xd9, 0x19, 0x22, 0xd1, 0x20, 0x85, 0x98, 0xb5, 0x1b, 0xfa, 0x73, 0x0a, 0x76,
0xca, 0xe3, 0xeb, 0x48, 0xd0, 0xba, 0x2c, 0xa1, 0xa6, 0x4d, 0xd2, 0x73, 0x91,
0x7a, 0x53, 0x2c, 0x63, 0xbd, 0xfa, 0x39, 0x81, 0x0e, 0x66, 0xd8, 0x50, 0x38,
0xa1, 0xaf, 0x43, 0x80, 0xf1, 0x56, 0x91, 0x19, 0x4b, 0xe2, 0xa5, 0x8c, 0xbe,
0x19, 0x86, 0x54, 0xf6, 0xd8, 0x16, 0xce, 0x56, 0x33, 0x6c, 0xe0, 0x15, 0xe9,
0x1d, 0xea, 0xc0, 0xb3, 0xec, 0x9d, 0xd9, 0x5f, 0x0c, 0x66, 0xed, 0xfd, 0x06,
0xdf, 0x7b, 0x1b, 0x6e, 0xb3, 0x97, 0xb6, 0x3e, 0xca, 0xf3, 0x0f, 0x83, 0x34,
0x2e, 0xd3, 0x5a, 0xfc, 0x80, 0x60, 0xf4, 0x57, 0xa2, 0x0a, 0xbd, 0xeb, 0x97,
0xcc, 0xe6, 0xf4, 0x7f, 0x5e, 0xdb, 0x35, 0x7e, 0x1c, 0xe5, 0x27, 0x46, 0x26,
0xd7, 0x37, 0x1a, 0x18, 0x27, 0x2f, 0x3f, 0xd2, 0xfd, 0x46, 0x99, 0x4e, 0x22,
0xfb, 0x4e, 0x90, 0x59, 0x3c, 0x8c, 0x54, 0x76, 0xb1, 0x0b, 0x4b, 0xaf, 0x4f,
0x61, 0x66, 0x38, 0xa6, 0x5a, 0x2f, 0xbd, 0x84, 0xc8, 0x90, 0xa4, 0xd3, 0x0e,
0xf6, 0x8b, 0xf2, 0x56, 0x37, 0xe1, 0x29, 0x59, 0xd0, 0x7b, 0xd4, 0xc1, 0x77,
0x72, 0x25, 0x61, 0x29, 0x70, 0x92, 0x68, 0xf6, 0x96, 0x4a, 0xaf, 0x0b, 0xfb,
0x53, 0xb5, 0xe1, 0xbb, 0x9a, 0x11, 0x96, 0xc1, 0x06, 0xcd, 0x35, 0xa7, 0x04,
0x66, 0x1c, 0xb5, 0xea, 0x5e, 0x27, 0xbb, 0x9e, 0xf5, 0x0e, 0xd3, 0x6a, 0x39,
0xf3, 0xde, 0x01, 0x1b, 0xde, 0x06, 0x11, 0xe8, 0x83, 0x93, 0x7d, 0x20, 0x5a,
0x96, 0x9d, 0x5f, 0x92, 0xd8, 0xf4, 0x75, 0xa5, 0x4c, 0x77, 0x1c, 0xb8, 0x6f,
0xa9, 0x51, 0xbd, 0xe3, 0xa5, 0x57, 0x85, 0xea, 0x5d, 0xa2, 0xac, 0x75, 0x4f,
0x65, 0xcc, 0xfe, 0x6c, 0x17, 0x85, 0x75, 0xf7, 0x01, 0x09, 0xfe, 0x9e, 0xe2,
0xb5, 0xff, 0xc8, 0x67, 0x7d, 0xd6, 0x5b, 0x90, 0xa7, 0x87, 0x80, 0x6e, 0x2f,
0x7a, 0xfc, 0x5c, 0x90, 0x05, 0x06, 0x31, 0x07, 0x1f, 0x35, 0xb5, 0x3b, 0x94,
0x6d, 0x5e, 0x75, 0x16, 0x6d, 0x4f, 0x6c, 0x66, 0x51, 0x0d, 0x3c, 0x00, 0xf9,
0x37, 0xdd, 0xee, 0x67, 0xac, 0x1f, 0x0a, 0x2c, 0xe0, 0x3e, 0x43, 0x8b, 0xc3,
0x94, 0xb7, 0x37, 0xaa, 0x55, 0x47, 0xb3, 0x5d, 0x75, 0x78, 0x24, 0x1e, 0xb1,
0x06, 0xdb, 0xd2, 0xa8, 0x03, 0x3e, 0xf2, 0x64, 0x65, 0x3c, 0x3b, 0x0c, 0xa2,
0xc2, 0x66, 0x4a, 0xc5, 0x98, 0x00, 0xdb, 0x64, 0xf6, 0x94, 0x26, 0x6e, 0x64,
0x2b, 0x17, 0x71, 0xef, 0x9a, 0xdb, 0xc3, 0xc8, 0xf6, 0x9c, 0xd5, 0x45, 0xb1,
0x36, 0x9b, 0xd6, 0x18, 0x63, 0x46, 0xd6, 0xee, 0x2d, 0xb2, 0x89, 0x17, 0x3a,
0xfc, 0xf6, 0xa6, 0x60, 0x2d, 0xb5, 0xc3, 0x60, 0xbe, 0x7f, 0x45, 0xe1, 0x5f,
0x4b, 0x34, 0xf9, 0x59, 0x46, 0x59, 0xbd, 0xae, 0xb9, 0xdd, 0x33, 0xc0, 0xf8,
0xda, 0x00, 0x15, 0xfd, 0x82, 0x98, 0xf1, 0x0a, 0xd3, 0x30, 0xa7, 0x5b, 0xe7,
0xdd, 0x82, 0x71, 0x3e, 0xe5, 0xcd, 0xe6, 0xd9, 0x67, 0x27, 0xd5, 0x90, 0x91,
0x5a, 0x6c, 0x77, 0xec, 0x7a, 0xdf, 0xef, 0x9c, 0xca, 0x98, 0xdf, 0x1c, 0x8a,
0xef, 0x43, 0xc0, 0x5b, 0x04, 0x5e, 0xb9, 0xf8, 0x4e, 0xf0, 0x2c, 0x4b, 0xf0,
0xad, 0x30, 0x6b, 0xef, 0x4e, 0x6a, 0xa1, 0xaf, 0x71, 0xcd, 0xf0, 0x43, 0xd0,
0xeb, 0x03, 0x70, 0xba, 0x19, 0x70, 0x2e, 0xd0, 0x7a, 0x61, 0xd8, 0x66, 0x86,
0xf6, 0x51, 0x89, 0xbe, 0x56, 0xe0, 0x5a, 0x28, 0x89, 0x1e, 0x37, 0x34, 0xab,
0x96, 0x58, 0x3c, 0x1b, 0x9b, 0x85, 0xd9, 0x72, 0xec, 0xf9, 0x98, 0xfc, 0x11,
0x1d, 0xba, 0x5f, 0xfc, 0xf9, 0x3e, 0xee, 0xc2, 0x43, 0x19, 0x36, 0x0c, 0xbb,
0x9b, 0xcc, 0xe6, 0x1e, 0x49, 0x2c, 0x70, 0x8c, 0x60, 0x9a, 0xa0, 0xf3, 0xf0,
0x71, 0xdb, 0x84, 0x0c, 0xfb, 0xa4, 0x8e, 0xf1, 0x76, 0x90, 0x38, 0x5d, 0x2b,
0x9b, 0x37, 0x4e, 0x9f, 0xdf, 0x64, 0xb0, 0xba, 0x0d, 0x55, 0xb0, 0x93, 0x46,
0xa0, 0xfe, 0xb3, 0x6d, 0x59, 0x44, 0x4d, 0x6c, 0xfe, 0xf7, 0xbc, 0x52, 0x41,
0xbd, 0xe4, 0x83, 0xe9, 0xd8, 0x08, 0x57, 0x76, 0xd1, 0x6a, 0x78, 0x8e, 0xf6,
0x58, 0xa0, 0x47, 0xdf, 0xe0, 0x68, 0x49, 0x30, 0x4b, 0x9c, 0xd3, 0xb9, 0x62,
0x9c, 0x2e, 0x88, 0x4e, 0x6f, 0xa1, 0x7f, 0x0b, 0xcc, 0xc8, 0xf9, 0xf3, 0x7d,
0xc5, 0x9d, 0x58, 0x82, 0x63, 0x50, 0xe3, 0x0c, 0x80, 0xcd, 0x4c, 0x33, 0xd6,
0x35, 0x86, 0x08, 0x57, 0xed, 0x10, 0xf9, 0xfd, 0xf1, 0xb1, 0x0f, 0x1d, 0x73,
0x16, 0xa8, 0x71, 0x67, 0xcc, 0x59, 0x93, 0x8a, 0xee, 0x33, 0xaa, 0xb4, 0x17,
0xa2, 0x1a, 0x60, 0x06, 0xf3, 0xf4, 0xe5, 0x9f, 0x8a, 0xc9, 0x50, 0x6c, 0xda,
0xae, 0x50, 0x67, 0xbe, 0x52, 0xa9, 0x75, 0xcd, 0x0c, 0x6f, 0x6c, 0xca, 0x77,
0xbf, 0x74, 0x53, 0x26, 0xbf, 0x76, 0xca, 0xcf, 0xaa, 0xad, 0x5f, 0x90, 0xed,
0xd6, 0xaf, 0xbe, 0xc8, 0x19, 0x51, 0x5c, 0xf7, 0x71, 0x59, 0xdd, 0x23, 0x58,
0x45, 0x7c, 0x83, 0x75, 0xb8, 0x59, 0x47, 0x0e, 0x77, 0xd3, 0x80, 0xd9, 0x49,
0xeb, 0x88, 0x2d, 0x00, 0xe9, 0x49, 0xa1, 0x9b, 0x18, 0x11, 0x24, 0xd9, 0xce,
0xe7, 0xfd, 0x7c, 0x28, 0x56, 0x3f, 0x49, 0xe5, 0xb5, 0x8f, 0xe6, 0x0f, 0x7f,
0x66, 0x4d, 0x76, 0x40, 0x65, 0xb5, 0xe5, 0x2d, 0xb5, 0xe3, 0x83, 0x76, 0xd5,
0x69, 0x95, 0xba, 0xa3, 0xae, 0x7b, 0xb1, 0x27, 0x8c, 0x10, 0xae, 0xc0, 0x7d,
0x95, 0xc1, 0xe8, 0x1d, 0x00, 0xd2, 0x38, 0x5a, 0xb0, 0x7d, 0x35, 0x1c, 0x70,
0x06, 0x32, 0xb4, 0x53, 0x93, 0x5f, 0x2b, 0xc1, 0x58, 0x2f, 0x3a, 0x6f, 0x10,
0x9d, 0x35, 0x3a, 0xe1, 0x77, 0x24, 0x3c, 0xb0, 0xfc, 0x90, 0x41, 0xed, 0x96,
0x62, 0xcb, 0x2e, 0x93, 0x71, 0xdf, 0x43, 0x6c, 0x7a, 0x18, 0xbc, 0xa5, 0x5b,
0x66, 0xcf, 0x83, 0xd8, 0x87, 0x82, 0x34, 0xac, 0x72, 0xbb, 0x6a, 0xd4, 0xd9,
0x4d, 0x7b, 0xbf, 0xb3, 0xec, 0x5a, 0x7d, 0x46, 0x2d, 0xa7, 0x5d, 0xc1, 0x3f,
0x9b, 0xf3, 0x83, 0x21, 0x3a, 0x25, 0x42, 0xaf, 0x04, 0x59, 0x0d, 0xb5, 0x89,
0xf4, 0x09, 0x23, 0x2d, 0x91, 0x00, 0xb5, 0x15, 0x7c, 0x39, 0xfc, 0xfc, 0x2e,
0x55, 0x1a, 0x4a, 0x32, 0x56, 0x20, 0xea, 0x76, 0x9f, 0x39, 0x08, 0xf0, 0xae,
0x90, 0xaf, 0x78, 0x2c, 0x87, 0x79, 0xc8, 0x58, 0x6d, 0xf9, 0xed, 0x06, 0x2d,
0xe2, 0x70, 0x6e, 0x4d, 0xee, 0x21, 0xcc, 0x53, 0xb4, 0xc8, 0x0b, 0xac, 0x20,
0xc9, 0x59, 0x18, 0x25, 0x61, 0xf5, 0xc8, 0xf9, 0x3d, 0x0c, 0x89, 0x3d, 0xc2,
0x51, 0xed, 0xad, 0x68, 0xce, 0x54, 0x87, 0xe1, 0xe2, 0x56, 0x93, 0x49, 0xb4,
0x68, 0xc0, 0xb9, 0x34, 0x15, 0xe3, 0xb5, 0x9c, 0x3b, 0x26, 0xc1, 0x92, 0xf2,
0xd3, 0x16, 0xc9, 0xb5, 0x10, 0x89, 0x07, 0x9e, 0x60, 0x8c, 0xe8, 0x72, 0xf6,
0x86, 0x42, 0x6c, 0x7c, 0x03, 0x54, 0xd4, 0x02, 0x86, 0x14, 0xd1, 0x5e, 0x47,
0x9c, 0x46, 0xdd, 0xb6, 0x9b, 0xea, 0xe3, 0x9e, 0xaa, 0xb4, 0x6f, 0x12, 0x5a,
0xa2, 0x08, 0x8d, 0xa3, 0x38, 0x73, 0xbe, 0xd2, 0x29, 0xe7, 0x0f, 0xb2, 0xf8,
0xd0, 0x54, 0xec, 0x55, 0x5c, 0x2b, 0xb8, 0xfa, 0xb2, 0xb8, 0x46, 0x06, 0x53,
0xca, 0xb4, 0xd1, 0x16, 0x5a, 0xd1, 0xdf, 0x31, 0x30, 0x83, 0xfa, 0x56, 0x74,
0x58, 0x30, 0x1f, 0x39, 0x2e, 0xca, 0x53, 0xaf, 0x09, 0x17, 0xa5, 0xc4, 0x93,
0x2b, 0x30, 0xde, 0x07, 0x04, 0xfb, 0x07, 0x90, 0x50, 0x2b, 0xd0, 0x96, 0xc4,
0x8c, 0x8f, 0xc9, 0xa2, 0xf8, 0xf8, 0x50, 0x40, 0xd1, 0x9b, 0xfc, 0x4a, 0x72,
0xd6, 0x2d, 0x91, 0x52, 0x9d, 0x2c, 0x62, 0xc4, 0x31, 0x70, 0xbf, 0xcd, 0xaf,
0xfd, 0xb7, 0xbf, 0xc2, 0x3d, 0xb7, 0xf5, 0xba, 0xf8, 0x0f, 0xc6, 0x51, 0xa5,
0x41, 0x15, 0xd6, 0x85, 0xca, 0xfe, 0x9d, 0x4e, 0x8d, 0xbe, 0xcf, 0x6f, 0xa4,
0x18, 0x57, 0x9d, 0xf6, 0x4b, 0x3a, 0x8f, 0x54, 0xa9, 0x1c, 0xa0, 0xb9, 0x6a,
0x58, 0x31, 0x52, 0xf6, 0xe6, 0x7f, 0x2c, 0x6a, 0x02, 0x2c, 0x8f, 0x31, 0xa6,
0x59, 0x1d, 0x11, 0x35, 0xf0, 0x52, 0xb0, 0xc4, 0xf2, 0x9e, 0x10, 0x2a, 0x8e,
0xe5, 0xf6, 0x83, 0x34, 0x9a, 0xc9, 0xd9, 0xa0, 0x81, 0x98, 0xd2, 0xa2, 0xa9,
0x19, 0x9e, 0x40, 0xb4, 0xe9, 0xd0, 0x61, 0xbb, 0x6e, 0x3b, 0x7f, 0xce, 0x80,
0x7c, 0x8a, 0xb5, 0x13, 0x9d, 0xd5, 0x0a, 0xf4, 0x97, 0xe7, 0x3e, 0x50, 0x7d,
0xfe, 0xb0, 0x4b, 0xd0, 0xbf, 0x19, 0xa4, 0xf2, 0x9a, 0x9e, 0x77, 0xe8, 0xce,
0xf0, 0x6f, 0x70, 0x9f, 0x71, 0xdd, 0xd2, 0xea, 0xb1, 0x63, 0x1d, 0x64, 0x8c,
0x66, 0x35, 0x74, 0xaa, 0x0c, 0x38, 0xda, 0xf6, 0x77, 0x85, 0xc1, 0x5f, 0xe5,
0xe8, 0xa6, 0xf3, 0xa7, 0x19, 0x43, 0xb9, 0xe2, 0x3d, 0x83, 0xda, 0x21, 0x6a,
0x97, 0x73, 0x14, 0x57, 0x2b, 0x64, 0x8d, 0x29, 0x41, 0xec, 0x9d, 0xd7, 0x31,
0xca, 0x11, 0x59, 0x04, 0x7e, 0xaf, 0x52, 0xef, 0xf6, 0x33, 0x28, 0x29, 0x2b,
0xf6, 0xd4, 0xb8, 0xb7, 0xea, 0x0b, 0xa1, 0xe3, 0xeb, 0x4f, 0xcb, 0xb6, 0xeb,
0x97, 0x4c, 0x96, 0x30, 0x86, 0x6d, 0x2b, 0x23, 0xb4, 0xde, 0xf6, 0x06, 0x3c,
0x57, 0xf0, 0xd9, 0x77, 0x82, 0x7d, 0x5c, 0x50, 0x8b, 0x2f, 0xc3, 0xb5, 0x4d,
0xc5, 0xa3, 0x3a, 0xe6, 0xe7, 0x3f, 0x74, 0x6a, 0x62, 0x4c, 0xe4, 0xd5, 0x3d,
0xa2, 0xbb, 0x8d, 0x5b, 0x28, 0x4f, 0x4f, 0x9d, 0xf0, 0x3b, 0x2d, 0xc3, 0x20,
0xe3, 0x69, 0x2a, 0xe7, 0x31, 0xe0, 0xe1, 0x6e, 0x46, 0x9f, 0x0a, 0x27, 0x23,
0x4c, 0x5b, 0x6e, 0xcd, 0x1d, 0x25, 0xd7, 0x27, 0x57, 0x2d, 0x0a, 0xb1, 0x32,
0x90, 0x91, 0x7d, 0xdb, 0x20, 0xc7, 0x4e, 0xe5, 0xfa, 0x91, 0xb9, 0xf8, 0xb3,
0xd3, 0xb7, 0x9c, 0xbc, 0x1a, 0x3a, 0x4e, 0xa8, 0xb2, 0xe5, 0x5b, 0xf2, 0xa7,
0xe0, 0xb8, 0x89, 0x56, 0x16, 0xef, 0x33, 0x97, 0xed, 0x5c, 0x9d, 0x8c, 0x3c,
0xc5, 0xc9, 0xe4, 0x3e, 0xa3, 0x6a, 0x93, 0x07, 0x15, 0x2b, 0x94, 0x5e, 0xc8,
0xd2, 0x5f, 0x31, 0x1d, 0xf1, 0x38, 0x5f, 0x2f, 0xac, 0xb6, 0x31, 0xd6, 0x14,
0xd7, 0x4b, 0x66, 0x28, 0x1b, 0xc8, 0xf9, 0x12, 0xf4, 0x7c, 0x27, 0xa8, 0x7e,
0x5f, 0x10, 0xba, 0x7e, 0xd8, 0xc5, 0xd9, 0x2d, 0xa8, 0x02, 0xac, 0xff, 0x66,
0x02, 0xd0, 0x55, 0x93, 0x64, 0x3e, 0xbb, 0xaa, 0x82, 0xb5, 0x4b, 0xd5, 0xf6,
0xdf, 0x62, 0xba, 0x3a, 0x73, 0x5d, 0x9c, 0xf4, 0x2e, 0xee, 0x50, 0x6c, 0x49,
0x0f, 0x15, 0x6d, 0xe5, 0x15, 0x91, 0xc3, 0x0a, 0xb5, 0xc4, 0x71, 0x90, 0x52,
0x14, 0xa9, 0x88, 0xdc, 0xed, 0xdc, 0xe1, 0xf1, 0x34, 0xd8, 0xcf, 0x4b, 0x00,
0x9f, 0xa0, 0xf2, 0xd6, 0xa4, 0xcd, 0x20, 0x95, 0x07, 0x76, 0xdf, 0x33, 0xe7,
0xcd, 0xa4, 0x6a, 0xdb, 0x49, 0x77, 0x81, 0xac, 0x7d, 0x4e, 0xfa, 0x52, 0xa8,
0x8a, 0xc2, 0xeb, 0x02, 0x0b, 0xf3, 0x24, 0x50, 0x3f, 0x44, 0x3e, 0xeb, 0x77,
0xd2, 0xab, 0xa0, 0x3d, 0xc7, 0x9f, 0xf6, 0x19, 0xa6, 0xf6, 0xbe, 0x19, 0xe6,
0x1e, 0xef, 0x4f, 0x05, 0xe8, 0x94, 0xc4, 0x6c, 0x6e, 0xf0, 0xc9, 0xed, 0x92,
0x55, 0xaf, 0x71, 0x66, 0x74, 0xf0, 0x93, 0x5c, 0xdd, 0x06, 0xbd, 0x76, 0x6b,
0x8c, 0x12, 0x25, 0xb3, 0xa6, 0xb0, 0x8b, 0x1f, 0x74, 0xdc, 0x15, 0x18, 0xa2,
0x88, 0xd7, 0x9b, 0x61, 0x9f, 0x3e, 0xf8, 0xda, 0x7e, 0x85, 0x3e, 0xbe, 0x86,
0x2c, 0x3a, 0x52, 0x83, 0xa3, 0x7d, 0x27, 0x03, 0x55, 0xeb, 0xcc, 0x87, 0x76,
0x3f, 0xe3, 0x19, 0x72, 0xf9, 0x80, 0x9d, 0x56, 0x5f, 0xa1, 0x62, 0x99, 0x47,
0x00, 0x67, 0xd8, 0xe5, 0xed, 0x58, 0x06, 0xb5, 0x82, 0x3c, 0xbe, 0xc3, 0x0e,
0x3f, 0x8f, 0x55, 0xa4, 0x6f, 0x1f, 0xc8, 0x24, 0x5e, 0xb1, 0x35, 0x9a, 0x46,
0x81, 0x75, 0x22, 0xd9, 0x7d, 0xd6, 0xc8, 0x8d, 0x73, 0xb8, 0xfd, 0x11, 0xe9,
0x73, 0x5c, 0x84, 0xdf, 0xbf, 0x60, 0x19, 0x5a, 0xf7, 0x50, 0x7c, 0x09, 0xb8,
0x75, 0xbf, 0x44, 0x37, 0xdf, 0x55, 0x46, 0x08, 0x60, 0x48, 0xe0, 0xe8, 0xc9,
0x3e, 0x9a, 0xc7, 0xe3, 0xc1, 0x8f, 0x7e, 0x30, 0xfa, 0xef, 0x62, 0xf4, 0x2b,
0x2f, 0x7e, 0x48, 0x74, 0x90, 0x02, 0x74, 0x24, 0x13, 0x4a, 0xbf, 0x0a, 0x7a,
0xdf, 0x17, 0x55, 0x15, 0x15, 0x0a, 0x71, 0x31, 0x55, 0xc4, 0x63, 0xb0, 0x60,
0xa4, 0x13, 0xd0, 0x92, 0x46, 0x5a, 0x3f, 0x60, 0x1b, 0xbb, 0x92, 0xf1, 0xce,
0xc9, 0xbf, 0xaf, 0x59, 0xad, 0x18, 0xad, 0x37, 0xe0, 0x91, 0xae, 0xfd, 0xa2,
0xdf, 0xc2, 0xba, 0x09, 0x78, 0x93, 0x18, 0x36, 0x1c, 0xf1, 0x17, 0x8c, 0xac,
0xb8, 0xbb, 0x97, 0x46, 0x24, 0xba, 0x13, 0xaf, 0x1d, 0xdc, 0x92, 0xd0, 0x76,
0xdb, 0x0e, 0x5a, 0xaf, 0xfe, 0x7c, 0x97, 0x46, 0xc1, 0x7e, 0x2c, 0x75, 0x6b,
0xee, 0x3e, 0x89, 0x9e, 0x57, 0x24, 0xb6, 0x50, 0x76, 0xb2, 0x42, 0x63, 0x8c,
0x72, 0x49, 0x7b, 0x68, 0xc1, 0xed, 0xf3, 0x16, 0x07, 0xeb, 0xc1, 0x86, 0xdf,
0xf4, 0x7b, 0x64, 0xfd, 0x0c, 0x7d, 0x24, 0x81, 0xc4, 0x4b, 0xe8, 0xf8, 0x95,
0x00, 0x51, 0xa3, 0x49, 0xcd, 0x0d, 0xd5, 0xaa, 0xab, 0x9c, 0x58, 0x70, 0xad,
0x22, 0x9e, 0x58, 0xda, 0xff, 0x88, 0xa4, 0xea, 0x8a, 0x51, 0xd9, 0xd9, 0x8d,
0x55, 0x6c, 0x8b, 0x93, 0xb4, 0xc4, 0x6b, 0xec, 0x0f, 0x27, 0x64, 0x24, 0xfe,
0xf2, 0xb7, 0xab, 0x1c, 0x95, 0x8d, 0xd0, 0x78, 0xf2, 0x91, 0x40, 0x22, 0x8f,
0xe1, 0xb8, 0x8b, 0xca, 0xc1, 0x46, 0x2c, 0xe8, 0x5d, 0x66, 0xaf, 0x03, 0xef,
0x13, 0x18, 0x11, 0xf9, 0xfa, 0xb4, 0xa1, 0xb5, 0x93, 0x5b, 0xa4, 0xea, 0x9c,
0x24, 0xf7, 0x02, 0x3d, 0x55, 0xd0, 0x5e, 0x2b, 0xf3, 0x7a, 0x98, 0xc0, 0xaf,
0xc2, 0x9d, 0xfe, 0x6b, 0x4f, 0x5b, 0x19, 0xf1, 0xe2, 0xa1, 0xae, 0x19, 0xdd,
0xf3, 0x93, 0x1f, 0x05, 0xf2, 0x7c, 0xa9, 0xdb, 0xcf, 0x5e, 0x61, 0xc8, 0x48,
0xca, 0xc9, 0x41, 0x19, 0x4f, 0xd1, 0x05, 0x5d, 0x00, 0x73, 0x88, 0xc1, 0x6b,
0xf7, 0xc9, 0xb7, 0x06, 0xfd, 0xf9, 0xb0, 0x08, 0xcb, 0x63, 0x81, 0x16, 0x7b,
0x4e, 0x36, 0x16, 0x57, 0xe1, 0xf3, 0x4a, 0x3b, 0x66, 0x68, 0x43, 0x0e, 0xbd,
0x9b, 0xa2, 0x4a, 0x62, 0xc1, 0x03, 0xaa, 0x5c, 0x85, 0x5c, 0x8a, 0xa3, 0x5c,
0x94, 0x65, 0x4c, 0xc9, 0x22, 0x44, 0xb8, 0x53, 0x7e, 0xed, 0x30, 0x1e, 0x8f,
0x11, 0xcc, 0xe0, 0xeb, 0x41, 0xc6, 0x13, 0x22, 0xa1, 0x8f, 0x40, 0xe7, 0x01,
0x3c, 0x5a, 0x22, 0x40, 0x27, 0x11, 0xaa, 0x8e, 0xc1, 0x77, 0x0a, 0x3e, 0xee,
0xc5, 0xb4, 0x0d, 0x69, 0xe8, 0x28, 0x58, 0xb2, 0x7f, 0x3b, 0x01, 0xbd, 0xf6,
0xe0, 0x71, 0x43, 0x99, 0x9c, 0x44, 0x08, 0xae, 0x8e, 0xaa, 0xc4, 0xc7, 0x13,
0x98, 0x86, 0xb4, 0x82, 0x74, 0x1d, 0x5e, 0x62, 0xc9, 0x0a, 0x52, 0xd5, 0xe0,
0x55, 0x09, 0x8e, 0x6b, 0xaa, 0x38, 0x6f, 0xe8, 0x18, 0xf1, 0x16, 0x85, 0x79,
0xac, 0x70, 0x4f, 0xe0, 0x3e, 0x66, 0x7d, 0x72, 0x5b, 0x84, 0x9b, 0xb7, 0x73,
0x35, 0xe1, 0x0e, 0x93, 0xc2, 0x56, 0xd1, 0xfc, 0xf7, 0x69, 0xfe, 0x14, 0x68,
0xae, 0x5e, 0x61, 0x84, 0x63, 0x38, 0x8a, 0xcd, 0x11, 0xdd, 0x36, 0x69, 0xd6,
0x52, 0x4f, 0x0d, 0xe4, 0x81, 0xbb, 0x2a, 0xf2, 0x8b, 0xc6, 0xda, 0x3f, 0xa4,
0x69, 0xe3, 0xf7, 0x31, 0x0e, 0x8f, 0x82, 0xa4, 0x0c, 0x37, 0x85, 0x3b, 0x9c,
0xe7, 0x1c, 0xfa, 0x05, 0x8b, 0x32, 0x42, 0xa3, 0x45, 0x77, 0x04, 0xea, 0xa4,
0x35, 0x81, 0xaf, 0xc0, 0xd6, 0xca, 0x29, 0xaf, 0xc7, 0x32, 0xd6, 0x4b, 0x28,
0x7d, 0xc0, 0x90, 0x83, 0xbb, 0x02, 0x37, 0x5e, 0xb2, 0x55, 0xc6, 0xb1, 0xa2,
0x2a, 0x32, 0xe2, 0xb4, 0x65, 0xc7, 0x05, 0xa8, 0x9a, 0x0b, 0x22, 0x15, 0xb5,
0xe4, 0x01, 0x58, 0x37, 0xfc, 0xf3, 0x2b, 0x8b, 0x0e, 0xfe, 0x56, 0xee, 0x26,
0x3b, 0xee, 0xc2, 0xa9, 0x64, 0xea, 0x7b, 0xe9, 0xe4, 0x4e, 0x6c, 0x63, 0x1d,
0xb2, 0x19, 0x6f, 0xb2, 0x01, 0x5b, 0xda, 0xae, 0xc0, 0x4f, 0x0c, 0xf3, 0x7a,
0xa8, 0x86, 0x36, 0xfd, 0x14, 0xa5, 0x93, 0x44, 0x7d, 0x87, 0x53, 0xad, 0x06,
0xee, 0x0a, 0xf4, 0x14, 0x60, 0x87, 0xac, 0xdd, 0xf2, 0x6b, 0x54, 0xa3, 0x4b,
0x78, 0x1e, 0x78, 0x07, 0x8c, 0x31, 0x49, 0x22, 0xe3, 0x7e, 0xa2, 0xf3, 0x17,
0x79, 0x11, 0x98, 0xb7, 0xa3, 0xd6, 0xb5, 0xb5, 0x74, 0xe9, 0x5e, 0x96, 0xc6,
0x7d, 0x1d, 0x56, 0xc6, 0x3d, 0x73, 0x66, 0xc0, 0x71, 0x40, 0x46, 0xff, 0x11,
0xf0, 0x4b, 0x57, 0xbc, 0x93, 0xba, 0x97, 0xb4, 0x75, 0x09, 0x6c, 0xae, 0x03,
0x64, 0x54, 0xa7, 0x48, 0xfd, 0xfe, 0x53, 0x9e, 0x8a, 0x77, 0xe2, 0xa3, 0x9c,
0x3d, 0x12, 0x8f, 0x6f, 0x60, 0xe0, 0x39, 0x7c, 0x32, 0x0e, 0x8f, 0xfa, 0x5c,
0x71, 0x96, 0xf0, 0x80, 0x11, 0x37, 0x16, 0x35, 0xde, 0xf7, 0xdd, 0x92, 0xf7,
0xc8, 0xce, 0x3a, 0xeb, 0x15, 0x89, 0x9d, 0x87, 0x31, 0x55, 0x8f, 0x0b, 0xbe,
0x81, 0x06, 0xe2, 0x4f, 0x8d, 0xe9, 0xca, 0xcf, 0x4d, 0x05, 0x1b, 0x40, 0x8e,
0xd7, 0x99, 0x31, 0xea, 0x89, 0x53, 0xea, 0xbe, 0x4a, 0xdb, 0x31, 0xa2, 0xa3,
0x66, 0x06, 0xbe, 0x3a, 0x59, 0x3c, 0x59, 0x77, 0xca, 0x45, 0x70, 0xed, 0xa9,
0xa4, 0x4f, 0x30, 0xb5, 0x85, 0x47, 0x1a, 0x2b, 0x7d, 0xad, 0x05, 0xcf, 0x70,
0xdf, 0xe3, 0x0e, 0x46, 0x9a, 0x24, 0xb2, 0x47, 0x5e, 0xfd, 0x0b, 0x9e, 0xc6,
0xbd, 0xaa, 0x9b, 0xb6, 0x97, 0x8c, 0xd1, 0x39, 0x15, 0xfd, 0x74, 0xa8, 0xac,
0x23, 0xa3, 0xbc, 0xeb, 0xcc, 0x71, 0x1b, 0x40, 0xee, 0xfb, 0xb2, 0x62, 0x89,
0xdd, 0x44, 0x42, 0xbd, 0x94, 0xae, 0x83, 0xbe, 0xdb, 0x22, 0x18, 0x6f, 0x5d,
0x95, 0xc2, 0x1b, 0x7c, 0xaf, 0xa0, 0x9f, 0x53, 0x7f, 0x2f, 0xbb, 0x56, 0x40,
0x07, 0xaf, 0x20, 0x99, 0xfb, 0x3a, 0xe5, 0xdd, 0xa6, 0x22, 0xd9, 0x14, 0x45,
0xaa, 0xdd, 0x69, 0x44, 0x6e, 0xff, 0x63, 0xbf, 0x8f, 0xfb, 0xbc, 0xe0, 0x6d,
0x51, 0xb9, 0x02, 0x97, 0xa9, 0x32, 0x5f, 0xdb, 0x43, 0xa3, 0x66, 0x47, 0x41,
0x9b, 0xe1, 0x1a, 0xaf, 0x8f, 0x44, 0x34, 0x4e, 0xd2, 0xb3, 0x52, 0x43, 0xca,
0xef, 0x14, 0x47, 0x42, 0x92, 0x96, 0x8d, 0xe4, 0xbc, 0x4a, 0xa7, 0xde, 0x2a,
0x44, 0x70, 0xfb, 0x8a, 0x77, 0x33, 0x2b, 0x91, 0x6a, 0x19, 0xb6, 0x29, 0xd5,
0x5c, 0x5a, 0x21, 0xa8, 0x0c, 0x4e, 0xe8, 0xb6, 0x59, 0x84, 0x71, 0x36, 0x9c,
0x6a, 0x94, 0x8d, 0xf6, 0x49, 0x95, 0x9b, 0x27, 0xd0, 0x1a, 0x45, 0xe6, 0x2a,
0x63, 0x99, 0x27, 0x64, 0x55, 0x49, 0x89, 0x01, 0xaf, 0xf9, 0x84, 0xab, 0x85,
0xab, 0x92, 0x1e, 0xae, 0x59, 0xb5, 0x0a, 0xb1, 0xac, 0x99, 0x50, 0xe6, 0xab,
0x62, 0x0b, 0x9d, 0x02, 0xdb, 0x6e, 0x39, 0xd5, 0xca, 0xe0, 0xe5, 0x9a, 0x60,
0x3c, 0x0e, 0xda, 0xf7, 0x4a, 0xb4, 0xf0, 0xde, 0xd0, 0x3b, 0x9f, 0xae, 0xab,
0xf2, 0xfb, 0x90, 0xb1, 0x4f, 0xd1, 0x55, 0xf0, 0xc5, 0x49, 0xcf, 0x4b, 0xbc,
0x76, 0xc8, 0x8f, 0x9f, 0x12, 0xda, 0xde, 0x08, 0xb0, 0xdc, 0x14, 0x71, 0x53,
0xaa, 0xa9, 0xcb, 0x1b, 0x3a, 0xb4, 0x1d, 0x22, 0x93, 0xc1, 0x88, 0xa8, 0xf2,
0x6a, 0x03, 0x1d, 0x3c, 0x2d, 0x6e, 0x17, 0x69, 0xaa, 0x1b, 0xd3, 0x54, 0xa7,
0xe9, 0xf3, 0x01, 0x50, 0xd1, 0x77, 0x40, 0xcf, 0x6e, 0x5d, 0xd1, 0xe1, 0x25,
0x1d, 0x63, 0x9c, 0xce, 0x3d, 0x52, 0x1c, 0x5e, 0x99, 0xeb, 0x3c, 0x55, 0xad,
0x28, 0x85, 0x1e, 0xe0, 0x63, 0x5c, 0xb1, 0xf5, 0x1d, 0x95, 0x7c, 0x95, 0x02,
0x4c, 0xbb, 0x03, 0xfb, 0xe4, 0x36, 0x43, 0xeb, 0x71, 0x01, 0x3a, 0x46, 0xea,
0x21, 0xf2, 0x7b, 0x2f, 0xb1, 0xbb, 0x37, 0x8a, 0x11, 0x63, 0x5c, 0xd0, 0x32,
0x4d, 0x8f, 0x3f, 0x18, 0xb4, 0xdb, 0x65, 0x95, 0xda, 0xe6, 0x84, 0xc6, 0x7b,
0x8d, 0x5d, 0x55, 0x77, 0x0a, 0xa7, 0xb2, 0x06, 0x75, 0xc5, 0xee, 0x8f, 0x2a,
0x50, 0x5b, 0x74, 0x48, 0x6e, 0x84, 0xf4, 0x7f, 0x21, 0x83, 0x1d, 0x3d, 0x35,
0xa6, 0x49, 0x41, 0x2b, 0xb9, 0xcb, 0xdb, 0x2a, 0xba, 0x7b, 0xdd, 0xd3, 0xe0,
0x73, 0x22, 0xdf, 0x21, 0x1f, 0x96, 0x29, 0x4a, 0x72, 0x92, 0x49, 0xc5, 0x14,
0xbd, 0x3a, 0xe9, 0xc0, 0xda, 0x5e, 0xaa, 0x93, 0x56, 0xbf, 0x8f, 0x67, 0xf4,
0xfe, 0xb1, 0xca, 0x45, 0xf9, 0xf3, 0x99, 0xc8, 0xe8, 0x89, 0x4a, 0x2c, 0x7c,
0xee, 0xe0, 0xfd, 0x2e, 0x6e, 0xa2, 0x1c, 0xd5, 0x07, 0x52, 0xf8, 0x4a, 0x35,
0x63, 0x56, 0xb1, 0x9f, 0x66, 0xa0, 0x69, 0xab, 0x68, 0xec, 0x7e, 0x2a, 0xc1,
0xb0, 0xe2, 0x65, 0x49, 0xcf, 0xf2, 0x0c, 0x37, 0x0a, 0x6b, 0x39, 0xf5, 0x5d,
0xd0, 0xda, 0x4f, 0xe6, 0xd1, 0x03, 0x05, 0x53, 0x99, 0x6b, 0xff, 0x47, 0x3f,
0xcd, 0x92, 0x48, 0xd1, 0xe3, 0xa4, 0x7b, 0x3d, 0x5f, 0x63, 0x99, 0xad, 0x3b,
0x6d, 0xa4, 0x4f, 0x2b, 0x5e, 0xed, 0x1c, 0xd2, 0xb4, 0xe6, 0x85, 0xcb, 0x5f,
0x15, 0xa9, 0x6c, 0xb2, 0xe3, 0xdd, 0xa7, 0xdf, 0x01, 0x1b, 0x8f, 0xed, 0x74,
0x97, 0xe2, 0x2a, 0xd8, 0xa8, 0x02, 0x55, 0x1e, 0xb2, 0x15, 0xda, 0x2f, 0x86,
0x25, 0x78, 0x53, 0x86, 0x63, 0x82, 0x8c, 0xb6, 0x0c, 0xb8, 0x3e, 0x8b, 0xf0,
0x05, 0x03, 0x6c, 0x59, 0x91, 0x33, 0x2d, 0xa0, 0x4d, 0xe0, 0xa1, 0x6e, 0x58,
0x5f, 0x53, 0x02, 0x5e, 0xdd, 0xf1, 0x95, 0x7a, 0x1c, 0x21, 0x1f, 0x88, 0xb4,
0xe9, 0xc1, 0xd4, 0xed, 0x8c, 0x82, 0x9c, 0xba, 0x24, 0xcf, 0x18, 0xcd, 0x02,
0xdc, 0x27, 0x19, 0xec, 0x67, 0x7a, 0x65, 0xae, 0xc0, 0x53, 0xa7, 0xed, 0x78,
0x61, 0xb8, 0xe7, 0x9a, 0x35, 0xd7, 0x88, 0x6c, 0x05, 0xe9, 0x85, 0x8e, 0x3a,
0x2d, 0x99, 0xa1, 0xcd, 0x13, 0x19, 0x69, 0xa2, 0xd8, 0x9d, 0xee, 0xb4, 0x7d,
0xcc, 0x10, 0x45, 0xdb, 0xdf, 0x45, 0xe5, 0xe7, 0x0d, 0xfc, 0x6e, 0x53, 0xc8,
0x58, 0x3b, 0xa0, 0xad, 0x87, 0xbb, 0x55, 0x38, 0x5f, 0x30, 0xbb, 0x7a, 0xb5,
0xa8, 0xa4, 0x68, 0x63, 0x81, 0x2b, 0x60, 0x4c, 0xc3, 0xf6, 0xb2, 0x20, 0xc3,
0xfd, 0x05, 0xae, 0x2c, 0xe2, 0xab, 0x8d, 0x59, 0x7b, 0x19, 0x36, 0x75, 0xd5,
0xa1, 0xf8, 0x1c, 0x74, 0xba, 0x8f, 0xe1, 0x4d, 0x29, 0x0e, 0xdb, 0xee, 0x57,
0xc2, 0xc7, 0x7e, 0xdd, 0xb1, 0x65, 0x27, 0x43, 0x87, 0x66, 0xe6, 0x7b, 0x5a,
0xc2, 0x31, 0xce, 0x21, 0x49, 0x0d, 0xf1, 0x38, 0x7f, 0xed, 0x8f, 0x7c, 0x22,
0x05, 0x1c, 0x1e, 0x52, 0xe4, 0xf6, 0xbd, 0xcc, 0x8a, 0xa3, 0x4e, 0x57, 0x48,
0x38, 0x2e, 0xc3, 0xe7, 0xe5, 0x3f, 0x7f, 0xf7, 0x55, 0x66, 0xab, 0x47, 0x64,
0x98, 0xe3, 0x04, 0x7a, 0xf3, 0x10, 0x1c, 0xf7, 0x6b, 0x44, 0xb6, 0x3b, 0x80,
0xbb, 0xd6, 0xae, 0xfc, 0x11, 0xab, 0xc8, 0x5d, 0x28, 0xcd, 0xac, 0xfd, 0x32,
0x3e, 0xe3, 0x74, 0x58, 0xc0, 0x6e, 0xd9, 0xdd, 0xa7, 0xee, 0x02, 0x09, 0x04,
0x69, 0x56, 0x8b, 0xde, 0xc4, 0xd3, 0x6e, 0x90, 0x75, 0xe3, 0xb7, 0xa7, 0x12,
0x04, 0x12, 0x39, 0x4a, 0x29, 0x58, 0x56, 0xc9, 0x5a, 0x4d, 0x22, 0x6f, 0x35,
0x03, 0x64, 0x68, 0x5e, 0x1d, 0x23, 0xf6, 0x74, 0x8b, 0xd6, 0xa6, 0x57, 0x28,
0xe5, 0xc7, 0xf0, 0x28, 0x77, 0x34, 0xb9, 0xf5, 0xc2, 0xbe, 0xb5, 0x42, 0x29,
0x19, 0x85, 0xdc, 0xde, 0x80, 0xa3, 0x5e, 0xb2, 0xac, 0xaf, 0x05, 0x43, 0x0d,
0xc9, 0x62, 0x62, 0x3f, 0x43, 0x22, 0xb7, 0xf0, 0x6c, 0x21, 0x9e, 0xc2, 0xae,
0x13, 0xd0, 0xb9, 0xe8, 0xd0, 0x2f, 0xd5, 0xda, 0xfe, 0xb9, 0x23, 0x48, 0x22,
0xbb, 0x77, 0x66, 0x0f, 0x42, 0xc5, 0xfb, 0xbc, 0x55, 0xdd, 0xb5, 0xed, 0x16,
0x11, 0x8f, 0xeb, 0x25, 0xeb, 0x66, 0xeb, 0xa0, 0xce, 0x0f, 0x12, 0x70, 0xbb,
0xbe, 0x70, 0x40, 0x70, 0xef, 0xb0, 0xf5, 0xec, 0x86, 0xc2, 0x8d, 0x00, 0x11,
0x28, 0xe2, 0xde, 0xa5, 0xd0, 0x87, 0xe0, 0x6c, 0xca, 0x75, 0x96, 0x4f, 0x5f,
0x21, 0x18, 0xef, 0x5c, 0x4c, 0x52, 0x7d, 0xb7, 0xd0, 0x4e, 0xab, 0xeb, 0xea,
0xad, 0x5c, 0xd7, 0xc2, 0x2d, 0x2b, 0xc3, 0x58, 0xab, 0x1f, 0x0c, 0xcd, 0x6b,
0x12, 0x31, 0xee, 0x25, 0xb2, 0x77, 0x33, 0x0e, 0x3a, 0x72, 0xcd, 0xeb, 0x05,
0x7e, 0xaf, 0xe2, 0xd1, 0xf7, 0xd0, 0xb8, 0x7e, 0xff, 0x74, 0x13, 0xa1, 0xc2,
0x93, 0x4a, 0x23, 0x95, 0x8c, 0x34, 0x88, 0xaf, 0x6c, 0x2a, 0x2c, 0x5f, 0x4d,
0x39, 0x7f, 0x48, 0xc6, 0x7f, 0x80, 0x42, 0x4c, 0x3c, 0x40, 0xec, 0xc1, 0xa2,
0xf8, 0xe4, 0xf5, 0x66, 0xe6, 0x9e, 0x8a, 0x3b, 0xa6, 0xc3, 0xed, 0xe7, 0x3b,
0x38, 0x7e, 0xfe, 0xaa, 0x87, 0x68, 0x7e, 0x1a, 0x46, 0x6d, 0xec, 0xa3, 0xe4,
0x69, 0xc7, 0x14, 0xc9, 0x1e, 0xc8, 0x3b, 0x2a, 0xa5, 0x8d, 0x1a, 0x4f, 0x7e,
0x3f, 0xb7, 0xa5, 0xae, 0xc2, 0x9c, 0x21, 0x27, 0x2a, 0xeb, 0x3e, 0x1e, 0x79,
0x80, 0xf8, 0xa3, 0x9b, 0x6a, 0xbf, 0x2d, 0x84, 0x76, 0x57, 0xf0, 0x4d, 0x2f,
0x11, 0x1f, 0x8d, 0x39, 0x23, 0xa7, 0x2b, 0x4f, 0x0f, 0x0b, 0xbc, 0x7a, 0xab,
0xe6, 0x6f, 0xc5, 0x6e, 0x23, 0x10, 0xeb, 0x56, 0x37, 0x32, 0xd6, 0xbe, 0x06,
0x44, 0x1a, 0xf7, 0x21, 0xb0, 0x37, 0xf1, 0xd5, 0x72, 0x46, 0x2c, 0xd8, 0x0a,
0x32, 0xdb, 0x48, 0xf5, 0x54, 0xaf, 0xb8, 0x5b, 0xe9, 0x0b, 0x98, 0x9a, 0x19,
0xf7, 0xe4, 0x4f, 0xdb, 0x31, 0x87, 0xb9, 0x8f, 0xf5, 0x64, 0x73, 0x68, 0xf6,
0xd3, 0x08, 0xf4, 0xd4, 0x1a, 0xfe, 0x5d, 0xdd, 0x32, 0x3b, 0x7e, 0x89, 0xf7,
0x66, 0xe1, 0x76, 0x3b, 0x7a, 0x25, 0x3a, 0xb5, 0xda, 0x66, 0xd6, 0xcc, 0x22,
0xf9, 0xcd, 0x0a, 0xce, 0x2a, 0x34, 0x63, 0xfe, 0xf4, 0xb9, 0x29, 0xb0, 0xb9,
0x09, 0x51, 0x36, 0xa9, 0x82, 0x5e, 0x3b, 0xfe, 0xfd, 0x25, 0xaf, 0xd3, 0x93,
0xb8, 0xcd, 0xfb, 0x0f, 0xce, 0x50, 0x3f, 0x29, 0x8c, 0xed, 0x57, 0x68, 0x31,
0x40, 0x95, 0x3f, 0xd5, 0xdd, 0x6d, 0x59, 0x5d, 0x7a, 0x83, 0x54, 0x1d, 0x2f,
0x34, 0xb3, 0x45, 0xa0, 0xae, 0x37, 0xe7, 0x56, 0xe9, 0xc8, 0x3a, 0x8f, 0x05,
0xba, 0xb9, 0xaf, 0x52, 0xf5, 0x2c, 0x8a, 0x74, 0xd3, 0xa4, 0xa8, 0xd1, 0x66,
0x68, 0x19, 0xd3, 0x5c, 0x03, 0x6f, 0x15, 0xf5, 0x47, 0xa7, 0x7f, 0xa7, 0x1e,
0xc7, 0xce, 0xf8, 0x1a, 0xac, 0xee, 0xfa, 0x04, 0xf4, 0x1d, 0xd0, 0x98, 0x4d,
0xbc, 0xc6, 0xb0, 0xd1, 0x7f, 0x41, 0x1d, 0xc4, 0xe0, 0x2a, 0xa8, 0xd0, 0xa6,
0x31, 0x5b, 0x6b, 0x25, 0xb6, 0x74, 0x00, 0xaa, 0xad, 0x41, 0x01, 0x86, 0x31,
0xd0, 0xf8, 0xb0, 0x8a, 0x9c, 0x36, 0x91, 0x7a, 0xce, 0xc7, 0x40, 0x86, 0x0d,
0x80, 0xbc, 0x33, 0xa1, 0x43, 0xf6, 0xde, 0x04, 0xe7, 0xa4, 0x0e, 0xd8, 0xa9,
0xd3, 0x21, 0x60, 0xe1, 0xa9, 0x44, 0xc2, 0xc1, 0x30, 0x3f, 0x39, 0x81, 0x8f,
0x7d, 0xad, 0xd3, 0xd0, 0x7b, 0x06, 0xfe, 0x76, 0x0b, 0xa2, 0x57, 0x12, 0x43,
0x13, 0xb3, 0x2a, 0xa3, 0x7c, 0x12, 0xb4, 0xcd, 0x49, 0xbc, 0x6e, 0x8e, 0xb4,
0x71, 0x38, 0xbb, 0x2e, 0x9e, 0x6e, 0xb4, 0x26, 0x32, 0xee, 0x3b, 0xf3, 0x27,
0xbc, 0xcc, 0x33, 0x3d, 0xe8, 0x23, 0xa5, 0x67, 0xf9, 0xf4, 0x77, 0x5d, 0x56,
0xb9, 0x9b, 0xcc, 0xc0, 0x7e, 0x30, 0xa1, 0xad, 0x1a, 0x3b, 0xf7, 0xe6, 0x9f,
0xef, 0x01, 0x20, 0x30, 0x51, 0xb2, 0x3d, 0xd2, 0xf9, 0x3f, 0xba, 0x1e, 0x37,
0x84, 0x65, 0xb1, 0x01, 0xa4, 0xb9, 0x9f, 0x91, 0x6f, 0x0e, 0x12, 0x3b, 0x76,
0xc9, 0xd9, 0x08, 0x10, 0xeb, 0x49, 0x45, 0xb3, 0xa0, 0x42, 0xf1, 0x5e, 0x90,
0xfc, 0x17, 0x68, 0xff, 0x5e, 0xe0, 0x4e, 0xeb, 0x1f, 0x0f, 0x41, 0x25, 0xb4,
0x85, 0x1e, 0x87, 0x91, 0xf1, 0x9a, 0xfe, 0x3e, 0xc0, 0xcc, 0x74, 0x11, 0xf8,
0xea, 0x41, 0xbb, 0x7e, 0xc5, 0x3e, 0xaa, 0xd0, 0x37, 0xcf, 0x0b, 0x46, 0x3a,
0x40, 0xfd, 0xe4, 0x38, 0xf0, 0x19, 0x2d, 0xc1, 0x75, 0x08, 0x7b, 0x79, 0x84,
0x86, 0x2f, 0x1d, 0xa2, 0xbd, 0x0e, 0x17, 0x2e, 0xfe, 0x66, 0x5d, 0x45, 0xc9,
0x68, 0x9b, 0x11, 0x54, 0x43, 0x87, 0x54, 0x28, 0x6f, 0x25, 0x72, 0x3e, 0x26,
0x81, 0xf9, 0x56, 0x10, 0xa3, 0x5b, 0xa2, 0x77, 0x04, 0x7e, 0xfb, 0x38, 0xab,
0x99, 0x56, 0x69, 0x3b, 0x55, 0xa3, 0x9b, 0x6f, 0xce, 0x76, 0x32, 0xf6, 0x4e,
0xd5, 0xf7, 0x16, 0x87, 0x00, 0x96, 0x38, 0x4a, 0xdd, 0x61, 0x99, 0xa7, 0x26,
0x28, 0x70, 0xb7, 0x23, 0x27, 0xae, 0xd0, 0x3e, 0x69, 0xfa, 0x11, 0x7a, 0x0e,
0x8b, 0x30, 0xfb, 0xcb, 0xb8, 0xe1, 0x9c, 0xb2, 0x46, 0x86, 0x9c, 0x82, 0x25,
0x8a, 0x44, 0x37, 0x7f, 0x62, 0x79, 0xc3, 0x58, 0x27, 0x7b, 0x2e, 0xd8, 0xb1,
0x5e, 0x27, 0xcb, 0x69, 0x41, 0x20, 0x8f, 0xe0, 0x1c, 0x1d, 0xd1, 0x8f, 0x09,
0x13, 0x7c, 0xd9, 0x5f, 0x14, 0xd7, 0xc3, 0x05, 0x67, 0xf1, 0x54, 0x43, 0x7b,
0x73, 0xf4, 0x53, 0xb8, 0x1b, 0x63, 0xd8, 0x27, 0xea, 0x11, 0x46, 0xcf, 0xd6,
0x8b, 0x46, 0x3b, 0xa8, 0x81, 0x37, 0x32, 0xc7, 0xa8, 0x7c, 0x12, 0x0d, 0x58,
0x55, 0x05, 0x58, 0xd0, 0x51, 0x80, 0xbf, 0x2e, 0xb9, 0xe3, 0x70, 0x1a, 0xf2,
0x73, 0x7d, 0xe6, 0xe1, 0x9c, 0xbd, 0x12, 0x59, 0x0f, 0x0a, 0x68, 0x6f, 0x81,
0xe3, 0x2a, 0xcd, 0xfc, 0x1d, 0xe1, 0xd0, 0x7a, 0xe6, 0x43, 0x15, 0xfc, 0x49,
0x0a, 0x7c, 0xbe, 0x25, 0x7e, 0xd0, 0x4e, 0x6a, 0x8c, 0x63, 0x18, 0x2e, 0x99,
0x09, 0x1d, 0x9b, 0x13, 0x23, 0x91, 0xef, 0x55, 0xe0, 0x2a, 0x8e, 0x5c, 0x7b,
0x40, 0x47, 0x0f, 0x15, 0xf0, 0x1d, 0x41, 0x8e, 0xeb, 0x32, 0x53, 0x05, 0x38,
0xfd, 0x64, 0x11, 0xb5, 0x57, 0xd0, 0x5a, 0x4e, 0x31, 0xa5, 0x33, 0xe9, 0x18,
0x64, 0xcc, 0x77, 0xee, 0x91, 0x3e, 0x65, 0x0c, 0x19, 0x94, 0xe8, 0x7e, 0x56,
0xce, 0x5b, 0x06, 0x79, 0x3f, 0xef, 0x5b, 0xe6, 0x35, 0x46, 0x25, 0xf3, 0x88,
0x31, 0xce, 0x37, 0xa6, 0xfc, 0x6b, 0x75, 0x55, 0x6d, 0x25, 0xb4, 0x42, 0xb8,
0xc9, 0xb4, 0xe1, 0xdd, 0xd4, 0x32, 0xd2, 0xa8, 0x4c, 0xdc, 0x20, 0xd6, 0x3c,
0x50, 0xe1, 0xad, 0x4f, 0x75, 0x5e, 0xd8, 0x74, 0x2e, 0x41, 0xe5, 0x97, 0x5e,
0x56, 0x01, 0x6f, 0x2a, 0xa5, 0xe4, 0xb8, 0x86, 0x5f, 0x5d, 0xd5, 0xe1, 0x45,
0x4f, 0x05, 0x72, 0x38, 0xa6, 0xa3, 0x4a, 0xbf, 0x86, 0x71, 0x5e, 0x27, 0x98,
0x4b, 0x28, 0x05, 0xb5, 0xcc, 0x08, 0x9b, 0x90, 0xb3, 0xe6, 0xd4, 0xcf, 0x8d,
0xc2, 0x47, 0x30, 0x4e, 0x1d, 0xfc, 0xa5, 0x31, 0x30, 0x37, 0x10, 0x5e, 0x16,
0x31, 0x1f, 0x4b, 0xff, 0x47, 0xf7, 0x56, 0x4b, 0x05, 0x5a, 0xdb, 0x81, 0x39,
0x19, 0xbd, 0xfc, 0x99, 0xfd, 0xdc, 0x06, 0x95, 0xc1, 0x9d, 0x9c, 0x58, 0xb0,
0xc4, 0xc3, 0x02, 0xfd, 0xdd, 0x25, 0x6d, 0xf7, 0xc8, 0xb7, 0x0d, 0xda, 0x47,
0xa0, 0xfd, 0x7e, 0xce, 0xfa, 0x4b, 0xb7, 0xf1, 0x08, 0xe5, 0xd0, 0x72, 0x47,
0xc1, 0x42, 0xee, 0xc2, 0x75, 0x0f, 0xf8, 0xab, 0xc0, 0xbd, 0xbf, 0x83, 0x24,
0xef, 0x15, 0x56, 0xdb, 0x95, 0x43, 0xef, 0xab, 0xda, 0x60, 0xb9, 0xa8, 0xf5,
0x81, 0xe0, 0xac, 0xa4, 0xb0, 0x4e, 0xa0, 0xe1, 0x7a, 0x55, 0x3b, 0x7a, 0xac,
0xda, 0xba, 0xbe, 0xb8, 0x46, 0x87, 0x25, 0x3c, 0x61, 0xe2, 0x78, 0x58, 0xd8,
0xc2, 0xbc, 0x6e, 0xc5, 0x7e, 0x3f, 0x27, 0xce, 0x82, 0x12, 0xef, 0xe1, 0x45,
0x3d, 0xdb, 0x0c, 0x78, 0xc2, 0x84, 0xea, 0x3b, 0x42, 0x9f, 0x33, 0x31, 0xf1,
0x02, 0xed, 0xdc, 0x16, 0xf4, 0x1f, 0xb8, 0xbc, 0x31, 0xeb, 0x70, 0x56, 0x62,
0x56, 0x4d, 0x56, 0x5d, 0x56, 0x43, 0xd6, 0x93, 0xac, 0x77, 0x59, 0xef, 0xb3,
0x7a, 0xb3, 0x4a, 0xf8, 0xab, 0xfc, 0xe7, 0x2c, 0xb7, 0xec, 0x1f, 0x99, 0x9d,
0xfc, 0xbf, 0x90, 0xaf, 0xf8, 0xdf, 0xb4, 0x1a, 0xc0, 0xad, 0xad, 0x8d, 0x73,
0x6b, 0xff, 0xff, 0xe3, 0x94, 0x4f, 0x07, 0x68, 0xed, 0xa5, 0x4c, 0x73, 0xab,
0xe6, 0xff, 0x07,
};
optimizesize void *__big5hkscs_bmp_encmap(void) {
return xload(&__big5hkscs_bmp_encmap_ptr,
__big5hkscs_bmp_encmap_rodata,
9844, 52802); /* 18.6432% profit */
}
| 60,937 | 771 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__jisx0213_pair_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __jisx0213_pair_decmap_ptr;
static const unsigned char __jisx0213_pair_decmap_rodata[71] = {
0xdb, 0x72, 0xe8, 0x66, 0x0b, 0x5b, 0x43, 0x83, 0x00, 0x12, 0x3a, 0xc0, 0x8a,
0xca, 0x77, 0x68, 0x68, 0xf0, 0x68, 0x68, 0x50, 0x68, 0x68, 0xf8, 0x21, 0xb4,
0x79, 0x5b, 0xe7, 0x44, 0xb6, 0xe6, 0x9e, 0x15, 0x7c, 0x0c, 0x0c, 0x2d, 0x3d,
0x33, 0x54, 0x99, 0xfe, 0xfd, 0xdf, 0xcf, 0xcc, 0xd4, 0xd8, 0x30, 0x83, 0x19,
0xc8, 0x62, 0x67, 0x6a, 0xed, 0x39, 0xa1, 0xca, 0x80, 0x05, 0x9c, 0xeb, 0x3e,
0xa0, 0xf7, 0xfd, 0xbf, 0x3c, 0x00,
};
optimizesize void *__jisx0213_pair_decmap(void) {
return xloadzd(&__jisx0213_pair_decmap_ptr,
__jisx0213_pair_decmap_rodata,
71, 107, 49, 4, 0x939c298fu); /* 36.2245% profit */
}
| 819 | 19 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/big5hkscs_bmp_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) big5hkscs_bmp_encmap_ptr;
static const unsigned char big5hkscs_bmp_encmap_rodata[] = {
0x63, 0x64, 0x58, 0xf1, 0x27, 0x8c, 0x81, 0xe1, 0x8e, 0x31, 0x63, 0xc0, 0x31,
0x06, 0x20, 0x58, 0xc5, 0xc8, 0x18, 0xc8, 0x40, 0x07, 0xf0, 0x9b, 0x71, 0xdf,
0x41, 0x18, 0xfb, 0x3f, 0xa3, 0xd8, 0x73, 0x10, 0x7d, 0x91, 0xe9, 0xd6, 0xed,
0xcb, 0x4c, 0x09, 0xb5, 0x1f, 0x99, 0x02, 0x0a, 0x40, 0x7c, 0x21, 0x66, 0x5b,
0x5b, 0x5c, 0xfa, 0x85, 0x99, 0x1b, 0x1e, 0x97, 0x33, 0x1b, 0x1b, 0x57, 0x30,
0xb3, 0xfe, 0x2b, 0x62, 0x39, 0x70, 0xbe, 0x89, 0xc5, 0xd0, 0x10, 0x24, 0xde,
0xcc, 0x62, 0xfa, 0xdb, 0x8b, 0x95, 0xed, 0x9f, 0x33, 0x1b, 0xe7, 0x57, 0x03,
0x76, 0xc6, 0xdf, 0xda, 0x1c, 0xfc, 0xbf, 0xc4, 0x39, 0x39, 0xfe, 0xf1, 0x71,
0x31, 0xfe, 0xe6, 0xe4, 0xe6, 0xfb, 0xf2, 0x81, 0x9b, 0xf7, 0xfd, 0x65, 0x1e,
0xa1, 0xbf, 0xfb, 0x79, 0xd9, 0xfe, 0xef, 0xe4, 0x63, 0xf8, 0xb5, 0x85, 0x9f,
0xe5, 0xd7, 0x6a, 0x01, 0xa6, 0x9f, 0x8b, 0x05, 0x05, 0xff, 0xf4, 0x0b, 0x69,
0x7f, 0x0a, 0x17, 0x66, 0xfc, 0xe2, 0x2d, 0xc2, 0xfc, 0xca, 0x58, 0x94, 0xf9,
0xbb, 0x86, 0x98, 0xf0, 0x17, 0x2e, 0x71, 0x86, 0x5f, 0xac, 0x12, 0x6c, 0xcf,
0x9f, 0x4b, 0xf0, 0xff, 0xbf, 0x21, 0x29, 0x70, 0xa0, 0x53, 0x8a, 0xe5, 0x6d,
0xb1, 0x34, 0xfb, 0x1c, 0x4e, 0x19, 0x96, 0x1f, 0xff, 0x64, 0x98, 0xff, 0xfe,
0x94, 0x65, 0xfe, 0xf3, 0x59, 0x8e, 0xf1, 0xdf, 0x47, 0x79, 0xa6, 0x9f, 0x2f,
0x15, 0x18, 0xff, 0x3d, 0x57, 0x14, 0x7e, 0x7f, 0x44, 0x89, 0xe9, 0xf7, 0x3e,
0x65, 0xd6, 0xbf, 0xdb, 0x55, 0x18, 0xfe, 0x6d, 0x53, 0x65, 0xfe, 0xbd, 0x5e,
0x8d, 0xe9, 0xe7, 0x72, 0x75, 0xa6, 0x7f, 0x4b, 0x34, 0x78, 0xff, 0x4f, 0xd7,
0x64, 0xfd, 0xd3, 0xaf, 0x25, 0xf0, 0xb5, 0x54, 0x9b, 0xf3, 0x4f, 0xa6, 0x0e,
0xcf, 0x7d, 0x5b, 0x5d, 0xe5, 0xbf, 0x12, 0x7a, 0xec, 0x8f, 0xbe, 0xe8, 0xe9,
0x3c, 0x5d, 0xa7, 0x2f, 0xf1, 0x6f, 0xaa, 0x01, 0xfb, 0xab, 0x4a, 0x43, 0xae,
0xff, 0xf9, 0x46, 0x12, 0x1f, 0x3d, 0x8d, 0x99, 0xfe, 0xb9, 0x99, 0x30, 0x9c,
0x12, 0x34, 0x65, 0xf8, 0xc5, 0x63, 0xc6, 0xfc, 0x8d, 0xc1, 0x9c, 0xf5, 0xd7,
0x37, 0x73, 0x99, 0xff, 0xb7, 0x2c, 0x98, 0xfe, 0x5d, 0xb7, 0x64, 0xfa, 0x75,
0xc1, 0x8a, 0xe5, 0xc7, 0x51, 0x6b, 0xe6, 0x7f, 0x07, 0x6d, 0x58, 0xbf, 0x6d,
0xb6, 0x65, 0x78, 0x34, 0xcd, 0x8e, 0xe9, 0xf7, 0x04, 0x7b, 0xa6, 0x1f, 0xed,
0x0e, 0xac, 0x77, 0xe2, 0x1d, 0x99, 0x6e, 0x9a, 0x3b, 0xf1, 0xfc, 0xd3, 0x72,
0xe6, 0xf8, 0x2a, 0xe1, 0xc2, 0xf6, 0x85, 0xdd, 0x95, 0xed, 0x1f, 0x83, 0x1b,
0xf7, 0x9f, 0x4f, 0x6e, 0x42, 0x7f, 0xee, 0xba, 0xab, 0xfe, 0xdb, 0xee, 0xc1,
0x7e, 0x7f, 0x82, 0x27, 0xdb, 0xaf, 0x56, 0x2f, 0xa6, 0x6f, 0x55, 0xde, 0xcc,
0xdf, 0xf2, 0x7c, 0x24, 0xfe, 0x87, 0xf9, 0x72, 0xbf, 0xb5, 0xf4, 0x63, 0xfd,
0xa1, 0xeb, 0xcf, 0xfc, 0x47, 0x3d, 0x80, 0xe9, 0xbd, 0x68, 0x60, 0xc1, 0xd7,
0xd9, 0x81, 0x2c, 0xff, 0xa7, 0x07, 0x31, 0x3c, 0xaf, 0x0f, 0x96, 0xf9, 0x19,
0x1b, 0xc2, 0xf3, 0xc8, 0x24, 0x34, 0xf0, 0xfb, 0xed, 0x50, 0xe6, 0x2b, 0x6b,
0xc3, 0x18, 0x3f, 0xcd, 0x0f, 0x97, 0xfc, 0xd9, 0x10, 0xc1, 0x71, 0xc4, 0x36,
0x32, 0xf0, 0xdf, 0xeb, 0x48, 0x8e, 0xbf, 0x0f, 0xa3, 0x98, 0xbf, 0x5c, 0x8e,
0x66, 0xfc, 0x76, 0x32, 0x46, 0xf7, 0xcb, 0xc4, 0x58, 0xd9, 0x2f, 0x99, 0x71,
0xcc, 0x5f, 0x63, 0xe2, 0x45, 0xbe, 0xda, 0x25, 0xf0, 0x7d, 0x55, 0x4b, 0xe4,
0xf9, 0x2f, 0x95, 0xc4, 0xf4, 0x5f, 0x22, 0x99, 0xa9, 0x66, 0x72, 0x32, 0xd3,
0x9f, 0xbe, 0x14, 0xae, 0x7f, 0xcd, 0xa9, 0x4c, 0x9b, 0x19, 0x46, 0x01, 0xcd,
0x81, 0x69, 0x1a, 0x3b, 0x3b, 0x36, 0x71, 0xb3, 0x34, 0xa6, 0xb7, 0x00,
};
optimizesize void *big5hkscs_bmp_encmap(void) {
return xload(&big5hkscs_bmp_encmap_ptr,
big5hkscs_bmp_encmap_rodata,
545, 1024); /* 53.2227% profit */
}
| 3,699 | 55 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/jisx0213_emp_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) jisx0213_emp_encmap_ptr;
static const unsigned char jisx0213_emp_encmap_rodata[] = {
0x63, 0x64, 0xe0, 0x5e, 0x32, 0x9b, 0x61, 0xd1, 0xa2, 0x39, 0x0c, 0xc2, 0xc2,
0x73, 0x19, 0xb4, 0x7f, 0xe6, 0x30, 0x7a, 0x79, 0xe5, 0x32, 0x72, 0x5e, 0xb3,
0x66, 0xd2, 0xd0, 0xb0, 0x61, 0xf2, 0xf7, 0xb7, 0x65, 0x62, 0xdf, 0xf9, 0x81,
0xa9, 0x66, 0xae, 0x10, 0xf3, 0xe5, 0xcb, 0xc2, 0xcc, 0xb2, 0xf3, 0x19, 0x80,
0x60, 0x1a, 0xb3, 0xeb, 0x43, 0x63, 0x96, 0x94, 0xa9, 0xa9, 0x2c, 0xf1, 0xf1,
0x0c, 0x50, 0x90, 0xc6, 0xc2, 0xf8, 0x37, 0x99, 0x55, 0xfa, 0x08, 0x2f, 0x5b,
0x6e, 0x1e, 0x3f, 0xdb, 0xf5, 0xeb, 0x02, 0x6c, 0xee, 0x5b, 0xea, 0xd8, 0xd8,
0x9c, 0x76, 0xb3, 0xed, 0xdd, 0xbb, 0x87, 0xed, 0xf0, 0x61, 0x98, 0xba, 0xbd,
0x6c, 0x61, 0x61, 0xfb, 0xd8, 0x74, 0x1f, 0x14, 0xb1, 0x1b, 0x9b, 0x94, 0xb0,
0xcb, 0xfd, 0x02, 0x89, 0x05, 0x72, 0x54, 0x57, 0x07, 0x71, 0x48, 0x48, 0x04,
0x73, 0xc8, 0xad, 0x85, 0xa9, 0x7b, 0xcc, 0xf1, 0xf9, 0x33, 0x88, 0x7e, 0xc2,
0x11, 0xbd, 0xda, 0x94, 0xb3, 0xbf, 0xdf, 0x8c, 0x73, 0xc7, 0x0e, 0x73, 0x4e,
0xb7, 0x65, 0x33, 0x38, 0x65, 0x55, 0x16, 0x70, 0x3e, 0x7c, 0xc8, 0x80, 0x04,
0x16, 0x72, 0x6e, 0xfb, 0x0a, 0xa2, 0x1f, 0x72, 0x16, 0x3d, 0x09, 0xe1, 0xf2,
0x7a, 0xf2, 0x9e, 0x2b, 0xea, 0x48, 0x14, 0xb7, 0x85, 0x7b, 0x16, 0x37, 0xcf,
0xff, 0x38, 0x1e, 0x15, 0x5b, 0x90, 0x5c, 0x05, 0xcf, 0x8c, 0x19, 0x20, 0xba,
0x92, 0xa7, 0xfe, 0xdf, 0x4f, 0x1e, 0x06, 0xb0, 0xbd, 0x5f, 0x78, 0xeb, 0xea,
0xbe, 0xf2, 0x4e, 0x9b, 0xf6, 0x8d, 0x97, 0xf9, 0x1f, 0x88, 0xff, 0x89, 0x6f,
0xcf, 0x1e, 0x98, 0x99, 0x9f, 0xf9, 0x34, 0x97, 0x16, 0xf0, 0x7f, 0xfc, 0x58,
0xc8, 0x3f, 0x6d, 0x1a, 0x88, 0x5f, 0xc4, 0xef, 0xeb, 0x5b, 0xcc, 0x1f, 0x96,
0xdf, 0xcb, 0x2f, 0x26, 0xd6, 0xc7, 0x2f, 0x22, 0xd2, 0xcf, 0xcf, 0xd7, 0x0d,
0x12, 0xe7, 0x15, 0xf0, 0x0a, 0x95, 0x14, 0x50, 0x7a, 0x7a, 0x57, 0x40, 0xce,
0x07, 0xc4, 0xe7, 0x11, 0xd4, 0xbb, 0xb9, 0x43, 0x90, 0x6f, 0x39, 0x88, 0x1d,
0x24, 0x54, 0xb8, 0x05, 0x1c, 0x5e, 0x42, 0x47, 0xae, 0x2c, 0x17, 0x7a, 0xfc,
0x71, 0x9b, 0xd0, 0xa6, 0x4d, 0xdb, 0x85, 0xbc, 0x53, 0x2e, 0x0a, 0x2d, 0x5c,
0x78, 0x49, 0x48, 0xef, 0x45, 0xaf, 0xb0, 0xf2, 0xef, 0x34, 0x11, 0x9e, 0xb7,
0x20, 0x35, 0x1e, 0xa2, 0x05, 0x6d, 0xf1, 0xa2, 0x3e, 0x3e, 0x09, 0xa2, 0x4c,
0x4c, 0x20, 0x7e, 0xa2, 0x68, 0xdd, 0x86, 0x29, 0xa2, 0xb2, 0xb2, 0x53, 0x45,
0xef, 0xbe, 0x5a, 0x2c, 0x1a, 0x78, 0xd7, 0x40, 0x4c, 0xee, 0x3f, 0x48, 0x5c,
0x48, 0x5c, 0xf3, 0x2e, 0x88, 0x3e, 0x2e, 0xee, 0x90, 0xfa, 0x56, 0x7c, 0xca,
0x8f, 0x20, 0x89, 0x2f, 0x5f, 0x82, 0x25, 0x78, 0x2d, 0x41, 0x62, 0x0d, 0x12,
0xb7, 0xfe, 0x2d, 0x95, 0x10, 0xf0, 0x04, 0xb1, 0xef, 0x4b, 0x88, 0x4c, 0x8e,
0x97, 0xe4, 0x0b, 0x02, 0xb1, 0x97, 0x48, 0xb6, 0xb6, 0x2e, 0x95, 0x6c, 0x69,
0x59, 0x26, 0xb9, 0xf9, 0xf8, 0x6e, 0xc9, 0x1d, 0x3b, 0xf6, 0x48, 0x2e, 0x58,
0xb0, 0x57, 0x52, 0x40, 0x60, 0x9f, 0xe4, 0xf6, 0xed, 0xfb, 0x25, 0xbb, 0x76,
0x83, 0xd4, 0x7c, 0x94, 0x2c, 0xff, 0x9c, 0x27, 0x75, 0xf6, 0x6c, 0xbe, 0x14,
0x4f, 0xe8, 0x4e, 0xa9, 0xec, 0x93, 0x12, 0xd2, 0xd7, 0x7f, 0xc1, 0xc2, 0xc2,
0x46, 0xda, 0x6d, 0xf7, 0x26, 0x69, 0xb9, 0x27, 0x95, 0x32, 0x07, 0xdf, 0x83,
0xf8, 0x2b, 0x64, 0x04, 0x7e, 0x4f, 0x91, 0x95, 0x7f, 0x9d, 0x28, 0x67, 0xf4,
0x03, 0xa6, 0x46, 0x43, 0x7e, 0xc1, 0x46, 0x10, 0x6d, 0x25, 0x3f, 0x61, 0x82,
0xb5, 0xfc, 0xf9, 0xf3, 0x36, 0xf2, 0xf5, 0x1f, 0xd6, 0xc9, 0x4b, 0x06, 0x3c,
0x93, 0x3f, 0x76, 0x0c, 0x24, 0xfe, 0x5c, 0xbe, 0xa8, 0x08, 0xa6, 0xf6, 0x85,
0xfc, 0xed, 0xdb, 0x2f, 0xe5, 0x45, 0x5f, 0xee, 0x53, 0x38, 0x77, 0x6e, 0xbf,
0x82, 0xd4, 0xcf, 0xf9, 0x8a, 0x13, 0x26, 0x80, 0xc4, 0x17, 0x28, 0xf6, 0xf4,
0x2c, 0x54, 0x34, 0x37, 0x5f, 0xa4, 0xf8, 0xf1, 0xe3, 0x62, 0x45, 0xa6, 0x4d,
0x0c, 0xa3, 0x80, 0xe6, 0x00, 0x00,
};
optimizesize void *jisx0213_emp_encmap(void) {
return xload(&jisx0213_emp_encmap_ptr,
jisx0213_emp_encmap_rodata,
591, 1024); /* 57.7148% profit */
}
| 3,978 | 59 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/jisx0213_bmp_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) jisx0213_bmp_encmap_ptr;
static const unsigned char jisx0213_bmp_encmap_rodata[] = {
0x63, 0x64, 0xa8, 0xfb, 0xdf, 0xcc, 0xc0, 0xf0, 0xb7, 0x91, 0x31, 0xe0, 0xa5,
0x34, 0x13, 0xc3, 0x21, 0x06, 0x3a, 0x81, 0x7b, 0x4c, 0x76, 0xf6, 0x0f, 0x98,
0x0a, 0x8a, 0x9f, 0x30, 0x09, 0xaf, 0xa9, 0x63, 0xe6, 0x7f, 0x19, 0xc9, 0xc2,
0x7a, 0xdb, 0x80, 0x95, 0xf5, 0xdc, 0x2f, 0x56, 0xe5, 0x7f, 0xd7, 0xd8, 0x36,
0x3e, 0xe3, 0x61, 0x67, 0xc8, 0xab, 0x66, 0x17, 0xae, 0x07, 0xa9, 0x7d, 0xc1,
0x6e, 0xf2, 0x1b, 0x97, 0x39, 0x1b, 0x38, 0xc4, 0xfe, 0xcf, 0xe2, 0xfc, 0xf0,
0x7f, 0x15, 0xa7, 0xe1, 0xaf, 0x12, 0x2e, 0xe6, 0xb3, 0xf6, 0xdc, 0x4c, 0xb7,
0x25, 0x79, 0xe4, 0xbf, 0xbc, 0xe7, 0x61, 0x3d, 0xbf, 0x8b, 0x37, 0xf1, 0x6f,
0x38, 0x1f, 0xc3, 0xaf, 0x20, 0x7e, 0xf1, 0xfc, 0xd5, 0xfc, 0x79, 0xaf, 0x34,
0x04, 0xf8, 0x3e, 0x70, 0x0b, 0xf2, 0x5f, 0x3a, 0x2f, 0x28, 0x78, 0x65, 0xb2,
0x10, 0xeb, 0x14, 0x65, 0xe1, 0xf0, 0xeb, 0x4b, 0x84, 0x2d, 0x27, 0xff, 0x17,
0x66, 0xfd, 0xfc, 0x4e, 0x84, 0xfd, 0xee, 0x51, 0x51, 0xa6, 0x0f, 0x5b, 0xc4,
0x38, 0xae, 0x34, 0x8a, 0x73, 0xbc, 0x4a, 0x91, 0xe0, 0x5f, 0xcf, 0x2a, 0xc9,
0xf3, 0xf7, 0xbb, 0xa4, 0xd8, 0xd6, 0xe9, 0x52, 0x1b, 0x7e, 0x3d, 0x92, 0x62,
0xd9, 0x33, 0x5b, 0xda, 0xfa, 0x85, 0xa7, 0x8c, 0xf8, 0x45, 0x16, 0x59, 0xf6,
0xf2, 0x52, 0x59, 0xa6, 0xff, 0xc5, 0x72, 0x0c, 0x9f, 0xd2, 0xe4, 0x19, 0x3e,
0x47, 0x29, 0x30, 0x7f, 0xf1, 0x51, 0x64, 0xfc, 0xed, 0xae, 0xc4, 0xf0, 0xd5,
0x56, 0x59, 0xe8, 0xbf, 0xb6, 0x0a, 0xc3, 0x4b, 0x51, 0x55, 0xf6, 0xef, 0x6c,
0x6a, 0x5c, 0xff, 0xff, 0xa8, 0xb1, 0x7c, 0x79, 0xab, 0xce, 0xfa, 0xe3, 0xa1,
0x06, 0xcf, 0xd7, 0xd3, 0x9a, 0x0c, 0x7f, 0x4f, 0x6a, 0x31, 0x7f, 0xd9, 0xad,
0xcd, 0xf6, 0x72, 0xbe, 0x0e, 0xc3, 0xdf, 0xb9, 0xba, 0x0c, 0x7f, 0x66, 0xe9,
0xf1, 0xfe, 0x68, 0xd3, 0x17, 0xf8, 0x9a, 0x63, 0x20, 0xfa, 0x37, 0xd4, 0x90,
0xf9, 0xbb, 0x97, 0x11, 0xe7, 0x7f, 0x47, 0x63, 0x96, 0x3f, 0x56, 0x26, 0x0c,
0xbf, 0xcd, 0x4c, 0x19, 0xff, 0x18, 0x99, 0x31, 0xfe, 0xd1, 0x33, 0x67, 0xfe,
0xa7, 0x65, 0xc1, 0xff, 0x57, 0xd2, 0x92, 0xfb, 0x3f, 0x9f, 0x15, 0xd3, 0x6f,
0x0e, 0x6b, 0x86, 0x3f, 0xac, 0x36, 0xe2, 0xbf, 0x5f, 0xd9, 0x70, 0xfd, 0xb9,
0x6b, 0xcb, 0xf0, 0xe6, 0x94, 0x1d, 0xf3, 0xbf, 0x63, 0xf6, 0x0c, 0xbf, 0x0f,
0x39, 0xb0, 0xff, 0xda, 0xe6, 0xc8, 0xf8, 0x7f, 0xab, 0x13, 0xe3, 0xcf, 0x75,
0xce, 0x0c, 0x7f, 0x56, 0xbb, 0x70, 0xfd, 0x9e, 0xeb, 0xca, 0xfa, 0x6f, 0xba,
0x1b, 0xc3, 0xdb, 0x56, 0x77, 0xe6, 0xbf, 0x0d, 0x1e, 0xec, 0x1f, 0xb2, 0x3c,
0x19, 0xbf, 0xc6, 0x7b, 0x31, 0xff, 0x0c, 0xf3, 0xe6, 0x98, 0xf5, 0xd2, 0xdb,
0xfa, 0xd7, 0x4a, 0x1f, 0xa6, 0xdf, 0x8b, 0x7d, 0x79, 0xff, 0x4f, 0xf3, 0x63,
0xf9, 0x37, 0xd1, 0x9f, 0xe1, 0x67, 0x77, 0x00, 0xe3, 0xdf, 0x8e, 0x40, 0x9e,
0xff, 0x35, 0x41, 0x0c, 0x7f, 0xab, 0x82, 0x59, 0xbf, 0x66, 0x87, 0x30, 0x7e,
0x4d, 0x08, 0x65, 0xfc, 0x1f, 0x1f, 0x26, 0xf8, 0xc7, 0x3b, 0x9c, 0x75, 0xde,
0xd3, 0x70, 0xcb, 0x7f, 0xab, 0x23, 0x38, 0xff, 0x2e, 0x88, 0x64, 0xfb, 0x35,
0x35, 0x8a, 0xe1, 0xf7, 0xc4, 0x68, 0xa6, 0xff, 0xfd, 0x31, 0x0c, 0xbf, 0xbb,
0x63, 0x19, 0xff, 0x77, 0xc5, 0x31, 0xfd, 0x6d, 0x8b, 0x67, 0x29, 0xfa, 0x1a,
0x5f, 0x71, 0x2f, 0x26, 0x41, 0xf6, 0xbd, 0x7e, 0xa2, 0xc8, 0x17, 0x81, 0x24,
0x96, 0xcf, 0x0c, 0xc9, 0x1c, 0x7f, 0xbe, 0x26, 0x33, 0xfd, 0x7c, 0x9b, 0xc2,
0xf4, 0xf7, 0x65, 0x2a, 0xc3, 0xa7, 0x3b, 0x69, 0x4c, 0x5f, 0xce, 0xa7, 0x33,
0xfd, 0x3f, 0x9b, 0xc1, 0xb4, 0x88, 0x61, 0x14, 0xd0, 0x1c, 0xe4, 0x65, 0xca,
0xde, 0xd1, 0xcb, 0xe2, 0xcf, 0x42, 0x16, 0xeb, 0xca, 0x72, 0x75, 0xeb, 0xc9,
0x62, 0xe2, 0x05, 0x00,
};
optimizesize void *jisx0213_bmp_encmap(void) {
return xload(&jisx0213_bmp_encmap_ptr,
jisx0213_bmp_encmap_rodata,
563, 1024); /* 54.9805% profit */
}
| 3,806 | 57 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__gb18030ext_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __gb18030ext_encmap_ptr;
static const unsigned char __gb18030ext_encmap_rodata[400] = {
0xed, 0x56, 0x5b, 0x4b, 0x02, 0x61, 0x10, 0x5d, 0xc7, 0x9d, 0x93, 0x89, 0x0f,
0x41, 0x90, 0xe0, 0xcf, 0xe8, 0xa9, 0x1f, 0xd0, 0x63, 0x7f, 0x2a, 0xa9, 0x28,
0xba, 0x47, 0x51, 0x58, 0x44, 0x49, 0x51, 0x41, 0x0f, 0x06, 0x85, 0x44, 0x17,
0x2d, 0xc2, 0x1e, 0x2a, 0x0c, 0xa5, 0x7b, 0xd6, 0x43, 0x17, 0x12, 0x94, 0xca,
0xb4, 0xdb, 0x86, 0xb4, 0x6b, 0x5b, 0xed, 0x9a, 0x94, 0x52, 0x46, 0xc4, 0x9e,
0x97, 0xef, 0xcc, 0x7c, 0x33, 0xe7, 0x0c, 0x1f, 0xbb, 0x30, 0x69, 0x37, 0x7b,
0xed, 0xfb, 0x71, 0x3a, 0x82, 0xb0, 0x85, 0x6d, 0x08, 0x42, 0x10, 0x9b, 0x10,
0x36, 0x60, 0x5d, 0x91, 0xb9, 0x8a, 0x25, 0x2c, 0xbf, 0x07, 0x19, 0x8c, 0x61,
0x1c, 0xc2, 0x30, 0xdc, 0x72, 0xba, 0x1f, 0x03, 0xca, 0x65, 0x2f, 0xfa, 0x20,
0xf4, 0x80, 0xba, 0xe5, 0xa0, 0x19, 0x2d, 0xfa, 0xfa, 0x14, 0xdf, 0x84, 0x49,
0x03, 0xbb, 0x2b, 0x4c, 0xa1, 0x2c, 0xc9, 0xcf, 0x10, 0x86, 0x55, 0x0c, 0x68,
0xea, 0x57, 0x61, 0x5d, 0x2c, 0xa0, 0x3d, 0x7f, 0xf8, 0xe0, 0x2f, 0x8a, 0xae,
0x06, 0xb3, 0xc0, 0xb4, 0xde, 0xc3, 0x0b, 0xb2, 0xd0, 0x64, 0xb1, 0x7d, 0x3f,
0x60, 0x02, 0x56, 0x12, 0x5d, 0xbf, 0x6e, 0x2b, 0xa3, 0x15, 0x6d, 0x8a, 0x6d,
0x3b, 0x3a, 0x0a, 0x70, 0x6f, 0x02, 0x89, 0x75, 0xb9, 0xea, 0xeb, 0x61, 0x49,
0xb3, 0x42, 0x24, 0x7e, 0xe2, 0x1f, 0x9f, 0xf5, 0x81, 0x1f, 0xb3, 0x45, 0xef,
0x58, 0x4c, 0x16, 0x6e, 0x74, 0xcd, 0x09, 0x16, 0x2e, 0xf9, 0x4a, 0xe9, 0x8c,
0x33, 0xc5, 0x38, 0xca, 0x74, 0x91, 0x4b, 0xe6, 0x84, 0x4f, 0xe5, 0xf4, 0x19,
0x9f, 0xe7, 0xf6, 0x38, 0x66, 0x53, 0x59, 0x28, 0x4f, 0xfb, 0x1d, 0x26, 0x12,
0x4b, 0x6d, 0x2f, 0x3f, 0xdd, 0x32, 0x0b, 0x7f, 0x0f, 0x3e, 0x96, 0x82, 0x54,
0x54, 0x04, 0x0c, 0xf9, 0x7f, 0x2b, 0xef, 0x36, 0x5e, 0xc7, 0x90, 0xff, 0x8b,
0xf2, 0xd2, 0xed, 0x37, 0x05, 0xc4, 0xaf, 0x0a, 0xfc, 0x86, 0x81, 0x61, 0xf0,
0x6d, 0x83, 0x68, 0x79, 0xe6, 0x18, 0x4c, 0xd1, 0x4c, 0x92, 0x2a, 0xc8, 0x41,
0xb1, 0x92, 0xf7, 0xcb, 0x84, 0x59, 0x25, 0x6f, 0x1f, 0x73, 0xe5, 0xcb, 0xe1,
0x20, 0x1b, 0x5e, 0x53, 0x8d, 0x66, 0xbd, 0x62, 0xb5, 0x36, 0xf0, 0x68, 0x78,
0x55, 0x43, 0x84, 0xa4, 0x43, 0x85, 0xd5, 0xe4, 0x9a, 0x64, 0xda, 0x04, 0x79,
0x5a, 0xff, 0x3e, 0x69, 0xb7, 0x83, 0xe0, 0x9e, 0xae, 0xc6, 0x65, 0xd2, 0xf7,
0xdc, 0x7b, 0x33, 0x09, 0xe7, 0x90, 0xe9, 0x40, 0x9e, 0x67, 0x37, 0xb3, 0x1c,
0xae, 0x61, 0x5d, 0x5d, 0x12, 0xe7, 0x30, 0xaf, 0xb0, 0x29, 0x90, 0x47, 0x39,
0x47, 0x41, 0x23, 0xaf, 0xeb, 0x63, 0x27, 0xba, 0x54, 0x5a, 0x0b, 0x67, 0xf6,
0x4e, 0x19, 0x61, 0x3a, 0xd4, 0xaf, 0x4a, 0x0b, 0xfc, 0x0c,
};
optimizesize void *__gb18030ext_encmap(void) {
return xloadzd(&__gb18030ext_encmap_ptr,
__gb18030ext_encmap_rodata,
400, 3366, 3227, 2, 0xd8a75b40u); /* 6.19771% profit */
}
| 2,833 | 44 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/jisx0213_1_emp_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) jisx0213_1_emp_decmap_ptr;
static const unsigned char jisx0213_1_emp_decmap_rodata[] = {
0x63, 0x60, 0x18, 0x9a, 0x80, 0x91, 0x41, 0x49, 0x89, 0x89, 0xc1, 0xa9, 0x7a,
0x20, 0xdd, 0x60, 0xc3, 0x10, 0x92, 0x37, 0x18, 0xc3, 0x26, 0x9c, 0xc1, 0xaa,
0x68, 0x02, 0x83, 0x66, 0xc2, 0x09, 0x86, 0x9c, 0x9c, 0x93, 0x0c, 0x75, 0x75,
0xa7, 0x18, 0x34, 0xf3, 0x04, 0x18, 0x63, 0x63, 0x05, 0x19, 0x8d, 0x73, 0xbc,
0x19, 0x3d, 0x03, 0x41, 0x6a, 0x42, 0x18, 0xd3, 0xd2, 0x18, 0x46, 0xc1, 0x88,
0x07, 0x00,
};
optimizesize void *jisx0213_1_emp_decmap(void) {
return xload(&jisx0213_1_emp_decmap_ptr,
jisx0213_1_emp_decmap_rodata,
67, 1024); /* 6.54297% profit */
}
| 763 | 19 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/alg_jisx0201.inc | /* clang-format off */
#define JISX0201_R_ENCODE(c, assi) \
if ((c) < 0x80 && (c) != 0x5c && (c) != 0x7e) { \
(assi) = (c); \
} \
else if ((c) == 0x00a5) { \
(assi) = 0x5c; \
} \
else if ((c) == 0x203e) { \
(assi) = 0x7e; \
}
#define JISX0201_K_ENCODE(c, assi) \
if ((c) >= 0xff61 && (c) <= 0xff9f) { \
(assi) = (c) - 0xfec0; \
}
#define JISX0201_ENCODE(c, assi) \
JISX0201_R_ENCODE(c, assi) \
else JISX0201_K_ENCODE(c, assi)
#define JISX0201_R_DECODE_CHAR(c, assi) \
if ((c) < 0x5c) { \
(assi) = (c); \
} \
else if ((c) == 0x5c) { \
(assi) = 0x00a5; \
} \
else if ((c) < 0x7e) { \
(assi) = (c); \
} \
else if ((c) == 0x7e) { \
(assi) = 0x203e; \
} \
else if ((c) == 0x7f) { \
(assi) = 0x7f; \
}
#define JISX0201_R_DECODE(c, writer) \
if ((c) < 0x5c) { \
OUTCHAR(c); \
} \
else if ((c) == 0x5c) { \
OUTCHAR(0x00a5); \
} \
else if ((c) < 0x7e) { \
OUTCHAR(c); \
} \
else if ((c) == 0x7e) { \
OUTCHAR(0x203e); \
} \
else if ((c) == 0x7f) { \
OUTCHAR(0x7f); \
}
#define JISX0201_K_DECODE(c, writer) \
if ((c) >= 0xa1 && (c) <= 0xdf) { \
OUTCHAR(0xfec0 + (c)); \
}
#define JISX0201_K_DECODE_CHAR(c, assi) \
if ((c) >= 0xa1 && (c) <= 0xdf) { \
(assi) = 0xfec0 + (c); \
}
#define JISX0201_DECODE(c, writer) \
JISX0201_R_DECODE(c, writer) \
else JISX0201_K_DECODE(c, writer)
| 3,155 | 68 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__gbkext_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __gbkext_decmap_ptr;
static const unsigned char __gbkext_decmap_rodata[3936] = {
0xbd, 0x5b, 0xdb, 0x73, 0x56, 0xd5, 0x15, 0x97, 0xbd, 0x7f, 0x67, 0x65, 0xbb,
0xe7, 0x78, 0xe6, 0x9b, 0x4c, 0x26, 0xc3, 0x30, 0x3c, 0x38, 0x3e, 0x74, 0x3a,
0x4e, 0xa7, 0x0f, 0x1d, 0xda, 0xe9, 0x53, 0x1f, 0x3a, 0x9d, 0x4e, 0xa7, 0x0f,
0xfd, 0x13, 0x7c, 0xe8, 0xdf, 0xd0, 0x3f, 0x40, 0xc5, 0x94, 0x60, 0x90, 0x5b,
0x41, 0x31, 0x22, 0xe5, 0x1a, 0x45, 0x14, 0x09, 0x60, 0x22, 0x50, 0x07, 0x50,
0x10, 0xd0, 0x68, 0x07, 0x51, 0x06, 0x44, 0xd1, 0x22, 0x72, 0x0b, 0x82, 0x17,
0xa0, 0x84, 0x8b, 0xf4, 0xec, 0xfb, 0xde, 0xe7, 0x9c, 0x2f, 0x09, 0x89, 0xe9,
0x21, 0x70, 0xbe, 0x7c, 0x67, 0xdf, 0xce, 0xda, 0x6b, 0xfd, 0xd6, 0x6f, 0xad,
0xb5, 0x79, 0xea, 0x4d, 0x06, 0xc6, 0x3a, 0x49, 0xb6, 0x18, 0x03, 0x91, 0x64,
0x28, 0x2f, 0x29, 0xca, 0x5f, 0x20, 0x0a, 0x01, 0x62, 0x05, 0x2b, 0x3f, 0xab,
0x36, 0xe5, 0x45, 0xe6, 0xc6, 0xf4, 0x57, 0xe6, 0x46, 0x17, 0x0e, 0x66, 0xa7,
0x0e, 0x66, 0x79, 0xf9, 0x89, 0x31, 0x59, 0x48, 0xdb, 0xa8, 0xfc, 0xa5, 0x4b,
0x10, 0x43, 0x39, 0xaa, 0x80, 0x60, 0x50, 0x03, 0x92, 0x1e, 0x15, 0xb6, 0x27,
0xb1, 0x5c, 0xdd, 0xf2, 0xf2, 0xb9, 0x54, 0xcd, 0x49, 0x3d, 0x52, 0x83, 0x84,
0xe9, 0x72, 0xa0, 0xbb, 0x7c, 0xac, 0x7e, 0x25, 0x3b, 0x2c, 0x31, 0xdf, 0xd6,
0x34, 0x33, 0xf7, 0xc2, 0x75, 0x0c, 0xab, 0x13, 0xe6, 0x26, 0xcd, 0xba, 0xa5,
0x6a, 0x27, 0xf4, 0x60, 0xba, 0x4f, 0x68, 0x5a, 0x5e, 0x17, 0xf6, 0x66, 0x5f,
0xef, 0xcd, 0xca, 0x09, 0xd4, 0x03, 0x61, 0x6e, 0x24, 0x44, 0x68, 0x60, 0x16,
0x0d, 0x3d, 0x77, 0x98, 0xc9, 0xbd, 0x89, 0x1d, 0xcb, 0x8f, 0xa8, 0x1a, 0xd9,
0xe9, 0xc1, 0xd2, 0x99, 0xa2, 0x11, 0x85, 0x79, 0xe0, 0xa5, 0x51, 0x6f, 0xe2,
0xfe, 0x8d, 0x06, 0x50, 0xcd, 0x84, 0x9f, 0x3a, 0x3c, 0xa0, 0xcb, 0x7b, 0xb2,
0x8b, 0x7b, 0xb2, 0xea, 0x4a, 0x1a, 0x7e, 0xab, 0x5c, 0x42, 0x92, 0x91, 0x86,
0x08, 0x83, 0xaa, 0x3f, 0x92, 0x5a, 0xa5, 0xb4, 0x8c, 0xe0, 0xf5, 0x97, 0x4a,
0x15, 0x98, 0xdd, 0x9f, 0x72, 0xeb, 0x04, 0xd3, 0x4f, 0x4b, 0x69, 0x94, 0x5f,
0x21, 0xc8, 0x5d, 0x75, 0xb0, 0x8b, 0x50, 0x0f, 0xa8, 0x50, 0xfb, 0x6b, 0x06,
0x29, 0x60, 0x5f, 0xa6, 0xec, 0xa2, 0x3e, 0x16, 0xc8, 0xad, 0x0a, 0x31, 0x3d,
0xc4, 0xc8, 0x50, 0x76, 0x64, 0x28, 0xb3, 0x3b, 0x6a, 0xa7, 0x42, 0xb4, 0x7a,
0x24, 0x7b, 0xec, 0x9f, 0x28, 0x15, 0x53, 0x4a, 0x2a, 0x58, 0x22, 0x7f, 0xb7,
0x67, 0xf0, 0xfb, 0x54, 0xd9, 0x0b, 0x84, 0xd6, 0xc2, 0xa9, 0xb6, 0x9e, 0x41,
0xa9, 0x2d, 0x23, 0xb7, 0xd8, 0xd0, 0x43, 0x68, 0xb5, 0x93, 0x46, 0x35, 0x80,
0x96, 0x12, 0x9c, 0x14, 0xa6, 0x1f, 0x33, 0x3a, 0x7e, 0x7a, 0x30, 0x3b, 0x35,
0x98, 0xd9, 0xe5, 0xe9, 0x1f, 0x22, 0x8a, 0xd7, 0x6c, 0x86, 0xd4, 0xef, 0x51,
0xe8, 0x46, 0x52, 0x2b, 0x95, 0x9c, 0x93, 0x6b, 0x03, 0x81, 0xe8, 0x54, 0xf7,
0xbc, 0x1c, 0x38, 0x2f, 0x3b, 0x12, 0x19, 0xed, 0x36, 0xa2, 0xe8, 0x24, 0xab,
0x8a, 0xf0, 0x7b, 0xa7, 0xf6, 0xc0, 0xfc, 0x4e, 0x42, 0x6b, 0xb7, 0x7e, 0xa1,
0x4e, 0xdd, 0x41, 0xf5, 0x93, 0xe5, 0x72, 0xbb, 0x41, 0xd2, 0xcc, 0x47, 0x4e,
0xcd, 0x40, 0xa6, 0x0f, 0xcc, 0x6b, 0x45, 0xe2, 0x11, 0x6c, 0xdb, 0x96, 0x6c,
0xcb, 0x96, 0x4c, 0xf7, 0xb5, 0xdf, 0xe9, 0xed, 0xf2, 0xa2, 0x0f, 0xda, 0x5f,
0x9a, 0x16, 0x8c, 0xd0, 0x4b, 0xfb, 0x2d, 0xf7, 0x32, 0x77, 0x5b, 0x47, 0x1e,
0x27, 0x22, 0xbd, 0xf0, 0xc6, 0xad, 0x97, 0xa6, 0xb0, 0xc2, 0x2c, 0x56, 0x4d,
0xa4, 0xf5, 0xcc, 0xbc, 0x16, 0x91, 0xdd, 0x14, 0x10, 0x0b, 0x1b, 0xad, 0x57,
0x6e, 0x67, 0x27, 0x23, 0xd8, 0x44, 0xad, 0x85, 0x69, 0x68, 0x5f, 0x65, 0xf7,
0x40, 0xf6, 0xc6, 0x40, 0x06, 0xa6, 0x01, 0x06, 0xf1, 0xba, 0xc3, 0x9d, 0x6a,
0x76, 0x51, 0x57, 0x8d, 0x9a, 0xf1, 0x46, 0xf0, 0x52, 0xae, 0xa9, 0x40, 0x50,
0x79, 0xbd, 0x40, 0xa1, 0x16, 0x27, 0xea, 0x66, 0x6c, 0x17, 0x2b, 0x72, 0xe6,
0x04, 0x6e, 0xe1, 0x04, 0x85, 0x69, 0xd0, 0xa9, 0xc5, 0x0d, 0xe6, 0xde, 0x94,
0xb1, 0x3b, 0xeb, 0xb2, 0xb1, 0x75, 0x59, 0xee, 0xd6, 0x4b, 0x61, 0xfe, 0x9c,
0xcc, 0xee, 0x22, 0x05, 0x1c, 0xf3, 0x58, 0x8b, 0x4d, 0x30, 0x44, 0x6f, 0xe7,
0x90, 0x4b, 0x30, 0x8b, 0x6b, 0xbe, 0xaf, 0xdf, 0xdf, 0x08, 0x88, 0xd0, 0x0e,
0x3d, 0x28, 0x7a, 0x91, 0x18, 0x65, 0x6a, 0xb8, 0x05, 0x8b, 0x27, 0xec, 0xec,
0x8b, 0xd9, 0x7f, 0x5e, 0xcc, 0x58, 0xf4, 0x0a, 0x95, 0x2d, 0xa8, 0x4c, 0x82,
0xea, 0x16, 0x34, 0xad, 0xc3, 0x1a, 0x44, 0xfc, 0x76, 0xf0, 0x6f, 0x29, 0xac,
0xd5, 0xaa, 0x5d, 0x10, 0x1a, 0xc4, 0xac, 0x96, 0x0b, 0x6d, 0xcf, 0x39, 0xe2,
0x1e, 0x5e, 0x76, 0x56, 0x58, 0x52, 0xd8, 0xbe, 0x16, 0x09, 0xd4, 0x78, 0xdb,
0x9e, 0xcf, 0x5e, 0x7b, 0x3e, 0x93, 0x11, 0xa4, 0x45, 0xaa, 0x41, 0xda, 0x79,
0x91, 0x05, 0x25, 0x54, 0x57, 0x6c, 0x80, 0xa7, 0x15, 0x1c, 0x85, 0xdd, 0xde,
0x68, 0xe3, 0xc8, 0xa3, 0x38, 0xdc, 0xf6, 0x55, 0x04, 0x12, 0x3e, 0xfa, 0xa1,
0x65, 0x1b, 0x9f, 0xd2, 0xe8, 0x47, 0xc0, 0x36, 0xae, 0xcc, 0xd6, 0xad, 0xcc,
0xac, 0xef, 0x4e, 0xa6, 0xf1, 0x92, 0x83, 0x43, 0x65, 0xab, 0x21, 0x6d, 0x3d,
0x46, 0xfc, 0x35, 0xb5, 0xf5, 0x28, 0x91, 0x80, 0x2b, 0xe3, 0x90, 0x68, 0x41,
0x8b, 0xcc, 0xbd, 0xba, 0x36, 0x23, 0xa1, 0xf1, 0xb6, 0xec, 0xd6, 0xd9, 0x62,
0xd6, 0xd7, 0x48, 0x8d, 0xc9, 0x0a, 0x6a, 0xd5, 0x93, 0xd3, 0x4b, 0xb3, 0x93,
0x4b, 0x33, 0x3f, 0xa1, 0xf0, 0x2e, 0xc6, 0x01, 0x61, 0xee, 0xb0, 0xd6, 0x7c,
0x27, 0x2c, 0x5e, 0xfa, 0x7d, 0xd4, 0x0b, 0x9a, 0xad, 0x01, 0x4b, 0x46, 0x6a,
0xef, 0x10, 0x86, 0x22, 0xd1, 0x79, 0x17, 0xa3, 0x7d, 0x52, 0xcb, 0xbf, 0x29,
0x0c, 0x75, 0x21, 0xcb, 0x05, 0x50, 0x73, 0xfb, 0x7e, 0xb3, 0x04, 0x90, 0x7a,
0x2d, 0xf5, 0xcf, 0x9d, 0xbe, 0x6c, 0xac, 0x2f, 0x23, 0x2f, 0xf9, 0xa0, 0x13,
0x60, 0x6e, 0xa9, 0x54, 0x71, 0x4a, 0x6e, 0xbc, 0x04, 0x49, 0x62, 0x0b, 0xa1,
0x71, 0x00, 0xaa, 0xba, 0x6f, 0x6d, 0x39, 0x40, 0x53, 0xf7, 0xf4, 0x3b, 0xb5,
0xea, 0xd2, 0x74, 0xd6, 0xf7, 0x66, 0x2f, 0xf4, 0x66, 0xd2, 0x59, 0xbd, 0xf6,
0x7b, 0x6a, 0x75, 0xa2, 0x88, 0x97, 0x4c, 0xfe, 0xb9, 0x17, 0x66, 0xa2, 0x99,
0x48, 0xb4, 0xdc, 0xee, 0x27, 0x24, 0xd9, 0x79, 0x4a, 0x8c, 0x34, 0x08, 0x2a,
0x82, 0x9c, 0xf2, 0x94, 0xe8, 0xb0, 0xe0, 0xb3, 0xaa, 0xe6, 0x16, 0xcb, 0xa5,
0x65, 0xa6, 0x37, 0x5e, 0xc7, 0x4a, 0x77, 0xe7, 0xfc, 0x6c, 0xcb, 0xfc, 0x8c,
0x58, 0xa0, 0xa0, 0x75, 0xc9, 0x18, 0x67, 0x69, 0x35, 0x94, 0x0c, 0x18, 0xe8,
0x7d, 0x17, 0x54, 0x18, 0xdd, 0x8e, 0xe7, 0x86, 0x37, 0x26, 0xef, 0x62, 0x94,
0x84, 0xd4, 0x18, 0xd2, 0x9a, 0x3b, 0xd3, 0xc3, 0xc0, 0xf2, 0xaa, 0x6e, 0xeb,
0xa6, 0xf4, 0x0f, 0x99, 0x65, 0x46, 0x58, 0xea, 0xbc, 0x87, 0xd1, 0x67, 0x38,
0x79, 0x0a, 0xd6, 0x22, 0xc3, 0x72, 0xef, 0xdc, 0xc5, 0xd8, 0x5d, 0xab, 0xe9,
0xcc, 0x69, 0xa3, 0x06, 0x21, 0x18, 0xd5, 0x27, 0xc4, 0x40, 0x42, 0x41, 0xad,
0x34, 0x8d, 0x30, 0x2b, 0x2c, 0x98, 0x73, 0xe8, 0x4e, 0xe5, 0x05, 0x4b, 0x3c,
0x25, 0x51, 0xa3, 0xc6, 0x20, 0x72, 0xe6, 0x91, 0x52, 0x55, 0x3c, 0x6c, 0xc2,
0x8c, 0xab, 0x7e, 0xb0, 0xbc, 0x7d, 0x34, 0x86, 0x7f, 0x8f, 0x55, 0x35, 0x4d,
0x54, 0x2d, 0x26, 0xa0, 0x22, 0x55, 0x02, 0x8f, 0x46, 0x55, 0x47, 0xa5, 0x33,
0xba, 0x98, 0x51, 0x2a, 0x2f, 0x23, 0xa7, 0x9a, 0xca, 0x0b, 0x08, 0x0b, 0x04,
0x7e, 0x15, 0xd4, 0x69, 0xbd, 0x8a, 0xb6, 0xf3, 0xa0, 0x66, 0x6a, 0x0c, 0x49,
0x4e, 0xd4, 0xe6, 0xa7, 0xc4, 0x9f, 0x5b, 0xd7, 0x70, 0xfd, 0x1a, 0x5a, 0x25,
0xe5, 0x52, 0xf8, 0x4e, 0x79, 0xe9, 0x68, 0xf4, 0x44, 0xd2, 0xd3, 0x73, 0x27,
0x14, 0xea, 0xb2, 0xce, 0x18, 0x2c, 0x98, 0x87, 0xd2, 0x87, 0x22, 0x36, 0x76,
0xcb, 0xbd, 0x1d, 0xc5, 0x21, 0x27, 0x41, 0xa9, 0x26, 0xf3, 0xc2, 0x2c, 0xf7,
0x56, 0x1a, 0x2e, 0x6d, 0x15, 0xd8, 0xec, 0x82, 0x8c, 0x76, 0x82, 0x10, 0x66,
0xb1, 0xc4, 0x10, 0xde, 0x64, 0x1d, 0xfc, 0x68, 0xe0, 0xdb, 0x79, 0x15, 0x83,
0x57, 0x81, 0xd4, 0x48, 0xa1, 0x45, 0x95, 0x23, 0xf2, 0x60, 0xe9, 0xbe, 0xa7,
0x74, 0x38, 0x9e, 0xd3, 0x4d, 0x81, 0x94, 0x49, 0x08, 0x04, 0x4a, 0x80, 0xd4,
0xef, 0x79, 0xc5, 0xc4, 0x84, 0xe0, 0x94, 0xdc, 0x7d, 0xeb, 0xdd, 0xa3, 0x18,
0x1e, 0x4d, 0x9d, 0xa7, 0x08, 0x4c, 0x95, 0x3c, 0xdf, 0xd1, 0xe6, 0xeb, 0xe9,
0x23, 0xaa, 0x04, 0xc0, 0x39, 0x73, 0x67, 0xe9, 0x80, 0x09, 0x2f, 0x03, 0x04,
0x13, 0x33, 0xbe, 0x88, 0x3c, 0x92, 0x58, 0x69, 0xe4, 0x3a, 0x38, 0x26, 0xaf,
0xa8, 0x1e, 0x2b, 0x02, 0xcd, 0xf7, 0x2e, 0x43, 0x04, 0xbb, 0xf6, 0xaa, 0x50,
0x8c, 0x9c, 0xc3, 0x91, 0x73, 0x2e, 0x4e, 0xb1, 0x82, 0x10, 0x7e, 0x28, 0x2f,
0x33, 0x54, 0xb9, 0x77, 0x0c, 0xa8, 0xd1, 0xf3, 0xf6, 0x91, 0x9e, 0xa7, 0xa5,
0xde, 0x77, 0x09, 0x0b, 0x66, 0x86, 0x54, 0xc0, 0x32, 0x00, 0xbf, 0x1b, 0x86,
0x90, 0xba, 0x10, 0x4c, 0x87, 0x72, 0x3a, 0x58, 0x31, 0xf3, 0x49, 0x0b, 0x63,
0x65, 0x80, 0xb2, 0xf4, 0x0c, 0xfa, 0xce, 0xd8, 0x5d, 0x66, 0x08, 0x91, 0xb2,
0x8e, 0x66, 0xb4, 0xb2, 0x69, 0x74, 0x92, 0x01, 0x9d, 0xdd, 0xa5, 0x62, 0x36,
0xe1, 0x90, 0x04, 0x2a, 0xec, 0x8a, 0x9a, 0xa0, 0x20, 0x20, 0x02, 0xaf, 0x0a,
0x77, 0x2f, 0xfd, 0x4e, 0x4b, 0xf9, 0xf9, 0xe0, 0x1d, 0xbb, 0x51, 0x9b, 0x21,
0xde, 0xc3, 0xd4, 0x09, 0xba, 0xf4, 0x80, 0xa1, 0x63, 0x8b, 0x3e, 0xc7, 0xc2,
0xcf, 0x91, 0xf8, 0x11, 0xcf, 0xd0, 0xa3, 0xa0, 0x38, 0x72, 0x30, 0x4e, 0x5a,
0x11, 0x4a, 0xa1, 0xc2, 0x8e, 0x50, 0xa5, 0xff, 0xa8, 0x73, 0xcf, 0x10, 0x6e,
0x13, 0x3c, 0x66, 0x80, 0x85, 0xb0, 0xcc, 0xc4, 0x9b, 0x01, 0x3b, 0x28, 0x9a,
0x01, 0xf0, 0xad, 0xc1, 0x9e, 0x3c, 0x89, 0x7b, 0x27, 0x50, 0x81, 0xe8, 0x80,
0xa4, 0x54, 0xe7, 0xda, 0x35, 0xbf, 0xd9, 0x40, 0xef, 0xbc, 0x30, 0x52, 0xe3,
0xa7, 0x54, 0x22, 0x88, 0x69, 0x14, 0x9a, 0x03, 0xa9, 0xca, 0x06, 0xa4, 0xd9,
0x1a, 0x73, 0xdf, 0xf6, 0x09, 0x5e, 0xfb, 0x04, 0xb1, 0x82, 0xfc, 0xdf, 0xae,
0xbc, 0xe2, 0x7d, 0x5c, 0xfc, 0x04, 0x4f, 0x9a, 0x2b, 0x22, 0x2a, 0xaa, 0xee,
0xc7, 0xa0, 0xff, 0xe5, 0xa3, 0xf8, 0xea, 0x68, 0x70, 0x36, 0xd4, 0x84, 0x61,
0x02, 0x09, 0x7d, 0xd3, 0x9a, 0x56, 0xa4, 0xb4, 0xdb, 0xe5, 0x2f, 0x62, 0x99,
0x19, 0xf8, 0x10, 0x52, 0x6a, 0x5d, 0xcb, 0x99, 0xce, 0xc7, 0xc0, 0x31, 0x44,
0xf2, 0xb4, 0x55, 0x53, 0x1f, 0xb8, 0xf6, 0x70, 0x2c, 0x42, 0x10, 0x85, 0x5c,
0x8e, 0x1e, 0x3c, 0x17, 0x86, 0xa4, 0x51, 0xce, 0x02, 0xfc, 0xb1, 0x7c, 0x64,
0x04, 0x47, 0x46, 0x60, 0x33, 0x13, 0xe5, 0x14, 0x12, 0x32, 0x77, 0x6a, 0xe6,
0xe8, 0x12, 0x44, 0x4c, 0x7f, 0x0c, 0xc8, 0x2b, 0x37, 0x53, 0xf2, 0x38, 0x21,
0x0d, 0xbe, 0x23, 0x84, 0xed, 0x0e, 0x41, 0x03, 0xfd, 0xf3, 0xc0, 0x83, 0x9c,
0x0a, 0xcb, 0x91, 0x9c, 0x8e, 0x2b, 0xc7, 0x4c, 0xd1, 0x36, 0x90, 0xcd, 0x2e,
0xd9, 0xe4, 0x5c, 0x62, 0xd2, 0xe5, 0x28, 0x06, 0x97, 0x74, 0x18, 0xe1, 0x5e,
0x17, 0xcb, 0x0f, 0x61, 0xc9, 0xa1, 0x88, 0x2b, 0xc7, 0x61, 0x27, 0xd5, 0x02,
0xb5, 0x9a, 0x49, 0x52, 0xd8, 0x1b, 0x8a, 0xd0, 0xc3, 0x62, 0x81, 0x0f, 0x1d,
0x1c, 0x65, 0x77, 0x40, 0x6d, 0xc2, 0xc7, 0x5c, 0x34, 0xc6, 0x70, 0x6e, 0x88,
0x00, 0x3d, 0x09, 0x33, 0x17, 0x40, 0x12, 0x5a, 0xb2, 0x9b, 0x6f, 0xe3, 0xfa,
0xdb, 0x21, 0x58, 0x8f, 0x5a, 0xc7, 0x4a, 0xe1, 0x42, 0x79, 0xc4, 0x41, 0xa9,
0x60, 0x4d, 0xb6, 0x8e, 0x2a, 0xe0, 0xc4, 0xe6, 0x5d, 0x8b, 0xe8, 0x12, 0x1b,
0x9c, 0xd0, 0x1e, 0x51, 0xcd, 0x42, 0xe8, 0xeb, 0xe5, 0xbd, 0xd8, 0xb4, 0x17,
0xe3, 0xc7, 0x20, 0x18, 0x27, 0x53, 0x29, 0xc8, 0x11, 0x74, 0x11, 0x52, 0xaf,
0x56, 0xf7, 0x92, 0x25, 0xe5, 0x3a, 0x69, 0x2b, 0x74, 0xa2, 0x17, 0x95, 0xd0,
0xde, 0x4a, 0x40, 0x0a, 0x34, 0x31, 0x18, 0x0f, 0x64, 0x24, 0xea, 0x6b, 0x28,
0xbf, 0x5a, 0xb1, 0x07, 0xcb, 0xf6, 0xa0, 0xbe, 0xc4, 0x0a, 0x63, 0xb1, 0xc6,
0x2b, 0x22, 0xac, 0x4d, 0x43, 0xc4, 0xc8, 0x3d, 0x53, 0x55, 0xad, 0x6a, 0xab,
0xaa, 0xe0, 0x71, 0x45, 0x9d, 0xd0, 0xd4, 0x66, 0x9c, 0xe0, 0xef, 0xf0, 0x30,
0x0e, 0x0e, 0xa7, 0x49, 0x54, 0xb3, 0x8a, 0x3c, 0xca, 0xc3, 0x07, 0x3d, 0xb6,
0xbc, 0x87, 0x1c, 0x84, 0xc1, 0x9a, 0x24, 0x42, 0xee, 0xa5, 0x4d, 0x3a, 0xc0,
0x71, 0x24, 0x66, 0x23, 0x1f, 0x1f, 0xe2, 0x83, 0x1d, 0x3a, 0xcc, 0x17, 0xdf,
0xed, 0x78, 0xa0, 0xbc, 0x8e, 0xdd, 0xa3, 0x37, 0x33, 0xdf, 0xe7, 0xe6, 0xf7,
0x0a, 0x8f, 0x24, 0xcb, 0xf4, 0xfc, 0xd7, 0xe8, 0x81, 0x9e, 0x0e, 0xf6, 0x20,
0x7b, 0xa8, 0xbf, 0x63, 0x65, 0x07, 0x3b, 0xf6, 0x4d, 0x07, 0x9b, 0x7b, 0xed,
0x6f, 0x78, 0xf8, 0xe1, 0xb5, 0x5c, 0xf4, 0xeb, 0xd6, 0xb3, 0xba, 0xc4, 0x63,
0x3f, 0x67, 0xdb, 0x66, 0xad, 0x97, 0x93, 0x40, 0xf4, 0xb9, 0xe6, 0x76, 0xe5,
0x22, 0x8d, 0x5e, 0xa4, 0xb0, 0xa3, 0x7f, 0x61, 0x7f, 0x2e, 0x3f, 0xfc, 0xe9,
0xfc, 0x43, 0xb7, 0x7e, 0xdd, 0xcd, 0xf6, 0xed, 0xa5, 0x07, 0x26, 0x71, 0x9d,
0xbc, 0xd1, 0xf1, 0xe9, 0x8d, 0x8e, 0x1f, 0x6e, 0x75, 0x88, 0xcb, 0xb7, 0x3a,
0x76, 0xdd, 0xe8, 0x78, 0x7c, 0x78, 0x96, 0x9b, 0xe5, 0xda, 0x83, 0xc7, 0x39,
0x9b, 0x53, 0xbe, 0xea, 0x1f, 0xbb, 0xca, 0x57, 0x19, 0xda, 0x4c, 0x67, 0x09,
0xf3, 0x76, 0xdd, 0xa6, 0xb5, 0x7f, 0xe8, 0x1f, 0xa6, 0x53, 0xf7, 0xe8, 0xb3,
0x7b, 0xe5, 0x0c, 0xf3, 0xff, 0x45, 0xfb, 0x67, 0xb1, 0xb7, 0x67, 0xb1, 0xab,
0x7c, 0x2b, 0x63, 0xc7, 0x87, 0x9a, 0x01, 0x82, 0xed, 0xa6, 0x61, 0xef, 0x2f,
0x06, 0x92, 0x85, 0x7d, 0xb3, 0x97, 0x5e, 0xe9, 0xf3, 0x46, 0x49, 0xac, 0x4b,
0x83, 0x5d, 0xa4, 0x0b, 0x16, 0x93, 0x99, 0x4d, 0x54, 0x49, 0x63, 0xe1, 0x22,
0xd6, 0x9e, 0xcb, 0xdb, 0x71, 0x71, 0x3b, 0x42, 0x0e, 0xa1, 0x21, 0x43, 0x43,
0x0d, 0xb6, 0x08, 0xe6, 0xeb, 0x2c, 0x21, 0x47, 0xe7, 0x95, 0x56, 0x50, 0x88,
0x42, 0xb5, 0xb4, 0xb7, 0xe1, 0xeb, 0x6d, 0x81, 0x54, 0x86, 0xcc, 0x17, 0xd0,
0xcc, 0x4f, 0x4d, 0xcc, 0x1f, 0x56, 0xe9, 0x42, 0x11, 0x53, 0x0a, 0x32, 0xa5,
0x9b, 0x6a, 0xbf, 0x33, 0x5b, 0xf1, 0xc5, 0x56, 0x6f, 0xce, 0x92, 0x1a, 0xf0,
0x84, 0x42, 0x60, 0x82, 0x5a, 0xd6, 0x04, 0x69, 0xf8, 0xd2, 0x6c, 0x3d, 0x57,
0x5e, 0xc5, 0xe8, 0xab, 0x0d, 0x56, 0x06, 0x8d, 0xf3, 0x95, 0x6c, 0x51, 0x05,
0xe9, 0x8d, 0x61, 0x89, 0x90, 0x6d, 0x13, 0x39, 0x9c, 0x17, 0xb3, 0xd9, 0x00,
0xd3, 0x7a, 0xe4, 0x15, 0xec, 0x7f, 0x05, 0x35, 0xc6, 0x08, 0x24, 0x41, 0xbb,
0x2b, 0x19, 0xe8, 0x31, 0x4c, 0x4d, 0xaa, 0x8c, 0x56, 0x35, 0xce, 0x4b, 0x9b,
0x0b, 0x14, 0x76, 0x8b, 0x84, 0xc1, 0x4c, 0xcf, 0x23, 0x15, 0xb9, 0xbe, 0xf2,
0x12, 0x46, 0x5f, 0x0a, 0x09, 0x73, 0xbd, 0x7c, 0x32, 0xa5, 0x02, 0x9b, 0x2f,
0x87, 0xa8, 0x20, 0x38, 0xe2, 0xfc, 0x54, 0x15, 0xbc, 0x61, 0xd3, 0x2a, 0x22,
0x38, 0x44, 0xb0, 0x77, 0x37, 0xe1, 0x9d, 0x4d, 0xa8, 0x87, 0xe2, 0x49, 0xb9,
0xd0, 0xa4, 0xf8, 0x0b, 0x33, 0x5d, 0xca, 0x77, 0xc8, 0xc6, 0x69, 0x7e, 0xd5,
0x09, 0x42, 0x93, 0x89, 0xa5, 0x06, 0x36, 0x60, 0xc3, 0x06, 0x8b, 0x5a, 0x12,
0x48, 0xb3, 0x37, 0x49, 0x6a, 0xd9, 0x47, 0x81, 0x61, 0x45, 0x32, 0x64, 0x8e,
0x28, 0xf5, 0x10, 0xb0, 0x7a, 0x62, 0x06, 0xee, 0x5d, 0x87, 0xf9, 0xeb, 0xaa,
0xf8, 0x9e, 0xc6, 0x89, 0xcc, 0x95, 0x81, 0x5c, 0xa7, 0x22, 0x84, 0x89, 0xa5,
0x64, 0xcd, 0x70, 0x2e, 0x49, 0xe9, 0xb8, 0x1d, 0x7c, 0x44, 0x5e, 0xee, 0xdb,
0xe1, 0x35, 0x38, 0xb8, 0x26, 0xc5, 0xd2, 0xbc, 0x1d, 0x39, 0x17, 0xb6, 0x18,
0x69, 0x2a, 0x28, 0x51, 0x6b, 0x44, 0xbc, 0x3a, 0xf1, 0x90, 0xf6, 0x1a, 0x5a,
0x8d, 0x1d, 0xab, 0x93, 0x10, 0x25, 0x72, 0xfc, 0x6d, 0xd3, 0x86, 0x4d, 0xe9,
0x5f, 0x13, 0x8e, 0x80, 0xd2, 0xd8, 0xaa, 0x9c, 0xad, 0x85, 0xa1, 0x7e, 0xec,
0xe8, 0x77, 0x69, 0xd1, 0x18, 0x46, 0x28, 0x90, 0xb8, 0x89, 0x7c, 0x95, 0x19,
0x9e, 0x42, 0xf4, 0x48, 0xf1, 0x3a, 0xcb, 0xef, 0x5f, 0x5e, 0x85, 0x0d, 0xab,
0x10, 0x6c, 0x0d, 0xf0, 0xb9, 0x4f, 0x8a, 0x08, 0x4d, 0x63, 0x5c, 0xef, 0xed,
0x75, 0xfc, 0x57, 0x64, 0xec, 0xd5, 0x67, 0xb1, 0xf9, 0xd9, 0x48, 0xdd, 0x73,
0xa3, 0x47, 0xde, 0x6d, 0x4b, 0x4b, 0xb2, 0x6b, 0x99, 0xda, 0x76, 0x1f, 0x61,
0x33, 0x77, 0x88, 0x8c, 0xea, 0xd9, 0x15, 0xf8, 0xc7, 0x0a, 0x84, 0xf0, 0xcd,
0x97, 0x72, 0xc8, 0xa7, 0x06, 0x04, 0x04, 0x22, 0x6d, 0xb1, 0x88, 0xa2, 0x78,
0xb8, 0x56, 0xd4, 0x04, 0xca, 0xf4, 0x28, 0x40, 0xc5, 0x54, 0x4f, 0x2f, 0xc3,
0xc9, 0x65, 0x08, 0x65, 0xf8, 0xf2, 0xa7, 0x33, 0x2e, 0xde, 0x44, 0xb9, 0x84,
0x40, 0x29, 0x5c, 0xc2, 0x81, 0x2a, 0x54, 0x35, 0xa9, 0x71, 0x53, 0xd8, 0x96,
0xf7, 0x96, 0xe0, 0xd0, 0x92, 0x48, 0x92, 0xd4, 0xa4, 0x50, 0x62, 0x92, 0x35,
0xe8, 0x6a, 0x6e, 0xd7, 0xa3, 0xf0, 0x33, 0x18, 0x7d, 0x26, 0xca, 0x97, 0x18,
0x2a, 0xe2, 0xc9, 0x4a, 0x5c, 0xf4, 0x0b, 0xd9, 0x7c, 0x11, 0xa5, 0x98, 0x51,
0xc9, 0x1e, 0x35, 0xb1, 0xcd, 0xcf, 0xfa, 0x70, 0xb2, 0x0f, 0xb5, 0x12, 0x46,
0x3d, 0x67, 0x30, 0x95, 0xcb, 0xf5, 0x5e, 0xfa, 0x34, 0xfa, 0x9e, 0xc6, 0x54,
0xba, 0xde, 0x47, 0xa7, 0xf7, 0x7a, 0x71, 0xa8, 0x77, 0x7a, 0xeb, 0x9d, 0xf8,
0x7a, 0x7a, 0x01, 0x16, 0x2c, 0x00, 0xda, 0x1b, 0xd2, 0x7d, 0xcb, 0xa6, 0xe1,
0xfb, 0x7d, 0x3d, 0xf8, 0x67, 0x0f, 0xf2, 0x82, 0xcd, 0x9b, 0xdb, 0x9a, 0xf3,
0x48, 0x3e, 0xf7, 0x57, 0x21, 0x05, 0x1a, 0x29, 0x0b, 0x85, 0x92, 0xbd, 0xc9,
0xb8, 0xa5, 0x05, 0x9f, 0x28, 0x8f, 0xe3, 0x96, 0x2a, 0xa2, 0xd2, 0x0c, 0xf5,
0x3f, 0x81, 0x95, 0x4f, 0x38, 0xb0, 0xf2, 0xfe, 0x31, 0x32, 0x07, 0x33, 0xac,
0x43, 0x9a, 0x88, 0x2d, 0x4b, 0x5b, 0xc4, 0x2d, 0x2c, 0xec, 0x14, 0x8e, 0x8c,
0xe8, 0xee, 0xe4, 0x4e, 0x9d, 0xa8, 0xa1, 0x3e, 0xfc, 0x91, 0x1f, 0xf9, 0x91,
0xa3, 0x41, 0xcd, 0xd3, 0x48, 0x85, 0x11, 0xf9, 0x44, 0x6c, 0x39, 0x90, 0x2e,
0x80, 0x09, 0x03, 0x89, 0x5d, 0x88, 0xac, 0x82, 0xd4, 0x9c, 0xd4, 0x2a, 0x5c,
0x2d, 0x4a, 0xbf, 0xf6, 0xb9, 0xdb, 0xfc, 0xab, 0xdb, 0xbc, 0x13, 0xa8, 0xe3,
0x3a, 0xa8, 0x72, 0x56, 0x04, 0x3a, 0x29, 0x27, 0xe2, 0x3a, 0xbe, 0x46, 0x22,
0xf3, 0x9a, 0x9d, 0x48, 0xf2, 0x3d, 0x2c, 0x32, 0xb3, 0xed, 0x63, 0xfc, 0xb5,
0x31, 0x5e, 0x39, 0xf2, 0x42, 0xae, 0x20, 0x89, 0x71, 0x2a, 0x4f, 0x88, 0x82,
0x1e, 0x72, 0x14, 0xc6, 0x07, 0x51, 0x64, 0xc8, 0xac, 0x54, 0xb5, 0x41, 0xfc,
0x78, 0x83, 0xdf, 0xbe, 0xc1, 0x3d, 0xf1, 0xac, 0x15, 0xb1, 0x23, 0x87, 0x21,
0x6c, 0x99, 0xc9, 0xe4, 0xb0, 0x05, 0xb9, 0x03, 0x1a, 0x4c, 0x74, 0x93, 0xdb,
0x37, 0x55, 0xa4, 0xcf, 0x4b, 0xd9, 0x4a, 0x19, 0xe5, 0xdf, 0xb0, 0xe8, 0x1a,
0x5f, 0x70, 0xcd, 0xec, 0x49, 0x97, 0xde, 0x58, 0x42, 0x72, 0x78, 0x44, 0x15,
0xa4, 0x04, 0x1c, 0x65, 0xb1, 0xe9, 0x51, 0x5d, 0x0d, 0x98, 0xeb, 0x9b, 0xb0,
0x08, 0xf5, 0x7c, 0x22, 0xc0, 0xe7, 0x00, 0xcb, 0xe9, 0xd6, 0x7e, 0xc7, 0x5f,
0xfc, 0x8e, 0xe7, 0x39, 0x05, 0x6c, 0x0f, 0xc2, 0x16, 0x81, 0x4b, 0x88, 0x28,
0xe1, 0xa3, 0x27, 0xcb, 0x2b, 0x49, 0xbb, 0xbc, 0x5a, 0x15, 0x89, 0x12, 0x20,
0x97, 0xae, 0xf0, 0xf3, 0x57, 0x78, 0xec, 0xd6, 0x64, 0x12, 0x8f, 0x22, 0xa4,
0x25, 0x61, 0x79, 0x51, 0x52, 0xa3, 0xad, 0x2a, 0x0b, 0xdc, 0xe1, 0x04, 0x17,
0xff, 0x29, 0x0d, 0xfc, 0xf0, 0x32, 0x7f, 0xff, 0x32, 0x77, 0x29, 0x2b, 0x6a,
0x4a, 0xf2, 0xa1, 0x16, 0x20, 0x7b, 0xea, 0x8a, 0x7a, 0x1a, 0xa1, 0xe5, 0xd7,
0x13, 0x7a, 0x7d, 0x74, 0x89, 0x7f, 0x70, 0x89, 0x27, 0xf9, 0x0a, 0x24, 0x68,
0x2c, 0x5c, 0x0c, 0x5a, 0x8f, 0x5b, 0x92, 0xe4, 0x88, 0x48, 0x58, 0x3e, 0x92,
0x48, 0xfa, 0xc4, 0x05, 0x7e, 0xec, 0x02, 0xc7, 0xb8, 0x47, 0x3c, 0xd2, 0x82,
0x7c, 0x9b, 0xa4, 0x69, 0x2d, 0x75, 0x1a, 0xf5, 0xba, 0x73, 0x8e, 0x8f, 0x9d,
0xe3, 0xf5, 0xe4, 0x62, 0xea, 0x4e, 0x42, 0x5e, 0xb1, 0xdb, 0xab, 0x8c, 0x1f,
0xd1, 0xda, 0x8b, 0xd4, 0xe5, 0xd5, 0x48, 0x20, 0x24, 0x8c, 0xb1, 0x11, 0x0e,
0x9c, 0xe5, 0xfb, 0xcf, 0xf2, 0x88, 0x62, 0xa9, 0x2c, 0x1e, 0xb9, 0x94, 0xb7,
0xb4, 0xf1, 0xb7, 0xce, 0xc3, 0x09, 0xb0, 0x28, 0xb1, 0x1c, 0x57, 0x07, 0x45,
0xf0, 0x73, 0xa8, 0x14, 0x9b, 0xf5, 0x06, 0x2e, 0x3f, 0xc3, 0x9f, 0x39, 0xc3,
0xcd, 0xda, 0xd2, 0xc3, 0x01, 0xa8, 0x96, 0x65, 0x7c, 0x99, 0x0a, 0x11, 0x77,
0xa0, 0xb8, 0x4a, 0x94, 0xfe, 0x0d, 0x92, 0x5b, 0xf4, 0x25, 0x5f, 0xf0, 0x25,
0x4f, 0x24, 0x9c, 0x24, 0xf2, 0x9b, 0x0e, 0x99, 0x20, 0x49, 0x2a, 0x53, 0x02,
0xaa, 0xe1, 0x4c, 0x00, 0x91, 0xaf, 0x45, 0xf4, 0x9e, 0xe6, 0x3d, 0xa7, 0xb9,
0x4d, 0x82, 0x02, 0xd5, 0x2d, 0x06, 0xea, 0xf5, 0x2e, 0xa4, 0xf5, 0x2c, 0x1b,
0xa9, 0x9a, 0x43, 0x4f, 0x21, 0xe5, 0x11, 0x1f, 0xe7, 0xb8, 0x7c, 0x8a, 0x5f,
0x3c, 0xc5, 0xa3, 0x9a, 0xa5, 0x88, 0xa4, 0x45, 0x89, 0xa0, 0x1b, 0xf3, 0x8e,
0xe3, 0x3a, 0x08, 0xd7, 0xe9, 0xa9, 0x4f, 0xf9, 0x13, 0x9f, 0xf2, 0xa6, 0x22,
0xd6, 0x7d, 0x5c, 0xd4, 0x95, 0xc7, 0x27, 0xe4, 0xa8, 0xaa, 0x9d, 0xbd, 0x27,
0x78, 0xcf, 0x09, 0xde, 0x70, 0xb0, 0x71, 0x6a, 0xfe, 0xbd, 0xb9, 0xfb, 0xbe,
0xe3, 0xfc, 0xad, 0xe3, 0x7c, 0xb2, 0xec, 0x80, 0x18, 0x9b, 0xca, 0x52, 0x6e,
0x7e, 0xcc, 0xaf, 0x7f, 0xcc, 0x7f, 0x02, 0xda, 0x33, 0xde, 0xbc, 0x43, 0xc7,
0xf8, 0x8e, 0x63, 0x7c, 0x9a, 0x4c, 0x71, 0x22, 0x36, 0xf5, 0xed, 0x51, 0xfe,
0xcd, 0xd1, 0xb6, 0x6f, 0x32, 0x47, 0x76, 0xcd, 0xee, 0x9c, 0xf7, 0xbb, 0x47,
0xe7, 0xc5, 0xa3, 0x51, 0x5a, 0xa2, 0x41, 0xa5, 0x84, 0x56, 0x41, 0x61, 0xd5,
0xf8, 0xca, 0x07, 0x7c, 0xf4, 0x03, 0x4e, 0x98, 0xf8, 0xd8, 0xc8, 0x34, 0xae,
0x8d, 0x23, 0x7c, 0xdd, 0xc8, 0xfd, 0xee, 0x89, 0xf8, 0x2b, 0x93, 0xad, 0xdc,
0xba, 0x52, 0xef, 0x13, 0x2d, 0x96, 0x51, 0xad, 0x42, 0xc7, 0x76, 0x1f, 0xe1,
0xc3, 0x47, 0x52, 0xde, 0xa5, 0x2b, 0x9e, 0x21, 0xbb, 0x69, 0xc3, 0x23, 0x4b,
0x85, 0x6c, 0x56, 0x02, 0x79, 0x94, 0x4a, 0x4f, 0x7d, 0xa4, 0x70, 0xb1, 0x3f,
0x39, 0xd8, 0xc1, 0xe3, 0x87, 0xf8, 0xdd, 0x77, 0xb9, 0xb0, 0xeb, 0xa1, 0x86,
0x20, 0x17, 0x1e, 0x85, 0x18, 0xe2, 0xa3, 0xa8, 0x95, 0x74, 0x4f, 0x5c, 0xd5,
0xab, 0x82, 0xeb, 0xcd, 0x03, 0xfc, 0xfa, 0x01, 0x7e, 0x9f, 0x91, 0xd4, 0xfd,
0x5e, 0x43, 0xef, 0xf0, 0x1d, 0xef, 0x4c, 0xdf, 0x4e, 0xe4, 0x2f, 0x66, 0xe7,
0xdd, 0xe4, 0xb5, 0x8f, 0xf9, 0xfa, 0xb1, 0x26, 0xb8, 0xdf, 0xee, 0xe3, 0x17,
0xf7, 0x59, 0x22, 0x21, 0x94, 0xc7, 0x82, 0x3a, 0x7c, 0x6c, 0xf3, 0x17, 0x28,
0x69, 0x81, 0x80, 0x54, 0x38, 0x5b, 0x24, 0xf1, 0xa3, 0xe1, 0x67, 0xfe, 0xf0,
0x5a, 0x1e, 0xc8, 0xb9, 0x3b, 0xec, 0x17, 0xeb, 0x33, 0xdd, 0x7a, 0x8b, 0xff,
0xf0, 0x16, 0x4f, 0x8f, 0xb7, 0xc1, 0x12, 0x1b, 0xcd, 0xd1, 0x75, 0xd2, 0xcc,
0x0d, 0x28, 0x7d, 0xfe, 0x84, 0xe2, 0x73, 0x99, 0xe1, 0xac, 0x40, 0xb3, 0xa1,
0x1e, 0xd8, 0xc3, 0xf7, 0xef, 0xe1, 0x69, 0x5d, 0x15, 0xb5, 0x23, 0xaf, 0xea,
0x60, 0xa7, 0x4f, 0xfa, 0x29, 0x1d, 0x21, 0x15, 0xd2, 0xf8, 0xca, 0x9c, 0x08,
0x2c, 0x32, 0x56, 0x1f, 0x97, 0xb6, 0xc5, 0xdf, 0x77, 0xf1, 0xf9, 0xbb, 0x78,
0x72, 0x32, 0x09, 0x3f, 0xb9, 0x16, 0xec, 0x1c, 0xe6, 0x83, 0xc3, 0xfc, 0xa7,
0x55, 0xa6, 0xda, 0xda, 0xbe, 0x7f, 0x83, 0x5f, 0x7d, 0x83, 0x4f, 0x6e, 0xe5,
0x98, 0x0a, 0x02, 0xeb, 0x04, 0xce, 0x4e, 0xbe, 0x79, 0x27, 0x9f, 0x09, 0xe3,
0x88, 0x66, 0xbe, 0xb4, 0x9d, 0x9f, 0xdf, 0xce, 0xa7, 0xe1, 0x2b, 0x26, 0xd3,
0x66, 0x60, 0x90, 0x6f, 0x18, 0xe4, 0x93, 0xed, 0x3e, 0x45, 0x4d, 0x38, 0xf3,
0x3a, 0xff, 0xe2, 0x75, 0x3e, 0xdd, 0x9d, 0x9d, 0xa0, 0xed, 0x9a, 0xad, 0xfc,
0x85, 0xad, 0xbc, 0xd9, 0x61, 0xe1, 0xb1, 0x96, 0x60, 0xf9, 0xec, 0x47, 0x7f,
0x2f, 0x8a, 0xd9, 0x5d, 0xb9, 0xa4, 0x2e, 0x99, 0xcf, 0xcd, 0xdb, 0x9d, 0x1c,
0x1d, 0xef, 0x7a, 0x79, 0x33, 0xdf, 0xb4, 0x79, 0x5a, 0x1b, 0x2f, 0x7f, 0xd6,
0x9a, 0x2d, 0x7d, 0x00, 0x6e, 0xd3, 0xb6, 0x26, 0x5e, 0x2a, 0x84, 0x41, 0xaf,
0x0f, 0x07, 0xf8, 0xfb, 0x03, 0xdc, 0x87, 0x69, 0x32, 0x44, 0x5b, 0x95, 0x5c,
0x72, 0x74, 0x0c, 0xbd, 0x96, 0x7c, 0xb2, 0xa7, 0x5c, 0xa4, 0x21, 0x91, 0xb5,
0x36, 0x62, 0x60, 0x23, 0xdf, 0xb0, 0x91, 0xbb, 0xa8, 0xde, 0x9d, 0xcd, 0x96,
0x16, 0x1f, 0x51, 0xf5, 0x16, 0x81, 0x92, 0x53, 0xb3, 0xc4, 0x2c, 0xdb, 0x8d,
0x32, 0xee, 0xe5, 0xd5, 0xbf, 0x9e, 0x3f, 0xb7, 0x9e, 0x13, 0x6a, 0x67, 0x13,
0x2a, 0x29, 0xf5, 0xe0, 0x88, 0x00, 0x86, 0xfb, 0xd4, 0xb2, 0xa1, 0xb5, 0x7c,
0xc7, 0x5a, 0x6e, 0xce, 0x16, 0xcc, 0xd8, 0x89, 0x8e, 0x33, 0x6b, 0xf8, 0x17,
0x6b, 0x26, 0xb9, 0xf1, 0xbf, 0x24, 0x41, 0xa2, 0x4b, 0x4e, 0x52, 0x73, 0x05,
0x98, 0xcb, 0x90, 0xec, 0x5c, 0xcd, 0x07, 0x57, 0x73, 0x46, 0x93, 0xea, 0x87,
0x29, 0x1a, 0xcf, 0xa5, 0x7e, 0x7e, 0xbe, 0x9f, 0x37, 0x57, 0xdc, 0x81, 0x39,
0x52, 0x3b, 0xcc, 0x9c, 0x30, 0x7b, 0xd2, 0x93, 0x35, 0x5c, 0x23, 0xab, 0xf8,
0x91, 0x55, 0x9c, 0xcd, 0xec, 0xb5, 0xe8, 0x39, 0xbe, 0xf0, 0xb9, 0x29, 0x4c,
0x52, 0x3c, 0x92, 0x0b, 0xf5, 0x5f, 0xc1, 0xe6, 0x44, 0xfc, 0x54, 0x78, 0xb7,
0xcd, 0x42, 0x91, 0x51, 0xfd, 0x3d, 0xb0, 0x82, 0xef, 0x5f, 0xc1, 0xc3, 0xef,
0x00, 0x9a, 0xbc, 0x70, 0x53, 0xad, 0xa3, 0x5d, 0xe6, 0x42, 0x1f, 0xe6, 0x17,
0xf1, 0xe9, 0xc0, 0xc3, 0xcb, 0xf9, 0xc1, 0xe5, 0x33, 0x2d, 0xae, 0xde, 0x65,
0xbc, 0x67, 0xd9, 0x4c, 0x4f, 0x72, 0x78, 0x09, 0x3f, 0xb8, 0x64, 0xc6, 0xdf,
0x64, 0x31, 0xef, 0x59, 0xcc, 0xcd, 0x91, 0x21, 0x9f, 0x8f, 0x9b, 0x03, 0x32,
0x36, 0x97, 0x97, 0xec, 0xae, 0x15, 0x42, 0xe7, 0xa9, 0x5e, 0xbb, 0xfb, 0xf8,
0x70, 0xdf, 0x4c, 0xbf, 0xc9, 0xad, 0x85, 0xfc, 0xbf, 0x0b, 0x67, 0x7a, 0x92,
0xdd, 0xbd, 0x7c, 0xb8, 0x77, 0x5a, 0x93, 0xe4, 0x54, 0x40, 0x14, 0xca, 0x62,
0x4c, 0x6a, 0x48, 0x53, 0xd6, 0xce, 0xb8, 0xe4, 0x4a, 0x77, 0x7a, 0xf8, 0x58,
0x0f, 0x8f, 0xce, 0x3e, 0x33, 0xaa, 0xd8, 0x09, 0xda, 0x24, 0x6b, 0xdd, 0xff,
0x19, 0xb2, 0x39, 0x16, 0x41, 0xfe, 0x3f, 0xa1, 0x05, 0x36, 0x6a, 0x3f, 0x7e,
0x3f, 0x9f, 0x5f, 0x9d, 0xcf, 0xdd, 0x57, 0x48, 0x0f, 0x0d, 0xd6, 0x3c, 0x09,
0x35, 0x27, 0xef, 0x26, 0x84, 0x95, 0x27, 0xf9, 0xc2, 0x27, 0xb9, 0xed, 0xd1,
0x1d, 0xc7, 0x85, 0x76, 0x88, 0xc5, 0xe7, 0x58, 0xff, 0xac, 0xdf, 0x6e, 0x9c,
0xd5, 0xf5, 0x1b, 0x33, 0xb5, 0x28, 0x6c, 0x70, 0xf8, 0x3f,
};
optimizesize void *__gbkext_decmap(void) {
return xloadzd(&__gbkext_decmap_ptr,
__gbkext_decmap_rodata,
3936, 15071, 14531, 2, 0xe6585743u); /* 13.5435% profit */
}
| 24,577 | 316 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__cp949ext_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __cp949ext_decmap_ptr;
static const unsigned char __cp949ext_decmap_rodata[1970] = {
0xb5, 0x5a, 0x09, 0x53, 0x14, 0x47, 0x14, 0xce, 0x9b, 0xea, 0x74, 0x4d, 0x6d,
0x51, 0xa9, 0x94, 0xbf, 0x58, 0x0c, 0x06, 0x14, 0x03, 0x09, 0x15, 0x14, 0x2c,
0x51, 0x82, 0x20, 0x97, 0x2c, 0x57, 0xb8, 0xef, 0x43, 0xb9, 0x14, 0x10, 0x95,
0xc3, 0x93, 0x18, 0x62, 0xd0, 0xa0, 0x20, 0x2a, 0x1a, 0x4a, 0x4d, 0x66, 0xe6,
0xbd, 0x9d, 0xe9, 0x9e, 0xe9, 0x37, 0x33, 0xbb, 0xa9, 0x74, 0x6d, 0xb1, 0x5b,
0x3d, 0xdf, 0xbc, 0xf7, 0xba, 0xfb, 0xdd, 0x4d, 0x49, 0xd7, 0xd7, 0x96, 0xb0,
0x32, 0x96, 0x33, 0x4e, 0x14, 0x39, 0xbf, 0xdc, 0x8f, 0x3b, 0xa4, 0x6d, 0x59,
0x3f, 0xaf, 0x58, 0x5f, 0xb9, 0xe3, 0xa7, 0x15, 0x77, 0x42, 0x79, 0xe8, 0x0c,
0x81, 0x3f, 0xc5, 0xda, 0x32, 0x62, 0x56, 0x96, 0x2d, 0x1d, 0xe0, 0x0f, 0xf7,
0x45, 0xe9, 0xcd, 0xcb, 0x8c, 0xcb, 0x48, 0xe7, 0xe1, 0x0c, 0xdb, 0x79, 0x1e,
0x4c, 0x08, 0x02, 0x08, 0x9d, 0x51, 0x8e, 0x8e, 0x70, 0xe0, 0xd2, 0xf2, 0xe5,
0x41, 0xba, 0x39, 0x61, 0xf4, 0x17, 0x89, 0xea, 0xf9, 0x25, 0x94, 0xb0, 0x72,
0x49, 0xe3, 0xad, 0xbd, 0xb3, 0xbc, 0x88, 0x98, 0x85, 0x45, 0xcb, 0xc4, 0x36,
0xe3, 0x49, 0xa9, 0xb0, 0x55, 0x57, 0x47, 0x54, 0x42, 0x43, 0x7d, 0x3d, 0xe0,
0x19, 0x3c, 0xe4, 0xf7, 0xca, 0x0e, 0xcb, 0xe7, 0x8d, 0xd9, 0x39, 0x94, 0x70,
0x6a, 0xce, 0x62, 0xb7, 0xb8, 0x84, 0x30, 0xc5, 0x73, 0x1e, 0x01, 0x47, 0x34,
0x61, 0x07, 0x9b, 0x64, 0xe3, 0x96, 0x44, 0xb6, 0x9f, 0x5b, 0x41, 0xec, 0xb0,
0x0d, 0x64, 0x84, 0xba, 0x7a, 0xe3, 0x91, 0x58, 0x87, 0x33, 0x28, 0xe1, 0xfe,
0x8c, 0xc7, 0x56, 0x98, 0xd8, 0xf6, 0x13, 0xa6, 0x77, 0x46, 0x59, 0x9e, 0xf0,
0xb7, 0xd0, 0x36, 0x89, 0x2c, 0x95, 0xbf, 0x86, 0x63, 0xd0, 0xa4, 0x90, 0xca,
0x2c, 0x37, 0x94, 0x6d, 0xa2, 0x73, 0x17, 0x0a, 0xbd, 0xe1, 0x49, 0x94, 0x70,
0x60, 0x52, 0xe7, 0xae, 0xf2, 0x38, 0x9a, 0x40, 0xcc, 0x9b, 0x09, 0xd3, 0x99,
0xcb, 0x88, 0x9e, 0x98, 0x85, 0xc0, 0x75, 0xdb, 0x42, 0x24, 0x1d, 0x90, 0x34,
0xa8, 0xb6, 0x4d, 0x76, 0x2d, 0x8b, 0x9c, 0x4d, 0x8b, 0x9e, 0xd7, 0xe6, 0x28,
0x4a, 0x78, 0x7f, 0x54, 0x79, 0x28, 0x74, 0x91, 0x2e, 0x11, 0xa6, 0x76, 0x94,
0xe3, 0xeb, 0xee, 0xa6, 0xf4, 0xa9, 0x9a, 0xf8, 0x68, 0xcb, 0x96, 0xbc, 0xee,
0x1b, 0x8d, 0xda, 0x0e, 0xa3, 0xc3, 0x2f, 0x9e, 0x1b, 0x42, 0x09, 0xcf, 0x0c,
0x59, 0xc6, 0xd3, 0x77, 0x3f, 0x6b, 0x83, 0xe4, 0xa3, 0x06, 0x43, 0x76, 0x28,
0x75, 0x47, 0x23, 0x02, 0x63, 0xb2, 0x8c, 0x46, 0x18, 0xb5, 0xef, 0x98, 0x53,
0x61, 0x0e, 0x5c, 0xd3, 0xdd, 0x9c, 0x2e, 0x6e, 0xf7, 0xa1, 0x84, 0x8f, 0xfb,
0x50, 0x26, 0xdb, 0xf2, 0x2d, 0xd8, 0x27, 0x53, 0x41, 0x98, 0xf2, 0xbe, 0xc4,
0x5d, 0x73, 0xcd, 0xbe, 0xc8, 0xa1, 0x52, 0x64, 0x3c, 0x91, 0x3c, 0x4d, 0x5d,
0x31, 0x79, 0x29, 0x91, 0x85, 0x70, 0xcf, 0x3c, 0x4a, 0xf7, 0x59, 0x37, 0x4a,
0xf8, 0xb4, 0xdb, 0xe2, 0xbc, 0xa4, 0x68, 0x20, 0xcc, 0x95, 0x6e, 0x5e, 0x03,
0xbc, 0x45, 0x48, 0x4f, 0xf9, 0x59, 0x6d, 0x89, 0x3d, 0x12, 0xb3, 0xcb, 0x4d,
0x69, 0x3b, 0x5d, 0x59, 0x94, 0xb0, 0x23, 0xcb, 0x33, 0xfa, 0xd8, 0x81, 0x98,
0xf7, 0x1d, 0x2c, 0x71, 0x63, 0x48, 0x32, 0x79, 0xc5, 0xc0, 0xe4, 0x94, 0x48,
0x29, 0x52, 0xb9, 0xa8, 0x9c, 0x9a, 0x66, 0x22, 0xcb, 0xb0, 0x0f, 0xda, 0x50,
0xc2, 0x57, 0x6d, 0x8c, 0x5d, 0x3a, 0xa3, 0x85, 0x30, 0x4d, 0x6d, 0x05, 0x29,
0x04, 0x32, 0x8c, 0x35, 0xfe, 0x74, 0x07, 0xc7, 0x1f, 0xc8, 0x74, 0x33, 0x4a,
0x38, 0xd1, 0x1c, 0xde, 0xd5, 0xe0, 0xab, 0x8c, 0x30, 0xa7, 0x9b, 0xd3, 0xf2,
0x11, 0x05, 0xd9, 0x80, 0xb2, 0xbf, 0x32, 0xd5, 0x3a, 0x7c, 0xc4, 0x74, 0x23,
0xad, 0xa2, 0x91, 0xf7, 0x12, 0x65, 0x84, 0x39, 0xdd, 0xa8, 0x07, 0xa9, 0x24,
0x89, 0x64, 0x5c, 0x6a, 0x21, 0x19, 0x67, 0xa4, 0x78, 0x3a, 0x7f, 0xce, 0xd1,
0xa1, 0x8c, 0x15, 0x17, 0xd5, 0x8f, 0xeb, 0x51, 0xc2, 0x0f, 0xf5, 0x7a, 0x82,
0xa4, 0x8e, 0x69, 0xc2, 0x4c, 0xd4, 0xc7, 0x98, 0x58, 0x54, 0x59, 0x4c, 0xf2,
0xd8, 0xa6, 0xa3, 0x12, 0x22, 0x26, 0xde, 0x19, 0x8e, 0x35, 0x2a, 0xe3, 0x78,
0x1d, 0x4a, 0x38, 0x52, 0xc7, 0xbb, 0x8d, 0x53, 0x84, 0xf9, 0xe7, 0x12, 0x9b,
0x5b, 0x9a, 0x24, 0xfe, 0x2f, 0xc1, 0x42, 0x6a, 0x0e, 0x21, 0x86, 0x3a, 0xce,
0x9d, 0xba, 0x48, 0x12, 0xd6, 0xe6, 0x9e, 0xca, 0x48, 0xf6, 0x33, 0x59, 0x8b,
0x98, 0xb1, 0xda, 0xc4, 0x4c, 0xc1, 0x99, 0x2b, 0xca, 0x91, 0xd1, 0x73, 0x85,
0x8c, 0x39, 0x43, 0x14, 0x29, 0xad, 0x45, 0xf8, 0x71, 0xcc, 0xe4, 0x1d, 0x2e,
0x9f, 0x47, 0x09, 0x2f, 0x9c, 0x0f, 0x1d, 0x9e, 0x1d, 0xf8, 0xc4, 0xcd, 0x6a,
0xca, 0x52, 0xaa, 0xf9, 0xfc, 0x43, 0xc4, 0x6b, 0x81, 0x4c, 0x63, 0xa9, 0x49,
0x5e, 0x3a, 0x50, 0x3d, 0x3f, 0xad, 0x12, 0xe8, 0xfe, 0x36, 0xab, 0x48, 0xc2,
0x2a, 0x23, 0xdc, 0xfb, 0xbe, 0x48, 0x98, 0x0b, 0x55, 0x69, 0x04, 0xe0, 0x1e,
0x08, 0x4b, 0xc4, 0x4f, 0x27, 0x3a, 0x0b, 0xaa, 0x04, 0x84, 0x9b, 0x1e, 0x14,
0xf9, 0x6b, 0x70, 0x9f, 0x55, 0x55, 0x52, 0x95, 0x54, 0xa9, 0x9d, 0x92, 0x50,
0x3d, 0xc0, 0x62, 0x05, 0x62, 0xe6, 0x2a, 0x52, 0x67, 0x11, 0x6a, 0x48, 0x93,
0x61, 0x9f, 0x65, 0x1b, 0x92, 0x30, 0xa5, 0x02, 0x4c, 0xaa, 0x3b, 0x0c, 0x07,
0x3e, 0x5d, 0x4e, 0xfe, 0xa7, 0x9c, 0x37, 0xbc, 0xb3, 0x84, 0x29, 0xd5, 0x31,
0x32, 0xc6, 0x6f, 0x72, 0x2b, 0x0b, 0xf4, 0x40, 0x46, 0x39, 0xe5, 0x67, 0xf4,
0x6a, 0x74, 0xbb, 0x58, 0x46, 0xda, 0x52, 0x66, 0xb1, 0x6e, 0x61, 0xbd, 0x14,
0x31, 0x77, 0x4a, 0xad, 0x50, 0x04, 0x48, 0x6d, 0x95, 0x76, 0x68, 0x82, 0xcf,
0xe0, 0xf3, 0x8c, 0xdf, 0xf8, 0xd2, 0x7a, 0x09, 0x49, 0x58, 0xe2, 0x93, 0xc8,
0x15, 0xb7, 0x3e, 0x8d, 0x2a, 0xc2, 0x54, 0x96, 0x44, 0x38, 0xe8, 0x5c, 0x83,
0xa4, 0x25, 0x5d, 0x1a, 0x57, 0x70, 0x96, 0x1b, 0x89, 0xdd, 0xc5, 0xa4, 0x51,
0xc5, 0x3c, 0xe8, 0x1c, 0x61, 0xce, 0x14, 0x5b, 0x86, 0x65, 0x18, 0x4e, 0xf0,
0xff, 0x18, 0xb1, 0x39, 0xe8, 0xcd, 0x2f, 0x80, 0xdd, 0x83, 0x2f, 0x60, 0x50,
0x72, 0xb2, 0x0b, 0xc2, 0x94, 0xba, 0x98, 0x94, 0x25, 0xa6, 0xe3, 0x7e, 0x33,
0x09, 0xcd, 0x05, 0xce, 0x60, 0x23, 0xd9, 0x6f, 0x11, 0x95, 0x17, 0xee, 0x8b,
0xc2, 0x48, 0x6a, 0xf9, 0x18, 0x25, 0x5c, 0x38, 0x06, 0x73, 0x9e, 0xe0, 0x7c,
0xbe, 0x27, 0xcc, 0x77, 0xc7, 0xa0, 0xef, 0x82, 0xad, 0xd7, 0x48, 0x82, 0xb5,
0x3e, 0x5d, 0x3a, 0x19, 0x57, 0x54, 0x70, 0x01, 0x3a, 0x28, 0x1f, 0x45, 0xd4,
0x2c, 0x0f, 0x8f, 0x50, 0xc2, 0xfd, 0x23, 0x30, 0xf9, 0x1e, 0x6f, 0x43, 0xba,
0x08, 0xd3, 0x71, 0x04, 0x3c, 0x1f, 0xcd, 0xc9, 0xa8, 0xbe, 0x41, 0x6a, 0xc0,
0x74, 0x19, 0xa4, 0x8d, 0x85, 0xa3, 0x94, 0x5a, 0xb1, 0x1e, 0x76, 0x08, 0x81,
0xd2, 0xd4, 0xbc, 0x45, 0x09, 0xab, 0xdf, 0x02, 0xab, 0x8a, 0xcf, 0x0e, 0x11,
0xf3, 0xf4, 0x10, 0x52, 0x79, 0x24, 0xa5, 0x4c, 0x2c, 0xc8, 0x7e, 0x45, 0x62,
0x0c, 0xd2, 0xac, 0xd2, 0x19, 0x27, 0x0f, 0x50, 0xc2, 0xcf, 0xfb, 0xc0, 0xba,
0xed, 0xf9, 0x7d, 0xc4, 0xdc, 0x30, 0x61, 0xf2, 0x6f, 0xe9, 0xa4, 0xea, 0x43,
0xa5, 0xed, 0x2e, 0x90, 0x46, 0xed, 0x91, 0x46, 0xed, 0xf1, 0xfb, 0x3c, 0x4e,
0x98, 0x91, 0x3d, 0x30, 0x39, 0x28, 0xea, 0xb5, 0x98, 0xd3, 0x8b, 0x84, 0xdc,
0xd1, 0x76, 0x5f, 0x74, 0xff, 0x48, 0xde, 0x01, 0x08, 0x25, 0x61, 0xd2, 0x9b,
0xb4, 0x3e, 0xed, 0x1f, 0x5f, 0xa0, 0x84, 0x3f, 0xbc, 0x00, 0x4c, 0x3b, 0xbf,
0x15, 0x22, 0xcc, 0x30, 0xbb, 0x8b, 0x98, 0xf6, 0x5d, 0xc8, 0x99, 0xb4, 0xbb,
0xef, 0xdf, 0x58, 0xa1, 0xc6, 0xb2, 0x54, 0xe4, 0xb5, 0xdd, 0x96, 0xb1, 0x27,
0xac, 0xb4, 0x52, 0x76, 0x2d, 0x65, 0x52, 0x71, 0xa2, 0xce, 0xd9, 0xda, 0xcc,
0xf6, 0x0e, 0x4a, 0xf8, 0x78, 0x07, 0xa2, 0x76, 0x43, 0x34, 0x6a, 0x08, 0x53,
0xbd, 0x03, 0x51, 0xad, 0x8c, 0x67, 0xab, 0x2f, 0xc3, 0xf1, 0x2e, 0x27, 0xcc,
0x99, 0xa0, 0x2f, 0x99, 0x9d, 0x41, 0x6f, 0x6a, 0x0b, 0xae, 0x53, 0x10, 0x6e,
0xb1, 0xba, 0x5f, 0xb3, 0xdb, 0x28, 0xe1, 0xc4, 0x36, 0xb0, 0x26, 0x59, 0x46,
0x98, 0xd3, 0xdb, 0x60, 0x4c, 0xf8, 0x93, 0x7d, 0xbf, 0x4c, 0xee, 0x3d, 0x87,
0x13, 0x16, 0x3d, 0x7f, 0x10, 0x7c, 0xc9, 0xe5, 0x52, 0x3e, 0x7e, 0x84, 0x12,
0x7e, 0x78, 0x04, 0x6c, 0x01, 0xdc, 0x43, 0x98, 0xce, 0x47, 0x60, 0x32, 0xc1,
0xe8, 0x09, 0x1b, 0x78, 0x5d, 0x7b, 0x88, 0x34, 0x7e, 0x79, 0x08, 0xac, 0xdd,
0xbe, 0x7e, 0x80, 0x98, 0xbf, 0x1e, 0x40, 0xea, 0x9b, 0x81, 0xb0, 0xe5, 0x3d,
0xd9, 0x42, 0x1a, 0x5b, 0x5b, 0x60, 0x71, 0x2e, 0xbe, 0x9e, 0x30, 0x75, 0x5b,
0x10, 0x9f, 0x8b, 0x4b, 0x3c, 0x72, 0x61, 0x88, 0xd5, 0xef, 0x36, 0x90, 0xc6,
0x9b, 0x0d, 0xe0, 0x0a, 0x71, 0xab, 0x87, 0x30, 0x9d, 0x1b, 0x90, 0xbe, 0x1c,
0x0c, 0x85, 0xec, 0x96, 0x75, 0xa4, 0xd1, 0xb4, 0x0e, 0x6c, 0xea, 0x72, 0x70,
0x1f, 0x31, 0xaf, 0xee, 0x43, 0xc1, 0x9d, 0xa4, 0xc3, 0x7b, 0xe4, 0x1f, 0xef,
0x81, 0x6e, 0x47, 0x0a, 0x95, 0x2c, 0x61, 0xda, 0x3d, 0x8c, 0xc8, 0xaf, 0xc9,
0x48, 0xcf, 0xda, 0xee, 0x22, 0x8d, 0xe6, 0xbb, 0xc0, 0x3a, 0xed, 0x77, 0x6b,
0xb4, 0xb7, 0x6b, 0x90, 0x3e, 0x1c, 0x84, 0x52, 0xb5, 0xbd, 0x3b, 0x48, 0xe3,
0xc5, 0x1d, 0x60, 0x05, 0xec, 0x27, 0x4c, 0xaf, 0x09, 0x93, 0x10, 0x58, 0xfc,
0x98, 0xb1, 0x4a, 0x31, 0x63, 0x15, 0xd8, 0xec, 0xb5, 0x84, 0x30, 0xc5, 0xab,
0x10, 0x1b, 0xea, 0xa8, 0x05, 0x20, 0x84, 0xa1, 0x65, 0xb9, 0xbd, 0x4c, 0x3e,
0x73, 0x19, 0x42, 0x29, 0x5d, 0xe0, 0x93, 0x6a, 0x08, 0x53, 0xbd, 0x0c, 0x85,
0xa9, 0x9b, 0x33, 0x75, 0xf6, 0x36, 0x65, 0xb8, 0xb7, 0x81, 0x2d, 0x22, 0xe7,
0x6f, 0x51, 0xb4, 0xbf, 0x65, 0x8e, 0xf6, 0x56, 0x7c, 0x8a, 0xef, 0xd1, 0x1b,
0x5d, 0x42, 0x1a, 0x43, 0x4b, 0x60, 0x72, 0x9d, 0xde, 0xef, 0x93, 0x84, 0xf9,
0xbc, 0x08, 0xa9, 0x3b, 0x13, 0x61, 0x17, 0xf4, 0x69, 0x01, 0x69, 0xfc, 0xbd,
0x00, 0x6c, 0xa8, 0x1e, 0x27, 0xcc, 0x88, 0x87, 0x49, 0xd5, 0xa3, 0x8a, 0x3c,
0x1c, 0x9e, 0x47, 0x1a, 0x03, 0xf3, 0xc0, 0x0a, 0xf5, 0x71, 0x0e, 0x31, 0xef,
0xe7, 0x20, 0xa6, 0xbb, 0x1d, 0x5e, 0x89, 0x3e, 0x5e, 0xde, 0x44, 0x1a, 0x7f,
0xde, 0x04, 0xf6, 0x56, 0xb4, 0x91, 0x30, 0x57, 0x08, 0x23, 0xd3, 0xf5, 0x11,
0x35, 0x0b, 0x2a, 0xbb, 0x41, 0x91, 0xeb, 0x06, 0xb0, 0xd6, 0xb0, 0x36, 0x8b,
0x98, 0x95, 0x59, 0x60, 0x7b, 0xae, 0x49, 0x25, 0x4e, 0xff, 0x0c, 0xd2, 0xe8,
0x9e, 0x01, 0xb6, 0x2b, 0xfe, 0x6e, 0x9a, 0xfc, 0xc1, 0x34, 0xa4, 0x28, 0xb7,
0x8c, 0x1b, 0x2b, 0x9e, 0x4d, 0x51, 0x9e, 0x3d, 0xc5, 0xfa, 0x03, 0xd1, 0x46,
0x98, 0xe6, 0x29, 0x28, 0xa0, 0x33, 0x8f, 0x8c, 0xdb, 0x26, 0x89, 0xc6, 0x24,
0xb0, 0x41, 0x7d, 0x77, 0x02, 0x31, 0x7f, 0x4c, 0x40, 0xb4, 0x61, 0x9f, 0xc6,
0x78, 0x9c, 0xf1, 0x64, 0x9c, 0xe2, 0xdc, 0x38, 0xb0, 0xe1, 0xf0, 0x32, 0x61,
0x6a, 0xc7, 0x21, 0xbf, 0xaa, 0x5f, 0x61, 0x58, 0x33, 0x46, 0x3e, 0x65, 0x0c,
0xa4, 0xa1, 0x7e, 0xf2, 0x0e, 0x6b, 0x7e, 0x94, 0xfc, 0xc1, 0x28, 0xc8, 0x74,
0x57, 0x69, 0x86, 0x9e, 0xf3, 0x08, 0xd9, 0xe0, 0x08, 0xb0, 0xe9, 0xcd, 0x49,
0xc2, 0x7c, 0x1e, 0x86, 0x44, 0xbd, 0xe2, 0xcc, 0x76, 0x77, 0x88, 0xf6, 0x7e,
0x08, 0xd8, 0x95, 0x67, 0x09, 0xd3, 0x3a, 0xa4, 0xe5, 0x10, 0x31, 0x37, 0xcc,
0xd1, 0xe9, 0x96, 0x41, 0x8a, 0xdb, 0x83, 0xc0, 0xf6, 0xc9, 0x0e, 0x06, 0x28,
0xdf, 0x19, 0x80, 0x7c, 0x6e, 0xdb, 0x35, 0x0f, 0xb5, 0xd3, 0x8f, 0x34, 0x7e,
0xeb, 0x07, 0xb6, 0x3c, 0xba, 0x4e, 0x98, 0xd6, 0x7e, 0xc8, 0xaf, 0xe4, 0x52,
0xf4, 0xaa, 0xa1, 0x8f, 0x7c, 0x4a, 0x1f, 0x98, 0xae, 0xe2, 0xbc, 0x89, 0x07,
0xbf, 0x22, 0x66, 0xe3, 0x57, 0xe0, 0x6f, 0x76, 0x8d, 0x77, 0xf0, 0x41, 0x7b,
0xad, 0xbf, 0x97, 0x62, 0x72, 0x2f, 0xb0, 0xff, 0x89, 0xf1, 0xb2, 0x87, 0x7c,
0x60, 0x0f, 0x14, 0x7c, 0x43, 0xf5, 0xba, 0x9b, 0xf6, 0xbe, 0x1b, 0x58, 0x37,
0x55, 0x4f, 0x98, 0x3a, 0x0f, 0x13, 0x9b, 0x97, 0x0b, 0xee, 0xf2, 0xa5, 0xa2,
0x0b, 0x69, 0x94, 0x77, 0xf1, 0xb1, 0x65, 0xb5, 0x13, 0x31, 0xb7, 0x3b, 0x21,
0x65, 0xd2, 0x16, 0xd5, 0xc4, 0xf5, 0x2c, 0xd2, 0xb8, 0x9b, 0x05, 0xa6, 0x61,
0xef, 0xd8, 0x32, 0x61, 0xaa, 0xb3, 0x90, 0xfe, 0x2a, 0x35, 0x34, 0x77, 0xae,
0x03, 0x69, 0x9c, 0xe9, 0x00, 0xfe, 0x7f, 0x09, 0xae, 0x53, 0x5c, 0xb8, 0x0e,
0x09, 0x3d, 0x79, 0xc1, 0x36, 0x8e, 0xa6, 0xdb, 0xa9, 0xba, 0x6a, 0xe7, 0xcf,
0xb8, 0x82, 0x30, 0xe5, 0x1e, 0x26, 0x36, 0x18, 0x08, 0x2e, 0xf0, 0x3d, 0x6f,
0x45, 0x1a, 0xbf, 0xb7, 0x02, 0xbb, 0x01, 0x59, 0xc2, 0xb4, 0xb7, 0x42, 0x2a,
0xed, 0x12, 0x06, 0x11, 0xea, 0x5b, 0x48, 0x97, 0x5a, 0x80, 0x0d, 0xc3, 0x9b,
0xcd, 0xb4, 0x6f, 0xcd, 0xa6, 0x8a, 0x52, 0x44, 0x8d, 0x48, 0x44, 0xfb, 0x74,
0xc3, 0xd7, 0x28, 0x0f, 0xb9, 0x06, 0x8a, 0x3e, 0x6a, 0x25, 0xbc, 0xf5, 0xa9,
0x89, 0x72, 0xa2, 0x26, 0x30, 0x55, 0xf3, 0x49, 0x97, 0x3b, 0x1e, 0xf6, 0x79,
0x23, 0xf9, 0x9d, 0x46, 0xca, 0x7b, 0x0d, 0x87, 0xd9, 0x40, 0x98, 0x2b, 0x8d,
0xc0, 0xe4, 0x38, 0x09, 0x41, 0xce, 0xcd, 0x47, 0xaf, 0x52, 0x3e, 0x7a, 0x15,
0x4c, 0x8d, 0x3c, 0x2f, 0x45, 0x9e, 0x6c, 0x40, 0xcc, 0x58, 0x03, 0xd0, 0x7e,
0x98, 0xff, 0x99, 0xc9, 0xc4, 0xe2, 0x5f,
};
optimizesize void *__cp949ext_decmap(void) {
return xloadzd(&__cp949ext_decmap_ptr,
__cp949ext_decmap_rodata,
1970, 10204, 9650, 2, 0xb92a1dffu); /* 10.2073% profit */
}
| 12,488 | 165 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/jisx0213_pair_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) jisx0213_pair_decmap_ptr;
static const unsigned char jisx0213_pair_decmap_rodata[] = {
0x63, 0x60, 0x18, 0x5c, 0x80, 0x91, 0xa1, 0xbc, 0x9a, 0x8d, 0xa1, 0xbc, 0x8e,
0x8f, 0xa1, 0xa2, 0x02, 0x5d, 0x8e, 0x9f, 0xc1, 0x25, 0x8d, 0x61, 0x14, 0x8c,
0x82, 0x51, 0x40, 0x35, 0x00, 0x00,
};
optimizesize void *jisx0213_pair_decmap(void) {
return xload(&jisx0213_pair_decmap_ptr,
jisx0213_pair_decmap_rodata,
32, 1024); /* 3.125% profit */
}
| 540 | 16 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/multibytecodec.h | #ifndef _PYTHON_MULTIBYTECODEC_H_
#define _PYTHON_MULTIBYTECODEC_H_
#include "third_party/python/Include/unicodeobject.h"
COSMOPOLITAN_C_START_
/* clang-format off */
/*
* multibytecodec.h: Common Multibyte Codec Implementation
*
* Written by Hye-Shik Chang <[email protected]>
*/
#ifdef uint16_t
typedef uint16_t ucs2_t, DBCHAR;
#else
typedef unsigned short ucs2_t, DBCHAR;
#endif
typedef union {
void *p;
int i;
unsigned char c[8];
ucs2_t u2[4];
Py_UCS4 u4[2];
} MultibyteCodec_State;
typedef int (*mbcodec_init)(const void *config);
typedef Py_ssize_t (*mbencode_func)(MultibyteCodec_State *state,
const void *config,
int kind, void *data,
Py_ssize_t *inpos, Py_ssize_t inlen,
unsigned char **outbuf, Py_ssize_t outleft,
int flags);
typedef int (*mbencodeinit_func)(MultibyteCodec_State *state,
const void *config);
typedef Py_ssize_t (*mbencodereset_func)(MultibyteCodec_State *state,
const void *config,
unsigned char **outbuf, Py_ssize_t outleft);
typedef Py_ssize_t (*mbdecode_func)(MultibyteCodec_State *state,
const void *config,
const unsigned char **inbuf, Py_ssize_t inleft,
_PyUnicodeWriter *writer);
typedef int (*mbdecodeinit_func)(MultibyteCodec_State *state,
const void *config);
typedef Py_ssize_t (*mbdecodereset_func)(MultibyteCodec_State *state,
const void *config);
typedef struct {
const char *encoding;
const void *config;
mbcodec_init codecinit;
mbencode_func encode;
mbencodeinit_func encinit;
mbencodereset_func encreset;
mbdecode_func decode;
mbdecodeinit_func decinit;
mbdecodereset_func decreset;
} MultibyteCodec;
typedef struct {
PyObject_HEAD
MultibyteCodec *codec;
} MultibyteCodecObject;
#define MultibyteCodec_Check(op) ((op)->ob_type == &MultibyteCodec_Type)
#define _MultibyteStatefulCodec_HEAD \
PyObject_HEAD \
MultibyteCodec *codec; \
MultibyteCodec_State state; \
PyObject *errors;
typedef struct {
_MultibyteStatefulCodec_HEAD
} MultibyteStatefulCodecContext;
#define MAXENCPENDING 2
#define _MultibyteStatefulEncoder_HEAD \
_MultibyteStatefulCodec_HEAD \
PyObject *pending;
typedef struct {
_MultibyteStatefulEncoder_HEAD
} MultibyteStatefulEncoderContext;
#define MAXDECPENDING 8
#define _MultibyteStatefulDecoder_HEAD \
_MultibyteStatefulCodec_HEAD \
unsigned char pending[MAXDECPENDING]; \
Py_ssize_t pendingsize;
typedef struct {
_MultibyteStatefulDecoder_HEAD
} MultibyteStatefulDecoderContext;
typedef struct {
_MultibyteStatefulEncoder_HEAD
} MultibyteIncrementalEncoderObject;
typedef struct {
_MultibyteStatefulDecoder_HEAD
} MultibyteIncrementalDecoderObject;
typedef struct {
_MultibyteStatefulDecoder_HEAD
PyObject *stream;
} MultibyteStreamReaderObject;
typedef struct {
_MultibyteStatefulEncoder_HEAD
PyObject *stream;
} MultibyteStreamWriterObject;
/* positive values for illegal sequences */
#define MBERR_TOOSMALL (-1) /* insufficient output buffer space */
#define MBERR_TOOFEW (-2) /* incomplete input buffer */
#define MBERR_INTERNAL (-3) /* internal runtime error */
#define MBERR_EXCEPTION (-4) /* an exception has been raised */
#define ERROR_STRICT (PyObject *)(1)
#define ERROR_IGNORE (PyObject *)(2)
#define ERROR_REPLACE (PyObject *)(3)
#define ERROR_ISCUSTOM(p) ((p) < ERROR_STRICT || ERROR_REPLACE < (p))
#define ERROR_DECREF(p) \
do { \
if (p != NULL && ERROR_ISCUSTOM(p)) \
Py_DECREF(p); \
} while (0);
#define MBENC_FLUSH 0x0001 /* encode all characters encodable */
#define MBENC_MAX MBENC_FLUSH
#define PyMultibyteCodec_CAPSULE_NAME "multibytecodec.__map_*"
COSMOPOLITAN_C_END_
#endif
| 4,339 | 134 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/ksx1001_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) ksx1001_decmap_ptr;
static const unsigned char ksx1001_decmap_rodata[] = {
0xed, 0xd0, 0xb1, 0x2b, 0xc4, 0x71, 0x18, 0xc7, 0xf1, 0xdf, 0xd7, 0xef, 0x38,
0xe7, 0x1c, 0x0e, 0xe7, 0x70, 0xce, 0xf5, 0x19, 0x64, 0x30, 0xc8, 0x20, 0x83,
0x41, 0x06, 0x93, 0x24, 0x83, 0x41, 0x94, 0x88, 0x24, 0xc3, 0xa5, 0x8b, 0x48,
0x3d, 0x06, 0x19, 0x0c, 0x32, 0xc8, 0x60, 0x90, 0x41, 0x29, 0x49, 0x8a, 0x41,
0x94, 0x0c, 0x06, 0x19, 0x0c, 0x32, 0xc8, 0x60, 0x90, 0xc1, 0x20, 0x83, 0x0c,
0x06, 0x91, 0xb7, 0x2c, 0xfe, 0x03, 0xcb, 0x7d, 0xea, 0xd5, 0x33, 0x7d, 0x7a,
0x7a, 0x1e, 0xcf, 0xfb, 0xff, 0x38, 0x4f, 0x36, 0xe8, 0x69, 0x6c, 0x9b, 0x19,
0x70, 0xb2, 0x61, 0xa7, 0x99, 0x13, 0xa7, 0x91, 0x2f, 0xa7, 0x74, 0x57, 0x8e,
0x6c, 0x17, 0x21, 0x5f, 0x99, 0x01, 0x5f, 0xd3, 0x07, 0xbe, 0x26, 0xff, 0x76,
0xfd, 0x80, 0x6c, 0x08, 0x67, 0x48, 0xe6, 0xca, 0xe6, 0x70, 0x87, 0x96, 0x3c,
0xd9, 0x1a, 0xde, 0xd0, 0x13, 0x94, 0xed, 0x23, 0x92, 0x2f, 0x9b, 0xc0, 0x25,
0xea, 0x43, 0xb2, 0x45, 0x3c, 0xa2, 0xbd, 0x40, 0xb6, 0x89, 0x4f, 0xf4, 0x87,
0x65, 0xc7, 0x88, 0x17, 0xca, 0xa6, 0x70, 0x83, 0x9f, 0x3d, 0x4d, 0x11, 0xd9,
0x0a, 0x5e, 0xd0, 0x59, 0x24, 0xdb, 0x41, 0xb0, 0x58, 0x36, 0x8a, 0x73, 0xa8,
0x44, 0x36, 0x8f, 0x7b, 0xb4, 0x46, 0x65, 0xeb, 0x78, 0x47, 0x6f, 0xa9, 0xec,
0x10, 0xd1, 0x32, 0x59, 0x1a, 0x57, 0x68, 0x28, 0x97, 0x2d, 0xe1, 0x09, 0x1d,
0x31, 0xd9, 0x16, 0x5c, 0x05, 0x3f, 0xc0, 0x29, 0x12, 0x71, 0xd9, 0x2c, 0x6e,
0xd1, 0x5c, 0x29, 0x5b, 0xc5, 0x2b, 0xba, 0xab, 0x64, 0x7b, 0x08, 0x57, 0xcb,
0xc6, 0x71, 0x81, 0xba, 0x84, 0x6c, 0x01, 0x0f, 0x68, 0xab, 0x91, 0x6d, 0xe0,
0x03, 0x7d, 0x49, 0xd9, 0x11, 0x62, 0xb5, 0xb2, 0x0c, 0xae, 0xd1, 0x98, 0x92,
0x2d, 0xe3, 0x39, 0xf5, 0x7b, 0x53, 0x36, 0xd9, 0x7c, 0x03,
};
optimizesize void *ksx1001_decmap(void) {
return xload(&ksx1001_decmap_ptr,
ksx1001_decmap_rodata,
270, 1024); /* 26.3672% profit */
}
| 1,977 | 34 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/big5_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) big5_encmap_ptr;
static const unsigned char big5_encmap_rodata[] = {
0xed, 0xcf, 0x3b, 0x4c, 0x53, 0x71, 0x14, 0xc7, 0xf1, 0xdf, 0xe9, 0xed, 0x45,
0x4a, 0x6f, 0x1f, 0x80, 0x4f, 0x40, 0xe4, 0xfd, 0x10, 0x51, 0x1e, 0x0a, 0x2a,
0x42, 0x2d, 0x82, 0xb5, 0x55, 0x9e, 0x35, 0x71, 0x32, 0x91, 0x85, 0x01, 0x46,
0x06, 0x07, 0xc3, 0xc4, 0x6e, 0xe2, 0x68, 0x42, 0x20, 0xa1, 0x6c, 0x84, 0x01,
0x16, 0x62, 0x22, 0x60, 0xa2, 0xc1, 0x30, 0x38, 0x3a, 0x38, 0x12, 0x1e, 0x89,
0x13, 0x04, 0x4c, 0x48, 0xa5, 0xf7, 0xff, 0xf3, 0xb0, 0x39, 0x32, 0x75, 0xe2,
0x9b, 0x7c, 0x86, 0x33, 0x9c, 0xe4, 0x1c, 0xc1, 0xdc, 0x31, 0xb4, 0x57, 0xf8,
0xfe, 0x6b, 0x0c, 0x1f, 0x36, 0x53, 0x90, 0x21, 0x64, 0xb1, 0x3f, 0x28, 0xec,
0x2a, 0x13, 0xeb, 0xe3, 0x8a, 0x14, 0xad, 0x9f, 0xce, 0xaf, 0x3d, 0x6f, 0x26,
0xdf, 0x79, 0xb0, 0x3b, 0x62, 0xd9, 0xdd, 0x67, 0xd9, 0x9f, 0xb5, 0x60, 0x66,
0xbc, 0x76, 0xfd, 0x57, 0x6f, 0x2a, 0xf5, 0xcd, 0xfb, 0xfe, 0x67, 0xb6, 0xee,
0x76, 0x6c, 0xd0, 0xc9, 0x81, 0xf1, 0x5f, 0x00, 0xfd, 0xb9, 0x70, 0x7d, 0x3e,
0xd0, 0x97, 0x67, 0x67, 0xc4, 0x2f, 0x84, 0x23, 0xa4, 0x03, 0x32, 0x20, 0x6e,
0x26, 0x08, 0x66, 0x42, 0x16, 0xd3, 0x61, 0x30, 0x9d, 0x2f, 0x7f, 0x8f, 0x0a,
0x84, 0x87, 0x85, 0xe0, 0xe1, 0x45, 0x0f, 0x0f, 0x2e, 0x09, 0xf7, 0x2f, 0x83,
0xfb, 0x57, 0xd4, 0x55, 0x75, 0x0d, 0xe9, 0xdf, 0x45, 0x39, 0xdc, 0x2e, 0x86,
0xbb, 0x55, 0x02, 0x6e, 0x5d, 0x57, 0xa5, 0x05, 0xee, 0x8f, 0x1b, 0x5e, 0x6e,
0x96, 0x21, 0xb3, 0x51, 0x0e, 0x6e, 0x54, 0x20, 0xfd, 0xa5, 0x12, 0xee, 0x5a,
0x15, 0xb8, 0x56, 0xad, 0x6a, 0x54, 0xad, 0xaa, 0x13, 0xae, 0xd6, 0x83, 0xab,
0x37, 0x55, 0x83, 0xba, 0x05, 0xf3, 0xb9, 0x51, 0xdc, 0x4f, 0xb7, 0x3d, 0x5c,
0xb9, 0x23, 0x27, 0xcb, 0x4d, 0xe0, 0x72, 0xb3, 0x6a, 0x81, 0x59, 0x6a, 0xc5,
0xc9, 0xe2, 0x5d, 0x6b, 0x3a, 0x76, 0xaf, 0x8d, 0xf9, 0x6d, 0x30, 0xe1, 0x76,
0x30, 0x7c, 0x1f, 0x26, 0xf4, 0x00, 0x0c, 0x3d, 0x14, 0x06, 0x3b, 0xc0, 0xe0,
0x23, 0x98, 0x40, 0x27, 0x18, 0xe8, 0x82, 0x71, 0x22, 0x42, 0xff, 0x63, 0xfd,
0x33, 0x8a, 0xd9, 0x85, 0x68, 0xbb, 0x99, 0xe8, 0x06, 0x27, 0x9e, 0xa8, 0x1e,
0xd5, 0xab, 0x9e, 0xaa, 0x98, 0x7a, 0xa6, 0xe2, 0x98, 0x3a, 0x8e, 0xbf, 0xdd,
0x1d, 0x4d, 0x94, 0x30, 0xf1, 0x1c, 0x4c, 0xbc, 0x80, 0x89, 0xf7, 0x81, 0xf1,
0x7e, 0x31, 0xb1, 0x01, 0x71, 0x7b, 0x06, 0x6d, 0x46, 0x86, 0xc0, 0xc8, 0xb0,
0x4a, 0x62, 0x1e, 0xe7, 0x65, 0xa5, 0x9d, 0xa4, 0x13, 0xf8, 0x7f, 0xde, 0x4b,
0x36, 0x8d, 0x57, 0xbc, 0x94, 0xed, 0x7f,
};
optimizesize void *big5_encmap(void) {
return xload(&big5_encmap_ptr,
big5_encmap_rodata,
384, 1024); /* 37.5% profit */
}
| 2,661 | 43 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__jisx0208_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __jisx0208_decmap_ptr;
static const unsigned char __jisx0208_decmap_rodata[9445] = {
0xb5, 0x7a, 0x7b, 0x54, 0x14, 0x57, 0xd6, 0xef, 0xb7, 0x4f, 0x9d, 0x7a, 0x76,
0x75, 0x75, 0x75, 0xf5, 0x83, 0xa6, 0x69, 0x9a, 0xa6, 0x69, 0x9b, 0xa7, 0x08,
0x04, 0x05, 0x15, 0x89, 0xa2, 0x21, 0xea, 0x24, 0xc6, 0xbc, 0x8c, 0x63, 0x8c,
0x31, 0xd1, 0x98, 0xc4, 0x38, 0x99, 0xc4, 0x64, 0x92, 0x4c, 0x66, 0xc6, 0x41,
0xc4, 0x16, 0x01, 0x91, 0x20, 0x22, 0x22, 0x22, 0x22, 0x22, 0xb6, 0x48, 0x08,
0x41, 0x44, 0x44, 0x44, 0xa2, 0x84, 0x20, 0x22, 0x22, 0x41, 0x44, 0x44, 0x42,
0x08, 0x41, 0x44, 0x44, 0x24, 0x88, 0x04, 0xc9, 0xad, 0xdc, 0xb9, 0x73, 0x5f,
0x6b, 0xcd, 0x7f, 0xf7, 0x9e, 0xee, 0xb5, 0xba, 0xba, 0x6a, 0x57, 0xd5, 0xa9,
0x7d, 0xf6, 0xef, 0xb1, 0xd7, 0xaa, 0x98, 0x6a, 0x40, 0x28, 0xad, 0x92, 0xc2,
0x87, 0xcb, 0xa9, 0xaa, 0x72, 0x0a, 0x31, 0xb3, 0x2f, 0x9e, 0xa2, 0xd0, 0xe5,
0xb3, 0x90, 0x31, 0x4e, 0x7f, 0x39, 0x4e, 0x17, 0x8e, 0xd3, 0xf5, 0xe8, 0x5b,
0xb4, 0x45, 0xde, 0x77, 0x0e, 0xd0, 0x09, 0x54, 0xfa, 0xb7, 0x2f, 0xff, 0x86,
0x50, 0x3f, 0x71, 0x69, 0x3e, 0x3b, 0xf9, 0x2b, 0xf5, 0xd3, 0x38, 0x1d, 0x73,
0x16, 0x12, 0xe7, 0x26, 0x3d, 0xa6, 0xee, 0x4c, 0x50, 0xe0, 0x8a, 0x28, 0xd4,
0xfa, 0x2b, 0x85, 0x6e, 0x9f, 0xa6, 0x50, 0x83, 0x7c, 0xc9, 0x08, 0x7c, 0xf4,
0x0c, 0x85, 0xfe, 0x3d, 0x46, 0x4e, 0x53, 0xf7, 0x1f, 0x50, 0xe7, 0xb6, 0xc2,
0x33, 0x73, 0x1b, 0xc6, 0xe8, 0x47, 0xc3, 0xd4, 0xd8, 0x30, 0x85, 0xef, 0x0d,
0x53, 0xe8, 0x0b, 0x08, 0xc8, 0x12, 0x89, 0x03, 0xe9, 0x10, 0xb7, 0x09, 0xe5,
0x10, 0xe7, 0x7f, 0xa5, 0xce, 0x11, 0xdf, 0x3c, 0xa2, 0xd1, 0xf9, 0x47, 0x34,
0x41, 0x31, 0x01, 0xf7, 0x1f, 0xd1, 0x55, 0xbb, 0x01, 0x3e, 0x62, 0x40, 0x09,
0x8b, 0xc0, 0x0e, 0x7a, 0xd8, 0xac, 0x2f, 0x7a, 0xf2, 0xb7, 0x99, 0x04, 0xc2,
0x31, 0xb3, 0x5a, 0xcf, 0x52, 0xff, 0xf5, 0x3f, 0xc7, 0x9d, 0x87, 0x14, 0x35,
0x0a, 0x88, 0x45, 0x5f, 0x01, 0x38, 0x1f, 0xfe, 0xfb, 0xc0, 0xf1, 0x87, 0x14,
0x7a, 0xb8, 0x15, 0x1a, 0xe2, 0x00, 0x2f, 0xa7, 0x46, 0x1f, 0xfe, 0x6f, 0xf1,
0xa7, 0x1f, 0x52, 0x09, 0xa8, 0x1d, 0x0e, 0x60, 0xae, 0x14, 0xdc, 0x83, 0xd0,
0x41, 0x88, 0x7e, 0x32, 0x48, 0x83, 0xf2, 0xfe, 0x1d, 0x72, 0xf8, 0x57, 0xea,
0x17, 0x62, 0xd2, 0x40, 0x90, 0xbb, 0x5c, 0xd1, 0xf7, 0xff, 0x48, 0x79, 0x4c,
0xcb, 0xfb, 0xf6, 0xf7, 0x51, 0x35, 0x3d, 0xff, 0xeb, 0x91, 0xea, 0x89, 0x7f,
0x85, 0x9e, 0x22, 0xd0, 0x7f, 0x1a, 0xf1, 0xff, 0x0a, 0x79, 0xf4, 0x1f, 0x03,
0xd0, 0x57, 0x95, 0x14, 0xfa, 0x7f, 0x3e, 0x4c, 0xe8, 0xff, 0xc7, 0xf8, 0xee,
0x04, 0xfc, 0xdf, 0xbb, 0xf0, 0xbf, 0x7e, 0x9c, 0xf7, 0xe9, 0xff, 0x91, 0xd5,
0xbd, 0xf7, 0xe9, 0xff, 0x10, 0x93, 0xfc, 0xaf, 0x93, 0xbd, 0xfd, 0xfe, 0xe3,
0xf5, 0xb3, 0xef, 0xd1, 0xff, 0xf5, 0x7f, 0x8c, 0x7d, 0xf7, 0xfe, 0x75, 0xb1,
0xf0, 0xe9, 0xff, 0xf1, 0x9c, 0xee, 0x58, 0xc0, 0x5a, 0x46, 0xa4, 0x45, 0x8b,
0xca, 0x22, 0xfe, 0x05, 0x1b, 0xe4, 0x4d, 0x83, 0xbc, 0x69, 0x79, 0xd9, 0xac,
0x34, 0x8b, 0xf3, 0xed, 0x3a, 0xbb, 0xb6, 0xf4, 0x30, 0x8c, 0xb8, 0xb6, 0x6b,
0xc6, 0x86, 0xe0, 0xf1, 0x56, 0x54, 0x16, 0x9c, 0xc9, 0xfc, 0x68, 0x6b, 0x6b,
0x83, 0xeb, 0x81, 0x5f, 0x91, 0x7b, 0xbc, 0x2e, 0xae, 0x1b, 0xe4, 0xe3, 0x7d,
0xef, 0x59, 0x86, 0xff, 0xfa, 0x1b, 0x95, 0xfd, 0xd6, 0x37, 0x97, 0xe0, 0xda,
0x53, 0x23, 0x33, 0x6f, 0xf1, 0xc7, 0xdc, 0x76, 0xd3, 0xad, 0x25, 0x30, 0xbc,
0xe8, 0xd0, 0xfb, 0xe5, 0x90, 0xf3, 0xe9, 0xbd, 0x9f, 0x20, 0x75, 0x7d, 0x71,
0xd0, 0x8d, 0x52, 0x68, 0xe3, 0x0b, 0xd4, 0x59, 0x42, 0x37, 0x35, 0x79, 0x02,
0x92, 0xe8, 0x5f, 0xab, 0xe1, 0xea, 0x1b, 0x8b, 0x1d, 0x90, 0x03, 0x6d, 0xa8,
0xd9, 0x98, 0xc0, 0x56, 0xa0, 0x15, 0x29, 0x4c, 0xa1, 0x66, 0x75, 0x0d, 0xd4,
0x4a, 0x3d, 0x8a, 0x7e, 0xb3, 0x53, 0x8a, 0x4a, 0x97, 0x7a, 0x84, 0x38, 0x28,
0x50, 0xa4, 0x2b, 0x9d, 0xea, 0x2a, 0x2e, 0x5f, 0xb7, 0xf8, 0xf1, 0x08, 0x5c,
0x94, 0x2c, 0x23, 0xb6, 0xfc, 0x43, 0x90, 0x3d, 0xf7, 0xd0, 0xeb, 0x37, 0x8f,
0x41, 0xb7, 0x7f, 0xf7, 0xb2, 0x42, 0x07, 0x24, 0x2e, 0x1f, 0xf0, 0x3a, 0x85,
0xea, 0xd6, 0xdd, 0x38, 0x86, 0x3a, 0x99, 0x4c, 0x72, 0xe1, 0x24, 0x5d, 0xc6,
0x97, 0x6a, 0x2b, 0x7e, 0x86, 0x1d, 0x85, 0x30, 0xfc, 0x87, 0x54, 0x75, 0xff,
0x02, 0xd3, 0xea, 0x32, 0xf2, 0xd6, 0x4e, 0x34, 0xad, 0xc0, 0x9c, 0xf2, 0x72,
0xc7, 0xec, 0x84, 0xb9, 0x0d, 0xa6, 0xfb, 0x3b, 0x50, 0xfb, 0x11, 0xf4, 0x4d,
0x02, 0x5c, 0x29, 0x81, 0x38, 0x27, 0x34, 0x4f, 0x39, 0xf6, 0xdc, 0xbe, 0xd5,
0x47, 0x70, 0xc9, 0xf2, 0xf1, 0xb7, 0x6b, 0x56, 0x1e, 0xdb, 0x8e, 0x1e, 0x1a,
0xc6, 0xd7, 0x0d, 0xb8, 0xf7, 0xc6, 0xc2, 0xde, 0xc7, 0xf0, 0x83, 0x79, 0xc4,
0x81, 0x1a, 0x8d, 0x17, 0x96, 0x8c, 0x2f, 0xfb, 0x3e, 0x0d, 0x39, 0xe9, 0x11,
0x5d, 0xac, 0xba, 0xd3, 0x98, 0x4f, 0xe4, 0xe2, 0x3e, 0x71, 0x14, 0x6d, 0xe8,
0x31, 0xb5, 0xb3, 0x49, 0x42, 0xc3, 0xa7, 0x5b, 0x5f, 0x6e, 0xd1, 0x25, 0x30,
0x99, 0xd6, 0x5f, 0xd2, 0x60, 0xd8, 0xa3, 0x0a, 0x8f, 0x26, 0xc2, 0x99, 0x1e,
0x28, 0x3b, 0x0a, 0xa9, 0x5c, 0x93, 0xe5, 0xdb, 0x62, 0x38, 0xf7, 0xca, 0x25,
0x26, 0x43, 0x5f, 0x89, 0x0b, 0x70, 0x17, 0x1b, 0xa7, 0xec, 0xc1, 0xb1, 0x42,
0x3a, 0xa4, 0x7b, 0x39, 0xd9, 0x11, 0x32, 0x09, 0x25, 0xc0, 0x18, 0xb4, 0x90,
0x71, 0xfe, 0xfd, 0xea, 0x32, 0x48, 0x52, 0xa4, 0xfa, 0x8f, 0xd2, 0x31, 0xfe,
0x3f, 0xa6, 0xa2, 0xfc, 0xe9, 0x95, 0xc6, 0x74, 0xaf, 0x6b, 0x49, 0xd0, 0x6f,
0x7a, 0xbf, 0xcc, 0x50, 0x0e, 0xd5, 0x8a, 0x09, 0xbe, 0x4b, 0x1c, 0x27, 0x32,
0x51, 0x91, 0xc7, 0x40, 0x90, 0xd3, 0x5e, 0xf8, 0xdc, 0xec, 0x01, 0xea, 0x42,
0x3c, 0xea, 0x7f, 0xb2, 0xfe, 0xd5, 0xbb, 0xdf, 0x41, 0xf2, 0xd4, 0x56, 0x5d,
0x4e, 0x0c, 0x1c, 0x78, 0xab, 0xd5, 0x7b, 0x67, 0x0a, 0xd4, 0x50, 0x13, 0xca,
0xee, 0x27, 0x62, 0xc2, 0x1a, 0x82, 0xea, 0x3e, 0xb9, 0x7c, 0x04, 0xa5, 0x6b,
0x2f, 0x8b, 0x8d, 0x30, 0xad, 0x0e, 0x5e, 0x6d, 0xe7, 0xb3, 0xc9, 0x52, 0x26,
0x89, 0xef, 0xa1, 0xfa, 0x89, 0x65, 0x5d, 0x9f, 0xee, 0x7a, 0xd6, 0x89, 0x43,
0x0b, 0x85, 0x46, 0x72, 0x48, 0x28, 0x52, 0xa6, 0xbb, 0xbc, 0x39, 0x01, 0xe9,
0x64, 0x8b, 0xe9, 0xa5, 0x17, 0x7a, 0x61, 0x08, 0xc2, 0xf2, 0x85, 0x0c, 0xe5,
0x17, 0xcd, 0x30, 0x79, 0x1d, 0x26, 0xf8, 0x26, 0xc8, 0x71, 0x3b, 0x12, 0x95,
0x78, 0x03, 0xea, 0x42, 0x9b, 0xb5, 0x29, 0xf3, 0xce, 0x2b, 0x5a, 0x42, 0x8a,
0x89, 0x58, 0x75, 0x9c, 0x4b, 0x82, 0x4f, 0x16, 0x1b, 0x47, 0xec, 0x2a, 0x44,
0xd9, 0x90, 0x7a, 0x07, 0xb6, 0x37, 0x40, 0x1b, 0x19, 0x83, 0xba, 0x0d, 0x5d,
0xc4, 0xa6, 0x16, 0x58, 0xd3, 0x41, 0xc6, 0xc1, 0x04, 0x6a, 0x66, 0x53, 0xda,
0xe0, 0xc4, 0x55, 0x48, 0x63, 0x93, 0x35, 0xc3, 0x8a, 0x72, 0xcd, 0x08, 0xee,
0x74, 0xeb, 0xd2, 0x16, 0xe8, 0xf2, 0x66, 0x38, 0xf0, 0x0f, 0xde, 0xd7, 0xfa,
0x21, 0x93, 0x28, 0x76, 0xbd, 0xa0, 0x8e, 0x31, 0xd5, 0x92, 0x79, 0xea, 0x52,
0x4b, 0xbb, 0x58, 0xe9, 0x3f, 0x11, 0x94, 0x21, 0x94, 0x31, 0xfd, 0xb6, 0x5c,
0xd3, 0x9e, 0x13, 0x30, 0x56, 0x0c, 0xfb, 0xff, 0x70, 0xa7, 0x12, 0xca, 0xe7,
0x65, 0xff, 0x2d, 0x66, 0xea, 0xee, 0x49, 0x88, 0x17, 0xb7, 0x72, 0xd9, 0xfe,
0x59, 0x62, 0x31, 0xed, 0x10, 0xe4, 0xef, 0xa0, 0x39, 0x45, 0xd7, 0x4d, 0x75,
0x46, 0x7c, 0x50, 0x22, 0x14, 0x53, 0x2d, 0xf4, 0x80, 0xd4, 0x4d, 0x38, 0x89,
0xad, 0x43, 0x90, 0x49, 0xa6, 0x3d, 0x91, 0x73, 0x1a, 0xd0, 0x4f, 0xcd, 0x90,
0xb0, 0xea, 0xf6, 0xfc, 0x02, 0xf8, 0x82, 0x2e, 0xba, 0x04, 0x37, 0x4a, 0xe0,
0xfa, 0x47, 0xad, 0x7c, 0xbe, 0xff, 0x18, 0x9b, 0xed, 0x9b, 0x41, 0xa4, 0x11,
0x69, 0xcb, 0xfa, 0xa5, 0x3e, 0xc3, 0xad, 0x38, 0x54, 0x5f, 0x8e, 0xb6, 0x1e,
0x44, 0xf5, 0x2f, 0x55, 0xe1, 0xb4, 0x13, 0xf0, 0xf5, 0x19, 0xd8, 0xf7, 0x6a,
0xe3, 0x61, 0xe8, 0xf4, 0x6e, 0x09, 0xed, 0xa2, 0x7e, 0x18, 0x81, 0xcc, 0x7d,
0x28, 0xb1, 0x05, 0x6a, 0xdf, 0x6b, 0xc3, 0x7b, 0xcc, 0xa7, 0x9c, 0x30, 0x5e,
0x03, 0x67, 0xc2, 0x2e, 0xef, 0x85, 0x04, 0x5c, 0xc1, 0xf4, 0xf8, 0xec, 0xf4,
0xce, 0x22, 0xcc, 0x05, 0x01, 0xe7, 0x3c, 0x73, 0xb8, 0x31, 0xaa, 0x81, 0x32,
0x38, 0xa0, 0x88, 0x13, 0x5a, 0x98, 0x31, 0x88, 0x87, 0x32, 0xa8, 0x60, 0x92,
0xa9, 0x4e, 0x36, 0x0e, 0x35, 0xa2, 0x78, 0xd6, 0x2f, 0x1e, 0xa7, 0x2b, 0xfa,
0xe1, 0x10, 0xb4, 0xea, 0x9a, 0x20, 0x9d, 0x5e, 0xda, 0xa7, 0x3a, 0x8f, 0x62,
0x50, 0x0a, 0x9d, 0x49, 0x8e, 0xa0, 0x76, 0x94, 0x4a, 0x0f, 0x61, 0xa7, 0xa1,
0x04, 0x57, 0xd1, 0x25, 0xaa, 0x4c, 0x55, 0x1c, 0x49, 0x58, 0x1d, 0x44, 0x07,
0xe9, 0x24, 0x0f, 0xac, 0x3c, 0x7b, 0x19, 0x7a, 0x5d, 0x32, 0xad, 0x05, 0xb8,
0xe2, 0x95, 0x5a, 0xae, 0x8b, 0x38, 0xbc, 0x3e, 0x6e, 0x07, 0x54, 0x87, 0x0e,
0xd8, 0x73, 0x48, 0x07, 0x30, 0xc7, 0x0f, 0x23, 0x63, 0xad, 0xba, 0x95, 0xc9,
0x20, 0xf2, 0xa8, 0x4c, 0x32, 0x8e, 0x1e, 0x45, 0x19, 0xc4, 0x18, 0xd9, 0x03,
0x59, 0xe4, 0x79, 0x31, 0x43, 0x79, 0x81, 0xd4, 0x8f, 0xe3, 0x36, 0x4a, 0x59,
0x46, 0xdd, 0x0c, 0x72, 0xce, 0xc8, 0x83, 0x06, 0x88, 0xb3, 0xa5, 0xaa, 0xbe,
0xfb, 0xb4, 0xe2, 0xf3, 0x18, 0x7e, 0xeb, 0x5f, 0xf2, 0x8e, 0x40, 0x2a, 0x2a,
0xe7, 0x1c, 0x84, 0x93, 0xcc, 0x85, 0x04, 0xef, 0x36, 0xdc, 0x81, 0x1f, 0x96,
0xa0, 0x71, 0xda, 0x81, 0xf2, 0xad, 0xa9, 0x4c, 0xbe, 0x31, 0x17, 0xda, 0xd8,
0x2c, 0xd7, 0x06, 0xf7, 0x6e, 0xc5, 0x80, 0x70, 0xde, 0x35, 0xcf, 0x33, 0x56,
0xd1, 0x87, 0xb6, 0x1d, 0x80, 0xca, 0x18, 0x28, 0x7c, 0xee, 0x78, 0x32, 0x52,
0x34, 0x51, 0xcd, 0x8b, 0xe3, 0x99, 0xe2, 0x18, 0xf8, 0x62, 0xd1, 0x8f, 0x51,
0xc5, 0x37, 0xe1, 0xab, 0xe3, 0xa8, 0xc3, 0x32, 0xb4, 0x1b, 0x06, 0xb4, 0x03,
0xf6, 0x1b, 0xdb, 0xd0, 0x8a, 0x38, 0x24, 0x23, 0x42, 0xea, 0x80, 0x01, 0xf7,
0x7a, 0x65, 0x1e, 0x6e, 0xd3, 0xb6, 0xd1, 0x09, 0xda, 0xd5, 0xdd, 0xe0, 0x14,
0xd2, 0x85, 0x5e, 0xd7, 0x0f, 0x4a, 0x21, 0x8f, 0x09, 0x6b, 0x82, 0xc7, 0xaf,
0xf5, 0x05, 0x9f, 0xfd, 0x3c, 0xcd, 0x5a, 0x4b, 0xb5, 0x68, 0x4c, 0x1b, 0x93,
0x03, 0x46, 0x56, 0x17, 0xa9, 0xda, 0x84, 0x32, 0xed, 0xdd, 0x9d, 0x50, 0xef,
0xd7, 0xe7, 0x80, 0x1f, 0x4b, 0x64, 0x89, 0xec, 0x24, 0xb8, 0x6e, 0x3c, 0x00,
0x9d, 0xf9, 0xb0, 0x3d, 0x1f, 0x12, 0x50, 0x25, 0xf9, 0x56, 0x25, 0xb4, 0x41,
0x2c, 0x5d, 0xa4, 0xa8, 0x54, 0x17, 0xb2, 0xf6, 0x7a, 0x22, 0x6a, 0x56, 0x0f,
0x37, 0xc2, 0xf4, 0x68, 0x06, 0xd8, 0x58, 0xc3, 0xb2, 0x38, 0x6d, 0xaa, 0xcd,
0xe8, 0xc0, 0x49, 0xca, 0xe6, 0xc0, 0x16, 0x45, 0xa5, 0x58, 0x4c, 0x3a, 0xf0,
0xd5, 0xe3, 0xa8, 0x5d, 0x91, 0xe3, 0x5b, 0xe0, 0xdb, 0xa6, 0xb8, 0x1e, 0xda,
0xe3, 0xe7, 0xe0, 0x0a, 0x7c, 0xee, 0x07, 0x74, 0x2f, 0x7d, 0x58, 0x04, 0x55,
0x4c, 0xad, 0x7a, 0xd0, 0xd8, 0xd4, 0x02, 0x5b, 0xca, 0x60, 0x52, 0x17, 0x3a,
0xe8, 0x95, 0xa9, 0xfb, 0x2c, 0x8b, 0x9a, 0x64, 0x3b, 0x35, 0xf9, 0xb8, 0x57,
0xaa, 0x26, 0x4a, 0xe9, 0x62, 0x29, 0x86, 0xf9, 0x71, 0x14, 0x6a, 0x1e, 0xc1,
0x85, 0x14, 0x54, 0x42, 0x77, 0x0a, 0xdf, 0xa3, 0x8a, 0x4d, 0x93, 0x28, 0x5f,
0x3d, 0xee, 0x9f, 0x3a, 0xad, 0x28, 0x00, 0x6b, 0x4f, 0x1c, 0x44, 0xb5, 0x91,
0xf1, 0xbb, 0xe1, 0x46, 0x0d, 0xa4, 0xed, 0x82, 0x6d, 0x05, 0x50, 0x31, 0xb5,
0xef, 0x0a, 0x4c, 0x18, 0x0e, 0x1f, 0x44, 0xcd, 0x1b, 0x33, 0xb2, 0xe0, 0x58,
0x2b, 0xa8, 0x73, 0xdc, 0x93, 0x57, 0xee, 0x09, 0xaf, 0x39, 0x06, 0x87, 0x2d,
0x77, 0x5f, 0x38, 0x6b, 0x9b, 0xd8, 0x05, 0x89, 0xef, 0x7c, 0xff, 0x7c, 0xc9,
0x1f, 0xcf, 0x2c, 0x2f, 0x2b, 0x84, 0x07, 0x9b, 0x51, 0x33, 0xce, 0xa9, 0x85,
0x26, 0xf5, 0x4d, 0xdf, 0xe6, 0x88, 0x02, 0xe6, 0x97, 0x5f, 0xe0, 0x7c, 0x0b,
0xec, 0x98, 0xf3, 0xf8, 0x30, 0x8c, 0x11, 0xf9, 0xe4, 0x5e, 0x22, 0x5b, 0x2c,
0xa5, 0xc7, 0x37, 0x9e, 0xf9, 0x30, 0x89, 0xce, 0x35, 0x2c, 0xe8, 0x26, 0x62,
0xb1, 0x7b, 0x1c, 0xa4, 0x32, 0x29, 0xa8, 0x07, 0x3b, 0x70, 0x3e, 0x9d, 0xeb,
0x92, 0xef, 0x5e, 0xa4, 0x99, 0xe0, 0x72, 0x21, 0x13, 0x7a, 0x50, 0x35, 0xae,
0x15, 0x3e, 0x73, 0x08, 0xa3, 0x7c, 0x19, 0x38, 0x70, 0x91, 0x50, 0x61, 0xeb,
0xd7, 0x1d, 0x7f, 0xaf, 0x30, 0xb4, 0x34, 0xe8, 0xdc, 0x61, 0x54, 0x1c, 0x59,
0xc7, 0x8e, 0x07, 0x94, 0xec, 0x83, 0x2f, 0x4f, 0xc1, 0xad, 0x55, 0xd9, 0xeb,
0x4b, 0xc9, 0x52, 0x45, 0x75, 0x40, 0xb9, 0xa2, 0xcb, 0xbf, 0x96, 0x3e, 0x91,
0x04, 0x87, 0x56, 0x3b, 0xc8, 0x29, 0x9b, 0x8a, 0xf0, 0x18, 0x5a, 0x16, 0xaf,
0x6c, 0x22, 0x07, 0x88, 0x64, 0x45, 0x87, 0x38, 0xc4, 0x25, 0xc1, 0x28, 0x31,
0x09, 0x2d, 0xfa, 0x4c, 0x5c, 0xe0, 0xb9, 0x2a, 0x0e, 0x35, 0x68, 0xca, 0x20,
0x4d, 0x7b, 0xdd, 0xb5, 0xc2, 0x7e, 0xde, 0x2b, 0x8b, 0x4a, 0xa5, 0xbb, 0xe8,
0x5c, 0x2a, 0x8f, 0x4f, 0xe0, 0xcb, 0xe8, 0x09, 0xaa, 0x5e, 0x7d, 0xbb, 0x14,
0x95, 0xb3, 0x3e, 0x29, 0xfe, 0xad, 0xa8, 0x7f, 0x76, 0x3f, 0xf4, 0x69, 0x46,
0x20, 0x61, 0x4a, 0x9f, 0x26, 0xd5, 0x63, 0x84, 0x28, 0x9c, 0xba, 0x25, 0x07,
0x8d, 0x53, 0x25, 0xaa, 0x62, 0x34, 0xc1, 0x16, 0x29, 0xf2, 0xa9, 0x4c, 0x6e,
0x04, 0x8d, 0x41, 0x2e, 0x9f, 0xc9, 0xb7, 0xb0, 0x8d, 0xc6, 0x11, 0xf5, 0x88,
0x77, 0xcb, 0xb4, 0xc3, 0x96, 0x18, 0xc8, 0xe6, 0x2b, 0xd9, 0x61, 0xb1, 0x46,
0x99, 0xad, 0xce, 0x91, 0xaa, 0xa9, 0x36, 0xe3, 0xe3, 0x73, 0x88, 0x18, 0x85,
0x51, 0x31, 0x16, 0xeb, 0xba, 0x5d, 0x2a, 0x74, 0x7e, 0x13, 0x44, 0x8a, 0xa5,
0x91, 0xce, 0xf0, 0x6e, 0x14, 0x2b, 0x16, 0xf2, 0xf9, 0x44, 0x89, 0xe1, 0xc7,
0x24, 0xd4, 0x7a, 0x02, 0x7d, 0x57, 0x8a, 0x8a, 0x89, 0x75, 0x2d, 0x40, 0xf6,
0xe2, 0xe8, 0x5e, 0x1c, 0x9a, 0x00, 0xe5, 0x28, 0x15, 0x56, 0x92, 0xa3, 0x64,
0x0a, 0x9d, 0x0b, 0x65, 0x74, 0x11, 0x2d, 0xad, 0x2d, 0x64, 0xb1, 0x25, 0x16,
0xe9, 0x03, 0x67, 0xd5, 0xc0, 0x08, 0x1e, 0x21, 0xd2, 0xc9, 0x58, 0xc8, 0x26,
0x0a, 0xa8, 0x64, 0x22, 0x16, 0xba, 0xd1, 0x30, 0xf4, 0xa1, 0x01, 0xe8, 0xc3,
0x05, 0x5c, 0x3a, 0xb1, 0x29, 0x89, 0xe8, 0x00, 0xa7, 0xd1, 0x49, 0xd6, 0xd3,
0xf9, 0x74, 0x0d, 0xb7, 0xd8, 0x9e, 0x04, 0xf9, 0x50, 0xc7, 0x7a, 0xb5, 0x21,
0x5c, 0x8b, 0x3e, 0x29, 0x43, 0x4d, 0x78, 0x44, 0xe3, 0x37, 0xc2, 0x25, 0x53,
0xa5, 0x90, 0xa5, 0x6a, 0x45, 0x63, 0xc4, 0x8f, 0xef, 0x8c, 0xaf, 0x6f, 0xe2,
0x9a, 0xd1, 0x10, 0x55, 0x40, 0x4d, 0xe2, 0x5a, 0xf6, 0xec, 0x31, 0x94, 0x03,
0x19, 0xa4, 0x35, 0x53, 0x73, 0xde, 0xa7, 0xf9, 0x89, 0xb4, 0x8d, 0xfd, 0x8a,
0xd2, 0x39, 0x37, 0x4e, 0xa0, 0x2e, 0x22, 0x9b, 0xe9, 0xe5, 0x1c, 0x3b, 0x60,
0x70, 0x65, 0xf3, 0xb4, 0x1e, 0x72, 0x5f, 0x11, 0xfc, 0x22, 0x36, 0x2e, 0x3a,
0x13, 0x7c, 0xe4, 0xa5, 0x0a, 0x22, 0xeb, 0x67, 0xd8, 0x7b, 0x00, 0x6a, 0x3e,
0xfa, 0xf2, 0x0b, 0xa8, 0x2a, 0x81, 0xfb, 0x79, 0xa8, 0xc1, 0xd2, 0x07, 0xa5,
0x64, 0x39, 0x95, 0x65, 0xa8, 0x22, 0x53, 0xd4, 0xea, 0x5e, 0x66, 0x08, 0x92,
0x74, 0x95, 0x1e, 0xf5, 0xee, 0x7d, 0xda, 0x82, 0x35, 0x97, 0x4a, 0x50, 0x3f,
0x1a, 0x56, 0x8f, 0xe3, 0x66, 0xcf, 0x41, 0x10, 0x33, 0x7d, 0x2a, 0xa5, 0x52,
0x8f, 0x6c, 0x21, 0x6b, 0x51, 0xd2, 0x94, 0xbb, 0x7e, 0xfb, 0x6b, 0xa1, 0xc8,
0x3d, 0x5e, 0xba, 0xb3, 0x48, 0x5d, 0x43, 0xf4, 0xbe, 0x7c, 0x77, 0xa1, 0x53,
0xa8, 0x20, 0xfb, 0xe9, 0x61, 0xa1, 0x4e, 0x51, 0x40, 0x96, 0x4b, 0x03, 0xbc,
0x93, 0xeb, 0x67, 0xd3, 0xb6, 0xc2, 0x8e, 0x7f, 0x38, 0xf5, 0xd6, 0x64, 0xf2,
0xcc, 0x73, 0xe7, 0x57, 0xb5, 0x19, 0xeb, 0x35, 0x29, 0xae, 0x79, 0xe6, 0xbb,
0x29, 0x28, 0x5e, 0xd3, 0x34, 0xb7, 0x74, 0xf5, 0x60, 0xe8, 0xf5, 0x3b, 0x90,
0xa5, 0x6f, 0xfa, 0x15, 0x6e, 0x3d, 0x84, 0x9c, 0xa7, 0x5a, 0x56, 0x6e, 0x29,
0x86, 0x72, 0xcf, 0x43, 0xda, 0x92, 0x58, 0xa8, 0xdf, 0x0d, 0xa7, 0x2b, 0x50,
0x87, 0x22, 0x96, 0xed, 0x8d, 0x6c, 0xa1, 0xdb, 0x88, 0x1a, 0x22, 0x7b, 0x71,
0x1e, 0x91, 0x41, 0x67, 0x2e, 0x3f, 0x7c, 0x0c, 0x72, 0x2f, 0xc1, 0xcf, 0x9b,
0xe1, 0x6c, 0x0e, 0xec, 0xa7, 0xda, 0x51, 0x93, 0xbd, 0xc8, 0x34, 0x44, 0x7d,
0x90, 0xcc, 0x66, 0x4a, 0x9d, 0x6f, 0x37, 0x2d, 0xd8, 0xbc, 0x19, 0x92, 0x76,
0xc3, 0xae, 0x6e, 0x18, 0xa9, 0x82, 0x7a, 0xeb, 0xb5, 0x5d, 0x70, 0x7d, 0xde,
0x17, 0x6f, 0x64, 0x73, 0x2d, 0x7c, 0xa7, 0x75, 0x50, 0xdd, 0x22, 0xe4, 0x12,
0x63, 0x8a, 0x64, 0x7b, 0x1d, 0x5d, 0x42, 0xf6, 0xb9, 0xb6, 0x2a, 0xf2, 0x2d,
0x1d, 0x9a, 0x62, 0xb2, 0x42, 0x2a, 0x36, 0x7f, 0x7b, 0x09, 0x26, 0x89, 0x6a,
0xcd, 0x9d, 0x8d, 0x32, 0x7d, 0x25, 0xc0, 0x28, 0x37, 0x41, 0x29, 0xba, 0xe9,
0x21, 0x22, 0x87, 0xa9, 0x26, 0x88, 0x0d, 0xb9, 0xe4, 0x38, 0xd1, 0x4f, 0xbd,
0xd0, 0x46, 0x25, 0x41, 0x8b, 0xa2, 0x89, 0x39, 0xec, 0x9d, 0xef, 0x6b, 0x5a,
0xd6, 0x4f, 0x25, 0xa8, 0x42, 0x0a, 0xd0, 0x80, 0x29, 0xde, 0x30, 0x04, 0x83,
0x7c, 0x94, 0x6d, 0x50, 0x59, 0x0d, 0xdd, 0x44, 0xad, 0x39, 0x85, 0xd0, 0x93,
0xcf, 0x9c, 0x87, 0x12, 0xda, 0xaf, 0xcb, 0xbb, 0x8b, 0xd9, 0x5b, 0x06, 0xdf,
0x7e, 0xd4, 0x8d, 0x72, 0xc1, 0x41, 0x27, 0xfb, 0xd4, 0xa2, 0x2c, 0xdd, 0x30,
0x15, 0xab, 0xac, 0xd2, 0xb4, 0x08, 0x07, 0x18, 0x87, 0x7e, 0x92, 0x2d, 0xc2,
0xed, 0x8a, 0x61, 0xc8, 0x73, 0x5b, 0x32, 0x48, 0xb5, 0x70, 0x69, 0x01, 0xfb,
0x76, 0x40, 0x67, 0x1d, 0xdc, 0x7a, 0x0c, 0xa9, 0x5f, 0x41, 0xfe, 0xd3, 0x3f,
0xc4, 0xc3, 0xc4, 0x73, 0xdf, 0x5f, 0x82, 0xca, 0xbb, 0x70, 0xf9, 0x10, 0xea,
0x70, 0x49, 0x12, 0x47, 0x70, 0x31, 0x55, 0x46, 0xd4, 0x6b, 0x06, 0xc2, 0x92,
0xd1, 0x90, 0xb1, 0x6d, 0xe5, 0xee, 0x0b, 0x50, 0x73, 0x18, 0xce, 0xda, 0x6e,
0x1c, 0x87, 0xb8, 0x55, 0xcd, 0xeb, 0x1f, 0x66, 0x40, 0xf3, 0x21, 0xb8, 0x66,
0xea, 0x52, 0xdd, 0x3e, 0x07, 0xad, 0xbe, 0x75, 0xee, 0x13, 0x47, 0x60, 0xd7,
0x01, 0xc8, 0x9b, 0x96, 0xe3, 0x51, 0xa2, 0xea, 0x50, 0x14, 0x07, 0xb4, 0x0b,
0x75, 0xd4, 0x25, 0x7b, 0xad, 0xf7, 0xee, 0x58, 0x54, 0xa6, 0x88, 0x99, 0x52,
0x12, 0xd0, 0x6c, 0x1b, 0xa6, 0x8a, 0xfe, 0x3e, 0x06, 0xb5, 0x64, 0xe2, 0xbc,
0x0b, 0x59, 0xd0, 0xa9, 0x4c, 0xa1, 0x7f, 0x5d, 0x5c, 0xa6, 0xef, 0x31, 0x3b,
0xdc, 0x1a, 0x34, 0x25, 0xea, 0x2a, 0xf7, 0x41, 0x22, 0xcb, 0x75, 0xdc, 0x34,
0x14, 0xd4, 0x29, 0xc4, 0x7b, 0x6e, 0xcb, 0x45, 0x09, 0x8a, 0x7c, 0xe4, 0x34,
0xa7, 0x9a, 0xbb, 0x8d, 0xbd, 0xcf, 0x16, 0xbc, 0x75, 0x31, 0x06, 0xed, 0xe1,
0x4b, 0x51, 0xa7, 0xa9, 0x14, 0xb5, 0x53, 0xb7, 0xc2, 0xf2, 0x17, 0x8c, 0xd3,
0x7d, 0x3e, 0x59, 0x21, 0xfa, 0x41, 0x65, 0x3a, 0x4e, 0xa0, 0xca, 0x98, 0xb5,
0xdd, 0xec, 0x80, 0xd0, 0x86, 0x2b, 0x99, 0x3a, 0xc5, 0x28, 0x8a, 0xc3, 0xa5,
0x38, 0xaa, 0x54, 0x77, 0x55, 0x7b, 0x32, 0x11, 0x65, 0xa3, 0x01, 0x7a, 0x8c,
0xce, 0x0b, 0x1e, 0x65, 0x93, 0x5c, 0xda, 0xd5, 0x69, 0x74, 0xb1, 0xce, 0xe1,
0xdf, 0xb8, 0x64, 0x00, 0xdd, 0x1c, 0x87, 0x04, 0x5d, 0x03, 0x97, 0xb7, 0x30,
0x23, 0x30, 0x57, 0x73, 0x98, 0x3a, 0x25, 0x3b, 0x8d, 0xb5, 0xdf, 0x6d, 0x2a,
0xb9, 0x0e, 0x15, 0x66, 0xf9, 0x5e, 0xdd, 0xa1, 0x2d, 0xb6, 0xe4, 0xe8, 0x41,
0x7e, 0xd8, 0x54, 0xfb, 0xfa, 0xfd, 0x1c, 0x54, 0x17, 0x16, 0xe7, 0xea, 0x10,
0x4a, 0x99, 0x16, 0x56, 0xce, 0x2b, 0x51, 0x6a, 0x2e, 0x34, 0xfc, 0xf4, 0xf7,
0x82, 0x7a, 0xc8, 0xc3, 0x93, 0xae, 0x67, 0x33, 0xd0, 0xfb, 0xb5, 0x73, 0x73,
0xd5, 0x29, 0x10, 0xeb, 0xfe, 0xed, 0x9c, 0xf2, 0xbf, 0x57, 0x53, 0x0f, 0xde,
0x18, 0xfc, 0x5c, 0xfe, 0xa7, 0xdd, 0xff, 0x03, 0x74, 0xe1, 0x52, 0x7d, 0xb9,
0x36, 0x16, 0x27, 0x10, 0xd9, 0xf5, 0x10, 0x23, 0x5c, 0x4f, 0x47, 0x4d, 0x30,
0x41, 0x39, 0x60, 0x49, 0xbd, 0x8c, 0xb1, 0x4a, 0xf0, 0x6d, 0x20, 0x72, 0x95,
0x85, 0x30, 0x01, 0xc3, 0xb2, 0x62, 0x49, 0x58, 0x6a, 0x61, 0xf9, 0x42, 0xc8,
0x41, 0xd9, 0x3c, 0x57, 0x24, 0x03, 0xd8, 0x37, 0x87, 0xe3, 0xa2, 0x52, 0x21,
0x05, 0xd7, 0xe1, 0x71, 0x32, 0x20, 0x99, 0xcb, 0x20, 0x62, 0x65, 0x6b, 0x52,
0xa7, 0xf0, 0x8f, 0x85, 0x6a, 0xf5, 0x08, 0x2e, 0x27, 0xeb, 0x50, 0x1d, 0xa4,
0xcb, 0x18, 0x7c, 0xb3, 0x90, 0xca, 0x43, 0x15, 0xca, 0x18, 0x65, 0x3f, 0x9a,
0x40, 0x05, 0x7c, 0x21, 0x6a, 0xc3, 0xb3, 0x82, 0x22, 0x3b, 0xe8, 0x71, 0x48,
0xd2, 0xc4, 0x11, 0xc5, 0xb8, 0x14, 0xc5, 0x73, 0x63, 0xc4, 0xbe, 0x7c, 0x44,
0x04, 0x6c, 0x8c, 0x51, 0x96, 0x10, 0x95, 0xba, 0x06, 0x28, 0x46, 0x85, 0x6c,
0x21, 0x9f, 0xc9, 0x0d, 0x8b, 0xb5, 0xac, 0xae, 0xc3, 0xa5, 0x47, 0x37, 0xce,
0x75, 0x69, 0x9c, 0xbe, 0x23, 0xc6, 0x24, 0xd7, 0x26, 0xf2, 0xe6, 0x03, 0xb9,
0x86, 0xd2, 0xe2, 0xd0, 0xc1, 0x36, 0xa8, 0x36, 0xa4, 0x72, 0x45, 0xae, 0x8d,
0xc1, 0xb5, 0xcc, 0x28, 0xdd, 0xe7, 0x3e, 0x3c, 0x7b, 0x57, 0x74, 0xb9, 0xe7,
0x9d, 0x4b, 0xb0, 0x35, 0xb4, 0x19, 0xbd, 0x92, 0xa7, 0x2b, 0xd1, 0x8e, 0x53,
0x86, 0x52, 0x55, 0x3a, 0x55, 0x43, 0xc7, 0x72, 0x65, 0xa8, 0x96, 0x6b, 0x47,
0x15, 0xaa, 0x61, 0x88, 0x73, 0x4f, 0x42, 0x0d, 0xe4, 0xa4, 0xcc, 0xe8, 0x99,
0xca, 0x2e, 0x29, 0x83, 0x18, 0x55, 0xc4, 0x88, 0x39, 0xa8, 0x5b, 0xdd, 0x45,
0x14, 0xa1, 0x56, 0xaa, 0x45, 0xbb, 0xf7, 0x20, 0x12, 0x64, 0xef, 0xe8, 0x3a,
0x08, 0x55, 0x7c, 0xf6, 0xda, 0x53, 0x6b, 0x72, 0xd3, 0x60, 0xcc, 0x3a, 0xaa,
0xaf, 0x34, 0xa6, 0xe1, 0x9d, 0x1f, 0xb6, 0x44, 0x0e, 0x87, 0x5e, 0x34, 0xde,
0xbc, 0x0d, 0xbb, 0x95, 0x9d, 0xf7, 0xe1, 0xf4, 0x3d, 0x48, 0x55, 0xd6, 0x1a,
0x1d, 0xfa, 0x0c, 0x6b, 0xa1, 0xba, 0xc8, 0xad, 0x45, 0xeb, 0x54, 0xe6, 0x58,
0xf3, 0x3c, 0xf2, 0xf0, 0x18, 0x25, 0x0e, 0x2a, 0xe5, 0xb2, 0x6d, 0xd8, 0x0b,
0x8f, 0x46, 0xe1, 0x3c, 0x24, 0x5b, 0x7a, 0x98, 0xa4, 0x0c, 0xe8, 0xb5, 0x5d,
0xbf, 0x04, 0x65, 0xaa, 0x1c, 0xba, 0x6d, 0x7d, 0xde, 0xf3, 0xc7, 0xc9, 0x2d,
0x61, 0x0f, 0xde, 0xda, 0x15, 0xb0, 0xc5, 0xfa, 0x4d, 0x58, 0x61, 0x3c, 0x74,
0x6b, 0x6f, 0x44, 0x7c, 0xff, 0x7c, 0x8f, 0xec, 0xd5, 0xbb, 0xdd, 0x3a, 0xf4,
0x0d, 0xa8, 0x99, 0xee, 0xe4, 0xd7, 0xb7, 0x22, 0x27, 0x4c, 0xb0, 0x27, 0x89,
0x4c, 0xe5, 0x79, 0xae, 0x5d, 0xdd, 0x2e, 0x9b, 0x9e, 0x5a, 0x97, 0x62, 0xe1,
0xe2, 0x7e, 0xc8, 0xac, 0x86, 0x38, 0x54, 0x83, 0x5d, 0x3f, 0xc8, 0xd3, 0xf5,
0x93, 0x31, 0x2e, 0xc2, 0x81, 0x6f, 0x21, 0xe1, 0x85, 0x21, 0xb7, 0xfe, 0x65,
0xfb, 0xba, 0xa1, 0x93, 0x9b, 0xc0, 0xe9, 0x42, 0x27, 0x8c, 0x91, 0xb5, 0xf3,
0x4a, 0xd9, 0x18, 0xa6, 0x9b, 0xce, 0x50, 0x9c, 0x0f, 0x1c, 0x42, 0xe3, 0xf2,
0x5a, 0xde, 0x59, 0xf6, 0x4d, 0x26, 0xe4, 0xcd, 0xcf, 0x20, 0x2a, 0xd0, 0x55,
0xca, 0x99, 0x0d, 0x57, 0x23, 0x65, 0xcf, 0x32, 0x7b, 0x22, 0xe8, 0xe7, 0xb7,
0x0a, 0xa5, 0x71, 0xed, 0xad, 0x1f, 0xa0, 0x93, 0x1d, 0xa5, 0x67, 0x39, 0x3c,
0xab, 0xc0, 0x27, 0x99, 0x4e, 0x55, 0x47, 0x35, 0xb3, 0xb5, 0xca, 0x28, 0xa7,
0x34, 0x06, 0xaf, 0x6e, 0xd3, 0xa5, 0x9a, 0x7b, 0xe8, 0x55, 0x3f, 0x06, 0xf6,
0xbd, 0xd0, 0x81, 0xdb, 0x99, 0x2e, 0xa8, 0x24, 0xf3, 0xe8, 0x1a, 0x14, 0xd1,
0xae, 0x4c, 0xd1, 0x54, 0xb3, 0x8d, 0xd8, 0xc1, 0xc1, 0x00, 0x13, 0xd6, 0xa3,
0x68, 0x35, 0xc8, 0xda, 0x37, 0xc8, 0xf7, 0xad, 0x9b, 0xa0, 0xf7, 0xfd, 0xb3,
0x22, 0x07, 0x72, 0x34, 0x95, 0xca, 0xef, 0x34, 0x5b, 0x32, 0x21, 0x81, 0x29,
0x52, 0xc7, 0x99, 0x0a, 0x94, 0x50, 0xc1, 0x4e, 0x4e, 0x19, 0xe0, 0xe4, 0x8a,
0x4b, 0x91, 0x2d, 0xd1, 0x10, 0x97, 0x8a, 0x16, 0x3a, 0xbc, 0xda, 0xc5, 0xe4,
0xa0, 0xaf, 0x5d, 0x26, 0x67, 0xdd, 0x2f, 0x47, 0x59, 0x54, 0x11, 0x19, 0xf0,
0x95, 0xaa, 0x46, 0x1f, 0xaf, 0xac, 0x81, 0x8e, 0x35, 0x3f, 0xae, 0x28, 0x21,
0x76, 0x4c, 0x49, 0x0a, 0xb3, 0x34, 0xb3, 0x4b, 0xb6, 0xc9, 0x16, 0x3e, 0x0f,
0x97, 0xe3, 0x1c, 0x7c, 0xcc, 0xd6, 0x32, 0x6d, 0x75, 0xb1, 0x36, 0x47, 0x71,
0x52, 0xf6, 0x67, 0xfb, 0x21, 0x1b, 0x97, 0x09, 0x19, 0x6c, 0x17, 0xf1, 0x56,
0x82, 0xa2, 0x49, 0x61, 0x2e, 0xc0, 0x39, 0x30, 0x89, 0xd3, 0x14, 0xad, 0x52,
0x2e, 0xd7, 0x06, 0x2d, 0x7c, 0x82, 0x30, 0xa0, 0xd8, 0x7a, 0x18, 0xa5, 0x78,
0x0c, 0x7a, 0x25, 0x6c, 0x86, 0xf3, 0xca, 0x7c, 0x8f, 0x62, 0xfe, 0xd4, 0x66,
0xd4, 0x8d, 0xf2, 0xe9, 0x36, 0x3c, 0xf6, 0x44, 0xa9, 0xa2, 0x50, 0xcc, 0x74,
0x4b, 0xde, 0xd4, 0xc6, 0xee, 0xdc, 0x8c, 0x92, 0x43, 0xda, 0xce, 0xc1, 0x2f,
0xfb, 0x20, 0xfd, 0xf5, 0x9d, 0x47, 0x21, 0xfe, 0x7b, 0x38, 0xdb, 0x01, 0x99,
0x8b, 0xbe, 0xf7, 0xb4, 0x57, 0x21, 0x87, 0x25, 0x5e, 0x99, 0x9e, 0x07, 0x89,
0x0e, 0x14, 0xef, 0x6b, 0x49, 0x7a, 0xb6, 0xe6, 0xd3, 0xc3, 0x2d, 0x50, 0xa4,
0xc8, 0xa1, 0xd2, 0xdd, 0x6b, 0xc9, 0x0e, 0x5d, 0xdf, 0xbb, 0x67, 0xd7, 0xb4,
0x7e, 0x0d, 0xf1, 0x42, 0x1d, 0x1c, 0x3d, 0x86, 0x7a, 0xad, 0x43, 0xaa, 0xbc,
0x14, 0x38, 0xb3, 0x03, 0x26, 0xc8, 0x42, 0xb2, 0x0c, 0xb5, 0xe2, 0x66, 0x22,
0x5d, 0xd3, 0xed, 0xd2, 0x41, 0x77, 0x3d, 0xdd, 0x8d, 0x9c, 0xe4, 0xa0, 0xbe,
0x5d, 0x4c, 0x51, 0xae, 0x2c, 0x77, 0xcd, 0xf5, 0xfc, 0x4d, 0x71, 0xef, 0x6b,
0x94, 0xa9, 0x1d, 0xd4, 0x26, 0xc4, 0x43, 0xcd, 0x1f, 0x27, 0x8d, 0xed, 0xfa,
0x93, 0x95, 0x90, 0x46, 0x1e, 0xf9, 0xa8, 0x9b, 0x8e, 0x75, 0xcd, 0x77, 0x4b,
0x82, 0xf5, 0xd9, 0xde, 0x99, 0xca, 0x5e, 0xb1, 0xff, 0x95, 0x1a, 0x9f, 0xbb,
0x5f, 0xc0, 0xf8, 0x86, 0x44, 0x8f, 0x83, 0x17, 0x20, 0xb7, 0x05, 0xf6, 0x35,
0x00, 0x5c, 0x90, 0xb2, 0xe2, 0xd0, 0xb7, 0x28, 0xf1, 0x3a, 0x24, 0x1f, 0x80,
0x9f, 0x93, 0xa0, 0xfd, 0x23, 0xe7, 0x8b, 0xdf, 0xed, 0x83, 0x8a, 0x1d, 0xf0,
0x78, 0x6d, 0xce, 0x61, 0xd8, 0x5d, 0x07, 0xbd, 0x9b, 0xe1, 0xee, 0x7d, 0xa8,
0xd2, 0x76, 0x70, 0xd5, 0x64, 0xd5, 0xd4, 0x0a, 0x22, 0x9e, 0x6d, 0xd2, 0xe5,
0x73, 0x23, 0x90, 0xc7, 0xc6, 0xb8, 0xc7, 0xf1, 0xa3, 0x28, 0x97, 0x89, 0x93,
0x57, 0x20, 0xc1, 0x90, 0xa6, 0x4a, 0xf2, 0xba, 0x77, 0x1f, 0xea, 0xe8, 0x41,
0xd7, 0x4e, 0xd7, 0x66, 0xa2, 0x45, 0xd5, 0x8f, 0xe3, 0xec, 0x39, 0xcb, 0x2e,
0xf4, 0x43, 0xec, 0x01, 0xb8, 0x1d, 0x0b, 0xad, 0x1e, 0x69, 0xa4, 0xd3, 0xd0,
0xe0, 0x52, 0x60, 0x6f, 0x10, 0x0b, 0x74, 0x49, 0x5c, 0x9d, 0xb6, 0xdd, 0xd6,
0x31, 0xe5, 0xea, 0xa7, 0xb2, 0x35, 0xd1, 0x17, 0x43, 0xef, 0x94, 0x8c, 0xa9,
0x97, 0x96, 0x37, 0xa3, 0x3a, 0xeb, 0xd1, 0x83, 0x50, 0xf5, 0xe1, 0xe1, 0x3c,
0x48, 0x20, 0x1a, 0x43, 0x92, 0xd5, 0x15, 0x8a, 0x49, 0x65, 0x3f, 0x35, 0xa8,
0x71, 0xac, 0xcb, 0x60, 0xe2, 0xe9, 0x7c, 0x53, 0x3d, 0x55, 0xe1, 0x76, 0xbf,
0x0a, 0xb2, 0x0d, 0xf1, 0xfc, 0x78, 0x64, 0x17, 0x59, 0xec, 0x79, 0x43, 0x26,
0x3a, 0x65, 0x02, 0x8a, 0x51, 0xb5, 0xb8, 0xd6, 0x30, 0xb3, 0xb2, 0x20, 0x1f,
0x45, 0x6d, 0x48, 0x85, 0x09, 0xa6, 0x0a, 0xe7, 0x0a, 0xa3, 0x90, 0xeb, 0x59,
0x27, 0xaf, 0x67, 0x0c, 0x33, 0x62, 0x4b, 0x20, 0x36, 0x4d, 0xb8, 0xa4, 0x2a,
0x67, 0x35, 0x73, 0x1d, 0xd0, 0x28, 0x55, 0x28, 0xd2, 0xb9, 0x5a, 0xcd, 0xd9,
0x02, 0x94, 0x17, 0x55, 0xb1, 0xe4, 0xcc, 0x93, 0xbd, 0xba, 0x04, 0xf7, 0x81,
0x35, 0xad, 0x6e, 0x09, 0x8a, 0x7d, 0x87, 0xe1, 0x8b, 0x17, 0x7a, 0xe6, 0x4d,
0xa0, 0xee, 0x0c, 0xa8, 0x10, 0x1e, 0x7f, 0x32, 0xf9, 0xce, 0x6f, 0x9d, 0xd0,
0x14, 0xb9, 0x4f, 0x9d, 0xec, 0x7a, 0x6f, 0x7d, 0xf3, 0x3f, 0x8f, 0xb8, 0xd7,
0x1e, 0x80, 0xa3, 0x7e, 0x3f, 0xba, 0x57, 0x2f, 0x3b, 0x5a, 0x00, 0xdd, 0x86,
0xc4, 0xd5, 0x99, 0x54, 0x3f, 0x13, 0x13, 0x0f, 0x5b, 0x02, 0xce, 0x7e, 0x56,
0xf2, 0x10, 0x72, 0xa7, 0xed, 0xa8, 0x44, 0x35, 0x28, 0x0b, 0x87, 0x64, 0xd1,
0x65, 0xb7, 0xe1, 0xd8, 0x0f, 0x50, 0xae, 0x1a, 0x50, 0x3a, 0xb8, 0x21, 0x08,
0x4a, 0x83, 0xa5, 0xed, 0x64, 0x33, 0x93, 0x80, 0x0a, 0x51, 0x95, 0x26, 0x57,
0x48, 0x0e, 0x4e, 0xc6, 0xe3, 0xe0, 0x54, 0x35, 0xaa, 0x47, 0xcd, 0x75, 0x44,
0xa5, 0x32, 0x9b, 0xae, 0x47, 0xfd, 0xd0, 0x8a, 0x06, 0x42, 0xaf, 0xd4, 0xc1,
0x5e, 0x6b, 0x1a, 0xca, 0x47, 0x93, 0x53, 0x72, 0xcc, 0x45, 0x52, 0xd6, 0xcb,
0x4d, 0xca, 0xe3, 0x69, 0xb0, 0xf3, 0xed, 0x64, 0xff, 0x56, 0x4d, 0xb3, 0x13,
0xaa, 0x51, 0x11, 0xbb, 0x67, 0x0b, 0xea, 0x75, 0x9b, 0x40, 0x6d, 0x7c, 0x1c,
0x5b, 0x37, 0xa7, 0x20, 0xea, 0xa7, 0x29, 0xd5, 0xab, 0x1a, 0x98, 0xe1, 0x29,
0xdf, 0x64, 0xc3, 0x49, 0x07, 0x9c, 0xdf, 0xd8, 0xa3, 0x9a, 0xd4, 0xa5, 0x6f,
0x03, 0x99, 0x8f, 0xe3, 0x14, 0xf5, 0xe2, 0x02, 0x27, 0xd9, 0xc7, 0xf5, 0xf0,
0x09, 0x86, 0x04, 0x3a, 0xc1, 0xad, 0xd4, 0xb3, 0x6e, 0x7a, 0x96, 0xad, 0x91,
0x6f, 0x26, 0x72, 0xd8, 0xcb, 0x1b, 0xfc, 0x0e, 0xa4, 0xc3, 0xd8, 0xb4, 0x1d,
0x66, 0x27, 0x5b, 0x69, 0xfc, 0xed, 0xc9, 0x14, 0x32, 0x0f, 0xa2, 0xd6, 0xe5,
0xf0, 0xf1, 0x4a, 0x66, 0x92, 0x98, 0x60, 0x6a, 0x48, 0x27, 0xea, 0xe6, 0x4b,
0xe8, 0x62, 0x2a, 0x5e, 0x99, 0x47, 0x0c, 0x43, 0xf4, 0x50, 0xd8, 0x63, 0xaf,
0x22, 0x74, 0x84, 0x28, 0x50, 0x94, 0x90, 0xb7, 0x17, 0x25, 0xac, 0xa8, 0x12,
0xf2, 0x68, 0x3d, 0x11, 0x4f, 0x95, 0xa1, 0xcd, 0xc7, 0xa1, 0xb7, 0x0e, 0x92,
0xf0, 0x28, 0xb4, 0x88, 0x03, 0x44, 0x1c, 0x99, 0x4a, 0xf7, 0xd1, 0x86, 0x34,
0xb1, 0x82, 0x1d, 0xa4, 0x1c, 0xcc, 0x97, 0xea, 0xdd, 0x69, 0x28, 0x85, 0x19,
0xc4, 0x03, 0xaa, 0x0c, 0xb1, 0x44, 0x3f, 0xa8, 0x88, 0xb1, 0x3a, 0xfd, 0x7a,
0xf8, 0x6c, 0x43, 0x0e, 0x9f, 0x1d, 0xdc, 0xc3, 0x7c, 0xd7, 0x0a, 0x8d, 0x31,
0x68, 0xe7, 0x11, 0x54, 0x1c, 0x1c, 0xde, 0x1c, 0x56, 0xa1, 0x69, 0xd1, 0x94,
0xb3, 0xf5, 0xcc, 0xa1, 0xb9, 0xa5, 0xa6, 0xd8, 0xd7, 0xaf, 0x26, 0x40, 0x25,
0x7b, 0xe5, 0x8d, 0xd4, 0x5c, 0xd8, 0xfb, 0xd4, 0xd5, 0x27, 0xda, 0x62, 0xd1,
0xee, 0x77, 0x2e, 0x66, 0x41, 0x7c, 0x2b, 0x7c, 0x1f, 0x07, 0x17, 0xd7, 0x0d,
0xba, 0x14, 0xab, 0xab, 0xa4, 0x06, 0x53, 0xd6, 0x3f, 0x1b, 0x55, 0x79, 0x1e,
0x5b, 0x76, 0xa2, 0x81, 0x45, 0x49, 0xc7, 0x61, 0xfb, 0x8f, 0x50, 0x76, 0x13,
0x4e, 0x4f, 0xc0, 0x3d, 0xbe, 0x42, 0xe8, 0x6c, 0x84, 0x7e, 0xdd, 0x9d, 0xf5,
0xa7, 0x9f, 0xc8, 0x3d, 0x0b, 0x57, 0x8e, 0x40, 0xde, 0x39, 0xb8, 0xf5, 0xfe,
0x5e, 0xeb, 0xd9, 0x78, 0x48, 0x5d, 0x3e, 0xb9, 0x1b, 0xe2, 0x2d, 0x89, 0x4e,
0x38, 0xf8, 0x69, 0xd7, 0x0c, 0xf9, 0x89, 0xbe, 0x81, 0x4b, 0x0f, 0x20, 0xfb,
0x67, 0xd8, 0x19, 0xdc, 0xe5, 0xf2, 0x60, 0x3f, 0x34, 0xb8, 0xfd, 0xf8, 0x5a,
0x8f, 0xa2, 0xc2, 0x32, 0xce, 0x75, 0x0e, 0xc2, 0x4f, 0x87, 0x50, 0xb6, 0x9f,
0xc3, 0x35, 0xe6, 0x18, 0x5c, 0x93, 0xb1, 0xb4, 0x0f, 0x7e, 0xf9, 0x4b, 0x5a,
0x2e, 0x24, 0x3e, 0xf5, 0x80, 0x7c, 0xf4, 0x4c, 0x2c, 0x95, 0x24, 0x54, 0xe1,
0xe6, 0x50, 0xa7, 0xff, 0xd1, 0x53, 0x30, 0x1c, 0xf5, 0x43, 0x54, 0xae, 0xfd,
0x01, 0x4e, 0xf6, 0x29, 0x8d, 0x48, 0x9b, 0xde, 0xa5, 0xda, 0x90, 0x81, 0x7a,
0xc3, 0x4e, 0x18, 0x7e, 0x52, 0xdc, 0xca, 0x85, 0x42, 0xa9, 0x96, 0x29, 0xdd,
0x05, 0x07, 0xe2, 0xe5, 0x86, 0xb2, 0x1c, 0x86, 0xdc, 0x26, 0x54, 0x37, 0x3e,
0xed, 0x4c, 0x83, 0x21, 0x7e, 0xf2, 0xd5, 0xfb, 0xf9, 0x28, 0x67, 0x76, 0xa9,
0xd8, 0x8f, 0x12, 0xe8, 0x62, 0xa6, 0x60, 0xce, 0x5d, 0x75, 0xcc, 0x2c, 0xaf,
0xce, 0x99, 0x75, 0xcc, 0x6f, 0x71, 0xa8, 0xcd, 0xa3, 0x84, 0xeb, 0x0d, 0xeb,
0x20, 0xba, 0x3d, 0x4a, 0xa8, 0x91, 0x75, 0xdb, 0x2f, 0x43, 0xc7, 0x65, 0x48,
0xb3, 0x1f, 0x74, 0xfd, 0xda, 0x7a, 0x62, 0xc6, 0x23, 0x3a, 0x2e, 0xf8, 0xc1,
0x55, 0x18, 0xe0, 0xfb, 0x89, 0xde, 0x39, 0x71, 0xda, 0x51, 0x4d, 0xaf, 0xbd,
0x48, 0x16, 0xe3, 0x1a, 0x7d, 0x96, 0xb2, 0xd1, 0x77, 0x5f, 0x1e, 0x38, 0x3c,
0x1b, 0x14, 0xce, 0xa0, 0x1c, 0x7d, 0xe1, 0xf2, 0x7a, 0xcd, 0x95, 0x12, 0xd4,
0x97, 0x0f, 0x8f, 0xf9, 0x24, 0x65, 0xb6, 0xe6, 0xb1, 0xf6, 0xec, 0xbc, 0x1d,
0x21, 0xad, 0xf1, 0xf0, 0x4b, 0x80, 0xf9, 0xf6, 0x4e, 0x18, 0xdc, 0x82, 0x8e,
0xed, 0x84, 0x0e, 0x8f, 0x8a, 0x0d, 0xf9, 0x53, 0xbe, 0xfe, 0x12, 0x55, 0x9f,
0x83, 0x23, 0x1f, 0xf5, 0xbe, 0x59, 0xf8, 0x6e, 0xbc, 0xfb, 0xcd, 0xbd, 0xa8,
0x8a, 0x4e, 0xaf, 0x80, 0xe2, 0x27, 0x77, 0x66, 0xa3, 0x2e, 0x45, 0x03, 0x76,
0x20, 0x53, 0xab, 0x4f, 0x83, 0xa1, 0x9e, 0xec, 0xa0, 0x27, 0x25, 0xcb, 0x88,
0x4b, 0x23, 0x4c, 0xe0, 0x46, 0xb2, 0xdd, 0xab, 0x55, 0x35, 0x2e, 0xc4, 0xb8,
0x7d, 0x37, 0x3f, 0x6e, 0xf9, 0xa9, 0xcd, 0xd0, 0x9c, 0x09, 0x15, 0xc4, 0x8f,
0xad, 0xd0, 0xc6, 0xc7, 0x46, 0x8c, 0x90, 0x6d, 0x74, 0x6f, 0x70, 0x2b, 0xb5,
0xed, 0x32, 0x2c, 0x71, 0x12, 0x15, 0xba, 0x78, 0x6d, 0x3f, 0x31, 0x80, 0x8b,
0xa8, 0xd5, 0x6b, 0xeb, 0x15, 0xf1, 0xae, 0x43, 0x44, 0x83, 0xd7, 0x18, 0x51,
0x4b, 0x27, 0x93, 0xbd, 0xaa, 0x36, 0xaa, 0x03, 0x27, 0x59, 0xb2, 0x98, 0x38,
0x26, 0x5e, 0x55, 0xe5, 0x36, 0x4e, 0x1e, 0x38, 0x0d, 0xed, 0x0b, 0xcf, 0x14,
0x41, 0x7d, 0x60, 0x97, 0xb2, 0xc4, 0x23, 0x57, 0x5d, 0xe1, 0x59, 0xa0, 0x48,
0xb0, 0xb6, 0x6f, 0xfa, 0xe1, 0xa6, 0xcc, 0xa6, 0xa7, 0xf7, 0x41, 0xde, 0x76,
0x38, 0xbf, 0x1b, 0x76, 0x0c, 0xc2, 0x60, 0x3c, 0x14, 0xb0, 0x5f, 0x29, 0x4f,
0x6e, 0x95, 0xa5, 0xa0, 0x62, 0x59, 0x9d, 0xcb, 0xc0, 0x8b, 0x47, 0x0f, 0xc0,
0xc3, 0x99, 0x5d, 0xa8, 0x7f, 0x3b, 0x1c, 0x32, 0x76, 0xbc, 0x70, 0x77, 0x00,
0xfa, 0xe7, 0x74, 0xfa, 0x55, 0x32, 0xe9, 0x8a, 0x6a, 0x97, 0x24, 0x29, 0x26,
0xa2, 0x9d, 0xae, 0x63, 0xbe, 0x2e, 0x83, 0x2e, 0xcd, 0xc0, 0xd3, 0x99, 0x62,
0x82, 0x2d, 0x77, 0xde, 0x7b, 0xc7, 0x66, 0xe6, 0xb2, 0x31, 0x2f, 0x5f, 0xdb,
0x8f, 0x5a, 0xfd, 0xaa, 0x0d, 0x39, 0x1e, 0xc3, 0x5c, 0xde, 0xc6, 0xe5, 0x4d,
0x53, 0xaf, 0x5d, 0x84, 0xc6, 0xc8, 0x2b, 0x32, 0x8f, 0x13, 0x29, 0xb6, 0x74,
0x72, 0x14, 0x37, 0x90, 0xdf, 0xfa, 0x94, 0x05, 0x97, 0xa0, 0x11, 0xb2, 0x9a,
0x8d, 0xe5, 0x57, 0x27, 0x13, 0x31, 0xa6, 0x14, 0x4d, 0x97, 0x57, 0x8b, 0x21,
0x4d, 0x36, 0xbc, 0x0e, 0xaf, 0x78, 0x32, 0x09, 0xb2, 0x50, 0x93, 0x75, 0xe9,
0xb1, 0x4c, 0x34, 0xfe, 0xe2, 0xa8, 0x71, 0x68, 0x85, 0x83, 0x4d, 0xc5, 0x13,
0x53, 0x2f, 0x5d, 0x85, 0xbc, 0xe9, 0xce, 0x33, 0x70, 0x63, 0x69, 0x05, 0xb1,
0xf3, 0x3a, 0x54, 0x2b, 0x47, 0x42, 0xbf, 0x25, 0x53, 0xbc, 0xe2, 0x16, 0xb7,
0x78, 0x64, 0x99, 0x27, 0xe1, 0xe0, 0xfb, 0xa7, 0x67, 0x4f, 0xf0, 0xb5, 0xbe,
0x57, 0x3e, 0x2d, 0x4d, 0x86, 0xe6, 0x3c, 0xd8, 0x93, 0x8f, 0xfa, 0x99, 0x61,
0x66, 0x92, 0xe9, 0xf6, 0x4a, 0x23, 0xda, 0x66, 0x5d, 0x5b, 0x55, 0x96, 0x04,
0x4e, 0xf8, 0xdc, 0xf9, 0xf6, 0x95, 0x0b, 0x50, 0xf4, 0xde, 0xf6, 0xef, 0xa0,
0x9c, 0x8c, 0x61, 0xd2, 0xdd, 0x6a, 0x0d, 0x96, 0x22, 0x34, 0x62, 0x3d, 0xbd,
0xae, 0xa8, 0x03, 0x32, 0xe6, 0xe5, 0x11, 0x97, 0xdf, 0xce, 0x7a, 0x3f, 0x31,
0x0b, 0x25, 0x79, 0x38, 0x3f, 0xc9, 0x65, 0x65, 0xa9, 0x8c, 0x49, 0x87, 0xb6,
0xe9, 0xbb, 0xed, 0x77, 0x0b, 0x61, 0xc4, 0x3a, 0xb1, 0x36, 0xc6, 0x5e, 0xc3,
0xe4, 0x3d, 0x1d, 0x3a, 0x0c, 0xfb, 0x62, 0x51, 0x1a, 0x5f, 0xed, 0x5e, 0xac,
0x69, 0xeb, 0x86, 0x03, 0x07, 0xd0, 0x48, 0x1d, 0xe4, 0xcf, 0xbf, 0x74, 0x0f,
0xf2, 0x82, 0x0b, 0x2c, 0x71, 0xde, 0xdd, 0x4b, 0x86, 0x0c, 0x87, 0x5e, 0xbc,
0xb0, 0x1f, 0xfa, 0xf4, 0x71, 0x5e, 0xfd, 0xa8, 0x4e, 0xaa, 0xd2, 0xf6, 0xcc,
0x6b, 0x31, 0x27, 0x5e, 0x86, 0x97, 0x33, 0xf9, 0x58, 0xb2, 0x55, 0x55, 0x8c,
0x0b, 0xd8, 0x7c, 0x12, 0x3e, 0x6e, 0x27, 0xcb, 0xc4, 0x01, 0x54, 0x44, 0x8f,
0x42, 0x1e, 0x99, 0xe6, 0x62, 0x28, 0x16, 0x87, 0x4d, 0xc3, 0x2e, 0xbd, 0x9c,
0x53, 0xee, 0x05, 0xaa, 0x89, 0x42, 0x26, 0x87, 0x29, 0xc6, 0xd5, 0x4c, 0xb9,
0xba, 0x8d, 0x69, 0x35, 0x0c, 0xc8, 0x76, 0xe9, 0x54, 0x25, 0xca, 0x83, 0x36,
0x5a, 0xe6, 0x04, 0x4d, 0x25, 0xeb, 0x94, 0xca, 0x28, 0xd4, 0xc0, 0xf6, 0xab,
0x65, 0x60, 0xca, 0x46, 0xf6, 0xb7, 0x95, 0xd9, 0x45, 0x90, 0x2a, 0x4c, 0x10,
0xc5, 0x53, 0x32, 0xa8, 0x75, 0x93, 0xfa, 0x3e, 0xe1, 0x50, 0x3c, 0xca, 0x48,
0x41, 0x47, 0xd3, 0xd0, 0x16, 0x56, 0xf6, 0x84, 0xba, 0xb4, 0xa0, 0x38, 0xae,
0x37, 0x60, 0x52, 0x53, 0xad, 0xa8, 0x5e, 0x75, 0x61, 0x02, 0x2a, 0xdf, 0x3e,
0x81, 0x13, 0x97, 0x64, 0xb8, 0xde, 0xd3, 0x14, 0x87, 0x65, 0xaf, 0xf9, 0xba,
0x1c, 0xea, 0x77, 0xc1, 0xa9, 0x45, 0x93, 0xcf, 0xb7, 0x6d, 0x87, 0x46, 0xe5,
0xad, 0x7d, 0xa8, 0x83, 0xee, 0x08, 0xee, 0x25, 0xfb, 0xc4, 0xef, 0x5e, 0xed,
0x7a, 0x71, 0x5b, 0x60, 0xf2, 0x0e, 0xd8, 0xf1, 0x8e, 0xb3, 0x09, 0xae, 0x35,
0x42, 0xc1, 0x15, 0xb8, 0x7d, 0x19, 0xee, 0xae, 0x1b, 0xc7, 0xf5, 0xaa, 0xee,
0xd9, 0x3d, 0xea, 0x18, 0x7d, 0x49, 0x12, 0x1c, 0x8f, 0x41, 0x31, 0xa7, 0x21,
0x6f, 0x33, 0xdc, 0xab, 0x41, 0x65, 0xcf, 0x56, 0x86, 0xb6, 0xa2, 0xa6, 0x57,
0xce, 0xd6, 0xc0, 0xe0, 0xe2, 0xb2, 0x26, 0x38, 0x24, 0x77, 0xf5, 0x9f, 0x5c,
0xf9, 0xdb, 0x45, 0xa2, 0xf0, 0x38, 0x1c, 0x5a, 0x93, 0xbc, 0xe2, 0x91, 0x5f,
0x9f, 0xdb, 0x4d, 0x39, 0x37, 0x89, 0xf0, 0x70, 0x5e, 0x76, 0xc0, 0x8e, 0x2f,
0x20, 0xd5, 0x75, 0xf2, 0xf5, 0x09, 0x3c, 0xa6, 0xcb, 0xf8, 0xc7, 0x88, 0xe1,
0xd8, 0x15, 0xd8, 0x33, 0xeb, 0x12, 0xfc, 0xe4, 0xd9, 0xc4, 0x76, 0x41, 0x6e,
0x74, 0xee, 0xfc, 0xe2, 0xb5, 0x35, 0x5c, 0xb9, 0xef, 0xae, 0x24, 0xd4, 0xfb,
0xc6, 0x97, 0xc2, 0xbd, 0xbf, 0x8c, 0xbd, 0x36, 0xf0, 0xe2, 0x8a, 0x81, 0xb7,
0x8a, 0xdd, 0xb7, 0xdc, 0x86, 0x66, 0x7d, 0xcd, 0x9a, 0x5f, 0x0f, 0xcb, 0x2d,
0xee, 0xd8, 0xbc, 0x18, 0xf7, 0x22, 0x55, 0x8c, 0x5b, 0x3d, 0x1b, 0x27, 0x5d,
0xba, 0x04, 0x03, 0xaf, 0x74, 0x77, 0xc2, 0xf7, 0x07, 0x60, 0x4f, 0xe4, 0x85,
0xe7, 0x93, 0x32, 0xd0, 0xb9, 0x07, 0x50, 0x64, 0x70, 0xbc, 0xdb, 0x33, 0xf7,
0xdc, 0x4d, 0x68, 0x9c, 0xea, 0xfc, 0xb0, 0xff, 0x8d, 0xc7, 0xdb, 0xd1, 0x37,
0x52, 0x91, 0xb2, 0xc1, 0xbd, 0x72, 0xed, 0x58, 0x58, 0x71, 0xf4, 0x95, 0x7a,
0x18, 0x7f, 0xf3, 0xf4, 0x17, 0xd0, 0x3f, 0x2d, 0xfd, 0x93, 0x26, 0x6b, 0xb2,
0x54, 0xaa, 0x4e, 0xf5, 0xba, 0x70, 0x06, 0x46, 0x3f, 0xa9, 0x9f, 0xb5, 0xeb,
0x12, 0x40, 0x77, 0x60, 0x89, 0xbd, 0xec, 0x85, 0x74, 0xf5, 0x17, 0x7d, 0x70,
0xda, 0xa5, 0x84, 0xae, 0xa0, 0xe2, 0x71, 0xa9, 0x47, 0xb1, 0xa2, 0x96, 0x39,
0x4f, 0x14, 0xb0, 0xbd, 0x7c, 0x2e, 0x91, 0x69, 0x3c, 0x41, 0xb4, 0xe8, 0xd1,
0x08, 0x5d, 0x25, 0x26, 0x44, 0x3a, 0xe8, 0x1e, 0x7d, 0x32, 0xd4, 0x41, 0xb6,
0xcb, 0xdd, 0x88, 0x7b, 0xa7, 0x60, 0xaf, 0x5f, 0x2e, 0xb1, 0x9b, 0x1c, 0xbd,
0x0f, 0x03, 0x52, 0xae, 0xd7, 0x85, 0xfd, 0x28, 0x3b, 0xec, 0xa2, 0xa6, 0x96,
0x99, 0x54, 0x9c, 0xd7, 0xce, 0x4d, 0x26, 0xca, 0x98, 0x0e, 0x36, 0x0b, 0xf5,
0xf2, 0xad, 0x54, 0xa5, 0xa2, 0x40, 0x48, 0xd6, 0x97, 0x69, 0x06, 0x20, 0x55,
0x1d, 0x83, 0x86, 0xe4, 0xf6, 0xbf, 0x59, 0x51, 0xc6, 0x16, 0x1b, 0x32, 0xb9,
0x3d, 0x9d, 0x90, 0x8f, 0x6b, 0xac, 0xb9, 0x64, 0x37, 0x51, 0xbc, 0x68, 0xf5,
0xc3, 0x85, 0x09, 0x4f, 0xf7, 0x5b, 0x26, 0xf0, 0x61, 0x07, 0x64, 0x7c, 0x98,
0xfe, 0xc2, 0x76, 0xf2, 0xe4, 0x11, 0x48, 0x9a, 0x57, 0xee, 0xd6, 0x1e, 0x7a,
0x3f, 0x11, 0xc5, 0x6b, 0xcb, 0xbc, 0xfb, 0x66, 0x34, 0x6a, 0xce, 0xbf, 0x52,
0x0d, 0x23, 0xca, 0x5f, 0x6f, 0x42, 0x03, 0x5d, 0xe8, 0xd9, 0xec, 0x5f, 0x4a,
0x56, 0x4e, 0x1d, 0x87, 0x2a, 0xb2, 0xfd, 0x0f, 0xb6, 0x56, 0xaf, 0x42, 0xed,
0x55, 0xb8, 0x7e, 0x03, 0xc6, 0x9e, 0x8b, 0x77, 0x77, 0xd8, 0x6f, 0xc4, 0x42,
0xc2, 0xd3, 0x27, 0x13, 0x61, 0x68, 0x7d, 0x19, 0xd9, 0xae, 0xcb, 0x21, 0xf3,
0xf8, 0x46, 0xb1, 0xef, 0xed, 0xab, 0xef, 0x77, 0xa7, 0xc2, 0xf1, 0xb3, 0x68,
0x28, 0xba, 0x48, 0x5d, 0x14, 0x0b, 0xc7, 0x6e, 0xc1, 0xd2, 0x36, 0xe6, 0x3e,
0xd7, 0x2a, 0x9c, 0xf7, 0x69, 0xb5, 0x37, 0x29, 0x46, 0xb5, 0xb5, 0xba, 0x5a,
0xbe, 0x95, 0xec, 0x64, 0xd3, 0x15, 0x29, 0xfa, 0x5a, 0xcf, 0x16, 0x7d, 0x3e,
0xd9, 0x20, 0xd5, 0x52, 0x8f, 0x76, 0xa3, 0x81, 0x42, 0xb8, 0x58, 0x06, 0xed,
0xca, 0xc9, 0xe7, 0xfa, 0x0c, 0x09, 0x72, 0xbf, 0xd0, 0x3f, 0x23, 0x6e, 0xfa,
0xb0, 0x7b, 0x9f, 0x3e, 0x85, 0x7d, 0x5c, 0x00, 0x67, 0x3e, 0x28, 0x7e, 0xb9,
0x30, 0xb2, 0x73, 0xc3, 0x83, 0xc3, 0x72, 0x11, 0x3b, 0xa1, 0x8d, 0x19, 0x21,
0x52, 0x03, 0xce, 0xb3, 0x85, 0x4b, 0xd2, 0xf4, 0x45, 0xf6, 0x9a, 0x39, 0x0e,
0x69, 0x93, 0x4f, 0xa6, 0x39, 0x9d, 0x78, 0xd8, 0x0d, 0x59, 0x9a, 0x53, 0x6f,
0x65, 0xa0, 0xfa, 0xcf, 0x46, 0x5e, 0xbf, 0x7f, 0x04, 0xe2, 0xa8, 0x04, 0x32,
0x7f, 0x46, 0x03, 0xd3, 0xef, 0x3f, 0x40, 0x8d, 0xb2, 0x93, 0xea, 0xfe, 0x80,
0x54, 0xfe, 0xea, 0xaf, 0xd0, 0x9e, 0x85, 0x4e, 0xd6, 0xc0, 0x80, 0x7e, 0xf8,
0x83, 0x76, 0xec, 0x98, 0xf2, 0xeb, 0x17, 0x28, 0xd3, 0x9c, 0x2a, 0x7d, 0x9c,
0x6f, 0xa9, 0x67, 0x83, 0x0a, 0x55, 0xf5, 0x54, 0xbe, 0xb2, 0x14, 0x75, 0x7b,
0x15, 0x88, 0xe3, 0x90, 0xe9, 0xe6, 0xb0, 0x9f, 0x7b, 0x0c, 0x0d, 0xa5, 0x68,
0x7f, 0x1a, 0x24, 0x9b, 0x1a, 0x17, 0x9f, 0xf4, 0xbc, 0xd2, 0x0f, 0x55, 0xea,
0xfa, 0x6b, 0xb0, 0xe3, 0xef, 0xa5, 0x5b, 0xe1, 0x51, 0xe0, 0x9d, 0x18, 0xc8,
0x76, 0xcb, 0xbb, 0x0e, 0x5f, 0x9d, 0x41, 0x30, 0x74, 0x02, 0x7d, 0x17, 0x7d,
0x55, 0xfa, 0x0a, 0x2e, 0x7f, 0x38, 0xa1, 0x2b, 0xf1, 0x99, 0xb0, 0x7e, 0xb1,
0x1d, 0x1e, 0xce, 0xe7, 0xfc, 0x04, 0x8e, 0xa7, 0x28, 0x1f, 0xfc, 0x12, 0xd5,
0xf0, 0x10, 0xce, 0x3d, 0x84, 0x94, 0x46, 0xd8, 0x9e, 0x04, 0x8f, 0xe7, 0x59,
0x10, 0xc2, 0x26, 0x8a, 0x0a, 0x02, 0x35, 0xa6, 0xfd, 0x04, 0xb3, 0x5b, 0x90,
0x2d, 0x17, 0x5e, 0x5c, 0x86, 0x15, 0x1e, 0xab, 0x6c, 0x82, 0x34, 0xd3, 0x4b,
0x88, 0x9a, 0x1f, 0x68, 0x89, 0xa3, 0xb6, 0x91, 0x7a, 0x4f, 0x2d, 0xa5, 0x91,
0x34, 0x3e, 0x68, 0xbd, 0xc9, 0x3b, 0x80, 0x7d, 0xf2, 0x0a, 0x51, 0x4a, 0x2c,
0x13, 0xa9, 0x57, 0xdd, 0x17, 0xe8, 0x3e, 0x67, 0xc6, 0x56, 0xdc, 0x58, 0xc1,
0xaa, 0x6c, 0x74, 0x80, 0x41, 0x0c, 0xf5, 0x5d, 0x45, 0x04, 0xa2, 0xa9, 0x66,
0x1f, 0x51, 0x10, 0x35, 0x7a, 0x3d, 0xed, 0xa3, 0x42, 0x3e, 0x00, 0xbc, 0x10,
0x42, 0x72, 0xc0, 0x20, 0x9b, 0x42, 0x34, 0x15, 0xe6, 0xc3, 0xfe, 0x7c, 0x40,
0x8c, 0x0d, 0x17, 0xea, 0xf6, 0xe8, 0x48, 0x1e, 0x63, 0x8c, 0x4c, 0x98, 0x16,
0x10, 0x12, 0x09, 0x44, 0x70, 0xa2, 0xc8, 0xd8, 0xb8, 0xfe, 0x2b, 0x70, 0xed,
0x0a, 0x30, 0x14, 0x27, 0xf1, 0x82, 0xa4, 0x08, 0xa1, 0x18, 0x8e, 0x0f, 0xd0,
0x09, 0xc8, 0xa6, 0x09, 0xd0, 0xea, 0xb4, 0x06, 0xc2, 0x22, 0x10, 0xf3, 0x02,
0xa5, 0xa2, 0x11, 0x80, 0x5f, 0x1e, 0x00, 0x32, 0x2b, 0x0d, 0x06, 0xad, 0xc0,
0x51, 0xc9, 0x19, 0x68, 0x6f, 0x06, 0xb2, 0x63, 0x0a, 0x19, 0x71, 0x57, 0x3c,
0x7c, 0x1f, 0x0f, 0x14, 0xf0, 0x9c, 0x64, 0xc0, 0x98, 0x13, 0x79, 0xb8, 0xa1,
0xed, 0xd1, 0x32, 0x77, 0xc9, 0x14, 0x4a, 0xcf, 0xb5, 0xe8, 0x4f, 0xe9, 0x69,
0xbd, 0x8f, 0x96, 0x97, 0xfb, 0x50, 0xde, 0x98, 0x7d, 0x10, 0x92, 0xdf, 0x7b,
0x90, 0x88, 0x2a, 0x9e, 0xe9, 0xf1, 0xff, 0xed, 0x53, 0x05, 0x67, 0x14, 0x3e,
0xa3, 0xbc, 0x91, 0xd9, 0x4d, 0x74, 0x75, 0x79, 0x33, 0x16, 0x9e, 0x08, 0x79,
0xcd, 0xc6, 0x2b, 0x17, 0x4c, 0xe5, 0x34, 0x26, 0x83, 0x26, 0x16, 0x16, 0x05,
0x4c, 0x11, 0x82, 0x98, 0x27, 0xa9, 0xc0, 0xd9, 0xa1, 0x44, 0xb8, 0x11, 0xbd,
0xc0, 0x4d, 0x75, 0x07, 0xe3, 0xb4, 0x22, 0x10, 0xa2, 0xa7, 0xce, 0x5e, 0x39,
0xd5, 0x8a, 0xe6, 0xb0, 0x2f, 0x7d, 0x16, 0x7c, 0x90, 0x28, 0x23, 0xfc, 0x9e,
0xa6, 0x42, 0x79, 0xcb, 0x1a, 0xe1, 0x99, 0xf9, 0x51, 0x6b, 0x7d, 0x43, 0xa7,
0x07, 0x89, 0x1e, 0x31, 0x30, 0x33, 0x72, 0x1a, 0x44, 0xcc, 0x77, 0x02, 0xce,
0x7e, 0xff, 0xfb, 0xf7, 0x31, 0xcd, 0xaf, 0x53, 0xbe, 0xfb, 0x39, 0x11, 0xae,
0xd0, 0x06, 0xb8, 0xb0, 0x01, 0x92, 0x48, 0x98, 0x14, 0x1c, 0x26, 0x45, 0x9e,
0xc2, 0x4c, 0xa0, 0x5e, 0x00, 0x8e, 0x03, 0x0a, 0xf3, 0x1c, 0xb1, 0x9f, 0x74,
0x92, 0x5a, 0x2b, 0x0a, 0x98, 0xc2, 0x99, 0x43, 0x8b, 0xe0, 0xcf, 0xcf, 0x46,
0x68, 0xb5, 0x46, 0xbb, 0x3b, 0xcf, 0xdb, 0x29, 0x13, 0x81, 0xde, 0x7f, 0xdb,
0xb8, 0xd4, 0xc4, 0xc8, 0xb6, 0x05, 0x62, 0x61, 0xea, 0xe2, 0x9c, 0x67, 0x6f,
0x3c, 0xeb, 0xfb, 0x99, 0xe1, 0x9d, 0x27, 0x0c, 0xe6, 0x85, 0x4f, 0x91, 0x9a,
0x40, 0x13, 0xc1, 0x63, 0x30, 0xaa, 0x45, 0xd6, 0xa2, 0x07, 0x8c, 0x90, 0x9c,
0x05, 0x7d, 0x7a, 0xe4, 0xe6, 0x48, 0x01, 0x71, 0x3c, 0x5f, 0xe0, 0x80, 0x47,
0x5b, 0x81, 0x25, 0x0c, 0x84, 0x96, 0x10, 0x38, 0xd2, 0x2c, 0x85, 0x3f, 0xf6,
0xc9, 0x84, 0x21, 0x6f, 0xb3, 0xcf, 0x02, 0x97, 0xfd, 0x90, 0x01, 0x28, 0x1d,
0x14, 0x6e, 0xfa, 0x29, 0xd6, 0x67, 0x96, 0x3f, 0xe5, 0x8d, 0x96, 0x8b, 0xab,
0x17, 0x60, 0xa3, 0x9a, 0x7d, 0xc6, 0xc5, 0x4c, 0x4d, 0x59, 0x88, 0xac, 0xa0,
0x0f, 0xff, 0x06, 0x4a, 0xc1, 0x20, 0x72, 0x98, 0xb5, 0x32, 0x1c, 0xd2, 0x32,
0x02, 0x85, 0xa9, 0x1c, 0x9f, 0x7d, 0x3e, 0x3c, 0x15, 0x6d, 0xd3, 0x33, 0x58,
0x5e, 0x77, 0x4c, 0xd3, 0x02, 0xcf, 0xf1, 0xa4, 0x0d, 0xcb, 0xb7, 0x33, 0x62,
0xde, 0x82, 0x44, 0x4e, 0xe4, 0x48, 0x38, 0x4d, 0x8c, 0x12, 0x78, 0x4f, 0x78,
0x41, 0x38, 0x65, 0xe7, 0xa8, 0xfb, 0x8a, 0x1c, 0xde, 0xc2, 0xf2, 0xac, 0x49,
0x29, 0xd9, 0x2c, 0x3e, 0xa4, 0x6b, 0x15, 0xfa, 0x06, 0x45, 0x69, 0x71, 0x02,
0xfc, 0x95, 0xd6, 0x50, 0x26, 0x15, 0xc0, 0x3b, 0x3c, 0x4d, 0x46, 0x09, 0x94,
0x95, 0x24, 0xe6, 0xb2, 0x66, 0x6c, 0xfe, 0xe3, 0x12, 0xce, 0xc8, 0xf0, 0xc0,
0x70, 0x16, 0x81, 0x0a, 0x30, 0x83, 0x4a, 0x3b, 0x03, 0x19, 0x81, 0x34, 0x49,
0xa4, 0x9e, 0xc2, 0x33, 0x57, 0x22, 0x26, 0x6e, 0x33, 0x7a, 0x14, 0x83, 0xa2,
0xa2, 0x10, 0x2f, 0x82, 0x60, 0x54, 0x90, 0x48, 0x00, 0x01, 0x51, 0x72, 0x5a,
0x19, 0x46, 0x9e, 0x4b, 0x01, 0xc8, 0x89, 0xe2, 0x39, 0x3b, 0xa3, 0x97, 0x04,
0x06, 0xcf, 0x59, 0xc0, 0x21, 0x2c, 0x1a, 0x78, 0xc6, 0x00, 0xa4, 0x9e, 0x90,
0x34, 0x81, 0x2c, 0x88, 0xa2, 0x9c, 0xe4, 0xc5, 0x53, 0x7d, 0x94, 0xde, 0x85,
0xc4, 0xcf, 0x68, 0xc1, 0xa6, 0x1d, 0xa0, 0x0e, 0x99, 0x1e, 0xed, 0xaf, 0x08,
0x60, 0xa7, 0x2e, 0x9b, 0x1b, 0xfc, 0x82, 0x71, 0x9a, 0x2f, 0x2d, 0x04, 0x3c,
0x19, 0x35, 0xff, 0x25, 0xf0, 0x5a, 0x6a, 0x28, 0x85, 0x6f, 0x21, 0xd0, 0x3f,
0x90, 0x45, 0xac, 0x5f, 0x58, 0x21, 0x3c, 0xbf, 0xd4, 0x75, 0xce, 0x36, 0x22,
0x93, 0x90, 0x3c, 0xa3, 0xfb, 0xe1, 0xcf, 0xee, 0x1e, 0x48, 0x72, 0xe1, 0xa5,
0x88, 0x3f, 0x68, 0xc2, 0xd1, 0x46, 0xb5, 0x3f, 0x44, 0xeb, 0x48, 0x0f, 0x51,
0xe2, 0xf0, 0x2a, 0x66, 0x0e, 0x42, 0x56, 0x89, 0xd5, 0x18, 0xbc, 0x08, 0xcd,
0x82, 0x85, 0xa4, 0xfb, 0xe2, 0x69, 0xbc, 0x87, 0x10, 0x4a, 0x45, 0x10, 0xb0,
0xf2, 0x35, 0x96, 0x72, 0xb1, 0x76, 0x7c, 0x72, 0xed, 0x93, 0x10, 0xd2, 0xce,
0x28, 0xf4, 0x04, 0x60, 0x2c, 0x22, 0x06, 0x44, 0x81, 0xa2, 0x24, 0xe6, 0x77,
0x8c, 0x18, 0x2d, 0x9c, 0x8a, 0x13, 0x7d, 0x78, 0x41, 0xe7, 0x83, 0xa8, 0xbf,
0x1f, 0x04, 0xab, 0x03, 0x14, 0xfe, 0x3e, 0xab, 0x3f, 0xcc, 0x62, 0xf6, 0x30,
0x3e, 0x1e, 0x84, 0x8a, 0x7b, 0x65, 0xa5, 0x03, 0x66, 0x53, 0x1b, 0x16, 0xf1,
0xc1, 0x7c, 0x19, 0x78, 0x99, 0xb3, 0x89, 0xbd, 0x44, 0x32, 0xa8, 0xdc, 0x96,
0xbd, 0xbb, 0xc2, 0x5b, 0x11, 0x10, 0xb0, 0x0b, 0x08, 0x27, 0x2c, 0x7b, 0x9e,
0x9f, 0xf5, 0x84, 0xb4, 0x70, 0x4d, 0x1e, 0x44, 0xbc, 0x6a, 0xb4, 0x5b, 0x1a,
0x89, 0x44, 0x6c, 0x0d, 0x2e, 0x96, 0x6f, 0xf2, 0x5c, 0x39, 0x71, 0x14, 0x11,
0x36, 0x66, 0xde, 0x3b, 0x11, 0x2a, 0x57, 0xec, 0x32, 0xcb, 0x7f, 0x95, 0xe6,
0xfc, 0xc7, 0x57, 0x3e, 0x46, 0xb7, 0x99, 0x41, 0xc6, 0xf0, 0xf9, 0x7b, 0x04,
0x21, 0xf2, 0xe4, 0x0c, 0x66, 0x6a, 0x24, 0x88, 0x12, 0xc2, 0x80, 0xf3, 0xe7,
0x6e, 0x9d, 0x6b, 0x02, 0x95, 0x9e, 0x07, 0x3f, 0x5e, 0x8b, 0x92, 0x33, 0xe0,
0xe6, 0x1e, 0x60, 0x0c, 0x06, 0x03, 0xc5, 0x52, 0x22, 0x2f, 0x11, 0x02, 0xb2,
0xc4, 0x52, 0x97, 0x49, 0xa5, 0x6a, 0x88, 0xfc, 0x15, 0x23, 0x62, 0xda, 0x3a,
0x1d, 0xa7, 0x9a, 0x05, 0x02, 0x85, 0xd4, 0x94, 0xc9, 0xce, 0xf1, 0x2c, 0xeb,
0xc3, 0x2d, 0x54, 0x59, 0x74, 0x84, 0xe8, 0x12, 0xc1, 0xf0, 0xe7, 0x50, 0x23,
0xa2, 0x04, 0x0e, 0x07, 0x09, 0xa2, 0x88, 0x72, 0xab, 0x61, 0x57, 0x35, 0x58,
0xd5, 0x7a, 0x35, 0x98, 0x83, 0xb0, 0x52, 0x8b, 0x16, 0x07, 0x6f, 0xfc, 0xa3,
0xd7, 0x02, 0x98, 0xc1, 0x86, 0xad, 0xfd, 0xe0, 0x2f, 0x1f, 0x7c, 0xb8, 0xe1,
0x8d, 0xe5, 0x0a, 0xe0, 0x0c, 0xef, 0xfa, 0xa9, 0xa2, 0xfa, 0xb9, 0x5f, 0xd9,
0xa5, 0x33, 0x03, 0x8d, 0xd3, 0xc3, 0xeb, 0x61, 0x27, 0x5a, 0xa9, 0xf5, 0x11,
0xe7, 0x7a, 0x44, 0x04, 0x4b, 0xc4, 0xb4, 0x56, 0xe6, 0x36, 0xbd, 0x5d, 0x46,
0x84, 0x6f, 0xa8, 0x13, 0xb6, 0x20, 0x77, 0x07, 0xfa, 0xd3, 0xdf, 0x5f, 0x4f,
0x03, 0x66, 0x3b, 0x2c, 0xfb, 0x87, 0x60, 0xf7, 0xaa, 0x81, 0xa7, 0xdd, 0xfe,
0x68, 0x88, 0x83, 0x57, 0x82, 0xcd, 0x1b, 0xb1, 0x87, 0x44, 0x9c, 0x80, 0x5e,
0x44, 0x4c, 0x0f, 0x77, 0x9d, 0xfa, 0x92, 0xc7, 0xbb, 0x9f, 0xfc, 0x29, 0xfc,
0xf9, 0x37, 0x49, 0x58, 0x38, 0x35, 0x05, 0xe8, 0x05, 0x9e, 0xd8, 0xe6, 0x6b,
0xb9, 0x18, 0x76, 0x3e, 0xcc, 0x3e, 0x5f, 0x0c, 0x4b, 0x46, 0xa7, 0x90, 0x99,
0x56, 0x46, 0xbe, 0xa4, 0x0d, 0x0d, 0x09, 0x4b, 0xc7, 0x07, 0xb1, 0x52, 0x17,
0x71, 0x04, 0xda, 0xe1, 0x8d, 0x25, 0xcf, 0x47, 0x8a, 0x9d, 0xe8, 0x34, 0xf2,
0x78, 0xf3, 0xcf, 0x0d, 0xf0, 0x69, 0x1c, 0xbc, 0x31, 0x43, 0x6d, 0x9c, 0xed,
0xe1, 0xdf, 0x01, 0xa4, 0x3d, 0x2c, 0x02, 0xb9, 0xc4, 0xbc, 0x7f, 0xf2, 0x4f,
0x22, 0x68, 0x58, 0xe5, 0x5a, 0x57, 0xd3, 0xbb, 0xab, 0x2d, 0x56, 0x6d, 0xee,
0x86, 0x93, 0x1b, 0x82, 0x98, 0xb2, 0x6a, 0x38, 0x54, 0x0d, 0x21, 0xb2, 0xa3,
0xbd, 0x10, 0xd8, 0x5f, 0x06, 0x97, 0xca, 0x80, 0x96, 0x99, 0x8e, 0x95, 0xcb,
0x32, 0x10, 0xf1, 0xf2, 0xaa, 0x6b, 0xf5, 0xa4, 0xc4, 0xcb, 0x1b, 0x14, 0x60,
0x86, 0xd3, 0x72, 0xa2, 0xc1, 0x08, 0x22, 0x9d, 0x7d, 0x11, 0xee, 0xd4, 0x83,
0x1e, 0x09, 0x12, 0x7c, 0xa2, 0x36, 0x8a, 0x41, 0x7a, 0x63, 0x70, 0xe8, 0x4c,
0x7f, 0x7d, 0x24, 0xf1, 0xce, 0x8a, 0xd9, 0xfe, 0xa1, 0x5e, 0x41, 0xaf, 0x51,
0x46, 0x3a, 0xca, 0xc7, 0xdf, 0xba, 0xbe, 0x63, 0xc3, 0xf1, 0x0d, 0x3a, 0x1b,
0x3b, 0x27, 0x9c, 0x98, 0xa7, 0x28, 0x82, 0xd5, 0xaf, 0x69, 0x22, 0x9f, 0x5c,
0x2f, 0x64, 0xb3, 0x67, 0xd8, 0x3e, 0x08, 0xd7, 0x1d, 0x05, 0x5b, 0xe4, 0xab,
0xa6, 0x67, 0xdc, 0xbc, 0xc2, 0xfd, 0x5d, 0xd7, 0xcf, 0xd3, 0xbb, 0xfb, 0x31,
0x9b, 0x62, 0xe1, 0x9f, 0xbe, 0x25, 0x30, 0x65, 0xde, 0xf4, 0x14, 0xf8, 0x67,
0x3a, 0x3c, 0xff, 0xea, 0x42, 0xb5, 0xcf, 0x8b, 0x65, 0xc4, 0x37, 0xc4, 0x0c,
0xb9, 0x4d, 0xf5, 0x7a, 0x53, 0x0e, 0x74, 0xf3, 0xf3, 0x5a, 0x80, 0x12, 0x21,
0x60, 0xd6, 0x53, 0xe7, 0xd1, 0xeb, 0xa3, 0xf8, 0x2c, 0x69, 0xe0, 0x63, 0x61,
0x2f, 0x6c, 0xda, 0x02, 0x0e, 0xb8, 0x08, 0x3d, 0xf0, 0x72, 0x58, 0x36, 0x72,
0x21, 0x24, 0xf0, 0xf4, 0x2e, 0x46, 0x89, 0xc8, 0x4f, 0xf1, 0xf4, 0x06, 0xea,
0xcd, 0x93, 0x90, 0x09, 0x1e, 0x04, 0xe5, 0x67, 0x0c, 0x5b, 0xaf, 0x09, 0x9c,
0xc6, 0x84, 0x90, 0x53, 0x56, 0x62, 0xcf, 0x40, 0x0f, 0x93, 0xe7, 0x2c, 0xb8,
0x88, 0x9a, 0x11, 0x2b, 0x58, 0x4d, 0x2e, 0x91, 0xb6, 0x0d, 0xca, 0x59, 0x71,
0xb0, 0x1d, 0x0c, 0x2c, 0xfb, 0xa6, 0xb7, 0x8d, 0x5e, 0xed, 0x12, 0x49, 0x66,
0x80, 0xc7, 0xba, 0xf9, 0xb4, 0xbf, 0x36, 0x20, 0xba, 0x0d, 0xee, 0x82, 0xd5,
0xce, 0x2c, 0x9b, 0xcd, 0xf9, 0xa8, 0xf5, 0x0a, 0x9b, 0x81, 0x35, 0x09, 0x24,
0x6f, 0xa2, 0xf4, 0x46, 0x59, 0x4a, 0xb0, 0x84, 0x28, 0xc4, 0x73, 0xc6, 0x70,
0x2d, 0x03, 0xbc, 0x9e, 0x31, 0x70, 0x36, 0xa5, 0x95, 0x22, 0xb4, 0x8c, 0x85,
0x40, 0x41, 0xc4, 0xe5, 0x44, 0x48, 0x49, 0x02, 0x57, 0x9b, 0x42, 0x08, 0x64,
0x15, 0x74, 0x88, 0x05, 0xa5, 0x16, 0xc1, 0xe6, 0x22, 0xb0, 0x13, 0xa2, 0x48,
0xf2, 0x90, 0x05, 0xbe, 0x33, 0xa6, 0x70, 0x8b, 0x25, 0x8f, 0x78, 0xe2, 0x14,
0x6a, 0x81, 0x5d, 0xf0, 0xc7, 0x8f, 0xc5, 0x19, 0xfe, 0x73, 0x15, 0xd3, 0x66,
0x18, 0x05, 0x57, 0xc1, 0x20, 0x1a, 0xed, 0x52, 0x34, 0xc7, 0x5d, 0x20, 0x3a,
0x09, 0x8a, 0xc1, 0x1c, 0x43, 0xc8, 0x24, 0x62, 0x04, 0x2c, 0x60, 0x10, 0x09,
0xbd, 0xc8, 0x5b, 0x44, 0x89, 0x04, 0x9b, 0xaf, 0x8f, 0x99, 0x95, 0x8f, 0xea,
0x09, 0x0b, 0x9a, 0x12, 0x00, 0x4a, 0x1b, 0x4f, 0x89, 0x44, 0xa4, 0xbb, 0xc5,
0x4d, 0x64, 0x19, 0x5d, 0x38, 0x29, 0x0a, 0x5a, 0x76, 0x2e, 0x22, 0x39, 0x4f,
0xad, 0x0a, 0x05, 0x61, 0x3a, 0x40, 0x54, 0xca, 0x22, 0x6b, 0xa1, 0xf5, 0x06,
0x44, 0x04, 0xd0, 0x92, 0xbc, 0xc0, 0xf2, 0x31, 0x06, 0xcb, 0x1f, 0x59, 0xe1,
0x28, 0x4a, 0x9e, 0x13, 0x0a, 0x60, 0x18, 0x59, 0xff, 0xf4, 0x12, 0x6d, 0x90,
0xaf, 0x4a, 0x25, 0xcc, 0xf9, 0x39, 0x42, 0xe6, 0xb5, 0xc5, 0xac, 0x42, 0x40,
0xba, 0x70, 0x64, 0xb6, 0x9b, 0x28, 0x0f, 0x6d, 0x28, 0xb0, 0x7e, 0x24, 0x6f,
0x26, 0xe4, 0x7b, 0xf1, 0x24, 0x22, 0x0c, 0xbc, 0x96, 0xc2, 0x82, 0xde, 0x64,
0xe1, 0x0b, 0x70, 0x22, 0x4e, 0xc3, 0xdf, 0x11, 0xa9, 0xf0, 0x84, 0x4d, 0x13,
0xe1, 0x16, 0x68, 0xd3, 0x71, 0x0b, 0x74, 0x9c, 0xe4, 0x4f, 0x48, 0xdc, 0x02,
0xd6, 0x35, 0x5a, 0x6d, 0xd7, 0x83, 0x68, 0x07, 0xbf, 0xb9, 0xb2, 0x10, 0xb0,
0xc4, 0x12, 0x4e, 0x6f, 0xd7, 0xd6, 0xa5, 0xc3, 0xb9, 0x74, 0x99, 0x45, 0x79,
0x64, 0x36, 0xd8, 0x38, 0x1d, 0x5e, 0xcc, 0xc9, 0x45, 0x05, 0x67, 0x50, 0x37,
0xd2, 0x52, 0x4a, 0x83, 0x8f, 0x5b, 0x10, 0x12, 0xfa, 0xd2, 0xe0, 0x7a, 0x1a,
0x48, 0x8c, 0xde, 0x4c, 0x50, 0x84, 0x3d, 0x72, 0x1a, 0x6f, 0x06, 0x36, 0xfe,
0x95, 0x87, 0xcb, 0x28, 0x59, 0x94, 0x08, 0x1e, 0x51, 0x0c, 0x92, 0x39, 0xdf,
0x66, 0x64, 0xe9, 0x15, 0xd3, 0x11, 0x17, 0xe8, 0x6a, 0x0a, 0x7d, 0xe9, 0x0e,
0xa4, 0xc2, 0x16, 0x19, 0x75, 0xca, 0xd5, 0x1e, 0x66, 0x57, 0x09, 0xb1, 0x78,
0x15, 0x2b, 0x78, 0x99, 0x09, 0x77, 0x81, 0x5c, 0xf3, 0xd9, 0x5a, 0x8d, 0x9e,
0x9a, 0x6e, 0x0b, 0x34, 0x2c, 0xa5, 0x5e, 0x85, 0x51, 0x38, 0x0b, 0x82, 0xe1,
0x49, 0x66, 0xae, 0x66, 0xea, 0x0a, 0x86, 0xd2, 0x05, 0xb9, 0xd8, 0xcc, 0x6a,
0x2b, 0xeb, 0x6e, 0x11, 0x05, 0xce, 0xcd, 0x2c, 0x48, 0x26, 0xa3, 0x8f, 0xa4,
0x93, 0x34, 0x82, 0x1e, 0x64, 0x5a, 0x96, 0xf3, 0x43, 0x06, 0x28, 0xb4, 0x7c,
0xc9, 0x5f, 0xf7, 0xfc, 0x95, 0xc2, 0x98, 0x31, 0xd0, 0xa1, 0x4a, 0xdd, 0x27,
0xfc, 0x4c, 0xc6, 0xa8, 0xb1, 0xae, 0x98, 0xa9, 0x5a, 0xa8, 0xe1, 0xe7, 0xf8,
0xac, 0xd6, 0xbc, 0xfa, 0x8e, 0x57, 0x44, 0xa4, 0x8b, 0xce, 0x66, 0xd3, 0x78,
0xe5, 0xa1, 0x13, 0xc8, 0xb8, 0xe2, 0xe9, 0x60, 0xeb, 0x52, 0x4e, 0x50, 0xcc,
0x52, 0x7b, 0x2e, 0xe4, 0x42, 0x08, 0xf7, 0x48, 0x2f, 0x7f, 0x1c, 0xb8, 0x70,
0xee, 0xcb, 0x0a, 0x46, 0xeb, 0xc2, 0x8a, 0x2b, 0x34, 0x4a, 0x91, 0x45, 0x91,
0xee, 0x60, 0x07, 0xf1, 0x06, 0x6a, 0x42, 0xdd, 0x0b, 0x6e, 0x2e, 0x90, 0x8b,
0x89, 0x27, 0x28, 0x84, 0x55, 0x46, 0x54, 0x8e, 0xb0, 0x5e, 0xf8, 0xfd, 0x2d,
0x0e, 0x06, 0x18, 0x01, 0x89, 0x88, 0xb0, 0x6a, 0x19, 0xd9, 0xbb, 0x70, 0xa2,
0x16, 0x48, 0xc9, 0x40, 0x09, 0x3a, 0x11, 0x0f, 0x07, 0x5e, 0x0b, 0x44, 0x8c,
0x1e, 0x8c, 0x1c, 0xa5, 0xe5, 0x6b, 0xd7, 0x1c, 0x5b, 0x43, 0x08, 0x82, 0x9c,
0x12, 0x4e, 0x08, 0xa4, 0xcd, 0xb4, 0x81, 0xc7, 0x1c, 0xc5, 0xeb, 0x81, 0xe0,
0x7f, 0xaf, 0x1e, 0x0c, 0x01, 0x2a, 0xc1, 0x7e, 0xaa, 0x12, 0xca, 0x2b, 0x61,
0x95, 0xd6, 0x85, 0x09, 0x0e, 0xa0, 0xd7, 0x3d, 0x81, 0x5f, 0x32, 0x29, 0x0c,
0xe1, 0x31, 0x2f, 0x6f, 0x7f, 0x59, 0xe5, 0x47, 0x1c, 0x85, 0x7e, 0x20, 0xd5,
0xc8, 0x64, 0xe6, 0xb0, 0x06, 0x47, 0xe8, 0xcc, 0xb0, 0x0d, 0xde, 0x09, 0x10,
0x38, 0x49, 0xc1, 0x51, 0x58, 0x65, 0x66, 0x18, 0x11, 0x3c, 0x6c, 0x1c, 0x12,
0xec, 0x88, 0xa2, 0x90, 0x2c, 0xb2, 0x14, 0xc5, 0xdb, 0xb1, 0x91, 0x35, 0x86,
0x00, 0x47, 0x72, 0x9c, 0x2c, 0xf0, 0xe8, 0xaf, 0x0e, 0xe0, 0x11, 0x6f, 0xe6,
0x42, 0x5c, 0xc2, 0xdd, 0xd7, 0x63, 0xda, 0x75, 0x01, 0x08, 0x25, 0xe8, 0x00,
0x52, 0x11, 0xd3, 0x97, 0xbe, 0xb8, 0xe2, 0xf5, 0x72, 0x80, 0xd9, 0xe1, 0x60,
0x56, 0x06, 0xea, 0xfc, 0x69, 0x6f, 0xd4, 0x0e, 0x7e, 0x16, 0x1d, 0xe5, 0xf2,
0x13, 0xb4, 0x82, 0x92, 0x72, 0xdb, 0xb8, 0x05, 0xf0, 0xb2, 0xa9, 0x91, 0x19,
0x10, 0xf9, 0xdc, 0xcc, 0x55, 0xfc, 0xcb, 0xeb, 0x76, 0xc1, 0x06, 0xcb, 0xb3,
0xb6, 0x19, 0x7e, 0xc4, 0x05, 0x79, 0x91, 0xb2, 0x88, 0xdd, 0xb8, 0x07, 0xb6,
0x82, 0xad, 0x12, 0x1f, 0x23, 0x5c, 0x5d, 0xe2, 0xe0, 0x1f, 0x3e, 0xc1, 0x4f,
0x3d, 0xe1, 0x00, 0xed, 0x36, 0x70, 0xa2, 0xcb, 0x50, 0x04, 0xfc, 0x93, 0x1f,
0xbb, 0x78, 0x45, 0x6a, 0xdc, 0x39, 0xcb, 0xbb, 0x31, 0x68, 0xbe, 0x2e, 0x1a,
0xf9, 0xb8, 0x6a, 0x60, 0x5a, 0xbc, 0xac, 0x75, 0x1e, 0xca, 0x58, 0xe2, 0x2e,
0xd2, 0x2e, 0x5b, 0x18, 0x26, 0x29, 0x23, 0xfe, 0xb2, 0x44, 0xc8, 0x86, 0x0b,
0xe0, 0xb7, 0x48, 0xb0, 0x6d, 0x74, 0xf7, 0xf3, 0x0f, 0x94, 0x0d, 0x9e, 0x7a,
0x96, 0x55, 0x52, 0xb9, 0xd2, 0x86, 0x70, 0x55, 0x80, 0xd9, 0x74, 0xef, 0x16,
0x4c, 0xde, 0x02, 0xbd, 0xa8, 0x5d, 0x60, 0xe1, 0xd1, 0x1c, 0xf4, 0x92, 0xd2,
0x0f, 0xfb, 0x87, 0x94, 0x92, 0xf7, 0xc8, 0x17, 0xb4, 0x7a, 0xca, 0x95, 0xf6,
0x89, 0x76, 0xc1, 0x2a, 0x4a, 0x15, 0xa0, 0x62, 0xbc, 0xad, 0x2f, 0xe9, 0x55,
0x8c, 0x3f, 0xe3, 0x9e, 0x04, 0x10, 0xf2, 0x0a, 0x7e, 0x66, 0xa6, 0x95, 0xf7,
0x55, 0x58, 0x84, 0x32, 0x74, 0x01, 0xc8, 0x99, 0x2b, 0xc2, 0xdd, 0x28, 0x4b,
0x52, 0xc4, 0xf7, 0x11, 0x21, 0x9e, 0x3e, 0xa0, 0x7b, 0x87, 0xf2, 0x5a, 0x45,
0xb8, 0xab, 0x50, 0xe0, 0xa7, 0x9b, 0x38, 0x19, 0xbb, 0x16, 0x8e, 0xf2, 0xf2,
0x91, 0x64, 0xd7, 0xc8, 0x31, 0x52, 0x00, 0x39, 0xf7, 0x79, 0xf1, 0x83, 0xad,
0x60, 0xf1, 0x63, 0xc3, 0x7d, 0x25, 0xdf, 0x40, 0x83, 0xd9, 0xcd, 0x86, 0x2c,
0x72, 0x35, 0x87, 0x4b, 0x0a, 0x95, 0x8b, 0xd6, 0x26, 0x12, 0xd2, 0xea, 0x45,
0x02, 0x87, 0x02, 0x28, 0x35, 0x8b, 0x7d, 0x5e, 0x73, 0x00, 0x21, 0xef, 0x91,
0x33, 0x2d, 0x0b, 0x14, 0x87, 0x25, 0x4e, 0x92, 0xc1, 0x2a, 0x23, 0x96, 0xc2,
0x28, 0x14, 0x23, 0xad, 0x91, 0xd1, 0xdb, 0x15, 0xb4, 0x19, 0x8b, 0x56, 0x7d,
0xa8, 0xda, 0x05, 0xbf, 0xe3, 0x0e, 0x9a, 0x68, 0x12, 0x2f, 0x54, 0x7a, 0xf8,
0x20, 0x17, 0x29, 0x4a, 0xd2, 0x05, 0x59, 0x45, 0x17, 0xd2, 0x18, 0xfd, 0x36,
0xf6, 0x0b, 0x26, 0xdf, 0x64, 0xed, 0x1f, 0xae, 0x57, 0x08, 0x92, 0x7d, 0x28,
0x78, 0x7b, 0x08, 0x67, 0xf7, 0x0f, 0xd1, 0x53, 0xc0, 0xca, 0x4c, 0x66, 0x75,
0x31, 0xca, 0x36, 0x97, 0x32, 0x60, 0xe6, 0xf7, 0x15, 0xae, 0x46, 0x02, 0xf1,
0xbb, 0xda, 0x73, 0x46, 0xad, 0x01, 0x8b, 0x02, 0xcd, 0xc9, 0x24, 0x37, 0x2d,
0xfc, 0x97, 0xa3, 0x90, 0xe3, 0x94, 0x05, 0x45, 0x87, 0x58, 0xd1, 0xa6, 0x8c,
0x06, 0x75, 0x34, 0x89, 0x24, 0xc4, 0x91, 0x22, 0x41, 0x4d, 0x2c, 0xfc, 0x65,
0x61, 0x22, 0x24, 0x03, 0xce, 0x05, 0x9e, 0xc1, 0xa6, 0xa0, 0x17, 0x68, 0xda,
0x4f, 0x4f, 0x6b, 0xcc, 0x1e, 0x91, 0xc8, 0x85, 0x09, 0x31, 0x20, 0x4d, 0x04,
0x72, 0x33, 0x47, 0xbb, 0xb2, 0x4c, 0x00, 0x89, 0x29, 0x46, 0x65, 0xd5, 0xd3,
0xef, 0x6d, 0x74, 0x8b, 0xa2, 0xb5, 0x1c, 0x4f, 0x80, 0x00, 0x12, 0x41, 0x71,
0xb2, 0xd6, 0x32, 0x01, 0xbe, 0x46, 0xd9, 0x66, 0x58, 0xc4, 0x10, 0xf0, 0xb0,
0x1b, 0x58, 0x0b, 0x29, 0x28, 0x24, 0x8a, 0x76, 0x0f, 0x35, 0x8a, 0x84, 0x81,
0xa4, 0x4d, 0x24, 0x29, 0x7b, 0x17, 0x99, 0xb4, 0x3e, 0xa0, 0x18, 0x2d, 0x16,
0xa3, 0xf5, 0xa4, 0xc8, 0x15, 0xa3, 0xc3, 0xc8, 0xea, 0x82, 0x02, 0x19, 0x83,
0xb7, 0x55, 0xa5, 0x0b, 0x37, 0x03, 0xb3, 0x59, 0x2e, 0x09, 0x84, 0xd0, 0x36,
0xf8, 0x44, 0x17, 0x84, 0x79, 0xad, 0x20, 0xf4, 0x18, 0xee, 0x18, 0x2c, 0xac,
0x2c, 0x65, 0xc0, 0x87, 0x08, 0x98, 0x59, 0x81, 0x4f, 0x56, 0x40, 0x7e, 0x05,
0x2c, 0xb1, 0x08, 0x21, 0x44, 0xa8, 0x01, 0xeb, 0x31, 0xa3, 0x85, 0x10, 0x42,
0x39, 0x57, 0x62, 0x58, 0x3d, 0xc8, 0x5a, 0x27, 0x62, 0x8e, 0x97, 0xb0, 0x22,
0x4a, 0x89, 0x96, 0xce, 0xf1, 0x0b, 0x9a, 0x4a, 0x67, 0x82, 0xd2, 0x8b, 0x99,
0x11, 0x96, 0x09, 0xc7, 0xc0, 0xc0, 0x65, 0x80, 0x82, 0x14, 0x37, 0xcb, 0x50,
0xf1, 0x27, 0xd6, 0x3e, 0xe3, 0x9b, 0x06, 0xfe, 0xbe, 0x92, 0x4a, 0x0a, 0x64,
0xf9, 0x28, 0x26, 0xdc, 0x6d, 0x5a, 0x29, 0xd0, 0x28, 0x78, 0xf1, 0x2c, 0x64,
0x25, 0x5d, 0x7d, 0x43, 0x5d, 0x55, 0xe1, 0x1b, 0x14, 0xe0, 0xc1, 0x48, 0xcf,
0xe8, 0xb4, 0xde, 0x21, 0x82, 0xd5, 0x2d, 0x90, 0xc3, 0xb4, 0x61, 0x33, 0x9b,
0xcc, 0x72, 0x98, 0x7f, 0x6a, 0x01, 0xa6, 0x08, 0x87, 0x0c, 0x50, 0xad, 0x6c,
0xa8, 0x04, 0x11, 0x64, 0x56, 0x23, 0x38, 0xc3, 0x91, 0x3d, 0x90, 0xb9, 0x47,
0x9e, 0xa7, 0x04, 0xb2, 0xe1, 0x66, 0xc8, 0x4d, 0x32, 0x98, 0xed, 0x5a, 0x8a,
0x5e, 0x3e, 0x5d, 0x36, 0x3a, 0x82, 0x41, 0x11, 0xa5, 0x27, 0xb1, 0x9d, 0xd4,
0x22, 0xe2, 0x77, 0x17, 0xe6, 0x47, 0x12, 0xcc, 0x6f, 0xd3, 0xb3, 0x67, 0xbc,
0xf9, 0xe7, 0x85, 0x7a, 0x8c, 0xf5, 0x2c, 0x45, 0x08, 0x94, 0x9e, 0xe7, 0x25,
0x06, 0xc9, 0x8d, 0x8c, 0x42, 0xb0, 0x33, 0x72, 0xd0, 0xb1, 0x54, 0x54, 0x92,
0x2a, 0x5b, 0x50, 0x83, 0x9a, 0x53, 0x1a, 0x38, 0x06, 0x19, 0x0c, 0x04, 0x69,
0x41, 0x66, 0x19, 0xbd, 0x56, 0xeb, 0x79, 0xf7, 0x53, 0xee, 0x87, 0x3f, 0x2e,
0xfa, 0x18, 0x42, 0xc9, 0xe5, 0xde, 0x64, 0x00, 0x2f, 0x49, 0xf4, 0x5c, 0x99,
0xfa, 0x29, 0x78, 0x9f, 0xc3, 0x9c, 0x09, 0xa8, 0x68, 0x1c, 0x24, 0x67, 0x81,
0x91, 0x68, 0xc4, 0xd3, 0x06, 0x6c, 0x96, 0x59, 0x96, 0xd6, 0xb3, 0x3c, 0x52,
0x48, 0x71, 0x80, 0x8c, 0x22, 0x32, 0x45, 0xd3, 0x98, 0x55, 0x86, 0xcb, 0xda,
0x27, 0x91, 0x92, 0x49, 0xf3, 0xd4, 0xfb, 0x36, 0x83, 0x89, 0x24, 0x28, 0x36,
0x50, 0x65, 0xa2, 0x45, 0x8a, 0x02, 0x99, 0x70, 0x1c, 0x40, 0x19, 0x18, 0xb3,
0x3c, 0x55, 0xad, 0x1c, 0x45, 0x49, 0xb4, 0xac, 0x16, 0x3c, 0xa3, 0xb7, 0xc9,
0x0f, 0x8d, 0xf0, 0xef, 0xef, 0xa6, 0xc9, 0x75, 0x66, 0x03, 0x03, 0x21, 0x5b,
0xae, 0xf0, 0x48, 0x0f, 0x13, 0x27, 0x53, 0x9c, 0x28, 0xf7, 0x4f, 0x9e, 0x46,
0x09, 0xcb, 0xc6, 0x1e, 0x7b, 0x18, 0x4b, 0x60, 0x27, 0x00, 0x2c, 0x06, 0x9d,
0x56, 0xa9, 0xc0, 0x5a, 0x95, 0xe2, 0xa5, 0x29, 0x32, 0xf3, 0x99, 0x03, 0x7d,
0x7d, 0x54, 0xe1, 0xbc, 0x60, 0xc6, 0x9d, 0xc0, 0x31, 0x21, 0x30, 0x33, 0x88,
0x5a, 0x48, 0xa7, 0xa2, 0x3d, 0x88, 0x5e, 0xfc, 0x1a, 0xb9, 0x8a, 0x00, 0x11,
0xfb, 0x21, 0x7e, 0x0a, 0x48, 0x21, 0x81, 0xc4, 0xc2, 0x4f, 0xf5, 0x73, 0xb5,
0x9c, 0x64, 0x23, 0x15, 0x24, 0x36, 0x48, 0xae, 0x81, 0x8a, 0xc5, 0x5e, 0x02,
0x36, 0xcd, 0x42, 0x54, 0x11, 0x30, 0x8c, 0x2c, 0x1a, 0x88, 0xa7, 0x68, 0x83,
0xc8, 0x98, 0xdd, 0xa8, 0x3d, 0xee, 0xad, 0xee, 0xf2, 0x8c, 0x18, 0x11, 0x03,
0xf5, 0x3b, 0xc0, 0xf0, 0x7f, 0x9f, 0xa0, 0x16, 0x1d, 0x3c, 0x08, 0x95, 0x07,
0xc1, 0xa0, 0xb7, 0x19, 0x44, 0x6c, 0xa6, 0xe5, 0xc6, 0x05, 0x71, 0x84, 0x91,
0x65, 0x22, 0x05, 0xe6, 0x87, 0xfd, 0xa8, 0x38, 0x3a, 0x2f, 0x13, 0x6e, 0xff,
0x79, 0x67, 0x02, 0x8c, 0x6f, 0xfa, 0x6f,
};
optimizesize void *__jisx0208_decmap(void) {
return xloadzd(&__jisx0208_decmap_ptr,
__jisx0208_decmap_rodata,
9445, 10703, 6956, 2, 0x09f8b079u); /* 67.891% profit */
}
| 58,487 | 740 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/gb2312_decmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) gb2312_decmap_ptr;
static const unsigned char gb2312_decmap_rodata[] = {
0xed, 0xcb, 0xbd, 0x2b, 0xc4, 0x01, 0x00, 0xc6, 0xf1, 0xdf, 0xef, 0xbc, 0xdc,
0x1d, 0x0e, 0xe7, 0xed, 0xce, 0x4b, 0xea, 0x91, 0x62, 0x52, 0x67, 0xa1, 0x4c,
0x4c, 0x8a, 0x85, 0x49, 0x51, 0x4a, 0x51, 0xa2, 0x24, 0xb9, 0x92, 0xeb, 0xb1,
0x60, 0x52, 0x2c, 0xac, 0x4c, 0x0a, 0x03, 0xd9, 0x98, 0x14, 0x0b, 0x93, 0x62,
0xa1, 0x4c, 0x4c, 0x8a, 0x85, 0x95, 0x7c, 0xff, 0x01, 0x56, 0xcb, 0x7d, 0xeb,
0xd3, 0x33, 0x3d, 0x41, 0xf0, 0xff, 0x85, 0x81, 0x3c, 0x1e, 0x64, 0x72, 0x47,
0x6c, 0x3c, 0xd4, 0xc2, 0x58, 0xa8, 0xec, 0x69, 0xa8, 0x91, 0xd7, 0x50, 0xf3,
0x3d, 0x11, 0x4d, 0xaf, 0x46, 0x5a, 0xe7, 0x7e, 0xfb, 0xde, 0x46, 0xe4, 0x8e,
0x02, 0x79, 0x03, 0xaf, 0xe8, 0x2f, 0x94, 0xf7, 0x51, 0x58, 0x24, 0x4f, 0xe0,
0x02, 0xcd, 0xc5, 0x72, 0x0e, 0x8f, 0xe8, 0x8e, 0xca, 0x3b, 0xf8, 0xc4, 0x70,
0x4c, 0x3e, 0x41, 0x79, 0x5c, 0x9e, 0xc5, 0x0d, 0xda, 0x4b, 0xe4, 0x75, 0xbc,
0xa0, 0xaf, 0x54, 0xde, 0xc3, 0x37, 0xc6, 0xca, 0xe4, 0x73, 0xa4, 0x13, 0x72,
0x16, 0xf7, 0xe8, 0x2c, 0x97, 0xb7, 0xf0, 0x8e, 0xc1, 0x0a, 0xf9, 0x10, 0xb1,
0x4a, 0x79, 0x0a, 0x57, 0x68, 0x49, 0x6a, 0x69, 0x39, 0x29, 0x3f, 0xa0, 0xab,
0x4a, 0xde, 0xc6, 0x07, 0x86, 0xaa, 0xe5, 0x63, 0x24, 0x6a, 0xe4, 0x19, 0x5c,
0xa3, 0xad, 0x56, 0x5e, 0xc3, 0x33, 0x7a, 0xeb, 0xe4, 0x5d, 0x7c, 0x61, 0x34,
0x25, 0x9f, 0x21, 0x95, 0x96, 0x17, 0x71, 0x87, 0x4c, 0xbd, 0xbc, 0x89, 0x37,
0x0c, 0x34, 0xc8, 0x07, 0x88, 0x36, 0xca, 0x93, 0xb8, 0x84, 0x9a, 0xe4, 0x15,
0x3c, 0x21, 0xc8, 0x97, 0xef, 0x8f, 0x7e, 0x00,
};
optimizesize void *gb2312_decmap(void) {
return xload(&gb2312_decmap_ptr,
gb2312_decmap_rodata,
242, 1024); /* 23.6328% profit */
}
| 1,800 | 32 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/__cp932ext_encmap.c | #include "libc/x/x.h"
/* clang-format off */
static _Atomic(void *) __cp932ext_encmap_ptr;
static const unsigned char __cp932ext_encmap_rodata[] = {
0xed, 0x5a, 0x05, 0x73, 0xdb, 0x4c, 0x10, 0xfd, 0x6b, 0x61, 0x66, 0xc6, 0x86,
0x99, 0xa9, 0x98, 0x66, 0xe2, 0xd0, 0x86, 0xd3, 0x40, 0xdb, 0xa4, 0xcc, 0xcc,
0xcc, 0x8c, 0x29, 0x33, 0x33, 0xc3, 0x6e, 0x19, 0xbe, 0xb6, 0x33, 0xf9, 0x34,
0x1a, 0x8d, 0xc7, 0xb2, 0x65, 0x5b, 0x92, 0x25, 0x59, 0x72, 0x7c, 0x33, 0x8e,
0xa3, 0xbd, 0xdd, 0xb7, 0xef, 0xbd, 0x3b, 0xdd, 0xcd, 0x64, 0xd2, 0x02, 0x13,
0x02, 0xa3, 0x4d, 0x30, 0xaa, 0xd5, 0x48, 0x80, 0x44, 0x48, 0x82, 0x64, 0x48,
0x81, 0x54, 0x48, 0x83, 0x74, 0xc8, 0x80, 0x4c, 0x1e, 0x9f, 0x4f, 0xf4, 0x99,
0xbe, 0xd0, 0x57, 0xfa, 0x46, 0xdf, 0xe9, 0x07, 0xfd, 0xa4, 0x5f, 0xf4, 0x9b,
0x46, 0x1c, 0x30, 0x1e, 0xb5, 0x98, 0xcb, 0x31, 0x59, 0xcf, 0x0e, 0xbb, 0x55,
0xab, 0x11, 0xc6, 0x18, 0xf8, 0x80, 0x2f, 0xf8, 0x81, 0x3f, 0x04, 0x40, 0x20,
0x04, 0x41, 0x30, 0x84, 0x40, 0x28, 0x84, 0x41, 0x38, 0x44, 0x40, 0x24, 0x44,
0x41, 0x34, 0xc4, 0x40, 0x2c, 0xc4, 0x41, 0x3c, 0x34, 0x33, 0x5e, 0x9a, 0xa0,
0x1b, 0x7a, 0x78, 0x9e, 0xf6, 0x7a, 0xa4, 0xc3, 0xed, 0xd0, 0x01, 0x00, 0x9d,
0xd0, 0x05, 0x05, 0x02, 0xfa, 0x4a, 0x78, 0xb1, 0x6c, 0xee, 0x29, 0x4f, 0x20,
0x33, 0x07, 0xca, 0xd8, 0x68, 0x29, 0xe4, 0x73, 0xb3, 0xe5, 0x82, 0x7e, 0x15,
0x9a, 0xa3, 0x95, 0x0e, 0xfc, 0xcc, 0x82, 0x0a, 0x76, 0x36, 0x97, 0xcb, 0x29,
0xb2, 0xc8, 0x2d, 0x56, 0x68, 0x1d, 0x9a, 0x60, 0x00, 0xfa, 0xa1, 0xcf, 0x09,
0x5a, 0x2d, 0xd4, 0xd9, 0xcd, 0xa8, 0x82, 0x6a, 0xa8, 0x61, 0x67, 0x1b, 0x14,
0xe1, 0x54, 0x6f, 0x83, 0xd2, 0x0a, 0x11, 0xe8, 0x7d, 0x73, 0xb5, 0x1d, 0x91,
0xb2, 0x1c, 0x8f, 0xc2, 0x68, 0xb6, 0x2e, 0x46, 0xc3, 0xf5, 0x8a, 0x95, 0xdd,
0x2b, 0x4e, 0x23, 0x96, 0x09, 0x56, 0x7d, 0xe2, 0x99, 0xe7, 0x24, 0x8b, 0x58,
0xa2, 0xaa, 0x3c, 0x02, 0x39, 0xf4, 0x64, 0x0d, 0xd4, 0xa6, 0x61, 0x3a, 0xd7,
0x25, 0xd5, 0x85, 0x6e, 0x29, 0x4c, 0xed, 0x14, 0xae, 0x3e, 0x43, 0x05, 0xd6,
0x99, 0x0a, 0x61, 0x66, 0xe9, 0xe4, 0x54, 0xca, 0x91, 0xc9, 0x23, 0x1b, 0x73,
0x65, 0x54, 0xe6, 0x69, 0xae, 0x3a, 0xdf, 0xe5, 0x8e, 0x05, 0x2a, 0x72, 0x2e,
0xc4, 0x22, 0xef, 0xed, 0x64, 0x31, 0x8a, 0x05, 0xdc, 0x28, 0xb1, 0x89, 0xa5,
0x93, 0x33, 0x9c, 0x52, 0x59, 0xae, 0x96, 0x61, 0x39, 0xaf, 0xae, 0x42, 0xf6,
0xda, 0x54, 0xea, 0x78, 0x55, 0xab, 0x5c, 0xe6, 0x56, 0xed, 0x12, 0x42, 0x8d,
0x2a, 0xde, 0xd4, 0x62, 0x83, 0x08, 0xdc, 0x7a, 0xbb, 0x39, 0x53, 0x0d, 0xf4,
0x1e, 0x4e, 0xc3, 0xe9, 0x38, 0xc3, 0x0e, 0xdf, 0x99, 0xba, 0xd2, 0x31, 0x4b,
0x16, 0x9b, 0xd9, 0xd8, 0x88, 0x26, 0x91, 0x95, 0x2d, 0xd8, 0xaa, 0xb3, 0x95,
0x6b, 0xb3, 0xe2, 0xd3, 0xce, 0x3c, 0x77, 0x58, 0xc4, 0xc0, 0xed, 0x7c, 0x3b,
0x25, 0x30, 0xe8, 0xc2, 0x6e, 0x0f, 0xbc, 0xa1, 0x7a, 0x24, 0x6a, 0xea, 0x13,
0x99, 0xdf, 0x8f, 0x03, 0xde, 0xfb, 0x9c, 0x37, 0xe6, 0x88, 0xf4, 0x63, 0xd0,
0x2d, 0xbe, 0x0d, 0xe1, 0xb0, 0xac, 0xbe, 0xf3, 0x9c, 0x56, 0x8d, 0xc8, 0xc0,
0x9d, 0xaf, 0xcb, 0xbd, 0x33, 0x8a, 0x63, 0x92, 0x78, 0x2d, 0xc0, 0x85, 0xa2,
0xf2, 0x17, 0x39, 0xcd, 0x0a, 0x57, 0xc0, 0x8f, 0xc5, 0x3a, 0x7f, 0x1f, 0x97,
0x28, 0xca, 0x6f, 0x29, 0x2e, 0x53, 0x58, 0xef, 0x72, 0x33, 0xde, 0x0a, 0x5d,
0x3a, 0xb9, 0xca, 0x86, 0xd5, 0x4a, 0x91, 0x3c, 0xd7, 0xe0, 0x5a, 0x87, 0x99,
0xab, 0x9d, 0xe0, 0xac, 0xe7, 0xcd, 0xaf, 0x33, 0xfc, 0xb9, 0xbf, 0x01, 0x37,
0x7a, 0xef, 0x2e, 0x11, 0x63, 0x13, 0x6e, 0xc6, 0x2d, 0x6e, 0x73, 0x6a, 0xab,
0xea, 0x9d, 0xb7, 0xe1, 0x76, 0xdc, 0x61, 0xd3, 0x65, 0xb7, 0x9d, 0xbe, 0x3b,
0x6d, 0xe2, 0x7b, 0x2d, 0x22, 0xfb, 0x04, 0xaa, 0xf6, 0xb0, 0xb1, 0x60, 0x81,
0x99, 0x5d, 0x32, 0xb5, 0x1d, 0x60, 0xea, 0x0e, 0xda, 0xa9, 0xdd, 0xef, 0x00,
0xf3, 0xb0, 0x82, 0x5e, 0x1e, 0xe1, 0x61, 0x1d, 0x15, 0x81, 0x7c, 0xcc, 0x6e,
0xce, 0x71, 0xb7, 0xec, 0xae, 0x13, 0x18, 0x86, 0x27, 0x0d, 0x76, 0x02, 0x9c,
0x36, 0x0c, 0xdf, 0x33, 0x66, 0xa6, 0xe7, 0xf0, 0xbc, 0x2e, 0x58, 0x8f, 0x3b,
0x60, 0x71, 0x76, 0x12, 0xdd, 0x04, 0x21, 0x3c, 0xad, 0x17, 0xf0, 0x92, 0xca,
0xda, 0xaf, 0xe8, 0xd0, 0xdb, 0xab, 0x78, 0x4d, 0x02, 0xab, 0x1b, 0x8a, 0x29,
0xb8, 0x6e, 0x85, 0x74, 0x53, 0x10, 0xf9, 0x96, 0x87, 0xec, 0xc6, 0xdb, 0x8c,
0x8e, 0x3b, 0x78, 0x17, 0xef, 0xc9, 0xd6, 0x73, 0x5f, 0x54, 0xe5, 0x43, 0x49,
0xf8, 0x0f, 0x0c, 0xe2, 0xee, 0x23, 0x7c, 0xec, 0x91, 0xa7, 0xd2, 0x53, 0x89,
0xaa, 0x9e, 0x38, 0xcc, 0x7f, 0x26, 0x01, 0xed, 0xb9, 0x22, 0x7e, 0xbe, 0x50,
0x04, 0xe5, 0x95, 0x05, 0xca, 0x4b, 0xee, 0xf7, 0xd7, 0xf8, 0x4e, 0x04, 0xf6,
0x1b, 0x36, 0xe7, 0xbd, 0x8b, 0x2c, 0xde, 0x7a, 0xc4, 0xde, 0xfa, 0x80, 0x1f,
0x55, 0xd3, 0x81, 0x6e, 0x76, 0x88, 0xf0, 0x13, 0xc3, 0xe0, 0xb3, 0xcb, 0x2c,
0xbe, 0x18, 0x76, 0xa5, 0xbf, 0x2a, 0xc8, 0xfc, 0x9b, 0x13, 0xac, 0x20, 0xfc,
0x21, 0x98, 0xf1, 0x5d, 0x53, 0xf7, 0x7e, 0xe1, 0x6f, 0xd1, 0xfd, 0x7e, 0x7a,
0xcc, 0xed, 0xf0, 0xc7, 0x6d, 0x4a, 0xfe, 0xe2, 0x3f, 0xbb, 0xbd, 0x7d, 0xc8,
0x97, 0x8c, 0xe0, 0x9e, 0xbf, 0x8e, 0x58, 0x06, 0xd8, 0xe1, 0x12, 0x68, 0x13,
0x0f, 0xe1, 0x22, 0x41, 0x76, 0xd9, 0x07, 0x8b, 0xd0, 0x15, 0x46, 0xa1, 0x2e,
0xa9, 0x0f, 0x67, 0xab, 0x23, 0x29, 0x82, 0x43, 0x89, 0xd2, 0xc8, 0xcb, 0x68,
0x45, 0xfb, 0xc4, 0x48, 0x40, 0x8b, 0xa5, 0x38, 0x15, 0x35, 0xf6, 0xba, 0xf9,
0x4c, 0x8a, 0xa7, 0x04, 0xc9, 0xea, 0x92, 0x29, 0x91, 0xa9, 0x49, 0xb2, 0xaa,
0x4b, 0xa1, 0x34, 0xca, 0x50, 0xcd, 0xa9, 0x4c, 0x09, 0xc8, 0x53, 0x24, 0xe4,
0x66, 0x51, 0xb6, 0x21, 0xce, 0x2c, 0xe7, 0x23, 0x9f, 0xa7, 0xa3, 0x90, 0x8a,
0x24, 0xe8, 0x2a, 0xe6, 0x72, 0x4b, 0xa9, 0x8c, 0x2a, 0x44, 0xd6, 0x55, 0xea,
0xc4, 0xb7, 0x6a, 0x49, 0x3c, 0xaa, 0x5c, 0x62, 0x5d, 0x43, 0xb5, 0x1a, 0xab,
0xf6, 0xc1, 0x3a, 0x03, 0xee, 0xcf, 0x7a, 0x9a, 0x6a, 0xf8, 0xb7, 0x6a, 0x9a,
0x6c, 0x05, 0xd3, 0x75, 0xa6, 0x7d, 0x86, 0xaa, 0x7c, 0x66, 0xd2, 0x2c, 0x0f,
0x39, 0x41, 0xad, 0x47, 0xa3, 0xc2, 0xba, 0x02, 0x70, 0xb6, 0x05, 0x62, 0x93,
0x08, 0xf4, 0x66, 0xdd, 0x38, 0xdb, 0x42, 0xed, 0x1e, 0xba, 0xca, 0xde, 0x31,
0x31, 0xd1, 0x41, 0xbe, 0x08, 0x8a, 0xad, 0x6f, 0xa7, 0x0e, 0x76, 0x4a, 0x97,
0x8a, 0x1c, 0xba, 0x25, 0x61, 0xf7, 0xb8, 0xcc, 0xa4, 0x57, 0x12, 0x42, 0x3f,
0x0d, 0xa8, 0xa4, 0x7d, 0x0e, 0x0d, 0x72, 0xc8, 0x43, 0x34, 0xec, 0x21, 0xa7,
0xc1, 0x08, 0xcd, 0xa3, 0xb1, 0x49, 0x75, 0xb2, 0x2d, 0xa0, 0x45, 0x22, 0xf4,
0x2e, 0xf6, 0x9e, 0xf6, 0xaa, 0x8e, 0xa5, 0xac, 0xbf, 0x4b, 0x38, 0x97, 0x97,
0x59, 0xb8, 0xbd, 0x92, 0x56, 0x59, 0x79, 0xbf, 0x9c, 0x56, 0xd0, 0x6a, 0x2e,
0xb6, 0xd6, 0x62, 0x6e, 0x8d, 0xe2, 0x6b, 0xb4, 0x85, 0xd6, 0x31, 0x98, 0x1b,
0x38, 0xdc, 0xf5, 0x0e, 0xf0, 0x37, 0xb2, 0x73, 0x9b, 0xad, 0x32, 0x36, 0x39,
0xa8, 0xd8, 0xea, 0x84, 0xed, 0x76, 0xda, 0xe1, 0x24, 0xc3, 0xdf, 0xa5, 0xbf,
0x95, 0x6c, 0x53, 0xdc, 0xad, 0x3d, 0x2c, 0xe2, 0x01, 0xe6, 0xe7, 0x3e, 0xe6,
0xb3, 0x8b, 0xf9, 0xec, 0xe6, 0xf5, 0xd8, 0xcf, 0x7b, 0xda, 0x29, 0xa2, 0x7f,
0x28, 0xa3, 0xf0, 0x30, 0x97, 0x77, 0x8c, 0x4e, 0xc8, 0x62, 0x7c, 0x9c, 0x8e,
0xb2, 0x75, 0x87, 0xb8, 0xea, 0x83, 0x8a, 0xe8, 0xf6, 0x73, 0xe8, 0xfd, 0x29,
0xc9, 0x3d, 0x4e, 0x6a, 0x74, 0xbe, 0x9c, 0x56, 0xa0, 0xcf, 0x19, 0x89, 0x18,
0x67, 0x65, 0xf4, 0x3c, 0x47, 0xe7, 0x45, 0x56, 0x8d, 0xb3, 0x79, 0x17, 0xe8,
0x22, 0x5d, 0x11, 0x51, 0x71, 0x95, 0xae, 0x59, 0x65, 0x5d, 0xb7, 0x7a, 0xbe,
0x21, 0x80, 0x72, 0x93, 0x89, 0xdd, 0x62, 0x3e, 0xb7, 0xb9, 0xb9, 0x3b, 0x74,
0xd7, 0x41, 0xaf, 0x7b, 0xf4, 0x70, 0x52, 0xdd, 0x16, 0x8f, 0xe9, 0x89, 0xf7,
0x76, 0x14, 0x18, 0x4f, 0x59, 0x57, 0x9e, 0xd1, 0x0b, 0xf6, 0xfb, 0xb9, 0x0c,
0x8f, 0x5e, 0x2a, 0xe0, 0xeb, 0x2b, 0x01, 0x8c, 0xd7, 0xf4, 0x86, 0xde, 0x99,
0xe3, 0x6f, 0xe9, 0x83, 0x77, 0xfd, 0x34, 0x1d, 0x1f, 0xe9, 0x94, 0xf7, 0x3f,
0xc7, 0x35, 0x18, 0x97, 0xa8, 0x0e, 0x9b, 0xb0, 0x19, 0xe7, 0xe2, 0x21, 0xbc,
0x88, 0x97, 0xf1, 0x3f, 0xf4, 0xa3, 0x54, 0xca, 0xa1, 0x5c, 0xca, 0xa3, 0x02,
0x2a, 0xa1, 0x72, 0x6a, 0x20, 0x13, 0xb5, 0x52, 0x1b, 0xf5, 0xd1, 0x5c, 0x9a,
0x4f, 0xa3, 0xb4, 0x90, 0xf6, 0xd2, 0x11, 0xba, 0x4c, 0xf7, 0xe9, 0x01, 0x3d,
0xa2, 0xf7, 0xf4, 0xcf, 0xfc, 0x66, 0xfc, 0xb5, 0x78, 0x47, 0x1a, 0x4d, 0x6a,
0xb2, 0xce, 0x52, 0x00, 0x3d, 0xdb, 0xe4, 0x5d, 0xfd, 0x41, 0xd3, 0x90, 0x69,
0x9c, 0xf1, 0xe1, 0x0f, 0xfd, 0x0f,
};
optimizesize void *__cp932ext_encmap(void) {
return xload(&__cp932ext_encmap_ptr,
__cp932ext_encmap_rodata,
1293, 19372); /* 6.67458% profit */
}
| 8,290 | 113 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cjkcodecs/somanyencodings.h | #ifndef COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_CJKCODECS_SOMANYENCODINGS_H_
#define COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_CJKCODECS_SOMANYENCODINGS_H_
#define JISX0213_ENCPAIRS 46
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
struct CjkIndex {
uint16_t map;
unsigned char bottom, top;
};
struct CjkPairEncodeMap {
uint32_t uniseq;
uint16_t code;
};
struct dbcs_map {
const char *charset;
const struct CjkIndex *encmap;
const struct CjkIndex *decmap;
};
const struct CjkIndex *big5_decmap(void) pureconst;
const struct CjkIndex *big5_encmap(void) pureconst;
const struct CjkIndex *big5hkscs_bmp_encmap(void) pureconst;
const struct CjkIndex *big5hkscs_decmap(void) pureconst;
const struct CjkIndex *big5hkscs_nonbmp_encmap(void) pureconst;
const struct CjkIndex *cp932ext_decmap(void) pureconst;
const struct CjkIndex *cp932ext_encmap(void) pureconst;
const struct CjkIndex *cp949_encmap(void) pureconst;
const struct CjkIndex *cp949ext_decmap(void) pureconst;
const struct CjkIndex *cp950ext_decmap(void) pureconst;
const struct CjkIndex *cp950ext_encmap(void) pureconst;
const struct CjkIndex *gb18030ext_decmap(void) pureconst;
const struct CjkIndex *gb18030ext_encmap(void) pureconst;
const struct CjkIndex *gb2312_decmap(void) pureconst;
const struct CjkIndex *gbcommon_encmap(void) pureconst;
const struct CjkIndex *gbkext_decmap(void) pureconst;
const struct CjkIndex *jisx0208_decmap(void) pureconst;
const struct CjkIndex *jisx0212_decmap(void) pureconst;
const struct CjkIndex *jisx0213_1_bmp_decmap(void) pureconst;
const struct CjkIndex *jisx0213_1_emp_decmap(void) pureconst;
const struct CjkIndex *jisx0213_2_bmp_decmap(void) pureconst;
const struct CjkIndex *jisx0213_2_emp_decmap(void) pureconst;
const struct CjkIndex *jisx0213_bmp_encmap(void) pureconst;
const struct CjkIndex *jisx0213_emp_encmap(void) pureconst;
const struct CjkIndex *jisx0213_pair_decmap(void) pureconst;
const struct CjkIndex *jisxcommon_encmap(void) pureconst;
const struct CjkIndex *ksx1001_decmap(void) pureconst;
const struct CjkPairEncodeMap *jisx0213_pair_encmap(void) pureconst;
const uint16_t *__big5_decmap(void) pureconst;
const uint16_t *__big5_encmap(void) pureconst;
const uint16_t *__big5hkscs_bmp_encmap(void) pureconst;
const uint16_t *__big5hkscs_decmap(void) pureconst;
const uint16_t *__big5hkscs_nonbmp_encmap(void) pureconst;
const uint16_t *__cp932ext_decmap(void) pureconst;
const uint16_t *__cp932ext_encmap(void) pureconst;
const uint16_t *__cp949_encmap(void) pureconst;
const uint16_t *__cp949ext_decmap(void) pureconst;
const uint16_t *__cp950ext_decmap(void) pureconst;
const uint16_t *__cp950ext_encmap(void) pureconst;
const uint16_t *__gb18030ext_decmap(void) pureconst;
const uint16_t *__gb18030ext_encmap(void) pureconst;
const uint16_t *__gb2312_decmap(void) pureconst;
const uint16_t *__gbcommon_encmap(void) pureconst;
const uint16_t *__gbkext_decmap(void) pureconst;
const uint16_t *__jisx0208_decmap(void) pureconst;
const uint16_t *__jisx0212_decmap(void) pureconst;
const uint16_t *__jisx0213_1_bmp_decmap(void) pureconst;
const uint16_t *__jisx0213_1_emp_decmap(void) pureconst;
const uint16_t *__jisx0213_2_bmp_decmap(void) pureconst;
const uint16_t *__jisx0213_2_emp_decmap(void) pureconst;
const uint16_t *__jisx0213_bmp_encmap(void) pureconst;
const uint16_t *__jisx0213_emp_encmap(void) pureconst;
const uint16_t *__jisxcommon_encmap(void) pureconst;
const uint16_t *__ksx1001_decmap(void) pureconst;
const uint32_t *__jisx0213_pair_decmap(void) pureconst;
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /*COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_CJKCODECS_SOMANYENCODINGS_H_*/
| 3,678 | 84 | jart/cosmopolitan | false |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.