passagemath-categories 10.6.32__cp314-cp314t-musllinux_1_2_aarch64.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.
Files changed (719) hide show
  1. passagemath_categories-10.6.32.dist-info/METADATA +156 -0
  2. passagemath_categories-10.6.32.dist-info/RECORD +719 -0
  3. passagemath_categories-10.6.32.dist-info/WHEEL +5 -0
  4. passagemath_categories-10.6.32.dist-info/top_level.txt +2 -0
  5. passagemath_categories.libs/libgcc_s-2d945d6c.so.1 +0 -0
  6. passagemath_categories.libs/libgmp-28992bcb.so.10.5.0 +0 -0
  7. passagemath_categories.libs/libstdc++-85f2cd6d.so.6.0.33 +0 -0
  8. sage/all__sagemath_categories.py +28 -0
  9. sage/arith/all.py +38 -0
  10. sage/arith/constants.pxd +27 -0
  11. sage/arith/functions.cpython-314t-aarch64-linux-musl.so +0 -0
  12. sage/arith/functions.pxd +4 -0
  13. sage/arith/functions.pyx +221 -0
  14. sage/arith/misc.py +6552 -0
  15. sage/arith/multi_modular.cpython-314t-aarch64-linux-musl.so +0 -0
  16. sage/arith/multi_modular.pxd +39 -0
  17. sage/arith/multi_modular.pyx +994 -0
  18. sage/arith/rational_reconstruction.cpython-314t-aarch64-linux-musl.so +0 -0
  19. sage/arith/rational_reconstruction.pxd +4 -0
  20. sage/arith/rational_reconstruction.pyx +115 -0
  21. sage/arith/srange.cpython-314t-aarch64-linux-musl.so +0 -0
  22. sage/arith/srange.pyx +571 -0
  23. sage/calculus/all__sagemath_categories.py +2 -0
  24. sage/calculus/functional.py +481 -0
  25. sage/calculus/functions.py +151 -0
  26. sage/categories/additive_groups.py +73 -0
  27. sage/categories/additive_magmas.py +1044 -0
  28. sage/categories/additive_monoids.py +114 -0
  29. sage/categories/additive_semigroups.py +184 -0
  30. sage/categories/affine_weyl_groups.py +238 -0
  31. sage/categories/algebra_ideals.py +95 -0
  32. sage/categories/algebra_modules.py +96 -0
  33. sage/categories/algebras.py +349 -0
  34. sage/categories/algebras_with_basis.py +377 -0
  35. sage/categories/all.py +160 -0
  36. sage/categories/aperiodic_semigroups.py +29 -0
  37. sage/categories/associative_algebras.py +47 -0
  38. sage/categories/bialgebras.py +101 -0
  39. sage/categories/bialgebras_with_basis.py +414 -0
  40. sage/categories/bimodules.py +206 -0
  41. sage/categories/chain_complexes.py +268 -0
  42. sage/categories/classical_crystals.py +480 -0
  43. sage/categories/coalgebras.py +405 -0
  44. sage/categories/coalgebras_with_basis.py +232 -0
  45. sage/categories/coercion_methods.cpython-314t-aarch64-linux-musl.so +0 -0
  46. sage/categories/coercion_methods.pyx +52 -0
  47. sage/categories/commutative_additive_groups.py +104 -0
  48. sage/categories/commutative_additive_monoids.py +45 -0
  49. sage/categories/commutative_additive_semigroups.py +48 -0
  50. sage/categories/commutative_algebra_ideals.py +87 -0
  51. sage/categories/commutative_algebras.py +94 -0
  52. sage/categories/commutative_ring_ideals.py +58 -0
  53. sage/categories/commutative_rings.py +736 -0
  54. sage/categories/complete_discrete_valuation.py +293 -0
  55. sage/categories/complex_reflection_groups.py +145 -0
  56. sage/categories/complex_reflection_or_generalized_coxeter_groups.py +1249 -0
  57. sage/categories/coxeter_group_algebras.py +186 -0
  58. sage/categories/coxeter_groups.py +3402 -0
  59. sage/categories/crystals.py +2628 -0
  60. sage/categories/cw_complexes.py +216 -0
  61. sage/categories/dedekind_domains.py +137 -0
  62. sage/categories/discrete_valuation.py +325 -0
  63. sage/categories/distributive_magmas_and_additive_magmas.py +100 -0
  64. sage/categories/division_rings.py +114 -0
  65. sage/categories/domains.py +95 -0
  66. sage/categories/drinfeld_modules.py +789 -0
  67. sage/categories/dual.py +42 -0
  68. sage/categories/enumerated_sets.py +1146 -0
  69. sage/categories/euclidean_domains.py +271 -0
  70. sage/categories/examples/algebras_with_basis.py +102 -0
  71. sage/categories/examples/all.py +1 -0
  72. sage/categories/examples/commutative_additive_monoids.py +130 -0
  73. sage/categories/examples/commutative_additive_semigroups.py +199 -0
  74. sage/categories/examples/coxeter_groups.py +8 -0
  75. sage/categories/examples/crystals.py +236 -0
  76. sage/categories/examples/cw_complexes.py +163 -0
  77. sage/categories/examples/facade_sets.py +187 -0
  78. sage/categories/examples/filtered_algebras_with_basis.py +204 -0
  79. sage/categories/examples/filtered_modules_with_basis.py +154 -0
  80. sage/categories/examples/finite_coxeter_groups.py +252 -0
  81. sage/categories/examples/finite_dimensional_algebras_with_basis.py +148 -0
  82. sage/categories/examples/finite_dimensional_lie_algebras_with_basis.py +495 -0
  83. sage/categories/examples/finite_enumerated_sets.py +208 -0
  84. sage/categories/examples/finite_monoids.py +150 -0
  85. sage/categories/examples/finite_semigroups.py +190 -0
  86. sage/categories/examples/finite_weyl_groups.py +191 -0
  87. sage/categories/examples/graded_connected_hopf_algebras_with_basis.py +152 -0
  88. sage/categories/examples/graded_modules_with_basis.py +168 -0
  89. sage/categories/examples/graphs.py +122 -0
  90. sage/categories/examples/hopf_algebras_with_basis.py +145 -0
  91. sage/categories/examples/infinite_enumerated_sets.py +190 -0
  92. sage/categories/examples/lie_algebras.py +352 -0
  93. sage/categories/examples/lie_algebras_with_basis.py +196 -0
  94. sage/categories/examples/magmas.py +162 -0
  95. sage/categories/examples/manifolds.py +94 -0
  96. sage/categories/examples/monoids.py +144 -0
  97. sage/categories/examples/posets.py +178 -0
  98. sage/categories/examples/semigroups.py +580 -0
  99. sage/categories/examples/semigroups_cython.cpython-314t-aarch64-linux-musl.so +0 -0
  100. sage/categories/examples/semigroups_cython.pyx +221 -0
  101. sage/categories/examples/semirings.py +249 -0
  102. sage/categories/examples/sets_cat.py +706 -0
  103. sage/categories/examples/sets_with_grading.py +101 -0
  104. sage/categories/examples/with_realizations.py +542 -0
  105. sage/categories/fields.py +991 -0
  106. sage/categories/filtered_algebras.py +63 -0
  107. sage/categories/filtered_algebras_with_basis.py +548 -0
  108. sage/categories/filtered_hopf_algebras_with_basis.py +138 -0
  109. sage/categories/filtered_modules.py +210 -0
  110. sage/categories/filtered_modules_with_basis.py +1209 -0
  111. sage/categories/finite_complex_reflection_groups.py +1506 -0
  112. sage/categories/finite_coxeter_groups.py +1138 -0
  113. sage/categories/finite_crystals.py +103 -0
  114. sage/categories/finite_dimensional_algebras_with_basis.py +1860 -0
  115. sage/categories/finite_dimensional_bialgebras_with_basis.py +33 -0
  116. sage/categories/finite_dimensional_coalgebras_with_basis.py +33 -0
  117. sage/categories/finite_dimensional_graded_lie_algebras_with_basis.py +231 -0
  118. sage/categories/finite_dimensional_hopf_algebras_with_basis.py +38 -0
  119. sage/categories/finite_dimensional_lie_algebras_with_basis.py +2774 -0
  120. sage/categories/finite_dimensional_modules_with_basis.py +1407 -0
  121. sage/categories/finite_dimensional_nilpotent_lie_algebras_with_basis.py +167 -0
  122. sage/categories/finite_dimensional_semisimple_algebras_with_basis.py +270 -0
  123. sage/categories/finite_enumerated_sets.py +769 -0
  124. sage/categories/finite_fields.py +252 -0
  125. sage/categories/finite_groups.py +256 -0
  126. sage/categories/finite_lattice_posets.py +242 -0
  127. sage/categories/finite_monoids.py +316 -0
  128. sage/categories/finite_permutation_groups.py +339 -0
  129. sage/categories/finite_posets.py +1994 -0
  130. sage/categories/finite_semigroups.py +136 -0
  131. sage/categories/finite_sets.py +93 -0
  132. sage/categories/finite_weyl_groups.py +39 -0
  133. sage/categories/finitely_generated_lambda_bracket_algebras.py +112 -0
  134. sage/categories/finitely_generated_lie_conformal_algebras.py +114 -0
  135. sage/categories/finitely_generated_magmas.py +57 -0
  136. sage/categories/finitely_generated_semigroups.py +214 -0
  137. sage/categories/function_fields.py +76 -0
  138. sage/categories/g_sets.py +77 -0
  139. sage/categories/gcd_domains.py +65 -0
  140. sage/categories/generalized_coxeter_groups.py +94 -0
  141. sage/categories/graded_algebras.py +85 -0
  142. sage/categories/graded_algebras_with_basis.py +258 -0
  143. sage/categories/graded_bialgebras.py +32 -0
  144. sage/categories/graded_bialgebras_with_basis.py +32 -0
  145. sage/categories/graded_coalgebras.py +65 -0
  146. sage/categories/graded_coalgebras_with_basis.py +51 -0
  147. sage/categories/graded_hopf_algebras.py +41 -0
  148. sage/categories/graded_hopf_algebras_with_basis.py +169 -0
  149. sage/categories/graded_lie_algebras.py +91 -0
  150. sage/categories/graded_lie_algebras_with_basis.py +44 -0
  151. sage/categories/graded_lie_conformal_algebras.py +74 -0
  152. sage/categories/graded_modules.py +133 -0
  153. sage/categories/graded_modules_with_basis.py +329 -0
  154. sage/categories/graphs.py +138 -0
  155. sage/categories/group_algebras.py +430 -0
  156. sage/categories/groupoid.py +94 -0
  157. sage/categories/groups.py +667 -0
  158. sage/categories/h_trivial_semigroups.py +64 -0
  159. sage/categories/hecke_modules.py +185 -0
  160. sage/categories/highest_weight_crystals.py +980 -0
  161. sage/categories/hopf_algebras.py +219 -0
  162. sage/categories/hopf_algebras_with_basis.py +309 -0
  163. sage/categories/infinite_enumerated_sets.py +115 -0
  164. sage/categories/integral_domains.py +203 -0
  165. sage/categories/j_trivial_semigroups.py +29 -0
  166. sage/categories/kac_moody_algebras.py +82 -0
  167. sage/categories/kahler_algebras.py +203 -0
  168. sage/categories/l_trivial_semigroups.py +63 -0
  169. sage/categories/lambda_bracket_algebras.py +280 -0
  170. sage/categories/lambda_bracket_algebras_with_basis.py +107 -0
  171. sage/categories/lattice_posets.py +89 -0
  172. sage/categories/left_modules.py +49 -0
  173. sage/categories/lie_algebras.py +1070 -0
  174. sage/categories/lie_algebras_with_basis.py +261 -0
  175. sage/categories/lie_conformal_algebras.py +350 -0
  176. sage/categories/lie_conformal_algebras_with_basis.py +147 -0
  177. sage/categories/lie_groups.py +73 -0
  178. sage/categories/loop_crystals.py +1290 -0
  179. sage/categories/magmas.py +1189 -0
  180. sage/categories/magmas_and_additive_magmas.py +149 -0
  181. sage/categories/magmatic_algebras.py +365 -0
  182. sage/categories/manifolds.py +352 -0
  183. sage/categories/matrix_algebras.py +40 -0
  184. sage/categories/metric_spaces.py +387 -0
  185. sage/categories/modular_abelian_varieties.py +78 -0
  186. sage/categories/modules.py +989 -0
  187. sage/categories/modules_with_basis.py +2794 -0
  188. sage/categories/monoid_algebras.py +38 -0
  189. sage/categories/monoids.py +739 -0
  190. sage/categories/noetherian_rings.py +87 -0
  191. sage/categories/number_fields.py +242 -0
  192. sage/categories/ore_modules.py +189 -0
  193. sage/categories/partially_ordered_monoids.py +49 -0
  194. sage/categories/permutation_groups.py +63 -0
  195. sage/categories/pointed_sets.py +42 -0
  196. sage/categories/polyhedra.py +74 -0
  197. sage/categories/poor_man_map.py +270 -0
  198. sage/categories/posets.py +722 -0
  199. sage/categories/principal_ideal_domains.py +270 -0
  200. sage/categories/quantum_group_representations.py +543 -0
  201. sage/categories/quotient_fields.py +728 -0
  202. sage/categories/r_trivial_semigroups.py +45 -0
  203. sage/categories/regular_crystals.py +898 -0
  204. sage/categories/regular_supercrystals.py +170 -0
  205. sage/categories/right_modules.py +49 -0
  206. sage/categories/ring_ideals.py +74 -0
  207. sage/categories/rings.py +1904 -0
  208. sage/categories/rngs.py +175 -0
  209. sage/categories/schemes.py +393 -0
  210. sage/categories/semigroups.py +1060 -0
  211. sage/categories/semirings.py +71 -0
  212. sage/categories/semisimple_algebras.py +114 -0
  213. sage/categories/sets_with_grading.py +235 -0
  214. sage/categories/shephard_groups.py +43 -0
  215. sage/categories/signed_tensor.py +120 -0
  216. sage/categories/simplicial_complexes.py +134 -0
  217. sage/categories/simplicial_sets.py +1206 -0
  218. sage/categories/super_algebras.py +149 -0
  219. sage/categories/super_algebras_with_basis.py +144 -0
  220. sage/categories/super_hopf_algebras_with_basis.py +126 -0
  221. sage/categories/super_lie_conformal_algebras.py +193 -0
  222. sage/categories/super_modules.py +229 -0
  223. sage/categories/super_modules_with_basis.py +193 -0
  224. sage/categories/supercommutative_algebras.py +99 -0
  225. sage/categories/supercrystals.py +406 -0
  226. sage/categories/tensor.py +110 -0
  227. sage/categories/topological_spaces.py +170 -0
  228. sage/categories/triangular_kac_moody_algebras.py +439 -0
  229. sage/categories/tutorial.py +58 -0
  230. sage/categories/unique_factorization_domains.py +318 -0
  231. sage/categories/unital_algebras.py +426 -0
  232. sage/categories/vector_bundles.py +159 -0
  233. sage/categories/vector_spaces.py +357 -0
  234. sage/categories/weyl_groups.py +853 -0
  235. sage/combinat/all__sagemath_categories.py +34 -0
  236. sage/combinat/backtrack.py +180 -0
  237. sage/combinat/combinat.py +2269 -0
  238. sage/combinat/combinat_cython.cpython-314t-aarch64-linux-musl.so +0 -0
  239. sage/combinat/combinat_cython.pxd +6 -0
  240. sage/combinat/combinat_cython.pyx +390 -0
  241. sage/combinat/combination.py +796 -0
  242. sage/combinat/combinatorial_map.py +416 -0
  243. sage/combinat/composition.py +2192 -0
  244. sage/combinat/dlx.py +510 -0
  245. sage/combinat/integer_lists/__init__.py +7 -0
  246. sage/combinat/integer_lists/base.cpython-314t-aarch64-linux-musl.so +0 -0
  247. sage/combinat/integer_lists/base.pxd +16 -0
  248. sage/combinat/integer_lists/base.pyx +713 -0
  249. sage/combinat/integer_lists/invlex.cpython-314t-aarch64-linux-musl.so +0 -0
  250. sage/combinat/integer_lists/invlex.pxd +4 -0
  251. sage/combinat/integer_lists/invlex.pyx +1650 -0
  252. sage/combinat/integer_lists/lists.py +328 -0
  253. sage/combinat/integer_lists/nn.py +48 -0
  254. sage/combinat/integer_vector.py +1818 -0
  255. sage/combinat/integer_vector_weighted.py +413 -0
  256. sage/combinat/matrices/all__sagemath_categories.py +5 -0
  257. sage/combinat/matrices/dancing_links.cpython-314t-aarch64-linux-musl.so +0 -0
  258. sage/combinat/matrices/dancing_links.pyx +1159 -0
  259. sage/combinat/matrices/dancing_links_c.h +380 -0
  260. sage/combinat/matrices/dlxcpp.py +136 -0
  261. sage/combinat/partition.py +10070 -0
  262. sage/combinat/partitions.cpython-314t-aarch64-linux-musl.so +0 -0
  263. sage/combinat/partitions.pyx +743 -0
  264. sage/combinat/permutation.py +10168 -0
  265. sage/combinat/permutation_cython.cpython-314t-aarch64-linux-musl.so +0 -0
  266. sage/combinat/permutation_cython.pxd +11 -0
  267. sage/combinat/permutation_cython.pyx +407 -0
  268. sage/combinat/q_analogues.py +1090 -0
  269. sage/combinat/ranker.py +268 -0
  270. sage/combinat/subset.py +1561 -0
  271. sage/combinat/subsets_hereditary.py +202 -0
  272. sage/combinat/subsets_pairwise.py +184 -0
  273. sage/combinat/tools.py +63 -0
  274. sage/combinat/tuple.py +348 -0
  275. sage/data_structures/all.py +2 -0
  276. sage/data_structures/all__sagemath_categories.py +2 -0
  277. sage/data_structures/binary_matrix.pxd +138 -0
  278. sage/data_structures/binary_search.cpython-314t-aarch64-linux-musl.so +0 -0
  279. sage/data_structures/binary_search.pxd +3 -0
  280. sage/data_structures/binary_search.pyx +66 -0
  281. sage/data_structures/bitset.cpython-314t-aarch64-linux-musl.so +0 -0
  282. sage/data_structures/bitset.pxd +40 -0
  283. sage/data_structures/bitset.pyx +2385 -0
  284. sage/data_structures/bitset_base.cpython-314t-aarch64-linux-musl.so +0 -0
  285. sage/data_structures/bitset_base.pxd +926 -0
  286. sage/data_structures/bitset_base.pyx +117 -0
  287. sage/data_structures/bitset_intrinsics.h +487 -0
  288. sage/data_structures/blas_dict.cpython-314t-aarch64-linux-musl.so +0 -0
  289. sage/data_structures/blas_dict.pxd +12 -0
  290. sage/data_structures/blas_dict.pyx +469 -0
  291. sage/data_structures/list_of_pairs.cpython-314t-aarch64-linux-musl.so +0 -0
  292. sage/data_structures/list_of_pairs.pxd +16 -0
  293. sage/data_structures/list_of_pairs.pyx +122 -0
  294. sage/data_structures/mutable_poset.py +3312 -0
  295. sage/data_structures/pairing_heap.cpython-314t-aarch64-linux-musl.so +0 -0
  296. sage/data_structures/pairing_heap.h +346 -0
  297. sage/data_structures/pairing_heap.pxd +88 -0
  298. sage/data_structures/pairing_heap.pyx +1464 -0
  299. sage/data_structures/sparse_bitset.pxd +62 -0
  300. sage/data_structures/stream.py +5070 -0
  301. sage/databases/all__sagemath_categories.py +7 -0
  302. sage/databases/sql_db.py +2236 -0
  303. sage/ext/all__sagemath_categories.py +3 -0
  304. sage/ext/fast_callable.cpython-314t-aarch64-linux-musl.so +0 -0
  305. sage/ext/fast_callable.pxd +4 -0
  306. sage/ext/fast_callable.pyx +2746 -0
  307. sage/ext/fast_eval.cpython-314t-aarch64-linux-musl.so +0 -0
  308. sage/ext/fast_eval.pxd +1 -0
  309. sage/ext/fast_eval.pyx +102 -0
  310. sage/ext/interpreters/__init__.py +1 -0
  311. sage/ext/interpreters/all__sagemath_categories.py +2 -0
  312. sage/ext/interpreters/wrapper_el.cpython-314t-aarch64-linux-musl.so +0 -0
  313. sage/ext/interpreters/wrapper_el.pxd +18 -0
  314. sage/ext/interpreters/wrapper_el.pyx +148 -0
  315. sage/ext/interpreters/wrapper_py.cpython-314t-aarch64-linux-musl.so +0 -0
  316. sage/ext/interpreters/wrapper_py.pxd +17 -0
  317. sage/ext/interpreters/wrapper_py.pyx +133 -0
  318. sage/functions/airy.py +937 -0
  319. sage/functions/all.py +97 -0
  320. sage/functions/bessel.py +2102 -0
  321. sage/functions/error.py +784 -0
  322. sage/functions/exp_integral.py +1529 -0
  323. sage/functions/gamma.py +1087 -0
  324. sage/functions/generalized.py +672 -0
  325. sage/functions/hyperbolic.py +747 -0
  326. sage/functions/hypergeometric.py +1156 -0
  327. sage/functions/jacobi.py +1705 -0
  328. sage/functions/log.py +1402 -0
  329. sage/functions/min_max.py +338 -0
  330. sage/functions/orthogonal_polys.py +3106 -0
  331. sage/functions/other.py +2303 -0
  332. sage/functions/piecewise.py +1505 -0
  333. sage/functions/prime_pi.cpython-314t-aarch64-linux-musl.so +0 -0
  334. sage/functions/prime_pi.pyx +262 -0
  335. sage/functions/special.py +1212 -0
  336. sage/functions/spike_function.py +278 -0
  337. sage/functions/transcendental.py +690 -0
  338. sage/functions/trig.py +1062 -0
  339. sage/functions/wigner.py +726 -0
  340. sage/geometry/abc.cpython-314t-aarch64-linux-musl.so +0 -0
  341. sage/geometry/abc.pyx +82 -0
  342. sage/geometry/all__sagemath_categories.py +1 -0
  343. sage/groups/all__sagemath_categories.py +11 -0
  344. sage/groups/generic.py +1733 -0
  345. sage/groups/groups_catalog.py +113 -0
  346. sage/groups/perm_gps/all__sagemath_categories.py +1 -0
  347. sage/groups/perm_gps/partn_ref/all.py +1 -0
  348. sage/groups/perm_gps/partn_ref/all__sagemath_categories.py +1 -0
  349. sage/groups/perm_gps/partn_ref/automorphism_group_canonical_label.cpython-314t-aarch64-linux-musl.so +0 -0
  350. sage/groups/perm_gps/partn_ref/automorphism_group_canonical_label.pxd +52 -0
  351. sage/groups/perm_gps/partn_ref/automorphism_group_canonical_label.pyx +906 -0
  352. sage/groups/perm_gps/partn_ref/canonical_augmentation.cpython-314t-aarch64-linux-musl.so +0 -0
  353. sage/groups/perm_gps/partn_ref/canonical_augmentation.pxd +85 -0
  354. sage/groups/perm_gps/partn_ref/canonical_augmentation.pyx +534 -0
  355. sage/groups/perm_gps/partn_ref/data_structures.cpython-314t-aarch64-linux-musl.so +0 -0
  356. sage/groups/perm_gps/partn_ref/data_structures.pxd +576 -0
  357. sage/groups/perm_gps/partn_ref/data_structures.pyx +1792 -0
  358. sage/groups/perm_gps/partn_ref/double_coset.cpython-314t-aarch64-linux-musl.so +0 -0
  359. sage/groups/perm_gps/partn_ref/double_coset.pxd +45 -0
  360. sage/groups/perm_gps/partn_ref/double_coset.pyx +739 -0
  361. sage/groups/perm_gps/partn_ref/refinement_lists.cpython-314t-aarch64-linux-musl.so +0 -0
  362. sage/groups/perm_gps/partn_ref/refinement_lists.pxd +18 -0
  363. sage/groups/perm_gps/partn_ref/refinement_lists.pyx +82 -0
  364. sage/groups/perm_gps/partn_ref/refinement_python.cpython-314t-aarch64-linux-musl.so +0 -0
  365. sage/groups/perm_gps/partn_ref/refinement_python.pxd +16 -0
  366. sage/groups/perm_gps/partn_ref/refinement_python.pyx +564 -0
  367. sage/groups/perm_gps/partn_ref/refinement_sets.cpython-314t-aarch64-linux-musl.so +0 -0
  368. sage/groups/perm_gps/partn_ref/refinement_sets.pxd +60 -0
  369. sage/groups/perm_gps/partn_ref/refinement_sets.pyx +858 -0
  370. sage/interfaces/abc.py +140 -0
  371. sage/interfaces/all.py +58 -0
  372. sage/interfaces/all__sagemath_categories.py +1 -0
  373. sage/interfaces/expect.py +1643 -0
  374. sage/interfaces/interface.py +1682 -0
  375. sage/interfaces/process.cpython-314t-aarch64-linux-musl.so +0 -0
  376. sage/interfaces/process.pxd +5 -0
  377. sage/interfaces/process.pyx +288 -0
  378. sage/interfaces/quit.py +167 -0
  379. sage/interfaces/sage0.py +604 -0
  380. sage/interfaces/sagespawn.cpython-314t-aarch64-linux-musl.so +0 -0
  381. sage/interfaces/sagespawn.pyx +308 -0
  382. sage/interfaces/tab_completion.py +101 -0
  383. sage/misc/all__sagemath_categories.py +78 -0
  384. sage/misc/allocator.cpython-314t-aarch64-linux-musl.so +0 -0
  385. sage/misc/allocator.pxd +6 -0
  386. sage/misc/allocator.pyx +47 -0
  387. sage/misc/binary_tree.cpython-314t-aarch64-linux-musl.so +0 -0
  388. sage/misc/binary_tree.pxd +29 -0
  389. sage/misc/binary_tree.pyx +537 -0
  390. sage/misc/callable_dict.cpython-314t-aarch64-linux-musl.so +0 -0
  391. sage/misc/callable_dict.pyx +89 -0
  392. sage/misc/citation.cpython-314t-aarch64-linux-musl.so +0 -0
  393. sage/misc/citation.pyx +159 -0
  394. sage/misc/converting_dict.py +293 -0
  395. sage/misc/defaults.py +129 -0
  396. sage/misc/derivative.cpython-314t-aarch64-linux-musl.so +0 -0
  397. sage/misc/derivative.pyx +223 -0
  398. sage/misc/functional.py +2005 -0
  399. sage/misc/html.py +589 -0
  400. sage/misc/latex.py +2673 -0
  401. sage/misc/latex_macros.py +236 -0
  402. sage/misc/latex_standalone.py +1833 -0
  403. sage/misc/map_threaded.py +38 -0
  404. sage/misc/mathml.py +76 -0
  405. sage/misc/method_decorator.py +88 -0
  406. sage/misc/mrange.py +755 -0
  407. sage/misc/multireplace.py +41 -0
  408. sage/misc/object_multiplexer.py +92 -0
  409. sage/misc/parser.cpython-314t-aarch64-linux-musl.so +0 -0
  410. sage/misc/parser.pyx +1107 -0
  411. sage/misc/random_testing.py +264 -0
  412. sage/misc/rest_index_of_methods.py +377 -0
  413. sage/misc/search.cpython-314t-aarch64-linux-musl.so +0 -0
  414. sage/misc/search.pxd +2 -0
  415. sage/misc/search.pyx +68 -0
  416. sage/misc/stopgap.cpython-314t-aarch64-linux-musl.so +0 -0
  417. sage/misc/stopgap.pyx +95 -0
  418. sage/misc/table.py +853 -0
  419. sage/monoids/all__sagemath_categories.py +1 -0
  420. sage/monoids/indexed_free_monoid.py +1071 -0
  421. sage/monoids/monoid.py +82 -0
  422. sage/numerical/all__sagemath_categories.py +1 -0
  423. sage/numerical/backends/all__sagemath_categories.py +1 -0
  424. sage/numerical/backends/generic_backend.cpython-314t-aarch64-linux-musl.so +0 -0
  425. sage/numerical/backends/generic_backend.pxd +61 -0
  426. sage/numerical/backends/generic_backend.pyx +1893 -0
  427. sage/numerical/backends/generic_sdp_backend.cpython-314t-aarch64-linux-musl.so +0 -0
  428. sage/numerical/backends/generic_sdp_backend.pxd +38 -0
  429. sage/numerical/backends/generic_sdp_backend.pyx +755 -0
  430. sage/parallel/all.py +6 -0
  431. sage/parallel/decorate.py +575 -0
  432. sage/parallel/map_reduce.py +1997 -0
  433. sage/parallel/multiprocessing_sage.py +76 -0
  434. sage/parallel/ncpus.py +35 -0
  435. sage/parallel/parallelism.py +364 -0
  436. sage/parallel/reference.py +47 -0
  437. sage/parallel/use_fork.py +333 -0
  438. sage/rings/abc.cpython-314t-aarch64-linux-musl.so +0 -0
  439. sage/rings/abc.pxd +31 -0
  440. sage/rings/abc.pyx +526 -0
  441. sage/rings/algebraic_closure_finite_field.py +1154 -0
  442. sage/rings/all__sagemath_categories.py +91 -0
  443. sage/rings/big_oh.py +227 -0
  444. sage/rings/continued_fraction.py +2754 -0
  445. sage/rings/continued_fraction_gosper.py +220 -0
  446. sage/rings/factorint.cpython-314t-aarch64-linux-musl.so +0 -0
  447. sage/rings/factorint.pyx +295 -0
  448. sage/rings/fast_arith.cpython-314t-aarch64-linux-musl.so +0 -0
  449. sage/rings/fast_arith.pxd +21 -0
  450. sage/rings/fast_arith.pyx +535 -0
  451. sage/rings/finite_rings/all__sagemath_categories.py +9 -0
  452. sage/rings/finite_rings/conway_polynomials.py +542 -0
  453. sage/rings/finite_rings/element_base.cpython-314t-aarch64-linux-musl.so +0 -0
  454. sage/rings/finite_rings/element_base.pxd +12 -0
  455. sage/rings/finite_rings/element_base.pyx +1176 -0
  456. sage/rings/finite_rings/finite_field_base.cpython-314t-aarch64-linux-musl.so +0 -0
  457. sage/rings/finite_rings/finite_field_base.pxd +7 -0
  458. sage/rings/finite_rings/finite_field_base.pyx +2171 -0
  459. sage/rings/finite_rings/finite_field_constructor.py +827 -0
  460. sage/rings/finite_rings/finite_field_prime_modn.py +372 -0
  461. sage/rings/finite_rings/galois_group.py +154 -0
  462. sage/rings/finite_rings/hom_finite_field.cpython-314t-aarch64-linux-musl.so +0 -0
  463. sage/rings/finite_rings/hom_finite_field.pxd +23 -0
  464. sage/rings/finite_rings/hom_finite_field.pyx +856 -0
  465. sage/rings/finite_rings/hom_prime_finite_field.cpython-314t-aarch64-linux-musl.so +0 -0
  466. sage/rings/finite_rings/hom_prime_finite_field.pxd +15 -0
  467. sage/rings/finite_rings/hom_prime_finite_field.pyx +164 -0
  468. sage/rings/finite_rings/homset.py +357 -0
  469. sage/rings/finite_rings/integer_mod.cpython-314t-aarch64-linux-musl.so +0 -0
  470. sage/rings/finite_rings/integer_mod.pxd +56 -0
  471. sage/rings/finite_rings/integer_mod.pyx +4586 -0
  472. sage/rings/finite_rings/integer_mod_limits.h +11 -0
  473. sage/rings/finite_rings/integer_mod_ring.py +2044 -0
  474. sage/rings/finite_rings/residue_field.cpython-314t-aarch64-linux-musl.so +0 -0
  475. sage/rings/finite_rings/residue_field.pxd +30 -0
  476. sage/rings/finite_rings/residue_field.pyx +1811 -0
  477. sage/rings/finite_rings/stdint.pxd +19 -0
  478. sage/rings/fraction_field.py +1452 -0
  479. sage/rings/fraction_field_element.cpython-314t-aarch64-linux-musl.so +0 -0
  480. sage/rings/fraction_field_element.pyx +1357 -0
  481. sage/rings/function_field/all.py +7 -0
  482. sage/rings/function_field/all__sagemath_categories.py +2 -0
  483. sage/rings/function_field/constructor.py +218 -0
  484. sage/rings/function_field/element.cpython-314t-aarch64-linux-musl.so +0 -0
  485. sage/rings/function_field/element.pxd +11 -0
  486. sage/rings/function_field/element.pyx +1008 -0
  487. sage/rings/function_field/element_rational.cpython-314t-aarch64-linux-musl.so +0 -0
  488. sage/rings/function_field/element_rational.pyx +513 -0
  489. sage/rings/function_field/extensions.py +230 -0
  490. sage/rings/function_field/function_field.py +1468 -0
  491. sage/rings/function_field/function_field_rational.py +1005 -0
  492. sage/rings/function_field/ideal.py +1155 -0
  493. sage/rings/function_field/ideal_rational.py +629 -0
  494. sage/rings/function_field/jacobian_base.py +826 -0
  495. sage/rings/function_field/jacobian_hess.py +1053 -0
  496. sage/rings/function_field/jacobian_khuri_makdisi.py +1027 -0
  497. sage/rings/function_field/maps.py +1039 -0
  498. sage/rings/function_field/order.py +281 -0
  499. sage/rings/function_field/order_basis.py +586 -0
  500. sage/rings/function_field/order_rational.py +576 -0
  501. sage/rings/function_field/place.py +426 -0
  502. sage/rings/function_field/place_rational.py +181 -0
  503. sage/rings/generic.py +320 -0
  504. sage/rings/homset.py +332 -0
  505. sage/rings/ideal.py +1885 -0
  506. sage/rings/ideal_monoid.py +215 -0
  507. sage/rings/infinity.py +1890 -0
  508. sage/rings/integer.cpython-314t-aarch64-linux-musl.so +0 -0
  509. sage/rings/integer.pxd +45 -0
  510. sage/rings/integer.pyx +7874 -0
  511. sage/rings/integer_ring.cpython-314t-aarch64-linux-musl.so +0 -0
  512. sage/rings/integer_ring.pxd +8 -0
  513. sage/rings/integer_ring.pyx +1693 -0
  514. sage/rings/laurent_series_ring.py +931 -0
  515. sage/rings/laurent_series_ring_element.cpython-314t-aarch64-linux-musl.so +0 -0
  516. sage/rings/laurent_series_ring_element.pxd +11 -0
  517. sage/rings/laurent_series_ring_element.pyx +1927 -0
  518. sage/rings/lazy_series.py +7815 -0
  519. sage/rings/lazy_series_ring.py +4356 -0
  520. sage/rings/localization.py +1043 -0
  521. sage/rings/morphism.cpython-314t-aarch64-linux-musl.so +0 -0
  522. sage/rings/morphism.pxd +39 -0
  523. sage/rings/morphism.pyx +3299 -0
  524. sage/rings/multi_power_series_ring.py +1145 -0
  525. sage/rings/multi_power_series_ring_element.py +2184 -0
  526. sage/rings/noncommutative_ideals.cpython-314t-aarch64-linux-musl.so +0 -0
  527. sage/rings/noncommutative_ideals.pyx +423 -0
  528. sage/rings/number_field/all__sagemath_categories.py +1 -0
  529. sage/rings/number_field/number_field_base.cpython-314t-aarch64-linux-musl.so +0 -0
  530. sage/rings/number_field/number_field_base.pxd +8 -0
  531. sage/rings/number_field/number_field_base.pyx +507 -0
  532. sage/rings/number_field/number_field_element_base.cpython-314t-aarch64-linux-musl.so +0 -0
  533. sage/rings/number_field/number_field_element_base.pxd +6 -0
  534. sage/rings/number_field/number_field_element_base.pyx +36 -0
  535. sage/rings/number_field/number_field_ideal.py +3550 -0
  536. sage/rings/padics/all__sagemath_categories.py +4 -0
  537. sage/rings/padics/local_generic.py +1670 -0
  538. sage/rings/padics/local_generic_element.cpython-314t-aarch64-linux-musl.so +0 -0
  539. sage/rings/padics/local_generic_element.pxd +5 -0
  540. sage/rings/padics/local_generic_element.pyx +1017 -0
  541. sage/rings/padics/misc.py +256 -0
  542. sage/rings/padics/padic_generic.py +1911 -0
  543. sage/rings/padics/pow_computer.cpython-314t-aarch64-linux-musl.so +0 -0
  544. sage/rings/padics/pow_computer.pxd +38 -0
  545. sage/rings/padics/pow_computer.pyx +671 -0
  546. sage/rings/padics/precision_error.py +24 -0
  547. sage/rings/polynomial/all__sagemath_categories.py +25 -0
  548. sage/rings/polynomial/commutative_polynomial.cpython-314t-aarch64-linux-musl.so +0 -0
  549. sage/rings/polynomial/commutative_polynomial.pxd +6 -0
  550. sage/rings/polynomial/commutative_polynomial.pyx +24 -0
  551. sage/rings/polynomial/cyclotomic.cpython-314t-aarch64-linux-musl.so +0 -0
  552. sage/rings/polynomial/cyclotomic.pyx +404 -0
  553. sage/rings/polynomial/flatten.py +711 -0
  554. sage/rings/polynomial/ideal.py +102 -0
  555. sage/rings/polynomial/infinite_polynomial_element.py +1768 -0
  556. sage/rings/polynomial/infinite_polynomial_ring.py +1653 -0
  557. sage/rings/polynomial/laurent_polynomial.cpython-314t-aarch64-linux-musl.so +0 -0
  558. sage/rings/polynomial/laurent_polynomial.pxd +18 -0
  559. sage/rings/polynomial/laurent_polynomial.pyx +2190 -0
  560. sage/rings/polynomial/laurent_polynomial_ideal.py +590 -0
  561. sage/rings/polynomial/laurent_polynomial_ring.py +832 -0
  562. sage/rings/polynomial/laurent_polynomial_ring_base.py +708 -0
  563. sage/rings/polynomial/multi_polynomial.cpython-314t-aarch64-linux-musl.so +0 -0
  564. sage/rings/polynomial/multi_polynomial.pxd +12 -0
  565. sage/rings/polynomial/multi_polynomial.pyx +3082 -0
  566. sage/rings/polynomial/multi_polynomial_element.py +2570 -0
  567. sage/rings/polynomial/multi_polynomial_ideal.py +5771 -0
  568. sage/rings/polynomial/multi_polynomial_ring.py +947 -0
  569. sage/rings/polynomial/multi_polynomial_ring_base.cpython-314t-aarch64-linux-musl.so +0 -0
  570. sage/rings/polynomial/multi_polynomial_ring_base.pxd +15 -0
  571. sage/rings/polynomial/multi_polynomial_ring_base.pyx +1855 -0
  572. sage/rings/polynomial/multi_polynomial_sequence.py +2204 -0
  573. sage/rings/polynomial/polydict.cpython-314t-aarch64-linux-musl.so +0 -0
  574. sage/rings/polynomial/polydict.pxd +45 -0
  575. sage/rings/polynomial/polydict.pyx +2701 -0
  576. sage/rings/polynomial/polynomial_compiled.cpython-314t-aarch64-linux-musl.so +0 -0
  577. sage/rings/polynomial/polynomial_compiled.pxd +59 -0
  578. sage/rings/polynomial/polynomial_compiled.pyx +509 -0
  579. sage/rings/polynomial/polynomial_element.cpython-314t-aarch64-linux-musl.so +0 -0
  580. sage/rings/polynomial/polynomial_element.pxd +64 -0
  581. sage/rings/polynomial/polynomial_element.pyx +13255 -0
  582. sage/rings/polynomial/polynomial_element_generic.py +1637 -0
  583. sage/rings/polynomial/polynomial_fateman.py +97 -0
  584. sage/rings/polynomial/polynomial_quotient_ring.py +2465 -0
  585. sage/rings/polynomial/polynomial_quotient_ring_element.py +779 -0
  586. sage/rings/polynomial/polynomial_ring.py +3784 -0
  587. sage/rings/polynomial/polynomial_ring_constructor.py +1051 -0
  588. sage/rings/polynomial/polynomial_ring_homomorphism.cpython-314t-aarch64-linux-musl.so +0 -0
  589. sage/rings/polynomial/polynomial_ring_homomorphism.pxd +5 -0
  590. sage/rings/polynomial/polynomial_ring_homomorphism.pyx +121 -0
  591. sage/rings/polynomial/polynomial_singular_interface.py +549 -0
  592. sage/rings/polynomial/symmetric_ideal.py +989 -0
  593. sage/rings/polynomial/symmetric_reduction.cpython-314t-aarch64-linux-musl.so +0 -0
  594. sage/rings/polynomial/symmetric_reduction.pxd +8 -0
  595. sage/rings/polynomial/symmetric_reduction.pyx +669 -0
  596. sage/rings/polynomial/term_order.py +2279 -0
  597. sage/rings/polynomial/toy_buchberger.py +449 -0
  598. sage/rings/polynomial/toy_d_basis.py +387 -0
  599. sage/rings/polynomial/toy_variety.py +362 -0
  600. sage/rings/power_series_mpoly.cpython-314t-aarch64-linux-musl.so +0 -0
  601. sage/rings/power_series_mpoly.pxd +9 -0
  602. sage/rings/power_series_mpoly.pyx +161 -0
  603. sage/rings/power_series_poly.cpython-314t-aarch64-linux-musl.so +0 -0
  604. sage/rings/power_series_poly.pxd +10 -0
  605. sage/rings/power_series_poly.pyx +1317 -0
  606. sage/rings/power_series_ring.py +1441 -0
  607. sage/rings/power_series_ring_element.cpython-314t-aarch64-linux-musl.so +0 -0
  608. sage/rings/power_series_ring_element.pxd +12 -0
  609. sage/rings/power_series_ring_element.pyx +3028 -0
  610. sage/rings/puiseux_series_ring.py +487 -0
  611. sage/rings/puiseux_series_ring_element.cpython-314t-aarch64-linux-musl.so +0 -0
  612. sage/rings/puiseux_series_ring_element.pxd +7 -0
  613. sage/rings/puiseux_series_ring_element.pyx +1055 -0
  614. sage/rings/qqbar_decorators.py +167 -0
  615. sage/rings/quotient_ring.py +1598 -0
  616. sage/rings/quotient_ring_element.py +979 -0
  617. sage/rings/rational.cpython-314t-aarch64-linux-musl.so +0 -0
  618. sage/rings/rational.pxd +20 -0
  619. sage/rings/rational.pyx +4284 -0
  620. sage/rings/rational_field.py +1730 -0
  621. sage/rings/real_double.cpython-314t-aarch64-linux-musl.so +0 -0
  622. sage/rings/real_double.pxd +16 -0
  623. sage/rings/real_double.pyx +2218 -0
  624. sage/rings/real_lazy.cpython-314t-aarch64-linux-musl.so +0 -0
  625. sage/rings/real_lazy.pxd +30 -0
  626. sage/rings/real_lazy.pyx +1773 -0
  627. sage/rings/ring.cpython-314t-aarch64-linux-musl.so +0 -0
  628. sage/rings/ring.pxd +30 -0
  629. sage/rings/ring.pyx +850 -0
  630. sage/rings/semirings/all.py +3 -0
  631. sage/rings/semirings/non_negative_integer_semiring.py +107 -0
  632. sage/rings/semirings/tropical_mpolynomial.py +972 -0
  633. sage/rings/semirings/tropical_polynomial.py +997 -0
  634. sage/rings/semirings/tropical_semiring.cpython-314t-aarch64-linux-musl.so +0 -0
  635. sage/rings/semirings/tropical_semiring.pyx +676 -0
  636. sage/rings/semirings/tropical_variety.py +1701 -0
  637. sage/rings/sum_of_squares.cpython-314t-aarch64-linux-musl.so +0 -0
  638. sage/rings/sum_of_squares.pxd +3 -0
  639. sage/rings/sum_of_squares.pyx +336 -0
  640. sage/rings/tests.py +504 -0
  641. sage/schemes/affine/affine_homset.py +508 -0
  642. sage/schemes/affine/affine_morphism.py +1574 -0
  643. sage/schemes/affine/affine_point.py +460 -0
  644. sage/schemes/affine/affine_rational_point.py +308 -0
  645. sage/schemes/affine/affine_space.py +1264 -0
  646. sage/schemes/affine/affine_subscheme.py +592 -0
  647. sage/schemes/affine/all.py +25 -0
  648. sage/schemes/all__sagemath_categories.py +5 -0
  649. sage/schemes/generic/algebraic_scheme.py +2092 -0
  650. sage/schemes/generic/all.py +5 -0
  651. sage/schemes/generic/ambient_space.py +400 -0
  652. sage/schemes/generic/divisor.py +465 -0
  653. sage/schemes/generic/divisor_group.py +313 -0
  654. sage/schemes/generic/glue.py +84 -0
  655. sage/schemes/generic/homset.py +820 -0
  656. sage/schemes/generic/hypersurface.py +234 -0
  657. sage/schemes/generic/morphism.py +2107 -0
  658. sage/schemes/generic/point.py +237 -0
  659. sage/schemes/generic/scheme.py +1190 -0
  660. sage/schemes/generic/spec.py +199 -0
  661. sage/schemes/product_projective/all.py +6 -0
  662. sage/schemes/product_projective/homset.py +236 -0
  663. sage/schemes/product_projective/morphism.py +517 -0
  664. sage/schemes/product_projective/point.py +568 -0
  665. sage/schemes/product_projective/rational_point.py +550 -0
  666. sage/schemes/product_projective/space.py +1301 -0
  667. sage/schemes/product_projective/subscheme.py +466 -0
  668. sage/schemes/projective/all.py +24 -0
  669. sage/schemes/projective/proj_bdd_height.py +453 -0
  670. sage/schemes/projective/projective_homset.py +718 -0
  671. sage/schemes/projective/projective_morphism.py +2792 -0
  672. sage/schemes/projective/projective_point.py +1484 -0
  673. sage/schemes/projective/projective_rational_point.py +569 -0
  674. sage/schemes/projective/projective_space.py +2571 -0
  675. sage/schemes/projective/projective_subscheme.py +1574 -0
  676. sage/sets/all.py +17 -0
  677. sage/sets/cartesian_product.py +376 -0
  678. sage/sets/condition_set.py +525 -0
  679. sage/sets/disjoint_set.cpython-314t-aarch64-linux-musl.so +0 -0
  680. sage/sets/disjoint_set.pxd +36 -0
  681. sage/sets/disjoint_set.pyx +998 -0
  682. sage/sets/disjoint_union_enumerated_sets.py +625 -0
  683. sage/sets/family.cpython-314t-aarch64-linux-musl.so +0 -0
  684. sage/sets/family.pxd +12 -0
  685. sage/sets/family.pyx +1556 -0
  686. sage/sets/finite_enumerated_set.py +406 -0
  687. sage/sets/finite_set_map_cy.cpython-314t-aarch64-linux-musl.so +0 -0
  688. sage/sets/finite_set_map_cy.pxd +34 -0
  689. sage/sets/finite_set_map_cy.pyx +708 -0
  690. sage/sets/finite_set_maps.py +591 -0
  691. sage/sets/image_set.py +448 -0
  692. sage/sets/integer_range.py +829 -0
  693. sage/sets/non_negative_integers.py +241 -0
  694. sage/sets/positive_integers.py +93 -0
  695. sage/sets/primes.py +188 -0
  696. sage/sets/real_set.py +2760 -0
  697. sage/sets/recursively_enumerated_set.cpython-314t-aarch64-linux-musl.so +0 -0
  698. sage/sets/recursively_enumerated_set.pxd +31 -0
  699. sage/sets/recursively_enumerated_set.pyx +2082 -0
  700. sage/sets/set.py +2083 -0
  701. sage/sets/set_from_iterator.py +1021 -0
  702. sage/sets/totally_ordered_finite_set.py +329 -0
  703. sage/symbolic/all__sagemath_categories.py +1 -0
  704. sage/symbolic/function.cpython-314t-aarch64-linux-musl.so +0 -0
  705. sage/symbolic/function.pxd +29 -0
  706. sage/symbolic/function.pyx +1488 -0
  707. sage/symbolic/symbols.py +56 -0
  708. sage/tests/all__sagemath_categories.py +1 -0
  709. sage/tests/cython.cpython-314t-aarch64-linux-musl.so +0 -0
  710. sage/tests/cython.pyx +37 -0
  711. sage/tests/stl_vector.cpython-314t-aarch64-linux-musl.so +0 -0
  712. sage/tests/stl_vector.pyx +171 -0
  713. sage/typeset/all.py +6 -0
  714. sage/typeset/ascii_art.py +295 -0
  715. sage/typeset/character_art.py +789 -0
  716. sage/typeset/character_art_factory.py +572 -0
  717. sage/typeset/symbols.py +334 -0
  718. sage/typeset/unicode_art.py +183 -0
  719. sage/typeset/unicode_characters.py +101 -0
@@ -0,0 +1,719 @@
1
+ passagemath_categories.libs/libgcc_s-2d945d6c.so.1,sha256=NdOgO2If8roY3PSnJ81CsBa1rjMvN_uWPCo_V0ThwEY,203337
2
+ passagemath_categories.libs/libgmp-28992bcb.so.10.5.0,sha256=chvEgOPn69KHFEAC4oKOFhJ2LjYfSTYlyAEyFvE1hJg,668217
3
+ passagemath_categories.libs/libstdc++-85f2cd6d.so.6.0.33,sha256=D3uBWNGP8cz5PIqwr4jUgv7u70AIVsNEjLuj90icFcw,3651889
4
+ sage/all__sagemath_categories.py,sha256=RrnvwRY2S4lLVw3d4wjvP78JICn2hnJvmS17fEGwrCQ,881
5
+ sage/arith/all.py,sha256=bWg61VbobmW1bech1YpHkcOxuneS9Pr4RcuQPvqQe3A,2196
6
+ sage/arith/constants.pxd,sha256=-5i9KGbDpekTBy6VA2qx3eyEOK3AKKynTHhOgMyjPaA,1190
7
+ sage/arith/functions.cpython-314t-aarch64-linux-musl.so,sha256=9c0fVx4HgKX6ZJY_rPNbIstWMcw5j9B7mLV34c8Wo_w,528961
8
+ sage/arith/functions.pxd,sha256=PXYYcfFtiZzoK7Qd24bD_-JE27vLKwX8Pw5cQ-BusVg,95
9
+ sage/arith/functions.pyx,sha256=Evc-_xDEmIWw1KlOH8EVo5Z76Tnooa3HJcArmp_WdAM,6268
10
+ sage/arith/misc.py,sha256=FQZfKTtygxTOzOfpJTbaf8T9VMyLVPOSR6jC8K8cMKE,207710
11
+ sage/arith/multi_modular.cpython-314t-aarch64-linux-musl.so,sha256=_gfsc-3PTgIO4ZnJ9b5XmbuEoj_PnApuZJAvlsk0P3U,923633
12
+ sage/arith/multi_modular.pxd,sha256=p5nc3b5Zy1vj2AIXzJ8szE4NDXGJDnAplnYROFI299E,1767
13
+ sage/arith/multi_modular.pyx,sha256=XoHG4ksmA-dDT9bZlYyZHlJCH24m7YqH83sCW7Cl4LM,33906
14
+ sage/arith/rational_reconstruction.cpython-314t-aarch64-linux-musl.so,sha256=jd3EmK3G9a3foiT7bWFRDh5wZaZlb9xIMOGWpbn2gMg,266497
15
+ sage/arith/rational_reconstruction.pxd,sha256=Y6qn7_avsKc78hVunG44Sm6bbov8qk9K7GKc0HtC90o,175
16
+ sage/arith/rational_reconstruction.pyx,sha256=D4D8Y6-Au2MknQemrvweAbG0QHyGXsce6u5O2GdSET8,3880
17
+ sage/arith/srange.cpython-314t-aarch64-linux-musl.so,sha256=xv9vCHpbv695qX3PlIpJDZp9XTzSoisNLoNc9ra_9uU,830752
18
+ sage/arith/srange.pyx,sha256=2pvidqyRlkHXXaluf7WsPOV9GepZjPPFlkZ2rhs6vHk,18325
19
+ sage/calculus/all__sagemath_categories.py,sha256=i_YeY_RVDW05diVZpN97BsXhLQgxrxrIu6Q2LCmDe1I,129
20
+ sage/calculus/functional.py,sha256=gSw9SoHu_OhfuKchxMSDCuiEn0wU6W76gFkT00wQdKA,13318
21
+ sage/calculus/functions.py,sha256=DkzpzFOel-jGcvx_70M8dDbeOGyq7U5BoA2rvjsvfDY,4678
22
+ sage/categories/additive_groups.py,sha256=1J_tDLPJ6avcdn2m69vYw9wnAgzOHjuAyr0L7TnprmE,2893
23
+ sage/categories/additive_magmas.py,sha256=7aHU5wuHz15Lf5rGKj3CK0RFQU2AhlWCQIsTuPX2S0k,40895
24
+ sage/categories/additive_monoids.py,sha256=Np5mV32-XFv5Jlyh9IPUh-E6Soj5Vssx6FGScn7Msr0,4149
25
+ sage/categories/additive_semigroups.py,sha256=oW_ClGLhAMyZZOldCk1jmWLtrV9xbu6uAOzgX06npE4,7539
26
+ sage/categories/affine_weyl_groups.py,sha256=LA0qm39Y-xZ9KHN7xYFvPw5GrmD3Dbug0h80n42jWgE,8757
27
+ sage/categories/algebra_ideals.py,sha256=NiugHzaUFh06lRKd2vBfFFu2dCKOVYr8Dcbw4jdVQGc,3389
28
+ sage/categories/algebra_modules.py,sha256=tuq0EuaUNuNv5Kj5NmXtXCdyi_RERSYmk-WjH4q_yqc,3533
29
+ sage/categories/algebras.py,sha256=IhNNH1V9SUU9J3JuIWHy493gC8SsdBWAmv9htpf3r8g,13789
30
+ sage/categories/algebras_with_basis.py,sha256=gfhoLptF4xvUliWLHd_OM6U-66NxDFzgcSrub_0ZaMg,16524
31
+ sage/categories/all.py,sha256=VyZJd1T6LubzRmlhZTNEUZc32FjNoGAX5QQ-6fsJ1k0,6992
32
+ sage/categories/aperiodic_semigroups.py,sha256=rIvmJKeyANXhI8vgPvYN_918W11XdWRpH5q0COHzyOI,1078
33
+ sage/categories/associative_algebras.py,sha256=XMLCyT_LED0GblanuX8W3Csck-A0tSIC18_qu-CIYKk,1742
34
+ sage/categories/bialgebras.py,sha256=F6gi4ZE5gO3fS9NJNRRHjDbDK02cPc2pu0eiXe6U6TQ,3392
35
+ sage/categories/bialgebras_with_basis.py,sha256=0eWuvL-U8LhyC7h8JwU5sAjJFbdDRTbfMxwyQizE6-w,17783
36
+ sage/categories/bimodules.py,sha256=prztil0ZNW3XLZfLI50g1yQMsLThAugSki2JFo5_VQ0,7151
37
+ sage/categories/chain_complexes.py,sha256=GCbYYLRvrGs2Ljo3cd7-2-gpcPjItenFn2hlTt15oCo,9757
38
+ sage/categories/classical_crystals.py,sha256=j7J8I38mG7pagKmqpSiwiFvjuPI1c5G7ocHeu3ro33M,21012
39
+ sage/categories/coalgebras.py,sha256=KjebwHhlVxAOR9pxTri0mEE_ntIKnTaEYdSCWbDCyiA,14899
40
+ sage/categories/coalgebras_with_basis.py,sha256=iJc7JObYMukSaNWCv5BCkFuUERILLOgYvgOq7lb4zWo,10603
41
+ sage/categories/coercion_methods.cpython-314t-aarch64-linux-musl.so,sha256=88vfwSEAqmP_kyMFKuzZVYKp5aQytu9tFV3emG0GDb8,280448
42
+ sage/categories/coercion_methods.pyx,sha256=mU2BJ5fK_Zb5aTT9N_o3GWOOup-aVJrA6iFbJbvP-vY,1565
43
+ sage/categories/commutative_additive_groups.py,sha256=Cr2ckCGpR8iEUDo5uieSzOYmp-eUodIeU_-5tvyS7Jo,4148
44
+ sage/categories/commutative_additive_monoids.py,sha256=w5ET-2q34WXxVhysT_por7-9saPQ-cgyeWmPP4HaUoY,1613
45
+ sage/categories/commutative_additive_semigroups.py,sha256=bE-YEVl5OhSWY9g7f1FSXw1Bx4zLdzKU1khbriNYCKg,1683
46
+ sage/categories/commutative_algebra_ideals.py,sha256=q50VbCHqp-FUum4_bqz2k9C2QSR9f-6Wwte-dlx3l9U,3130
47
+ sage/categories/commutative_algebras.py,sha256=9KNgq_4VLARsb-Nql0UAtkmfv50ezf6W8GQxosBnudk,3392
48
+ sage/categories/commutative_ring_ideals.py,sha256=2we1xywu-0GBMxaoT3Xj694kMa_yXgQtB0TJaQb3Rb8,1994
49
+ sage/categories/commutative_rings.py,sha256=VgK4aV4FP8CP95qxIkpy0EvgMlQw7ixgXjHDgMWlicw,30332
50
+ sage/categories/complete_discrete_valuation.py,sha256=VhACsFmzSpMrG5ftl0AzP75zDPY8rwzaVOrHnc1P81w,10645
51
+ sage/categories/complex_reflection_groups.py,sha256=SgCiJ2Ehc9F8CVKnEo37ATYyofH2FRczDgKFtj1uFhs,5325
52
+ sage/categories/complex_reflection_or_generalized_coxeter_groups.py,sha256=geKo5jynOkNBSxhXbTfl2EnWuU5mr4MIgfUfi7RVmQY,51395
53
+ sage/categories/coxeter_group_algebras.py,sha256=taa7FsX6cNpDhYqrzBDUmgxGLkHPERdWpGTuiCnfCkU,7765
54
+ sage/categories/coxeter_groups.py,sha256=YiD2_sFUilVRlaQbAIvThT6xIEOQ_-4T14xFzcop4CU,146258
55
+ sage/categories/crystals.py,sha256=tJWfzvShhP5ONyr4D4GlXamHczsyKaC8oGJI4eHONSY,104199
56
+ sage/categories/cw_complexes.py,sha256=1Y_qRhYurJZMFCOi8kyXczQSDss7l4rwoiOiCXQFAcY,6589
57
+ sage/categories/dedekind_domains.py,sha256=u0AntXMeTKQJr8RHRpaeWiIzTOAFpDTMlgXrgllbybE,4946
58
+ sage/categories/discrete_valuation.py,sha256=wvQOX2-rq61syIcGU5Sx4qDQzGIYpQoZ7RlvngxAS4Q,11322
59
+ sage/categories/distributive_magmas_and_additive_magmas.py,sha256=ky8s4jqsU3Hru6WePLMgEm_TH2061urm9dRP6nncCXQ,3901
60
+ sage/categories/division_rings.py,sha256=6dqcVRs_Jn-9G8I_U_hq-LlLHANCAUXj1WlIodKUGJU,3566
61
+ sage/categories/domains.py,sha256=CXWng0eJUzPvPqrfpBHBmhtG5kNtkwZko-14Nn84cQI,2983
62
+ sage/categories/drinfeld_modules.py,sha256=eOzHRfhu2yK41aPGdMmHyzW8idqMRKfMB7CaUED5RFk,27984
63
+ sage/categories/dual.py,sha256=zdZtWjsH881N7tugo9Q_wteUz14Bo43SUcrp3m5Syew,1271
64
+ sage/categories/enumerated_sets.py,sha256=GEVKDgpVIZsyVntNgORGFMOKwqXx_JjP9hYrjDIF8sA,42441
65
+ sage/categories/euclidean_domains.py,sha256=5ZlMvQ6IvC_xw9OlGxs_Vi6LpWoYfUth3gJwiQL0gK4,8910
66
+ sage/categories/fields.py,sha256=fUW-zxhB7UsoTEuM6QbNE5AB6pJM1n9UXAFKER0ggYg,35416
67
+ sage/categories/filtered_algebras.py,sha256=izEAOG-xjUpXYuY4ydKkmuRv7-ptU5Ze2aZ1VqkY6Rc,2266
68
+ sage/categories/filtered_algebras_with_basis.py,sha256=D2zS-Hbg5K3ZivUEA6Iy1UKUIX84L-6gqWoKAG_KLJM,23706
69
+ sage/categories/filtered_hopf_algebras_with_basis.py,sha256=_6aCnzIZU6SSNs_sV7roGEOQ2X9cKNsifSACaXVmDC4,5536
70
+ sage/categories/filtered_modules.py,sha256=wmSRnynWLu7uf2lb1JCJ3iv9-lKwhjcv0877O76tra8,8168
71
+ sage/categories/filtered_modules_with_basis.py,sha256=SrhfgKy16BFcBS-Z-u7kuJRPX4b54iP222D72T1Ik3k,50943
72
+ sage/categories/finite_complex_reflection_groups.py,sha256=_KhKw9c1j_x6bCUxRpWliPLu1q_jx2xHsLOC_iMNoGw,65701
73
+ sage/categories/finite_coxeter_groups.py,sha256=pFeY6vXW1SIifFDVnCjw337t5R4P-tMvWqGDOKgRHNU,44627
74
+ sage/categories/finite_crystals.py,sha256=4BMFdsWYQDS21OWWwO9lrb4b3bzaDvu1_2dVPBeHXZo,3713
75
+ sage/categories/finite_dimensional_algebras_with_basis.py,sha256=IHGrE4U5gXMa4LuiLiBqSKnSHmzsVUaPRyr_D0tWUnw,81137
76
+ sage/categories/finite_dimensional_bialgebras_with_basis.py,sha256=DqSGOrct5V37JNIcMYx_nKQNZRm_LfLod68Q3EZXZms,1292
77
+ sage/categories/finite_dimensional_coalgebras_with_basis.py,sha256=BaR0ypiIObBhKr04o0awHZ0_cFJAoWnMABpSPV4bfZ8,1297
78
+ sage/categories/finite_dimensional_graded_lie_algebras_with_basis.py,sha256=daceDsumGOapsnollZqnjV1lzX7kU4nyPNQWa4s0L4M,9812
79
+ sage/categories/finite_dimensional_hopf_algebras_with_basis.py,sha256=lEFKyZG891jVFgS4EkxX9jldIhbHQ-Fn5DDxl4WiXnU,1342
80
+ sage/categories/finite_dimensional_lie_algebras_with_basis.py,sha256=FKWhJoHBwmL5b3XPtkwHBoJHpAQF_d3RSc5fHdvh5K0,115991
81
+ sage/categories/finite_dimensional_modules_with_basis.py,sha256=UuYa3828N7pCGga81j9jTsKdb3NwBGPftLZlEKkHzJk,60618
82
+ sage/categories/finite_dimensional_nilpotent_lie_algebras_with_basis.py,sha256=Uco99Y3lfUGXSuqpgV4V248oieNsiriP_0jQmNHujYQ,6637
83
+ sage/categories/finite_dimensional_semisimple_algebras_with_basis.py,sha256=wFL5k9ye8VkyyhTJ0ckSs_iT2X1zrw7cS9b2PIVc1LE,12128
84
+ sage/categories/finite_enumerated_sets.py,sha256=tkQpb92Z245aW3tyAc6ITOoQvjb--PX694nhIm4jIXc,28216
85
+ sage/categories/finite_fields.py,sha256=s2c6Ne7fjZKKBqxiGVhmJdM93chVA2fw_f-QCMpPwHA,8630
86
+ sage/categories/finite_groups.py,sha256=7Rsg8D_5koTbe1831A58qwMtpkuM_XsiaXjdPUPvrO4,9854
87
+ sage/categories/finite_lattice_posets.py,sha256=qkFlLi-AEiryWQNDryikCT4iwL7eSCf1ZbaWclgl3QE,10200
88
+ sage/categories/finite_monoids.py,sha256=vwsnb-AwR6iM9lykttMiSIC9T0ht_a4w0Pgizb8mbtU,12538
89
+ sage/categories/finite_permutation_groups.py,sha256=ie84Ultj2ns27ujxl1gv_x8HJdk2uUDVzOnzBVetzug,13951
90
+ sage/categories/finite_posets.py,sha256=5pIvvjMs01dOTCRPWW7t9kING31C2pUVO19OxC4tb10,86422
91
+ sage/categories/finite_semigroups.py,sha256=Hit5xmBwMSjm5Kl4AFR2Ch1WR8l1ATwHk6tKUUdE26U,5104
92
+ sage/categories/finite_sets.py,sha256=Iu2HcOcc5qdTqCiSqnDx7LlvU8JWsx80yAsZoyTu0d4,2898
93
+ sage/categories/finite_weyl_groups.py,sha256=d59HnoWz-xKuh2CbdJ-JKTGPgn8yglnUmxjuAzKt8IE,1050
94
+ sage/categories/finitely_generated_lambda_bracket_algebras.py,sha256=7LNs9at4PIC74pgDVaN-fB2tekGNYiStRHdZLrO2unU,4591
95
+ sage/categories/finitely_generated_lie_conformal_algebras.py,sha256=4zedKzYKnRvNpISvv4jULJsI9pghE9QZEk2kbaREOjg,4765
96
+ sage/categories/finitely_generated_magmas.py,sha256=FKxLF1KpMm1uiQuaka0ooeYKakQKx-u4ItDueZ4cTlo,1703
97
+ sage/categories/finitely_generated_semigroups.py,sha256=HZic5U-47d-SOrU0vF0tF2O9-RbhUO-KplRjwNIFHNM,8087
98
+ sage/categories/function_fields.py,sha256=cyZbuUNz0bqovc9v1JhSoDPYYnG2sVBiAV9ZAqRQauI,2511
99
+ sage/categories/g_sets.py,sha256=g0Pn288foS4LyMzPcfyM6TB6DfoDwMSPN_M91bLcRpU,2685
100
+ sage/categories/gcd_domains.py,sha256=jSBN_wUy9CNEZBywCVNqxOstMT4RtyzCRf8nH0h1EDc,1696
101
+ sage/categories/generalized_coxeter_groups.py,sha256=9y5g_sRGfs8XUrUEmmvLUC-E5xezuiWV8rgo-OIA8Q4,3525
102
+ sage/categories/graded_algebras.py,sha256=cae0l2TSTD2qHr9r04Jmnko6olb9gKkhAXciuhPDUAA,3041
103
+ sage/categories/graded_algebras_with_basis.py,sha256=qRvtIZjfpKB2XIyadlZJLX0bvQLXpY6NrHz2yX0-Ip8,10597
104
+ sage/categories/graded_bialgebras.py,sha256=z8e7HfLB8ueS0TUH7N4GySBmV-FiLS-AtAB7TxzTFTc,1038
105
+ sage/categories/graded_bialgebras_with_basis.py,sha256=Np_ueqX_atd-A5uSr9O7yqpN-veiRhLc9trOnUjg00A,1166
106
+ sage/categories/graded_coalgebras.py,sha256=b_CZk5L-lW7vgUVTSQC4kBzqstXPjt2yhIqC3BxPUsA,2352
107
+ sage/categories/graded_coalgebras_with_basis.py,sha256=5M1APl8cP3gUZlG9PyMncns_CrenZihFcr-z28N4gVs,1971
108
+ sage/categories/graded_hopf_algebras.py,sha256=z8-gSq3ZlbvZa8m8Nh2q10jJnu0eBcvj-axzR7o3NCg,1440
109
+ sage/categories/graded_hopf_algebras_with_basis.py,sha256=HFjDNp6AgJU2eotR_egHxJ1N0JnhH34B8VR6UCuwTVM,6366
110
+ sage/categories/graded_lie_algebras.py,sha256=wLYZakE4uBW58isy1mhK3GTC6k8hsxpRgkW1zQs9Yx8,3218
111
+ sage/categories/graded_lie_algebras_with_basis.py,sha256=HOf_bolSJVjGLqNrzuW1RGYGRvr7aruTgnkhyzp4pb0,1673
112
+ sage/categories/graded_lie_conformal_algebras.py,sha256=LAu9ah0xrrc3pi2WT2ss1s01kTQoaW94VbAbBMoenV0,2625
113
+ sage/categories/graded_modules.py,sha256=pnfgqqLVGVPfJemgUYQiP3CHbEd4G5f7lkqUf19sGcU,4759
114
+ sage/categories/graded_modules_with_basis.py,sha256=ljyAIoF85H_FDX_v_lH-_n-ZqKJ5LtOkI2ykAmGk8No,15729
115
+ sage/categories/graphs.py,sha256=qnZm5vw9_LWXS_fJTj3ZWqQBgzJ9jBqYjY-GwXk1e9w,4056
116
+ sage/categories/group_algebras.py,sha256=KOQNuYcEVz7rC4WcYTYXfr0QKM9NpcqjzIMBQemXtmY,17618
117
+ sage/categories/groupoid.py,sha256=EitKsZD59jqh7rsi-BPHMR-sVmzTg8cRSkHW7BEYtKY,2741
118
+ sage/categories/groups.py,sha256=CzeMmMh2jC0YnR3Wa-M2KQXSrBVloVhU4GU-FkaH02E,28848
119
+ sage/categories/h_trivial_semigroups.py,sha256=ZGDOIJScc-qBh-hQwGDn8mat64lrv4Ok9sMsY62tSIg,2546
120
+ sage/categories/hecke_modules.py,sha256=ALh050xElEma5j5ZO26SsmJG-4wu43ZXlIu9V85C14s,7437
121
+ sage/categories/highest_weight_crystals.py,sha256=Bij_sYr_alD31u8Bv4qT1BS-AI2IPL_3WaWSh6UsL6E,40508
122
+ sage/categories/hopf_algebras.py,sha256=bdHcvyOLWxsRWNSG1qKuICVRZecA639mVsSTaFdNydA,7818
123
+ sage/categories/hopf_algebras_with_basis.py,sha256=8uAi9Zhbt2UHFS-9Q_3j5PqWWneyegl9r-8THVO_PgA,12951
124
+ sage/categories/infinite_enumerated_sets.py,sha256=BNR8iVmxaL2NjnQXnUzNsPaKUxoSeJVk8Ib4YbcQpgA,3715
125
+ sage/categories/integral_domains.py,sha256=4u83QEg6xgp0z7VUqBRHD7yBvkBi6qxNym5LieK_c_c,7088
126
+ sage/categories/j_trivial_semigroups.py,sha256=IuToyGUVnQnuHUJ345yUulpSygL7AW95AmNDkGrIr-4,1143
127
+ sage/categories/kac_moody_algebras.py,sha256=V2bp4ohoGgvcxnSe6Jj42V38dxX2gbZzcjS9u0lLCl4,3282
128
+ sage/categories/kahler_algebras.py,sha256=eUelWXGQ5zkUPXUY30i74GmyiWIflJGIlQ29Ii7dSlw,10297
129
+ sage/categories/l_trivial_semigroups.py,sha256=im7UabUwOjV4tCp8tJEqkQQpwanBClcMfICJspei5x4,2053
130
+ sage/categories/lambda_bracket_algebras.py,sha256=9FIOJcOOIiOHYYRzcLqWYfO3Bl8wvmTRLZ2kBlw9QX4,10066
131
+ sage/categories/lambda_bracket_algebras_with_basis.py,sha256=oyTBc_eIb7ap6ps0p5k2zNiHYKorkkZAPhHVWx5MLXA,4137
132
+ sage/categories/lattice_posets.py,sha256=BHAAAI83g0Yjrmtro02XKzTaprjNuHo43pkqmtC2Acs,2813
133
+ sage/categories/left_modules.py,sha256=oqtuKGio6Q-qzW3aG4kptjMaf9_ZGxtGAnEd_uw42F0,1440
134
+ sage/categories/lie_algebras.py,sha256=x7iKhPmlYMbmpyA-Plg7HcMrD3o3YbeB0FbqRRLlHA4,46168
135
+ sage/categories/lie_algebras_with_basis.py,sha256=AdlFaliI4mE_dgFcebQpwmVHQGTrqbjAru84wnRPhUE,10467
136
+ sage/categories/lie_conformal_algebras.py,sha256=Qmki1aW5ictpbWUdf-ODIJ-Yde7IL6xdNwbEslGvSjo,14524
137
+ sage/categories/lie_conformal_algebras_with_basis.py,sha256=07ggcQ1HAjVHT1fvY1WiMtIf67XPtY1hi-KDIymMe2Q,6420
138
+ sage/categories/lie_groups.py,sha256=RMj9lPebUa2W02v6LfcP42GoFhS_rxmI9Ct2Whg7LCw,2332
139
+ sage/categories/loop_crystals.py,sha256=pycY4lez3TdJf32Sx2CYPz6qi82bAMWAbhOlTMvnit0,50821
140
+ sage/categories/magmas.py,sha256=4r6HWiKthXy985hkXeMlTKv_w6ZpZJ8s13udIinx4OQ,46079
141
+ sage/categories/magmas_and_additive_magmas.py,sha256=nFb-ZM1oqBduP38Rv-9cEg9ItERZ29Yy6OBbmNLtgp0,5653
142
+ sage/categories/magmatic_algebras.py,sha256=enkVnkUmGsmk9BSlsM9RWW66g2JjlGWBLOKuhpSfH50,16998
143
+ sage/categories/manifolds.py,sha256=xxm4COLyvh3H1UAtr0TWXylISJyiR2UykEyfK0OjtOw,12255
144
+ sage/categories/matrix_algebras.py,sha256=Xj1VwWeGoUus35zTJRZfcLGipQ8hyLkPdu2esWT4P9I,1209
145
+ sage/categories/metric_spaces.py,sha256=-KiczbEoTywiET2qTXko6ScFNkPA4l6VND5f3sffHIk,13978
146
+ sage/categories/modular_abelian_varieties.py,sha256=9tPxWqf8Wkm1jGWErfYEKoJq8r2f8kz6eNIwXkUyWGc,2406
147
+ sage/categories/modules.py,sha256=8sxQyptMQcG7kO8ZNFugNwj0a1gxT0q4V8rhz_fKiDI,39560
148
+ sage/categories/modules_with_basis.py,sha256=oaG-OCmdLcBFYVqbOkrJAH9q7yig_-vIJ2d-J86BY1k,121069
149
+ sage/categories/monoid_algebras.py,sha256=cMH6M4b1hwN-oz7CYXrHaoEi2znFbh5huttl5uevCCU,1253
150
+ sage/categories/monoids.py,sha256=qg8wIQoRM_lQPfrwQLu_44GJFmqPs0qXbvVZ0VmhPcU,28699
151
+ sage/categories/noetherian_rings.py,sha256=BndgnBLiEvP4lsSyIIDCy9cVt4RsPw0-nbV7Hr3OJBI,2668
152
+ sage/categories/number_fields.py,sha256=-wwlVE05VAIX5E6YTy9jy1mESF5hF17yLv3TIInE5OQ,9943
153
+ sage/categories/ore_modules.py,sha256=8pqIdJSFzDDVgtWpixn2FHkuln0gxh6oHvDJea5_8nI,6206
154
+ sage/categories/partially_ordered_monoids.py,sha256=P1VB0EfnR1XpIKbPKh0SFxMPnFyn6KsMeWG1GOHSxpQ,1471
155
+ sage/categories/permutation_groups.py,sha256=8i_3z8LiXG5oJJRz7LGCkdjpeS22BVhVVhYIa3y3XK4,2029
156
+ sage/categories/pointed_sets.py,sha256=baHPMma0mpEkmA8QEd3SR_oAjLZAyIv_2wOd6m4VbDc,1166
157
+ sage/categories/polyhedra.py,sha256=MUVi6we2THO2ir1J3HFAKI9f3yUUSE3rxZastFFwHPY,3075
158
+ sage/categories/poor_man_map.py,sha256=lMg2IhCDNOKVpVi5MX-lSekXTPBGA3agXajfGP7HldI,10150
159
+ sage/categories/posets.py,sha256=okO9lDx43IxvNTztW0EySqbVHIl6hccjzkqop6Ur9io,24832
160
+ sage/categories/principal_ideal_domains.py,sha256=92yULlGayIVtigWogv7RDONb6bZmB79S8Cj5RkWXjqs,9888
161
+ sage/categories/quantum_group_representations.py,sha256=fVg8ContfGfmtWgMzj1FHGeJgOO0yvoogHVB79P7yxU,25155
162
+ sage/categories/quotient_fields.py,sha256=76zs97QiUs7XlSlBx0ha_HtKXOC8PQOa4wQ9OCqEYlc,29565
163
+ sage/categories/r_trivial_semigroups.py,sha256=iQMBAYRT8V7t2RTfPNY050k01gMeXPV7lVAAwLYt9Do,1549
164
+ sage/categories/regular_crystals.py,sha256=PhOv_TNY6qdFF6BrecR2VsRcfry70MV0k0719s9EGMo,36075
165
+ sage/categories/regular_supercrystals.py,sha256=Sjd8k-zyQWUltNY_9wSbmHSt59wJotrlj1BwAoTO5xw,6013
166
+ sage/categories/right_modules.py,sha256=psoao2K2cwCXhsT7xzHdAG6IPZckqKK3jLVVd9t8I1o,1454
167
+ sage/categories/ring_ideals.py,sha256=5sqQTYDJf1e7cGwySYJRtPRfXma9RR2ZKnzcg-ASkKw,2256
168
+ sage/categories/rings.py,sha256=FBw0ktJPWIC56WNBajEu5OghoPGU99kEx0XT81EsPXc,75025
169
+ sage/categories/rngs.py,sha256=koi9KPGxGJUawLVGrTPhiIkAM6Y7wDc29Iem2X4wDcs,6187
170
+ sage/categories/schemes.py,sha256=AvHsOAKz666RacMJ2CZAxi1lWDrgPbxyEkoGqk53wGs,11546
171
+ sage/categories/semigroups.py,sha256=Me3r4rEva9JWJvKKeLGn1RxkWtaerPoqFYB0iqq-9qQ,44261
172
+ sage/categories/semirings.py,sha256=I9-uXPHJHVNbnxGKuQU5P4Z3nbtLziSkZty09DHqm38,2328
173
+ sage/categories/semisimple_algebras.py,sha256=4ddiEsc8iSVwA0_zmJrN4uxvdem4do2GNjm2zzsoDv0,3996
174
+ sage/categories/sets_with_grading.py,sha256=AzjOMJvULyhCD7RGmVFHfxoSxBYusMhhqBVzssYpsCQ,8227
175
+ sage/categories/shephard_groups.py,sha256=B_t6DodkZ65mWptCwDQpnmTae8S4e7KzT7_afp6f6Es,1434
176
+ sage/categories/signed_tensor.py,sha256=cmKB61SFbS_S2YNQsR1eDO-Sxdrks2W-57goUftjXrI,4412
177
+ sage/categories/simplicial_complexes.py,sha256=Ejd_trbqxiOU78sWaEHUjC1tvkeXwVVFUku9HrjU5nc,4419
178
+ sage/categories/simplicial_sets.py,sha256=jcOsr96wKFsEg3bWJulxtGCtrhyYeeBE6WchX1etK-8,57316
179
+ sage/categories/super_algebras.py,sha256=HRzvgI26JXkKNBuTrQ0dLuxTlFOjQwKxymW3owyrvM4,5466
180
+ sage/categories/super_algebras_with_basis.py,sha256=m7BUCqdorEfYtnX0VwqnpsJnHJOW6WInNmP6hkUivNw,5635
181
+ sage/categories/super_hopf_algebras_with_basis.py,sha256=F0ymnYcRe8HJYC6fzaUAKex9mxVWoVbin_Pz5PLgpls,5274
182
+ sage/categories/super_lie_conformal_algebras.py,sha256=CBwKPm414O-Cu_xosYCpY3rue4lEvLJ4Sc2XrTqefdc,8329
183
+ sage/categories/super_modules.py,sha256=kySEq84C3qrZeYUKpYz96DfrdHYGyzxflbaOlhHXIfM,8163
184
+ sage/categories/super_modules_with_basis.py,sha256=9CTPA9LEijEOpM48Dp7RRjESSItjaHsXlmFtlfw6Ew4,6947
185
+ sage/categories/supercommutative_algebras.py,sha256=yH9SFWub-KJ43ZZnvJ26aGJo3k02tM3q1Zjy0z233Sg,3831
186
+ sage/categories/supercrystals.py,sha256=ezUPqtOSy7q9YyjeXYUfi5CM4Ead6_k4XD6iBjPYPdY,17311
187
+ sage/categories/tensor.py,sha256=E5-NjTYmY4nJ1KWUuJX3Dek0Wax-gqzR3mW01-mI02Y,3758
188
+ sage/categories/topological_spaces.py,sha256=dqOAYsT4MqKF7L4DWxjd5MR4ndotG1jE-Vd-rjlXV8g,5976
189
+ sage/categories/triangular_kac_moody_algebras.py,sha256=_qtdIIkn4s0zATs2bc1KULNzdYXla-1hUvxUJkhlXcc,17860
190
+ sage/categories/tutorial.py,sha256=QDa0kpGPnQaU0Ws4w0ajHt8gcsynJul-jc2gQPgTZ6E,1986
191
+ sage/categories/unique_factorization_domains.py,sha256=GrcchstgoBXuYs2KvLdGo5_QituoNvAhATUpruTK-hs,10911
192
+ sage/categories/unital_algebras.py,sha256=sSAASTjba14VrBRyEfl325XgzrZmhdpTvFosisGlU6s,18097
193
+ sage/categories/vector_bundles.py,sha256=56dSD-KenQHiuKeu3XsIVjme4ACZV6ZVZTErUr6eI7s,5607
194
+ sage/categories/vector_spaces.py,sha256=FyXZhCJXZUyfv5kwhFY6UIzfRYXWi9ihOmfcbYeXuL0,13481
195
+ sage/categories/weyl_groups.py,sha256=u4u8URPoO27kFQ967mnBG8Cj0U6gbE1W1wQ0wAe4A8U,36061
196
+ sage/categories/examples/algebras_with_basis.py,sha256=PAXEI3Wpt2PJzQXQzu_ScetlNZnWlfME3KrTKcJYwWI,4261
197
+ sage/categories/examples/all.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
198
+ sage/categories/examples/commutative_additive_monoids.py,sha256=F3f_d-NjxJgNOfcjnJWj-5xBYROlIx38guH-Wx2PiAg,4676
199
+ sage/categories/examples/commutative_additive_semigroups.py,sha256=mvbRYAgknS1wXi7cGHRdNjWoW_6Z8d9NcKoaJrGxqmU,7145
200
+ sage/categories/examples/coxeter_groups.py,sha256=4W3VEvuytNA-Z_mFKnv5lTY_gREz7UGuTeokAFFRzuE,215
201
+ sage/categories/examples/crystals.py,sha256=W18Rdr-gN6yGc4gvHj-mScxo-CmMZpl4b_qqxSND0Ok,8321
202
+ sage/categories/examples/cw_complexes.py,sha256=rJWgPJhSa8zBeHSZWsJBC4ZLiH4zhOe37tAWyj0x5hw,5079
203
+ sage/categories/examples/facade_sets.py,sha256=1oBHmYod4gmBnl645FgsoRjx9G1VsB5osvl_p3NIfxQ,6510
204
+ sage/categories/examples/filtered_algebras_with_basis.py,sha256=kKew7epyBuJId3W30nwImm-ayfBe-UR8cyt0GoE43eQ,7060
205
+ sage/categories/examples/filtered_modules_with_basis.py,sha256=uaCD8paUzyq2YHa-FctLq2FAJadyzBs-Fw7CiVz0x6I,6176
206
+ sage/categories/examples/finite_coxeter_groups.py,sha256=2cxIhlFbBSDHBmEJvDCOdgGOLw5Jc3JTuBNYliaQujc,7669
207
+ sage/categories/examples/finite_dimensional_algebras_with_basis.py,sha256=9u2I2XJGfGDjxMir_qp4pLKsu1f4siU_rYet1GSvfkc,4798
208
+ sage/categories/examples/finite_dimensional_lie_algebras_with_basis.py,sha256=WlijwEgBpGhaGtQzUMUQBiyJDgj1NRjRbazXsnX9zXE,16066
209
+ sage/categories/examples/finite_enumerated_sets.py,sha256=gtnv6O37DIxbuqrf1XrukKTZcyrXPhzMaQlC2rCfni8,6889
210
+ sage/categories/examples/finite_monoids.py,sha256=Mx4LZ8e-V4QYkTNu3XQcscwq34ADnAeBz9xeeIPblWM,4896
211
+ sage/categories/examples/finite_semigroups.py,sha256=2zfkwDH826Qs5WVdo3Gd3LXS-wq7SW5tgjkFC6Xtm2A,6509
212
+ sage/categories/examples/finite_weyl_groups.py,sha256=QWXi_0xJgr2UIkbnkDa-8g0rz-KkvNsbIDdJpp8LOV8,5651
213
+ sage/categories/examples/graded_connected_hopf_algebras_with_basis.py,sha256=pyQUifvhCes_iLXWcGW9__1OB6r3sQiJ8JuoYZAQYqg,4470
214
+ sage/categories/examples/graded_modules_with_basis.py,sha256=Fpny1tR6HJcwWf5wauTu-nTzfdCAtOtDiRuTxmdbxW0,6932
215
+ sage/categories/examples/graphs.py,sha256=t_T9eE8PI-mk9o5jINAcEYibGkxNaxtd6XhTF99MOYE,3335
216
+ sage/categories/examples/hopf_algebras_with_basis.py,sha256=VCpOum3Mp47TlZTrGd3KTpvMBGPcxSifiE5vGRRpJbA,4934
217
+ sage/categories/examples/infinite_enumerated_sets.py,sha256=3EZWv-a_QW_jlTe5ONgL4Ox5eieFhn9y80k64UjBtcs,5979
218
+ sage/categories/examples/lie_algebras.py,sha256=9_onwDvxzujcBIfKfX9yWwmGBS1Lhdj2X2yNAYBwoNU,13324
219
+ sage/categories/examples/lie_algebras_with_basis.py,sha256=fvyoNf-HBq4BM27pV4KUjFcv7G547WSQV2tLeYHn38I,6521
220
+ sage/categories/examples/magmas.py,sha256=nSEfxMLduPG90oFXbbFtd7ieXVlK6xNHvvdzwcNtrKY,4649
221
+ sage/categories/examples/manifolds.py,sha256=iBiB9yVtnoRfAwBqA-Bkds-uz-vXrBzbCA9Weoo7JV4,2769
222
+ sage/categories/examples/monoids.py,sha256=SS7KVwQUQvZQfP1r9Y0eWCiimL7mw-1pz8L-sviWurw,4477
223
+ sage/categories/examples/posets.py,sha256=myzRG9WmkQF3Bmz8sgMgENYQbRSXypD4PkrB-34BN_I,5571
224
+ sage/categories/examples/semigroups.py,sha256=4zb-mau1FgHYfaaCaTJ3V06M9AS38p8JW0OtqTjW-WQ,17213
225
+ sage/categories/examples/semigroups_cython.cpython-314t-aarch64-linux-musl.so,sha256=nU6X04db4Lww07oDzAxy7fE2Gi1_8kOuj5ay-GOpyX4,625280
226
+ sage/categories/examples/semigroups_cython.pyx,sha256=iL_qel3ZEkFBJ1lsYNiSyPtaHJ4ooBoZ7Qg66VKRb_w,6938
227
+ sage/categories/examples/semirings.py,sha256=TDY1Brcao-Jtk6_iuTyGbthBW1eAaZYgd3P4VWUp4-Y,6624
228
+ sage/categories/examples/sets_cat.py,sha256=xBFFTXV9aa-WZbv-3KPW0S1L0z5T5TkXpyRSdcpF1V0,21361
229
+ sage/categories/examples/sets_with_grading.py,sha256=wFsfTW7aUbtlg1XtB3ZIF77O7VYyEzqqT5ULJqOVm4Q,2632
230
+ sage/categories/examples/with_realizations.py,sha256=6ejurguIYiNbbwC-9-jeF6n85VSnuCAO_GOM8P2w8ww,20189
231
+ sage/combinat/all__sagemath_categories.py,sha256=dhOL8ZD2ZYa3FqBPDgRVJAsvzVBKEDuJjevTo5aufSQ,1813
232
+ sage/combinat/backtrack.py,sha256=9f0JV2sLi6s0ksdXytMOotncUJn2uMByR1Ma80B1j7A,6652
233
+ sage/combinat/combinat.py,sha256=nXg8PzPpvPEVf4A0dqFMq2ahuX_eCHLHRf-7EVc7sas,74371
234
+ sage/combinat/combinat_cython.cpython-314t-aarch64-linux-musl.so,sha256=Tou9etN4MI7Oq_de0zc98HzcHim2QBMc8fqfYopxx_0,923809
235
+ sage/combinat/combinat_cython.pxd,sha256=I7rqwat_EXtBMf64X6eiTeEwRgoaszgZ9NVNMFVMft0,199
236
+ sage/combinat/combinat_cython.pyx,sha256=Cl-po6TWsvgH9pC9TJZZd9zW7bLIG2wq8WMTzDLxzr4,11578
237
+ sage/combinat/combination.py,sha256=dlx_Uv0qLt2wbsfwRbwrMU1UqvzRv7WRMYlDWiNyLlE,22149
238
+ sage/combinat/combinatorial_map.py,sha256=ByjUYtY3FrNHilACGTDNnkSTov9Pb7PALMAfUD-4L_s,15283
239
+ sage/combinat/composition.py,sha256=chAQQO5AQz8HU8fujbGgH0h_u0vL2OFJ7Rq7mHy6Eww,75096
240
+ sage/combinat/dlx.py,sha256=GuHYuqNUcFu6t26kYv2v2ypxa9lCx6tRhdYGeXG0flA,17747
241
+ sage/combinat/integer_vector.py,sha256=gtTH_RZ0jOrzJLpBVI-PH9zttxh-gqs7kMpGqtfHA3M,56283
242
+ sage/combinat/integer_vector_weighted.py,sha256=tqFg7tlS0kpYmNk5yY_JKuWgmlPygREzlHXsmwmFVwM,12920
243
+ sage/combinat/partition.py,sha256=BVIpDHFHIEQXm07wsGksedq_aDqwyxWUu4rVrc5pvMA,337131
244
+ sage/combinat/partitions.cpython-314t-aarch64-linux-musl.so,sha256=xifivVEkoBqpAEVzwkpPII84qzzcOEUC2LyBc6MqqQc,781032
245
+ sage/combinat/partitions.pyx,sha256=A90qcWFothVmmxTrUtvnOpDXxwblk0e93yD0SANUxaM,19994
246
+ sage/combinat/permutation.py,sha256=k6OipsYvb62KFLwEkmCgT-hPF4AF0SfCQjKcApZjDeo,360272
247
+ sage/combinat/permutation_cython.cpython-314t-aarch64-linux-musl.so,sha256=3enc4f-JX4EnQc-wHh_dXPcCYq4pVv6ZMj7NiKbSFmg,616720
248
+ sage/combinat/permutation_cython.pxd,sha256=DxtqUABY7WAfRpN8FaEsmzRewV9o-ko0lPdZFxFCwwY,462
249
+ sage/combinat/permutation_cython.pyx,sha256=Y7q7iq0RdjgXlGMgoJY0ixtwxRdPpEHEDC8FkB__2rM,12217
250
+ sage/combinat/q_analogues.py,sha256=Ef7DPLaiT9ugun4Qa87ZiiLKFJPhMsIMi_7Br6mkVq4,33518
251
+ sage/combinat/ranker.py,sha256=vtGcDfOu4qmgv4e6NeffIdrLUv1GlmgywaoY4ldE5c0,6779
252
+ sage/combinat/subset.py,sha256=-VgmDZb-vYja8ScpIcO2VpRUsr6pkAvlw7VAjs_sPnU,44091
253
+ sage/combinat/subsets_hereditary.py,sha256=R28mM1GezuGcVrJVMkmqjpWF-sWjr6sr6zApxkrikWU,7776
254
+ sage/combinat/subsets_pairwise.py,sha256=zl7hOlp8SUDBfLiYImv4FABVyBbU7zdcBVejWFtKN0o,7155
255
+ sage/combinat/tools.py,sha256=yLV52xFLe9ITVxJf_BxmaLLKQYC6khzvXOL-B0d4nnw,2000
256
+ sage/combinat/tuple.py,sha256=fIlEK0Jft7SEDF6n8U4_DFicVLExvPEIOeeNRXZ2ICk,11164
257
+ sage/combinat/integer_lists/__init__.py,sha256=rR7PH3EHjT79VwMv2E5sSRHPa1d1weO5fUqPgH8DKxw,316
258
+ sage/combinat/integer_lists/base.cpython-314t-aarch64-linux-musl.so,sha256=4Jp6V4l6O7CU2DY9-KXx6gYK-B_TIG9p3OtEgORLhFE,1279848
259
+ sage/combinat/integer_lists/base.pxd,sha256=249oZehYMqMA8pWQ5nKl4XDx8jGWI7-A3JUwj5UiTdA,512
260
+ sage/combinat/integer_lists/base.pyx,sha256=a9I6Dwe9RtEkN8TuWq0_WKTDQLIrkL_tZv3tRdVgImQ,25448
261
+ sage/combinat/integer_lists/invlex.cpython-314t-aarch64-linux-musl.so,sha256=ropR3Abwxz3XrNEo4rOv4902psI9BguW7jpb0WE84Fk,1260592
262
+ sage/combinat/integer_lists/invlex.pxd,sha256=917OvyH5s-HBhcf_KX_XpUDLAKZDzBjb-rPZKJiHvH4,202
263
+ sage/combinat/integer_lists/invlex.pyx,sha256=PK43fkNekR-1VKXwr8g-nKz37hVZO3KQunUOyKNMm7Y,61849
264
+ sage/combinat/integer_lists/lists.py,sha256=YAHNBvpvRj4-IPtesVdhDSBehMGXk8XsjpP2yhsMWrQ,10670
265
+ sage/combinat/integer_lists/nn.py,sha256=VcTRnh8Ca9nZrj2Go189oOq0ZFXyigdhcXd4DGz1Be0,1283
266
+ sage/combinat/matrices/all__sagemath_categories.py,sha256=oop2X3Mxk2tAdWRRla0jYRtLnfIxXg3bYJGae6OOSx0,167
267
+ sage/combinat/matrices/dancing_links.cpython-314t-aarch64-linux-musl.so,sha256=6nbxVV8wmZN2jTqbEVcQgMSR0rYLRifYP3qKaMsT1aQ,1978009
268
+ sage/combinat/matrices/dancing_links.pyx,sha256=OmOpnY4XqNr28nlUlv5RNeHZ3FhzKYZI4dZxiw3f2AQ,37918
269
+ sage/combinat/matrices/dancing_links_c.h,sha256=TLC0E5t2Plynu_o5fH2uBOUiJYKc6iNHq1sJWfNEQ2U,9720
270
+ sage/combinat/matrices/dlxcpp.py,sha256=uk7nBbAH6j7ebWHDj-oYdfpUSzoweaMVhLO0r_DirQU,3554
271
+ sage/data_structures/all.py,sha256=-ONgcx_HVyoIBrOWjFEU-tit6CEiC21agYAPmAznwFU,109
272
+ sage/data_structures/all__sagemath_categories.py,sha256=2exFs_NArUp-b_BXNY7R7LWPYWqoMX_pSdDzBozaiqc,110
273
+ sage/data_structures/binary_matrix.pxd,sha256=m6u0WLnDL97sHVrKWcQdmLv4_ukKu0pPodtoCsGSM1M,4027
274
+ sage/data_structures/binary_search.cpython-314t-aarch64-linux-musl.so,sha256=tfqlWiFWSGfhoi4j46rwxaODreOzEQRBSvnF4q5B9Vw,116136
275
+ sage/data_structures/binary_search.pxd,sha256=SkGbkMjnX35Jo3s1wawqKbdSOzXbV2Del2LMy1l9R_M,231
276
+ sage/data_structures/binary_search.pyx,sha256=_Y5YAtIfn4Pa_5IXg74UDXLzE_z-zSj8P7f9oa0b2lc,1718
277
+ sage/data_structures/bitset.cpython-314t-aarch64-linux-musl.so,sha256=6pdw_TVvxzr-POGZU8kmw23FZC3i2sh566EJlLzQbx4,1513993
278
+ sage/data_structures/bitset.pxd,sha256=BkWP1cbGyxkM8-tbXQj7JHsFIxzRwyImWRfgZUi-6XA,1715
279
+ sage/data_structures/bitset.pyx,sha256=hfoxm6kwNV2iQmIKIa69bPd5q6MKEiBiQ807lFn8mO8,88461
280
+ sage/data_structures/bitset_base.cpython-314t-aarch64-linux-musl.so,sha256=GCDk4eIs7M2akpSvMG4IU0bvLzvS1OdsHLIK5EEX5NM,529321
281
+ sage/data_structures/bitset_base.pxd,sha256=BGTLvctzRXDnm2SMuli8hZkVK21uoG4GSDQqrsJetFk,32790
282
+ sage/data_structures/bitset_base.pyx,sha256=XLGrKR6DiN_WL4MJmmi7NfaXtZp_18NoY2rK9ooP6wE,3916
283
+ sage/data_structures/bitset_intrinsics.h,sha256=TApTNHPGbc96Se7nEN0toXolWlDEkONcIq1gUg2jDbo,14153
284
+ sage/data_structures/blas_dict.cpython-314t-aarch64-linux-musl.so,sha256=sRRdC9gUDogyYjbBlzHM30bVntRA-AXyir-K5w394Os,719192
285
+ sage/data_structures/blas_dict.pxd,sha256=iAFoq4eWOAuYP7SEeOXm8LJiZ3g1Snz38g9LnbMD3SI,566
286
+ sage/data_structures/blas_dict.pyx,sha256=-__tn_w9g8Eff43prp8JoZ0zY4NF28G0vJVAZe4LfP4,13966
287
+ sage/data_structures/list_of_pairs.cpython-314t-aarch64-linux-musl.so,sha256=XGDgAqmljLph9xGMRWCidFmwviQxpR-eLMWCWxsJI6g,347664
288
+ sage/data_structures/list_of_pairs.pxd,sha256=iq6C4LVZdAEgIIUeF4p5cnNybr5zFgglQTrJvMaBpHQ,382
289
+ sage/data_structures/list_of_pairs.pyx,sha256=yXrMIx-Fof7tFHDA5O1stUCi0TTqe1pQvjevfbr4XCw,3963
290
+ sage/data_structures/mutable_poset.py,sha256=rDlrmVRtVPHkSoz1xpM5PFMxyEcU1aHWwXRbv6WC7Po,104570
291
+ sage/data_structures/pairing_heap.cpython-314t-aarch64-linux-musl.so,sha256=gB-wycWV0eqKzEkvy3NE5TaybLjbSzKzOVSnns4UZmg,2238313
292
+ sage/data_structures/pairing_heap.h,sha256=F0Pr3USmxFA0jqJIltdCcegmQVeX7pqjasQ0I6Ky1S4,9353
293
+ sage/data_structures/pairing_heap.pxd,sha256=8e1jAx26LYRPk5P-sYa3VhQDHzLrymXJDkAhEh4Ixmc,3710
294
+ sage/data_structures/pairing_heap.pyx,sha256=QzIlHZDmUrQDZ94bg5wDsCq4bfkpJdt1YNkTRqjtHp4,44930
295
+ sage/data_structures/sparse_bitset.pxd,sha256=jGS8h_0OcMs_s8IBGmFbakzfLVObNophFw6BAHdRsq0,2701
296
+ sage/data_structures/stream.py,sha256=a6PMnSf4wfSBw_kEQYRx3hQuYL_8T22JL9ryjcJ-FXM,176016
297
+ sage/databases/all__sagemath_categories.py,sha256=8uaQB6Ef5_sp-52qZlGTgBPH1iLSfwQXitocg3a6Fm8,170
298
+ sage/databases/sql_db.py,sha256=l3CLTctgMCXMGkQTCmzuTE9KO8AoFdesZ1yrcGZCwEM,89653
299
+ sage/ext/all__sagemath_categories.py,sha256=cJFMewz8bU1I6O2BEVTZQoQ-PzG4BymK9K9M42pxSIk,140
300
+ sage/ext/fast_callable.cpython-314t-aarch64-linux-musl.so,sha256=q7x3xOrKKSfGU5NTjr_EvYa_Ap92yBIpNtnjv2WPhOY,2221568
301
+ sage/ext/fast_callable.pxd,sha256=GtIrFoNXk2qA6PttmJhI6x5GgSCys6R82WM8I9-WCws,140
302
+ sage/ext/fast_callable.pyx,sha256=JUf3EN_ahBlvht7aWKF8DabsTjb-QvksBMOmF0vXTXo,103105
303
+ sage/ext/fast_eval.cpython-314t-aarch64-linux-musl.so,sha256=qqwpHSNhwIxUqeWzIrYrlNKeqf8Yyoy_ohYJdcDJ174,331200
304
+ sage/ext/fast_eval.pxd,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
305
+ sage/ext/fast_eval.pyx,sha256=_gD0Gqgywp1HUUGP4LGECDliFxLh_P6L1QOUJC_Wn_s,3555
306
+ sage/ext/interpreters/__init__.py,sha256=dHRdZFUvXHbxtikxRJP5veL9xFiblPdbPrekBIEOh0s,151
307
+ sage/ext/interpreters/all__sagemath_categories.py,sha256=EsAML8BDrAgnJeoQq892FrHErQ-2n7lTy1cN742JUZw,200
308
+ sage/ext/interpreters/wrapper_el.cpython-314t-aarch64-linux-musl.so,sha256=qQahaTf9EYoooUJZgmY6fd7_9A5teXugJyUlVL5Uxk4,522680
309
+ sage/ext/interpreters/wrapper_el.pxd,sha256=WDBCrBOjmN9iUrc_xrhxfvU_st33vpngUtqdziq517M,566
310
+ sage/ext/interpreters/wrapper_el.pyx,sha256=iyfhM-vb2ZZ6hJ0tVwV93SZl2jy7tCJhFkF5gJT5Mew,4270
311
+ sage/ext/interpreters/wrapper_py.cpython-314t-aarch64-linux-musl.so,sha256=sij7Qdig28AgSaBqlbwNg92pYltmbtbL3qpmj8rycp4,392336
312
+ sage/ext/interpreters/wrapper_py.pxd,sha256=xAqT8rqoX6jbzknqXWXr1_gBYl8SZgL1xNvGptF2IMY,542
313
+ sage/ext/interpreters/wrapper_py.pyx,sha256=NfErHeUnEjvU1ghEGAR5oykt-VF8OcLZFPXF3kjvszk,3843
314
+ sage/functions/airy.py,sha256=sD1uaU6zhSCAyIDjVOSjmIEgBwYRdWwPlqPWN_mhGvs,36800
315
+ sage/functions/all.py,sha256=HXJM_lxZ-Cwne4r17DNMq31MDLZfzHGZz09RCfw_l7s,4880
316
+ sage/functions/bessel.py,sha256=zgeyaMbpYw5I1M4RoasEHt6El_tpezRXTPOoL8FWQS0,74221
317
+ sage/functions/error.py,sha256=NMJcCDPZsBPkd1T0MtGC-jC4xeBVh7mk0NTI4GvarNk,28787
318
+ sage/functions/exp_integral.py,sha256=tVZNKbFLjsIO-Kr6q1Ftvw_AYFODR3-Usq2AebmhZpU,56470
319
+ sage/functions/gamma.py,sha256=wkEyp9chOS-XidVXk9TWJ0EON_dMohS-jbBfTff1p0Y,41806
320
+ sage/functions/generalized.py,sha256=5-F-kcPJpI8_0rlbpnlVdD9sgohWK07Earj_blzUaFM,20658
321
+ sage/functions/hyperbolic.py,sha256=C48iEOUNSy1reMEZZjdrkFsN7zw6MIX84ypmq5Y1_ns,26783
322
+ sage/functions/hypergeometric.py,sha256=3XGjjL19cEl_kzvanq4HXWGj7_VO7xocCbyas4HJIUA,46268
323
+ sage/functions/jacobi.py,sha256=DwJMYqPVLbVDTNFpyNoFYjNFAnNzUxsd56sc7BB43_o,68596
324
+ sage/functions/log.py,sha256=Xxka_Df9i_WayblEWMDVaA6Os4z_ime69XlEjtBfzig,50969
325
+ sage/functions/min_max.py,sha256=EmED-iK2G9FjrobWiI-EjalMYYf4P0NWHzS_jx7e5bA,11347
326
+ sage/functions/orthogonal_polys.py,sha256=Q83335VR0d7bweCXOjsqJMNGkt8wmDQnN_EGmWK4qjE,112908
327
+ sage/functions/other.py,sha256=UAjO0l8WG56_ZilXNywp-Pr4P6H0ydEvWgWNfdrm_CQ,80700
328
+ sage/functions/piecewise.py,sha256=SXidsP4ETUZF2ATdMjdYf1PHY2tiRkPW7_yvSF_h0PU,56374
329
+ sage/functions/prime_pi.cpython-314t-aarch64-linux-musl.so,sha256=GUhKxLzkd-849_3KHRYJLoLrD9mpTBTQIlDPSgPOMDc,745096
330
+ sage/functions/prime_pi.pyx,sha256=iOOtni10z4tZISM139yedT7kSxx0EYhPaWRWWQGzWk0,8411
331
+ sage/functions/special.py,sha256=vs3h_xBEd9W_DtnQ-rjoPuUl5ytYBbxmuLdjjBSIrpk,45962
332
+ sage/functions/spike_function.py,sha256=_9-wbawGwhJ5mXYCTyiJo_ETpw43kVJN-DU2oZn3qPg,9424
333
+ sage/functions/transcendental.py,sha256=qlPYIHR_kRhUSqjR_BszLPfmSGGGkbgBqaWT4olEV1s,25780
334
+ sage/functions/trig.py,sha256=neNxv1_XHo6CSsj64XrEmM4cppUOCLvO3tgfAIfrOVU,38592
335
+ sage/functions/wigner.py,sha256=mezIgY9tPNuDlNflaO0xfcwtciQFZAS3KWDZFs9MdlY,25323
336
+ sage/geometry/abc.cpython-314t-aarch64-linux-musl.so,sha256=ufJMEwqaSxYCr7egwrdhbQ5bAFi_RZaZSNDs9yRoeIA,119424
337
+ sage/geometry/abc.pyx,sha256=L4SC49P2O0rfU_WP3hauri-R-7unhh9FXyq-wWvu6RI,2768
338
+ sage/geometry/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
339
+ sage/groups/all__sagemath_categories.py,sha256=QidZoTYZIgJtcMhOkuKD1z5b0XKcepl_dVlKWDeAWZc,396
340
+ sage/groups/generic.py,sha256=5MQxuaAyZ0u8wNAsEwiloD4d_28QkFwtd5PjkMbudcQ,59870
341
+ sage/groups/groups_catalog.py,sha256=k-mrYrCL-R7sTbIe15sCj1BRLbBLQW1DMmzUcYkrF0Q,6341
342
+ sage/groups/perm_gps/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
343
+ sage/groups/perm_gps/partn_ref/all.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
344
+ sage/groups/perm_gps/partn_ref/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
345
+ sage/groups/perm_gps/partn_ref/automorphism_group_canonical_label.cpython-314t-aarch64-linux-musl.so,sha256=f4s64ScsZIqQD4BgbXq8Z9DAVAOqJjAyrVtydZHTnn8,923305
346
+ sage/groups/perm_gps/partn_ref/automorphism_group_canonical_label.pxd,sha256=wRy25aO76weHqAYL1sqKKxvX8X9xKwbrnByZSyJ-COc,2032
347
+ sage/groups/perm_gps/partn_ref/automorphism_group_canonical_label.pyx,sha256=1fHB4IeSmi_rhm8Q_dKmxIS8LyqHWLYvhHjlwIV8QBk,39945
348
+ sage/groups/perm_gps/partn_ref/canonical_augmentation.cpython-314t-aarch64-linux-musl.so,sha256=zr4lW7UHe6JcFCCOzdk2LDnZ2vAg9CJAQyXTxAZF-qE,313608
349
+ sage/groups/perm_gps/partn_ref/canonical_augmentation.pxd,sha256=hB9vB8Ofa7BOkBsnxB-SPNvCq2YkL3nDWFlrwXR7Y5A,3373
350
+ sage/groups/perm_gps/partn_ref/canonical_augmentation.pyx,sha256=CPhhNOdDYbjx1qV9DkfM4pZxEnpSDHv_uU7uNzyJwB4,23132
351
+ sage/groups/perm_gps/partn_ref/data_structures.cpython-314t-aarch64-linux-musl.so,sha256=r01kBxxyfuPCCYh4xL1SdUs_j5JXGUO8NayHVPguar4,1578433
352
+ sage/groups/perm_gps/partn_ref/data_structures.pxd,sha256=k4XIudneFvBz4LiDqb6JyD4Q2BU1Y1xKdgi6ZJiSwBA,20793
353
+ sage/groups/perm_gps/partn_ref/data_structures.pyx,sha256=_svXXJYuZnTsgkdCFt5UdSFbybuGYxv1-LwrKJBc4CY,66961
354
+ sage/groups/perm_gps/partn_ref/double_coset.cpython-314t-aarch64-linux-musl.so,sha256=bHkP9jOPWfK2huJHiX3tPwAJR3bH5MsQWfpHX3xUcA4,923121
355
+ sage/groups/perm_gps/partn_ref/double_coset.pxd,sha256=DH7R3v5FE0vln8uD_s44_npYHz4ZG02e9V1mp7iq8iE,1736
356
+ sage/groups/perm_gps/partn_ref/double_coset.pyx,sha256=s6Z-2Y3QTvEuhHj_7noy1X-MnsOCZLEUeYIkVd6J06E,32186
357
+ sage/groups/perm_gps/partn_ref/refinement_lists.cpython-314t-aarch64-linux-musl.so,sha256=JlGz-0RSBjK55MZLc73obF2cObUUbKyhQgmkT9KTORw,294264
358
+ sage/groups/perm_gps/partn_ref/refinement_lists.pxd,sha256=Gn4cHVkpNPmDls1KnPEyhuRp7cbeoeJ0_7tU4TP-57Q,971
359
+ sage/groups/perm_gps/partn_ref/refinement_lists.pyx,sha256=flJ_3HNNp-MxcnPGLCiU7xo-fuk4vowat8yz8V8esS8,2791
360
+ sage/groups/perm_gps/partn_ref/refinement_python.cpython-314t-aarch64-linux-musl.so,sha256=OWkGkXC4_zlwY1fonTlUWlBxekewR8KPjErsUd6B_oM,923233
361
+ sage/groups/perm_gps/partn_ref/refinement_python.pxd,sha256=-fDakzGSIXKQBqIlmm0VpsKDmJHlHzzvR-YZwGH-W0k,707
362
+ sage/groups/perm_gps/partn_ref/refinement_python.pyx,sha256=pZ2BkNh2YsLku0s9RFrMGjJWXJODj9HTnuLG1aCyEXU,18858
363
+ sage/groups/perm_gps/partn_ref/refinement_sets.cpython-314t-aarch64-linux-musl.so,sha256=CHgyqVU-BneU6KuoNLZsIup29Jf8z6vMR7Frlzjx4Co,922641
364
+ sage/groups/perm_gps/partn_ref/refinement_sets.pxd,sha256=Zp9Fx1aZJy9dJNLjTaZBvBGBsAwOlkxF4GeUpTMeCu0,2508
365
+ sage/groups/perm_gps/partn_ref/refinement_sets.pyx,sha256=KE-1G6T5HdoW1_BFNcg1TDzo-Qqwhy3UgcT_-FZtIQY,29359
366
+ sage/interfaces/abc.py,sha256=e8O4lwWbBmGZIGs8-uQswPfka3yfJog1wmbd_G0o0w0,3167
367
+ sage/interfaces/all.py,sha256=1g0qMb75iXIpuhbSblCDlE8vgH7Qx-gyDIascfbDrpM,2768
368
+ sage/interfaces/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
369
+ sage/interfaces/expect.py,sha256=suGDrxl-M-K8x1990eJY-YbTGyE_JY9XyVyPqRRz-fI,59262
370
+ sage/interfaces/interface.py,sha256=1sbCuC_DD_d_jJbw4zt-h_D2HY6Di8GnwNtP8QbbYj4,51493
371
+ sage/interfaces/process.cpython-314t-aarch64-linux-musl.so,sha256=S95mjYf02rlLDb-Yg95JfpQ34TccswSzPoIE2hYtnAE,713736
372
+ sage/interfaces/process.pxd,sha256=z6a6dzSLr56L8FEm4FhIDagPQnLHYp8f00CbM7s4uUg,157
373
+ sage/interfaces/process.pyx,sha256=CSeLX1WjG43kgKNmyRnZtvkpLZwSfdORKNvT9RsPwKA,9766
374
+ sage/interfaces/quit.py,sha256=GMHf28v4lay82epPMS_MOmzGApE9AK8aYb2HlZqvesQ,5455
375
+ sage/interfaces/sage0.py,sha256=LcaLXfGI2mV_FSTDVVgCo58u_whYoLSfmx3Ztlyt7uY,16617
376
+ sage/interfaces/sagespawn.cpython-314t-aarch64-linux-musl.so,sha256=Ft5CkC7KNHR3MhkegJ1Yhf7pGBCw5MfYT-EJvh5MswU,783504
377
+ sage/interfaces/sagespawn.pyx,sha256=hdGnVnewDxYAP7r_K1iITPt7vhgaiCmgYken-iCfAw8,9919
378
+ sage/interfaces/tab_completion.py,sha256=5nUbDWNERUOI03ornd7VnzHDGM1q8D1K2Qy5ETj6FkY,3166
379
+ sage/misc/all__sagemath_categories.py,sha256=GDaLrxP0BSvacTxW14ZTC-ErLTpwm710YIpHKao9YVc,3117
380
+ sage/misc/allocator.cpython-314t-aarch64-linux-musl.so,sha256=EwZuVJhG_UXEOe0S07Z1V8ifM0OJuandYhbdfFeDYio,124728
381
+ sage/misc/allocator.pxd,sha256=QbnwJczTsFX-gpQqPW1UnpP4VnwX9pY6K9AJ_P044Zs,265
382
+ sage/misc/allocator.pyx,sha256=QySpuXqvNoCrzDhhnuFEc-0Mrg6IEdUOIiYWBwybEe0,2019
383
+ sage/misc/binary_tree.cpython-314t-aarch64-linux-musl.so,sha256=AV83JtZtzGZoev1N5bc4s7vNLBOzNJUEf7ZFrJf_Ieo,810328
384
+ sage/misc/binary_tree.pxd,sha256=Dlcioeh6cvdq5zsP_4P0N6lJgDxS8V7YfE-PLEDyCzE,1001
385
+ sage/misc/binary_tree.pyx,sha256=0J8zzxrmXqPPBv6tSdnOHICnFsOpUPnlj77jfzBpRig,15185
386
+ sage/misc/callable_dict.cpython-314t-aarch64-linux-musl.so,sha256=WOB7a4H8lcczDnUalO_rFv3ziaWB9pL_eUb2uPazWqQ,258728
387
+ sage/misc/callable_dict.pyx,sha256=PO51ULYkW366uIKwT46yNtH9-kBN3HoFHXalikagCmI,2870
388
+ sage/misc/citation.cpython-314t-aarch64-linux-musl.so,sha256=u3ScfP9Crjlloz0RjF-1SPs-i_O2bkjIErIvTTXQKGQ,653808
389
+ sage/misc/citation.pyx,sha256=LtO9nOkowuQxxp8soXkXczeUm3nHqV5Pz8T5yPYylYs,5390
390
+ sage/misc/converting_dict.py,sha256=nzhSYVfmCTrKPTulXgGz7DWFLNLxqYTyRy8_H27Xqdo,9106
391
+ sage/misc/defaults.py,sha256=l4NqijWMQ5LiHUrB06xCV82zby5yu_x56aNgt0cGzI8,3225
392
+ sage/misc/derivative.cpython-314t-aarch64-linux-musl.so,sha256=GGXclZnkWXi09LlIzT4gp0AbEDoAMELkg4jLq4PKoJc,309768
393
+ sage/misc/derivative.pyx,sha256=8I0zgW_a5RYzBRTYQwjD-mtXwdEHsm8byDJhFyaEu_c,7162
394
+ sage/misc/functional.py,sha256=nUnMLU7htovKhxYiHlobHSrMNMf4LsnDWXkUAMyxVBY,65442
395
+ sage/misc/html.py,sha256=Gu6Po0fo6s_pBA2Uzsf1rUIjAKe9klvUDvlX0SP-w3E,19334
396
+ sage/misc/latex.py,sha256=WduiTqw105pI8WO1q3-UVFP2X2eU8zbokw-rivQ_XwA,89873
397
+ sage/misc/latex_macros.py,sha256=YAWcZOau7HcH3rQ123fkC7a-5sZ9e2B5mwU3OHKDCHc,8689
398
+ sage/misc/latex_standalone.py,sha256=dQD_PvuQ11WamW6QH-dcmMJd5eBQH6HmMtKSoSu1vd8,72484
399
+ sage/misc/map_threaded.py,sha256=js1sffDmE_K-Rnn44Di9HgHpmemULzN69aHwicjxVdQ,1231
400
+ sage/misc/mathml.py,sha256=6aL1bEn6OaGlNYCmI3d8V5rG_9kNr6EqlmL8vGLQBW4,1923
401
+ sage/misc/method_decorator.py,sha256=la6E1FVa0lBtEk0UcL992drt9C29-LbLLMUMQx9no0E,2852
402
+ sage/misc/mrange.py,sha256=eDznllzc-e0bGNoToEHG7E-jEwFjjw0Vw_JgYroDtZE,20372
403
+ sage/misc/multireplace.py,sha256=6SnG_2s1znconbA0r00bSswc14wH1NHqyPp2akk9jNk,1167
404
+ sage/misc/object_multiplexer.py,sha256=DJ4sXA-Ef_ITAjOKRLy8PjqXgtRxtxF_lqSxVanQaPk,2958
405
+ sage/misc/parser.cpython-314t-aarch64-linux-musl.so,sha256=rCoDKKLTtyNuLK1c3et5Y_Tk47loFSVLSAOuz7wH2VI,1091608
406
+ sage/misc/parser.pyx,sha256=svJ7yBVrYz-4pbhxplLiCamiQBJzBVWEaIBuUE6s_as,36111
407
+ sage/misc/random_testing.py,sha256=_klpZ6LxKcYmyrTlDZnN62Lw3qRwnD6EsFnN3AwpoqU,10216
408
+ sage/misc/rest_index_of_methods.py,sha256=Sc-jFuCgDyGCoD6lnUkSDND9GqCqFaBhtA6ilmS8C0A,15090
409
+ sage/misc/search.cpython-314t-aarch64-linux-musl.so,sha256=S9Ein6wNDl5EtzLpFUCjfy3rQ7sxOCTfVdAdpRfkuZI,209168
410
+ sage/misc/search.pxd,sha256=-PpEOAfnoy3vKS8fPVdFMZ1N3RGg4lA_kj3nIL1wxYQ,82
411
+ sage/misc/search.pyx,sha256=sCOk6k_ZQTtwVCsEDaIkdnw_LN67pDNG803LBzTHrFk,2241
412
+ sage/misc/stopgap.cpython-314t-aarch64-linux-musl.so,sha256=HsZC5S3i_to0HlgTqck1nSk8FGSHK9xD7KUcEMsGerI,321048
413
+ sage/misc/stopgap.pyx,sha256=iPJt9LI8KatrSmWYIl05YnLpSNQAD0HRxAfNsglQYGk,3219
414
+ sage/misc/table.py,sha256=dmpzA99jfI9Nzc2TFjS0UCy0FhSUSiDgJHoObuEJMXY,32934
415
+ sage/monoids/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
416
+ sage/monoids/indexed_free_monoid.py,sha256=G1J2sq5gLCK4TMUgVBaRb-uDsr0fIskUBJ3z1A0TER8,31728
417
+ sage/monoids/monoid.py,sha256=jxGAdFTKqWaur7VM_gCEsFyhpVNzikn8dYonM-Jjs4E,2497
418
+ sage/numerical/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
419
+ sage/numerical/backends/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
420
+ sage/numerical/backends/generic_backend.cpython-314t-aarch64-linux-musl.so,sha256=SmKn7cTH918PiHw1iqbdJg2qOpzRfW4s0oKA6Fz-49Q,2451880
421
+ sage/numerical/backends/generic_backend.pxd,sha256=9k4ULPP7UwIJ8_YHW19ioBjRWe61tE-qMYOWUWN-iUY,2984
422
+ sage/numerical/backends/generic_backend.pyx,sha256=xQWcloMy18BEvvvPaRwUce3wPzpwsLefeNzsyD35elw,66943
423
+ sage/numerical/backends/generic_sdp_backend.cpython-314t-aarch64-linux-musl.so,sha256=CxW31Jxl0Gka0RCcJtfbldRGSSr91NkDJXynG5IfGYE,805840
424
+ sage/numerical/backends/generic_sdp_backend.pxd,sha256=UWTmMUqLIa2-LLaTLCtTC0KOiYDf-vludZgicG56608,1667
425
+ sage/numerical/backends/generic_sdp_backend.pyx,sha256=EfzfE90TwNrBzqqXNKixqBDDJzrwRcPqS2k-wAa8HeQ,24093
426
+ sage/parallel/all.py,sha256=E-EEIdSqU2M6Q1_IyUXbmQ2RDxXFDegDEu1INdG87BU,218
427
+ sage/parallel/decorate.py,sha256=qRleYo4WmN0w66cyxV6NDrj2sUMHWI934G9RpHN4rlI,19635
428
+ sage/parallel/map_reduce.py,sha256=n89wieyzriaeJKRaPqhff1Ukm1KomWmIk4ggpRDzC2c,67593
429
+ sage/parallel/multiprocessing_sage.py,sha256=2ZqY-I228vOAhybEFRaHsiaMInIX6IggccOD4an2kzQ,2393
430
+ sage/parallel/ncpus.py,sha256=4FeWlEk6hG3xz8pCWatoRHyN9dOXQSK1hiITtRgmY7U,741
431
+ sage/parallel/parallelism.py,sha256=MLntf_mTDVCXdU6SrXY3kAdO7dKXQPrW0qfYYCpTgRU,11680
432
+ sage/parallel/reference.py,sha256=-ge0Np1TEgFXjxdZYCTPayOf7Uglx_pqC_Z9xe9AFNg,1380
433
+ sage/parallel/use_fork.py,sha256=t_ra9cAn_UNP2Ig_MXgHqN75X32WGZVLYWNvRTuxDfw,12196
434
+ sage/rings/abc.cpython-314t-aarch64-linux-musl.so,sha256=zL00Ks6a_HENEnQT-IkUbU5KPNWHR22hw9JYARtS8nk,195696
435
+ sage/rings/abc.pxd,sha256=RbUwGTn9ChtiCbzwvy0_XAeSaubpoMhJ2O_vjwJUqFA,385
436
+ sage/rings/abc.pyx,sha256=ikvW7z6_gyBfaFxbeVq6FBYPmClkymbktkpj5-GBM0k,16884
437
+ sage/rings/algebraic_closure_finite_field.py,sha256=3ziXznc-g8oB_6TELpzHUdBfTMUk5IoE60_xy1CQq00,38110
438
+ sage/rings/all__sagemath_categories.py,sha256=2HpiOTSuthDnpSDNxANonX280nwaLmq3rKS2O1FjBro,3062
439
+ sage/rings/big_oh.py,sha256=s_ca1UE3ZueLNn2C-kmCRaIaxQh34NPC9dGxMGQ9PaM,8214
440
+ sage/rings/continued_fraction.py,sha256=IXNeUoOooWuS5gwsknAfO3fqR5wt42vwVX1GZgs7u50,99253
441
+ sage/rings/continued_fraction_gosper.py,sha256=sXCwdoapNRivY2yxCeOsB9POADujiT8sv0GNGDO2I1c,8607
442
+ sage/rings/factorint.cpython-314t-aarch64-linux-musl.so,sha256=w8lkheSHkzP7dreqT6rvsqSN35ggrK6xI5nV_66RAww,922729
443
+ sage/rings/factorint.pyx,sha256=REqFVRk5xueYJCdDh8Rdj6ZQ77E2hZ-LggYk_-v1u3c,9588
444
+ sage/rings/fast_arith.cpython-314t-aarch64-linux-musl.so,sha256=00RdSSW_P3D4t7LhESN7Ssb7HCcYB1RqGLBudeKtuz4,804456
445
+ sage/rings/fast_arith.pxd,sha256=8RNxi-wpeeqBEBBdZAxaYITVqyqRE1jlcCIUmEG1zxY,1134
446
+ sage/rings/fast_arith.pyx,sha256=6boMBkzp_xDGpz23M68ArjeomTX7TKmEcPk3yeiA0Z4,15712
447
+ sage/rings/fraction_field.py,sha256=O-ho1Am1Olbs_L9ct-MT3R6GZ55bXh84oj-dRPZL3sM,47669
448
+ sage/rings/fraction_field_element.cpython-314t-aarch64-linux-musl.so,sha256=thAARjMDyONfH0li2IMTV8dHQGw07rwIESD0K0h3lQI,1676792
449
+ sage/rings/fraction_field_element.pyx,sha256=FxuTjE7GK-NxPW6jZvK-LLeJL6VWLisuMAQueJmyEmU,44327
450
+ sage/rings/generic.py,sha256=o0H8ln2qS_Yh3CouAPQrWgZU4xkNyuu4JDMcGqlYE8c,11890
451
+ sage/rings/homset.py,sha256=U8bCbV9-strM51jYGwF1-csDBtL1Q_V-27HtlaM4lJ4,12568
452
+ sage/rings/ideal.py,sha256=V0t7tH7ag2mG3XDixKgwlypTcluHFmq1mBXU0DHWxHc,60939
453
+ sage/rings/ideal_monoid.py,sha256=6maB9yGsQfBCfABn_CAFZe-W-eRYolU0PLvhDz7doAQ,6775
454
+ sage/rings/infinity.py,sha256=hIBjFnAd5iibXG79oT-B6KbEY3v49iRozcM9beg8c8A,57188
455
+ sage/rings/integer.cpython-314t-aarch64-linux-musl.so,sha256=VI3wLRjKqLo7MpHs3VPR0BbiFqq-dce58I7PX2KfNRU,4466209
456
+ sage/rings/integer.pxd,sha256=OBrR9j4FPLRhNauMQeNLpwRYRbY21gfL9t_SmZHZBa0,1572
457
+ sage/rings/integer.pyx,sha256=3oSJe_e7Ni_pu3FykW8GXV1ecjEIhYoT0BESsu9Ii2o,257894
458
+ sage/rings/integer_ring.cpython-314t-aarch64-linux-musl.so,sha256=RenX4BbFuLvLC1dj7noBXLKf4zdiosrrA1O0GqmWw34,2038169
459
+ sage/rings/integer_ring.pxd,sha256=-HQCWPg5Vu5IwOSqUjJ3V2chw68RY5CEX0PyjWys3aU,320
460
+ sage/rings/integer_ring.pyx,sha256=uf4oIknDsiBbAWxzGtcyhnSqWtXhb562NyT-u-DwCQs,52717
461
+ sage/rings/laurent_series_ring.py,sha256=fCD-bhYf-BWh6JYJipEmibKxbGKlno4v_JQ8pKomzjA,34858
462
+ sage/rings/laurent_series_ring_element.cpython-314t-aarch64-linux-musl.so,sha256=4TGclk1MVdJLsbPzL-myODFNl9RzX9aVgyWHP3f8HG0,2281032
463
+ sage/rings/laurent_series_ring_element.pxd,sha256=2zS9cT2VY-QchIOW70OdmYZCBqKXbcKkteNuaVxqrBs,333
464
+ sage/rings/laurent_series_ring_element.pyx,sha256=KLh_Dr9Noed2T9Tu79oJfJAggvX5A08i0-6P3ky4Nxk,60003
465
+ sage/rings/lazy_series.py,sha256=n4pHoJ3C2WXktZCFvWpri5B9RphjnYr1TgJ_KLfyHfk,297441
466
+ sage/rings/lazy_series_ring.py,sha256=GyT3IFYemVpIk_yP-RNchhPQBeQqQk1zUD70E_L22MQ,169277
467
+ sage/rings/localization.py,sha256=gIs1MG3BanMG4mLXZjrUESOmQ8xP6XBKCnCNrjJLGeA,36675
468
+ sage/rings/morphism.cpython-314t-aarch64-linux-musl.so,sha256=udZo4LUlHjR5kyvke9x5E1uTBQY1nLe-4Vb7EIuoR9g,3352536
469
+ sage/rings/morphism.pxd,sha256=4RNE7NAYd6XCDwZkZfX5dPm1mutd-vmetycvzDK2NZQ,990
470
+ sage/rings/morphism.pyx,sha256=rkij_yZC0AV61eqcSvPGpWxi5-ufKjCyzDjr8_QaX9g,123753
471
+ sage/rings/multi_power_series_ring.py,sha256=ulpOBcxBwGF31trXpekTh4RQ-IbnWG6jlKGPpLVdMeQ,41134
472
+ sage/rings/multi_power_series_ring_element.py,sha256=oQPEKtYZhkj4sNMH-wFpa-YKWpxwDASnZPl_H7JA6wU,76028
473
+ sage/rings/noncommutative_ideals.cpython-314t-aarch64-linux-musl.so,sha256=LU_pzQVJOlkpKe6tY5X6zriCviuog6pNtQl2-J4cIGs,821808
474
+ sage/rings/noncommutative_ideals.pyx,sha256=g5hrXaIzMT7mA5GffQBcur6i3DYygzXONfTf4m5_nf8,12917
475
+ sage/rings/power_series_mpoly.cpython-314t-aarch64-linux-musl.so,sha256=NQiO6BdGv7LoFM8wAjmhb3tIl9ZFhKj7toXsIyzDM7s,810184
476
+ sage/rings/power_series_mpoly.pxd,sha256=xq5IqTLUTrajn3I_SyZEUWYezk8JJLHuIEoJAb9r7So,302
477
+ sage/rings/power_series_mpoly.pyx,sha256=SC5w0YA_kw6ZKY2pR_EfEm4KmcIBd21iH_ZwiEEySbM,5480
478
+ sage/rings/power_series_poly.cpython-314t-aarch64-linux-musl.so,sha256=aIrbClU4WBHGot7dzr6i3D1SEYvv2x1YnVypwU9vtL8,1424224
479
+ sage/rings/power_series_poly.pxd,sha256=pFKFPJwW1f-CD2aOlJU6df-VbgIfdw_hVRgi1N2zMd8,339
480
+ sage/rings/power_series_poly.pyx,sha256=SZu3fg8QwYCprZSjReLL8M4vAFQOu7-bPlfAtgfLeco,42959
481
+ sage/rings/power_series_ring.py,sha256=3zCXQ3xgQwuUXX5Dxt3x5ovl70N6ILFh1TDZ0Vu1lbo,50832
482
+ sage/rings/power_series_ring_element.cpython-314t-aarch64-linux-musl.so,sha256=bVkIFuJ_s2sw9pZX7SfY5kfVvRuyX0Qrcqe9575KW6E,3235808
483
+ sage/rings/power_series_ring_element.pxd,sha256=89Qx1Af_VpzMiMgB3qiIoORUN9aAflNwv8rbGEoists,436
484
+ sage/rings/power_series_ring_element.pyx,sha256=Q-KsG4_apfqECQwTtES-TU4WM6GFvSyBLn1KxnHLNkw,94168
485
+ sage/rings/puiseux_series_ring.py,sha256=SUQSbtNjxWu5EpPWttKh4e2cwEAohvFzIvMcWtSQ3YE,16286
486
+ sage/rings/puiseux_series_ring_element.cpython-314t-aarch64-linux-musl.so,sha256=hglUxoIHVcnAhohLgRO6vdvmLQ552-z2vu0PHoMeJ_U,1522888
487
+ sage/rings/puiseux_series_ring_element.pxd,sha256=PoImDA3lkonK5-TF0aiZ_DuSeKdW16f2qUhrIwOUhTg,271
488
+ sage/rings/puiseux_series_ring_element.pyx,sha256=HBzG5vuAJ4VCNkGSoR210OTYncpWL4itK9EabR0Wuq8,31512
489
+ sage/rings/qqbar_decorators.py,sha256=vGsMnR_NIMXk_SqeHf_gJVKKKyjsQoRD95qLraITPlw,6486
490
+ sage/rings/quotient_ring.py,sha256=KvjhqU36p1EMmFhb0tw-fd7bmmIwi0QV0AWBFZf_5qU,55800
491
+ sage/rings/quotient_ring_element.py,sha256=XAsE2myb8KZb8D_jXgE8sZLJheguJNM4MGDf2leM0Yo,36875
492
+ sage/rings/rational.cpython-314t-aarch64-linux-musl.so,sha256=7h4ENObP349HGkRLLCw-fmw-CEkV_31lRkbWL9eb-uY,3679121
493
+ sage/rings/rational.pxd,sha256=ydSliWDrQ5Uy6rL62gEf7pByuQMMPHFaIocgZ7QDfPQ,617
494
+ sage/rings/rational.pyx,sha256=iATyaepl528SiZrkVQVV_NKz9vv0Hm0dQee6eby8qd8,128318
495
+ sage/rings/rational_field.py,sha256=wrbWmzO56TojhdPPBVad0WAt1IwCmkdfzcHYALxPb88,54224
496
+ sage/rings/real_double.cpython-314t-aarch64-linux-musl.so,sha256=rt6_HWpWUkYP5VKT7EJcW_CGIhq1LOIDrs_snhPGMWg,2157576
497
+ sage/rings/real_double.pxd,sha256=DGnynmGgQPwEUMwaifhcKCErrQ0CiPLGgIP66WtAN_E,542
498
+ sage/rings/real_double.pyx,sha256=SKoRRJaAy7izSzvqSitAKLOS9eDmpuCBsX8gdGy8HmM,64276
499
+ sage/rings/real_lazy.cpython-314t-aarch64-linux-musl.so,sha256=WDLGuRKAH0_DwtMxzD5cbLjl1F0jAc0tOeS5sYRifnA,2260240
500
+ sage/rings/real_lazy.pxd,sha256=TdUdkk9wtEOBX1rrGYofcduzRDpjJEp2ZuvV59rZAYQ,997
501
+ sage/rings/real_lazy.pyx,sha256=M8XiX15LkETf1qvm4qGwmBXVrn8CfcG2cnMl787opcE,53642
502
+ sage/rings/ring.cpython-314t-aarch64-linux-musl.so,sha256=LY99Uz49Yma7w4CNrHhbjMAhP5j59HKTNqN52oy3EPI,1047304
503
+ sage/rings/ring.pxd,sha256=IC3wsPrWjqsIE5BYtkLOPvDMAK89Vv3DypIOpIU7gJk,629
504
+ sage/rings/ring.pyx,sha256=c86MxdriQTju4dSJCew61bjmpJeBWgUaqugBqi02OeM,30508
505
+ sage/rings/sum_of_squares.cpython-314t-aarch64-linux-musl.so,sha256=6R6oUCQ6khugxUVT97mV-Nnxt9PQ_m_ft5ogA87QzOg,355800
506
+ sage/rings/sum_of_squares.pxd,sha256=9VdNpl1rl87grUGhJBq8rmcSIq19iWMhExnIp4pe8o4,169
507
+ sage/rings/sum_of_squares.pyx,sha256=RkIboUE53HNvK0Wxy28kLZN4pIlDQbD0sXqYlgYihk4,9617
508
+ sage/rings/tests.py,sha256=RB07tkALIJzdrocEIRk6mYSuji9POyVV9OFEY40naIQ,17057
509
+ sage/rings/finite_rings/all__sagemath_categories.py,sha256=A7RaJehwMHk9_uAxCogfjaPaFhUCKZu8ekzYNC_XGps,328
510
+ sage/rings/finite_rings/conway_polynomials.py,sha256=91Ptjp4kCGgdwqdibjzTRuLRXZ6H6rTVUoF_2PGZuTk,19609
511
+ sage/rings/finite_rings/element_base.cpython-314t-aarch64-linux-musl.so,sha256=QUbjZYleHBra1nJGzKMVKqV_j0QZRIscFsOj08BfWsE,1366744
512
+ sage/rings/finite_rings/element_base.pxd,sha256=zy_wh19D1GUEaztAW-8_Fcl14Q1w5IgAbFYG0ir0SFs,376
513
+ sage/rings/finite_rings/element_base.pyx,sha256=bkZpEovUJZpWmPpGJUNys3jQ_-_NwT1x--Y6KQvVGeg,37485
514
+ sage/rings/finite_rings/finite_field_base.cpython-314t-aarch64-linux-musl.so,sha256=t4_AA_OZQhxZhyJ0hE9j1vB5Li_nG0Qkq4wVScRy7x0,3151376
515
+ sage/rings/finite_rings/finite_field_base.pxd,sha256=_Mrlu3H8QMNo5l1XjMJR6ZAmjMCMFfM5-a0TCN4oLCo,230
516
+ sage/rings/finite_rings/finite_field_base.pyx,sha256=QOWLIzoPyL-wFxSMojjpVNicqwWgiuQ5lTDthvCJpis,79714
517
+ sage/rings/finite_rings/finite_field_constructor.py,sha256=dbUZUT63P1hOPZOVBTu2ZpWeDAydGnZwPioiPq7pnUk,32661
518
+ sage/rings/finite_rings/finite_field_prime_modn.py,sha256=OOU27W0OydM7Hqq2A3Ng2nhFwQBr9WtLDQmoBz_MYvE,10924
519
+ sage/rings/finite_rings/galois_group.py,sha256=4DoevzHu6ToqoxxzLxdP2KEUljEgcj5E9Lktvolkkdc,4683
520
+ sage/rings/finite_rings/hom_finite_field.cpython-314t-aarch64-linux-musl.so,sha256=Ezy1Bv-QjK8qfL5wLXWl0LoPTnyyhhQbA0RJwpmxe2I,1057408
521
+ sage/rings/finite_rings/hom_finite_field.pxd,sha256=d42qFzJafLoxs_ovoUxirtIr7TR2h7r6ALhD9GJTLmc,625
522
+ sage/rings/finite_rings/hom_finite_field.pyx,sha256=ZvKU5NTDtgXn0xJaUJTL_ZblGggopo3Y3Iz1zmVzVkI,29456
523
+ sage/rings/finite_rings/hom_prime_finite_field.cpython-314t-aarch64-linux-musl.so,sha256=Du4MiVGQZYk2ymLdR4qxso_S75D5kPQm7b7F8MaoKkU,605712
524
+ sage/rings/finite_rings/hom_prime_finite_field.pxd,sha256=mvQv-fJW3O89oP4Gf1k2oO8-vN-zBKPqM9nNK8ydI90,490
525
+ sage/rings/finite_rings/hom_prime_finite_field.pyx,sha256=PJB7bbzC_xZ2WxreWb2E-Xj-QNU_fZqL-n-4SgxHw98,5826
526
+ sage/rings/finite_rings/homset.py,sha256=8R08rJrJB9UWAN4WtsmMa_7nQEqVKiG3Gd8EAVHmEwA,12029
527
+ sage/rings/finite_rings/integer_mod.cpython-314t-aarch64-linux-musl.so,sha256=SCJNBtjq5VGkgXX7Lp6v08sN1zV9TMBE3PbLeqj_vOI,4927025
528
+ sage/rings/finite_rings/integer_mod.pxd,sha256=Kyfyljx1mN_w-SL_z6B7I2XTP8dW0LWzb3Ys0mnFph0,2185
529
+ sage/rings/finite_rings/integer_mod.pyx,sha256=Uvj9Jrxmc__e0Xn9Hd18BxG0LUDmXLwcSB2a4SU7bYA,140573
530
+ sage/rings/finite_rings/integer_mod_limits.h,sha256=3apV8yJn16fnBGmFOxI33-rZAoPYOldE_eAy8xREO7E,365
531
+ sage/rings/finite_rings/integer_mod_ring.py,sha256=L-dcHCF4PipZfimeD02gg4S7Mlp7wgz2KBI5jsUe5t0,70568
532
+ sage/rings/finite_rings/residue_field.cpython-314t-aarch64-linux-musl.so,sha256=KjZk77wmK-aZJ2f228_dEBAvqwCXbB4c46ZEA8R_b8Q,2329488
533
+ sage/rings/finite_rings/residue_field.pxd,sha256=D1ZfOtDt6BM4fd92vJN_6FYtAa27fPhlp9VCah6Q2zg,860
534
+ sage/rings/finite_rings/residue_field.pyx,sha256=Kj2QSw4VNYYpBGAqlEl7WSk7b2Wi3hHEtNczrE6zRps,71866
535
+ sage/rings/finite_rings/stdint.pxd,sha256=LhTIvB6_fNf35kNQSqb2SIs6Ly0Degdzhcs3mVNxkAQ,676
536
+ sage/rings/function_field/all.py,sha256=IN5Hvs1cXvxeosh0ksH2cMGAtjE9G_CseWbMH1_QlEY,214
537
+ sage/rings/function_field/all__sagemath_categories.py,sha256=QgABq5vhqIhc-Am1VaJqzRtXi9s49jUEnpRC0cMfQ9s,113
538
+ sage/rings/function_field/constructor.py,sha256=y15dHcwnYL4OL2QcKgXN34v41KrxjE04oQyj0mwYF4w,8230
539
+ sage/rings/function_field/element.cpython-314t-aarch64-linux-musl.so,sha256=IoXJFdnZnVm_koPuQFUC2_PDY3rZkOXjD3pf0NHRYJ0,1133864
540
+ sage/rings/function_field/element.pxd,sha256=OkJa7TfSdpj420yG0jLASrSlmVZgpxb1MnDqmwf381w,347
541
+ sage/rings/function_field/element.pyx,sha256=wT7Xsii83w5AX2beJnCOie70Kc8hntp57OieWRSxADA,36051
542
+ sage/rings/function_field/element_rational.cpython-314t-aarch64-linux-musl.so,sha256=2nf6C5XrUdjajJyelmSrD0Fxgz0d4ymBDMeopzNNYlM,941696
543
+ sage/rings/function_field/element_rational.pyx,sha256=7McOHvmniuQ6gI-ytjtMIRon6hHRR3H7O-2kUKpcYAU,14967
544
+ sage/rings/function_field/extensions.py,sha256=8YH7lMMJJ1J1K4z87Mstwvsl64H5qo5uWsryWQHQpiI,7861
545
+ sage/rings/function_field/function_field.py,sha256=-svA81yPBiGM1DY4rtObBm69jsdMJL2l9Ym0lBOJxSQ,61392
546
+ sage/rings/function_field/function_field_rational.py,sha256=lTq1JeDsYNMd5iy3Uqs4HO8DrvPdH725xMExoPiRVeU,35739
547
+ sage/rings/function_field/ideal.py,sha256=OIGllsCDaLvAdhZaSMvFFLp-jw6RMrEVJq8CqHx6MtI,42640
548
+ sage/rings/function_field/ideal_rational.py,sha256=ZTkineFgoDKVudteA2gZ2BPxSyGZYnPjig2JEKlY2XE,18519
549
+ sage/rings/function_field/jacobian_base.py,sha256=hrJgS2rklXLdh8aQJxFESc3-CxJXid0ZFdfJk8a0CZk,25602
550
+ sage/rings/function_field/jacobian_hess.py,sha256=4N3YCKgTf0VrPc7zulbacZBm5ngC9NmG0sUNRLgh-Iw,33437
551
+ sage/rings/function_field/jacobian_khuri_makdisi.py,sha256=MA_ebuLHLW56hvaL-JP0RwC8o6nIq09_14N5xvVt0J4,33546
552
+ sage/rings/function_field/maps.py,sha256=HW19NeJVFCR1H1wpN3U6vNNTZPOYBltgK0KSR1mQpSE,34115
553
+ sage/rings/function_field/order.py,sha256=IUXHrbyVO0niLltb0iOw2ljQqGSX63cH_0sP9LqeIMY,9354
554
+ sage/rings/function_field/order_basis.py,sha256=P5lOqNC3opG0YyZAbTTVJwgK3GMFMaP2Ucc8P6Zi8gg,22301
555
+ sage/rings/function_field/order_rational.py,sha256=cOoGqKuJReJkxSCjyCmr9QhTKdOoYKsjfM-i6QoaKgU,19531
556
+ sage/rings/function_field/place.py,sha256=BIqV9A2OEyTWckyFHQHyl7pc53N8ZStwUDiEiYPbUnU,16038
557
+ sage/rings/function_field/place_rational.py,sha256=4SOfW7ny4zs0AZMfIb92umjB4m5FEpKNh2R_vZqvgFY,6224
558
+ sage/rings/number_field/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
559
+ sage/rings/number_field/number_field_base.cpython-314t-aarch64-linux-musl.so,sha256=rOuvRT_SaFxVPQoBq4OeOf54VS585vRGqz7LFxSm7LA,734248
560
+ sage/rings/number_field/number_field_base.pxd,sha256=SqVoa8R4HZ-W3s4n-bGjtthmnrWotj0pyO2zhRpJu4I,219
561
+ sage/rings/number_field/number_field_base.pyx,sha256=KT4hEGzjdFII4zeFxmR-1SMNGZd0OXKIWPwVh1WdvOI,16017
562
+ sage/rings/number_field/number_field_element_base.cpython-314t-aarch64-linux-musl.so,sha256=E2Wgp-LlTXrc_i5Y0EPpYMfCrPT0tER0Q8Cur9RZEZ4,150320
563
+ sage/rings/number_field/number_field_element_base.pxd,sha256=K4YXRwFI-zVdRqOM0wutAO8sOOMfTXOZNxhAPzOwb-E,159
564
+ sage/rings/number_field/number_field_element_base.pyx,sha256=pEyGElg-Y7kNrSzYw69YSLPni7_WtIsK7mxx09eD8OY,1360
565
+ sage/rings/number_field/number_field_ideal.py,sha256=pwk4ZauEgfq_0ww3oz6vMx_H10Qph98ugY4c5XeWS-E,121025
566
+ sage/rings/padics/all__sagemath_categories.py,sha256=TZf1Vezf34rV8rB2g3n_wljfYuQ43dB5qG-D-z-1cug,166
567
+ sage/rings/padics/local_generic.py,sha256=4Q5IpolQJwYHWzRCpilrTsUWGcN9ahc-OVQZA1jc9wY,63212
568
+ sage/rings/padics/local_generic_element.cpython-314t-aarch64-linux-musl.so,sha256=c64AuiADsRmVp1I4MAIkc4xs-hVzhhsguer7w5YcGa4,1059424
569
+ sage/rings/padics/local_generic_element.pxd,sha256=ma57ZgupYhdtARsK7vZJBv-2pWTlkl310SWwIvEkiHA,174
570
+ sage/rings/padics/local_generic_element.pyx,sha256=6o36eTjs-ZCWdjEFhjHICFMA5lYkzfmVjgujE5U-fCI,33325
571
+ sage/rings/padics/misc.py,sha256=KebECFR0l1gZmR-HC6d-qevj9BlV6qYgM4mNLQNDc8Q,8097
572
+ sage/rings/padics/padic_generic.py,sha256=VhIkxhQrBVn7_HeBRPDLXsSNoJooQ8y99w2jMYc5O7U,68656
573
+ sage/rings/padics/pow_computer.cpython-314t-aarch64-linux-musl.so,sha256=66r8ya7Rl5-6vHJH9_J0-HWuRz7gklLRfE4EODdJWz0,988953
574
+ sage/rings/padics/pow_computer.pxd,sha256=RvMm-Lt4xoDvbcAM4TraMztb1kGmQfCpAXBCnIoF2Nk,1176
575
+ sage/rings/padics/pow_computer.pyx,sha256=JvA-1t9czBozuWuVsZrkssQ1CCJP7gJu6bUvaz7Z3mg,20764
576
+ sage/rings/padics/precision_error.py,sha256=TlDmpTU5MJ5OaMJkzfIJsAQ-yUiCxI3anugOWSeOK6k,730
577
+ sage/rings/polynomial/all__sagemath_categories.py,sha256=4rWNLr48eVrwIhRWmunusqFGljhdAEr42S7QiJHPtBg,1147
578
+ sage/rings/polynomial/commutative_polynomial.cpython-314t-aarch64-linux-musl.so,sha256=_5XyzXGK-dvNoil4AFrLjkFmb3s0xqC_nLNMQydQrxE,150104
579
+ sage/rings/polynomial/commutative_polynomial.pxd,sha256=P_Wz4NiP1STm9Vozggx79HSJeHRxuJuayN_W1jm5_4Y,183
580
+ sage/rings/polynomial/commutative_polynomial.pyx,sha256=A2St_GhqxM0KdS7ToccK_2Ir8isx8_cKLLc0FVzyFkY,928
581
+ sage/rings/polynomial/cyclotomic.cpython-314t-aarch64-linux-musl.so,sha256=pgofHkiX3ZNDKFqWxduNOoaTxi2P2J6pubs7Oay9h74,1162768
582
+ sage/rings/polynomial/cyclotomic.pyx,sha256=joiFIrz6DjJ2FR7unG4EfdnLHm3_p-U9_7VcgrW37Vc,13947
583
+ sage/rings/polynomial/flatten.py,sha256=p3HoxaHuKv_dPfKZpEOTSf8TLOGZ4s3s2xfl9ehJs2Y,28609
584
+ sage/rings/polynomial/ideal.py,sha256=3RBFuv4-epr4GAOXMFl_0Al2twizVSf-HS1kenvCDWw,3586
585
+ sage/rings/polynomial/infinite_polynomial_element.py,sha256=8wvh8XtYQ7EgV4a9dVHL8wWj2B2rxskhrs6e5Pi1E3Y,63569
586
+ sage/rings/polynomial/infinite_polynomial_ring.py,sha256=hl2WTw8_U6lyODioO4wlsnKoE1675a4W9GFr7eX-6kc,61126
587
+ sage/rings/polynomial/laurent_polynomial.cpython-314t-aarch64-linux-musl.so,sha256=e4FvDySg9SP31ZkVAI4GiH-kOE0duhOkmVra9xPVIoo,2417336
588
+ sage/rings/polynomial/laurent_polynomial.pxd,sha256=k-Dh59Q_YG5pw3NVbyRcGyZa6yiR3E-AySdZtoG1HJc,604
589
+ sage/rings/polynomial/laurent_polynomial.pyx,sha256=gmhhB3x3bIJl1Q4dQJ0Crxdw6lxsgYCX6t6_ZuxO5CE,67766
590
+ sage/rings/polynomial/laurent_polynomial_ideal.py,sha256=vTgrIf1IMLvcu_Xqe8Jvb-z_OmII2l4W5S4odvVW5Kw,22640
591
+ sage/rings/polynomial/laurent_polynomial_ring.py,sha256=WH5px2qkuZZ-k2YfTCH_X5i9OMqWp9PbiVo1dTd6lLU,30492
592
+ sage/rings/polynomial/laurent_polynomial_ring_base.py,sha256=Hi7DsdxT72NCQuJaopI9yS_C-HPo7LqikPXp5EsHPzc,24237
593
+ sage/rings/polynomial/multi_polynomial.cpython-314t-aarch64-linux-musl.so,sha256=f4igA-R9Q9mj6IiULudlG2hR6VlWdcSN622qIaZ7OUQ,4043328
594
+ sage/rings/polynomial/multi_polynomial.pxd,sha256=Gttj5PB4wHK7mm80Uy6E4eNaoEJ6ruxOKWtM3tqM-8k,375
595
+ sage/rings/polynomial/multi_polynomial.pyx,sha256=qICfiBBCUaMaD7GqJrmfQd_ON9aIG48shg9tPHSMQGY,115646
596
+ sage/rings/polynomial/multi_polynomial_element.py,sha256=vERvrP7iQvmDx4nAqSoOn7Nnf79LsPVjJHOX1ohpHJk,93413
597
+ sage/rings/polynomial/multi_polynomial_ideal.py,sha256=OQgUYYNW8caG03Uw-JOnnmRwLTjKzDMn3KnsD7FSrd4,231557
598
+ sage/rings/polynomial/multi_polynomial_ring.py,sha256=puyesfUgeNjd6gWGDQedWmgN5HkUubLvvMHqvdlFp9I,31455
599
+ sage/rings/polynomial/multi_polynomial_ring_base.cpython-314t-aarch64-linux-musl.so,sha256=RQ6pV3Cxoof30_72dzhfe6Bo2S87aRLRJACLTmHwxjg,3276952
600
+ sage/rings/polynomial/multi_polynomial_ring_base.pxd,sha256=Rr5UVQ70jAY_5yRJj8uZxKxv-MHMBY-JMyWHcg0e3yE,454
601
+ sage/rings/polynomial/multi_polynomial_ring_base.pyx,sha256=bJUSqIqDw_F55N0Lpltg8UTxcxI_u7C_Kzyi_1CDNTg,69848
602
+ sage/rings/polynomial/multi_polynomial_sequence.py,sha256=IA-56BbZZGcQ5FzEDVKqzVVLMkp-PavmHACevgPVOUI,90507
603
+ sage/rings/polynomial/polydict.cpython-314t-aarch64-linux-musl.so,sha256=n94lIx5XJ1k9Xy4fhv-nRI2wpVp-SpkZ5_t9KC8bPs4,2732472
604
+ sage/rings/polynomial/polydict.pxd,sha256=-PkLPKfvhQ_cIKmAi9IXqW9UexMCP9nDhBCFsmawoJ8,1711
605
+ sage/rings/polynomial/polydict.pyx,sha256=WpoJiJIgXGyKFRswTCYD7S2sIK1NyeXkv1ahpunqtLQ,94456
606
+ sage/rings/polynomial/polynomial_compiled.cpython-314t-aarch64-linux-musl.so,sha256=y3J0PX_YmNxCt81R_e2xcTxzL7BoITSj-ybIkApyAD8,800616
607
+ sage/rings/polynomial/polynomial_compiled.pxd,sha256=5hBhmDK-ij4UR4G6Y4lkP1TtclhxaZT7SjgBdB-ymAs,1363
608
+ sage/rings/polynomial/polynomial_compiled.pyx,sha256=jve5xeYxaykUNe2UPqbhzYr7wu1NEmgNEl0uJaYQmGQ,17864
609
+ sage/rings/polynomial/polynomial_element.cpython-314t-aarch64-linux-musl.so,sha256=-ifL9trwjPnrrNDqn2grhBgSfSSxC7gPM7BGsR38wGA,12789129
610
+ sage/rings/polynomial/polynomial_element.pxd,sha256=75hRK-siHAk2Os3jLMNjx6hRgrN1qCsMfp9-cJVTLNA,2341
611
+ sage/rings/polynomial/polynomial_element.pyx,sha256=wcPRja0zqwdCPwB3wwYPyssYI2KorG4kXvRFByuRjg4,484517
612
+ sage/rings/polynomial/polynomial_element_generic.py,sha256=_yDB4y79UmHolMib-X1cbXuOJh558tDhXHCafuNsu44,55541
613
+ sage/rings/polynomial/polynomial_fateman.py,sha256=ttrC5wC3NiCKI5Rlmu7oS5poWCkSLePXVxqW_k9YxN0,2658
614
+ sage/rings/polynomial/polynomial_quotient_ring.py,sha256=276zi2K106_ld_7oxoR14o3STlYY1OmOr0RDp4sPKfI,91596
615
+ sage/rings/polynomial/polynomial_quotient_ring_element.py,sha256=SCXp0R2QO4Nm4Bm-q1vF6DjbXqGKRbh-gtnLYWWReiI,24267
616
+ sage/rings/polynomial/polynomial_ring.py,sha256=liIgH4pZVDfFfGzQX9rFfVBQILVGjSjL3ItWsWM7_dE,152485
617
+ sage/rings/polynomial/polynomial_ring_constructor.py,sha256=WiR1KlJPsZXYCCFFG83_8i62OGA8viN9Pc4C0KB4hVE,45970
618
+ sage/rings/polynomial/polynomial_ring_homomorphism.cpython-314t-aarch64-linux-musl.so,sha256=Su7sT0HmAcaJgUcQHcylrvT72T29qFYw8w2m_PRVmog,477408
619
+ sage/rings/polynomial/polynomial_ring_homomorphism.pxd,sha256=3WjFSuNhdePYWxGB28xs0g0kyt1wdV9jp7xHrdX9y5M,196
620
+ sage/rings/polynomial/polynomial_ring_homomorphism.pyx,sha256=ftCeKeLWePmMfQ3oqk2UtlrFi_V5Zsx_wGFWP97-k9o,3907
621
+ sage/rings/polynomial/polynomial_singular_interface.py,sha256=YRPqFnab0a_OnYHst-McsN_fjEidevjbid1RwOUMpzA,21808
622
+ sage/rings/polynomial/symmetric_ideal.py,sha256=vCBIgT5_n9zByuk4tLaeskJgR4Rg1EKon6rCoW4sqvk,38817
623
+ sage/rings/polynomial/symmetric_reduction.cpython-314t-aarch64-linux-musl.so,sha256=FxOq-1akPVEMeZgK-8Z0egw5U4aSwhlQOwOfoc_hcsk,1121816
624
+ sage/rings/polynomial/symmetric_reduction.pxd,sha256=0VGLXdV_fSom8l2rr8EQC3GvnUa_bxFP5ZsXX6NAnrg,215
625
+ sage/rings/polynomial/symmetric_reduction.pyx,sha256=jQnxuB9AgkCEVsh2TUUNgFr3w3IoQTJPsUbD33fl8TQ,25602
626
+ sage/rings/polynomial/term_order.py,sha256=mQLAOKyIICjCWqZP0K2DAKZalQL4smnm2XdBjL1TDJ4,80920
627
+ sage/rings/polynomial/toy_buchberger.py,sha256=MkSAf4nrpK8CpqrOhZj4sVPFQVndz3sAe7s1UhhVhEQ,15761
628
+ sage/rings/polynomial/toy_d_basis.py,sha256=5kCRlvoCwjQJ4ERmZVXygHMi1b92QqHcqXoejHPEeLY,11881
629
+ sage/rings/polynomial/toy_variety.py,sha256=gUt2OtbJZBUsuDMYql-tV8J7nf3khFSZXhb61ZC98CQ,12532
630
+ sage/rings/semirings/all.py,sha256=_byqcExQeB0swX1B6qTymZP0wCyGKn0Nr9QmGTTvhOY,211
631
+ sage/rings/semirings/non_negative_integer_semiring.py,sha256=jm0HyHGlFKzQImYWvUmRwATdzMwvU9Wsl6kGf-mL0UM,3529
632
+ sage/rings/semirings/tropical_mpolynomial.py,sha256=Gy-r43VMEPmr4OLHT-GupbhiXZF-aO1dlIyuSGn-7Bo,35265
633
+ sage/rings/semirings/tropical_polynomial.py,sha256=H7DgoITKpBWn73UUKkBUyQuZXKBx8GcQG9-6v4-VxJk,33995
634
+ sage/rings/semirings/tropical_semiring.cpython-314t-aarch64-linux-musl.so,sha256=dW51lXAsRN-iCcB3H7awpDlJQbd08KA5x3uda3KKhAg,973840
635
+ sage/rings/semirings/tropical_semiring.pyx,sha256=m8DoWfWNFKV4_y8K-NoJM_OyTnsV6eD0pfWbxci-Tps,18729
636
+ sage/rings/semirings/tropical_variety.py,sha256=EQw9N60C3dPis8r6zDGBhv4lTIuPN6cbrD4CkBcYpQM,68014
637
+ sage/schemes/all__sagemath_categories.py,sha256=lyJaqegxKTdHlPohKypYJwvsOnSaJzquXFIU8qjZ7a8,218
638
+ sage/schemes/affine/affine_homset.py,sha256=CfKh-OW_tOpAagmA8rPmNNr3nWOE1pGW8zNnhZ14ej8,21537
639
+ sage/schemes/affine/affine_morphism.py,sha256=HqN6PNYMRoG8Pk5TamCIADQDqU3NXfJGQKfLgHusk7Q,62940
640
+ sage/schemes/affine/affine_point.py,sha256=64OW8-Va9VlSO6tQ3orpO9MJ_bS_S46Ga8xyevmlgSE,16320
641
+ sage/schemes/affine/affine_rational_point.py,sha256=sAKZBeekqjtiGYC94TJWB0fWdumOV7Aaz_MGxbPC7_4,11074
642
+ sage/schemes/affine/affine_space.py,sha256=dDu37EWAWyb-kfHZaKaujdr0AV99WTiy580x20BLHpI,45693
643
+ sage/schemes/affine/affine_subscheme.py,sha256=qFhT9DswpS6plfWVL5jtJkZJxvZ3sOShUN9lzjAm3ZM,24446
644
+ sage/schemes/affine/all.py,sha256=DnKdcaFe89XehmrvuRNd0CEhwi8ptRU3KCrI8etVlbg,959
645
+ sage/schemes/generic/algebraic_scheme.py,sha256=54OVuuB9a5pJXqMvrBnSVMUX3hew44jgAt5-OKNKTGU,84617
646
+ sage/schemes/generic/all.py,sha256=PHaTiHpJZPL2py_A3rAGO03Xz4krWXT2jC70qRe_Feo,197
647
+ sage/schemes/generic/ambient_space.py,sha256=-THVBz59WL0kVWMqsnrsDxf5zHjgTQJIfzm3mUIzQwY,12610
648
+ sage/schemes/generic/divisor.py,sha256=yGCbP_HX_hjfPOeFPyudHbGcXcbdgOPuEJamsolKC84,15236
649
+ sage/schemes/generic/divisor_group.py,sha256=qnWQZaFkMqyApTuurlFazLM69K4dxgZzjKEDiyZKCIw,10729
650
+ sage/schemes/generic/glue.py,sha256=luLDauAz1Dq6NRG7nmfiTKJOEeFBTbq-dVx7xhPmEz8,2974
651
+ sage/schemes/generic/homset.py,sha256=KEIIrWyceXp3jwWHClqyzfdQCc-73lwxnS-givYbxpo,29436
652
+ sage/schemes/generic/hypersurface.py,sha256=Rgreka3NWV6n1-5I1qat4OKuxa8WLsDf9YDtwnXxlsA,7888
653
+ sage/schemes/generic/morphism.py,sha256=hcxYVOfN-YeYZ86agB2-pNSAJDgsCHa6Ad2SouQl5B0,73029
654
+ sage/schemes/generic/point.py,sha256=R99jF-BO0D-iOkvm0slbqF1h7IxI7-s9QS0YAmCVR7A,7802
655
+ sage/schemes/generic/scheme.py,sha256=XyTHjS-MZBVI2Ob9VPoOruEKVPGcAlt8E7SEPO0t46k,39565
656
+ sage/schemes/generic/spec.py,sha256=FvR_abJCOp-GqMAhlzgDjaBfolHzaRdE7_veF0w2VOc,7007
657
+ sage/schemes/product_projective/all.py,sha256=eoH2KnOuwMmPr22V9CRTFEV1YdbcMbnISNne1BlsM30,275
658
+ sage/schemes/product_projective/homset.py,sha256=pmz6XrEjtfQI8W3_dUuCz8dyrMt6pogBMFcAICU-L2A,11368
659
+ sage/schemes/product_projective/morphism.py,sha256=opzrclX9FrbfTDIUZ78bUPVVCYkcvX4FBoIDguy7GkQ,18791
660
+ sage/schemes/product_projective/point.py,sha256=ROyqN-99XkXFVk5f74M33m2PpaH67LpwQGkxXG-hfHE,19089
661
+ sage/schemes/product_projective/rational_point.py,sha256=ejShQQoDhd85boSRV1nMWR8DmFTT612Gbr3-86qir_s,20296
662
+ sage/schemes/product_projective/space.py,sha256=gLz9iYwbhduxAreT5tH408qGot6wLKnWs6mGIYHzSpA,49241
663
+ sage/schemes/product_projective/subscheme.py,sha256=C-H-leA9E7sC_9Goz9RZSNwi15STLOqCrsWXHiDvrOY,19503
664
+ sage/schemes/projective/all.py,sha256=0QP0HVUAIGtKRtjlism9mik65mv5YHdJThyO765qIeo,896
665
+ sage/schemes/projective/proj_bdd_height.py,sha256=h2HnGRtbQuoD6XdiJNtdKrBx7CR5bxwLGoxZQXn125A,16012
666
+ sage/schemes/projective/projective_homset.py,sha256=HkzPk_l7ha0d-MdAFS7Tr_-BrRbPuUVOoGBf5wPUUFQ,33458
667
+ sage/schemes/projective/projective_morphism.py,sha256=5jsJvRJbZVyU1pZXsBrFthWscg1q_zPzU66lMJfzhYo,114767
668
+ sage/schemes/projective/projective_point.py,sha256=vinnZlpOFvSZI4U5EOTCSmnHq_SlvzbRLdxMyUXIx7k,51871
669
+ sage/schemes/projective/projective_rational_point.py,sha256=6XXsDrbOgAT80skXy4PqF27-tA79ZOewUqsBa5_z0L4,20664
670
+ sage/schemes/projective/projective_space.py,sha256=6RIqxY04zxfHMs6SnbsQVOC5JaD8o31ElhGGwwSQY2Y,99546
671
+ sage/schemes/projective/projective_subscheme.py,sha256=Zg0ymiy06-a3FhRM7-mixZWtiwiuLS30NMi_cguSjeE,62231
672
+ sage/sets/all.py,sha256=2-WmBNPNinlVyBb0WhCNywoLg5BKVbzJXaBhJIMCv7E,874
673
+ sage/sets/cartesian_product.py,sha256=B777Uz8OWk_-SrCT6_vF5ssLvzgCEwfY7AZadU0xKvs,12916
674
+ sage/sets/condition_set.py,sha256=B9utWuUQiAflke6KUIn9cDz8rt63_EoubayVOjrCSz4,21704
675
+ sage/sets/disjoint_set.cpython-314t-aarch64-linux-musl.so,sha256=KvMWzu_DQFKlFk0XDY9DHzMRxY2usPwZ9UaLvu-S2ts,1027240
676
+ sage/sets/disjoint_set.pxd,sha256=iU3UoFflCtCjQnwx9bD7hytv8FYOkFPaUlXD52M6BeM,1386
677
+ sage/sets/disjoint_set.pyx,sha256=_Nlqe_BSkfD73bZurvWpnXgrZmsqyl5g8RSyb6hBJ8Y,29060
678
+ sage/sets/disjoint_union_enumerated_sets.py,sha256=m2mXTOAS3q1aR6FvHJqlCWEI_qJGsxqcmHBQbHC9T-A,24857
679
+ sage/sets/family.cpython-314t-aarch64-linux-musl.so,sha256=TANBxsqKQb93Oep69PVSs0TgVJ2bna--AM4OF0VTEgU,1856224
680
+ sage/sets/family.pxd,sha256=vxOPMJMI-Iz_kootuUGZs61CF-XsmmHKzxRyx9VMUxg,346
681
+ sage/sets/family.pyx,sha256=QTcIlf_9iOYtD7Tr4dOjxyO8WdPuNysE6wtI12Q9jN4,47192
682
+ sage/sets/finite_enumerated_set.py,sha256=Lz1xXUpZ20ju9QcOloDpon178aQQnbqmnLHflD7b5bc,11321
683
+ sage/sets/finite_set_map_cy.cpython-314t-aarch64-linux-musl.so,sha256=fnP8jV2F0Y_M6sC66iYuhkTpx-jCTdnbmV0miBpDHcM,1174168
684
+ sage/sets/finite_set_map_cy.pxd,sha256=c9Z5xkgOnCVtiOJVM261qhMEUtW2bwcB_FYe2Ylq0V8,1281
685
+ sage/sets/finite_set_map_cy.pyx,sha256=N96fEb4Gz7aCKZCBto9sGnSUdSWywgDz95m8rUqMIdY,20107
686
+ sage/sets/finite_set_maps.py,sha256=BgZ60sbDAb2Q0ujTnYqZaV6P4EZKl3p1EjvCxA60DZA,17641
687
+ sage/sets/image_set.py,sha256=jV2B1xXGZv0nFTeUBYOYfwX8uILALyKEIaJ9VfUP-X4,15449
688
+ sage/sets/integer_range.py,sha256=gwYU4v23FaDReoRQI4Xvr7nuYzj58abwPr1gFpxnnjU,28219
689
+ sage/sets/non_negative_integers.py,sha256=lzsLKNOCThU1uBrniGTBoCOtqtA7FO-8CXFM7KIIKt4,7496
690
+ sage/sets/positive_integers.py,sha256=fSJtTVhQTnTPwbvVBuYTlh3nqefN5yat-iwXXz2i0ME,2588
691
+ sage/sets/primes.py,sha256=9wi02Du5-ILzQvuR1qbf3FXD7ya8HfCHC2F3N2px8SU,5056
692
+ sage/sets/real_set.py,sha256=vVM0zBp4WhPeurx10tvgNnI-ov50XWjjg3-usg7LBlc,87857
693
+ sage/sets/recursively_enumerated_set.cpython-314t-aarch64-linux-musl.so,sha256=OFtRU9APwOAr6w9APIWumwW8pjl3xughkeNnYS8og6g,1850256
694
+ sage/sets/recursively_enumerated_set.pxd,sha256=vrECrpQKxHNERHWozFy1hOaJdWRfwLackUdJwEXhfQA,1087
695
+ sage/sets/recursively_enumerated_set.pyx,sha256=a8bCRk0smtXtYxmACmCcy84WoeCp_J4x95I-zblKNEA,77650
696
+ sage/sets/set.py,sha256=cvPR5ZnR1JPqWxwk4JJmnAs4sno5I7ZvToxmqQfKmtA,64233
697
+ sage/sets/set_from_iterator.py,sha256=3LQlLpRWdJRNPBE5--ZHJNF6kqOXd3LejSdF4SGRvEU,35414
698
+ sage/sets/totally_ordered_finite_set.py,sha256=sO9uR5RWhP4OHiyTQY-eVKuyrIoTXc3espPj8rlCowo,9477
699
+ sage/symbolic/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
700
+ sage/symbolic/function.cpython-314t-aarch64-linux-musl.so,sha256=V5A-uLobDivrmDRmGNgxr_DaVL9PwqS1FkpkQ_L0-o4,1897816
701
+ sage/symbolic/function.pxd,sha256=uowFsW2vEis1vodPTvA-IvbWAFbTKh5F0Zx3EA5SnMc,842
702
+ sage/symbolic/function.pyx,sha256=U87MN5nU6rgRDp73WvG-Y6imWs8G4eTMNPW7ldcGN6s,59477
703
+ sage/symbolic/symbols.py,sha256=oTsE6OGmXDacpcglQ1fUwsXfxosDaM98emcfW9ta-bc,2080
704
+ sage/tests/all__sagemath_categories.py,sha256=dBSbXDWcicUvHMtj3Wmu3EzOKtEZB7qHXAfa6cYmpdc,49
705
+ sage/tests/cython.cpython-314t-aarch64-linux-musl.so,sha256=2dM8-a_1CAGkRoKOQL949Db4WTcsjj8bhXGF9mBImcg,154440
706
+ sage/tests/cython.pyx,sha256=dSSEg4M1zLDRMl5rNY9yzJkbQIBjSKickbvidnUQ__c,1357
707
+ sage/tests/stl_vector.cpython-314t-aarch64-linux-musl.so,sha256=ZukQOyY7IyRy9enFnVQKzKQuMmzT5ySAvItDcFJfGvI,1055209
708
+ sage/tests/stl_vector.pyx,sha256=bEVGW-pPFAe507RHm8w08515vW0GzN3Gx_1aaEmotss,4792
709
+ sage/typeset/all.py,sha256=VobqkXPL1_wzI0bh-7g0I9IHgCx0a-bIpKfXkoBushw,218
710
+ sage/typeset/ascii_art.py,sha256=SlcxEi4DwJyhRKfFLCw3ERaRe9mOMa_KZNU_yWxGUhM,13001
711
+ sage/typeset/character_art.py,sha256=sWy_v4SWfG2_vV1ezIZ9fCoS99lE4oC-J-y8b6MiK9Y,23921
712
+ sage/typeset/character_art_factory.py,sha256=EIJN42i9SKxXAc_lDHTpBp9xyH-i7BYRkHGsXgjyDhQ,21093
713
+ sage/typeset/symbols.py,sha256=hLeJa8eY1xMUzoXXGx0gfsfXHHnxXdXvOV_ZNiNuU48,10568
714
+ sage/typeset/unicode_art.py,sha256=mGxTD6REfW3w20580lNUKkwvFumYYWslB0CvMvcldsA,7035
715
+ sage/typeset/unicode_characters.py,sha256=ZHhKH4uP_J3iQBegenwzwz0ZVewzbqLY9whYsoRi4OY,2620
716
+ passagemath_categories-10.6.32.dist-info/METADATA,sha256=wegz7QW8GSDNPuR023y9QUzWP5gfsWQppKn0JL4BvR0,8813
717
+ passagemath_categories-10.6.32.dist-info/WHEEL,sha256=Rmj_1p8w6vs03sA3piwr0LDCnhshdZofyeLRZQ_Y0EI,114
718
+ passagemath_categories-10.6.32.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
719
+ passagemath_categories-10.6.32.dist-info/RECORD,,