pq_crypto 0.6.1 → 0.6.2

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 (141) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/SECURITY.md +7 -0
  4. data/ext/pqcrypto/pqcrypto_version.h +1 -1
  5. data/ext/pqcrypto/vendor/.vendored +4 -4
  6. data/ext/pqcrypto/vendor/mldsa-native/README.md +23 -10
  7. data/ext/pqcrypto/vendor/mldsa-native/mldsa/README.md +23 -0
  8. data/ext/pqcrypto/vendor/mldsa-native/mldsa/mldsa_native.c +114 -58
  9. data/ext/pqcrypto/vendor/mldsa-native/mldsa/mldsa_native.h +498 -461
  10. data/ext/pqcrypto/vendor/mldsa-native/mldsa/mldsa_native_asm.S +145 -85
  11. data/ext/pqcrypto/vendor/mldsa-native/mldsa/mldsa_native_config.h +456 -422
  12. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/cbmc.h +47 -25
  13. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/common.h +26 -14
  14. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/ct.h +56 -81
  15. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/debug.h +17 -24
  16. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/fips202.c +33 -40
  17. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/fips202.h +67 -87
  18. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/fips202x4.c +19 -14
  19. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/fips202x4.h +13 -5
  20. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/keccakf1600.c +84 -10
  21. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/keccakf1600.h +10 -5
  22. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/auto.h +6 -0
  23. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/fips202_native_aarch64.h +22 -15
  24. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x1_scalar_aarch64_asm.S +376 -0
  25. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x1_v84a_aarch64_asm.S +204 -0
  26. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x2_v84a_aarch64_asm.S +259 -0
  27. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x4_v8a_scalar_hybrid_aarch64_asm.S +1077 -0
  28. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x4_v8a_v84a_scalar_hybrid_aarch64_asm.S +987 -0
  29. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccakf1600_round_constants.c +16 -10
  30. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x1_scalar.h +2 -1
  31. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x1_v84a.h +1 -1
  32. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x2_v84a.h +4 -2
  33. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x4_v8a_scalar.h +2 -2
  34. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/x4_v8a_v84a_scalar.h +1 -1
  35. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/api.h +60 -0
  36. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/mve.h +48 -0
  37. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/fips202_native_armv81m.h +18 -1
  38. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/keccak_f1600_x4_mve.S +658 -582
  39. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/keccak_f1600_x4_mve.c +5 -100
  40. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/keccakf1600_round_constants.c +26 -25
  41. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/state_extract_bytes_x4_mve.S +334 -0
  42. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/armv81m/src/state_xor_bytes_x4_mve.S +355 -0
  43. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/auto.h +8 -3
  44. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/{xkcp.h → keccak_f1600_x4_avx2.h} +11 -8
  45. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/src/fips202_native_x86_64.h +44 -0
  46. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/src/keccak_f1600_x4_avx2_asm.S +454 -0
  47. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/src/keccakf1600_constants.c +52 -0
  48. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/meta.h +37 -28
  49. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/aarch64_zetas.c +213 -196
  50. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/arith_native_aarch64.h +248 -64
  51. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/intt_aarch64_asm.S +753 -0
  52. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l4_aarch64_asm.S +129 -0
  53. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l5_aarch64_asm.S +145 -0
  54. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l7_aarch64_asm.S +177 -0
  55. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/ntt_aarch64_asm.S +653 -0
  56. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/pointwise_montgomery_aarch64_asm.S +84 -0
  57. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_caddq_aarch64_asm.S +53 -0
  58. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_chknorm_aarch64_asm.S +55 -0
  59. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_decompose_32_aarch64_asm.S +86 -0
  60. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_decompose_88_aarch64_asm.S +86 -0
  61. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_use_hint_32_aarch64_asm.S +103 -0
  62. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_use_hint_88_aarch64_asm.S +111 -0
  63. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/polyz_unpack_17_aarch64_asm.S +75 -0
  64. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/polyz_unpack_19_aarch64_asm.S +72 -0
  65. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/polyz_unpack_table.c +23 -11
  66. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_aarch64_asm.S +189 -0
  67. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_eta2_aarch64_asm.S +137 -0
  68. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_eta4_aarch64_asm.S +130 -0
  69. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_eta_table.c +520 -516
  70. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_table.c +34 -33
  71. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/api.h +202 -242
  72. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/meta.h +25 -17
  73. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/arith_native_x86_64.h +112 -28
  74. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/consts.c +1 -1
  75. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/consts.h +1 -1
  76. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/intt_avx2_asm.S +2311 -0
  77. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/ntt_avx2_asm.S +2383 -0
  78. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/nttunpack_avx2_asm.S +238 -0
  79. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l4_avx2_asm.S +139 -0
  80. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l5_avx2_asm.S +155 -0
  81. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l7_avx2_asm.S +187 -0
  82. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_avx2_asm.S +130 -0
  83. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_caddq_avx2_asm.S +190 -0
  84. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_decompose_32_avx2.c +6 -4
  85. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_decompose_88_avx2.c +6 -4
  86. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_use_hint_32_avx2.c +9 -8
  87. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_use_hint_88_avx2.c +10 -9
  88. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/polyz_unpack_17_avx2.c +8 -5
  89. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/polyz_unpack_19_avx2.c +8 -5
  90. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/rej_uniform_eta2_avx2.c +6 -4
  91. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/rej_uniform_eta4_avx2.c +6 -4
  92. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/rej_uniform_table.c +130 -129
  93. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/packing.c +109 -180
  94. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/packing.h +169 -150
  95. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/poly.c +56 -40
  96. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/poly.h +149 -164
  97. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/poly_kl.c +52 -57
  98. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/poly_kl.h +132 -167
  99. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/polyvec.c +57 -424
  100. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/polyvec.h +167 -474
  101. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/polyvec_lazy.c +308 -0
  102. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/polyvec_lazy.h +653 -0
  103. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/reduce.h +22 -29
  104. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/rounding.h +37 -43
  105. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/sign.c +511 -367
  106. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/sign.h +456 -417
  107. data/lib/pq_crypto/version.rb +1 -1
  108. data/script/vendor_libs.rb +3 -3
  109. metadata +41 -35
  110. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x1_scalar_asm.S +0 -376
  111. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x1_v84a_asm.S +0 -204
  112. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x2_v84a_asm.S +0 -259
  113. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x4_v8a_scalar_hybrid_asm.S +0 -1077
  114. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/aarch64/src/keccak_f1600_x4_v8a_v84a_scalar_hybrid_asm.S +0 -987
  115. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/src/KeccakP_1600_times4_SIMD256.c +0 -488
  116. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/fips202/native/x86_64/src/KeccakP_1600_times4_SIMD256.h +0 -16
  117. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/intt.S +0 -753
  118. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l4.S +0 -129
  119. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l5.S +0 -145
  120. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/mld_polyvecl_pointwise_acc_montgomery_l7.S +0 -177
  121. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/ntt.S +0 -653
  122. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/pointwise_montgomery.S +0 -79
  123. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_caddq_asm.S +0 -53
  124. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_chknorm_asm.S +0 -55
  125. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_decompose_32_asm.S +0 -85
  126. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_decompose_88_asm.S +0 -85
  127. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_use_hint_32_asm.S +0 -102
  128. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/poly_use_hint_88_asm.S +0 -110
  129. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/polyz_unpack_17_asm.S +0 -72
  130. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/polyz_unpack_19_asm.S +0 -69
  131. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_asm.S +0 -189
  132. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_eta2_asm.S +0 -135
  133. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/aarch64/src/rej_uniform_eta4_asm.S +0 -128
  134. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/intt.S +0 -2311
  135. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/ntt.S +0 -2383
  136. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/nttunpack.S +0 -239
  137. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise.S +0 -131
  138. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l4.S +0 -139
  139. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l5.S +0 -155
  140. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/pointwise_acc_l7.S +0 -187
  141. data/ext/pqcrypto/vendor/mldsa-native/mldsa/src/native/x86_64/src/poly_caddq_avx2.c +0 -61
@@ -20,208 +20,225 @@
20
20
  * Table of zeta values used in the AArch64 forward NTT
21
21
  * See autogen for details.
22
22
  */
23
- MLD_ALIGN const int32_t mld_aarch64_ntt_zetas_layer123456[] = {
24
- -3572223, -915382907, 3765607, 964937599, 3761513, 963888510,
25
- -3201494, -820383522, -2883726, -738955404, -3145678, -806080660,
26
- -3201430, -820367122, 0, 0, -601683, -154181397,
27
- -3370349, -863652652, -4063053, -1041158200, 3602218, 923069133,
28
- 3182878, 815613168, 2740543, 702264730, -3586446, -919027554,
29
- 0, 0, 3542485, 907762539, 2663378, 682491182,
30
- -1674615, -429120452, -3110818, -797147778, 2101410, 538486762,
31
- 3704823, 949361686, 1159875, 297218217, 0, 0,
32
- 2682288, 687336873, -3524442, -903139016, -434125, -111244624,
33
- 394148, 101000509, 928749, 237992130, 1095468, 280713909,
34
- -3506380, -898510625, 0, 0, 2129892, 545785280,
35
- 676590, 173376332, -1335936, -342333886, 2071829, 530906624,
36
- -4018989, -1029866791, 3241972, 830756018, 2156050, 552488273,
37
- 0, 0, 3764867, 964747974, -3227876, -827143915,
38
- 1714295, 439288460, 3415069, 875112161, 1759347, 450833045,
39
- -817536, -209493775, -3574466, -915957677, 0, 0,
40
- -1005239, -257592709, 2453983, 628833668, 1460718, 374309300,
41
- 3756790, 962678241, -1935799, -496048908, -1716988, -439978542,
42
- -3950053, -1012201926, 0, 0, 557458, 142848732,
43
- -642628, -164673562, -3585098, -918682129, -2897314, -742437332,
44
- 3192354, 818041395, 556856, 142694469, 3870317, 991769559,
45
- 0, 0, -1221177, -312926867, 2815639, 721508096,
46
- 2283733, 585207070, 2917338, 747568486, 1853806, 475038184,
47
- 3345963, 857403734, 1858416, 476219497, 0, 0,
23
+ MLD_ALIGN MLD_INTERNAL_DATA_DEFINITION const int32_t
24
+ mld_aarch64_ntt_zetas_layer123456[144] = {
25
+ -3572223, -915382907, 3765607, 964937599, 3761513, 963888510,
26
+ -3201494, -820383522, -2883726, -738955404, -3145678, -806080660,
27
+ -3201430, -820367122, 0, 0, -601683, -154181397,
28
+ -3370349, -863652652, -4063053, -1041158200, 3602218, 923069133,
29
+ 3182878, 815613168, 2740543, 702264730, -3586446, -919027554,
30
+ 0, 0, 3542485, 907762539, 2663378, 682491182,
31
+ -1674615, -429120452, -3110818, -797147778, 2101410, 538486762,
32
+ 3704823, 949361686, 1159875, 297218217, 0, 0,
33
+ 2682288, 687336873, -3524442, -903139016, -434125, -111244624,
34
+ 394148, 101000509, 928749, 237992130, 1095468, 280713909,
35
+ -3506380, -898510625, 0, 0, 2129892, 545785280,
36
+ 676590, 173376332, -1335936, -342333886, 2071829, 530906624,
37
+ -4018989, -1029866791, 3241972, 830756018, 2156050, 552488273,
38
+ 0, 0, 3764867, 964747974, -3227876, -827143915,
39
+ 1714295, 439288460, 3415069, 875112161, 1759347, 450833045,
40
+ -817536, -209493775, -3574466, -915957677, 0, 0,
41
+ -1005239, -257592709, 2453983, 628833668, 1460718, 374309300,
42
+ 3756790, 962678241, -1935799, -496048908, -1716988, -439978542,
43
+ -3950053, -1012201926, 0, 0, 557458, 142848732,
44
+ -642628, -164673562, -3585098, -918682129, -2897314, -742437332,
45
+ 3192354, 818041395, 556856, 142694469, 3870317, 991769559,
46
+ 0, 0, -1221177, -312926867, 2815639, 721508096,
47
+ 2283733, 585207070, 2917338, 747568486, 1853806, 475038184,
48
+ 3345963, 857403734, 1858416, 476219497, 0, 0,
48
49
  };
49
50
 
50
- MLD_ALIGN const int32_t mld_aarch64_ntt_zetas_layer78[] = {
51
- 3073009, 1277625, -2635473, 3852015, 787459213,
52
- 327391679, -675340520, 987079667, 1753, -2659525,
53
- 2660408, -59148, 449207, -681503850, 681730119,
54
- -15156688, -1935420, -1455890, -1780227, 2772600,
55
- -495951789, -373072124, -456183549, 710479343, 4183372,
56
- -3222807, -3121440, -274060, 1071989969, -825844983,
57
- -799869667, -70227934, 1182243, 636927, -3956745,
58
- -3284915, 302950022, 163212680, -1013916752, -841760171,
59
- 87208, -3965306, -2296397, -3716946, 22347069,
60
- -1016110510, -588452222, -952468207, 2508980, 2028118,
61
- 1937570, -3815725, 642926661, 519705671, 496502727,
62
- -977780347, -27812, 1009365, -1979497, -3956944,
63
- -7126831, 258649997, -507246529, -1013967746, 822541,
64
- -2454145, 1596822, -3759465, 210776307, -628875181,
65
- 409185979, -963363710, 2811291, -2983781, -1109516,
66
- 4158088, 720393920, -764594519, -284313712, 1065510939,
67
- -1685153, 2678278, -3551006, -250446, -431820817,
68
- 686309310, -909946047, -64176841, -3410568, -3768948,
69
- 635956, -2455377, -873958779, -965793731, 162963861,
70
- -629190881, 1528066, 482649, 1148858, -2962264,
71
- 391567239, 123678909, 294395108, -759080783, -4146264,
72
- 2192938, 2387513, -268456, -1062481036, 561940831,
73
- 611800717, -68791907, -1772588, -1727088, -3611750,
74
- -3180456, -454226054, -442566669, -925511710, -814992530,
75
- -565603, 169688, 2462444, -3334383, -144935890,
76
- 43482586, 631001801, -854436357, 3747250, 1239911,
77
- 3195676, 1254190, 960233614, 317727459, 818892658,
78
- 321386456, 2296099, -3838479, 2642980, -12417,
79
- 588375860, -983611064, 677264190, -3181859, -4166425,
80
- -3488383, 1987814, -3197248, -1067647297, -893898890,
81
- 509377762, -819295484, 2998219, -89301, -1354892,
82
- -1310261, 768294260, -22883400, -347191365, -335754661,
83
- 141835, 2513018, 613238, -2218467, 36345249,
84
- 643961400, 157142369, -568482643, 1736313, 235407,
85
- -3250154, 3258457, 444930577, 60323094, -832852657,
86
- 834980303, -458740, 4040196, 2039144, -818761,
87
- -117552223, 1035301089, 522531086, -209807681, -1921994,
88
- -3472069, -1879878, -2178965, -492511373, -889718424,
89
- -481719139, -558360247, -2579253, 1787943, -2391089,
90
- -2254727, -660934133, 458160776, -612717067, -577774276,
91
- -1623354, -2374402, 586241, 527981, -415984810,
92
- -608441020, 150224382, 135295244, 2105286, -2033807,
93
- -1179613, -2743411, 539479988, -521163479, -302276083,
94
- -702999655, 3482206, -4182915, -1300016, -2362063,
95
- 892316032, -1071872863, -333129378, -605279149, -1476985,
96
- 2491325, 507927, -724804, -378477722, 638402564,
97
- 130156402, -185731180, 1994046, -1393159, -1187885,
98
- -1834526, 510974714, -356997292, -304395785, -470097680,
99
- -1317678, 2461387, 3035980, 621164, -337655269,
100
- 630730945, 777970524, 159173408, -3033742, 2647994,
101
- -2612853, 749577, -777397036, 678549029, -669544140,
102
- 192079267, -338420, 3009748, 4148469, -4022750,
103
- -86720197, 771248568, 1063046068, -1030830548, 3901472,
104
- -1226661, 2925816, 3374250, 999753034, -314332144,
105
- 749740976, 864652284, 3980599, -1615530, 1665318,
106
- 1163598, 1020029345, -413979908, 426738094, 298172236,
107
- 2569011, 1723229, 2028038, -3369273, 658309618,
108
- 441577800, 519685171, -863376927, 1356448, -2775755,
109
- 2683270, -2778788, 347590090, -711287812, 687588511,
110
- -712065019, 3994671, -1370517, 3363542, 545376,
111
- 1023635298, -351195274, 861908357, 139752717, -11879,
112
- 3020393, 214880, -770441, -3043996, 773976352,
113
- 55063046, -197425671, -3467665, 2312838, -653275,
114
- -459163, -888589898, 592665232, -167401858, -117660617,
115
- 3105558, 508145, 860144, 140244, 795799901,
116
- 130212265, 220412084, 35937555, -1103344, -553718,
117
- 3430436, -1514152, -282732136, -141890356, 879049958,
118
- -388001774, 348812, -327848, 1011223, -2354215,
119
- 89383150, -84011120, 259126110, -603268097, -2185084,
120
- 2358373, -3014420, 2926054, -559928242, 604333585,
121
- -772445769, 749801963, 3123762, -2193087, -1716814,
122
- -392707, 800464680, -561979013, -439933955, -100631253,
123
- -3818627, -1922253, -2236726, 1744507, -978523985,
124
- -492577742, -573161516, 447030292, -303005, -3974485,
125
- 1900052, 1054478, -77645096, -1018462631, 486888731,
126
- 270210213, 3531229, -3773731, -781875, -731434,
127
- 904878186, -967019376, -200355636, -187430119,
51
+ MLD_ALIGN MLD_INTERNAL_DATA_DEFINITION const int32_t
52
+ mld_aarch64_ntt_zetas_layer78[384] = {
53
+ 3073009, 1277625, -2635473, 3852015, 787459213,
54
+ 327391679, -675340520, 987079667, 1753, -2659525,
55
+ 2660408, -59148, 449207, -681503850, 681730119,
56
+ -15156688, -1935420, -1455890, -1780227, 2772600,
57
+ -495951789, -373072124, -456183549, 710479343, 4183372,
58
+ -3222807, -3121440, -274060, 1071989969, -825844983,
59
+ -799869667, -70227934, 1182243, 636927, -3956745,
60
+ -3284915, 302950022, 163212680, -1013916752, -841760171,
61
+ 87208, -3965306, -2296397, -3716946, 22347069,
62
+ -1016110510, -588452222, -952468207, 2508980, 2028118,
63
+ 1937570, -3815725, 642926661, 519705671, 496502727,
64
+ -977780347, -27812, 1009365, -1979497, -3956944,
65
+ -7126831, 258649997, -507246529, -1013967746, 822541,
66
+ -2454145, 1596822, -3759465, 210776307, -628875181,
67
+ 409185979, -963363710, 2811291, -2983781, -1109516,
68
+ 4158088, 720393920, -764594519, -284313712, 1065510939,
69
+ -1685153, 2678278, -3551006, -250446, -431820817,
70
+ 686309310, -909946047, -64176841, -3410568, -3768948,
71
+ 635956, -2455377, -873958779, -965793731, 162963861,
72
+ -629190881, 1528066, 482649, 1148858, -2962264,
73
+ 391567239, 123678909, 294395108, -759080783, -4146264,
74
+ 2192938, 2387513, -268456, -1062481036, 561940831,
75
+ 611800717, -68791907, -1772588, -1727088, -3611750,
76
+ -3180456, -454226054, -442566669, -925511710, -814992530,
77
+ -565603, 169688, 2462444, -3334383, -144935890,
78
+ 43482586, 631001801, -854436357, 3747250, 1239911,
79
+ 3195676, 1254190, 960233614, 317727459, 818892658,
80
+ 321386456, 2296099, -3838479, 2642980, -12417,
81
+ 588375860, -983611064, 677264190, -3181859, -4166425,
82
+ -3488383, 1987814, -3197248, -1067647297, -893898890,
83
+ 509377762, -819295484, 2998219, -89301, -1354892,
84
+ -1310261, 768294260, -22883400, -347191365, -335754661,
85
+ 141835, 2513018, 613238, -2218467, 36345249,
86
+ 643961400, 157142369, -568482643, 1736313, 235407,
87
+ -3250154, 3258457, 444930577, 60323094, -832852657,
88
+ 834980303, -458740, 4040196, 2039144, -818761,
89
+ -117552223, 1035301089, 522531086, -209807681, -1921994,
90
+ -3472069, -1879878, -2178965, -492511373, -889718424,
91
+ -481719139, -558360247, -2579253, 1787943, -2391089,
92
+ -2254727, -660934133, 458160776, -612717067, -577774276,
93
+ -1623354, -2374402, 586241, 527981, -415984810,
94
+ -608441020, 150224382, 135295244, 2105286, -2033807,
95
+ -1179613, -2743411, 539479988, -521163479, -302276083,
96
+ -702999655, 3482206, -4182915, -1300016, -2362063,
97
+ 892316032, -1071872863, -333129378, -605279149, -1476985,
98
+ 2491325, 507927, -724804, -378477722, 638402564,
99
+ 130156402, -185731180, 1994046, -1393159, -1187885,
100
+ -1834526, 510974714, -356997292, -304395785, -470097680,
101
+ -1317678, 2461387, 3035980, 621164, -337655269,
102
+ 630730945, 777970524, 159173408, -3033742, 2647994,
103
+ -2612853, 749577, -777397036, 678549029, -669544140,
104
+ 192079267, -338420, 3009748, 4148469, -4022750,
105
+ -86720197, 771248568, 1063046068, -1030830548, 3901472,
106
+ -1226661, 2925816, 3374250, 999753034, -314332144,
107
+ 749740976, 864652284, 3980599, -1615530, 1665318,
108
+ 1163598, 1020029345, -413979908, 426738094, 298172236,
109
+ 2569011, 1723229, 2028038, -3369273, 658309618,
110
+ 441577800, 519685171, -863376927, 1356448, -2775755,
111
+ 2683270, -2778788, 347590090, -711287812, 687588511,
112
+ -712065019, 3994671, -1370517, 3363542, 545376,
113
+ 1023635298, -351195274, 861908357, 139752717, -11879,
114
+ 3020393, 214880, -770441, -3043996, 773976352,
115
+ 55063046, -197425671, -3467665, 2312838, -653275,
116
+ -459163, -888589898, 592665232, -167401858, -117660617,
117
+ 3105558, 508145, 860144, 140244, 795799901,
118
+ 130212265, 220412084, 35937555, -1103344, -553718,
119
+ 3430436, -1514152, -282732136, -141890356, 879049958,
120
+ -388001774, 348812, -327848, 1011223, -2354215,
121
+ 89383150, -84011120, 259126110, -603268097, -2185084,
122
+ 2358373, -3014420, 2926054, -559928242, 604333585,
123
+ -772445769, 749801963, 3123762, -2193087, -1716814,
124
+ -392707, 800464680, -561979013, -439933955, -100631253,
125
+ -3818627, -1922253, -2236726, 1744507, -978523985,
126
+ -492577742, -573161516, 447030292, -303005, -3974485,
127
+ 1900052, 1054478, -77645096, -1018462631, 486888731,
128
+ 270210213, 3531229, -3773731, -781875, -731434,
129
+ 904878186, -967019376, -200355636, -187430119,
128
130
  };
129
131
 
130
- MLD_ALIGN const int32_t mld_aarch64_intt_zetas_layer78[] = {
131
- -1744507, 2236726, 1922253, 3818627, -447030292, 573161516,
132
- 492577742, 978523985, 731434, 781875, 3773731, -3531229,
133
- 187430119, 200355636, 967019376, -904878186, -1054478, -1900052,
134
- 3974485, 303005, -270210213, -486888731, 1018462631, 77645096,
135
- 2354215, -1011223, 327848, -348812, 603268097, -259126110,
136
- 84011120, -89383150, 392707, 1716814, 2193087, -3123762,
137
- 100631253, 439933955, 561979013, -800464680, -2926054, 3014420,
138
- -2358373, 2185084, -749801963, 772445769, -604333585, 559928242,
139
- 459163, 653275, -2312838, 3467665, 117660617, 167401858,
140
- -592665232, 888589898, 1514152, -3430436, 553718, 1103344,
141
- 388001774, -879049958, 141890356, 282732136, -140244, -860144,
142
- -508145, -3105558, -35937555, -220412084, -130212265, -795799901,
143
- 2778788, -2683270, 2775755, -1356448, 712065019, -687588511,
144
- 711287812, -347590090, 770441, -214880, -3020393, 11879,
145
- 197425671, -55063046, -773976352, 3043996, -545376, -3363542,
146
- 1370517, -3994671, -139752717, -861908357, 351195274, -1023635298,
147
- -3374250, -2925816, 1226661, -3901472, -864652284, -749740976,
148
- 314332144, -999753034, 3369273, -2028038, -1723229, -2569011,
149
- 863376927, -519685171, -441577800, -658309618, -1163598, -1665318,
150
- 1615530, -3980599, -298172236, -426738094, 413979908, -1020029345,
151
- -621164, -3035980, -2461387, 1317678, -159173408, -777970524,
152
- -630730945, 337655269, 4022750, -4148469, -3009748, 338420,
153
- 1030830548, -1063046068, -771248568, 86720197, -749577, 2612853,
154
- -2647994, 3033742, -192079267, 669544140, -678549029, 777397036,
155
- 2362063, 1300016, 4182915, -3482206, 605279149, 333129378,
156
- 1071872863, -892316032, 1834526, 1187885, 1393159, -1994046,
157
- 470097680, 304395785, 356997292, -510974714, 724804, -507927,
158
- -2491325, 1476985, 185731180, -130156402, -638402564, 378477722,
159
- 2254727, 2391089, -1787943, 2579253, 577774276, 612717067,
160
- -458160776, 660934133, 2743411, 1179613, 2033807, -2105286,
161
- 702999655, 302276083, 521163479, -539479988, -527981, -586241,
162
- 2374402, 1623354, -135295244, -150224382, 608441020, 415984810,
163
- -3258457, 3250154, -235407, -1736313, -834980303, 832852657,
164
- -60323094, -444930577, 2178965, 1879878, 3472069, 1921994,
165
- 558360247, 481719139, 889718424, 492511373, 818761, -2039144,
166
- -4040196, 458740, 209807681, -522531086, -1035301089, 117552223,
167
- 3197248, -1987814, 3488383, 4166425, 819295484, -509377762,
168
- 893898890, 1067647297, 2218467, -613238, -2513018, -141835,
169
- 568482643, -157142369, -643961400, -36345249, 1310261, 1354892,
170
- 89301, -2998219, 335754661, 347191365, 22883400, -768294260,
171
- 3334383, -2462444, -169688, 565603, 854436357, -631001801,
172
- -43482586, 144935890, 12417, -2642980, 3838479, -2296099,
173
- 3181859, -677264190, 983611064, -588375860, -1254190, -3195676,
174
- -1239911, -3747250, -321386456, -818892658, -317727459, -960233614,
175
- 2962264, -1148858, -482649, -1528066, 759080783, -294395108,
176
- -123678909, -391567239, 3180456, 3611750, 1727088, 1772588,
177
- 814992530, 925511710, 442566669, 454226054, 268456, -2387513,
178
- -2192938, 4146264, 68791907, -611800717, -561940831, 1062481036,
179
- -4158088, 1109516, 2983781, -2811291, -1065510939, 284313712,
180
- 764594519, -720393920, 2455377, -635956, 3768948, 3410568,
181
- 629190881, -162963861, 965793731, 873958779, 250446, 3551006,
182
- -2678278, 1685153, 64176841, 909946047, -686309310, 431820817,
183
- 3815725, -1937570, -2028118, -2508980, 977780347, -496502727,
184
- -519705671, -642926661, 3759465, -1596822, 2454145, -822541,
185
- 963363710, -409185979, 628875181, -210776307, 3956944, 1979497,
186
- -1009365, 27812, 1013967746, 507246529, -258649997, 7126831,
187
- 274060, 3121440, 3222807, -4183372, 70227934, 799869667,
188
- 825844983, -1071989969, 3716946, 2296397, 3965306, -87208,
189
- 952468207, 588452222, 1016110510, -22347069, 3284915, 3956745,
190
- -636927, -1182243, 841760171, 1013916752, -163212680, -302950022,
191
- -3852015, 2635473, -1277625, -3073009, -987079667, 675340520,
192
- -327391679, -787459213, -2772600, 1780227, 1455890, 1935420,
193
- -710479343, 456183549, 373072124, 495951789, 59148, -2660408,
194
- 2659525, -1753, 15156688, -681730119, 681503850, -449207,
132
+ MLD_ALIGN MLD_INTERNAL_DATA_DEFINITION const int32_t
133
+ mld_aarch64_intt_zetas_layer78[384] = {
134
+ -1744507, 2236726, 1922253, 3818627, -447030292,
135
+ 573161516, 492577742, 978523985, 731434, 781875,
136
+ 3773731, -3531229, 187430119, 200355636, 967019376,
137
+ -904878186, -1054478, -1900052, 3974485, 303005,
138
+ -270210213, -486888731, 1018462631, 77645096, 2354215,
139
+ -1011223, 327848, -348812, 603268097, -259126110,
140
+ 84011120, -89383150, 392707, 1716814, 2193087,
141
+ -3123762, 100631253, 439933955, 561979013, -800464680,
142
+ -2926054, 3014420, -2358373, 2185084, -749801963,
143
+ 772445769, -604333585, 559928242, 459163, 653275,
144
+ -2312838, 3467665, 117660617, 167401858, -592665232,
145
+ 888589898, 1514152, -3430436, 553718, 1103344,
146
+ 388001774, -879049958, 141890356, 282732136, -140244,
147
+ -860144, -508145, -3105558, -35937555, -220412084,
148
+ -130212265, -795799901, 2778788, -2683270, 2775755,
149
+ -1356448, 712065019, -687588511, 711287812, -347590090,
150
+ 770441, -214880, -3020393, 11879, 197425671,
151
+ -55063046, -773976352, 3043996, -545376, -3363542,
152
+ 1370517, -3994671, -139752717, -861908357, 351195274,
153
+ -1023635298, -3374250, -2925816, 1226661, -3901472,
154
+ -864652284, -749740976, 314332144, -999753034, 3369273,
155
+ -2028038, -1723229, -2569011, 863376927, -519685171,
156
+ -441577800, -658309618, -1163598, -1665318, 1615530,
157
+ -3980599, -298172236, -426738094, 413979908, -1020029345,
158
+ -621164, -3035980, -2461387, 1317678, -159173408,
159
+ -777970524, -630730945, 337655269, 4022750, -4148469,
160
+ -3009748, 338420, 1030830548, -1063046068, -771248568,
161
+ 86720197, -749577, 2612853, -2647994, 3033742,
162
+ -192079267, 669544140, -678549029, 777397036, 2362063,
163
+ 1300016, 4182915, -3482206, 605279149, 333129378,
164
+ 1071872863, -892316032, 1834526, 1187885, 1393159,
165
+ -1994046, 470097680, 304395785, 356997292, -510974714,
166
+ 724804, -507927, -2491325, 1476985, 185731180,
167
+ -130156402, -638402564, 378477722, 2254727, 2391089,
168
+ -1787943, 2579253, 577774276, 612717067, -458160776,
169
+ 660934133, 2743411, 1179613, 2033807, -2105286,
170
+ 702999655, 302276083, 521163479, -539479988, -527981,
171
+ -586241, 2374402, 1623354, -135295244, -150224382,
172
+ 608441020, 415984810, -3258457, 3250154, -235407,
173
+ -1736313, -834980303, 832852657, -60323094, -444930577,
174
+ 2178965, 1879878, 3472069, 1921994, 558360247,
175
+ 481719139, 889718424, 492511373, 818761, -2039144,
176
+ -4040196, 458740, 209807681, -522531086, -1035301089,
177
+ 117552223, 3197248, -1987814, 3488383, 4166425,
178
+ 819295484, -509377762, 893898890, 1067647297, 2218467,
179
+ -613238, -2513018, -141835, 568482643, -157142369,
180
+ -643961400, -36345249, 1310261, 1354892, 89301,
181
+ -2998219, 335754661, 347191365, 22883400, -768294260,
182
+ 3334383, -2462444, -169688, 565603, 854436357,
183
+ -631001801, -43482586, 144935890, 12417, -2642980,
184
+ 3838479, -2296099, 3181859, -677264190, 983611064,
185
+ -588375860, -1254190, -3195676, -1239911, -3747250,
186
+ -321386456, -818892658, -317727459, -960233614, 2962264,
187
+ -1148858, -482649, -1528066, 759080783, -294395108,
188
+ -123678909, -391567239, 3180456, 3611750, 1727088,
189
+ 1772588, 814992530, 925511710, 442566669, 454226054,
190
+ 268456, -2387513, -2192938, 4146264, 68791907,
191
+ -611800717, -561940831, 1062481036, -4158088, 1109516,
192
+ 2983781, -2811291, -1065510939, 284313712, 764594519,
193
+ -720393920, 2455377, -635956, 3768948, 3410568,
194
+ 629190881, -162963861, 965793731, 873958779, 250446,
195
+ 3551006, -2678278, 1685153, 64176841, 909946047,
196
+ -686309310, 431820817, 3815725, -1937570, -2028118,
197
+ -2508980, 977780347, -496502727, -519705671, -642926661,
198
+ 3759465, -1596822, 2454145, -822541, 963363710,
199
+ -409185979, 628875181, -210776307, 3956944, 1979497,
200
+ -1009365, 27812, 1013967746, 507246529, -258649997,
201
+ 7126831, 274060, 3121440, 3222807, -4183372,
202
+ 70227934, 799869667, 825844983, -1071989969, 3716946,
203
+ 2296397, 3965306, -87208, 952468207, 588452222,
204
+ 1016110510, -22347069, 3284915, 3956745, -636927,
205
+ -1182243, 841760171, 1013916752, -163212680, -302950022,
206
+ -3852015, 2635473, -1277625, -3073009, -987079667,
207
+ 675340520, -327391679, -787459213, -2772600, 1780227,
208
+ 1455890, 1935420, -710479343, 456183549, 373072124,
209
+ 495951789, 59148, -2660408, 2659525, -1753,
210
+ 15156688, -681730119, 681503850, -449207,
195
211
  };
196
212
 
197
- MLD_ALIGN const int32_t mld_aarch64_intt_zetas_layer123456[] = {
198
- -2283733, -585207070, 0, 0, -1858416, -476219497,
199
- -3345963, -857403734, -2815639, -721508096, 0, 0,
200
- -1853806, -475038184, -2917338, -747568486, 3585098, 918682129,
201
- 0, 0, -3870317, -991769559, -556856, -142694469,
202
- 642628, 164673562, 0, 0, -3192354, -818041395,
203
- 2897314, 742437332, -1460718, -374309300, 0, 0,
204
- 3950053, 1012201926, 1716988, 439978542, -2453983, -628833668,
205
- 0, 0, 1935799, 496048908, -3756790, -962678241,
206
- -1714295, -439288460, 0, 0, 3574466, 915957677,
207
- 817536, 209493775, 3227876, 827143915, 0, 0,
208
- -1759347, -450833045, -3415069, -875112161, 1335936, 342333886,
209
- 0, 0, -2156050, -552488273, -3241972, -830756018,
210
- -676590, -173376332, 0, 0, 4018989, 1029866791,
211
- -2071829, -530906624, 434125, 111244624, 0, 0,
212
- 3506380, 898510625, -1095468, -280713909, 3524442, 903139016,
213
- 0, 0, -928749, -237992130, -394148, -101000509,
214
- 1674615, 429120452, 0, 0, -1159875, -297218217,
215
- -3704823, -949361686, -2663378, -682491182, 0, 0,
216
- -2101410, -538486762, 3110818, 797147778, 4063053, 1041158200,
217
- 0, 0, 3586446, 919027554, -2740543, -702264730,
218
- 3370349, 863652652, 0, 0, -3182878, -815613168,
219
- -3602218, -923069133, -294725, -75523344, -3761513, -963888510,
220
- -3765607, -964937599, 3201430, 820367122, 3145678, 806080660,
221
- 2883726, 738955404, 3201494, 820383522, 1221177, 312926867,
222
- -557458, -142848732, 1005239, 257592709, -3764867, -964747974,
223
- -2129892, -545785280, -2682288, -687336873, -3542485, -907762539,
224
- 601683, 154181397, 0, 0,
213
+ MLD_ALIGN MLD_INTERNAL_DATA_DEFINITION const int32_t
214
+ mld_aarch64_intt_zetas_layer123456[160] = {
215
+ -2283733, -585207070, 0, 0, -1858416, -476219497,
216
+ -3345963, -857403734, -2815639, -721508096, 0, 0,
217
+ -1853806, -475038184, -2917338, -747568486, 3585098, 918682129,
218
+ 0, 0, -3870317, -991769559, -556856, -142694469,
219
+ 642628, 164673562, 0, 0, -3192354, -818041395,
220
+ 2897314, 742437332, -1460718, -374309300, 0, 0,
221
+ 3950053, 1012201926, 1716988, 439978542, -2453983, -628833668,
222
+ 0, 0, 1935799, 496048908, -3756790, -962678241,
223
+ -1714295, -439288460, 0, 0, 3574466, 915957677,
224
+ 817536, 209493775, 3227876, 827143915, 0, 0,
225
+ -1759347, -450833045, -3415069, -875112161, 1335936, 342333886,
226
+ 0, 0, -2156050, -552488273, -3241972, -830756018,
227
+ -676590, -173376332, 0, 0, 4018989, 1029866791,
228
+ -2071829, -530906624, 434125, 111244624, 0, 0,
229
+ 3506380, 898510625, -1095468, -280713909, 3524442, 903139016,
230
+ 0, 0, -928749, -237992130, -394148, -101000509,
231
+ 1674615, 429120452, 0, 0, -1159875, -297218217,
232
+ -3704823, -949361686, -2663378, -682491182, 0, 0,
233
+ -2101410, -538486762, 3110818, 797147778, 4063053, 1041158200,
234
+ 0, 0, 3586446, 919027554, -2740543, -702264730,
235
+ 3370349, 863652652, 0, 0, -3182878, -815613168,
236
+ -3602218, -923069133, -294725, -75523344, -3761513, -963888510,
237
+ -3765607, -964937599, 3201430, 820367122, 3145678, 806080660,
238
+ 2883726, 738955404, 3201494, 820383522, 1221177, 312926867,
239
+ -557458, -142848732, 1005239, 257592709, -3764867, -964747974,
240
+ -2129892, -545785280, -2682288, -687336873, -3542485, -907762539,
241
+ 601683, 154181397, 0, 0,
225
242
  };
226
243
 
227
244
  #else /* MLD_ARITH_BACKEND_AARCH64 && !MLD_CONFIG_MULTILEVEL_NO_SHARED */