biotite 0.39.0__cp311-cp311-macosx_11_0_arm64.whl → 0.40.0__cp311-cp311-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 +258 -237
  5. biotite/sequence/align/banded.cpython-311-darwin.so +0 -0
  6. biotite/sequence/align/kmeralphabet.c +243 -222
  7. biotite/sequence/align/kmeralphabet.cpython-311-darwin.so +0 -0
  8. biotite/sequence/align/kmersimilarity.c +215 -196
  9. biotite/sequence/align/kmersimilarity.cpython-311-darwin.so +0 -0
  10. biotite/sequence/align/kmertable.cpp +233 -205
  11. biotite/sequence/align/kmertable.cpython-311-darwin.so +0 -0
  12. biotite/sequence/align/localgapped.c +258 -237
  13. biotite/sequence/align/localgapped.cpython-311-darwin.so +0 -0
  14. biotite/sequence/align/localungapped.c +235 -214
  15. biotite/sequence/align/localungapped.cpython-311-darwin.so +0 -0
  16. biotite/sequence/align/multiple.c +255 -234
  17. biotite/sequence/align/multiple.cpython-311-darwin.so +0 -0
  18. biotite/sequence/align/pairwise.c +274 -253
  19. biotite/sequence/align/pairwise.cpython-311-darwin.so +0 -0
  20. biotite/sequence/align/permutation.c +215 -196
  21. biotite/sequence/align/permutation.cpython-311-darwin.so +0 -0
  22. biotite/sequence/align/selector.c +217 -197
  23. biotite/sequence/align/selector.cpython-311-darwin.so +0 -0
  24. biotite/sequence/align/tracetable.c +215 -195
  25. biotite/sequence/align/tracetable.cpython-311-darwin.so +0 -0
  26. biotite/sequence/codec.c +235 -214
  27. biotite/sequence/codec.cpython-311-darwin.so +0 -0
  28. biotite/sequence/phylo/nj.c +215 -196
  29. biotite/sequence/phylo/nj.cpython-311-darwin.so +0 -0
  30. biotite/sequence/phylo/tree.c +227 -202
  31. biotite/sequence/phylo/tree.cpython-311-darwin.so +0 -0
  32. biotite/sequence/phylo/upgma.c +215 -196
  33. biotite/sequence/phylo/upgma.cpython-311-darwin.so +0 -0
  34. biotite/structure/basepairs.py +7 -12
  35. biotite/structure/bonds.c +1175 -1226
  36. biotite/structure/bonds.cpython-311-darwin.so +0 -0
  37. biotite/structure/celllist.c +217 -197
  38. biotite/structure/celllist.cpython-311-darwin.so +0 -0
  39. biotite/structure/charges.c +1052 -1101
  40. biotite/structure/charges.cpython-311-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 +219 -198
  60. biotite/structure/io/mmtf/convertarray.cpython-311-darwin.so +0 -0
  61. biotite/structure/io/mmtf/convertfile.c +217 -197
  62. biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so +0 -0
  63. biotite/structure/io/mmtf/decode.c +225 -204
  64. biotite/structure/io/mmtf/decode.cpython-311-darwin.so +0 -0
  65. biotite/structure/io/mmtf/encode.c +215 -196
  66. biotite/structure/io/mmtf/encode.cpython-311-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-311-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 +112813 -0
  81. biotite/structure/io/pdbx/encoding.cpython-311-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 +215 -196
  86. biotite/structure/sasa.cpython-311-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
biotite/structure/sasa.c CHANGED
@@ -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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
1666
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
1675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
1684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
1693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
1702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
1711
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
1720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
1729
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
1738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
1747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
1756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
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-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
1765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_long_t;
1755
1773
 
1756
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_long int_t
1758
1776
  * ctypedef npy_longlong long_t
1759
1777
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1762
1780
  */
1763
1781
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1764
1782
 
1765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
1783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
1766
1784
  * ctypedef npy_longlong longlong_t
1767
1785
  *
1768
1786
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1771
1789
  */
1772
1790
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1773
1791
 
1774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  *
1776
1794
  * ctypedef npy_ulong uint_t
1777
1795
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1780
1798
  */
1781
1799
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1782
1800
 
1783
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  * ctypedef npy_ulong uint_t
1785
1803
  * ctypedef npy_ulonglong ulong_t
1786
1804
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1789
1807
  */
1790
1808
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1791
1809
 
1792
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_ulonglong ulonglong_t
1794
1812
  *
1795
1813
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1798
1816
  */
1799
1817
  typedef npy_intp __pyx_t_5numpy_intp_t;
1800
1818
 
1801
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_intp intp_t
1804
1822
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1807
1825
  */
1808
1826
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1809
1827
 
1810
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
1828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
1811
1829
  * ctypedef npy_uintp uintp_t
1812
1830
  *
1813
1831
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1816
1834
  */
1817
1835
  typedef npy_double __pyx_t_5numpy_float_t;
1818
1836
 
1819
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
1837
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
1820
1838
  *
1821
1839
  * ctypedef npy_double float_t
1822
1840
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1825
1843
  */
1826
1844
  typedef npy_double __pyx_t_5numpy_double_t;
1827
1845
 
1828
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
1846
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
1829
1847
  * ctypedef npy_double float_t
1830
1848
  * ctypedef npy_double double_t
1831
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1911,7 @@ struct __pyx_MemviewEnum_obj;
1893
1911
  struct __pyx_memoryview_obj;
1894
1912
  struct __pyx_memoryviewslice_obj;
1895
1913
 
1896
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
1914
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
1897
1915
  * ctypedef npy_longdouble longdouble_t
1898
1916
  *
1899
1917
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1902,7 +1920,7 @@ struct __pyx_memoryviewslice_obj;
1902
1920
  */
1903
1921
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1904
1922
 
1905
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
1923
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
1906
1924
  *
1907
1925
  * ctypedef npy_cfloat cfloat_t
1908
1926
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1911,7 +1929,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1911
1929
  */
1912
1930
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1913
1931
 
1914
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
1932
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
1915
1933
  * ctypedef npy_cfloat cfloat_t
1916
1934
  * ctypedef npy_cdouble cdouble_t
1917
1935
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1920
1938
  */
1921
1939
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1922
1940
 
1923
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
1941
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
1924
1942
  * ctypedef npy_clongdouble clongdouble_t
1925
1943
  *
1926
1944
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2226,8 +2244,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2226
2244
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2227
2245
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2228
2246
  #else
2229
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2230
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2247
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2248
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2231
2249
  #endif
2232
2250
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2233
2251
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2243,8 +2261,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2243
2261
  #else
2244
2262
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2245
2263
  #endif
2246
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2247
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2264
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2265
+ to have the same reference counting */
2266
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2248
2267
  #else
2249
2268
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2250
2269
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2737,22 +2756,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2737
2756
  #endif
2738
2757
 
2739
2758
  /* TypeImport.proto */
2740
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2741
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2759
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2760
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2742
2761
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2743
2762
  #include <stdalign.h>
2744
2763
  #endif
2745
2764
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2746
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2765
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2747
2766
  #else
2748
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2767
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2749
2768
  #endif
2750
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2751
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2752
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2753
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2769
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2770
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2771
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2772
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2754
2773
  };
2755
- 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);
2774
+ 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);
2756
2775
  #endif
2757
2776
 
2758
2777
  /* FetchSharedCythonModule.proto */
@@ -2845,7 +2864,7 @@ typedef struct {
2845
2864
  #endif
2846
2865
  void *defaults;
2847
2866
  int defaults_pyobjects;
2848
- size_t defaults_size; // used by FusedFunction for copying defaults
2867
+ size_t defaults_size;
2849
2868
  int flags;
2850
2869
  PyObject *defaults_tuple;
2851
2870
  PyObject *defaults_kwdict;
@@ -18499,7 +18518,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18499
18518
  return __pyx_r;
18500
18519
  }
18501
18520
 
18502
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
18521
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
18503
18522
  *
18504
18523
  * @property
18505
18524
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18510,7 +18529,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18510
18529
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18511
18530
  PyObject *__pyx_r;
18512
18531
 
18513
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
18532
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
18514
18533
  * """Returns a borrowed reference to the object owning the data/memory.
18515
18534
  * """
18516
18535
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18520,7 +18539,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18520
18539
  __pyx_r = PyArray_BASE(__pyx_v_self);
18521
18540
  goto __pyx_L0;
18522
18541
 
18523
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
18542
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
18524
18543
  *
18525
18544
  * @property
18526
18545
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18533,7 +18552,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18533
18552
  return __pyx_r;
18534
18553
  }
18535
18554
 
18536
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
18555
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
18537
18556
  *
18538
18557
  * @property
18539
18558
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18547,7 +18566,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18547
18566
  PyArray_Descr *__pyx_t_1;
18548
18567
  __Pyx_RefNannySetupContext("descr", 1);
18549
18568
 
18550
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
18569
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
18551
18570
  * """Returns an owned reference to the dtype of the array.
18552
18571
  * """
18553
18572
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18560,7 +18579,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18560
18579
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18561
18580
  goto __pyx_L0;
18562
18581
 
18563
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
18582
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
18564
18583
  *
18565
18584
  * @property
18566
18585
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18575,7 +18594,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18575
18594
  return __pyx_r;
18576
18595
  }
18577
18596
 
18578
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
18597
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
18579
18598
  *
18580
18599
  * @property
18581
18600
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18586,7 +18605,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18586
18605
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18587
18606
  int __pyx_r;
18588
18607
 
18589
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
18608
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
18590
18609
  * """Returns the number of dimensions in the array.
18591
18610
  * """
18592
18611
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18596,7 +18615,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18596
18615
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18597
18616
  goto __pyx_L0;
18598
18617
 
18599
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
18618
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
18600
18619
  *
18601
18620
  * @property
18602
18621
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18609,7 +18628,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18609
18628
  return __pyx_r;
18610
18629
  }
18611
18630
 
18612
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
18631
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
18613
18632
  *
18614
18633
  * @property
18615
18634
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18620,7 +18639,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18620
18639
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18621
18640
  npy_intp *__pyx_r;
18622
18641
 
18623
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
18642
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
18624
18643
  * Can return NULL for 0-dimensional arrays.
18625
18644
  * """
18626
18645
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18630,7 +18649,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18630
18649
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18631
18650
  goto __pyx_L0;
18632
18651
 
18633
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
18652
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
18634
18653
  *
18635
18654
  * @property
18636
18655
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18643,7 +18662,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18643
18662
  return __pyx_r;
18644
18663
  }
18645
18664
 
18646
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
18665
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
18647
18666
  *
18648
18667
  * @property
18649
18668
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18654,7 +18673,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18654
18673
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18655
18674
  npy_intp *__pyx_r;
18656
18675
 
18657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
18676
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
18658
18677
  * The number of elements matches the number of dimensions of the array (ndim).
18659
18678
  * """
18660
18679
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18664,7 +18683,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18664
18683
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18665
18684
  goto __pyx_L0;
18666
18685
 
18667
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
18686
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
18668
18687
  *
18669
18688
  * @property
18670
18689
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18677,7 +18696,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18677
18696
  return __pyx_r;
18678
18697
  }
18679
18698
 
18680
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
18699
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
18681
18700
  *
18682
18701
  * @property
18683
18702
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18688,7 +18707,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18688
18707
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18689
18708
  npy_intp __pyx_r;
18690
18709
 
18691
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
18710
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
18692
18711
  * """Returns the total size (in number of elements) of the array.
18693
18712
  * """
18694
18713
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18698,7 +18717,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18698
18717
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18699
18718
  goto __pyx_L0;
18700
18719
 
18701
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
18720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
18702
18721
  *
18703
18722
  * @property
18704
18723
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18711,7 +18730,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18711
18730
  return __pyx_r;
18712
18731
  }
18713
18732
 
18714
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
18733
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
18715
18734
  *
18716
18735
  * @property
18717
18736
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18722,7 +18741,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18722
18741
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18723
18742
  char *__pyx_r;
18724
18743
 
18725
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
18744
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
18726
18745
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18727
18746
  * """
18728
18747
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18732,7 +18751,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18732
18751
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18733
18752
  goto __pyx_L0;
18734
18753
 
18735
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
18754
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
18736
18755
  *
18737
18756
  * @property
18738
18757
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18745,7 +18764,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18745
18764
  return __pyx_r;
18746
18765
  }
18747
18766
 
18748
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
18767
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
18749
18768
  * ctypedef npy_cdouble complex_t
18750
18769
  *
18751
18770
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18762,7 +18781,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18762
18781
  int __pyx_clineno = 0;
18763
18782
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18764
18783
 
18765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
18784
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
18766
18785
  *
18767
18786
  * cdef inline object PyArray_MultiIterNew1(a):
18768
18787
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18776,7 +18795,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18776
18795
  __pyx_t_1 = 0;
18777
18796
  goto __pyx_L0;
18778
18797
 
18779
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
18798
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
18780
18799
  * ctypedef npy_cdouble complex_t
18781
18800
  *
18782
18801
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18795,7 +18814,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18795
18814
  return __pyx_r;
18796
18815
  }
18797
18816
 
18798
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
18817
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
18799
18818
  * return PyArray_MultiIterNew(1, <void*>a)
18800
18819
  *
18801
18820
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18812,7 +18831,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18812
18831
  int __pyx_clineno = 0;
18813
18832
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18814
18833
 
18815
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
18834
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
18816
18835
  *
18817
18836
  * cdef inline object PyArray_MultiIterNew2(a, b):
18818
18837
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18826,7 +18845,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18826
18845
  __pyx_t_1 = 0;
18827
18846
  goto __pyx_L0;
18828
18847
 
18829
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
18848
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
18830
18849
  * return PyArray_MultiIterNew(1, <void*>a)
18831
18850
  *
18832
18851
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18845,7 +18864,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18845
18864
  return __pyx_r;
18846
18865
  }
18847
18866
 
18848
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
18867
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
18849
18868
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18850
18869
  *
18851
18870
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18862,7 +18881,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18862
18881
  int __pyx_clineno = 0;
18863
18882
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18864
18883
 
18865
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
18884
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
18866
18885
  *
18867
18886
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18868
18887
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18876,7 +18895,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18876
18895
  __pyx_t_1 = 0;
18877
18896
  goto __pyx_L0;
18878
18897
 
18879
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
18898
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
18880
18899
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18881
18900
  *
18882
18901
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18895,7 +18914,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18895
18914
  return __pyx_r;
18896
18915
  }
18897
18916
 
18898
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
18917
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
18899
18918
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18900
18919
  *
18901
18920
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18912,7 +18931,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18912
18931
  int __pyx_clineno = 0;
18913
18932
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18914
18933
 
18915
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
18934
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
18916
18935
  *
18917
18936
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18918
18937
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18926,7 +18945,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18926
18945
  __pyx_t_1 = 0;
18927
18946
  goto __pyx_L0;
18928
18947
 
18929
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
18948
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
18930
18949
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18931
18950
  *
18932
18951
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18945,7 +18964,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18945
18964
  return __pyx_r;
18946
18965
  }
18947
18966
 
18948
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
18967
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
18949
18968
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18950
18969
  *
18951
18970
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18962,7 +18981,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18962
18981
  int __pyx_clineno = 0;
18963
18982
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18964
18983
 
18965
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
18984
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
18966
18985
  *
18967
18986
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18968
18987
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18976,7 +18995,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18976
18995
  __pyx_t_1 = 0;
18977
18996
  goto __pyx_L0;
18978
18997
 
18979
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
18998
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
18980
18999
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18981
19000
  *
18982
19001
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18995,7 +19014,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18995
19014
  return __pyx_r;
18996
19015
  }
18997
19016
 
18998
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
19017
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
18999
19018
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19000
19019
  *
19001
19020
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19009,7 +19028,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19009
19028
  int __pyx_t_1;
19010
19029
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19011
19030
 
19012
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
19031
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
19013
19032
  *
19014
19033
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19015
19034
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19019,7 +19038,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19019
19038
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19020
19039
  if (__pyx_t_1) {
19021
19040
 
19022
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
19041
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
19023
19042
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19024
19043
  * if PyDataType_HASSUBARRAY(d):
19025
19044
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19031,7 +19050,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19031
19050
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19032
19051
  goto __pyx_L0;
19033
19052
 
19034
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
19053
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
19035
19054
  *
19036
19055
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19037
19056
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19040,7 +19059,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19040
19059
  */
19041
19060
  }
19042
19061
 
19043
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
19062
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
19044
19063
  * return <tuple>d.subarray.shape
19045
19064
  * else:
19046
19065
  * return () # <<<<<<<<<<<<<<
@@ -19054,7 +19073,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19054
19073
  goto __pyx_L0;
19055
19074
  }
19056
19075
 
19057
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
19076
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
19058
19077
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19059
19078
  *
19060
19079
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19069,7 +19088,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19069
19088
  return __pyx_r;
19070
19089
  }
19071
19090
 
19072
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
19091
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
19073
19092
  * int _import_umath() except -1
19074
19093
  *
19075
19094
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19079,7 +19098,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19079
19098
 
19080
19099
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
19081
19100
 
19082
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
19101
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
19083
19102
  *
19084
19103
  * cdef inline void set_array_base(ndarray arr, object base):
19085
19104
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19088,7 +19107,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19088
19107
  */
19089
19108
  Py_INCREF(__pyx_v_base);
19090
19109
 
19091
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
19110
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
19092
19111
  * cdef inline void set_array_base(ndarray arr, object base):
19093
19112
  * Py_INCREF(base) # important to do this before stealing the reference below!
19094
19113
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19097,7 +19116,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19097
19116
  */
19098
19117
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
19099
19118
 
19100
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
19119
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
19101
19120
  * int _import_umath() except -1
19102
19121
  *
19103
19122
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19108,7 +19127,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19108
19127
  /* function exit code */
19109
19128
  }
19110
19129
 
19111
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19130
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19112
19131
  * PyArray_SetBaseObject(arr, base)
19113
19132
  *
19114
19133
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19123,7 +19142,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19123
19142
  int __pyx_t_1;
19124
19143
  __Pyx_RefNannySetupContext("get_array_base", 1);
19125
19144
 
19126
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
19145
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
19127
19146
  *
19128
19147
  * cdef inline object get_array_base(ndarray arr):
19129
19148
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19132,7 +19151,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19132
19151
  */
19133
19152
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19134
19153
 
19135
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19154
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19136
19155
  * cdef inline object get_array_base(ndarray arr):
19137
19156
  * base = PyArray_BASE(arr)
19138
19157
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19142,7 +19161,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19142
19161
  __pyx_t_1 = (__pyx_v_base == NULL);
19143
19162
  if (__pyx_t_1) {
19144
19163
 
19145
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
19164
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
19146
19165
  * base = PyArray_BASE(arr)
19147
19166
  * if base is NULL:
19148
19167
  * return None # <<<<<<<<<<<<<<
@@ -19153,7 +19172,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19153
19172
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19154
19173
  goto __pyx_L0;
19155
19174
 
19156
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19175
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19157
19176
  * cdef inline object get_array_base(ndarray arr):
19158
19177
  * base = PyArray_BASE(arr)
19159
19178
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19162,7 +19181,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19162
19181
  */
19163
19182
  }
19164
19183
 
19165
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
19184
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
19166
19185
  * if base is NULL:
19167
19186
  * return None
19168
19187
  * return <object>base # <<<<<<<<<<<<<<
@@ -19174,7 +19193,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19174
19193
  __pyx_r = ((PyObject *)__pyx_v_base);
19175
19194
  goto __pyx_L0;
19176
19195
 
19177
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19196
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19178
19197
  * PyArray_SetBaseObject(arr, base)
19179
19198
  *
19180
19199
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19189,7 +19208,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19189
19208
  return __pyx_r;
19190
19209
  }
19191
19210
 
19192
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19211
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19193
19212
  * # Versions of the import_* functions which are more suitable for
19194
19213
  * # Cython code.
19195
19214
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19213,7 +19232,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19213
19232
  int __pyx_clineno = 0;
19214
19233
  __Pyx_RefNannySetupContext("import_array", 1);
19215
19234
 
19216
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19235
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19217
19236
  * # Cython code.
19218
19237
  * cdef inline int import_array() except -1:
19219
19238
  * try: # <<<<<<<<<<<<<<
@@ -19229,7 +19248,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19229
19248
  __Pyx_XGOTREF(__pyx_t_3);
19230
19249
  /*try:*/ {
19231
19250
 
19232
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
19251
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
19233
19252
  * cdef inline int import_array() except -1:
19234
19253
  * try:
19235
19254
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19238,7 +19257,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19238
19257
  */
19239
19258
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
19240
19259
 
19241
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19260
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19242
19261
  * # Cython code.
19243
19262
  * cdef inline int import_array() except -1:
19244
19263
  * try: # <<<<<<<<<<<<<<
@@ -19252,7 +19271,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19252
19271
  goto __pyx_L8_try_end;
19253
19272
  __pyx_L3_error:;
19254
19273
 
19255
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
19274
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
19256
19275
  * try:
19257
19276
  * __pyx_import_array()
19258
19277
  * except Exception: # <<<<<<<<<<<<<<
@@ -19267,7 +19286,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19267
19286
  __Pyx_XGOTREF(__pyx_t_6);
19268
19287
  __Pyx_XGOTREF(__pyx_t_7);
19269
19288
 
19270
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
19289
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
19271
19290
  * __pyx_import_array()
19272
19291
  * except Exception:
19273
19292
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19282,7 +19301,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19282
19301
  }
19283
19302
  goto __pyx_L5_except_error;
19284
19303
 
19285
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19304
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19286
19305
  * # Cython code.
19287
19306
  * cdef inline int import_array() except -1:
19288
19307
  * try: # <<<<<<<<<<<<<<
@@ -19298,7 +19317,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19298
19317
  __pyx_L8_try_end:;
19299
19318
  }
19300
19319
 
19301
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19320
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19302
19321
  * # Versions of the import_* functions which are more suitable for
19303
19322
  * # Cython code.
19304
19323
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19321,7 +19340,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19321
19340
  return __pyx_r;
19322
19341
  }
19323
19342
 
19324
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
19343
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
19325
19344
  * raise ImportError("numpy.core.multiarray failed to import")
19326
19345
  *
19327
19346
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19345,7 +19364,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19345
19364
  int __pyx_clineno = 0;
19346
19365
  __Pyx_RefNannySetupContext("import_umath", 1);
19347
19366
 
19348
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19367
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19349
19368
  *
19350
19369
  * cdef inline int import_umath() except -1:
19351
19370
  * try: # <<<<<<<<<<<<<<
@@ -19361,7 +19380,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19361
19380
  __Pyx_XGOTREF(__pyx_t_3);
19362
19381
  /*try:*/ {
19363
19382
 
19364
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
19383
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
19365
19384
  * cdef inline int import_umath() except -1:
19366
19385
  * try:
19367
19386
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19370,7 +19389,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19370
19389
  */
19371
19390
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
19372
19391
 
19373
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19392
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19374
19393
  *
19375
19394
  * cdef inline int import_umath() except -1:
19376
19395
  * try: # <<<<<<<<<<<<<<
@@ -19384,7 +19403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19384
19403
  goto __pyx_L8_try_end;
19385
19404
  __pyx_L3_error:;
19386
19405
 
19387
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
19406
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
19388
19407
  * try:
19389
19408
  * _import_umath()
19390
19409
  * except Exception: # <<<<<<<<<<<<<<
@@ -19399,7 +19418,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19399
19418
  __Pyx_XGOTREF(__pyx_t_6);
19400
19419
  __Pyx_XGOTREF(__pyx_t_7);
19401
19420
 
19402
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
19421
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
19403
19422
  * _import_umath()
19404
19423
  * except Exception:
19405
19424
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19414,7 +19433,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19414
19433
  }
19415
19434
  goto __pyx_L5_except_error;
19416
19435
 
19417
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19436
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
19418
19437
  *
19419
19438
  * cdef inline int import_umath() except -1:
19420
19439
  * try: # <<<<<<<<<<<<<<
@@ -19430,7 +19449,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19430
19449
  __pyx_L8_try_end:;
19431
19450
  }
19432
19451
 
19433
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
19452
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
19434
19453
  * raise ImportError("numpy.core.multiarray failed to import")
19435
19454
  *
19436
19455
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19453,7 +19472,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19453
19472
  return __pyx_r;
19454
19473
  }
19455
19474
 
19456
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
19475
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
19457
19476
  * raise ImportError("numpy.core.umath failed to import")
19458
19477
  *
19459
19478
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19477,7 +19496,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19477
19496
  int __pyx_clineno = 0;
19478
19497
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19479
19498
 
19480
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19499
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19481
19500
  *
19482
19501
  * cdef inline int import_ufunc() except -1:
19483
19502
  * try: # <<<<<<<<<<<<<<
@@ -19493,7 +19512,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19493
19512
  __Pyx_XGOTREF(__pyx_t_3);
19494
19513
  /*try:*/ {
19495
19514
 
19496
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
19515
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
19497
19516
  * cdef inline int import_ufunc() except -1:
19498
19517
  * try:
19499
19518
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19502,7 +19521,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19502
19521
  */
19503
19522
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
19504
19523
 
19505
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19524
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19506
19525
  *
19507
19526
  * cdef inline int import_ufunc() except -1:
19508
19527
  * try: # <<<<<<<<<<<<<<
@@ -19516,7 +19535,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19516
19535
  goto __pyx_L8_try_end;
19517
19536
  __pyx_L3_error:;
19518
19537
 
19519
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
19538
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
19520
19539
  * try:
19521
19540
  * _import_umath()
19522
19541
  * except Exception: # <<<<<<<<<<<<<<
@@ -19531,7 +19550,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19531
19550
  __Pyx_XGOTREF(__pyx_t_6);
19532
19551
  __Pyx_XGOTREF(__pyx_t_7);
19533
19552
 
19534
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
19553
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
19535
19554
  * _import_umath()
19536
19555
  * except Exception:
19537
19556
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19546,7 +19565,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19546
19565
  }
19547
19566
  goto __pyx_L5_except_error;
19548
19567
 
19549
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19568
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
19550
19569
  *
19551
19570
  * cdef inline int import_ufunc() except -1:
19552
19571
  * try: # <<<<<<<<<<<<<<
@@ -19562,7 +19581,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19562
19581
  __pyx_L8_try_end:;
19563
19582
  }
19564
19583
 
19565
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
19584
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
19566
19585
  * raise ImportError("numpy.core.umath failed to import")
19567
19586
  *
19568
19587
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19585,7 +19604,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19585
19604
  return __pyx_r;
19586
19605
  }
19587
19606
 
19588
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
19607
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
19589
19608
  *
19590
19609
  *
19591
19610
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19596,7 +19615,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19596
19615
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19597
19616
  int __pyx_r;
19598
19617
 
19599
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
19618
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
19600
19619
  * bool
19601
19620
  * """
19602
19621
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19606,7 +19625,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19606
19625
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19607
19626
  goto __pyx_L0;
19608
19627
 
19609
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
19628
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
19610
19629
  *
19611
19630
  *
19612
19631
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19619,7 +19638,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19619
19638
  return __pyx_r;
19620
19639
  }
19621
19640
 
19622
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
19641
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
19623
19642
  *
19624
19643
  *
19625
19644
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19630,7 +19649,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19630
19649
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19631
19650
  int __pyx_r;
19632
19651
 
19633
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
19652
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
19634
19653
  * bool
19635
19654
  * """
19636
19655
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19640,7 +19659,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19640
19659
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19641
19660
  goto __pyx_L0;
19642
19661
 
19643
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
19662
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
19644
19663
  *
19645
19664
  *
19646
19665
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19653,7 +19672,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19653
19672
  return __pyx_r;
19654
19673
  }
19655
19674
 
19656
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
19675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
19657
19676
  *
19658
19677
  *
19659
19678
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19664,7 +19683,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19664
19683
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19665
19684
  npy_datetime __pyx_r;
19666
19685
 
19667
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
19686
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
19668
19687
  * also needed. That can be found using `get_datetime64_unit`.
19669
19688
  * """
19670
19689
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19674,7 +19693,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19674
19693
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19675
19694
  goto __pyx_L0;
19676
19695
 
19677
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
19696
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
19678
19697
  *
19679
19698
  *
19680
19699
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19687,7 +19706,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19687
19706
  return __pyx_r;
19688
19707
  }
19689
19708
 
19690
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
19709
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
19691
19710
  *
19692
19711
  *
19693
19712
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19698,7 +19717,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19698
19717
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19699
19718
  npy_timedelta __pyx_r;
19700
19719
 
19701
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
19720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
19702
19721
  * returns the int64 value underlying scalar numpy timedelta64 object
19703
19722
  * """
19704
19723
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19708,7 +19727,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19708
19727
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19709
19728
  goto __pyx_L0;
19710
19729
 
19711
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
19730
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
19712
19731
  *
19713
19732
  *
19714
19733
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19721,7 +19740,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19721
19740
  return __pyx_r;
19722
19741
  }
19723
19742
 
19724
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
19743
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
19725
19744
  *
19726
19745
  *
19727
19746
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19732,7 +19751,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19732
19751
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19733
19752
  NPY_DATETIMEUNIT __pyx_r;
19734
19753
 
19735
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
19754
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
19736
19755
  * returns the unit part of the dtype for a numpy datetime64 object.
19737
19756
  * """
19738
19757
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19740,7 +19759,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19740
19759
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19741
19760
  goto __pyx_L0;
19742
19761
 
19743
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
19762
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
19744
19763
  *
19745
19764
  *
19746
19765
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -24428,7 +24447,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
24428
24447
  __Pyx_GOTREF(__pyx_tuple__8);
24429
24448
  __Pyx_GIVEREF(__pyx_tuple__8);
24430
24449
 
24431
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
24450
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
24432
24451
  * __pyx_import_array()
24433
24452
  * except Exception:
24434
24453
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -24439,7 +24458,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
24439
24458
  __Pyx_GOTREF(__pyx_tuple__9);
24440
24459
  __Pyx_GIVEREF(__pyx_tuple__9);
24441
24460
 
24442
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
24461
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
24443
24462
  * _import_umath()
24444
24463
  * except Exception:
24445
24464
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -24881,33 +24900,33 @@ static int __Pyx_modinit_type_import_code(void) {
24881
24900
  /*--- Type import code ---*/
24882
24901
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
24883
24902
  __Pyx_GOTREF(__pyx_t_1);
24884
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
24903
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
24885
24904
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
24886
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
24905
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
24887
24906
  #elif CYTHON_COMPILING_IN_LIMITED_API
24888
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
24907
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
24889
24908
  #else
24890
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
24909
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
24891
24910
  #endif
24892
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
24911
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
24893
24912
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
24894
24913
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
24895
24914
  __Pyx_GOTREF(__pyx_t_1);
24896
- __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)
24897
- __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)
24898
- __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)
24899
- __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)
24900
- __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, 812, __pyx_L1_error)
24901
- __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, 814, __pyx_L1_error)
24902
- __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, 816, __pyx_L1_error)
24903
- __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, 818, __pyx_L1_error)
24904
- __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, 820, __pyx_L1_error)
24905
- __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, 822, __pyx_L1_error)
24906
- __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, 824, __pyx_L1_error)
24907
- __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, 826, __pyx_L1_error)
24908
- __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, 828, __pyx_L1_error)
24909
- __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, 830, __pyx_L1_error)
24910
- __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, 868, __pyx_L1_error)
24915
+ __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)
24916
+ __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)
24917
+ __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)
24918
+ __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)
24919
+ __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, 812, __pyx_L1_error)
24920
+ __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, 814, __pyx_L1_error)
24921
+ __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, 816, __pyx_L1_error)
24922
+ __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, 818, __pyx_L1_error)
24923
+ __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, 820, __pyx_L1_error)
24924
+ __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, 822, __pyx_L1_error)
24925
+ __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, 824, __pyx_L1_error)
24926
+ __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, 826, __pyx_L1_error)
24927
+ __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, 828, __pyx_L1_error)
24928
+ __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, 830, __pyx_L1_error)
24929
+ __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, 868, __pyx_L1_error)
24911
24930
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
24912
24931
  __Pyx_RefNannyFinishContext();
24913
24932
  return 0;
@@ -26360,11 +26379,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
26360
26379
  {
26361
26380
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
26362
26381
  if (unlikely(eq != 0)) {
26363
- if (unlikely(eq < 0)) return NULL; // error
26382
+ if (unlikely(eq < 0)) return NULL;
26364
26383
  return kwvalues[i];
26365
26384
  }
26366
26385
  }
26367
- return NULL; // not found (no exception set)
26386
+ return NULL;
26368
26387
  }
26369
26388
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
26370
26389
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -26477,7 +26496,7 @@ static int __Pyx_ParseOptionalKeywords(
26477
26496
  if (*name) {
26478
26497
  values[name-argnames] = value;
26479
26498
  #if CYTHON_AVOID_BORROWED_REFS
26480
- Py_INCREF(value); // transfer ownership of value to values
26499
+ Py_INCREF(value);
26481
26500
  Py_DECREF(key);
26482
26501
  #endif
26483
26502
  key = NULL;
@@ -26496,7 +26515,7 @@ static int __Pyx_ParseOptionalKeywords(
26496
26515
  && _PyString_Eq(**name, key)) {
26497
26516
  values[name-argnames] = value;
26498
26517
  #if CYTHON_AVOID_BORROWED_REFS
26499
- value = NULL; // ownership transferred to values
26518
+ value = NULL;
26500
26519
  #endif
26501
26520
  break;
26502
26521
  }
@@ -26528,7 +26547,7 @@ static int __Pyx_ParseOptionalKeywords(
26528
26547
  if (cmp == 0) {
26529
26548
  values[name-argnames] = value;
26530
26549
  #if CYTHON_AVOID_BORROWED_REFS
26531
- value = NULL; // ownership transferred to values
26550
+ value = NULL;
26532
26551
  #endif
26533
26552
  break;
26534
26553
  }
@@ -29535,10 +29554,10 @@ __PYX_GOOD:
29535
29554
  #endif
29536
29555
 
29537
29556
  /* TypeImport */
29538
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
29539
- #define __PYX_HAVE_RT_ImportType_3_0_7
29540
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
29541
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
29557
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
29558
+ #define __PYX_HAVE_RT_ImportType_3_0_10
29559
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
29560
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
29542
29561
  {
29543
29562
  PyObject *result = 0;
29544
29563
  char warning[200];
@@ -29592,7 +29611,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
29592
29611
  module_name, class_name, size, basicsize+itemsize);
29593
29612
  goto bad;
29594
29613
  }
29595
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
29614
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
29596
29615
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
29597
29616
  PyErr_Format(PyExc_ValueError,
29598
29617
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -29600,7 +29619,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
29600
29619
  module_name, class_name, size, basicsize, basicsize+itemsize);
29601
29620
  goto bad;
29602
29621
  }
29603
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
29622
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
29604
29623
  PyOS_snprintf(warning, sizeof(warning),
29605
29624
  "%s.%s size changed, may indicate binary incompatibility. "
29606
29625
  "Expected %zd from C header, got %zd from PyObject",
@@ -30600,7 +30619,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
30600
30619
  default:
30601
30620
  return NULL;
30602
30621
  }
30603
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
30622
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
30604
30623
  }
30605
30624
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
30606
30625
  {
@@ -31059,7 +31078,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
31059
31078
  #else
31060
31079
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
31061
31080
  #endif
31062
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
31081
+ Py_XDECREF(py_funcname);
31063
31082
  return py_code;
31064
31083
  bad:
31065
31084
  Py_XDECREF(py_funcname);