biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.40.0__cp312-cp312-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of biotite might be problematic. Click here for more details.

Files changed (104) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/rcsb/download.py +19 -14
  4. biotite/sequence/align/banded.c +256 -235
  5. biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
  6. biotite/sequence/align/kmeralphabet.c +241 -220
  7. biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
  8. biotite/sequence/align/kmersimilarity.c +213 -194
  9. biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
  10. biotite/sequence/align/kmertable.cpp +231 -203
  11. biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
  12. biotite/sequence/align/localgapped.c +256 -235
  13. biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
  14. biotite/sequence/align/localungapped.c +233 -212
  15. biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
  16. biotite/sequence/align/multiple.c +253 -232
  17. biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
  18. biotite/sequence/align/pairwise.c +272 -251
  19. biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
  20. biotite/sequence/align/permutation.c +213 -194
  21. biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
  22. biotite/sequence/align/selector.c +215 -195
  23. biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
  24. biotite/sequence/align/tracetable.c +213 -193
  25. biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
  26. biotite/sequence/codec.c +233 -212
  27. biotite/sequence/codec.cpython-312-darwin.so +0 -0
  28. biotite/sequence/phylo/nj.c +213 -194
  29. biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
  30. biotite/sequence/phylo/tree.c +225 -200
  31. biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
  32. biotite/sequence/phylo/upgma.c +213 -194
  33. biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
  34. biotite/structure/basepairs.py +7 -12
  35. biotite/structure/bonds.c +1173 -1224
  36. biotite/structure/bonds.cpython-312-darwin.so +0 -0
  37. biotite/structure/celllist.c +215 -195
  38. biotite/structure/celllist.cpython-312-darwin.so +0 -0
  39. biotite/structure/charges.c +1050 -1099
  40. biotite/structure/charges.cpython-312-darwin.so +0 -0
  41. biotite/structure/filter.py +30 -37
  42. biotite/structure/info/__init__.py +5 -8
  43. biotite/structure/info/atoms.py +25 -67
  44. biotite/structure/info/bonds.py +46 -100
  45. biotite/structure/info/ccd/README.rst +8 -0
  46. biotite/structure/info/ccd/amino_acids.txt +1646 -0
  47. biotite/structure/info/ccd/carbohydrates.txt +1133 -0
  48. biotite/structure/info/ccd/components.bcif +0 -0
  49. biotite/structure/info/ccd/nucleotides.txt +797 -0
  50. biotite/structure/info/ccd.py +95 -0
  51. biotite/structure/info/groups.py +90 -0
  52. biotite/structure/info/masses.py +21 -20
  53. biotite/structure/info/misc.py +11 -22
  54. biotite/structure/info/standardize.py +17 -12
  55. biotite/structure/io/__init__.py +2 -4
  56. biotite/structure/io/ctab.py +1 -1
  57. biotite/structure/io/general.py +37 -43
  58. biotite/structure/io/mmtf/__init__.py +3 -0
  59. biotite/structure/io/mmtf/convertarray.c +217 -196
  60. biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
  61. biotite/structure/io/mmtf/convertfile.c +215 -195
  62. biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
  63. biotite/structure/io/mmtf/decode.c +223 -202
  64. biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
  65. biotite/structure/io/mmtf/encode.c +213 -194
  66. biotite/structure/io/mmtf/encode.cpython-312-darwin.so +0 -0
  67. biotite/structure/io/mmtf/file.py +34 -26
  68. biotite/structure/io/npz/__init__.py +3 -0
  69. biotite/structure/io/npz/file.py +21 -18
  70. biotite/structure/io/pdb/__init__.py +3 -3
  71. biotite/structure/io/pdb/file.py +5 -3
  72. biotite/structure/io/pdb/hybrid36.c +63 -43
  73. biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
  74. biotite/structure/io/pdbqt/file.py +32 -32
  75. biotite/structure/io/pdbx/__init__.py +13 -6
  76. biotite/structure/io/pdbx/bcif.py +649 -0
  77. biotite/structure/io/pdbx/cif.py +1028 -0
  78. biotite/structure/io/pdbx/component.py +243 -0
  79. biotite/structure/io/pdbx/convert.py +707 -359
  80. biotite/structure/io/pdbx/encoding.c +112803 -0
  81. biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
  82. biotite/structure/io/pdbx/error.py +14 -0
  83. biotite/structure/io/pdbx/legacy.py +267 -0
  84. biotite/structure/molecules.py +151 -151
  85. biotite/structure/sasa.c +213 -194
  86. biotite/structure/sasa.cpython-312-darwin.so +0 -0
  87. biotite/structure/superimpose.py +158 -115
  88. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
  89. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
  90. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
  91. biotite/structure/info/amino_acids.json +0 -1556
  92. biotite/structure/info/amino_acids.py +0 -42
  93. biotite/structure/info/carbohydrates.json +0 -1122
  94. biotite/structure/info/carbohydrates.py +0 -39
  95. biotite/structure/info/intra_bonds.msgpack +0 -0
  96. biotite/structure/info/link_types.msgpack +0 -1
  97. biotite/structure/info/nucleotides.json +0 -772
  98. biotite/structure/info/nucleotides.py +0 -39
  99. biotite/structure/info/residue_masses.msgpack +0 -0
  100. biotite/structure/info/residue_names.msgpack +0 -3
  101. biotite/structure/info/residues.msgpack +0 -0
  102. biotite/structure/io/pdbx/file.py +0 -652
  103. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
  104. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1755
1773
 
1756
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_longlong longlong_t
1758
1776
  *
1759
1777
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1762
1780
  */
1763
1781
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1764
1782
 
1765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1766
1784
  *
1767
1785
  * ctypedef npy_ulong uint_t
1768
1786
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1771
1789
  */
1772
1790
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1773
1791
 
1774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  * ctypedef npy_ulonglong ulonglong_t
1776
1794
  *
1777
1795
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1780
1798
  */
1781
1799
  typedef npy_intp __pyx_t_5numpy_intp_t;
1782
1800
 
1783
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  *
1785
1803
  * ctypedef npy_intp intp_t
1786
1804
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1789
1807
  */
1790
1808
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1791
1809
 
1792
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_uintp uintp_t
1794
1812
  *
1795
1813
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1798
1816
  */
1799
1817
  typedef npy_double __pyx_t_5numpy_float_t;
1800
1818
 
1801
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_double float_t
1804
1822
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1807
1825
  */
1808
1826
  typedef npy_double __pyx_t_5numpy_double_t;
1809
1827
 
1810
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1811
1829
  * ctypedef npy_double float_t
1812
1830
  * ctypedef npy_double double_t
1813
1831
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ struct __pyx_MemviewEnum_obj;
1920
1938
  struct __pyx_memoryview_obj;
1921
1939
  struct __pyx_memoryviewslice_obj;
1922
1940
 
1923
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1941
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1924
1942
  * ctypedef npy_longdouble longdouble_t
1925
1943
  *
1926
1944
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1929,7 +1947,7 @@ struct __pyx_memoryviewslice_obj;
1929
1947
  */
1930
1948
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1931
1949
 
1932
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1950
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1933
1951
  *
1934
1952
  * ctypedef npy_cfloat cfloat_t
1935
1953
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1938,7 +1956,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1938
1956
  */
1939
1957
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1940
1958
 
1941
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1959
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1942
1960
  * ctypedef npy_cfloat cfloat_t
1943
1961
  * ctypedef npy_cdouble cdouble_t
1944
1962
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1947,7 +1965,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1947
1965
  */
1948
1966
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1949
1967
 
1950
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1968
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1951
1969
  * ctypedef npy_clongdouble clongdouble_t
1952
1970
  *
1953
1971
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2258,8 +2276,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2258
2276
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2259
2277
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2260
2278
  #else
2261
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2262
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2279
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2280
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2263
2281
  #endif
2264
2282
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2265
2283
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2275,8 +2293,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2275
2293
  #else
2276
2294
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2277
2295
  #endif
2278
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2279
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2296
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2297
+ to have the same reference counting */
2298
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2280
2299
  #else
2281
2300
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2282
2301
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2894,22 +2913,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2894
2913
  #endif
2895
2914
 
2896
2915
  /* TypeImport.proto */
2897
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2898
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2916
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2917
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2899
2918
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2900
2919
  #include <stdalign.h>
2901
2920
  #endif
2902
2921
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2903
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2922
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2904
2923
  #else
2905
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2924
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2906
2925
  #endif
2907
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2908
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2909
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2910
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2926
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2927
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2928
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2929
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2911
2930
  };
2912
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size);
2931
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size);
2913
2932
  #endif
2914
2933
 
2915
2934
  /* FetchSharedCythonModule.proto */
@@ -3002,7 +3021,7 @@ typedef struct {
3002
3021
  #endif
3003
3022
  void *defaults;
3004
3023
  int defaults_pyobjects;
3005
- size_t defaults_size; // used by FusedFunction for copying defaults
3024
+ size_t defaults_size;
3006
3025
  int flags;
3007
3026
  PyObject *defaults_tuple;
3008
3027
  PyObject *defaults_kwdict;
@@ -18478,7 +18497,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18478
18497
  return __pyx_r;
18479
18498
  }
18480
18499
 
18481
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18500
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18482
18501
  *
18483
18502
  * @property
18484
18503
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18489,7 +18508,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18489
18508
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18490
18509
  PyObject *__pyx_r;
18491
18510
 
18492
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
18511
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
18493
18512
  * """Returns a borrowed reference to the object owning the data/memory.
18494
18513
  * """
18495
18514
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18499,7 +18518,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18499
18518
  __pyx_r = PyArray_BASE(__pyx_v_self);
18500
18519
  goto __pyx_L0;
18501
18520
 
18502
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18521
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18503
18522
  *
18504
18523
  * @property
18505
18524
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18512,7 +18531,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18512
18531
  return __pyx_r;
18513
18532
  }
18514
18533
 
18515
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18534
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18516
18535
  *
18517
18536
  * @property
18518
18537
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18526,7 +18545,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18526
18545
  PyArray_Descr *__pyx_t_1;
18527
18546
  __Pyx_RefNannySetupContext("descr", 1);
18528
18547
 
18529
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
18548
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
18530
18549
  * """Returns an owned reference to the dtype of the array.
18531
18550
  * """
18532
18551
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18539,7 +18558,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18539
18558
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18540
18559
  goto __pyx_L0;
18541
18560
 
18542
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18561
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18543
18562
  *
18544
18563
  * @property
18545
18564
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18554,7 +18573,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18554
18573
  return __pyx_r;
18555
18574
  }
18556
18575
 
18557
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18576
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18558
18577
  *
18559
18578
  * @property
18560
18579
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18565,7 +18584,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18565
18584
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18566
18585
  int __pyx_r;
18567
18586
 
18568
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
18587
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
18569
18588
  * """Returns the number of dimensions in the array.
18570
18589
  * """
18571
18590
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18575,7 +18594,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18575
18594
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18576
18595
  goto __pyx_L0;
18577
18596
 
18578
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18597
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18579
18598
  *
18580
18599
  * @property
18581
18600
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18588,7 +18607,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18588
18607
  return __pyx_r;
18589
18608
  }
18590
18609
 
18591
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18610
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18592
18611
  *
18593
18612
  * @property
18594
18613
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18599,7 +18618,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18599
18618
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18600
18619
  npy_intp *__pyx_r;
18601
18620
 
18602
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
18621
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
18603
18622
  * Can return NULL for 0-dimensional arrays.
18604
18623
  * """
18605
18624
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18609,7 +18628,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18609
18628
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18610
18629
  goto __pyx_L0;
18611
18630
 
18612
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18631
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18613
18632
  *
18614
18633
  * @property
18615
18634
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18622,7 +18641,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18622
18641
  return __pyx_r;
18623
18642
  }
18624
18643
 
18625
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18644
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18626
18645
  *
18627
18646
  * @property
18628
18647
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18633,7 +18652,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18633
18652
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18634
18653
  npy_intp *__pyx_r;
18635
18654
 
18636
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
18655
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
18637
18656
  * The number of elements matches the number of dimensions of the array (ndim).
18638
18657
  * """
18639
18658
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18643,7 +18662,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18643
18662
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18644
18663
  goto __pyx_L0;
18645
18664
 
18646
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18665
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18647
18666
  *
18648
18667
  * @property
18649
18668
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18656,7 +18675,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18656
18675
  return __pyx_r;
18657
18676
  }
18658
18677
 
18659
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18678
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18660
18679
  *
18661
18680
  * @property
18662
18681
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18667,7 +18686,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18667
18686
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18668
18687
  npy_intp __pyx_r;
18669
18688
 
18670
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
18689
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
18671
18690
  * """Returns the total size (in number of elements) of the array.
18672
18691
  * """
18673
18692
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18677,7 +18696,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18677
18696
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18678
18697
  goto __pyx_L0;
18679
18698
 
18680
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18699
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18681
18700
  *
18682
18701
  * @property
18683
18702
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18690,7 +18709,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18690
18709
  return __pyx_r;
18691
18710
  }
18692
18711
 
18693
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18712
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18694
18713
  *
18695
18714
  * @property
18696
18715
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18701,7 +18720,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18701
18720
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18702
18721
  char *__pyx_r;
18703
18722
 
18704
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
18723
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
18705
18724
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18706
18725
  * """
18707
18726
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18711,7 +18730,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18711
18730
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18712
18731
  goto __pyx_L0;
18713
18732
 
18714
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18733
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18715
18734
  *
18716
18735
  * @property
18717
18736
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18724,7 +18743,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18724
18743
  return __pyx_r;
18725
18744
  }
18726
18745
 
18727
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18746
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18728
18747
  * ctypedef npy_cdouble complex_t
18729
18748
  *
18730
18749
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18741,7 +18760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18741
18760
  int __pyx_clineno = 0;
18742
18761
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18743
18762
 
18744
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
18763
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
18745
18764
  *
18746
18765
  * cdef inline object PyArray_MultiIterNew1(a):
18747
18766
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18755,7 +18774,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18755
18774
  __pyx_t_1 = 0;
18756
18775
  goto __pyx_L0;
18757
18776
 
18758
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18777
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18759
18778
  * ctypedef npy_cdouble complex_t
18760
18779
  *
18761
18780
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18774,7 +18793,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18774
18793
  return __pyx_r;
18775
18794
  }
18776
18795
 
18777
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18796
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18778
18797
  * return PyArray_MultiIterNew(1, <void*>a)
18779
18798
  *
18780
18799
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18791,7 +18810,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18791
18810
  int __pyx_clineno = 0;
18792
18811
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18793
18812
 
18794
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
18813
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
18795
18814
  *
18796
18815
  * cdef inline object PyArray_MultiIterNew2(a, b):
18797
18816
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18805,7 +18824,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18805
18824
  __pyx_t_1 = 0;
18806
18825
  goto __pyx_L0;
18807
18826
 
18808
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18827
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18809
18828
  * return PyArray_MultiIterNew(1, <void*>a)
18810
18829
  *
18811
18830
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18824,7 +18843,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18824
18843
  return __pyx_r;
18825
18844
  }
18826
18845
 
18827
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18846
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18828
18847
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18829
18848
  *
18830
18849
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18841,7 +18860,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18841
18860
  int __pyx_clineno = 0;
18842
18861
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18843
18862
 
18844
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
18863
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
18845
18864
  *
18846
18865
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18847
18866
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18855,7 +18874,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18855
18874
  __pyx_t_1 = 0;
18856
18875
  goto __pyx_L0;
18857
18876
 
18858
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18877
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18859
18878
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18860
18879
  *
18861
18880
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18874,7 +18893,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18874
18893
  return __pyx_r;
18875
18894
  }
18876
18895
 
18877
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
18896
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
18878
18897
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18879
18898
  *
18880
18899
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18891,7 +18910,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18891
18910
  int __pyx_clineno = 0;
18892
18911
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18893
18912
 
18894
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
18913
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
18895
18914
  *
18896
18915
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18897
18916
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18905,7 +18924,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18905
18924
  __pyx_t_1 = 0;
18906
18925
  goto __pyx_L0;
18907
18926
 
18908
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
18927
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
18909
18928
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18910
18929
  *
18911
18930
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18924,7 +18943,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18924
18943
  return __pyx_r;
18925
18944
  }
18926
18945
 
18927
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
18946
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
18928
18947
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18929
18948
  *
18930
18949
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18941,7 +18960,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18941
18960
  int __pyx_clineno = 0;
18942
18961
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18943
18962
 
18944
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
18963
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
18945
18964
  *
18946
18965
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18947
18966
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18955,7 +18974,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18955
18974
  __pyx_t_1 = 0;
18956
18975
  goto __pyx_L0;
18957
18976
 
18958
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
18977
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
18959
18978
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18960
18979
  *
18961
18980
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18974,7 +18993,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18974
18993
  return __pyx_r;
18975
18994
  }
18976
18995
 
18977
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
18996
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
18978
18997
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18979
18998
  *
18980
18999
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18988,7 +19007,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18988
19007
  int __pyx_t_1;
18989
19008
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18990
19009
 
18991
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19010
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
18992
19011
  *
18993
19012
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18994
19013
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18998,7 +19017,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18998
19017
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18999
19018
  if (__pyx_t_1) {
19000
19019
 
19001
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19020
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19002
19021
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19003
19022
  * if PyDataType_HASSUBARRAY(d):
19004
19023
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19010,7 +19029,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19010
19029
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19011
19030
  goto __pyx_L0;
19012
19031
 
19013
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19032
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19014
19033
  *
19015
19034
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19016
19035
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19019,7 +19038,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19019
19038
  */
19020
19039
  }
19021
19040
 
19022
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19041
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19023
19042
  * return <tuple>d.subarray.shape
19024
19043
  * else:
19025
19044
  * return () # <<<<<<<<<<<<<<
@@ -19033,7 +19052,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19033
19052
  goto __pyx_L0;
19034
19053
  }
19035
19054
 
19036
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19055
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19037
19056
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19038
19057
  *
19039
19058
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19048,7 +19067,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19048
19067
  return __pyx_r;
19049
19068
  }
19050
19069
 
19051
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19070
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19052
19071
  * int _import_umath() except -1
19053
19072
  *
19054
19073
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19062,7 +19081,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19062
19081
  const char *__pyx_filename = NULL;
19063
19082
  int __pyx_clineno = 0;
19064
19083
 
19065
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19084
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19066
19085
  *
19067
19086
  * cdef inline void set_array_base(ndarray arr, object base):
19068
19087
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19071,7 +19090,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19071
19090
  */
19072
19091
  Py_INCREF(__pyx_v_base);
19073
19092
 
19074
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19093
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19075
19094
  * cdef inline void set_array_base(ndarray arr, object base):
19076
19095
  * Py_INCREF(base) # important to do this before stealing the reference below!
19077
19096
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19080,7 +19099,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19080
19099
  */
19081
19100
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
19082
19101
 
19083
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19102
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19084
19103
  * int _import_umath() except -1
19085
19104
  *
19086
19105
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19095,7 +19114,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19095
19114
  __pyx_L0:;
19096
19115
  }
19097
19116
 
19098
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19117
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19099
19118
  * PyArray_SetBaseObject(arr, base)
19100
19119
  *
19101
19120
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19110,7 +19129,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19110
19129
  int __pyx_t_1;
19111
19130
  __Pyx_RefNannySetupContext("get_array_base", 1);
19112
19131
 
19113
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19132
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19114
19133
  *
19115
19134
  * cdef inline object get_array_base(ndarray arr):
19116
19135
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19119,7 +19138,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19119
19138
  */
19120
19139
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19121
19140
 
19122
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19141
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19123
19142
  * cdef inline object get_array_base(ndarray arr):
19124
19143
  * base = PyArray_BASE(arr)
19125
19144
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19129,7 +19148,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19129
19148
  __pyx_t_1 = (__pyx_v_base == NULL);
19130
19149
  if (__pyx_t_1) {
19131
19150
 
19132
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19151
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19133
19152
  * base = PyArray_BASE(arr)
19134
19153
  * if base is NULL:
19135
19154
  * return None # <<<<<<<<<<<<<<
@@ -19140,7 +19159,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19140
19159
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19141
19160
  goto __pyx_L0;
19142
19161
 
19143
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19162
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19144
19163
  * cdef inline object get_array_base(ndarray arr):
19145
19164
  * base = PyArray_BASE(arr)
19146
19165
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19149,7 +19168,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19149
19168
  */
19150
19169
  }
19151
19170
 
19152
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19171
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19153
19172
  * if base is NULL:
19154
19173
  * return None
19155
19174
  * return <object>base # <<<<<<<<<<<<<<
@@ -19161,7 +19180,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19161
19180
  __pyx_r = ((PyObject *)__pyx_v_base);
19162
19181
  goto __pyx_L0;
19163
19182
 
19164
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19183
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19165
19184
  * PyArray_SetBaseObject(arr, base)
19166
19185
  *
19167
19186
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19176,7 +19195,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19176
19195
  return __pyx_r;
19177
19196
  }
19178
19197
 
19179
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19198
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19180
19199
  * # Versions of the import_* functions which are more suitable for
19181
19200
  * # Cython code.
19182
19201
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19200,7 +19219,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19200
19219
  int __pyx_clineno = 0;
19201
19220
  __Pyx_RefNannySetupContext("import_array", 1);
19202
19221
 
19203
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19222
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19204
19223
  * # Cython code.
19205
19224
  * cdef inline int import_array() except -1:
19206
19225
  * try: # <<<<<<<<<<<<<<
@@ -19216,7 +19235,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19216
19235
  __Pyx_XGOTREF(__pyx_t_3);
19217
19236
  /*try:*/ {
19218
19237
 
19219
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19238
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19220
19239
  * cdef inline int import_array() except -1:
19221
19240
  * try:
19222
19241
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19225,7 +19244,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19225
19244
  */
19226
19245
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19227
19246
 
19228
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19247
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19229
19248
  * # Cython code.
19230
19249
  * cdef inline int import_array() except -1:
19231
19250
  * try: # <<<<<<<<<<<<<<
@@ -19239,7 +19258,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19239
19258
  goto __pyx_L8_try_end;
19240
19259
  __pyx_L3_error:;
19241
19260
 
19242
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
19261
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
19243
19262
  * try:
19244
19263
  * __pyx_import_array()
19245
19264
  * except Exception: # <<<<<<<<<<<<<<
@@ -19254,7 +19273,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19254
19273
  __Pyx_XGOTREF(__pyx_t_6);
19255
19274
  __Pyx_XGOTREF(__pyx_t_7);
19256
19275
 
19257
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19276
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19258
19277
  * __pyx_import_array()
19259
19278
  * except Exception:
19260
19279
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19269,7 +19288,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19269
19288
  }
19270
19289
  goto __pyx_L5_except_error;
19271
19290
 
19272
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19291
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19273
19292
  * # Cython code.
19274
19293
  * cdef inline int import_array() except -1:
19275
19294
  * try: # <<<<<<<<<<<<<<
@@ -19285,7 +19304,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19285
19304
  __pyx_L8_try_end:;
19286
19305
  }
19287
19306
 
19288
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19307
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19289
19308
  * # Versions of the import_* functions which are more suitable for
19290
19309
  * # Cython code.
19291
19310
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19308,7 +19327,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19308
19327
  return __pyx_r;
19309
19328
  }
19310
19329
 
19311
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19330
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19312
19331
  * raise ImportError("numpy.core.multiarray failed to import")
19313
19332
  *
19314
19333
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19332,7 +19351,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19332
19351
  int __pyx_clineno = 0;
19333
19352
  __Pyx_RefNannySetupContext("import_umath", 1);
19334
19353
 
19335
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19354
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19336
19355
  *
19337
19356
  * cdef inline int import_umath() except -1:
19338
19357
  * try: # <<<<<<<<<<<<<<
@@ -19348,7 +19367,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19348
19367
  __Pyx_XGOTREF(__pyx_t_3);
19349
19368
  /*try:*/ {
19350
19369
 
19351
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
19370
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
19352
19371
  * cdef inline int import_umath() except -1:
19353
19372
  * try:
19354
19373
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19357,7 +19376,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19357
19376
  */
19358
19377
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19359
19378
 
19360
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19379
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19361
19380
  *
19362
19381
  * cdef inline int import_umath() except -1:
19363
19382
  * try: # <<<<<<<<<<<<<<
@@ -19371,7 +19390,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19371
19390
  goto __pyx_L8_try_end;
19372
19391
  __pyx_L3_error:;
19373
19392
 
19374
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
19393
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
19375
19394
  * try:
19376
19395
  * _import_umath()
19377
19396
  * except Exception: # <<<<<<<<<<<<<<
@@ -19386,7 +19405,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19386
19405
  __Pyx_XGOTREF(__pyx_t_6);
19387
19406
  __Pyx_XGOTREF(__pyx_t_7);
19388
19407
 
19389
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19408
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19390
19409
  * _import_umath()
19391
19410
  * except Exception:
19392
19411
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19401,7 +19420,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19401
19420
  }
19402
19421
  goto __pyx_L5_except_error;
19403
19422
 
19404
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19423
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19405
19424
  *
19406
19425
  * cdef inline int import_umath() except -1:
19407
19426
  * try: # <<<<<<<<<<<<<<
@@ -19417,7 +19436,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19417
19436
  __pyx_L8_try_end:;
19418
19437
  }
19419
19438
 
19420
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19439
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19421
19440
  * raise ImportError("numpy.core.multiarray failed to import")
19422
19441
  *
19423
19442
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19440,7 +19459,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19440
19459
  return __pyx_r;
19441
19460
  }
19442
19461
 
19443
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19462
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19444
19463
  * raise ImportError("numpy.core.umath failed to import")
19445
19464
  *
19446
19465
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19464,7 +19483,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19464
19483
  int __pyx_clineno = 0;
19465
19484
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19466
19485
 
19467
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19486
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19468
19487
  *
19469
19488
  * cdef inline int import_ufunc() except -1:
19470
19489
  * try: # <<<<<<<<<<<<<<
@@ -19480,7 +19499,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19480
19499
  __Pyx_XGOTREF(__pyx_t_3);
19481
19500
  /*try:*/ {
19482
19501
 
19483
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
19502
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
19484
19503
  * cdef inline int import_ufunc() except -1:
19485
19504
  * try:
19486
19505
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19489,7 +19508,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19489
19508
  */
19490
19509
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
19491
19510
 
19492
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19511
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19493
19512
  *
19494
19513
  * cdef inline int import_ufunc() except -1:
19495
19514
  * try: # <<<<<<<<<<<<<<
@@ -19503,7 +19522,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19503
19522
  goto __pyx_L8_try_end;
19504
19523
  __pyx_L3_error:;
19505
19524
 
19506
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
19525
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
19507
19526
  * try:
19508
19527
  * _import_umath()
19509
19528
  * except Exception: # <<<<<<<<<<<<<<
@@ -19518,7 +19537,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19518
19537
  __Pyx_XGOTREF(__pyx_t_6);
19519
19538
  __Pyx_XGOTREF(__pyx_t_7);
19520
19539
 
19521
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
19540
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
19522
19541
  * _import_umath()
19523
19542
  * except Exception:
19524
19543
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19533,7 +19552,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19533
19552
  }
19534
19553
  goto __pyx_L5_except_error;
19535
19554
 
19536
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19555
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19537
19556
  *
19538
19557
  * cdef inline int import_ufunc() except -1:
19539
19558
  * try: # <<<<<<<<<<<<<<
@@ -19549,7 +19568,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19549
19568
  __pyx_L8_try_end:;
19550
19569
  }
19551
19570
 
19552
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19571
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19553
19572
  * raise ImportError("numpy.core.umath failed to import")
19554
19573
  *
19555
19574
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19572,7 +19591,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19572
19591
  return __pyx_r;
19573
19592
  }
19574
19593
 
19575
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19594
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19576
19595
  *
19577
19596
  *
19578
19597
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19583,7 +19602,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19583
19602
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19584
19603
  int __pyx_r;
19585
19604
 
19586
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
19605
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
19587
19606
  * bool
19588
19607
  * """
19589
19608
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19593,7 +19612,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19593
19612
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19594
19613
  goto __pyx_L0;
19595
19614
 
19596
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19615
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19597
19616
  *
19598
19617
  *
19599
19618
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19606,7 +19625,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19606
19625
  return __pyx_r;
19607
19626
  }
19608
19627
 
19609
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19628
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19610
19629
  *
19611
19630
  *
19612
19631
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19617,7 +19636,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19617
19636
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19618
19637
  int __pyx_r;
19619
19638
 
19620
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
19639
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
19621
19640
  * bool
19622
19641
  * """
19623
19642
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19627,7 +19646,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19627
19646
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19628
19647
  goto __pyx_L0;
19629
19648
 
19630
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19649
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19631
19650
  *
19632
19651
  *
19633
19652
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19640,7 +19659,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19640
19659
  return __pyx_r;
19641
19660
  }
19642
19661
 
19643
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19662
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19644
19663
  *
19645
19664
  *
19646
19665
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19651,7 +19670,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19651
19670
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19652
19671
  npy_datetime __pyx_r;
19653
19672
 
19654
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
19673
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
19655
19674
  * also needed. That can be found using `get_datetime64_unit`.
19656
19675
  * """
19657
19676
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19661,7 +19680,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19661
19680
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19662
19681
  goto __pyx_L0;
19663
19682
 
19664
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19683
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19665
19684
  *
19666
19685
  *
19667
19686
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19674,7 +19693,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19674
19693
  return __pyx_r;
19675
19694
  }
19676
19695
 
19677
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19696
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19678
19697
  *
19679
19698
  *
19680
19699
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19685,7 +19704,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19685
19704
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19686
19705
  npy_timedelta __pyx_r;
19687
19706
 
19688
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
19707
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
19689
19708
  * returns the int64 value underlying scalar numpy timedelta64 object
19690
19709
  * """
19691
19710
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19695,7 +19714,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19695
19714
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19696
19715
  goto __pyx_L0;
19697
19716
 
19698
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19717
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19699
19718
  *
19700
19719
  *
19701
19720
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19708,7 +19727,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19708
19727
  return __pyx_r;
19709
19728
  }
19710
19729
 
19711
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19730
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19712
19731
  *
19713
19732
  *
19714
19733
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19719,7 +19738,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19719
19738
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19720
19739
  NPY_DATETIMEUNIT __pyx_r;
19721
19740
 
19722
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
19741
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
19723
19742
  * returns the unit part of the dtype for a numpy datetime64 object.
19724
19743
  * """
19725
19744
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19727,7 +19746,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19727
19746
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19728
19747
  goto __pyx_L0;
19729
19748
 
19730
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19749
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19731
19750
  *
19732
19751
  *
19733
19752
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -22409,8 +22428,8 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_6decode_6_decode_packed(
22409
22428
  Py_ssize_t __pyx_v_itemsize;
22410
22429
  int __pyx_v_dtype_signed;
22411
22430
  Py_UCS4 __pyx_v_kind;
22412
- int __pyx_v____pyx_int8_is_signed;
22413
- int __pyx_v____pyx_int16_is_signed;
22431
+ int __pyx_v___pyx_fused_dtype_int8_is_signed;
22432
+ int __pyx_v___pyx_fused_dtype_int16_is_signed;
22414
22433
  PyObject *__pyx_v_arg = NULL;
22415
22434
  PyObject *__pyx_v_dtype = NULL;
22416
22435
  PyObject *__pyx_v_arg_base = NULL;
@@ -22478,8 +22497,8 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_6decode_6_decode_packed(
22478
22497
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
22479
22498
  __pyx_t_1 = 0;
22480
22499
  __pyx_v_itemsize = -1L;
22481
- __pyx_v____pyx_int8_is_signed = (!(((__pyx_t_7biotite_9structure_2io_4mmtf_6decode_int8)-1L) > 0));
22482
- __pyx_v____pyx_int16_is_signed = (!(((__pyx_t_7biotite_9structure_2io_4mmtf_6decode_int16)-1L) > 0));
22500
+ __pyx_v___pyx_fused_dtype_int8_is_signed = (!(((__pyx_t_7biotite_9structure_2io_4mmtf_6decode_int8)-1L) > 0));
22501
+ __pyx_v___pyx_fused_dtype_int16_is_signed = (!(((__pyx_t_7biotite_9structure_2io_4mmtf_6decode_int16)-1L) > 0));
22483
22502
  if (unlikely(__pyx_v_args == Py_None)) {
22484
22503
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
22485
22504
  __PYX_ERR(0, 122, __pyx_L1_error)
@@ -22621,7 +22640,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_6decode_6_decode_packed(
22621
22640
  __pyx_t_2 = __pyx_t_4;
22622
22641
  goto __pyx_L16_bool_binop_done;
22623
22642
  }
22624
- __pyx_t_4 = (!(__pyx_v____pyx_int8_is_signed ^ __pyx_v_dtype_signed));
22643
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_int8_is_signed ^ __pyx_v_dtype_signed));
22625
22644
  __pyx_t_2 = __pyx_t_4;
22626
22645
  __pyx_L16_bool_binop_done:;
22627
22646
  if (__pyx_t_2) {
@@ -22644,7 +22663,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_6decode_6_decode_packed(
22644
22663
  __pyx_t_2 = __pyx_t_4;
22645
22664
  goto __pyx_L20_bool_binop_done;
22646
22665
  }
22647
- __pyx_t_4 = (!(__pyx_v____pyx_int16_is_signed ^ __pyx_v_dtype_signed));
22666
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_int16_is_signed ^ __pyx_v_dtype_signed));
22648
22667
  __pyx_t_2 = __pyx_t_4;
22649
22668
  __pyx_L20_bool_binop_done:;
22650
22669
  if (__pyx_t_2) {
@@ -25559,7 +25578,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
25559
25578
  __Pyx_GOTREF(__pyx_tuple__8);
25560
25579
  __Pyx_GIVEREF(__pyx_tuple__8);
25561
25580
 
25562
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
25581
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
25563
25582
  * __pyx_import_array()
25564
25583
  * except Exception:
25565
25584
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -25570,7 +25589,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
25570
25589
  __Pyx_GOTREF(__pyx_tuple__9);
25571
25590
  __Pyx_GIVEREF(__pyx_tuple__9);
25572
25591
 
25573
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
25592
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
25574
25593
  * _import_umath()
25575
25594
  * except Exception:
25576
25595
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -26027,33 +26046,33 @@ static int __Pyx_modinit_type_import_code(void) {
26027
26046
  /*--- Type import code ---*/
26028
26047
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
26029
26048
  __Pyx_GOTREF(__pyx_t_1);
26030
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
26049
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
26031
26050
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
26032
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
26051
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
26033
26052
  #elif CYTHON_COMPILING_IN_LIMITED_API
26034
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
26053
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
26035
26054
  #else
26036
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
26055
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
26037
26056
  #endif
26038
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
26057
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
26039
26058
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
26040
26059
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
26041
26060
  __Pyx_GOTREF(__pyx_t_1);
26042
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
26043
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
26044
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
26045
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
26046
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
26047
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
26048
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
26049
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
26050
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
26051
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
26052
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
26053
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
26054
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
26055
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
26056
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
26061
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
26062
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
26063
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
26064
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
26065
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
26066
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
26067
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
26068
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
26069
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
26070
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
26071
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
26072
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
26073
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
26074
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
26075
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
26057
26076
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
26058
26077
  __Pyx_RefNannyFinishContext();
26059
26078
  return 0;
@@ -27440,11 +27459,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
27440
27459
  {
27441
27460
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
27442
27461
  if (unlikely(eq != 0)) {
27443
- if (unlikely(eq < 0)) return NULL; // error
27462
+ if (unlikely(eq < 0)) return NULL;
27444
27463
  return kwvalues[i];
27445
27464
  }
27446
27465
  }
27447
- return NULL; // not found (no exception set)
27466
+ return NULL;
27448
27467
  }
27449
27468
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
27450
27469
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -27557,7 +27576,7 @@ static int __Pyx_ParseOptionalKeywords(
27557
27576
  if (*name) {
27558
27577
  values[name-argnames] = value;
27559
27578
  #if CYTHON_AVOID_BORROWED_REFS
27560
- Py_INCREF(value); // transfer ownership of value to values
27579
+ Py_INCREF(value);
27561
27580
  Py_DECREF(key);
27562
27581
  #endif
27563
27582
  key = NULL;
@@ -27576,7 +27595,7 @@ static int __Pyx_ParseOptionalKeywords(
27576
27595
  && _PyString_Eq(**name, key)) {
27577
27596
  values[name-argnames] = value;
27578
27597
  #if CYTHON_AVOID_BORROWED_REFS
27579
- value = NULL; // ownership transferred to values
27598
+ value = NULL;
27580
27599
  #endif
27581
27600
  break;
27582
27601
  }
@@ -27608,7 +27627,7 @@ static int __Pyx_ParseOptionalKeywords(
27608
27627
  if (cmp == 0) {
27609
27628
  values[name-argnames] = value;
27610
27629
  #if CYTHON_AVOID_BORROWED_REFS
27611
- value = NULL; // ownership transferred to values
27630
+ value = NULL;
27612
27631
  #endif
27613
27632
  break;
27614
27633
  }
@@ -29629,9 +29648,10 @@ static int __Pyx_PyMemoryView_Get_ndim(PyObject *obj) {
29629
29648
 
29630
29649
  /* IterFinish */
29631
29650
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
29651
+ PyObject* exc_type;
29632
29652
  __Pyx_PyThreadState_declare
29633
29653
  __Pyx_PyThreadState_assign
29634
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
29654
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
29635
29655
  if (unlikely(exc_type)) {
29636
29656
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
29637
29657
  return -1;
@@ -29955,9 +29975,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
29955
29975
 
29956
29976
  /* UnpackUnboundCMethod */
29957
29977
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
29978
+ PyObject *result;
29958
29979
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
29959
29980
  if (unlikely(!selfless_args)) return NULL;
29960
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
29981
+ result = PyObject_Call(method, selfless_args, kwargs);
29961
29982
  Py_DECREF(selfless_args);
29962
29983
  return result;
29963
29984
  }
@@ -30674,10 +30695,10 @@ __PYX_GOOD:
30674
30695
  #endif
30675
30696
 
30676
30697
  /* TypeImport */
30677
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
30678
- #define __PYX_HAVE_RT_ImportType_3_0_7
30679
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
30680
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
30698
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
30699
+ #define __PYX_HAVE_RT_ImportType_3_0_10
30700
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
30701
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
30681
30702
  {
30682
30703
  PyObject *result = 0;
30683
30704
  char warning[200];
@@ -30731,7 +30752,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
30731
30752
  module_name, class_name, size, basicsize+itemsize);
30732
30753
  goto bad;
30733
30754
  }
30734
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
30755
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
30735
30756
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
30736
30757
  PyErr_Format(PyExc_ValueError,
30737
30758
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -30739,7 +30760,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
30739
30760
  module_name, class_name, size, basicsize, basicsize+itemsize);
30740
30761
  goto bad;
30741
30762
  }
30742
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
30763
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
30743
30764
  PyOS_snprintf(warning, sizeof(warning),
30744
30765
  "%s.%s size changed, may indicate binary incompatibility. "
30745
30766
  "Expected %zd from C header, got %zd from PyObject",
@@ -31739,7 +31760,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
31739
31760
  default:
31740
31761
  return NULL;
31741
31762
  }
31742
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
31763
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
31743
31764
  }
31744
31765
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
31745
31766
  {
@@ -32556,7 +32577,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
32556
32577
  #else
32557
32578
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
32558
32579
  #endif
32559
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
32580
+ Py_XDECREF(py_funcname);
32560
32581
  return py_code;
32561
32582
  bad:
32562
32583
  Py_XDECREF(py_funcname);