HEX
Server: Apache
System: FreeBSD www860.sakura.ne.jp 13.0-RELEASE-p14 FreeBSD 13.0-RELEASE-p14 #2: Mon Dec 9 13:54:55 JST 2024 root@www5301.sakura.ne.jp:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
User: yoyo0427 (1306)
PHP: 8.3.8
Disabled: NONE
Upload Files
File: //usr/local/lib/python3.8/lib-dynload/select.cpython-38.so
ELF	>PI@0k@8
@@@@00D9D9P9PIPI`#`#�\�|�|88�^���
�
�\�|�|��R�td�\�|�|88P�td�4�4�4��Q�tdpppFreeBSD��
 !"0L[s~�������&8FZm}��������	/BSa{��������(:N\|������3?O^w����������h�h�
�It��(z��(z�J
@J��������MM<2-FB%=?9 J$/>&"D
8GA+K:!*H61I4L@C#(7	
)0,'.5;3E_fini_init_Jv_RegisterClasses__cxa_finalizePyArg_ParseTupleAndKeywordsPyDict_DelItemPyDict_GetItemWithErrorPyDict_NewPyDict_NextPyDict_SetItemPyErr_CheckSignalsPyErr_ExceptionMatchesPyErr_FormatPyErr_NoMemoryPyErr_OccurredPyErr_SetFromErrnoPyErr_SetStringPyEval_RestoreThreadPyEval_SaveThreadPyExc_OSErrorPyExc_OverflowErrorPyExc_RuntimeErrorPyExc_TypeErrorPyExc_ValueErrorPyFloat_TypePyInit_selectPyList_NewPyList_SetItemPyLong_AsLongPyLong_AsSize_tPyLong_FromLongPyMem_FreePyMem_MallocPyMem_ReallocPyModule_AddIntConstantPyModule_AddObjectPyModule_Create2PyOS_snprintfPyObject_AsFileDescriptorPyObject_FreePySequence_FastPyTuple_NewPyTuple_PackPyType_GenericNewPyType_IsSubtypePyType_ReadyPyType_TypePyUnicode_FromStringPy_FatalError_PyArg_CheckPositional_PyArg_NoKeywords_PyArg_NoPositional_PyLong_AsInt_PyLong_UnsignedShort_Converter_PyObject_New_PyTime_AsMilliseconds_PyTime_AsTimespec_PyTime_AsTimeval_PyTime_AsTimeval_noraise_PyTime_FromMillisecondsObject_PyTime_FromSecondsObject_PyTime_GetMonotonicClock_Py_Dealloc_Py_FalseStruct_Py_NoneStruct_Py_NotImplementedStruct_Py_TrueStruct_Py_set_inheritable__error__stack_chk_fail__stack_chk_guardclosekeventkqueuepollselectlibc.so.7FBSD_1.0FBSD_1.5/usr/local/lib:/usr/local/liblibthr.so.3�|�I��(�
40��@�P����/��pVP��� �]3`�0^��0(Б�^��P�0��_���/ؒ�`X��*������P���`P�
4X�PNh�P p��2x��S��0$���/���VȔ�$Д?1ؔX�&�>/��`Y�'��2��Y(�`'P��4x�*0��|/ȕ<0�*3��0p��4x�*0��|/��<0��*3���0���0��`aȖ`,Ж�/ؖ�a��,��3��Pb�0-��3��b(�p-P�<4X�phh��/x~p~�~�~�~�~�~�~�~)�~,�~=�~>�~?�~@�~D����ȗ"З!ؗ �+�/�:��7�;�
�� �B(�I0�8�	@�8H�P�<X�
`�(h�Cp�4x���&��$��������%��3����ȘИؘ9�5�H������'�# �-(�*0�.8�@�H�EP�1X�0`�2h�6p�x���F��G��A�?@�?@�?
@This module supports asynchronous I/O on multiple file descriptors.

*** IMPORTANT NOTICE ***
On Windows, only sockets are supported; on Unix, all file descriptors.select($module, rlist, wlist, xlist, timeout=None, /)
--

Wait until one or more file descriptors are ready for some kind of I/O.

The first three arguments are iterables of file descriptors to be waited for:
rlist -- wait until ready for reading
wlist -- wait until ready for writing
xlist -- wait for an "exceptional condition"
If only one kind of condition is required, pass [] for the other lists.

A file descriptor is either a socket or file object, or a small integer
gotten from a fileno() method call on one of those.

The optional 4th argument specifies a timeout in seconds; it may be
a floating point number to specify fractions of seconds.  If it is absent
or None, the call will never time out.

The return value is a tuple of three lists corresponding to the first three
arguments; each contains the subset of the corresponding file descriptors
that are ready.

*** IMPORTANT NOTICE ***
On Windows, only sockets are supported; on Unix, all file
descriptors can be used.poll($module, /)
--

Returns a polling object.

This object supports registering and unregistering file descriptors, and then
polling them for I/O events.register($self, fd,
         eventmask=select.POLLIN | select.POLLPRI | select.POLLOUT, /)
--

Register a file descriptor with the polling object.

  fd
    either an integer, or an object with a fileno() method returning an int
  eventmask
    an optional bitmask describing the type of events to check formodify($self, fd, eventmask, /)
--

Modify an already registered file descriptor.

  fd
    either an integer, or an object with a fileno() method returning
    an int
  eventmask
    a bitmask describing the type of events to check forunregister($self, fd, /)
--

Remove a file descriptor being tracked by the polling object.poll($self, timeout=None, /)
--

Polls the set of registered file descriptors.

Returns a list containing any descriptors that have events or errors to
report, as a list of (fd, event) 2-tuples.kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0)

This object is the equivalent of the struct kevent for the C API.

See the kqueue manpage for more detailed information about the meaning
of the arguments.

One minor note: while you might hope that udata could store a
reference to a python object, it cannot, because it is impossible to
keep a proper reference count of the object once it's passed into the
kernel. Therefore, I have restricted it to only storing an integer.  I
recommend ignoring it and simply using the 'ident' field to key off
of. You could also set up a dictionary on the python side to store a
udata->object mapping.O|hHILK:keventkqueue()
--

Kqueue syscall wrapper.

For example, to start watching a socket for input:
>>> kq = kqueue()
>>> sock = socket()
>>> sock.connect((host, port))
>>> kq.control([kevent(sock, KQ_FILTER_WRITE, KQ_EV_ADD)], 0)

To wait one second for it to become writeable:
>>> kq.control(None, 1, 1000)

To stop listening:
>>> kq.control([kevent(sock, KQ_FILTER_WRITE, KQ_EV_DELETE)], 0)fromfd($type, fd, /)
--

Create a kqueue object from a given control fd.close($self, /)
--

Close the kqueue control file descriptor.

Further operations on the kqueue object will raise an exception.fileno($self, /)
--

Return the kqueue control file descriptor.control($self, changelist, maxevents, timeout=None, /)
--

Calls the kernel kevent function.

  changelist
    Must be an iterable of kevent objects describing the changes to be made
    to the kernel's watch list or None.
  maxevents
    The maximum number of events that the kernel will return.
  timeout
    The maximum time to wait in seconds, or else None to wait forever.
    This accepts floats for smaller timeouts, too.POLLINPOLLOUTKQ_NOTE_PDATAMASKunregisterkqueueKQ_FILTER_VNODEKQ_NOTE_LINKKQ_FILTER_PROCflagsKQ_FILTER_TIMERregistercloseselect.pollselect.kqueueTrue if the kqueue handler is closedKQ_NOTE_CHILDKQ_FILTER_AIOKQ_NOTE_WRITEtimeout must be a float or NonefilterPOLLRDBANDfflagsPOLLHUPKQ_NOTE_LOWATchangelist is too longPOLLPRIKQ_EV_EOFKQ_NOTE_TRACKERRtimeout must be positive or NoneKQ_NOTE_RENAMEI/O operation on closed kqueue objectudatafromfdPOLLWRBANDKQ_FILTER_SIGNALKQ_NOTE_TRACKKQ_FILTER_WRITEKQ_NOTE_REVOKEmodifyconcurrent poll() invocationKQ_EV_DELETEKQ_NOTE_EXTEND<select.kevent ident=%zu filter=%d flags=0x%x fflags=0x%x data=0x%llx udata=%p>Length of eventlist must be 0 or positive, got %dKQ_EV_ENABLEtimeout must be non-negativetoo many file descriptors in select()Unreachable C code path reachedtimeout argument must be a number or None, got %.200sKQ_EV_CLEARKQ_NOTE_DELETEpollfiledescriptor out of range in select()arguments 1-3 must be sequencesKQ_EV_ONESHOTKQ_NOTE_EXECdataPOLLRDNORMKQ_EV_DISABLEtimeout is too largeselect.keventKQ_EV_ERRORPOLLERRKQ_FILTER_READKQ_EV_ADDKQ_EV_FLAG1KQ_NOTE_FORKinteger argument expected, got floatfilenocontrolerrorPIPE_BUFkeventKQ_NOTE_PCTRLMASKselectKQ_NOTE_EXITchangelist is not iterableclosedPOLLNVALPOLLWRNORMKQ_EV_SYSFLAGSKQ_NOTE_ATTRIBtimeout must be an integer or Noneidentchangelist must be an iterable of select.kevent objects;���x��((P� ��!��!�(#��$(%PX)��)��*��+,0�,`�,�x-��-��2�3@zRx�$ tA�C
C��l,DxDA�C
P������A$t�XA�C
B�Q,���A�C
M������$�P�A�C
G�������9A�C
B�n, HA�C
M�����1A,D(!UA�C
M�����A$tX"uA�C
F���j,��"FA�C
M������A$��&xA�C
J��dA,�('�A�C
F����A,$�'�A�C
K�����A$T�(UA�C
F���E,|�(rA�C
F���VEL,� )pA�C
C��AXE$�`)qA�C
C��i$�)+A�C
HEY,,�)BA�C
M������A,\�.�A�C
F����A$�P/ A�C
[UH��SPH�=5tH�=�E�H�U3f.�H�H�HH��r��H����H��[]�@UH��H�=�4tH�=3t
H�=3]�;]����������UH��AVSH�="E���(H���IH��H��4H�H�H�H�5��H���H�5���H���H�=9E�����H�5���H����H�5��H����H�5���H���H�5���H���H�5���H���H�5��� H���|H�5t��@H���hH�5b���H���TH�5i��H���@H�5���H���,H�}3H�.GH�=�EL�5p3L�5�E����H��EH��EH�5��H����L�5WGH�=HG������H�4GH�,GH�5��H���H�5��H��H������H�5x�H��H������yH�50�H��H������cH�5|�H��H������MH�5��H��H������7H�5�H��H������!H�5l�H��H������H�5b��H���H�5#��H����H�5���H����H�5���H���H�5���H���H�5�� H���H�5����H���H�5��� H���kH�5����H���WH�5���@H���CH�5W��H���/H�5���H���H�5���H���H�5@��H����H�5"��H����H�5��H����H�5H�� H���H�5���@H���H�5��A����H���H�5���@H���uH�5[�� H���aI��pH�5�H��L���HH�5=����H���4H�5��H��� H�5���H���H�5W��H����1�H��[A^]�f.�f�UH��AWAVAUATSH���I��H��L�5'0I�H�E�H�B�H��r!H�=����L������\L�+L�cH�CH��>��I��}mH�5�/H;5�/tjH��>��������H��>��L��>��L����q�����H��>��y&H��/H�8H�5����H�sH;5m/u�E1�Dž̿������Dž�������Dž�?������H�� ?��H������L�������A��H���>��H�����L���s���k��H�� >��H���?��H��>���O���GD9�DM�D9�DM�M��t;�H�>��I���-H��.H�;���tH�;H�5��E1���E1��H����H�� ?��H���>��H�� >��D��M���A��H����s�8��L���Jf��KI���S�D��H�� ?��H���>��H�� >��M���=A��L���B��8u@�C���dM��t��H��H)�H��>���VH��>�����x���E����H��-H�8�E1�L�5�-1��f�H��H��@t0��̿��x&H������H��t�HDŽ����H��u�����Dž̿������1��f�H��H��@t0�����x&H�����H��t�HDŽ���H��u����Dž�������1��f�H��H��@t0���?��x&H���?��H��t�HDŽ�?��H��u��5��Dž�?������I�H;E���L��H���[A\A]A^A_]�L�5x,E1����W�)��?��)��?��)�p?��)�`?��)�P?��)�@?��)�0?��)� ?��)��>��)��>��)��>��)��>��)��>��)��>��)�?��)�?��)� >��)�0>��)�@>��)�P>��)�`>��)�p>��)��>��)��>��H�� ?��H��������I��H���>��H������I��H�� >��H���?���I���H��t
E1�M��u�+�L��L��L��1��I��M��tI��uL����M��tI�$�uL���M��L�5&+�����I�������L����{����f.�f�UH��SPH�=�;�H��t5H���@H�@ �@(�H�CH��uH��uH���41�H��H��[]��UH��AWAVAUATSH��H�U�H�W�FpF`FPF@F0F FH�u�H�5����2H����I��H�x�������A�E1�f.�I�D$����K�4�DJ��ID$L�(M����I�EL���������=�wy������H���H�M�H	4I�� t_9�M�H�M�N�lq�B�Dq�B�Dq�I��B�Dq���I��M;|$�O�����I�$�uV�L������M1�I�$�uD�:H�5q���H�5���H�B)H�8�2I�E�uL���I�$������uL�����H��[A\A]A^A_]�f.�@UH��AWAVATSH��I��1��~x(H�CHcH�H��H��I��H�ʃ��8H�@y��H��t_I�ǃ{�UE1��A���{H�[x?HcCH��H��I��H��s�H�H�Ic�L���h��y�I��uL����E1�L��[A\A^A_]��UH��SPH��H� H��t�9H�{H��tH��u�H��H��[]�'�UH��AWAVAUATSH��H��I��I��L�-�'I�EH�E�f�E�H�B�H��r!H�=�����H���N����I�?�~�����A��A�H��|I�H�u����tYD�m�Ic��H��tGH��L���H��tBI��I�~H��H���A��H��uH���I��L�-
't)E��y1�D1�L�-�&�;H��L�-�&u,H���l�"L���bE��xA�FH��&H��1�I�MH;M�uH��[A\A]A^A_]��X�UH��AWAVAUATSH��I��I��L�-z&I�MH�M�H��t$H��H�=	����H�������I�?�8�������I�H�u��p����D�}�Hc��kH��t{H��I�~H���wH��t5L���JH��tLI��I�~H��H���CA��H��tZI��tbE��yj�2�XH��u���H��%H�8�H��uH���1�I�MH;M�u?H��[A\A]A^A_]�H���I��u�L����E��x�A�FH�V%H���f.��UH��AWAVSPI��H������tNHc��nH��tAH��I�~H���A��H��tA���t#A�FH��$H��H���^A���u�1�H��[A^A_]�f.��UH��AWAVAUATSH��HH��I��I��L�%�$I�$H�E�H��r!H�=���E1��H��1��(����H��~ZI�6H�E�����H;5Y$tNH�}��������H�}����I��Ic�L9��H�5$H�8H�5����)H�E�����1�I�����A�}(t9H�$H�8H�5�����E1�I�$H;E��SL��H��H[A\A]A^A_]�A�}��A�E(�I����I�} L�m�A�uD���6A��L�����8��H�]�����MH�E��@(E�����`���H�L#H�;�$���I���H�;H�5����5���H�}�����
H��H]�M���������H�]�I�EI�] H�pA�uHc�H��<t
I�E �H�� H��H���~I�E H����H�E�I�}H�u�H�U�H�M��d��L���IE1�L�u�f�H�}��WH�K B�)H�}��FH�K fB�D)H�{H�u�H�U�L���I����u��CI��H�]��x���I�] ��<���1�M����������H�]�f.��H�}�x#��H�}�H)�H�}��U��yI����I�����H�{ �sD���dA��L�������8u����t��5���H�E��@(E����D��H���r
H�������I�Dž��~���E1�E1�L�}�H�]�H�E�H�@ Mc�DM��I��fB�|�t��&H��tvH��L�}�I�G Jc<��]
H��tKH�CI�G B�|��E
H��t3H�C L�}�I�GJ��I��H�]�I9�u��7H�� H�8�2����H��L�}�uH���+I��uL���E1�L�%� ����C(E1������*f.�UH��AVSH��0L�5S I�H�E�H�OD�GD�O�GG D$�$H���H�����H��1��*
H���2
I�H;M�uH��0[A^]���UH��AWAVSPA��H��I��H�~H�:2H9�tH�5.2����tnH�CI9Gu:�CfA9Gu*�CfA9Gu$�CA9GuH�C I9G uH�K(1�I9O(t�����������A��w[D��H�>���Hc�H��y�
H�p���~
H�k���t�H�fH�H��[A^A_]Å���ׅ�t��х�x���H�=����A�UH��AWAVATSH��H��L�5�I�H�E�H�GL�O�G��L�WL�_L� L�g(W�GG,G<�GLH����H�
i6L�E�H��H��H�¸ATAWASAR��H�� ��tH�}�H�G���u�L
H���������H�C��	H���I�H;M�u
H��[A\A^A_]���	UH��AWAVSPH��D�E��x(�C�����	I��D���c��y�
	L���"	H�CH��H��[A^A_]��@f.��UH��AWAVSPI��H��L�=�1L9�uH��tH�=A�����t4L9�uM��tH�='��L�����tH�߾����H��[A^A_]�1�H��[A^A_]�f.�@UH��AVSI��H�~H;=ktH��H�5_�J
��tH�H�8H�5���1�[A^]�H���
�Ã��tL����[A^]��gH��u���UH��AVS�_��x-�G������I�Ɖ��
1ۅ�y��L�����1�����8x
H�{H��H�NH�8��1�[A^]�f.�DUH����x]�H�@H�8H�5Q���)1�]�DUH��AWAVAUATSH��XH��I��I��L�%�I�$H�E�H��H��H��tH�= ����H�����t:I�GH�xH;=�tM�7H�5�����t8H��H�8H�5����1�I�$H;E���H��H��X[A\A]A^A_]�I��	�ƒ����H��}H�PA�}x|����1�H�E�H;4��A��H�}�H�޺������H�}�H�u�H�u������e���H�}�D��y|H��H�8H�5����@���I�_A�}y�H��H�8H�5�������A���?D��L�%�H���	����:���H��H�8H�5���1�1��=���1�H�E�L;5k�U�toH�5���L���7H�������H��H�E�H�X��H9�|wH�JH�8H�5����#�pH�'H�8H�CH�PH�5���1�1���f���E1����hHc�H���H���U��1�H�E�1�E1��Hc�H��9�H��H�� H���uH����H�E�H�]���H�M����E�H��H��H��H�E�E1�H�5�+E1��ACK S0[@H�E�B\00BT0 BL0B0I��H��I��@L9u���H�A���H��tJ��HAH�H�{H9�t�H�5_+H�U��H�5O+H�U�H�M����p���H��H�8H�5����1�E1�L�}���1�E1�E1��zH��uH���L�}��U��������1�H�E�H�}�t�RHE��1�H�E�1�H�E��kH���s�A�}M��L��H�U�H�M�D�E�L�M��A��H���c�>�8u>�d����H�}�M��t���H�}�H)�H�}�x/H�u�����u�1��A���uH��H�8�6�E1�Ic��H��t{H��E��~]E��I��1�H�E�E1�H�=�)�MH��tZH�M�B�BL�BT� B\�0X@P0H @H�KJ�9I��M9�u�L���dH�}��[���1�H�E�1�M��L�u�L���?L���7H��tH��uH���H�}�H���d���H���Z����h�P����f.�@UH��AWAVSP��E1�1���0H��teI�ƃ��t
A�^��y0�3�H���A�FH����A�~��x1�1��x��x3M��� I��uL����H�:H�8��E1�L��H��[A^A_]�I��u�L����ߐUH��y	H�O�H�NH�]�UH��SPH�H�H�HH��r��H����H��[]�H������H���H���{�H����5�.�%�.@�%�.h����%�.h�����%�.h����%�.h����%�.h����%�.h����%�.h����%�.h�p����%�.h�`����%z.h	�P����%r.h
�@����%j.h�0����%b.h� ����%Z.h
�����%R.h�����%J.h���%B.h����%:.h�����%2.h����%*.h����%".h����%.h����%.h����%
.h�p����%.h�`����%�-h�P����%�-h�@����%�-h�0����%�-h� ����%�-h�����%�-h�����%�-h���%�-h ����%�-h!�����%�-h"����%�-h#����%�-h$����%�-h%����%�-h&����%�-h'�p����%�-h(�`����%z-h)�P����%r-h*�@����%j-h+�0����%b-h,� ����%Z-h-�����%R-h.�����%J-h/���%B-h0����%:-h1�����%2-h2����%*-h3����%"-h4����%-h5����%-h6����%
-h7�p����%-h8�`����%�,h9�P����%�,h:�@����%�,h;�0��������������������X�	���oA�����(

+���o�
�
�|�h
�h�o�	���o\
���o��������0P����
 (��|�hii&i6iFiVifivi�i�i�i�i�i�i�i�ijj&j6jFjVjfjvj�j�j�j�j�j�j�j�jkk&k6kFkVkfkvk�k�k�k�k�k�k�k�kll&l6lFlVlflvl�l�l�lFreeBSD clang version 11.0.1 (git@github.com:llvm/llvm-project.git llvmorg-11.0.1-0-g43ff75f2c3fe)Linker: LLD 11.0.1 (FreeBSD llvmorg-11.0.1-0-g43ff75f2c3fe-1300007)$FreeBSD$.shstrtab.note.tag.dynsym.gnu.version.gnu.version_r.gnu.hash.hash.dynstr.rela.dyn.rela.plt.rodata.eh_frame_hdr.eh_frame.text.init.fini.plt.ctors.dtors.jcr.init_array.dynamic.got.data.got.plt.commentpp��8���o�	�	�+���o\
\
0:���o�
�
(D�
�
pJ(
(
+RBXX�\B���f2��Vn�4�4�|�5�5��PIP9l��h�X��h�X��h�X���|�\��|�\��|�\��|�\��|�\��p~p^x���^�����g��0�i�Jj�