@ @P 0(__TEXT@@__text__TEXTD __stubs__TEXT--__stub_helper__TEXT-2-__cstring__TEXT.v.__const__TEXTp11p1__unwind_info__TEXT?\?__DATA@@@@__nl_symbol_ptr__DATA@@__got__DATA@8@__la_symbol_ptr__DATA@@@@%__data__DATA0A0AH__LINKEDIT["0PxV P112$؈BUGkm;(H)=m$  * 8d /usr/lib/libSystem.B.dylib&h)xMUHSPH=S!{ HyHH5HU MH5H9 1H5}H H5iH H5UH1 H5DCH H58H H5$H H5Hx pH5H\ TH5H@ 8H5H$ H5 H H5H H5H H52H H5uH H5aH| uxH5QHd u`H5A@HL uHH503H4 u0H5$0H uH5H tH uH) 1HH[]f.UHAWAVAUATSH(HIHHHEHHHtH=: H tHI<$ x;AID$HxH;=.tH5%z tBHH8H5  E1H HH;ELH([A\A]A^A_]I|$< AƃH}E1DžMMtMd$DžMMuLH= H5 E1DD1 `MH5v HHL1 t=HHHH8H58  H6H5. E1HL1@ E1f.DIċDD1/ Luz 8twHHE1~IDDH1LWu%8u4%tx"G(xHHHH8I^f.UHAWAVAUATSHxHIHHHEHBHrH=s HtFI?x:AIGHxH;=ctH5ZtAH:H8H5. S1HBHH;EHHx[A\A]A^A_]I7IAH}E1Mgt I)xADžMMuLH=V H5[ 1DD1]MH58 H`L1twH`LpDEI"HH92DDH1AH`ErHH5H`L1C:HpH}{H`LLH%ƄIDDL1ALH`dE+HHRI|"H`2H/H8H5HHLBƄ%H HDHD1{AHEtIHHLRH`ExiEtxDRH5m1HL1;IDD1LmxzHHH8?HLfUHAVSHHt HH=HDtFH; x:AHCHxH;=tH5tHH8H51[A^]H{tD[A^]~HuD[A^]f.fUHAWAVAUATSH(IHHBHrH=LvtFH;Rx:AHCHxH;=tH5@t+HH8H5E1LH([A\A]A^A_]H{Aƃt$I} E1E11D1HK1IuE1HuLkIDIML5`MMDMMMDHE$H=H5D1zRft(fufuHH8H5UfEW)EMtLHEHMtLHEHHEfEE1AAIDDHU1LuZ8u\WtHC HxH;=?WIH5/@H{ t+DxI7HH8I HDlf.@UHAWAVAUATSPAAH=H5E1DD1xOE1IDDLu8u+OtxL5FILH[A\A]A^A_]H H8H[A\A]A^A_]%&%(%*%,%.%0%2%4%6%8%:%<%>%@%B%D%F%H%J%L%N%P%R%T%V%X%Z%\%^hhh9hShfh|hhhhxhnhdh3ZhSPhlFh<h2h(hhh  h#LYAS%h7hGh\huhhhfcntlioctlflocklockfinteger argument expected, got floatfcntl.fcntliiOs#fcntl string arg too longI;fcntl requires a file or file descriptor, an integer and optionally a third integer or a stringfcntl.ioctliIOw*:ioctlioctl string arg too longs*:ioctli;ioctl requires a file or file descriptor, an integer and optionally an integer or buffer argumentfcntl.flockiifcntl.lockfiiOOiunrecognized lockf argumentLOCK_SHLOCK_EXLOCK_NBLOCK_UNF_DUPFDF_DUPFD_CLOEXECF_GETFDF_SETFDF_GETFLF_SETFLF_GETLKF_SETLKF_SETLKWF_GETOWNF_SETOWNF_GETPATHF_RDLCKF_WRLCKF_UNLCKFASYNCF_FULLFSYNCF_NOCACHEFD_CLOEXECThis module performs file control and I/O control on file descriptors. It is an interface to the fcntl() and ioctl() Unix routines. File descriptors can be obtained with the fileno() method of a file or socket object.fcntl($module, fd, cmd, arg=0, /) -- Perform the operation `cmd` on file descriptor fd. The values used for `cmd` are operating system dependent, and are available as constants in the fcntl module, using the same names as used in the relevant C header files. The argument arg is optional, and defaults to 0; it may be an int or a string. If arg is given as a string, the return value of fcntl is a string of that length, containing the resulting value put in the arg buffer by the operating system. The length of the arg string is not allowed to exceed 1024 bytes. If the arg given is an integer or if none is specified, the result value is an integer corresponding to the return value of the fcntl call in the C code.ioctl($module, fd, request, arg=0, mutate_flag=True, /) -- Perform the operation `request` on file descriptor `fd`. The values used for `request` are operating system dependent, and are available as constants in the fcntl or termios library modules, using the same names as used in the relevant C header files. The argument `arg` is optional, and defaults to 0; it may be an int or a buffer containing character data (most likely a string or an array). If the argument is a mutable buffer (such as an array) and if the mutate_flag argument (which is only allowed in this case) is true then the buffer is (in effect) passed to the operating system and changes made by the OS will be reflected in the contents of the buffer after the call has returned. The return value is the integer returned by the ioctl system call. If the argument is a mutable buffer and the mutable_flag argument is false, the behavior is as if a string had been passed. If the argument is an immutable buffer (most likely a string) then a copy of the buffer is passed to the operating system and the return value is a string of the same length containing whatever the operating system put in the buffer. The length of the arg buffer in this case is not allowed to exceed 1024 bytes. If the arg given is an integer or if none is specified, the result value is an integer corresponding to the return value of the ioctl call in the C code.flock($module, fd, operation, /) -- Perform the lock operation `operation` on file descriptor `fd`. See the Unix manual page for flock(2) for details (On some systems, this function is emulated using fcntl()).lockf($module, fd, cmd, len=0, start=0, whence=0, /) -- A wrapper around the fcntl() locking calls. `fd` is the file descriptor of the file to lock or unlock, and operation is one of the following values: LOCK_UN - unlock LOCK_SH - acquire a shared lock LOCK_EX - acquire an exclusive lock When operation is LOCK_SH or LOCK_EX, it can also be bitwise ORed with LOCK_NB to avoid blocking on lock acquisition. If LOCK_NB is used and the lock cannot be acquired, an OSError will be raised and the exception will have an errno attribute set to EACCES or EAGAIN (depending on the operating system -- for portability, check for either value). `len` is the number of bytes to lock, with the default meaning to lock to EOF. `start` is the byte offset, relative to `whence`, to that the lock starts. `whence` is as with fileobj.seek(), specifically: 0 - relative to the start of the file (SEEK_SET) 1 - relative to the current buffer position (SEEK_CUR) 2 - relative to the end of the file (SEEK_END) X88-8 @  !------. ...(.2.<.F.P.Z.d.n.x............p1A."P2.P%05/):/);!@`FRAp(RASASASAQ>@_PyExc_OSErrorQq@_PyExc_TypeError@_PyExc_ValueError@_PyFloat_Type@__Py_NoneStruct@___stack_chk_guard@dyld_stub_binderq@>@_PyBuffer_ReleaseqH>@_PyBytes_FromStringAndSizeqP>@_PyErr_CheckSignalsqX>@_PyErr_Clearq`>@_PyErr_Occurredqh>@_PyErr_SetFromErrnoqp>@_PyErr_SetStringqx>@_PyEval_RestoreThreadq>@_PyEval_SaveThreadq>@_PyLong_AsLongq>@_PyLong_AsUnsignedLongMaskq>@_PyLong_FromLongq>@_PyModule_AddIntConstantq>@_PyModule_Create2q>@_PyObject_AsFileDescriptorq>@_PyObject_IsTrueq>@_PySys_Auditq>@_PyType_IsSubtypeq>@__PyArg_CheckPositionalq>@__PyArg_Parse_SizeTq>@__PyLong_AsIntq>@__Py_Deallocq@___errorq@___memcpy_chkq@___stack_chk_failq@_fcntlq@_flockq@_ioctlq@_memcpy_PyInit_fcntl??o"|P%))`,p1P205:; 0A A-dSdaf`.$$N."$"$N.P%[$P%$N.)h$)$N.)u$)$N.`,$`,$N&p1&P2&05&:&;& 0A& Ad"=Q^n &7Pb}.AHOV^23456789:?@ABCDEFGHIJKMNOQRST@;<=>LPU23456789:?@ABCDEFGHIJKMNOQRST _PyInit_fcntl_PyBuffer_Release_PyBytes_FromStringAndSize_PyErr_CheckSignals_PyErr_Clear_PyErr_Occurred_PyErr_SetFromErrno_PyErr_SetString_PyEval_RestoreThread_PyEval_SaveThread_PyExc_OSError_PyExc_TypeError_PyExc_ValueError_PyFloat_Type_PyLong_AsLong_PyLong_AsUnsignedLongMask_PyLong_FromLong_PyModule_AddIntConstant_PyModule_Create2_PyObject_AsFileDescriptor_PyObject_IsTrue_PySys_Audit_PyType_IsSubtype__PyArg_CheckPositional__PyArg_Parse_SizeT__PyLong_AsInt__Py_Dealloc__Py_NoneStruct___error___memcpy_chk___stack_chk_fail___stack_chk_guard_fcntl_flock_ioctl_memcpydyld_stub_binder_fcntl_fcntl_fcntl_ioctl_fcntl_flock_fcntl_lockf_fcntl_flock_impl_module_doc_fcntl_fcntl__doc___fcntl_ioctl__doc___fcntl_flock__doc___fcntl_lockf__doc___fcntlmodule_fcntl_methods/Users/sysadmin/build/v3.9.6/Modules/fcntlmodule.c/private/tmp/_py/_bld/python/build/temp.macosx-10.9-universal2-3.9/Users/sysadmin/build/v3.9.6/Modules/fcntlmodule.o_PyInit_fcntl/Users/sysadmin/build/v3.9.6/Include/object.h_fcntl_fcntl/Users/sysadmin/build/v3.9.6/Modules/clinic/fcntlmodule.c.h_fcntl_ioctl_fcntl_flock_fcntl_lockf_fcntl_flock_impl_module_doc_fcntl_fcntl__doc___fcntl_ioctl__doc___fcntl_flock__doc___fcntl_lockf__doc___fcntlmodule_fcntl_methods )4c `  x@ fcntl.cpython-39-darwinDJ3H93M7VJݔ[g=d=UC2̊PE |JZ*g.X2s0PT5w(U£V?]/:z&~'*B)O:PH!?ï&%=SkO͕{=SkO͕{=SkO͕{VdkA|6p  fcntl.cpython-39-darwin *Hcd *Hcd subject.OU DJ3H93M7VJqq com.apple.security.cs.allow-dyld-environment-variables com.apple.security.cs.disable-library-validation com.apple.security.cs.disable-executable-page-protection com.apple.security.automation.apple-events C#`  x@ fcntl.cpython-39-darwinDJ3H93M7VJjjkEތ;gptpoE"9Ӧ La>;2F|"j;Z lO b;{@"L@Q,՟3Ta,YFhޔ67=9x\-\W:gGd,bj?L9B.J}e\*j~_?L~I=T853g_Zƨ W&[qˋjXofkOX||zڽH,XofkOX||zڽH,XofkOX||zڽH,qG&2eZ%(g'tS7| #.0 *H 010  `He0 *H 700z–! 0  *H  0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0 120201221215Z 270201221215Z0y1-0+U $Developer ID Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUS0"0  *H 0 vO[A#+_s?5 ?$?O>mG V)甝5 ʹ`)xEii`k_#:"1O4YBx.3E EoZ[: 2m6lp&D{H X#ş9~]2_R@꾬d[jDl>İ&{^j=GX1? v(mNi&NVtKfxLY00UW|-,T0U00U#0+iGv k.@GM^0.U'0%0#!http://crl.apple.com/root.crl0U0 *Hcd0  *H  B9tkƤ7* D,Ya2Կ;P9jDt[pKl#q-_œpe- xXI (3zvOߨJ Vg/>ă:wmt.#Qo`H»ZFE~' "rorPu=%]6H9;ꐀ.`x S>O2VMxଚBzFXV,*E K4aUD'sNp000  *H 0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0 060425214036Z 350209214036Z0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0"0  *H 0 䑩 GP^y-6WLUKl"0>P Af$kУ*z G[73Mir]_%UM] d5#KYPXPg ˬ, op?0C=+I(ε^=: !.t< bqGSU/ApLE~LkPAtb A30XZ2hesg^eIv3ew-z0v0U0U00U+iGv k.@GM^0U#0+iGv k.@GM^0U 00 *Hcd00*+https://www.apple.com/appleca/0+0Reliance on this certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certificate policy and certification practice statements.0  *H \6L-x팛wvw0O=G7@,ԱؾsdyO4آ>xk}9S 8ıO k+Y |@Vtӷ#;Go$ѷpE'mx~"5%kԢ$#s`[ /DH`8=&g 3j /Sj[dc3w:,V!ںsO6U٧2Bq~RB$*M^cKP 7uu!0l0T"^%xV0  *H  0y1-0+U $Developer ID Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUS0 190302073001Z 240302073001Z010 &,d DJ3H93M7VJ1907U 0Developer ID Application: Ned Deily (DJ3H93M7VJ)10U DJ3H93M7VJ10U Ned Deily1 0 UUS0"0  *H 0 jm9-jAŧkC-0HvMi;5;754fpmIAq=Cb4ZjLC_ZcH+j[?n2PCrV|K< :^%Sg2 3Wffk%S?z*g| B qT"G-E?gT5Tx7]ɕ$$^m|t(.6Kt>-$ N,phǾ:00 U00U#0W|-,T0>+2000.+0"http://ocsp.apple.com/ocsp-devid010U 00 *Hcd00(+http://www.apple.com/appleca0+0 Reliance on this certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certificate policy and certification practice statements.0U% 0 +0Uqg&y@gݲ|0U0 *Hcd 0  *H  ,RybM4U${lsMUq8g  q2 b?Wclx*,xx=ujgA L_gMMc$FVM}w{!".A#5qK#o7` I[ ɲxT5&)ʖoZ¤}vvR?l0"{~+9⣃'O Ew(GUݲ)Lj3jH!7,51000y1-0+U $Developer ID Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUS"^%xV0  `He%0 *H  1  *H 0 *H  1 210628153654Z0/ *H  1" |I'3M#f!,#>_P;0[ *Hcd 1N0+|4 &0쏩&0- `He iv͗T#Vu5hn+0[ *Hcd 1LH cdhashes qRwWHHzz/f00DLMQJjDsj6mT3yY= o5AU0O/baXbNl4aH6lTo0SNWdTU= 0  *H  =K0w63ԱNZ7B\0mLҏ T'nʊFs•ML3.Zr#Wo0WQpo;^ݐg\`*LZ +pɏ;WkQgQoT!fۼ ]%E4{fVl YXC 7rSwH:<3M֤l5yUI0AHmķ^Qʌǔ á0 *H  10 *H 01 0 +0z *H  ki0g*010  `He *`E~0LeD {3Fhuכ̏p20210628153654Z0n f, 00tb M0  *H  0|100.U 'Apple Timestamp Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUS0 210623184502Z 210804184501Z0A10U Timestamp Signer MA110U Apple Inc.1 0 UUS0"0  *H 0 OɪYΜ?ݻFS}[)pPgH.IiQ+₲(p A226Ei6@>\7CtY [ 䗋j|eM0%~Պ9onviIeU;NztDTh(#hK̤ CB$4LyJ\gBzi@ŝsymmY9} )ז`Oc,ZpQ 00 U00U#04%N78X&)0U 00 *Hcd00(+http://www.apple.com/appleca0+0 Reliance on this certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certificate policy and certification practice statements.0U% 0 +03U,0*0(&$"http://crl.apple.com/timestamp.crl0U,|=ɕDXq'$0U0  *H  /U/ݱ,~bj$wڂt%L>C.u /v&Ț[51FnWy9ԡhZqTt^-[['.0)7xǘ31FH[ -O3ХD~ 'rEB } s@/P'4p <No97ڞecIm] 9 :JidF5ea. =o%L x"!{[ѣ~I; r3,JZr 9Pt(ny_~VVlĮ (tM&By^`EXQI^JMs{Rˣ]klt-D>a>E~4u&@u0Kw00U4%N78X&)0U00U#0+iGv k.@GM^0.U'0%0#!http://crl.apple.com/root.crl0U0 *Hcd 0  *H  6qS#xe[#Ǣϴ(p!93rC=BQu]ˌjj:T}k>mzT_Cv\ N<>r4\g e0B4ӧBsu|QC`ܮ'kg3EoɘMiKEN"W""En?厸F\ɰ:m7(FeoUhR>?&:k22H;Kу000  *H 0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0 060425214036Z 350209214036Z0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0"0  *H 0 䑩 GP^y-6WLUKl"0>P Af$kУ*z G[73Mir]_%UM] d5#KYPXPg ˬ, op?0C=+I(ε^=: !.t< bqGSU/ApLE~LkPAtb A30XZ2hesg^eIv3ew-z0v0U0U00U+iGv k.@GM^0U#0+iGv k.@GM^0U 00 *Hcd00*+https://www.apple.com/appleca/0+0Reliance on this certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certificate policy and certification practice statements.0  *H \6L-x팛wvw0O=G7@,ԱؾsdyO4آ>xk}9S 8ıO k+Y |@Vtӷ#;Go$ѷpE'mx~"5%kԢ$#s`[ /DH`8=&g 3j /Sj[dc3w:,V!ںsO6U٧2Bq~RB$*M^cKP 7uu!1?0;00|100.U 'Apple Timestamp Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUStb M0 +0 *H  1  *H  0 *H  1 210628153654Z0# *H  1<{/!W 62$Dz0+ *H   1000ɪ̴_I vr0  *H f`ц%;eoer+-cNh:=ʸ|w*gɺMN,Y%B;ǯC?~0?]y]8ke-y?]4=لg Q"+uFooH,gbRZT ռb@/!.@lju=R"Gh㐺\dzȱO|VP6p,)Y"4 g9 tQb)gȭ> 8(__TEXT@@__text__TEXT __stubs__TEXT<,\<, __stub_helper__TEXT-t-__cstring__TEXT /v /__const__TEXT11__unwind_info__TEXT?l?__DATA_CONST@@@@__got__DATA_CONST@8@__DATA@@__la_symbol_ptr__DATA$__data__DATAH__LINKEDITP\"0HpU P001$A5|L=@ 2    * 8d /usr/lib/libSystem.B.dylib&`)pMO{C`  ա~RJ@0 "R@5A0 BR:50 R4 5A0 R.`50 ( 5A0 bR" 50 "R 50 BR` 50 bR 50 R  50 R 50 R`50 "R5P R5p R 5 BR`5!P "R5P bR5!P BR 5~P R`5!~0 bR5}0 R5A}p "R4h@haT{AO¨__WO{ ըX@H Tf BRcR4@@7@@ ըXT !X4 (X@c tҨ\ )X)@?aT{COBWA_Ĩ_֠@1TjT @7 (X`0 `0 o7#`0 o4@_T ըX@^ 7 1a^P [487@e,1TV@qT4@RN N1T?@qT457*7@ ըX@0o_WO{ X@H TQP BRR4@@7@@ XT ՁX4 ՈX@!O Ҩ[ ՉX)@?T{DOCWB_AoŨ_֠@1TjT @aT5Rs X P AP  7vO @4@@4T`T~@~ 6i@6|Lp 4@*T@#Rj58z~@oX7W+TP hX@!G0 Ս#Rk68Z~@N4T075.o2C \49~@s@l-7*6Y hX@SVO{C_T7 BRCR84`@)@7h@@ XT ՁX'`4 ՈX@!5 {AO¨_`@#1T{AO¨@{AO¨Cg_WO{HT0P BRR4@`7@@ ըXT 9X4 X@- {HOGWF_EgDC_֠@1TjT @!TR 5XS @4p a4p ռ`7"qTHR 47T7 ըX@20 @T@@T AX`5@1T(RhR{y~mxg@yrRla1T@q!TK47@ ըX@ICWO{O@' a' W 7=o31!T]@qT 4u7 @X@{COBWA_ X@{COBWA X X НX հX ՐX pX PX 0X X X МX հX ՐX pX PX 0X X X ЛX հX ՐX pX PX 0X X X КX հX ՐXPAP>P;9P8SP5fP2|P/P,P)P&P#P P/PNPfPPPP PPPQ G XP/P?PTPmP{PPfcntlioctlflocklockfinteger argument expected, got floatfcntl.fcntliiOs#fcntl string arg too longI;fcntl requires a file or file descriptor, an integer and optionally a third integer or a stringfcntl.ioctliIOw*:ioctlioctl string arg too longs*:ioctli;ioctl requires a file or file descriptor, an integer and optionally an integer or buffer argumentfcntl.flockiifcntl.lockfiiOOiunrecognized lockf argumentLOCK_SHLOCK_EXLOCK_NBLOCK_UNF_DUPFDF_DUPFD_CLOEXECF_GETFDF_SETFDF_GETFLF_SETFLF_GETLKF_SETLKF_SETLKWF_GETOWNF_SETOWNF_GETPATHF_RDLCKF_WRLCKF_UNLCKFASYNCF_FULLFSYNCF_NOCACHEFD_CLOEXECThis module performs file control and I/O control on file descriptors. It is an interface to the fcntl() and ioctl() Unix routines. File descriptors can be obtained with the fileno() method of a file or socket object.fcntl($module, fd, cmd, arg=0, /) -- Perform the operation `cmd` on file descriptor fd. The values used for `cmd` are operating system dependent, and are available as constants in the fcntl module, using the same names as used in the relevant C header files. The argument arg is optional, and defaults to 0; it may be an int or a string. If arg is given as a string, the return value of fcntl is a string of that length, containing the resulting value put in the arg buffer by the operating system. The length of the arg string is not allowed to exceed 1024 bytes. If the arg given is an integer or if none is specified, the result value is an integer corresponding to the return value of the fcntl call in the C code.ioctl($module, fd, request, arg=0, mutate_flag=True, /) -- Perform the operation `request` on file descriptor `fd`. The values used for `request` are operating system dependent, and are available as constants in the fcntl or termios library modules, using the same names as used in the relevant C header files. The argument `arg` is optional, and defaults to 0; it may be an int or a buffer containing character data (most likely a string or an array). If the argument is a mutable buffer (such as an array) and if the mutate_flag argument (which is only allowed in this case) is true then the buffer is (in effect) passed to the operating system and changes made by the OS will be reflected in the contents of the buffer after the call has returned. The return value is the integer returned by the ioctl system call. If the argument is a mutable buffer and the mutable_flag argument is false, the behavior is as if a string had been passed. If the argument is an immutable buffer (most likely a string) then a copy of the buffer is passed to the operating system and the return value is a string of the same length containing whatever the operating system put in the buffer. The length of the arg buffer in this case is not allowed to exceed 1024 bytes. If the arg given is an integer or if none is specified, the result value is an integer corresponding to the return value of the ioctl call in the C code.flock($module, fd, operation, /) -- Perform the lock operation `operation` on file descriptor `fd`. See the Unix manual page for flock(2) for details (On some systems, this function is emulated using fcntl()).lockf($module, fd, cmd, len=0, start=0, whence=0, /) -- A wrapper around the fcntl() locking calls. `fd` is the file descriptor of the file to lock or unlock, and operation is one of the following values: LOCK_UN - unlock LOCK_SH - acquire a shared lock LOCK_EX - acquire an exclusive lock When operation is LOCK_SH or LOCK_EX, it can also be bitwise ORed with LOCK_NB to avoid blocking on lock acquisition. If LOCK_NB is used and the lock cannot be acquired, an OSError will be raised and the exception will have an errno attribute set to EACCES or EAGAIN (depending on the operating system -- for portability, check for either value). `len` is the number of bytes to lock, with the default meaning to lock to EOF. `start` is the byte offset, relative to `whence`, to that the lock starts. `whence` is as with fileobj.seek(), specifically: 0 - relative to the start of the file (SEEK_SET) 1 - relative to the current buffer position (SEEK_CUR) 2 - relative to the end of the file (SEEK_END) 88=,8 $xpD  ---------...(.4.@.L.X.d.p.|........./ /1X /"^2/$35/(:/(;"`FRAp RASASASAQ>@_PyExc_OSErrorQq@_PyExc_TypeError@_PyExc_ValueError@_PyFloat_Type@__Py_NoneStruct@___stack_chk_guard@dyld_stub_binderr>@_PyBuffer_Releaser>@_PyBytes_FromStringAndSizer>@_PyErr_CheckSignalsr>@_PyErr_Clearr >@_PyErr_Occurredr(>@_PyErr_SetFromErrnor0>@_PyErr_SetStringr8>@_PyEval_RestoreThreadr@>@_PyEval_SaveThreadrH>@_PyLong_AsLongrP>@_PyLong_AsUnsignedLongMaskrX>@_PyLong_FromLongr`>@_PyModule_AddIntConstantrh>@_PyModule_Create2rp>@_PyObject_AsFileDescriptorrx>@_PyObject_IsTruer>@_PySys_Auditr>@_PyType_IsSubtyper>@__PyArg_CheckPositionalr>@__PyArg_Parse_SizeTr>@__PyLong_AsIntr>@__Py_Deallocr@___errorr@___memcpy_chkr@___stack_chk_failr@_fcntlr@_flockr@_ioctlr@_memcpy_PyInit_fcntl??o"|$((p+1^235:;  - X<dbdpf`.$$xNx."$"$N.$$$$hNh.( $($N.($($N.p+'$p+$N9&1E&^2Y&35m&:&;& & Xd"=Q^n &7Pb}.AHOV^123456789>?@ABCDEFGHIJLMNPQRS:;<=KOT123456789>?@ABCDEFGHIJLMNPQRS _PyInit_fcntl_PyBuffer_Release_PyBytes_FromStringAndSize_PyErr_CheckSignals_PyErr_Clear_PyErr_Occurred_PyErr_SetFromErrno_PyErr_SetString_PyEval_RestoreThread_PyEval_SaveThread_PyExc_OSError_PyExc_TypeError_PyExc_ValueError_PyFloat_Type_PyLong_AsLong_PyLong_AsUnsignedLongMask_PyLong_FromLong_PyModule_AddIntConstant_PyModule_Create2_PyObject_AsFileDescriptor_PyObject_IsTrue_PySys_Audit_PyType_IsSubtype__PyArg_CheckPositional__PyArg_Parse_SizeT__PyLong_AsInt__Py_Dealloc__Py_NoneStruct___error___memcpy_chk___stack_chk_fail___stack_chk_guard_fcntl_flock_ioctl_memcpydyld_stub_binder_fcntl_fcntl_fcntl_ioctl_fcntl_flock_fcntl_lockf_fcntl_flock_impl_module_doc_fcntl_fcntl__doc___fcntl_ioctl__doc___fcntl_flock__doc___fcntl_lockf__doc____dyld_private_fcntlmodule_fcntl_methods/Users/sysadmin/build/v3.9.6/Modules/fcntlmodule.c/private/tmp/_py/_bld/python/build/temp.macosx-10.9-universal2-3.9/Users/sysadmin/build/v3.9.6/Modules/fcntlmodule.o_PyInit_fcntl_fcntl_fcntl_fcntl_ioctl_fcntl_flock_fcntl_lockf_fcntl_flock_impl_module_doc_fcntl_fcntl__doc___fcntl_ioctl__doc___fcntl_flock__doc___fcntl_lockf__doc___fcntlmodule_fcntl_methods *4v ` ΀ x@ fcntl.cpython-39-darwinDJ3H93M7VJݔ[g=d=UC2̊PE |.p 㩆A _.~@I3Td>ꍠ kxݴGsߎ*@錟=SkO͕{=SkO͕{=SkO͕{=SkO͕{*2^<7C8=SkO͕{=SkO͕{=SkO͕{:Fo^ AI ""  fcntl.cpython-39-darwin *Hcd *Hcd subject.OU DJ3H93M7VJqq com.apple.security.cs.allow-dyld-environment-variables com.apple.security.cs.disable-library-validation com.apple.security.cs.disable-executable-page-protection com.apple.security.automation.apple-events #` ΀  x@ fcntl.cpython-39-darwinDJ3H93M7VJjjkEތ;gptpoE"9Ӧ La>;2F|"jrkzz&;dARNЏ8ǩ.$дRnYnA ])=Z(nr,&wLD9xGl,Yo$iuUʎa S)́FXofkOX||zڽH,XofkOX||zڽH,XofkOX||zڽH,XofkOX||zڽH,2}ʊ`{s-Bz-ϹjXofkOX||zڽH,XofkOX||zڽH,XofkOX||zڽH,/pz꨽l|,\ #/0 *H 010  `He0 *H 700z–! 0  *H  0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0 120201221215Z 270201221215Z0y1-0+U $Developer ID Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUS0"0  *H 0 vO[A#+_s?5 ?$?O>mG V)甝5 ʹ`)xEii`k_#:"1O4YBx.3E EoZ[: 2m6lp&D{H X#ş9~]2_R@꾬d[jDl>İ&{^j=GX1? v(mNi&NVtKfxLY00UW|-,T0U00U#0+iGv k.@GM^0.U'0%0#!http://crl.apple.com/root.crl0U0 *Hcd0  *H  B9tkƤ7* D,Ya2Կ;P9jDt[pKl#q-_œpe- xXI (3zvOߨJ Vg/>ă:wmt.#Qo`H»ZFE~' "rorPu=%]6H9;ꐀ.`x S>O2VMxଚBzFXV,*E K4aUD'sNp000  *H 0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0 060425214036Z 350209214036Z0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0"0  *H 0 䑩 GP^y-6WLUKl"0>P Af$kУ*z G[73Mir]_%UM] d5#KYPXPg ˬ, op?0C=+I(ε^=: !.t< bqGSU/ApLE~LkPAtb A30XZ2hesg^eIv3ew-z0v0U0U00U+iGv k.@GM^0U#0+iGv k.@GM^0U 00 *Hcd00*+https://www.apple.com/appleca/0+0Reliance on this certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certificate policy and certification practice statements.0  *H \6L-x팛wvw0O=G7@,ԱؾsdyO4آ>xk}9S 8ıO k+Y |@Vtӷ#;Go$ѷpE'mx~"5%kԢ$#s`[ /DH`8=&g 3j /Sj[dc3w:,V!ںsO6U٧2Bq~RB$*M^cKP 7uu!0l0T"^%xV0  *H  0y1-0+U $Developer ID Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUS0 190302073001Z 240302073001Z010 &,d DJ3H93M7VJ1907U 0Developer ID Application: Ned Deily (DJ3H93M7VJ)10U DJ3H93M7VJ10U Ned Deily1 0 UUS0"0  *H 0 jm9-jAŧkC-0HvMi;5;754fpmIAq=Cb4ZjLC_ZcH+j[?n2PCrV|K< :^%Sg2 3Wffk%S?z*g| B qT"G-E?gT5Tx7]ɕ$$^m|t(.6Kt>-$ N,phǾ:00 U00U#0W|-,T0>+2000.+0"http://ocsp.apple.com/ocsp-devid010U 00 *Hcd00(+http://www.apple.com/appleca0+0 Reliance on this certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certificate policy and certification practice statements.0U% 0 +0Uqg&y@gݲ|0U0 *Hcd 0  *H  ,RybM4U${lsMUq8g  q2 b?Wclx*,xx=ujgA L_gMMc$FVM}w{!".A#5qK#o7` I[ ɲxT5&)ʖoZ¤}vvR?l0"{~+9⣃'O Ew(GUݲ)Lj3jH!7,51000y1-0+U $Developer ID Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUS"^%xV0  `He%0 *H  1  *H 0 *H  1 210628153654Z0/ *H  1" fHfe2L~wЯl뛒0[ *Hcd 1N0+XS%KxBTo0- `He sgv.o*4ˣ@ڹ4~ Ěw0[ *Hcd 1LH cdhashes qIvSWFPnBcCmJUsVeELi41T4vG8= c2frvHZ/Lm8q0jSbwMujQNq5/60= 0  *H  G<V *7` ;hlC&%+mPv-'䏑z`&>;#+6LV_xsjD[ p@T4jVH eoL<II0~A,];NqYk !>G$su4 s^q7-I93SfGf ?OV M<࡝0_#"(`Xp2qB } s@/P'4p <No97ڞecIm] 9 :JidF5ea. =o%L x"!{[ѣ~I; r3,JZr 9Pt(ny_~VVlĮ (tM&By^`EXQI^JMs{Rˣ]klt-D>a>E~4u&@u0Kw00U4%N78X&)0U00U#0+iGv k.@GM^0.U'0%0#!http://crl.apple.com/root.crl0U0 *Hcd 0  *H  6qS#xe[#Ǣϴ(p!93rC=BQu]ˌjj:T}k>mzT_Cv\ N<>r4\g e0B4ӧBsu|QC`ܮ'kg3EoɘMiKEN"W""En?厸F\ɰ:m7(FeoUhR>?&:k22H;Kу000  *H 0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0 060425214036Z 350209214036Z0b1 0 UUS10U  Apple Inc.1&0$U Apple Certification Authority10U Apple Root CA0"0  *H 0 䑩 GP^y-6WLUKl"0>P Af$kУ*z G[73Mir]_%UM] d5#KYPXPg ˬ, op?0C=+I(ε^=: !.t< bqGSU/ApLE~LkPAtb A30XZ2hesg^eIv3ew-z0v0U0U00U+iGv k.@GM^0U#0+iGv k.@GM^0U 00 *Hcd00*+https://www.apple.com/appleca/0+0Reliance on this certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certificate policy and certification practice statements.0  *H \6L-x팛wvw0O=G7@,ԱؾsdyO4آ>xk}9S 8ıO k+Y |@Vtӷ#;Go$ѷpE'mx~"5%kԢ$#s`[ /DH`8=&g 3j /Sj[dc3w:,V!ںsO6U٧2Bq~RB$*M^cKP 7uu!1?0;00|100.U 'Apple Timestamp Certification Authority1&0$U Apple Certification Authority10U Apple Inc.1 0 UUSN; Z0 +0 *H  1  *H  0 *H  1 210628153654Z0# *H  1f̢80ʿ560+ *H   1000ٿ [Xd&s]0  *H 8hqBO+[IE1r_,nԇySK.V.zw;eSt,Ar5,K[wWK0gDo0 $Hvg(0;*g q9hAuO9MR\­zC|vX"q,B(pWw "!Зi:5+lT{0&]@ڜMHs9,?l3ĞR,7MU`[0+