diff --git a/ec/gen_tables/gen_tables.ml b/ec/gen_tables/gen_tables.ml index 429866be..1655ad6e 100644 --- a/ec/gen_tables/gen_tables.ml +++ b/ec/gen_tables/gen_tables.ml @@ -20,8 +20,11 @@ let pp_array elem_fmt fmt arr = done; fout "@]@,}" -let pp_string_words ~wordsize fmt str = - let limbs = String.length str * 8 / wordsize in +let div_round_up a b = + a / b + (if a mod b = 0 then 0 else 1) + +let pp_string_words ~wordsize ~byte_length fmt str = + let limbs = div_round_up (byte_length * 8) wordsize in assert (String.length str * 8 mod wordsize = 0); let bytes = Bytes.unsafe_of_string str in fprintf fmt "@[<2>{@\n"; @@ -51,22 +54,22 @@ let check_shape tables = x) tables -let print_tables tables ~wordsize = +let print_tables tables ~wordsize ~byte_length = let fe_len = String.length tables.(0).(0).(0) in printf "@[<2>static WORD generator_table[%d][15][3][LIMBS] = @," (fe_len * 2); pp_array - (pp_array (pp_array (pp_string_words ~wordsize))) + (pp_array (pp_array (pp_string_words ~wordsize ~byte_length))) std_formatter tables; printf "@];@," let print_toplevel name (module P : Mirage_crypto_ec.Dh_dsa) = - let tables = P.Dsa.Precompute.generator_tables () in + let tables, byte_length = P.Dsa.Precompute.generator_tables () in check_shape tables; print_header name; printf "@[#ifdef ARCH_64BIT@,"; - print_tables ~wordsize:64 tables; + print_tables ~wordsize:64 ~byte_length tables; printf "#else // 32-bit@,"; - print_tables ~wordsize:32 tables; + print_tables ~wordsize:32 ~byte_length tables; printf "@]#endif@." let curves = diff --git a/ec/mirage_crypto_ec.ml b/ec/mirage_crypto_ec.ml index 85285db6..f6f10816 100644 --- a/ec/mirage_crypto_ec.ml +++ b/ec/mirage_crypto_ec.ml @@ -63,7 +63,7 @@ module type Dsa = sig val generate : key:priv -> Cstruct.t -> Cstruct.t end module Precompute : sig - val generator_tables : unit -> string array array array + val generator_tables : unit -> (string array array array * int) end end @@ -428,7 +428,7 @@ module type Scalar = sig val to_octets : scalar -> string val scalar_mult : scalar -> point -> point val scalar_mult_base : scalar -> point - val generator_tables : unit -> field_element array array array + val generator_tables : unit -> (field_element array array array * int) end module Make_scalar (Param : Parameters) (P : Point) : Scalar = struct @@ -465,7 +465,8 @@ module Make_scalar (Param : Parameters) (P : Point) : Scalar = struct (* Specialization of [scalar_mult d p] when [p] is the generator *) let scalar_mult_base = P.scalar_mult_base - (* Pre-compute multiples of the generator point *) + (* Pre-compute multiples of the generator point + returns the tables along with the number of significant bytes *) let generator_tables () = let len = Param.fe_length * 2 in let one_table _ = Array.init 15 (fun _ -> P.at_infinity ()) in @@ -482,7 +483,7 @@ module Make_scalar (Param : Parameters) (P : Point) : Scalar = struct base := P.double !base done; let convert {f_x; f_y; f_z} = [|f_x; f_y; f_z|] in - Array.map (Array.map convert) table + (Array.map (Array.map convert) table, Param.byte_length) end module Make_dh (Param : Parameters) (P : Point) (S : Scalar) : Dh = struct diff --git a/ec/mirage_crypto_ec.mli b/ec/mirage_crypto_ec.mli index 76cd1e95..d9c4c6ca 100644 --- a/ec/mirage_crypto_ec.mli +++ b/ec/mirage_crypto_ec.mli @@ -135,10 +135,11 @@ module type Dsa = sig (** Operations to precompute useful data meant to be hardcoded in [mirage-crypto-ec] before compilation *) module Precompute : sig - val generator_tables : unit -> string array array array + val generator_tables : unit -> (string array array array * int) (** Return an array of shape (Fe_length * 2, 15, 3) containing multiples of the generator point for the curve. Useful only to bootstrap tables - necessary for scalar multiplication. *) + necessary for scalar multiplication. Returns the tables and the number + of significant bytes for each element.*) end end diff --git a/ec/native/p224_tables.h b/ec/native/p224_tables.h index f91da52d..71b8a07b 100644 --- a/ec/native/p224_tables.h +++ b/ec/native/p224_tables.h @@ -13583,211 +13583,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x6d0a4aea, 0xbc905226, 0x6018bfaa, 0x85259736, 0xf96bec05, - 0x6dd3af9b, 0xa21b5e60, 00000000 + 0x6dd3af9b, 0xa21b5e60 }, { 0xeff3ede8, 0x2edca1e5, 0x5335a6b, 0xf8cd672b, 0x3dfe878, - 0xaea9c5ae, 0x614786f1, 00000000 + 0xaea9c5ae, 0x614786f1 }, { 00000000, 0xffffffff, 0xffffffff, 0xffffffff, 00000000, 00000000, - 00000000, 00000000 + 00000000 } }, { { 0x9589a113, 0x3b5d295a, 0x1c8b1bb4, 0x69c8cd1f, 0xb1e67b18, - 0xd0d59dce, 0x39b91f72, 00000000 + 0xd0d59dce, 0x39b91f72 }, { 0x8fc403a8, 0x5ca289b4, 0x9204936b, 0xf968de08, 0x3c334a79, - 0x3361b1bf, 0x7e7bfa8c, 00000000 + 0x3361b1bf, 0x7e7bfa8c }, { 0xdfe7dbd0, 0x5db943cb, 0xa66b4d6, 0xf19ace56, 0x7bfd0f1, - 0x5d538b5c, 0xc28f0de3, 00000000 + 0x5d538b5c, 0xc28f0de3 } }, { { 0xa472d8dc, 0xac14cf77, 0x900be126, 0x7851bef4, 0x4b871cbd, - 0x90a0ac47, 0x6e378b37, 00000000 + 0x90a0ac47, 0x6e378b37 }, { 0xefdee619, 0x1c687c32, 0x17973bac, 0x3b9759da, 0x4105384e, - 0xaa1fe43d, 0xfd597e30, 00000000 + 0xaa1fe43d, 0xfd597e30 }, { 0x9c6d45a3, 0x1d690e17, 0x17a5c9da, 0x6c09207b, 0x9acff9f1, - 0x42f12807, 0x55df4103, 00000000 + 0x42f12807, 0x55df4103 } }, { { 0xd9f18915, 0xdd6160e9, 0xf52abe9c, 0xcf1a7b2f, 0x9da749da, - 0x4f912370, 0x10f54ce4, 00000000 + 0x4f912370, 0x10f54ce4 }, { 0xad5acddc, 0xd3269fc3, 0xed95c6ee, 0xca5c17d2, 0xd5751f8e, - 0x754aa762, 0xcd3d22b5, 00000000 + 0x754aa762, 0xcd3d22b5 }, { 0x56324f36, 0xeef2a109, 0xbc1fe350, 0xc3df1222, 0x7f453be5, - 0x62f5eebe, 0xca804dde, 00000000 + 0x62f5eebe, 0xca804dde } }, { { 0xcd883be2, 0xac3021f5, 0xc81fd51a, 0xc908ef1e, 0xa7669bed, - 0x21e3c69b, 0x4e461047, 00000000 + 0x21e3c69b, 0x4e461047 }, { 0x5c3980b7, 0x46d8344e, 0xc64498ea, 0xfe12fdb1, 0xaf490c76, - 0x53979e9, 0x47b0ad7e, 00000000 + 0x53979e9, 0x47b0ad7e }, { 0x500271c9, 0x9f619431, 0xcf067140, 0x8c154ed1, 0x81d39a03, - 0xb80355cc, 0xcf515e66, 00000000 + 0xb80355cc, 0xcf515e66 } }, { { 0x3d7cb27f, 0x9ec2d743, 0x4977da46, 0x91ffbd29, 0x9faba172, - 0x35568cce, 0x312c71d2, 00000000 + 0x35568cce, 0x312c71d2 }, { 0x76861ff, 0x12e07379, 0xc7d42ea0, 0x93959afc, 0x2ec5615, - 0x51d968ac, 0xecbe98be, 00000000 + 0x51d968ac, 0xecbe98be }, { 0x66a9485f, 0xa7f50885, 0x5dd77184, 0x11de9285, 0x19f3999a, - 0xa563eaac, 0xe9226101, 00000000 + 0xa563eaac, 0xe9226101 } }, { { 0x6d0d4fef, 0xdbe1e180, 0x17358a3c, 0xab061f56, 0xa677747a, - 0xed65ef01, 0x52d07e36, 00000000 + 0xed65ef01, 0x52d07e36 }, { 0x7259392d, 0x4ef5e72c, 0x7cd8771d, 0x8bc20bdd, 0xbd92289b, - 0x34c6b5e7, 0xab266bbd, 00000000 + 0x34c6b5e7, 0xab266bbd }, { 0xc62c30b1, 0xfe82e59c, 0xd1099e39, 0x76f4305a, 0xaf3de863, - 0x6ac43f8, 0xadcaa5db, 00000000 + 0x6ac43f8, 0xadcaa5db } }, { { 0x30f47ec3, 0x631e9cb1, 0xc3753dca, 0xf0d4eaf6, 0x7fb64fdc, - 0x71a84930, 0x38754324, 00000000 + 0x71a84930, 0x38754324 }, { 0x1bb55ef3, 0x9806a3b7, 0xacc65c0e, 0x344500de, 0x691faf14, - 0xc618c14f, 0x200feff4, 00000000 + 0xc618c14f, 0x200feff4 }, { 0x89a0ba88, 0xc695825, 0x133504da, 0x27b772a8, 0x616c4cf3, - 0x1894b058, 0x60e421da, 00000000 + 0x1894b058, 0x60e421da } }, { { 0x185f0c6a, 0xa4f33ea5, 0x3337fe08, 0x1b7698eb, 0x51b6c89c, - 0x6bebcc22, 0x2e5eaec4, 00000000 + 0x6bebcc22, 0x2e5eaec4 }, { 0x81280f25, 0x6212a4c1, 0x2433cb1b, 0x41c94a1a, 0x719fde1f, - 0xde95955b, 0xbf5f2397, 00000000 + 0xde95955b, 0xbf5f2397 }, { 0x88caa56b, 0xc3b43d07, 0x9cacc23b, 0x333514d5, 0xd00fa7a5, - 0xd0f8e52f, 0x91e033ec, 00000000 + 0xd0f8e52f, 0x91e033ec } }, { { 0xdb007e1b, 0x12845da7, 0x2e1a9a73, 0x1b2e08b9, 0xecc670d6, - 0xdf8b303a, 0xd57e1dc0, 00000000 + 0xdf8b303a, 0xd57e1dc0 }, { 0xa977abb6, 0x63c44bb6, 0x9d7e7c99, 0x5bdad354, 0x83c3d8e2, - 0x6febe754, 0x33777b49, 00000000 + 0x6febe754, 0x33777b49 }, { 0x496086a1, 0x7afbe326, 0xf046c688, 0x37abe8cd, 0xb9a019e4, - 0xfab1923c, 0x3e096fa9, 00000000 + 0xfab1923c, 0x3e096fa9 } }, { { 0x8c62142b, 0x4864f59d, 0xc02d5f96, 0xd640928e, 0xa4a7e896, - 0x781bffd2, 0xa51ce26b, 00000000 + 0x781bffd2, 0xa51ce26b }, { 0x64d5063f, 0xcb21d8fe, 0x617c1116, 0x8218af0d, 0x26f70a65, - 0x21a5175d, 0x20b75ed9, 00000000 + 0x21a5175d, 0x20b75ed9 }, { 0xe85c3975, 0xa98d4784, 0x77513e08, 0x9893b610, 0xb0a3a1ce, - 0x4d94139f, 0xf7b3cf97, 00000000 + 0x4d94139f, 0xf7b3cf97 } }, { { 0xa365b51e, 0x6fd99fe9, 0x7dd139b7, 0xab74d7e8, 0x3ad94fa3, - 0x9f62264f, 0x6b55ca65, 00000000 + 0x9f62264f, 0x6b55ca65 }, { 0xce238d6e, 0xc57f7455, 0xcf8bd68a, 0xb52f196e, 0xe2de7aac, - 0xb2b53588, 0x66798a42, 00000000 + 0xb2b53588, 0x66798a42 }, { 0xbd68cbad, 0x9f6a7fe1, 0x30100dff, 0xae3a5b0c, 0x4ce50f53, - 0xc50d2509, 0x28bce4fd, 00000000 + 0xc50d2509, 0x28bce4fd } }, { { 0xaec9f9b2, 0x2555f44e, 0xe1a5d9f7, 0x11485d7d, 0x87ad9d01, - 0xb035bd31, 0x68620506, 00000000 + 0xb035bd31, 0x68620506 }, { 0x4adb08c6, 0x3139fae5, 0x228fd324, 0x3afdedc8, 0xba33849a, - 0xde15cf96, 0x9c1e83c, 00000000 + 0xde15cf96, 0x9c1e83c }, { 0xf996c3ab, 0x10b89e4a, 0xe4a1e50d, 0x4862b851, 0x6e8065b3, - 0xb4d59268, 0xc81aceeb, 00000000 + 0xb4d59268, 0xc81aceeb } }, { { 0x89f3183f, 0x4169f6d4, 0x3e14094d, 0xe2cbb319, 0xd46dffa5, - 0x1614a8fb, 0x832e10ad, 00000000 + 0x1614a8fb, 0x832e10ad }, { 0xffd52542, 0xde49e69c, 0x6c13d032, 0x209b99ec, 0x9b66cdb7, - 0x7ff1e8dc, 0x97f750b4, 00000000 + 0x7ff1e8dc, 0x97f750b4 }, { 0x62027834, 0x7d621fd3, 0x90756242, 0x29c7f043, 0x3510517d, - 0x91219467, 0x9ae3e537, 00000000 + 0x91219467, 0x9ae3e537 } }, { { 0xb738b2c0, 0x1584ee7, 0x698cb0f6, 0x4583599, 0x80936806, - 0x6f8bd09e, 0x2647be9b, 00000000 + 0x6f8bd09e, 0x2647be9b }, { 0xe3c8b0f4, 0x50880f36, 0xb6f854c4, 0x6bc7a430, 0x2190662a, - 0x15b58207, 0x16ced32d, 00000000 + 0x15b58207, 0x16ced32d }, { 0x4acc45de, 0xd37ca0c0, 0xf94baa16, 0xa742e47f, 0x72818b9b, - 0x73a1c50f, 0x8bc3f5a, 00000000 + 0x73a1c50f, 0x8bc3f5a } } }, @@ -13795,211 +13795,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xfb97e96a, 0x13d60ed4, 0xee8071b8, 0xcdfec635, 0x5c9708e5, - 0xa3a748, 0xccb7a76f, 00000000 + 0xa3a748, 0xccb7a76f }, { 0x9dd9076b, 0x94a5ebd1, 0x47b84a3b, 0x2dc0d920, 0x5ea0f6ec, - 0x864f9070, 0x85110d9, 00000000 + 0x864f9070, 0x85110d9 }, { 0x32680775, 0xbc13a97a, 0x3f9a2eec, 0x4fe64919, 0xe149df96, - 0xca33204e, 0xced8fb36, 00000000 + 0xca33204e, 0xced8fb36 } }, { { 0x43dd83e6, 0x88d34696, 0x6a5fea8a, 0x6dbad6f8, 0xaee65ea1, - 0x747d9955, 0x7656a4c6, 00000000 + 0x747d9955, 0x7656a4c6 }, { 0x5cfcf70, 0xd6232281, 0x8f15aad2, 0x7105e442, 0x70a4289, - 0xa8bd7b82, 0xcc48f84e, 00000000 + 0xa8bd7b82, 0xcc48f84e }, { 0xef0e4912, 0x957c8c0c, 0xc2f36c74, 0xa6f59115, 0x6a24ae43, - 0x24c1ba1a, 0xb5bd3d5, 00000000 + 0x24c1ba1a, 0xb5bd3d5 } }, { { 0xe9e2fa7d, 0xf0f41817, 0xd6989e14, 0x26acf2ab, 0x4a0b9c08, - 0x90a81bd7, 0x6d91ce01, 00000000 + 0x90a81bd7, 0x6d91ce01 }, { 0x65130e0b, 0xd6b051bb, 0x9e57ab5c, 0xe8cb0338, 0x42fd4178, - 0xeaa670f2, 0xaed39808, 00000000 + 0xeaa670f2, 0xaed39808 }, { 0xf14c25ab, 0xa6840234, 0x31458005, 0xf620205a, 0x5dbe6b44, - 0x4dc335c3, 0x5d2a48d7, 00000000 + 0x4dc335c3, 0x5d2a48d7 } }, { { 0x2cf13bf9, 0xb3a0e773, 0xdfdf58bc, 0x44a1156b, 0x536f450d, - 0xe7f71cd3, 0x5c983af6, 00000000 + 0xe7f71cd3, 0x5c983af6 }, { 0xd60bfd0b, 0x8843b669, 0xc76a06a9, 0xbf9081a0, 0x82049b79, - 0x95244833, 0xb0fcb77c, 00000000 + 0x95244833, 0xb0fcb77c }, { 0x36b2dab3, 0x8d2aa49e, 0x931bc616, 0xb59f5bb7, 0x81538e99, - 0x9fdc0829, 0x4f643b78, 00000000 + 0x9fdc0829, 0x4f643b78 } }, { { 0x5f3754ea, 0xbb4d9d91, 0x384cbf77, 0x40b169a2, 0xc89e908c, - 0xcf6185bf, 0xf60b94d0, 00000000 + 0xcf6185bf, 0xf60b94d0 }, { 0x69b204ce, 0xc10c2d34, 0xed299a94, 0xc124973, 0xd7db8d68, - 0x344cec63, 0x308af925, 00000000 + 0x344cec63, 0x308af925 }, { 0x1a56610a, 0x705ff656, 0xcfae284, 0xd4fc0f4, 0xe938a3b8, - 0xb8ab336f, 0xba56468e, 00000000 + 0xb8ab336f, 0xba56468e } }, { { 0xbeed48d5, 0xcbcc10da, 0x65dd9453, 0xfc2ae295, 0x71c04e8d, - 0xd6a7be7d, 0x5429de60, 00000000 + 0xd6a7be7d, 0x5429de60 }, { 0x14575729, 0xee119c23, 0x463c1afe, 0x24bef604, 0x725327ff, - 0x147cefe5, 0xf146c0da, 00000000 + 0x147cefe5, 0xf146c0da }, { 0xea79035, 0x88d1f162, 0xd1780f4a, 0xc7b77b42, 0x898da1c8, - 0xd6911c20, 0xd49ac673, 00000000 + 0xd6911c20, 0xd49ac673 } }, { { 0x1345b739, 0xbd3e0771, 0x8a038436, 0x5bea8fbf, 0xc37e6ee6, - 0x4889f103, 0xc65fcbae, 00000000 + 0x4889f103, 0xc65fcbae }, { 0x6bf04088, 0xe84b1795, 0x42b1b493, 0x16558e8f, 0x3093aae2, - 0xcf85e35, 0x3367fee7, 00000000 + 0xcf85e35, 0x3367fee7 }, { 0xf7d0167b, 0x25868bba, 0xb66bf32c, 0x6dced8f3, 0x4b8cac4f, - 0xd07e7fba, 0xdcbf2c16, 00000000 + 0xd07e7fba, 0xdcbf2c16 } }, { { 0x7283efc2, 0x973dc8df, 0x232b0b84, 0xa3fdccff, 0x64d5ecc2, - 0x3453406b, 0x98fd9325, 00000000 + 0x3453406b, 0x98fd9325 }, { 0x12c9d637, 0x8245fdfd, 0x46dba485, 0xcc4d613e, 0xcb0610ae, - 0x6164662f, 0x2db549f7, 00000000 + 0x6164662f, 0x2db549f7 }, { 0x484a9b86, 0xb5c5f5ad, 0xc6edd90c, 0x19a764c0, 0xa165ad3b, - 0x7a8074fb, 0xf0f42e1e, 00000000 + 0x7a8074fb, 0xf0f42e1e } }, { { 0x5a2728d2, 0x44cd04f4, 0x640abb15, 0x85c24d6, 0x94285d38, - 0xcc8b86bb, 0xc0cd4e1d, 00000000 + 0xcc8b86bb, 0xc0cd4e1d }, { 0x7293c020, 0x415106d4, 0x7f7ff9a7, 0x6849ae45, 0x4714ae7, - 0xe1576b5a, 0xcc7aa06c, 00000000 + 0xe1576b5a, 0xcc7aa06c }, { 0x231a0490, 0x4a764e39, 0x2180c7f8, 0x165e5137, 0x12d8103c, - 0x73200917, 0x8f79bf17, 00000000 + 0x73200917, 0x8f79bf17 } }, { { 0x6fd63f65, 0xc7fa7d79, 0x1d0eac72, 0xbab80686, 0xbaef3292, - 0x9f35b1d5, 0xda27d184, 00000000 + 0x9f35b1d5, 0xda27d184 }, { 0xe7d83c7c, 0x85383fcf, 0x59925fe8, 0x8eec9219, 0x60e7f4fd, - 0x9b3f4521, 0x48780893, 00000000 + 0x9b3f4521, 0x48780893 }, { 0xf1c89d8c, 0xe80e9db6, 0xd0c9c977, 0xc4eab0b7, 0xe52c98bb, - 0xd0af935, 0x5acb7d09, 00000000 + 0xd0af935, 0x5acb7d09 } }, { { 0xed0e9ca4, 0x73ffc24d, 0x22b5f70c, 0xcfbe92ad, 0xd31e1d68, - 0xd203217b, 0x95f255d8, 00000000 + 0xd203217b, 0x95f255d8 }, { 0xa4580444, 0xe2dcc50f, 0xd33e1303, 0x1b840a7c, 0x3e033f0d, - 0x417fc1a7, 0x46cbaf4a, 00000000 + 0x417fc1a7, 0x46cbaf4a }, { 0x71b02072, 0xe219e5b9, 0x4e43c69b, 0x5a66b2e1, 0x27992974, - 0x22281110, 0xc8c88765, 00000000 + 0x22281110, 0xc8c88765 } }, { { 0xbf81f9ce, 0xa0b19fc, 0x5d8236fc, 0x283ab6d, 0x9bc90adf, - 0xb65e7c14, 0xc995f268, 00000000 + 0xb65e7c14, 0xc995f268 }, { 0x33d1ddeb, 0x830c8d75, 0xf4aae49d, 0x792c811d, 0xacbd85be, - 0x78a01df1, 0x38184bc6, 00000000 + 0x78a01df1, 0x38184bc6 }, { 0xad052d46, 0x48062c13, 0xc0510783, 0xb0a61492, 0xdfff2cd1, - 0x46645574, 0xfa43f86e, 00000000 + 0x46645574, 0xfa43f86e } }, { { 0xa484bb52, 0x1d94d738, 0xf17f1552, 0x6bbe1d4c, 0x7fc7261f, - 0x720bfa60, 0x99cda710, 00000000 + 0x720bfa60, 0x99cda710 }, { 0x11b0a14e, 0xb85c8849, 0xe704934, 0xfc44342c, 0x66f7bd5b, - 0x791574c4, 0xf8f1dc37, 00000000 + 0x791574c4, 0xf8f1dc37 }, { 0x14d18b27, 0xad37794f, 0x863b27b2, 0xa468a93c, 0x73ab764d, - 0xc2b018df, 0x15fa7b9f, 00000000 + 0xc2b018df, 0x15fa7b9f } }, { { 0x914ae7e, 0x65de17cc, 0x8ddbec44, 0xcb8dae43, 0x43597bbe, - 0x6afced9a, 0x71cdd258, 00000000 + 0x6afced9a, 0x71cdd258 }, { 0x1bf02aea, 0x235dff80, 0x794e77d4, 0x6541e55a, 0x13470fa4, - 0x830843f, 0x858e61d8, 00000000 + 0x830843f, 0x858e61d8 }, { 0x62559670, 0x3018f45, 0xcca47cb8, 0x9bbd7d0e, 0x771c0e80, - 0x65174c5c, 0xda8b4214, 00000000 + 0x65174c5c, 0xda8b4214 } }, { { 0x3cf6bd90, 0x77198c0b, 0xb70302bd, 0x5659cef3, 0x75676a2f, - 0x613567b0, 0x104e4355, 00000000 + 0x613567b0, 0x104e4355 }, { 0x24219da7, 0x74416150, 0x1a3aedba, 0x14d8cd42, 0xb699d899, - 0x108ddbf2, 0xdc4f9732, 00000000 + 0x108ddbf2, 0xdc4f9732 }, { 0x59558083, 0x66dc2dd0, 0x4e2f9f3b, 0x7cc68683, 0x6f8107ff, - 0xa3a46a19, 0x313775e9, 00000000 + 0xa3a46a19, 0x313775e9 } } }, @@ -14007,211 +14007,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x26d00f0f, 0x57a96647, 0x2b3e16e4, 0xc637fe7c, 0x3c40ea7f, - 0x85077236, 0x781f9095, 00000000 + 0x85077236, 0x781f9095 }, { 0xa111b3ef, 0x350ebe30, 0xfe9cb255, 0xb7b4c3c3, 0x695fe702, - 0x21c4ab47, 0x7e99d197, 00000000 + 0x21c4ab47, 0x7e99d197 }, { 0xaa0974fd, 0x33962fb9, 0x937ab2d9, 0xbcb4c90f, 0x9e3f075b, - 0x78730c74, 0x62d8d85c, 00000000 + 0x78730c74, 0x62d8d85c } }, { { 0x1629ed37, 0x380fe6b1, 0x57fda602, 0xa685d121, 0xb8658555, - 0x88902a5f, 0x33d14fee, 00000000 + 0x88902a5f, 0x33d14fee }, { 0xdaf5cb88, 0x946fbc16, 0x2c738f94, 0xd958af43, 0x910041d2, - 0x1f9c266, 0x450bd421, 00000000 + 0x1f9c266, 0x450bd421 }, { 0xe2bfd526, 0x16908234, 0x6b4aa062, 0xeb74fec5, 0x7011885e, - 0x43d01fb8, 0x8b7e144e, 00000000 + 0x43d01fb8, 0x8b7e144e } }, { { 0x6d24da34, 0x4d2c7a8e, 0xbf8b5bd2, 0x7d4b129d, 0xa03d58bd, - 0xbb9aaeb5, 0xb9f2cac0, 00000000 + 0xbb9aaeb5, 0xb9f2cac0 }, { 0xd084f938, 0x2b19252a, 0xa6ae1f7e, 0x1a66ac04, 0x72112706, - 0xf36b2eae, 0xc4d163b3, 00000000 + 0xf36b2eae, 0xc4d163b3 }, { 0x7955d9ef, 0x52eb5c9e, 0x6b7e08ed, 0x6e9b6089, 0xc92a5c6e, - 0x69066cba, 0x644471d9, 00000000 + 0x69066cba, 0x644471d9 } }, { { 0x326c47b3, 0xddcaa33c, 0xfe64dd8a, 0xbc6a0a0f, 0x35f0526b, - 0x1e144fdb, 0x9c4ebab7, 00000000 + 0x1e144fdb, 0x9c4ebab7 }, { 0xacf28b6f, 0x496e54df, 0x7871253b, 0x7cfe6408, 0x33ff19a0, - 0x13a98a2b, 0xd6607fd9, 00000000 + 0x13a98a2b, 0xd6607fd9 }, { 0xfdd936c8, 0xce294a25, 0xdf114a6a, 0x3e1a5c72, 0xa2eefc0c, - 0x526e1785, 0xb7405b66, 00000000 + 0x526e1785, 0xb7405b66 } }, { { 0x56724be6, 0xf963514c, 0xcaf4ed60, 0xba2f8dc2, 0x4be60203, - 0x54674b22, 0x13d17076, 00000000 + 0x54674b22, 0x13d17076 }, { 0xaaa9fc7c, 0x11a1b9c6, 0xe7a682ad, 0x49e6f3db, 0xc33e79b8, - 0x225ae434, 0x8c121b4e, 00000000 + 0x225ae434, 0x8c121b4e }, { 0xf42e39a2, 0xfb7cd131, 0x7579850, 0xbb182049, 0xbd8c2a39, - 0x3946ae38, 0x8e222a8b, 00000000 + 0x3946ae38, 0x8e222a8b } }, { { 0x96f3b780, 0xf7d2b7ce, 0x23b8d5f9, 0x3b756366, 0x5e2e4858, - 0xf515d5e1, 0x2ca4c131, 00000000 + 0xf515d5e1, 0x2ca4c131 }, { 0xabc694d5, 0xbefb1c55, 0x7259e2, 0x78a4613d, 0xbe945c7d, - 0x1c4f81cb, 0x91e870e9, 00000000 + 0x1c4f81cb, 0x91e870e9 }, { 0x3ab986a7, 0x3592e755, 0x78701ac4, 0xea8d20eb, 0x2168f362, - 0x37053dcd, 0xf1a47d96, 00000000 + 0x37053dcd, 0xf1a47d96 } }, { { 0x46c5a633, 0x6c7ea7c6, 0x38058731, 0xd95a8436, 0x5b077042, - 0xe6cad971, 0x420556ca, 00000000 + 0xe6cad971, 0x420556ca }, { 0x75dcd20d, 0x62d3c26a, 0xc43108ff, 0x22aa77a4, 0x2a1de416, - 0x95d6b87a, 0xbd58f636, 00000000 + 0x95d6b87a, 0xbd58f636 }, { 0x71314e17, 0x9b3e3ee9, 0x46e64973, 0xc2e97743, 0xe5e92fce, - 0x7ac0c271, 0xf29534dd, 00000000 + 0x7ac0c271, 0xf29534dd } }, { { 0x78b7da8e, 0xc17507d8, 0xe800c7d9, 0x3031b2ac, 0x2562ae0e, - 0x23fb6e2f, 0x977d3e59, 00000000 + 0x23fb6e2f, 0x977d3e59 }, { 0x8054b42d, 0x713fc644, 0xfb077429, 0x7ddefd8d, 0xd932aaf7, - 0xb577a5fc, 0x4db2569e, 00000000 + 0xb577a5fc, 0x4db2569e }, { 0xe60f68da, 0x7485d4c1, 0x437cb080, 0x26328083, 0x5c026c40, - 0x15c3037, 0xd8459857, 00000000 + 0x15c3037, 0xd8459857 } }, { { 0xd3a0c7eb, 0xa81f42b1, 0xc2b6435e, 0x7b0f7152, 0x2db070bb, - 0x796bfee0, 0x51fad05b, 00000000 + 0x796bfee0, 0x51fad05b }, { 0x45428d7c, 0x2dd61b04, 0x74e1f60a, 0x2fc3bff7, 0x73018e16, - 0x535edd75, 0x640c716, 00000000 + 0x535edd75, 0x640c716 }, { 0x2c4dca84, 0xbceaee3, 0x410a848d, 0x338a2eac, 0xd735395a, - 0x68dc830e, 0xe95cd781, 00000000 + 0x68dc830e, 0xe95cd781 } }, { { 0xd5c7c853, 0xf8876ddf, 0x49193881, 0x6cff9dbd, 0xdc2828f5, - 0xef58b09e, 0x9239d5fd, 00000000 + 0xef58b09e, 0x9239d5fd }, { 0xab2d304, 0xe6e1f533, 0x574b78d5, 0xb64a0f6a, 0x473aa34f, - 0x966e72a6, 0x11026a4d, 00000000 + 0x966e72a6, 0x11026a4d }, { 0xc7b7e2e2, 0x7fb1496e, 0x1ad99b8e, 0x2296e951, 0xbe3d26d3, - 0x135ea056, 0x28c658f0, 00000000 + 0x135ea056, 0x28c658f0 } }, { { 0xe1b2ad6a, 0xf63ca075, 0x24c25515, 0x1db95d4f, 0x5c9f3e8c, - 0x534e2e22, 0xa4271260, 00000000 + 0x534e2e22, 0xa4271260 }, { 0xcfa2a39a, 0xacab5c0f, 0x2c99dfad, 0x5cb01996, 0x839a6ff9, - 0xf91d252e, 0x7048cb84, 00000000 + 0xf91d252e, 0x7048cb84 }, { 0x9c611a3e, 0x150801a2, 0xba33b5dc, 0xc88f618, 0x4167f48a, - 0x1ebb87ed, 0xd0ac9d41, 00000000 + 0x1ebb87ed, 0xd0ac9d41 } }, { { 0x58bf3127, 0x89a6eae, 0x23935f35, 0xa955153b, 0x94deb3f0, - 0xf700a7f2, 0xa095b31d, 00000000 + 0xf700a7f2, 0xa095b31d }, { 0x1c6693aa, 0x952d7ab9, 0x6624eda3, 0x13282bc2, 0xd7403639, - 0x317d9ba1, 0xbe8af417, 00000000 + 0x317d9ba1, 0xbe8af417 }, { 0x8e90727, 0x69bd0885, 0x2f91e2ca, 0x8bae9a45, 0xb951cbaf, - 0xdbacf669, 0x59de02af, 00000000 + 0xdbacf669, 0x59de02af } }, { { 0x9e5584ac, 0x4a01c40e, 0x7ca7a2b4, 0xcb456c91, 0x614f1a4f, - 0xf35abd47, 0x9b60ef17, 00000000 + 0xf35abd47, 0x9b60ef17 }, { 0x28cbd129, 0xf92d445c, 0x94305095, 0xb914b9bd, 0x8d5c19ff, - 0x11857598, 0xc52b5d90, 00000000 + 0x11857598, 0xc52b5d90 }, { 0xee4bb7f5, 0xf07dc13a, 0x8915a74d, 0x440e8ce, 0xb34d252e, - 0xcbaa6a69, 0x55228eb4, 00000000 + 0xcbaa6a69, 0x55228eb4 } }, { { 0x810c1632, 0x60e2114e, 0x9538230f, 0x70327c69, 0x69740927, - 0xf261eee0, 0x2c19e458, 00000000 + 0xf261eee0, 0x2c19e458 }, { 0x351d4326, 0x7bb714c7, 0x597a73c8, 0x61991541, 0x69864f2f, - 0x2e7985dd, 0xe483ffd9, 00000000 + 0x2e7985dd, 0xe483ffd9 }, { 0x5d652e6b, 0x8ef4753b, 0x45f35878, 0x2c33fad0, 0xcd0b81ec, - 0x4cfd1f15, 0x822d3b7a, 00000000 + 0x4cfd1f15, 0x822d3b7a } }, { { 0x474c7ba5, 0x5425b99, 0x15ea3607, 0xf7f5033d, 0xffba3c0c, - 0x684a9bb0, 0xee95b862, 00000000 + 0x684a9bb0, 0xee95b862 }, { 0x55af8b8c, 0x1d845e, 0xb0981ebf, 0x45fb5ae7, 0x450e5bd5, - 0x6f9aaeb6, 0x803be1d4, 00000000 + 0x6f9aaeb6, 0x803be1d4 }, { 0xbde4d218, 0xdafb21d9, 0xf69b6bae, 0x615c3514, 0x8d5246af, - 0xf803561b, 0x7f417d45, 00000000 + 0xf803561b, 0x7f417d45 } } }, @@ -14219,211 +14219,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xfecaafa9, 0xa0e2e39a, 0x8010ec89, 0xd0c7768b, 0x31f2329b, - 0xa262e430, 0x40234b6b, 00000000 + 0xa262e430, 0x40234b6b }, { 0x26e56ffe, 0xc380322e, 0xff8a6644, 0xbc562e1d, 0xcc93b780, - 0xfba074c0, 0x7d47ebdc, 00000000 + 0xfba074c0, 0x7d47ebdc }, { 0xe4aede6e, 0x24febc16, 0xe39abfae, 0x56bf6399, 0xa6d1bf19, - 0xe93fcc68, 0xb677ba04, 00000000 + 0xe93fcc68, 0xb677ba04 } }, { { 0xa6b2d357, 0x6b85795f, 0xc8f1571a, 0xc7894653, 0xa8810034, - 0x50afd802, 0x4739ffc8, 00000000 + 0x50afd802, 0x4739ffc8 }, { 0xeb7ee3cb, 0x3ab2049, 0x38ad3bcf, 0x7a09ad7a, 0xf7e74984, - 0x2452a42e, 0x27411341, 00000000 + 0x2452a42e, 0x27411341 }, { 0x4ffb0e47, 0xf485c684, 0xe9533f84, 0x7e87de7a, 0x80b9b05, - 0x94738179, 0x418b508e, 00000000 + 0x94738179, 0x418b508e } }, { { 0x6df7614b, 0x6f92d7d3, 0xcd7997d4, 0xda301398, 0x4865f8f, - 0x83a63704, 0xe335de9a, 00000000 + 0x83a63704, 0xe335de9a }, { 0x785601d2, 0xb24cde2a, 0x8e1216f5, 0x903526f8, 0x898943ce, - 0x168b573, 0x366a87fc, 00000000 + 0x168b573, 0x366a87fc }, { 0xafdc3b97, 0xd300a640, 0x8d9aabde, 0x877f0912, 0xd631ce4f, - 0xca3dbee7, 0xcf7336af, 00000000 + 0xca3dbee7, 0xcf7336af } }, { { 0x10160875, 0x26522e7a, 0x9305abca, 0xef950cc2, 0xf00ed3c1, - 0x2671390b, 0x500e7909, 00000000 + 0x2671390b, 0x500e7909 }, { 0xf467fb74, 0x8fbc11fe, 0xef3d2842, 0x67c6db32, 0x53e69897, - 0x6786a2c6, 0x595faee0, 00000000 + 0x6786a2c6, 0x595faee0 }, { 0xba603886, 0x1a99ef3, 0xbc79c707, 0x98c8d1d3, 0x2576ee93, - 0x88a95936, 0x1c738c62, 00000000 + 0x88a95936, 0x1c738c62 } }, { { 0x8918c34a, 0xc632ce98, 0xf3b549c1, 0x12cb7a75, 0xc66e9a17, - 0x910221db, 0x7218cee1, 00000000 + 0x910221db, 0x7218cee1 }, { 0x4d3429bd, 0x17fbb5d5, 0xf9fcac9a, 0x7e2f4e03, 0x1715f601, - 0xd4f75f5d, 0x8d1e8078, 00000000 + 0xd4f75f5d, 0x8d1e8078 }, { 0xef9cae99, 0xbba11952, 0x6cc97778, 0xc4906ffd, 0xb0213ba0, - 0x5157e7bf, 0xf7474b85, 00000000 + 0x5157e7bf, 0xf7474b85 } }, { { 0xcb97a74a, 0xaaa34369, 0xbc44b0f1, 0x6f32c10a, 0xf12b676e, - 0x7e9a9182, 0x7c3585e1, 00000000 + 0x7e9a9182, 0x7c3585e1 }, { 0x22269329, 0x586dcf2c, 0x961c942c, 0xbcb86f78, 0xdb5ada1d, - 0xee66d7b3, 0xf606acaa, 00000000 + 0xee66d7b3, 0xf606acaa }, { 0x94091d4b, 0xe9011ffa, 0x218a2b61, 0xc11205ca, 0xb3664519, - 0x5a6b0562, 0x2081eb64, 00000000 + 0x5a6b0562, 0x2081eb64 } }, { { 0x99dd2a97, 0xf93a49ee, 0x324e130d, 0xac3f6186, 0x735134d, - 0xf28939bd, 0x3f775adf, 00000000 + 0xf28939bd, 0x3f775adf }, { 0x59a412b2, 0xc787d7bc, 0x5bbfd0b8, 0x86c478c0, 0xc18bec73, - 0xa4c227d7, 0x6c575955, 00000000 + 0xa4c227d7, 0x6c575955 }, { 0xfc95cce, 0x1c79f23a, 0x87da9e41, 0xc514a533, 0x5764cfc3, - 0xe7a59003, 0x6125df71, 00000000 + 0xe7a59003, 0x6125df71 } }, { { 0x7b1450, 0x57d5a381, 0xf7203cc5, 0xb3fe3b28, 0xc1585373, - 0xb39eed27, 0x2db119da, 00000000 + 0xb39eed27, 0x2db119da }, { 0x9f29135d, 0xa1bf05e6, 0x935f430a, 0x5724103, 0xcb753eae, - 0xc0c3ca26, 0x45eaedf8, 00000000 + 0xc0c3ca26, 0x45eaedf8 }, { 0x7b2f4db4, 0xff7e0e75, 0xb061411c, 0xfab1fc98, 0x364b7e96, - 0x668fd08, 0x151872c2, 00000000 + 0x668fd08, 0x151872c2 } }, { { 0x8c5b72a8, 0xdbe8a21c, 0x5df33b7c, 0x4136bd6c, 0x4a95713, - 0x31e72e4e, 0xaafe0918, 00000000 + 0x31e72e4e, 0xaafe0918 }, { 0x6f48acfc, 0x2248ec8d, 0xe137317a, 0xb9d70ccf, 0x50311afb, - 0x3c07e808, 0xdfe31d2b, 00000000 + 0x3c07e808, 0xdfe31d2b }, { 0xb1f36f96, 0x4e2554a4, 0xf0e32574, 0xd9951358, 0xce58f3bb, - 0xbb4c14bd, 0xd3a29cac, 00000000 + 0xbb4c14bd, 0xd3a29cac } }, { { 0x25c6a347, 0xe7c6fcac, 0xe6971aa5, 0x73f69c48, 0x4c15d0e9, - 0xcc65e875, 0x67818f33, 00000000 + 0xcc65e875, 0x67818f33 }, { 0x53eb7468, 0xcf4fb29, 0x47ebb1a4, 0xf06ad80e, 0x570e182a, - 0xa437c48c, 0x816d04d, 00000000 + 0xa437c48c, 0x816d04d }, { 0x83d93efd, 0xf601ec2d, 0x3c8f9caa, 0x9a3a138f, 0xd877029f, - 0x77adc655, 0xceacece8, 00000000 + 0x77adc655, 0xceacece8 } }, { { 0x9e5f6e22, 0x6ba77449, 0x62bfbdd, 0x60f1eb2f, 0x4442426a, - 0x95c61f1e, 0x70dcdfab, 00000000 + 0x95c61f1e, 0x70dcdfab }, { 0xbc12ba68, 0x4dce1e6f, 0xd9a4974e, 0x3a351228, 0x39eb40f4, - 0xbc7c0f6b, 0xd7483478, 00000000 + 0xbc7c0f6b, 0xd7483478 }, { 0xee7a83c3, 0xc848dfed, 0xc8a472aa, 0x6a5d13a2, 0xb32900ec, - 0x88b494fa, 0x8f40491d, 00000000 + 0x88b494fa, 0x8f40491d } }, { { 0xf16c7b6e, 0x9bc503a2, 0xa805429c, 0x8463b60c, 0x54df8a7f, - 0xbb8cbe15, 0x18b0706d, 00000000 + 0xbb8cbe15, 0x18b0706d }, { 0xf192c043, 0x858209d6, 0x681e140c, 0x6d43947e, 0x2ef21a8d, - 0x6b408c4e, 0xedad0978, 00000000 + 0x6b408c4e, 0xedad0978 }, { 0x86c7bbc1, 0x42ad5e6a, 0xbfa4443a, 0x6176667b, 0xa0739fcd, - 0x4d3877d1, 0x687c0add, 00000000 + 0x4d3877d1, 0x687c0add } }, { { 0xf3f09138, 0xb50b662f, 0x3370ace4, 0x9b0e432, 0x76ab7a7b, - 0xc95b1504, 0x689609e, 00000000 + 0xc95b1504, 0x689609e }, { 0x65f34a62, 0x8145bf7a, 0x2e6f5d79, 0x9abb3b12, 0x39af53, - 0xf404ae02, 0x65069caf, 00000000 + 0xf404ae02, 0x65069caf }, { 0xce1efe65, 0xb3da1909, 0x8a8be79a, 0x86538563, 0xb2451cce, - 0x45be6ba0, 0xdbaae46f, 00000000 + 0x45be6ba0, 0xdbaae46f } }, { { 0xdaba8619, 0x553a7fb6, 0x482760db, 0xf7494835, 0xd27ea084, - 0xe61f00b0, 0xf1e762b1, 00000000 + 0xe61f00b0, 0xf1e762b1 }, { 0xde031252, 0x6f0e9f78, 0xcd452d22, 0x8f9e65c9, 0xbc4a82b3, - 0x150a43fd, 0x48fc8856, 00000000 + 0x150a43fd, 0x48fc8856 }, { 0x627c6c4a, 0x371a9ed8, 0x6653e1a6, 0x1078da93, 0xeeed8b02, - 0x350fe2a4, 0x46be668, 00000000 + 0x350fe2a4, 0x46be668 } }, { { 0xa5c5c55b, 0x144bf88f, 0x94230dd8, 0xc2c8ae73, 0x9ffea534, - 0xcab00054, 0x3868b1cb, 00000000 + 0xcab00054, 0x3868b1cb }, { 0xa0c16542, 0xe56b29ec, 0x27120479, 0x4e4832e7, 0x1236f707, - 0x38ae8853, 0x8bddbca6, 00000000 + 0x38ae8853, 0x8bddbca6 }, { 0xcbb2db69, 0x8741f23e, 0x71e834ca, 0x1ad1efab, 0xbfbb2d1a, - 0x4f66847e, 0x8c894bf9, 00000000 + 0x4f66847e, 0x8c894bf9 } } }, @@ -14431,211 +14431,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x87d1c9d6, 0xb161a82b, 0xadcca9d2, 0x3a855707, 0xf35d6d02, - 0x6cbc0cab, 0xcdb2dfc2, 00000000 + 0x6cbc0cab, 0xcdb2dfc2 }, { 0xfef43035, 0x42b77f6e, 0xdbb3679, 0xa0a24be4, 0x551d1963, - 0x9833faa0, 0x652d01b4, 00000000 + 0x9833faa0, 0x652d01b4 }, { 0x72d3d8a5, 0xccc13fbf, 0x747790f3, 0xdff3fc04, 0xe2742ea9, - 0x6df6ad9a, 0x712b229b, 00000000 + 0x6df6ad9a, 0x712b229b } }, { { 0x9329136e, 0xd7ed148a, 0x6554ffba, 0xbc7dc793, 0x1a0aaad9, - 0x9b7faca7, 0x4fd97d21, 00000000 + 0x9b7faca7, 0x4fd97d21 }, { 0x72ad558d, 0x2a27a5d8, 0x84688773, 0x5101c91d, 0xb2031111, - 0xa77c9f6a, 0x63cbc1c1, 00000000 + 0xa77c9f6a, 0x63cbc1c1 }, { 0x3858866f, 0x81a472cf, 0xc36d9220, 0x70edaf01, 0x2bbf216f, - 0x9a0f85e4, 0xa7cafe81, 00000000 + 0x9a0f85e4, 0xa7cafe81 } }, { { 0x38a0338a, 0xdb9991ae, 0x50b16e08, 0xefcac845, 0xadecc24b, - 0x166615ee, 0xd56c058a, 00000000 + 0x166615ee, 0xd56c058a }, { 0xbc7ba0d2, 0xf594c1de, 0x5d5659b7, 0x3433e693, 0xa084be13, - 0x582ef150, 0xdc8c91d2, 00000000 + 0x582ef150, 0xdc8c91d2 }, { 0x4138892f, 0xa898c3fe, 0x9ff5f029, 0x80b9e4e, 0x8fc02946, - 0x1c768044, 0x68701504, 00000000 + 0x1c768044, 0x68701504 } }, { { 0x32381025, 0x90a85bb1, 0xc8feaca6, 0x812b446b, 0xd477017d, - 0x90b19b60, 0xe7142a3b, 00000000 + 0x90b19b60, 0xe7142a3b }, { 0x59f9450d, 0x66f6b4a5, 0xbfb6ec8e, 0x272aeaf, 0x2bc1b71a, - 0x6b5a756b, 0xe27daab9, 00000000 + 0x6b5a756b, 0xe27daab9 }, { 0x31376547, 0xdf9ea516, 0x2dc4000f, 0x28ea227f, 0x57141158, - 0x98ded029, 0x4b6c77c2, 00000000 + 0x98ded029, 0x4b6c77c2 } }, { { 0xc7adc93d, 0xd7e73eb0, 0x20a09e5c, 0x8e21e53, 0x5c9013dd, - 0x496c1f4a, 0xb778d0b, 00000000 + 0x496c1f4a, 0xb778d0b }, { 0x6bc0ab0d, 0x1ba5e274, 0xd327f1b, 0x85b296f6, 0xb4e8f9c5, - 0xcc9531a5, 0xb4a716c5, 00000000 + 0xcc9531a5, 0xb4a716c5 }, { 0x2d63f93a, 0xc8e4fc62, 0x3400b18, 0xb8725b4f, 0xcb343578, - 0xe25c81d7, 0xc2f396c4, 00000000 + 0xe25c81d7, 0xc2f396c4 } }, { { 0xfcf929dd, 0xd5f064fb, 0xa76f46a1, 0x6e5455a1, 0xa33224f2, - 0x9d1a156c, 0xa752d561, 00000000 + 0x9d1a156c, 0xa752d561 }, { 0x2a775145, 0x4b990413, 0xeca9dffb, 0x31978dce, 0xa42b7edc, - 0xf1e9173, 0x84dbdfb9, 00000000 + 0xf1e9173, 0x84dbdfb9 }, { 0x681e80c7, 0x24d1d0b0, 0xd670fbdc, 0x413cbe92, 0x15567384, - 0x774e36da, 0x7a06bda, 00000000 + 0x774e36da, 0x7a06bda } }, { { 0x8c78f349, 0x9ea9c575, 0x24a76c9c, 0x7965fe0f, 0xcc98512b, - 0x112aeb57, 0x99922763, 00000000 + 0x112aeb57, 0x99922763 }, { 0x593144ea, 0xa4daf0e7, 0xad0947b0, 0x92363569, 0x28df59ff, - 0x60e0e4c4, 0x88875a5c, 00000000 + 0x60e0e4c4, 0x88875a5c }, { 0xf5d96350, 0x72c9bcf, 0x6febc8f1, 0x63498c4a, 0xc1ccf27, - 0xb6dbb40d, 0x7eba7744, 00000000 + 0xb6dbb40d, 0x7eba7744 } }, { { 0xd0e1d008, 0x8a71c3ca, 0x9754778b, 0x773e505b, 0xedb4e3b0, - 0x3710e7d9, 0x103e69b0, 00000000 + 0x3710e7d9, 0x103e69b0 }, { 0xa9050aa7, 0x5ce6e7f3, 0x38bc86aa, 0x79d182db, 0x5214c79d, - 0xb3254451, 0x37fb7937, 00000000 + 0xb3254451, 0x37fb7937 }, { 0x50b30c4d, 0x319970c4, 0x4b277238, 0x893dddb7, 0x7445b344, - 0xa7903beb, 0x7caccbff, 00000000 + 0xa7903beb, 0x7caccbff } }, { { 0x60482857, 0xaf817252, 0xf2c3d365, 0x91fb2e4e, 0x2712aa5d, - 0x22a2fec3, 0x9f722753, 00000000 + 0x22a2fec3, 0x9f722753 }, { 0xa6c3cd5c, 0x316b42b2, 0x9ad1eee6, 0xec84b7ef, 0x7db33c5a, - 0xff4461f, 0xdae587e4, 00000000 + 0xff4461f, 0xdae587e4 }, { 0x9019fba0, 0xabb63aa3, 0xac0b0a9f, 0xf17d6e92, 0x53f62f61, - 0xd82f7ba4, 0xbae523bc, 00000000 + 0xd82f7ba4, 0xbae523bc } }, { { 0x35ed75a4, 0xd1ffd49d, 0xe8429a0c, 0x2fc66dbf, 0xed47ea42, - 0xba436774, 0x4f46457, 00000000 + 0xba436774, 0x4f46457 }, { 0xab7047d7, 0xf9502598, 0x59fe0a, 0xd66e0461, 0xf3a6db6b, - 0x3f7c2be7, 0x2b10f55a, 00000000 + 0x3f7c2be7, 0x2b10f55a }, { 0xfbecfba, 0xd3c82bc9, 0xb80602a4, 0x9bfbe212, 0x27bd6885, - 0xd055698d, 0x7561bcbc, 00000000 + 0xd055698d, 0x7561bcbc } }, { { 0xd2604944, 0x434a0954, 0x3163f63, 0xbf089f42, 0xf11db97f, - 0x434a4b87, 0xa3b77d5f, 00000000 + 0x434a4b87, 0xa3b77d5f }, { 0x1faf732f, 0x9218f6dc, 0x664218a1, 0x481c14a4, 0xd040b3b1, - 0x9d7965ef, 0xbd888981, 00000000 + 0x9d7965ef, 0xbd888981 }, { 0x9df5bb78, 0xa3ca11f7, 0x8e23ffd7, 0xb1d14be1, 0xba567f72, - 0xd44a3040, 0xe8c82ba7, 00000000 + 0xd44a3040, 0xe8c82ba7 } }, { { 0x11d12f7c, 0x2bd3ac0c, 0x3557e5ba, 0x7d3d2104, 0xb588613d, - 0xd83856c3, 0xb9b29c33, 00000000 + 0xd83856c3, 0xb9b29c33 }, { 0x8781a6d7, 0xaca41c22, 0x22c8ce02, 0xf104d0aa, 0x4d52cc6, - 0xe04c8d1f, 0x4098c40c, 00000000 + 0xe04c8d1f, 0x4098c40c }, { 0x8ad58af0, 0x39865f01, 0x7ad51f2, 0xaec87e9e, 0x94095b00, - 0xcfc83115, 0xe310ce86, 00000000 + 0xcfc83115, 0xe310ce86 } }, { { 0xb27ac51, 0x5ade386c, 0xf23feb0f, 0x84dd4891, 0xdfb518cf, - 0xf0b7f82b, 0x7dcb42df, 00000000 + 0xf0b7f82b, 0x7dcb42df }, { 0x6911dce6, 0x457766f, 0xf60e7fad, 0x9677b1eb, 0xc836c72f, - 0x9738839e, 0xf66f967b, 00000000 + 0x9738839e, 0xf66f967b }, { 0xec755068, 0x137d8192, 0xaa51c62a, 0xb7a68b42, 0xcb85365d, - 0x2fc34b8f, 0xb2092659, 00000000 + 0x2fc34b8f, 0xb2092659 } }, { { 0x1f312037, 0xdc47de74, 0x44303e02, 0xda919ff2, 0x91fbc58, - 0x33ca8a5c, 0xea66b569, 00000000 + 0x33ca8a5c, 0xea66b569 }, { 0x5bbee4d, 0xf937f45, 0xf8aced09, 0x68012800, 0xf1ad6f28, - 0x79b7acc1, 0x1fce125f, 00000000 + 0x79b7acc1, 0x1fce125f }, { 0x8af33bd2, 0xb7d34fe9, 0x52a46e3, 0x4d8dbd3, 0xe086f93f, - 0xbecbfdf4, 0x961c9206, 00000000 + 0xbecbfdf4, 0x961c9206 } }, { { 0xa4dbcf52, 0x4f5fd1f7, 0xfb2b1350, 0x3272186e, 0x892fcf5, - 0x1e2dac98, 0x6ebffa63, 00000000 + 0x1e2dac98, 0x6ebffa63 }, { 0xed167d6e, 0x5b9904b2, 0x98f8bd12, 0x1f28311f, 0x9477230e, - 0xc268dbb7, 0x15306750, 00000000 + 0xc268dbb7, 0x15306750 }, { 0xdc637487, 0x68e2806a, 0x27d39989, 0x3a9cfd55, 0x1173c78e, - 0x80a0383a, 0xc2c626fe, 00000000 + 0x80a0383a, 0xc2c626fe } } }, @@ -14643,211 +14643,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x77bb3ec, 0x1444417b, 0x50aee4f0, 0xb3a526bd, 0xdf7afefa, - 0xece1dadb, 0x27199908, 00000000 + 0xece1dadb, 0x27199908 }, { 0x27c2900b, 0x70b754b2, 0x7c6f2ceb, 0x40a5f023, 0xc662ce6, - 0xf603173d, 0x130cc31e, 00000000 + 0xf603173d, 0x130cc31e }, { 0x4fee268d, 0xcc1bff20, 0x9708485c, 0x890b0190, 0x4b82f29f, - 0x76081ab0, 0xe97c0c96, 00000000 + 0x76081ab0, 0xe97c0c96 } }, { { 0x6ef22281, 0x7df74be1, 0xb4713726, 0x5445e87c, 0x112e4765, - 0x28725a0, 0x436591e0, 00000000 + 0x28725a0, 0x436591e0 }, { 0xc078a4b4, 0x922d21fb, 0xe8b4eb4d, 0x76533ce4, 0xcb8185f4, - 0xf8c042b8, 0xbe5a5b1a, 00000000 + 0xf8c042b8, 0xbe5a5b1a }, { 0xdb7a2050, 0x7eadae1b, 0x69d22262, 0x116de8d2, 0x3523bd28, - 0x46b20a45, 0xc46d8197, 00000000 + 0x46b20a45, 0xc46d8197 } }, { { 0xb1eceb4d, 0xcd80979c, 0xd60937f3, 0x1340e700, 0x16a3e4f4, - 0xe2032323, 0x5362eec, 00000000 + 0xe2032323, 0x5362eec }, { 0xa832e7e5, 0xffe14dc2, 0x9ebab2e4, 0x61fe82ab, 0x7ecbe27d, - 0xb4eb10ce, 0x5c925b9c, 00000000 + 0xb4eb10ce, 0x5c925b9c }, { 0x7eca9dcc, 0x54c9374e, 0x23592027, 0xe8fd44e4, 0x80b09a43, - 0x37cb20b8, 0x83d35d16, 00000000 + 0x37cb20b8, 0x83d35d16 } }, { { 0x2dbff1c8, 0xa06d0c32, 0xffa331b2, 0x24e0385b, 0xb26cd99e, - 0x879f8acc, 0x59410b32, 00000000 + 0x879f8acc, 0x59410b32 }, { 0x8abc73c9, 0x3c82d348, 0xf193786e, 0xb363d327, 0x12ea889d, - 0xdb2e4573, 0xed1551d8, 00000000 + 0xdb2e4573, 0xed1551d8 }, { 0x869a1479, 0xcd76044f, 0x554028fd, 0x1680718a, 0xa8ea6782, - 0xbfcb0a85, 0xb116b7fc, 00000000 + 0xbfcb0a85, 0xb116b7fc } }, { { 0xe08c7869, 0x476d7153, 0x5550b822, 0x6da48e54, 0x6bba26dd, - 0xfb1045d2, 0x6cf3cf72, 00000000 + 0xfb1045d2, 0x6cf3cf72 }, { 0xf145b969, 0x407859fd, 0xc7ef0b29, 0x9d037970, 0xf49c321d, - 0x525d9b47, 0x93e5ce61, 00000000 + 0x525d9b47, 0x93e5ce61 }, { 0x34395d2a, 0x703a6c, 0x4d6bc5d4, 0x967579f9, 0xd563a573, - 0xece831b3, 0xd8d8a6e8, 00000000 + 0xece831b3, 0xd8d8a6e8 } }, { { 0xcc47f59e, 0x4ed80ca3, 0x8510074e, 0x8ee300a3, 0xdc5422c0, - 0x8ecb2219, 0x163d2be4, 00000000 + 0x8ecb2219, 0x163d2be4 }, { 0xf7169ed9, 0x41515a33, 0xf9700f8d, 0x8e756b3, 0xf42a2ee8, - 0x74896e4, 0x59c77392, 00000000 + 0x74896e4, 0x59c77392 }, { 0x3e4b716c, 0xd9204ce1, 0xa718864f, 0x821f2986, 0x1ce1ef76, - 0x2cc0bf34, 0x26d41551, 00000000 + 0x2cc0bf34, 0x26d41551 } }, { { 0x2b66c4b6, 0x5ad96b15, 0xc426d4c6, 0x49d849b8, 0x469708ed, - 0x69b688c2, 0x5de989c8, 00000000 + 0x69b688c2, 0x5de989c8 }, { 0x4d38eeb, 0xc126e336, 0xb5018c23, 0x3c41a722, 0xbd4dd3c3, - 0xee71c28, 0xb8c3980d, 00000000 + 0xee71c28, 0xb8c3980d }, { 0xc9119fa4, 0x14c8275e, 0x97f706eb, 0x65d6dd00, 0x497b1326, - 0x1b7d0cd5, 0xa82f82fc, 00000000 + 0x1b7d0cd5, 0xa82f82fc } }, { { 0xf794ee8b, 0x276ecd11, 0xa5b22b3d, 0xcb5d482b, 0x4915402d, - 0x34b6064b, 0x6b86b185, 00000000 + 0x34b6064b, 0x6b86b185 }, { 0x27620b13, 0x6fbc30fd, 0x45fe0ab0, 0xa0bc6353, 0x1f6f1cd4, - 0xcbf9e288, 0xc9e8045a, 00000000 + 0xcbf9e288, 0xc9e8045a }, { 0x3fbaa3bb, 0xd33d9c31, 0x30a8b449, 0xd0eac5ab, 0x3c4f5e8b, - 0x73c9021c, 0xef5df964, 00000000 + 0x73c9021c, 0xef5df964 } }, { { 0x737f8f86, 0xb5530bf5, 0xaaccb025, 0x43f446da, 0x128dbd57, - 0x918a81d1, 0x2c354e22, 00000000 + 0x918a81d1, 0x2c354e22 }, { 0xc34adf11, 0x57d10c03, 0xf5965219, 0xa33db9ee, 0x58dbcda0, - 0x3860eb1f, 0x90d2e71a, 00000000 + 0x3860eb1f, 0x90d2e71a }, { 0xae67dc4d, 0xa1e48ffb, 0x3234923d, 0x78dbbc2f, 0xa84ebc4c, - 0x48e56df8, 0xd08f3573, 00000000 + 0x48e56df8, 0xd08f3573 } }, { { 0xc7e836e8, 0x9ecadce5, 0x6a200d3a, 0xbf3b17b1, 0x50c4a57a, - 0x133bc37b, 0xc4f89f16, 00000000 + 0x133bc37b, 0xc4f89f16 }, { 0xaaf41c2e, 0x27346f65, 0x3c3cd881, 0xad8edeae, 0xf7fc6cac, - 0xc280dc18, 0x538b03e6, 00000000 + 0xc280dc18, 0x538b03e6 }, { 0x1863ccd5, 0xca4193b2, 0x5dda5285, 0xd92b4bf8, 0xe4480fd7, - 0x2ecc3ee5, 0x4d6acafe, 00000000 + 0x2ecc3ee5, 0x4d6acafe } }, { { 0x5a638e96, 0xb4873df, 0xdc6e2cb8, 0xaefec350, 0x190a5520, - 0x48934b8b, 0x752843c8, 00000000 + 0x48934b8b, 0x752843c8 }, { 0xf36e09c7, 0xa1f351a2, 0xafdc5582, 0x51459e92, 0xbaf6ea5e, - 0x45927ec4, 0x8027fbf, 00000000 + 0x45927ec4, 0x8027fbf }, { 0x6ff95af6, 0x82ae75aa, 0xb4c87c21, 0x452b0f11, 0xb9741481, - 0xe4595af0, 0xae9a44e1, 00000000 + 0xe4595af0, 0xae9a44e1 } }, { { 0xeed77c6d, 0x63302fbf, 0x155dcaf3, 0xf2359a0, 0x32ef7672, - 0x34a32906, 0x7787a988, 00000000 + 0x34a32906, 0x7787a988 }, { 0x8e28e304, 0xb5c18c66, 0xb5b57511, 0xc62ed431, 0xf78b503e, - 0x623b2080, 0xd29481db, 00000000 + 0x623b2080, 0xd29481db }, { 0x2f26628b, 0x655f64a8, 0x68926286, 0x2a74562c, 0x8f351dcd, - 0x558611d, 0x1c81b5dd, 00000000 + 0x558611d, 0x1c81b5dd } }, { { 0x2ab23d62, 0x2977d035, 0x7dc8ff6b, 0x644db668, 0xa165669b, - 0x20ac439, 0xf4518624, 00000000 + 0x20ac439, 0xf4518624 }, { 0xc05b60cd, 0xde96e21, 0x1a9321ee, 0xeddf473d, 0xbe2e3ace, - 0x82747787, 0x3bd22871, 00000000 + 0x82747787, 0x3bd22871 }, { 0x7f9a2eab, 0xebca6949, 0x8e8abddd, 0x765d0594, 0xda6614ba, - 0x67324aae, 0x40fada3b, 00000000 + 0x67324aae, 0x40fada3b } }, { { 0x1b81b9ed, 0xa7adecb1, 0x55553160, 0xcc64fe2f, 0xdb0a5e40, - 0x70b100df, 0x3f2ea27a, 00000000 + 0x70b100df, 0x3f2ea27a }, { 0x1b6b4be9, 0x699af2d, 0xcd26e3cc, 0x23fd9d7c, 0x2aa738e1, - 0x3fde2d7d, 0x887e1990, 00000000 + 0x3fde2d7d, 0x887e1990 }, { 0xea0ffeb0, 0x27a67160, 0x7b41b27c, 0x997eb81a, 0x9f457002, - 0x3e9ffeb1, 0x1e86722d, 00000000 + 0x3e9ffeb1, 0x1e86722d } }, { { 0x526e25f5, 0x3609f647, 0x2ffe9880, 0x6129ab0f, 0x931d7acb, - 0xf985ddc3, 0x7551cb30, 00000000 + 0xf985ddc3, 0x7551cb30 }, { 0x3ce88d6, 0x1a772f4c, 0x81feee75, 0x8d82e2e, 0xd367d1bb, - 0xcded3383, 0x1f3df7d2, 00000000 + 0xcded3383, 0x1f3df7d2 }, { 0x33a2c663, 0xc7257d8, 0x9d806382, 0xd5e4f986, 0xdd09cb52, - 0xe45abaae, 0x5b4425b7, 00000000 + 0xe45abaae, 0x5b4425b7 } } }, @@ -14855,211 +14855,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x89805aaf, 0x4dd64090, 0x7a7b7c00, 0x6ba24761, 0xf6861d73, - 0xe12d8542, 0x8a9fb69d, 00000000 + 0xe12d8542, 0x8a9fb69d }, { 0x2a7a9a8f, 0x612ad6cb, 0x7a4a7d5a, 0x263816ee, 0x44d7c206, - 0x6e24a396, 0xfd42ed8f, 00000000 + 0x6e24a396, 0xfd42ed8f }, { 0x2edab76e, 0x70b12441, 0xe3780069, 0xaf95e4f3, 0xbf6f21f8, - 0x2c7dae9c, 0xc864f80a, 00000000 + 0x2c7dae9c, 0xc864f80a } }, { { 0x809c210e, 0x9484342d, 0x9dbf23b0, 0x71c9530a, 0x3e331409, - 0x9bdae5a3, 0xf21f8c3d, 00000000 + 0x9bdae5a3, 0xf21f8c3d }, { 0xac4b0744, 0x5b7cc9bd, 0x5ef9da5e, 0xc781f37c, 0x46acf808, - 0x4d96e601, 0x4ac60d50, 00000000 + 0x4d96e601, 0x4ac60d50 }, { 0x8a6f2002, 0xa6e77301, 0xf908cb7f, 0x428a5944, 0x1440e962, - 0x22b18434, 0xe740da83, 00000000 + 0x22b18434, 0xe740da83 } }, { { 0xa91709c8, 0x4b06c3eb, 0xed0f2574, 0x23340701, 0x4685b45e, - 0xf49f36fc, 0x9507a622, 00000000 + 0xf49f36fc, 0x9507a622 }, { 0x1c057bd3, 0xf5ca209d, 0xb4f5b21c, 0xa3ab8522, 0xc630c504, - 0xbe996b3f, 0xdfb7993e, 00000000 + 0xbe996b3f, 0xdfb7993e }, { 0x17afe26c, 0x3e75f4c5, 0x2e6d96ad, 0x2e616f38, 0x301f6cda, - 0x6ff86f01, 0x7f54ec4a, 00000000 + 0x6ff86f01, 0x7f54ec4a } }, { { 0x2033092e, 0x14c8de7, 0xd318179d, 0x4a23499a, 0x5c2a1ab8, - 0xd63135d2, 0x8fd9d98, 00000000 + 0xd63135d2, 0x8fd9d98 }, { 0xc423c3b4, 0xc39fef2f, 0xc6da60f4, 0xf152e58a, 0x541fcae3, - 0x7d794d5a, 0x5c607c21, 00000000 + 0x7d794d5a, 0x5c607c21 }, { 0xa433a56e, 0x5bd2606b, 0xbb63c92e, 0x9b5a1b4c, 0xb54af547, - 0xbfe2c03a, 0x21bab7b6, 00000000 + 0xbfe2c03a, 0x21bab7b6 } }, { { 0xf3b82457, 0x5ecf01d7, 0x99cc7602, 0xac4fd00a, 0x7f01cf9d, - 0x25dc9aa3, 0x7c59f230, 00000000 + 0x25dc9aa3, 0x7c59f230 }, { 0xffc5ca7e, 0x499e528, 0xd3d329f0, 0xb87bac39, 0x6646d990, - 0x33508dec, 0xff72200, 00000000 + 0x33508dec, 0xff72200 }, { 0xc18ad2a9, 0x118e84b0, 0xa4ac4bd0, 0xbe3b71a9, 0x6ab87630, - 0x2215dbec, 0xec425707, 00000000 + 0x2215dbec, 0xec425707 } }, { { 0x2951068c, 0x35923248, 0x535d3438, 0x3c308e5c, 0x6e184d7a, - 0x75e02881, 0x22e5d41c, 00000000 + 0x75e02881, 0x22e5d41c }, { 0x79ca0316, 0x9e5cbc9a, 0x40cc0116, 0x99ab51b2, 0x31717aa9, - 0xbb5ca12d, 0x8d5c8faa, 00000000 + 0xbb5ca12d, 0x8d5c8faa }, { 0xafd3e98e, 0x5bd4fc62, 0xc4bac38b, 0x48814c96, 0xf4694537, - 0xfa266636, 0x1afca8da, 00000000 + 0xfa266636, 0x1afca8da } }, { { 0xf9b3770, 0xbfd8ec88, 0xa7780c5e, 0x4446a831, 0xdf1d898f, - 0x5c188dc6, 0x2a2a0d20, 00000000 + 0x5c188dc6, 0x2a2a0d20 }, { 0xc6239340, 0xd2980a66, 0xaecda1c6, 0x996d7b6c, 0xc529bbfc, - 0xd06accf4, 0xf4f3cba2, 00000000 + 0xd06accf4, 0xf4f3cba2 }, { 0x4cf24c45, 0xb2cbda7b, 0x915da1b4, 0x566c57ba, 0x464c7279, - 0x422e2c57, 0xd797fd44, 00000000 + 0x422e2c57, 0xd797fd44 } }, { { 0x79cc61f, 0x2e9cf58, 0xdc8b08fa, 0x5d97bb38, 0x136a4225, - 0x5986446a, 0xe96f172f, 00000000 + 0x5986446a, 0xe96f172f }, { 0xce458854, 0x9da5fbea, 0x48ba6b7c, 0x8fefb7d7, 0x1dfde83d, - 0x629c11c3, 0x60fb03c7, 00000000 + 0x629c11c3, 0x60fb03c7 }, { 0xe47a7020, 0xc4ffb27c, 0x4bea119, 0x113dd24f, 0xcdc7fe10, - 0x8b515cc6, 0xe26a687f, 00000000 + 0x8b515cc6, 0xe26a687f } }, { { 0x64125562, 0x76afc8ea, 0x8036ec7, 0xb2136096, 0xa8ebe6c9, - 0xedb0b4f0, 0x478dabcd, 00000000 + 0xedb0b4f0, 0x478dabcd }, { 0x77ad33ae, 0x42802be3, 0xd6fe6419, 0xbd9cfb1d, 0x2d16dfd3, - 0x820ea1ed, 0x3dabc1fd, 00000000 + 0x820ea1ed, 0x3dabc1fd }, { 0x93896acf, 0x970285c7, 0x855201, 0x8972662, 0x3c108193, - 0xa7d5af08, 0xd8552932, 00000000 + 0xa7d5af08, 0xd8552932 } }, { { 0x82aaf01a, 0xe2872c5e, 0x52955194, 0xe241bc31, 0x614e5eee, - 0x73ce4a6a, 0xf8f2fa82, 00000000 + 0x73ce4a6a, 0xf8f2fa82 }, { 0x888d0887, 0x5ee79417, 0x9203a8ed, 0x6657dc3c, 0xaee0227, - 0x6bea0c76, 0xe8436cad, 00000000 + 0x6bea0c76, 0xe8436cad }, { 0xade9ec0b, 0x612e1ec1, 0x1f6763c4, 0xae26c664, 0x34f6dd10, - 0xb1534886, 0xa4fc956b, 00000000 + 0xb1534886, 0xa4fc956b } }, { { 0x587854eb, 0xd6a69bfd, 0xe2a2bcdd, 0xfb6ab94d, 0xd203506f, - 0x9148e2fc, 0x95ae9c78, 00000000 + 0x9148e2fc, 0x95ae9c78 }, { 0x4cf9c1a4, 0x332999ff, 0x19eef22e, 0x948240e1, 0x1067243a, - 0xfe904529, 0x79f27072, 00000000 + 0xfe904529, 0x79f27072 }, { 0x3fc6d77d, 0x65467839, 0x401f65eb, 0x4e460ae9, 0xd3968484, - 0x95333a15, 0x8e5516e, 00000000 + 0x95333a15, 0x8e5516e } }, { { 0x9abfb15a, 0x417c508d, 0xd3f080b9, 0x29611984, 0x7a406ad4, - 0x8a46a932, 0xc94150cd, 00000000 + 0x8a46a932, 0xc94150cd }, { 0x18e3293a, 0x93b8d604, 0x122c7adf, 0xf43f970b, 0xb3278aa8, - 0xbe8ad68e, 0xa66912d9, 00000000 + 0xbe8ad68e, 0xa66912d9 }, { 0xc772423, 0x3a576af9, 0x84430221, 0x220aa4a5, 0xb1c7fb80, - 0x5bf8e37a, 0xed72ee5d, 00000000 + 0x5bf8e37a, 0xed72ee5d } }, { { 0x47c81a4b, 0x24816fdf, 0xb548f8af, 0xc658909c, 0x462853c3, - 0x17147d42, 0x6fece3e, 00000000 + 0x17147d42, 0x6fece3e }, { 0x2b134f06, 0x988b2598, 0x2023b803, 0xc8dcd7ab, 0xffe4f9c8, - 0xf83586f6, 0xe5df17a3, 00000000 + 0xf83586f6, 0xe5df17a3 }, { 0xdfd90c27, 0x148ec85d, 0xab07491d, 0xf7f5983a, 0x627c7976, - 0x23babd78, 0xe5fd7ae3, 00000000 + 0x23babd78, 0xe5fd7ae3 } }, { { 0x3d7ffaaa, 0xb829cd3, 0x79af5909, 0xe1f701c0, 0x812b956c, - 0x350d9eeb, 0xc4135415, 00000000 + 0x350d9eeb, 0xc4135415 }, { 0xe4fd05ab, 0x65cb31fd, 0xb9550621, 0x91194e5f, 0x9e970be, - 0xe6b6317c, 0x59bbf748, 00000000 + 0xe6b6317c, 0x59bbf748 }, { 0xfb1d4c01, 0xd0e2831c, 0x1f897c30, 0xac66ee5e, 0x23e5a6da, - 0xf941d91c, 0xe64d459, 00000000 + 0xf941d91c, 0xe64d459 } }, { { 0x56998f47, 0x3722f326, 0x85768575, 0x17cff868, 0x3f3cfb4d, - 0x17fac399, 0xe3bfe230, 00000000 + 0x17fac399, 0xe3bfe230 }, { 0xeb9a87d9, 0xcca5dc26, 0x447031ef, 0xbb6d3721, 0x139aa779, - 0xce8a8465, 0x1b239c4a, 00000000 + 0xce8a8465, 0x1b239c4a }, { 0xfa2e5614, 0xb6d5d16f, 0x7ec30db3, 0x64a7ed21, 0x33651053, - 0xb74fcf8b, 0x5ceec99, 00000000 + 0xb74fcf8b, 0x5ceec99 } } }, @@ -15067,211 +15067,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x70728caf, 0xb4b4e48f, 0x383006d2, 0xa1c615ea, 0x2cf1e0a0, - 0x7edb2f76, 0x330e8af8, 00000000 + 0x7edb2f76, 0x330e8af8 }, { 0x5a53901e, 0x973838e0, 0x4076d645, 0x33f6565e, 0x85ca6aee, - 0x322a9f42, 0x4365364a, 00000000 + 0x322a9f42, 0x4365364a }, { 0x86c83a6a, 0x98c3fb74, 0x2a85b79c, 0x54a96404, 0x90c924e9, - 0xa66aac3e, 0x206adac6, 00000000 + 0xa66aac3e, 0x206adac6 } }, { { 0xf3cc81a7, 0xd725943c, 0x78942897, 0xcf1d501b, 0xd2a0c881, - 0x141543ab, 0x21e2fd97, 00000000 + 0x141543ab, 0x21e2fd97 }, { 0x87a806b, 0x975ae286, 0x878300a, 0xa3f17678, 0xa2b58e57, - 0xad6b802a, 0x7bf5cd68, 00000000 + 0xad6b802a, 0x7bf5cd68 }, { 0xfdb6d217, 0x12182462, 0x7f3d8280, 0xfcfcb5c7, 0x1c0e1d55, - 0xc2bdf4d0, 0x9064b108, 00000000 + 0xc2bdf4d0, 0x9064b108 } }, { { 0xcac728af, 0x6e3a71e8, 0xd353eaaa, 0x543d941c, 0x915e19c9, - 0x4e40df26, 0x18252614, 00000000 + 0x4e40df26, 0x18252614 }, { 0xc0c33208, 0xb64f7e4f, 0xaf84057f, 0x2a429199, 0x4002fa22, - 0x6df8133d, 0xdb587e4, 00000000 + 0x6df8133d, 0xdb587e4 }, { 0x4b831904, 0xfc64ab88, 0x20916c80, 0xeeaf83a0, 0x1e1992e5, - 0x3312f2b6, 0xbe62fcc8, 00000000 + 0x3312f2b6, 0xbe62fcc8 } }, { { 0x8c4f7882, 0x9ebc27d5, 0xc455385c, 0x7443d991, 0x235826f3, - 0x56ab96cf, 0x502a5bf9, 00000000 + 0x56ab96cf, 0x502a5bf9 }, { 0x433332a3, 0x57117580, 0xaa5452e2, 0xe742b0eb, 0x4fee0a61, - 0x9cf6b7ce, 0x1b2dd53, 00000000 + 0x9cf6b7ce, 0x1b2dd53 }, { 0xfc91b26c, 0xadffe5cc, 0x8e4cef0a, 0xcdecc04d, 0xaa128a38, - 0x247d46c3, 0x2ba46bce, 00000000 + 0x247d46c3, 0x2ba46bce } }, { { 0x163f22eb, 0x646edc4c, 0xd5b1de79, 0xe3ccf688, 0x585a08ce, - 0x56f6bad8, 0xa8efd3c, 00000000 + 0x56f6bad8, 0xa8efd3c }, { 0xad052b97, 0xd1a84bfc, 0xe99be0d9, 0xfb6e1102, 0x9cdb3e44, - 0xe986bcb0, 0xbb68a4ba, 00000000 + 0xe986bcb0, 0xbb68a4ba }, { 0xbf2bc458, 0x6f6c994c, 0x54e0c224, 0x7099c44e, 0x8f6c2bb8, - 0xf0342e1a, 0x43246f08, 00000000 + 0xf0342e1a, 0x43246f08 } }, { { 0xd56615dd, 0x943c1ec0, 0x96116733, 0x24eeeaee, 0x7fc27e86, - 0x1095af2a, 0xb5da38e0, 00000000 + 0x1095af2a, 0xb5da38e0 }, { 0x12f3fe37, 0x3b6dcbeb, 0x54cacb3f, 0x4990a5ae, 0xdda3cd81, - 0xee627d1c, 0x6c0ece9, 00000000 + 0xee627d1c, 0x6c0ece9 }, { 0xa9ce66ac, 0xbcc2eed7, 0x832def14, 0x7cf75d91, 0x67f703ca, - 0x7c9fb61c, 0xea8eae92, 00000000 + 0x7c9fb61c, 0xea8eae92 } }, { { 0xdf39c0d, 0xf8c00b15, 0x1281addf, 0xb8a486a7, 0xc777ae43, - 0x2eff44c7, 0xcd4036cb, 00000000 + 0x2eff44c7, 0xcd4036cb }, { 0xd029d9e6, 0x3ed4014b, 0x995fea03, 0xf803f094, 0x5458bfec, - 0x4726e077, 0x212deb3, 00000000 + 0x4726e077, 0x212deb3 }, { 0xfb6140e4, 0x6e8481b3, 0x28c632ce, 0xf15f7e2b, 0x64531765, - 0x18cd8fe1, 0xf5843fbb, 00000000 + 0x18cd8fe1, 0xf5843fbb } }, { { 0x280ffd54, 0x8cdb00da, 0xff400512, 0xfa9c5572, 0x3690ec3a, - 0x9829b7a6, 0x51996e23, 00000000 + 0x9829b7a6, 0x51996e23 }, { 0xcd52f7d5, 0x651f6661, 0xa96fd622, 0x7a851b12, 0x5423020f, - 0xb5f378eb, 0x307382ab, 00000000 + 0xb5f378eb, 0x307382ab }, { 0x62bf530, 0x5ee6aeaf, 0xd1f24e1, 0x71e2e8fd, 0x7828add4, - 0x95bb9009, 0x7040b143, 00000000 + 0x95bb9009, 0x7040b143 } }, { { 0x8c73fd68, 0x10455eb0, 0xddb1b21b, 0x6e6dc77b, 0x5ad0a75e, - 0x8b06e0ef, 0x73547a44, 00000000 + 0x8b06e0ef, 0x73547a44 }, { 0x7addfefb, 0xee434f64, 0x740aab52, 0xfc8f399b, 0x13536680, - 0x38b5baf, 0xd6d08c64, 00000000 + 0x38b5baf, 0xd6d08c64 }, { 0xa05c67ae, 0x913ad2be, 0x17ff864d, 0x30125546, 0x9ccc067f, - 0x8ff4971d, 0xa90fb444, 00000000 + 0x8ff4971d, 0xa90fb444 } }, { { 0x866517a0, 0xd1ccb216, 0x3e90e69c, 0xb2cf8f07, 0x49aa0569, - 0xabf48594, 0x1ca7af3d, 00000000 + 0xabf48594, 0x1ca7af3d }, { 0x7a408e15, 0x3d73b21d, 0x762e679f, 0x83279f4d, 0x69b8e2df, - 0x8dca29c7, 0xd0b82461, 00000000 + 0x8dca29c7, 0xd0b82461 }, { 0xbdff9c92, 0x602b74bc, 0xd5c4096f, 0x7be4bc5b, 0x8acd3afe, - 0xeb626700, 0xe2fbb5be, 00000000 + 0xeb626700, 0xe2fbb5be } }, { { 0xf3258944, 0x990abc17, 0xdd9e0074, 0xb265e975, 0xf7b7f95, - 0xced54889, 0xba713c56, 00000000 + 0xced54889, 0xba713c56 }, { 0x9c51baf1, 0x68761cb, 0x6586a0bb, 0xc19a33, 0x3dbaed5a, 0x94f9929, - 0xa2dacc8e, 00000000 + 0xa2dacc8e }, { 0xa8762f05, 0x1a2cc0f8, 0x8a500f4c, 0x85dc74ff, 0x6dbb39cc, - 0xb38a516c, 0x992a8c34, 00000000 + 0xb38a516c, 0x992a8c34 } }, { { 0x9eb467b6, 0x796a520, 0xc6754190, 0x51c49a2a, 0x8e59f29a, - 0x58d92657, 0xd53643b7, 00000000 + 0x58d92657, 0xd53643b7 }, { 0xdfcbb284, 0xbff5cee7, 0xdb1c2880, 0x84d4abab, 0xdc7017f8, - 0xac80956, 0x11cb794f, 00000000 + 0xac80956, 0x11cb794f }, { 0x68ff7a9a, 0xe6bdf2d3, 0x4d508a0e, 0xf90169c4, 0xe268b36d, - 0x90cde351, 0xb2c7da0b, 00000000 + 0x90cde351, 0xb2c7da0b } }, { { 0xfeb063ce, 0x8bb4b1b3, 0x265bd7c5, 0x5e10417b, 0x3546ee83, - 0xa7991b84, 0xea1b650d, 00000000 + 0xa7991b84, 0xea1b650d }, { 0xb2a8f51a, 0x3c15e06a, 0x2052548b, 0x2c37da7d, 0xb5e53f74, - 0x5f1b7c08, 0xa544ec5f, 00000000 + 0x5f1b7c08, 0xa544ec5f }, { 0x94faf82c, 0xa39f2b40, 0xa107eac7, 0xb4be7967, 0x7450a203, - 0x62f8d7e1, 0xab60eae4, 00000000 + 0x62f8d7e1, 0xab60eae4 } }, { { 0xb6624b21, 0x3e8f72cb, 0xbccbf962, 0x732d45a4, 0x47f9bdae, - 0xd76b200c, 0xf4a6d060, 00000000 + 0xd76b200c, 0xf4a6d060 }, { 0x7784371, 0x1d83dea0, 0xf28f1a4d, 0x64eef964, 0xdac72f06, - 0xcabe9cc8, 0x5a230a67, 00000000 + 0xcabe9cc8, 0x5a230a67 }, { 0xa6540dbf, 0x1d3b4e62, 0x57bd8e93, 0xba1c9114, 0xb9ba48c7, - 0x3afdf53b, 0x9bfbc746, 00000000 + 0x3afdf53b, 0x9bfbc746 } }, { { 0xf0a40173, 0x4e9f6201, 0x483f693a, 0x2e06de4f, 0x3b1a29b3, - 0x2eae41b6, 0xaa23632e, 00000000 + 0x2eae41b6, 0xaa23632e }, { 0x9051b283, 0x22bb638e, 0x2cb1f726, 0xc55ff606, 0x75fa95e7, - 0xe75e981, 0x30aa77d8, 00000000 + 0xe75e981, 0x30aa77d8 }, { 0x87618cd0, 0x8bd32097, 0xc46d20f5, 0x290c97f8, 0xdd10d7d3, - 0xf84e0092, 0x58ab2aa3, 00000000 + 0xf84e0092, 0x58ab2aa3 } } }, @@ -15279,211 +15279,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x48fc14c0, 0xc65962be, 0x91b4c83a, 0x5ad1809, 0xa6dc3244, - 0x4f970dfa, 0x968791b2, 00000000 + 0x4f970dfa, 0x968791b2 }, { 0xba64ab51, 0x18d22a91, 0x27fb0105, 0xe0a912f2, 0x96673462, - 0x462a714f, 0x2fd35573, 00000000 + 0x462a714f, 0x2fd35573 }, { 0xb210c661, 0x89cce307, 0xcfa36b5f, 0x73eaca06, 0x871ac9f5, - 0x1a9ab47e, 0x7a4b690d, 00000000 + 0x1a9ab47e, 0x7a4b690d } }, { { 0xc7a35aef, 0x81c24b79, 0x2c2f3795, 0xfb405750, 0xcf269c73, - 0x2a3fd2e0, 0xfa0273b9, 00000000 + 0x2a3fd2e0, 0xfa0273b9 }, { 0xfdd6eae8, 0x3e69c7f6, 0x4641e5f7, 0x44b97fc2, 0xdcf54360, - 0xdb8d2c3e, 0x4e9531b4, 00000000 + 0xdb8d2c3e, 0x4e9531b4 }, { 0xa8dd866d, 0x416eaea0, 0x58becc21, 0xa979f864, 0xe3ea07ef, - 0xe255b5e, 0x62f1d62f, 00000000 + 0xe255b5e, 0x62f1d62f } }, { { 0xe2655326, 0x4f27f3ce, 0x6eb78c4f, 0xa4ab7d4e, 0xbb29b1c0, - 0x52a01f94, 0xf63d80ca, 00000000 + 0x52a01f94, 0xf63d80ca }, { 0x4a07f865, 0x3df6d7f9, 0x7f4f2f83, 0x284d4334, 0xc65caba7, - 0xbb31dab6, 0x917782c7, 00000000 + 0xbb31dab6, 0x917782c7 }, { 0x6d328dbd, 0x25ea35a2, 0x119fd808, 0x2bd8faa, 0xa99dded, - 0x2c781138, 0x9aaa147d, 00000000 + 0x2c781138, 0x9aaa147d } }, { { 0x73db4fbd, 0x9e4d58f, 0x7467eaf, 0x2b1bb759, 0x310c4ccb, - 0x34ba905f, 0x1d148865, 00000000 + 0x34ba905f, 0x1d148865 }, { 0x34f4d434, 0xd9550e81, 0x552131d0, 0x1e278b68, 0x47773285, - 0x672b3a04, 0xeaae8803, 00000000 + 0x672b3a04, 0xeaae8803 }, { 0xbdbcecd, 0xb8e08d1e, 0xed6609f3, 0xd163e10d, 0xfd22ef09, - 0x8a984792, 0x61f8e7ab, 00000000 + 0x8a984792, 0x61f8e7ab } }, { { 0x47796a20, 0x807cfcc4, 0x23ccd1ad, 0x926b5a7f, 0x352f55af, - 0x6c80642f, 0x9c489b9, 00000000 + 0x6c80642f, 0x9c489b9 }, { 0x1f263ebc, 0xeb99c0fb, 0x1b7ae81a, 0xabacddb9, 0x8fe8beed, - 0x52d5b960, 0xba374202, 00000000 + 0x52d5b960, 0xba374202 }, { 0x2890e1eb, 0x92b79b7d, 0x5c3b7fcd, 0x72877661, 0x9388713, - 0xdb575324, 0xc7dddf92, 00000000 + 0xdb575324, 0xc7dddf92 } }, { { 0x2b149e08, 0x4d029a02, 0x19f5a3af, 0x98e2246, 0xfecb5150, - 0xfb37e79d, 0x9dc3c475, 00000000 + 0xfb37e79d, 0x9dc3c475 }, { 0xb0509617, 0xf11582e5, 0xb5f30a9c, 0xa561d1cb, 0x87df0fa2, - 0x2383b27b, 0xf1f6f8f1, 00000000 + 0x2383b27b, 0xf1f6f8f1 }, { 0x4b80fc7b, 0x69695299, 0xe285f199, 0xe761e390, 0xa646918f, - 0x7e4eeea2, 0x9b45a1dc, 00000000 + 0x7e4eeea2, 0x9b45a1dc } }, { { 0x2721a251, 0xc6f8393b, 0x8661f224, 0x66c1c77b, 0x6fd3b76a, - 0xf44d2116, 0x5678b489, 00000000 + 0xf44d2116, 0x5678b489 }, { 0xc832cf7d, 0xa5611f2c, 0x24e52ae3, 0xe713c64, 0xb50205f3, - 0x53d24339, 0x3418ae9f, 00000000 + 0x53d24339, 0x3418ae9f }, { 0x91c9b190, 0x7f52062d, 0xfcb3eed2, 0x5a257af6, 0x4abad01a, - 0xb21a826c, 0x35a9fafc, 00000000 + 0xb21a826c, 0x35a9fafc } }, { { 0x60003669, 0x9d8d1e80, 0xd8affc9, 0xc8707a40, 0x175871bf, - 0xd5a5a75d, 0x47cda4da, 00000000 + 0xd5a5a75d, 0x47cda4da }, { 0xf6639b3e, 0x556839c3, 0x75bd717b, 0x9da8c2a4, 0x98785bcc, - 0xa23c14b4, 0x42c563ac, 00000000 + 0xa23c14b4, 0x42c563ac }, { 0xd299091d, 0x9dbb5319, 0x30195138, 0xb33f2203, 0x60ee1dd7, - 0x85684515, 0x7387ba39, 00000000 + 0x85684515, 0x7387ba39 } }, { { 0x5873c14f, 0x2b83d3e0, 0x1cf10387, 0x1923b64d, 0xd3a057e1, - 0x591feed7, 0xe292271f, 00000000 + 0x591feed7, 0xe292271f }, { 0x9394af58, 0x2f4f62f5, 0x4cee91d, 0x51ae9d5, 0x1cf01bb5, - 0x7a98c0f1, 0x9bbd00ea, 00000000 + 0x7a98c0f1, 0x9bbd00ea }, { 0xe45bec2a, 0xb9df440f, 0x33f4c8d3, 0x6fb858fd, 0x4394a5ed, - 0xa51c7056, 0x46d52b24, 00000000 + 0xa51c7056, 0x46d52b24 } }, { { 0xba001519, 0xc3cd2728, 0xc4e2b5d, 0x5d6a1076, 0xdda53ed9, - 0xa7ac57c7, 0xbd0742ac, 00000000 + 0xa7ac57c7, 0xbd0742ac }, { 0x4b033755, 0x15b2c6f5, 0x72d04898, 0xc7c74d9, 0x5af01ffa, - 0xb9470b93, 0x4174ea5e, 00000000 + 0xb9470b93, 0x4174ea5e }, { 0x9db13942, 0x828bb52c, 0x748aa6c8, 0x314496c9, 0x1e019848, - 0xcd84ab67, 0xf0750392, 00000000 + 0xcd84ab67, 0xf0750392 } }, { { 0xbbee38d3, 0xfd485ef7, 0xbec2e0ea, 0x808f3bcd, 0xa148cf05, - 0x7edadeb7, 0xab7a1ed0, 00000000 + 0x7edadeb7, 0xab7a1ed0 }, { 0x8693256f, 0xdb7c5577, 0xc783ec53, 0xbceb4fe9, 0xfd4da3ac, - 0xdc9d5d09, 0xa564e9ec, 00000000 + 0xdc9d5d09, 0xa564e9ec }, { 0xe86cf656, 0x89415744, 0x19f37b2f, 0x9d13de2d, 0xb5a57f57, - 0x11267395, 0xe1ee0d59, 00000000 + 0x11267395, 0xe1ee0d59 } }, { { 0x56db2458, 0x111efc19, 0x9ac049dd, 0x2c0dc057, 0x908d514e, - 0x18ebcc2a, 0x42986401, 00000000 + 0x18ebcc2a, 0x42986401 }, { 0x269e2f1f, 0xdcad6189, 0xf3301e01, 0xd9b665a5, 0x20c77270, - 0xe07b585b, 0xbf86c040, 00000000 + 0xe07b585b, 0xbf86c040 }, { 0xe71f3b8a, 0xda2e440b, 0xc763f3b1, 0xfbd569e4, 0xaea220bd, - 0x3101fed3, 0x8ab825a2, 00000000 + 0x3101fed3, 0x8ab825a2 } }, { { 0xe82f7695, 0x749ab26a, 0x8ff1c11a, 0x8b1b4e7a, 0x785d236a, - 0x24c55033, 0xe70ea68a, 00000000 + 0x24c55033, 0xe70ea68a }, { 0xcf79ea46, 0x6d0e00da, 0x449560f5, 0x6e1a3028, 0xa4059047, - 0xf7bd786d, 0xf22c4b44, 00000000 + 0xf7bd786d, 0xf22c4b44 }, { 0x6ddca00e, 0x5dcb30f0, 0x8c390b93, 0x4dac84ec, 0xcd5e259f, - 0x96cffa54, 0x8ee0af99, 00000000 + 0x96cffa54, 0x8ee0af99 } }, { { 0x730555d1, 0xd99ba214, 0x646ce519, 0xc8a43b0, 0xd0b81bfd, - 0x6859e2, 0xc659943e, 00000000 + 0x6859e2, 0xc659943e }, { 0xbf347f04, 0x80ed91dd, 0xf3007f57, 0x4b8b5624, 0x6b0f93cf, - 0xd54ec65a, 0x82d343a7, 00000000 + 0xd54ec65a, 0x82d343a7 }, { 0xf79c144c, 0xc269b804, 0xd59d3eae, 0xbd407fba, 0x5905f101, - 0x84db8bf3, 0xb5922c2f, 00000000 + 0x84db8bf3, 0xb5922c2f } }, { { 0xb618edb4, 0x611cb89c, 0x7a3f05af, 0x157d58c6, 0xff561d4f, - 0x33b73547, 0x79b62464, 00000000 + 0x33b73547, 0x79b62464 }, { 0x2969f2a5, 0x323760f8, 0xa7013904, 0x916662bb, 0x6aac41c9, - 0xd53bc35a, 0x93db1d08, 00000000 + 0xd53bc35a, 0x93db1d08 }, { 0xc83eb50a, 0x77538536, 0x8b7a818, 0xee33a813, 0xd2335628, - 0x2ee00bbb, 0xf929d722, 00000000 + 0x2ee00bbb, 0xf929d722 } } }, @@ -15491,211 +15491,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x211f69d6, 0x85c5964a, 0xecaa514d, 0xa78d38cb, 0xe0f3078c, - 0x160fc043, 0x43f94928, 00000000 + 0x160fc043, 0x43f94928 }, { 0xb5b5dfcd, 0xde11e71e, 0x17f525d4, 0xb1dffc, 0x5259b7fe, - 0xcf2dc162, 0x3a7083ae, 00000000 + 0xcf2dc162, 0x3a7083ae }, { 0xd3cbf1ab, 0x529f4c15, 0x5a3e6f10, 0xe19f4ec2, 0x81199fb4, - 0xa21e83ed, 0xc267dc, 00000000 + 0xa21e83ed, 0xc267dc } }, { { 0xd2ccfd2, 0x6136bd84, 0xf343a898, 0x231777f0, 0x277b1478, - 0x126c321d, 0x4ea078ae, 00000000 + 0x126c321d, 0x4ea078ae }, { 0x43d8377c, 0x37a45381, 0xd5a9b81c, 0x71be7a7a, 0xb6e50196, - 0xe6264f22, 0x4bbb1143, 00000000 + 0xe6264f22, 0x4bbb1143 }, { 0xeb469529, 0xfc658d14, 0x6b393953, 0x36d8b853, 0xc2314be8, - 0xa1aa30b7, 0xae330442, 00000000 + 0xa1aa30b7, 0xae330442 } }, { { 0xcfcb4113, 0x8556674, 0x4aef17b7, 0x93882eb0, 0x730abeb3, - 0x2fae2042, 0xc740e8bb, 00000000 + 0x2fae2042, 0xc740e8bb }, { 0x77122352, 0xe19db9c0, 0xf5a941bf, 0x8b41c135, 0x9d38da5e, - 0xaa26b4d0, 0x9359f78e, 00000000 + 0xaa26b4d0, 0x9359f78e }, { 0x65165402, 0x28a1272f, 0x9415c30c, 0x215837fd, 0x51bc5230, - 0x73c5533b, 0xd810693b, 00000000 + 0x73c5533b, 0xd810693b } }, { { 0x9c3ebd16, 0xb4e3557, 0xed84400, 0x5bc2c126, 0xdc667f52, - 0xfcd735f6, 0xf94b57c7, 00000000 + 0xfcd735f6, 0xf94b57c7 }, { 0x47b8c47c, 0xe195052c, 0x642e278c, 0xc3cbb5ab, 0x5c7eef02, - 0x584669a, 0x9e83a3ca, 00000000 + 0x584669a, 0x9e83a3ca }, { 0xb1a09d01, 0xf2c7d922, 0x2759fce4, 0x7fd9ef85, 0xbf22e28d, - 0x56374035, 0xc6b4e592, 00000000 + 0x56374035, 0xc6b4e592 } }, { { 0xc28a2db3, 0x58fbb0e2, 0x378f54e, 0x4c49ca6b, 0xc6cf133c, - 0xa0da98be, 0x6ef27ab5, 00000000 + 0xa0da98be, 0x6ef27ab5 }, { 0x2a32c7d0, 0xf074c7e5, 0x46d75a32, 0x24e9aeea, 0xab647adc, - 0xd422890d, 0x4afac3c, 00000000 + 0xd422890d, 0x4afac3c }, { 0xe812c126, 0xd7ea089, 0xd305332a, 0x48bbfa62, 0xd3746bf4, - 0x7b5d505d, 0xfdf8cb5d, 00000000 + 0x7b5d505d, 0xfdf8cb5d } }, { { 0xa0f626cb, 0x25fd35a9, 0x33dc4a5a, 0xcf7ed772, 0x5ebcbc33, - 0xd97cc64, 0x1b393308, 00000000 + 0xd97cc64, 0x1b393308 }, { 0x374b5f2b, 0x820eeae5, 0xe3b15b19, 0xba1cdbb9, 0xc453e792, - 0x8cc224d, 0xb77fd582, 00000000 + 0x8cc224d, 0xb77fd582 }, { 0xc34062e2, 0x4d69e5ec, 0x90ef5de7, 0x47a254a0, 0x4af4d89f, - 0x13e17420, 0x18c97557, 00000000 + 0x13e17420, 0x18c97557 } }, { { 0x4cd18ea6, 0xa48b2eb6, 0xab0f491e, 0x9a190a48, 0xb441653, - 0xe5851f3b, 0xd5d70a7c, 00000000 + 0xe5851f3b, 0xd5d70a7c }, { 0x5b241652, 0xe77e9f72, 0x141d2fef, 0xf92f22bd, 0x585fe1c6, - 0xeb734b82, 0x5aa6af2, 00000000 + 0xeb734b82, 0x5aa6af2 }, { 0x21c84598, 0x574fc06a, 0x57119acb, 0x168bb3c8, 0xe2e82d2b, - 0x8df6c83d, 0x6b267b93, 00000000 + 0x8df6c83d, 0x6b267b93 } }, { { 0xc0e370f3, 0xb172dcee, 0xcc546c02, 0xdf764308, 0x92147d43, - 0x1d4c1f9d, 0x1ee5b0ec, 00000000 + 0x1d4c1f9d, 0x1ee5b0ec }, { 0xbf0db495, 0xc1ff1cba, 0x74365feb, 0xc2eb4d93, 0x5b6c6645, - 0xb0dd74e, 0xc73d25c9, 00000000 + 0xb0dd74e, 0xc73d25c9 }, { 0x82de7287, 0xf198b487, 0x4d62ff78, 0xf9ea812, 0xb31612ae, - 0xa455fa2b, 0x59c33f94, 00000000 + 0xa455fa2b, 0x59c33f94 } }, { { 0x38a31856, 0xaa1814e6, 0x90077d63, 0x47b83c27, 0xe64ab89f, - 0x72cafdca, 0xe105df09, 00000000 + 0x72cafdca, 0xe105df09 }, { 0xc88d5e5b, 0xc03893f2, 0x6b324824, 0x704b8500, 0x5ea70088, - 0x2c8ba696, 0x13638e24, 00000000 + 0x2c8ba696, 0x13638e24 }, { 0x27adbba1, 0xafc856b2, 0x3a72580a, 0xd1c911bc, 0xa08310e3, - 0xec93c4ba, 0x7361f874, 00000000 + 0xec93c4ba, 0x7361f874 } }, { { 0x93abe3c0, 0xf13deb99, 0xd3640b37, 0x4ca6bdc8, 0x4333fe81, - 0x429f24fa, 0x84f32f02, 00000000 + 0x429f24fa, 0x84f32f02 }, { 0x556ca970, 0xf479c1be, 0xd9a5175c, 0x4e9d14ca, 0x940565ef, - 0xeda7859a, 0x76c58749, 00000000 + 0xeda7859a, 0x76c58749 }, { 0x3f088dbd, 0xd57d65d2, 0x46f5ac68, 0x860cc5b3, 0xd7d01118, - 0xbfb72e9, 0x77cff986, 00000000 + 0xbfb72e9, 0x77cff986 } }, { { 0xef30f6d4, 0x1b2ada1a, 0x61aab098, 0x74938e14, 0x67295e3d, - 0xf4c8a560, 0xb03c714a, 00000000 + 0xf4c8a560, 0xb03c714a }, { 0x210239f9, 0x52c69caf, 0x405589de, 0xacaac991, 0x2c037106, - 0x468fd1b9, 0xaea50eff, 00000000 + 0x468fd1b9, 0xaea50eff }, { 0xccb232c, 0xe0c8d513, 0x24d4f386, 0x1f7cb18b, 0x88df416a, - 0x9d709684, 0x689a854e, 00000000 + 0x9d709684, 0x689a854e } }, { { 0x243bc6ba, 0xeeabeacc, 0xafe81914, 0x2d229da0, 0xc5ed1ec6, - 0x5a1fa65, 0xec0362fb, 00000000 + 0x5a1fa65, 0xec0362fb }, { 0x709cefbc, 0xae6f8078, 0xf8e98988, 0x818f94b0, 0x13c43b78, - 0x7981ef01, 0x3c0adcc6, 00000000 + 0x7981ef01, 0x3c0adcc6 }, { 0xab576790, 0x896c441f, 0x3e771999, 0x46a42537, 0x6caaa0c0, - 0x1df6164d, 0xb72af963, 00000000 + 0x1df6164d, 0xb72af963 } }, { { 0xcd55b984, 0x0c61d1, 0xecd0346f, 0x9217b7c5, 0x670dc7bc, - 0x9da535f2, 0x31a4f103, 00000000 + 0x9da535f2, 0x31a4f103 }, { 0xa7d1eae0, 0x47950c7d, 0x90ae68e0, 0x53bb4ef5, 0x2110b782, - 0xe5862b3f, 0x75b226ef, 00000000 + 0xe5862b3f, 0x75b226ef }, { 0xdf3125df, 0x9adcd4cd, 0x7967ed24, 0x9dc44232, 0x2e3cc775, - 0x9a2cc1fc, 0x4d2781c6, 00000000 + 0x9a2cc1fc, 0x4d2781c6 } }, { { 0x9eb97266, 0x2a73d6ac, 0x6c60af9b, 0xfc19d88d, 0xa24c3ee7, - 0x425f8799, 0x8e166d2c, 00000000 + 0x425f8799, 0x8e166d2c }, { 0x49c4b898, 0xff249362, 0x4a849101, 0xc524b3ea, 0xedc1adca, - 0xef2c292, 0x87d65534, 00000000 + 0xef2c292, 0x87d65534 }, { 0xb2e292cc, 0xff10d571, 0x4d0d1f10, 0x42701e7c, 0xac7a8c80, - 0x866a2efd, 0xeb67a489, 00000000 + 0x866a2efd, 0xeb67a489 } }, { { 0x27f3ed38, 0x47053cfa, 0x2fc2c0ac, 0x13884267, 0x3a8ef09e, - 0xdd1c3b29, 0x22508172, 00000000 + 0xdd1c3b29, 0x22508172 }, { 0x11c1952e, 0x9c770d5c, 0xc02e2250, 0x50c4f391, 0x79e1bf95, - 0x1595a356, 0x73596a8b, 00000000 + 0x1595a356, 0x73596a8b }, { 0xd77a8c75, 0xef7a70c8, 0x3201effc, 0x3fedafa8, 0x6cbfda3d, - 0xb727b349, 0x729587f3, 00000000 + 0xb727b349, 0x729587f3 } } }, @@ -15703,211 +15703,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xba2ce415, 0x742ef328, 0x22f61bdd, 0x64a6b0d6, 0x37f17e4b, - 0x79bb8dca, 0x7382294e, 00000000 + 0x79bb8dca, 0x7382294e }, { 0xf93b5601, 0x3b44ce2c, 0x8f96a2ed, 0xcb7bcd7a, 0x6a787a38, - 0x7cb37132, 0xe289cafb, 00000000 + 0x7cb37132, 0xe289cafb }, { 0x792d8fc4, 0x9cc4befa, 0xd888ca75, 0x2a25c3b6, 0x4f26d4ee, - 0xa6acb0a8, 0xdc775841, 00000000 + 0xa6acb0a8, 0xdc775841 } }, { { 0x6dfee1a9, 0x47fa06de, 0xae7b0859, 0x3ce91626, 0xb1501576, - 0xbbfd7c52, 0xaab0ac, 00000000 + 0xbbfd7c52, 0xaab0ac }, { 0x57a24c97, 0x61fb48b5, 0x9cda5a1a, 0x455ad1c4, 0xf313e49a, - 0x4c8ce2b6, 0x373a84a5, 00000000 + 0x4c8ce2b6, 0x373a84a5 }, { 0x8ff49706, 0x1a710b2a, 0x72f35a6a, 0x3ed44fe1, 0x6cb8b8bb, - 0xb8a3c261, 0x5d4c4b14, 00000000 + 0xb8a3c261, 0x5d4c4b14 } }, { { 0xbf1076d3, 0x76e66f3f, 0xad8daaef, 0x18f84d30, 0x6d2adaec, - 0x6620e835, 0x814481f8, 00000000 + 0x6620e835, 0x814481f8 }, { 0x5fc4851c, 0xf5e81109, 0x3bc1436d, 0x9b6ea2c6, 0xb08a83b2, - 0xe0cd5f09, 0x88021216, 00000000 + 0xe0cd5f09, 0x88021216 }, { 0xacc0353, 0x9b741b88, 0x1666bc7a, 0x93c5e68a, 0xc34c2960, - 0x3ef87b68, 0x35a580bd, 00000000 + 0x3ef87b68, 0x35a580bd } }, { { 0x2e146b56, 0x2d1d2280, 0x73277bb7, 0xb7e64e68, 0xbb799668, - 0x4216847a, 0x7bcae52b, 00000000 + 0x4216847a, 0x7bcae52b }, { 0x58351998, 0x4a50c497, 0xd31df848, 0x6b9cdeaa, 0x7598c9af, - 0x6733837f, 0xa76509c3, 00000000 + 0x6733837f, 0xa76509c3 }, { 0xb64bf509, 0x6492e42b, 0x4dc28d88, 0xf9c98861, 0x18a2ea4f, - 0x9b61591e, 0x25dbc490, 00000000 + 0x9b61591e, 0x25dbc490 } }, { { 0x129d330f, 0x61655d3b, 0xadc03317, 0x6de392b3, 0x29067f1e, - 0x37e62fde, 0xac5fd50, 00000000 + 0x37e62fde, 0xac5fd50 }, { 0xd7441f9, 0x99008917, 0xba9113bd, 0xa01765d7, 0xe275f6a8, - 0x96907ab0, 0xc83d358c, 00000000 + 0x96907ab0, 0xc83d358c }, { 0x443e3a20, 0xbb10b02b, 0x75bb6724, 0x1d88a0c8, 0xa3afa643, - 0x4451a63b, 0x59548474, 00000000 + 0x4451a63b, 0x59548474 } }, { { 0x93d3c8e8, 0x285402f4, 0xaaf0f53b, 0x2722fb1f, 0xc3487ab3, - 0x5d5ef07a, 0x90b3537d, 00000000 + 0x5d5ef07a, 0x90b3537d }, { 0x8943492b, 0xae5e8464, 0x33d55930, 0x2124e53e, 0x9e55830f, - 0x2e297f26, 0xc6555539, 00000000 + 0x2e297f26, 0xc6555539 }, { 0xfa658d33, 0x3ed8f113, 0x1994995d, 0x863cf0f1, 0xee08e1fe, - 0x4a878f0e, 0xa148aae7, 00000000 + 0x4a878f0e, 0xa148aae7 } }, { { 0x3a4ed5ff, 0x57c2e7d7, 0x5fc116a0, 0xd55facc7, 0x181b1cea, - 0x6cc623cb, 0x5a83e0ac, 00000000 + 0x6cc623cb, 0x5a83e0ac }, { 0x7a53bd3d, 0x4099dcca, 0x76d96120, 0xc779507f, 0xe17af068, - 0x55633c04, 0x35c70470, 00000000 + 0x55633c04, 0x35c70470 }, { 0x98ab1d95, 0xe1b7e749, 0xa86d4a01, 0x670ae378, 0x5f4da00b, - 0x6793dbfd, 0xa50f8ef3, 00000000 + 0x6793dbfd, 0xa50f8ef3 } }, { { 0x829d4f52, 0x253bbc79, 0x7ec648bd, 0xf2102e17, 0x41f6b2d8, - 0x615b68d8, 0x4d5aa6b4, 00000000 + 0x615b68d8, 0x4d5aa6b4 }, { 0x3fde059e, 0x8b260039, 0xf704c97b, 0x50f0476d, 0x93a002e1, - 0xa3ef5965, 0x9ca17559, 00000000 + 0xa3ef5965, 0x9ca17559 }, { 0x51fd1574, 0x7242d776, 0x2d114b23, 0x6c01036a, 0x183dc49, - 0x763158ff, 0x808f9fa0, 00000000 + 0x763158ff, 0x808f9fa0 } }, { { 0xbebdccfa, 0x3ebe976c, 0x186a8df8, 0x6e8ac9d4, 0x850c940e, - 0x7cf471bd, 0x12de911, 00000000 + 0x7cf471bd, 0x12de911 }, { 0x917b498f, 0x9babdff9, 0x12a2b54d, 0xaf77c198, 0x80ae0426, - 0xb25d7614, 0x60e17f55, 00000000 + 0xb25d7614, 0x60e17f55 }, { 0x67b785e9, 0xfe75e14b, 0xf6c876c9, 0x873e86e1, 0x31199032, - 0x1ca39efb, 0xca945118, 00000000 + 0x1ca39efb, 0xca945118 } }, { { 0x425eaa1b, 0x9d152476, 0x88fbead6, 0xf0de00f9, 0xe05dda6a, - 0xf40c357, 0x99aa5087, 00000000 + 0xf40c357, 0x99aa5087 }, { 0xe1ccbbe6, 0x2c8ac1cb, 0x7ba98b7a, 0x2ff178ad, 0xc11a9226, - 0x5fb617d9, 0xa5e3739c, 00000000 + 0x5fb617d9, 0xa5e3739c }, { 0xee7748b1, 0xa3e88572, 0x3410f223, 0x7e05351c, 0x6b437aef, - 0x3044df60, 0x6610446f, 00000000 + 0x3044df60, 0x6610446f } }, { { 0x71834c97, 0xa4a0cd1e, 0xd61d7fc4, 0xcafaa571, 0x48e5395b, - 0x3f9e998a, 0xf680bf11, 00000000 + 0x3f9e998a, 0xf680bf11 }, { 0x79b6aeeb, 0x41e75d8f, 0x8ce95126, 0x424abb4a, 0xeb241cbc, - 0x4d0d963d, 0x8ef0dff2, 00000000 + 0x4d0d963d, 0x8ef0dff2 }, { 0xd2f837fb, 0xb71c472a, 0x7d8410d9, 0xe813cf5c, 0x41d5072a, - 0x5e9c3eed, 0xd3472577, 00000000 + 0x5e9c3eed, 0xd3472577 } }, { { 0xcbb2ff92, 0xe0eb331a, 0xddd75589, 0x24c82a70, 0x54ac4537, - 0x4d748d29, 0xd752c6f9, 00000000 + 0x4d748d29, 0xd752c6f9 }, { 0xb429ef90, 0xc6b91cb2, 0x5bb1db71, 0xf9cb115b, 0x756cdd66, - 0xa01d3f54, 0x4ee1272c, 00000000 + 0xa01d3f54, 0x4ee1272c }, { 0x94c4b93d, 0xa75085eb, 0x63526bb, 0xa3681d51, 0xe977cfef, - 0x890bf27d, 0x2c91966, 00000000 + 0x890bf27d, 0x2c91966 } }, { { 0x39b203a5, 0x1302d4b4, 0xc2617e67, 0x831a228f, 0x7716b8c1, - 0xf8a0149f, 0xa383a6bf, 00000000 + 0xf8a0149f, 0xa383a6bf }, { 0xde60c630, 0x79c4e5ee, 0x29bd7623, 0xc0189cd2, 0x151fa47, - 0x512b29d3, 0xd0559bd5, 00000000 + 0x512b29d3, 0xd0559bd5 }, { 0x7f045d1a, 0x819ae062, 0x310546e2, 0x2a293a1, 0xd89cc9d8, - 0xfb99b047, 0x73241e90, 00000000 + 0xfb99b047, 0x73241e90 } }, { { 0x8a97fc91, 0xe636eb7c, 0x4294aa4f, 0x24d64553, 0xdb53d994, - 0x7cc10d1d, 0xa0d3b4b8, 00000000 + 0x7cc10d1d, 0xa0d3b4b8 }, { 0xc0a6553f, 0x7cf3635e, 0xbc3f0922, 0x77a704b6, 0xec95c7f9, - 0xf8937767, 0x60959692, 00000000 + 0xf8937767, 0x60959692 }, { 0x1fbc7b28, 0x26dc264b, 0x25bc9fab, 0x5d763424, 0xf5072acd, - 0xf6e68204, 0xb568e3aa, 00000000 + 0xf6e68204, 0xb568e3aa } }, { { 0xeb9ba6ef, 0x17d62c16, 0xe2838b99, 0x627b5503, 0x6495962b, - 0xfa7a66a2, 0xf46e05e, 00000000 + 0xfa7a66a2, 0xf46e05e }, { 0xce644aa7, 0x2d336840, 0x8f200b11, 0xe4030c5f, 0x933d30ac, - 0x994117ac, 0x248c40d8, 00000000 + 0x994117ac, 0x248c40d8 }, { 0x211bb9f6, 0x569e1291, 0x3ccda065, 0x90a7ccd7, 0x98735b77, - 0x1e9d21ec, 0xeb78ba9c, 00000000 + 0x1e9d21ec, 0xeb78ba9c } } }, @@ -15915,211 +15915,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x2a94cbcc, 0x11d95d1d, 0x67d52b11, 0xa3c1ce15, 0x6afe6700, - 0x85be409a, 0xb45b3b46, 00000000 + 0x85be409a, 0xb45b3b46 }, { 0x158a605a, 0xb0a1e1b4, 0x8c57d3ba, 0x7fe1e7f0, 0x3a6c829f, - 0x33220451, 0x1046b23e, 00000000 + 0x33220451, 0x1046b23e }, { 0x33fdab48, 0xf710b59e, 0x6178ed62, 0x940962b7, 0x6d6c20c7, - 0x14c358e5, 0xb7d5097f, 00000000 + 0x14c358e5, 0xb7d5097f } }, { { 0x449154af, 0x46ae0c2a, 0x55fc7184, 0xe8cbce8a, 0x236a18e2, - 0x8d5d6ae1, 0x36520c5, 00000000 + 0x8d5d6ae1, 0x36520c5 }, { 0x84bb6a4b, 0x945024f2, 0xaba2c4c8, 0x39230033, 0x2e122129, - 0x9284cbd0, 0x64c8985a, 00000000 + 0x9284cbd0, 0x64c8985a }, { 0x169a6958, 0xf746bb6b, 0x5f639bdc, 0x5a6c7f43, 0xe3cc74e7, - 0x76a6963c, 0x1c0dd10c, 00000000 + 0x76a6963c, 0x1c0dd10c } }, { { 0x94d075d6, 0x37390063, 0xc010103c, 0x2bf9ba2d, 0xd64c2b51, - 0x262c68e1, 0x6072865a, 00000000 + 0x262c68e1, 0x6072865a }, { 0x6b58724e, 0x9089542, 0xad3a9ac7, 0xe15c3bbe, 0x67d5d0c6, - 0xc1d8da40, 0x67f6d1b5, 00000000 + 0xc1d8da40, 0x67f6d1b5 }, { 0xc2c54869, 0xc0001501, 0xef1b6249, 0xd1cb437e, 0x41d90a38, - 0x7d4a8d71, 0x3c43c925, 00000000 + 0x7d4a8d71, 0x3c43c925 } }, { { 0x10a9b53f, 0x523e9be3, 0xfd95595, 0x5bf7faae, 0xe9b2af2b, - 0x1f15e8d1, 0x93081b43, 00000000 + 0x1f15e8d1, 0x93081b43 }, { 0x845faa06, 0x81501db6, 0x29d8f017, 0x9a623162, 0xe52087c0, - 0x1b7cf140, 0x48bab5c7, 00000000 + 0x1b7cf140, 0x48bab5c7 }, { 0xb2b21f4a, 0x86db9720, 0xd31a676c, 0x65922e13, 0xf7dedafd, - 0x34dbff60, 0x64e4abee, 00000000 + 0x34dbff60, 0x64e4abee } }, { { 0xa48567a8, 0x93a4e8b2, 0x507a2d50, 0xf13a903e, 0x6497e543, - 0x9a8db4d8, 0x93ac79a0, 00000000 + 0x9a8db4d8, 0x93ac79a0 }, { 0xca2e0f65, 0xb7eb2296, 0xfa6aedd4, 0x7399353f, 0x59710be5, - 0xc2e520f9, 0x76553894, 00000000 + 0xc2e520f9, 0x76553894 }, { 0xc8b08555, 0xda91eb3d, 0xc521815c, 0xcdb3cd2e, 0x110483fb, - 0x26b8d534, 0x5d60c96b, 00000000 + 0x26b8d534, 0x5d60c96b } }, { { 0xae4ec761, 0xc1671f13, 0x53f78867, 0xd7459537, 0xddf89baa, - 0x3d4f182a, 0x8af75b27, 00000000 + 0x3d4f182a, 0x8af75b27 }, { 0x11b62dc0, 0xd27d3fc8, 0x4e910732, 0x669056e4, 0x17b9f41a, - 0xec39ed4d, 0xded4e498, 00000000 + 0xec39ed4d, 0xded4e498 }, { 0x50962688, 0x26c651fb, 0x3bbd1d23, 0x5d7373e1, 0xf2d2c710, - 0x5c41ee4d, 0xce24b71, 00000000 + 0x5c41ee4d, 0xce24b71 } }, { { 0x7f381e12, 0x927318bc, 0xb3fec6d4, 0x5cfb8faa, 0x7f2f57b, - 0xabbba0d8, 0x1bb19004, 00000000 + 0xabbba0d8, 0x1bb19004 }, { 0xb73200a4, 0x5009abf5, 0x997b3dad, 0x4a7f77c0, 0x8485b456, - 0x3b05aa4f, 0xbc5b43ea, 00000000 + 0x3b05aa4f, 0xbc5b43ea }, { 0xdc389fb3, 0x576d14f0, 0x49868566, 0x4a74a4d6, 0x77a6894f, - 0xc4b5f12c, 0xf106669e, 00000000 + 0xc4b5f12c, 0xf106669e } }, { { 0x652a8d2a, 0x7289964c, 0x69dfb4b0, 0x18aa7432, 0x62372b5c, - 0xf9875591, 0xdc76a81e, 00000000 + 0xf9875591, 0xdc76a81e }, { 0xd6ca34f3, 0x15e8ef9d, 0x2999176d, 0x575f822a, 0x2898d1c0, - 0xe2015154, 0x792c7d3, 00000000 + 0xe2015154, 0x792c7d3 }, { 0xebf9572a, 0xa0f0b27d, 0xc60930f, 0x8d0e2a95, 0xd2a4193, 0x0dd0bc, - 0x2217cad9, 00000000 + 0x2217cad9 } }, { { 0x6a40596d, 0x6a7bf12a, 0xabf67175, 0xdd6eb982, 0x3a3e6e9, - 0x88cd55a6, 0x765301b3, 00000000 + 0x88cd55a6, 0x765301b3 }, { 0x34f25afa, 0x542753e, 0xeba65420, 0xc4b02fce, 0x722643f5, - 0x9bc85971, 0x47ae12d9, 00000000 + 0x9bc85971, 0x47ae12d9 }, { 0x5e1e7d3a, 0x6e03b54, 0x49f3ecc1, 0xbdb69e3d, 0x7d21a15f, - 0x8d5c8ef4, 0x2b8d76f5, 00000000 + 0x8d5c8ef4, 0x2b8d76f5 } }, { { 0xd9e5ac34, 0xc3f910eb, 0x6f7d3f85, 0xfdc231be, 0x1f33fdb6, - 0xc46c8c8d, 0x10310eb8, 00000000 + 0xc46c8c8d, 0x10310eb8 }, { 0xd2a3ed05, 0xc7f30b70, 0xb438be72, 0x1fef09d2, 0x100a753f, - 0x81f13c84, 0x7ae58ee3, 00000000 + 0x81f13c84, 0x7ae58ee3 }, { 0x4b82a5ee, 0xfe45fe64, 0x7c322b56, 0xa84899b2, 0xafda2828, - 0x504a6247, 0xadf5e996, 00000000 + 0x504a6247, 0xadf5e996 } }, { { 0xdb8e60d4, 0x1d0ca1ea, 0x4df59ae0, 0xec973a91, 0x33a93b29, - 0x3c568d07, 0x81bae8e0, 00000000 + 0x3c568d07, 0x81bae8e0 }, { 0x9a686d5f, 0xfba3362a, 0xea7327a7, 0x511886d2, 0xd35ad318, - 0x16c92ce8, 0x88eb516e, 00000000 + 0x16c92ce8, 0x88eb516e }, { 0xc69c6abf, 0xeaa1c7ae, 0x423aad1f, 0x1a1f3a1e, 0xc6e8ce7c, - 0x4b8b215d, 0x85f0324b, 00000000 + 0x4b8b215d, 0x85f0324b } }, { { 0x17af880e, 0xc49bf0f5, 0x6934ca21, 0xd200cbb3, 0x3081ab4d, - 0x70499abf, 0x2a4ee8e9, 00000000 + 0x70499abf, 0x2a4ee8e9 }, { 0xb9c0e491, 0x66162d8b, 0x30a14c6c, 0x6c8fcece, 0xc7e10437, - 0xfc342efe, 0xd45c38f4, 00000000 + 0xfc342efe, 0xd45c38f4 }, { 0xa156569, 0x1685189e, 0x481e8c81, 0xd7c8d089, 0x7aa1eaca, - 0x5867c709, 0x86bc170c, 00000000 + 0x5867c709, 0x86bc170c } }, { { 0x775e5e26, 0x74425a61, 0x5cc5db28, 0x24ff5eae, 0x1bca87de, - 0x80b20abd, 0x95a331e6, 00000000 + 0x80b20abd, 0x95a331e6 }, { 0x9f97736d, 0xac122a7f, 0x35d9fa0c, 0xeb4f4819, 0xe12a7c1d, - 0x85f1b1f2, 0x4ffaf11e, 00000000 + 0x85f1b1f2, 0x4ffaf11e }, { 0x50a8d22f, 0x236fb21, 0x4fc5ba92, 0x168f115f, 0x47d1ea58, - 0x67baab29, 0x2e874920, 00000000 + 0x67baab29, 0x2e874920 } }, { { 0x2b378062, 0xf00e84b7, 0x133f842a, 0xbaf7a088, 0x6e12aa4f, - 0x42ff7b8d, 0x528e7daf, 00000000 + 0x42ff7b8d, 0x528e7daf }, { 0x21e307ca, 0xad3e2e00, 0x8e100807, 0xbe4a41ae, 0x6794ab60, - 0x2b5da39f, 0x76acdc09, 00000000 + 0x2b5da39f, 0x76acdc09 }, { 0x94616872, 0x56b26691, 0xc4f2b127, 0x270dff7e, 0x683952ca, - 0x20db918e, 0x7b71ec87, 00000000 + 0x20db918e, 0x7b71ec87 } }, { { 0x17f36f95, 0xdb976abf, 0x3c818c39, 0xb0018f32, 0x8c596c5b, - 0xff01f4b4, 0x59637a49, 00000000 + 0xff01f4b4, 0x59637a49 }, { 0xa008c45e, 0x9c17eb95, 0x3a5f1f13, 0x5deaea4a, 0xf9de992c, - 0x3f09d70c, 0x9e6ea586, 00000000 + 0x3f09d70c, 0x9e6ea586 }, { 0x716e8ba5, 0x636f1d71, 0xf47698ff, 0xad9976a4, 0xac57f352, - 0x81e92acd, 0x85e35072, 00000000 + 0x81e92acd, 0x85e35072 } } }, @@ -16127,211 +16127,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xde5a2cb1, 0x611a7c7, 0xda050e0e, 0x4e29da8, 0x7836fe46, - 0x2c713812, 0xf6ee074c, 00000000 + 0x2c713812, 0xf6ee074c }, { 0xa85bed1d, 0xbfe8392f, 0xfaa03f6e, 0x6ed59884, 0xdadb7bd1, - 0x914c128a, 0xec285b64, 00000000 + 0x914c128a, 0xec285b64 }, { 0x9e7b8d36, 0xa168473f, 0x5be7f5c7, 0xb50fb072, 0xa3fa903f, - 0x1fc6c422, 0x719631aa, 00000000 + 0x1fc6c422, 0x719631aa } }, { { 0x62b7f68f, 0x3ab2dd2a, 0xc7720a16, 0x8bb882b7, 0xa38a9bd3, - 0x31d59976, 0x9e39474, 00000000 + 0x31d59976, 0x9e39474 }, { 0xa791feca, 0x8179df45, 0xc49534b8, 0xe66f2965, 0x487dec0f, - 0xd30e440b, 0x24310a17, 00000000 + 0xd30e440b, 0x24310a17 }, { 0xa68e62d6, 0x4122cba, 0xc6b18b8e, 0x4471d09b, 0xaba26fa8, - 0x159637d9, 0xf607133c, 00000000 + 0x159637d9, 0xf607133c } }, { { 0x91ff1c79, 0x778e0498, 0xa71a46bc, 0x89c4532f, 0x5f9c9fe6, - 0xd64ed4bd, 0xed474984, 00000000 + 0xd64ed4bd, 0xed474984 }, { 0xdbc20d7b, 0x633cdb0e, 0x2b395c90, 0xcf5dd1f, 0x5f94d59, - 0x51bc12f7, 0x13d0c6b6, 00000000 + 0x51bc12f7, 0x13d0c6b6 }, { 0xde4487c4, 0xdc482c87, 0x93c8b395, 0xc5619c9f, 0xd901f34d, - 0x78c9fe7c, 0x4eedb597, 00000000 + 0x78c9fe7c, 0x4eedb597 } }, { { 0x60a58b86, 0xe7ce6ef4, 0xc093bcf2, 0xb2e48f41, 0x57aebb46, - 0x50af5165, 0xe476bd5f, 00000000 + 0x50af5165, 0xe476bd5f }, { 0x43ec095e, 0x28be6562, 0x867fc3e8, 0xb21dd847, 0x4bdd9949, - 0x3ee79902, 0xca9a80c5, 00000000 + 0x3ee79902, 0xca9a80c5 }, { 0x78d5f2ac, 0x771e1f55, 0x21edf2a0, 0x6a526e5, 0x16a9d645, - 0x9b238b5e, 0xce912830, 00000000 + 0x9b238b5e, 0xce912830 } }, { { 0x770287dd, 0x5d6e4123, 0x6332eb03, 0x440bf0b7, 0x2a4e178e, - 0x89d8ffa4, 0x80727834, 00000000 + 0x89d8ffa4, 0x80727834 }, { 0x7543c0f2, 0x36c67847, 0xa43f5425, 0xce781ac8, 0xc539ee8f, - 0x18d75990, 0xa7f0bab, 00000000 + 0x18d75990, 0xa7f0bab }, { 0x244f833c, 0x578d1222, 0x761a5b43, 0x420fee9a, 0x8ae9fe69, - 0xfc429ac4, 0x6a831064, 00000000 + 0xfc429ac4, 0x6a831064 } }, { { 0xf3e6cc23, 0x82a41eca, 0x2b9ac6dc, 0xce1919a1, 0x8422fcb5, - 0x5e06a377, 0xdf6e961, 00000000 + 0x5e06a377, 0xdf6e961 }, { 0x47851a6b, 0x6fb8dab4, 0x562d8045, 0x753e0cc9, 0x922d5c1e, - 0xa75b416d, 0x16b16d87, 00000000 + 0xa75b416d, 0x16b16d87 }, { 0xced935de, 0xe6279771, 0xc48d61db, 0xac3d076c, 0x7125366, - 0xc12f3d4a, 0xa2970b77, 00000000 + 0xc12f3d4a, 0xa2970b77 } }, { { 0x438c4479, 0x97caad68, 0x16ec4272, 0x1ac369d6, 0x3b808969, - 0x86c59275, 0x9ae98987, 00000000 + 0x86c59275, 0x9ae98987 }, { 0xf98c0e05, 0x78a7a9a8, 0xa3dc7cb9, 0xbd4c55a4, 0xa86626f8, - 0xccce66e7, 0x4aa81a46, 00000000 + 0xccce66e7, 0x4aa81a46 }, { 0xeaebfacb, 0xa03cd1fc, 0x94e5eea2, 0x35cdb92a, 0x1296a8c5, - 0xd5d5441c, 0xf989777c, 00000000 + 0xd5d5441c, 0xf989777c } }, { { 0xd291e7a6, 0xb9dcd61c, 0xcbaaec34, 0x44288781, 0xa958ab00, - 0xc7d2a24a, 0x6029ee82, 00000000 + 0xc7d2a24a, 0x6029ee82 }, { 0x73fe8b3a, 0x3d903247, 0xffe81e81, 0xbec9d350, 0x4275cf21, - 0x44d143d6, 0xb712fba1, 00000000 + 0x44d143d6, 0xb712fba1 }, { 0x8b58243a, 0x22d77607, 0x3a6f9e3e, 0x9671f8ef, 0x8c107f4a, - 0xda8190ce, 0x3a1bff86, 00000000 + 0xda8190ce, 0x3a1bff86 } }, { { 0x24662f1e, 0x8ef711c, 0xcdf7aa53, 0xe513c674, 0x2bc6affb, - 0x9f074606, 0x7282f888, 00000000 + 0x9f074606, 0x7282f888 }, { 0x54867f23, 0x20dd5702, 0x86e90006, 0xd41d0155, 0x6ddc6d32, - 0xc52cc31b, 0xd5b8f27a, 00000000 + 0xc52cc31b, 0xd5b8f27a }, { 0xf46f6fc1, 0xcd61ee20, 0xed689d93, 0x362a271a, 0x5f5550af, - 0x97a9c51a, 0xdf4cf867, 00000000 + 0x97a9c51a, 0xdf4cf867 } }, { { 0x56c6283c, 0x5100fc9, 0xba27f8ad, 0xfdc451d3, 0xb545e3d7, - 0x258e6b13, 0xcdc76bc9, 00000000 + 0x258e6b13, 0xcdc76bc9 }, { 0xffb9ecb9, 0x79182fff, 0x23b1061, 0x8d67aed6, 0x32a4393d, - 0x559ed23c, 0xe0b2893f, 00000000 + 0x559ed23c, 0xe0b2893f }, { 0x82fb50e9, 0x6fe0a442, 0x25b230cb, 0xf12828ff, 0xc6dd7ed5, - 0x6e1cc9c3, 0x5b110872, 00000000 + 0x6e1cc9c3, 0x5b110872 } }, { { 0xb559f9e0, 0x3db0101a, 0x8a0ac07d, 0x87061661, 0xb8e648a8, - 0xa167f165, 0x445550ea, 00000000 + 0xa167f165, 0x445550ea }, { 0xccd05276, 0x9e02bb1a, 0xd74f60a5, 0x56c853c3, 0x9fba4eb9, - 0x7cca2e96, 0x52c47318, 00000000 + 0x7cca2e96, 0x52c47318 }, { 0xd3b3ed2e, 0xd126a13c, 0x7b438517, 0x4cb09493, 0x5e75cf30, - 0x543affef, 0x948fc91b, 00000000 + 0x543affef, 0x948fc91b } }, { { 0x57254e9b, 0x4128531d, 0xab105159, 0xd252acc6, 0x1145e39b, - 0x93cb938a, 0xb9b704, 00000000 + 0x93cb938a, 0xb9b704 }, { 0xf2d7f41, 0xd751c43c, 0x937a6c7e, 0xb72ab433, 0xc974d291, - 0xb4bedf77, 0x27009b0d, 00000000 + 0xb4bedf77, 0x27009b0d }, { 0x3872ce13, 0xd94a14eb, 0x87885e9, 0x7e0f2fa, 0xadbc5e8b, - 0xbf0bcc61, 0x2e296de7, 00000000 + 0xbf0bcc61, 0x2e296de7 } }, { { 0x102067ee, 0xda5657e7, 0x30d888a1, 0xb85709f7, 0x3323ddfa, - 0x1a68c04a, 0xe625a762, 00000000 + 0x1a68c04a, 0xe625a762 }, { 0xb8960eb5, 0x49e1bfd4, 0x4388ac9a, 0x318dd81d, 0x65acb94b, - 0x4c2e2657, 0x1fc48439, 00000000 + 0x4c2e2657, 0x1fc48439 }, { 0xd2963acc, 0xd3f925a1, 0x98f58fc3, 0xa5e2d61, 0xb578dde8, - 0xe2069756, 0x927d62ea, 00000000 + 0xe2069756, 0x927d62ea } }, { { 0xa671d954, 0x51337628, 0x1756ecda, 0xce1b83c6, 0x804ebf3a, - 0x3f86617a, 0x3ee20951, 00000000 + 0x3f86617a, 0x3ee20951 }, { 0x2823a480, 0x7c6b914b, 0x81fe1e18, 0x9d44185e, 0x9af62b59, - 0x2351e019, 0x2c33f32f, 00000000 + 0x2351e019, 0x2c33f32f }, { 0x3cc6df8a, 0x520dde1f, 0xd5bab412, 0xedb5e226, 0x2c7f2948, - 0x584ebbc5, 0x488262ae, 00000000 + 0x584ebbc5, 0x488262ae } }, { { 0xe2e85507, 0x2edeaa41, 0x50fc59e5, 0xa046fad8, 0x5fa956d9, - 0x829780ae, 0xba1c6db5, 00000000 + 0x829780ae, 0xba1c6db5 }, { 0x2d512517, 0x1a770cdb, 0xf5b84572, 0x8de8d9ae, 0xb7cba2bd, - 0xb29f7091, 0xe9aa0d8d, 00000000 + 0xb29f7091, 0xe9aa0d8d }, { 0x8fa72c20, 0x7da00a3b, 0xe57e2815, 0x55a15d8e, 0xb7ee485f, - 0x296f7e5f, 0x74917be1, 00000000 + 0x296f7e5f, 0x74917be1 } } }, @@ -16339,211 +16339,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xacae20a6, 0xfd4349c9, 0x6a9377f5, 0x53a6a01e, 0x39049d1b, - 0x7cc353e4, 0x550eb1ce, 00000000 + 0x7cc353e4, 0x550eb1ce }, { 0xaa8e8897, 0xa4f12f37, 0x9b5658fe, 0x76c92859, 0xba453782, - 0xb3b614f6, 0x2bc5a24, 00000000 + 0xb3b614f6, 0x2bc5a24 }, { 0x59d40f5e, 0x951ee271, 0xaa26cf43, 0x2f0edc00, 0x59c3ad92, - 0xaceb7341, 0x3c2c1936, 00000000 + 0xaceb7341, 0x3c2c1936 } }, { { 0xeb51e85c, 0x86c1caf, 0x52bd57ca, 0x18f4d564, 0x276bd3c0, - 0x3a3e94b5, 0xf725f079, 00000000 + 0x3a3e94b5, 0xf725f079 }, { 0x48d46fa0, 0xb8ac8f98, 0x9b234128, 0x296f05, 0xa970033e, - 0x823903f4, 0x4ee7889d, 00000000 + 0x823903f4, 0x4ee7889d }, { 0x709951dd, 0x25c45e0d, 0xf2793039, 0x7186353, 0xf75e5cce, - 0xef8b46f6, 0x21992f84, 00000000 + 0xef8b46f6, 0x21992f84 } }, { { 0xeb85f5b0, 0x1cedd706, 0xf447a993, 0xcf304533, 0xca31a0f6, - 0xc8bf6897, 0x25d12c88, 00000000 + 0xc8bf6897, 0x25d12c88 }, { 0xe50b4eab, 0xf4d4db01, 0x521259c1, 0xd3d1b12e, 0xdcfd4aa8, - 0x2989d09c, 0x7633e293, 00000000 + 0x2989d09c, 0x7633e293 }, { 0xfa30a7b3, 0x11343ac9, 0xa8ceb7d3, 0x41f88947, 0xcd70379b, - 0x1fe2627e, 0xfe0a49cc, 00000000 + 0x1fe2627e, 0xfe0a49cc } }, { { 0x7cd66721, 0xba8feb23, 0xcc58da51, 0x8ec0d1cb, 0xce1f7363, - 0xd8b33e2a, 0xe72d6f3f, 00000000 + 0xd8b33e2a, 0xe72d6f3f }, { 0xb68c4e4b, 0x2d182a1e, 0xd5a2a621, 0x9186cd11, 0x50095632, - 0x63864782, 0xaaece2a, 00000000 + 0x63864782, 0xaaece2a }, { 0x21428e60, 0xe9760fda, 0xb8d3b1bd, 0x2b77279e, 0x40365090, - 0xde53f69e, 0x341c4b37, 00000000 + 0xde53f69e, 0x341c4b37 } }, { { 0x48ca2b9a, 0x19d74f05, 0x6c9dbeb9, 0xb14abbb9, 0x9007a76b, - 0xb75ba5ed, 0xa5eb999b, 00000000 + 0xb75ba5ed, 0xa5eb999b }, { 0x4af63b4c, 0x2c3b470d, 0xbbe5553c, 0x3d729e3a, 0x6efa7082, - 0x1b8e6385, 0xc45b2e63, 00000000 + 0x1b8e6385, 0xc45b2e63 }, { 0xaf4c0acb, 0x775bf633, 0x1f76e2f2, 0x8d16b6d4, 0xc3eb5f81, - 0x5616faf6, 0x8d9bdd43, 00000000 + 0x5616faf6, 0x8d9bdd43 } }, { { 0x3aa10512, 0xe26f84c1, 0x833d3654, 0x334af596, 0x561a2210, - 0x56688fac, 0x168bbb84, 00000000 + 0x56688fac, 0x168bbb84 }, { 0xf2bf809f, 0xdab432fb, 0xa88e73f, 0xcaccd1e3, 0x330b494b, - 0x9a7d593f, 0x4507a2ba, 00000000 + 0x9a7d593f, 0x4507a2ba }, { 0x4c1bf97c, 0x4ab0d15d, 0x8744d3c1, 0x14c0d8db, 0x3b45c285, - 0x9b35c389, 0x1c7ddfed, 00000000 + 0x9b35c389, 0x1c7ddfed } }, { { 0x2f031b1d, 0x219e157d, 0x496e40e9, 0x6c574949, 0x10febf27, - 0x8283cbfc, 0xab118f6e, 00000000 + 0x8283cbfc, 0xab118f6e }, { 0x4321217c, 0x19865a54, 0x9d6a55dc, 0x720b5175, 0x7b4912e, - 0x18089a3d, 0x2e7da1d, 00000000 + 0x18089a3d, 0x2e7da1d }, { 0xe94ffbc8, 0x444c222, 0x447badea, 0x6e0a27e6, 0x8b9dc95a, - 0xfd88d452, 0x7ae2a195, 00000000 + 0xfd88d452, 0x7ae2a195 } }, { { 0x732e7e7f, 0xe9d50faa, 0xbf15bc7c, 0xc5dc9e85, 0x9de70d4f, - 0x5ac291e4, 0x596679d4, 00000000 + 0x5ac291e4, 0x596679d4 }, { 0x861c2fd7, 0x2ef35ac8, 0xca89e622, 0xcd47382b, 0xd4deb00e, - 0x497f879, 0x1e9f5060, 00000000 + 0x497f879, 0x1e9f5060 }, { 0x76bb21fe, 0xb7513602, 0xa3352454, 0x640cc6c6, 0x32d3d17c, - 0xe785d1f2, 0xce6f0870, 00000000 + 0xe785d1f2, 0xce6f0870 } }, { { 0x4ec3ef77, 0xb575418a, 0xa0c0cc2c, 0x73e78c71, 0x6faf9ee2, - 0x89ebfae6, 0x63ff53a0, 00000000 + 0x89ebfae6, 0x63ff53a0 }, { 0x96daaae8, 0x5cc40885, 0xb6a20502, 0xc50ddaa0, 0xbe19952c, - 0xb12a88c5, 0xf6d043af, 00000000 + 0xb12a88c5, 0xf6d043af }, { 0x928290cc, 0xab343c97, 0xfd831c3b, 0x7fee69ff, 0xea29f6b9, - 0xc0734429, 0x212f30, 00000000 + 0xc0734429, 0x212f30 } }, { { 0x3f32c39a, 0xac607d7f, 0x218cdb8, 0x194d0bf1, 0x2b48585a, - 0x1c76db36, 0xc0059013, 00000000 + 0x1c76db36, 0xc0059013 }, { 0xe4e44b3d, 0xf9e32a3f, 0x4e0e2832, 0xfb2d9550, 0x7043c9f5, - 0x6079cca, 0x686fab74, 00000000 + 0x6079cca, 0x686fab74 }, { 0xacb824d, 0x65f98a39, 0xdbbe760e, 0x65bf79f4, 0x86d93df1, - 0xc49c1326, 0xf6292a94, 00000000 + 0xc49c1326, 0xf6292a94 } }, { { 0xe3c94ccb, 0xa146807, 0xac7a5314, 0x50c93ca7, 0xe34950a0, - 0x212261f2, 0x841944ec, 00000000 + 0x212261f2, 0x841944ec }, { 0x98119b1a, 0xcd350eff, 0xab646a66, 0xb1f2f5da, 0x326b5129, - 0x8a74378c, 0x56970c57, 00000000 + 0x8a74378c, 0x56970c57 }, { 0xbd038809, 0xba200d67, 0x7ab36007, 0x839e7f37, 0x8584d755, - 0x8c1cf8e2, 0x90f94e43, 00000000 + 0x8c1cf8e2, 0x90f94e43 } }, { { 0x361722a, 0xd0f10a1a, 0x9b54569d, 0x13b371, 0xd41b5f0e, - 0x3e8d5795, 0x550274a9, 00000000 + 0x3e8d5795, 0x550274a9 }, { 0xd9975232, 0xde86efa8, 0xfcdf4bd6, 0xa8abadb6, 0x8c5a0db1, - 0x2f666bce, 0x463ab20b, 00000000 + 0x2f666bce, 0x463ab20b }, { 0x68b1e9b8, 0x61ac9ddb, 0x5b02350c, 0x3968e0b1, 0x71a0bba9, - 0x19adf6f0, 0x3655b8c6, 00000000 + 0x19adf6f0, 0x3655b8c6 } }, { { 0x9a5e049b, 0x8f74e07, 0x40f03e47, 0x80a91d2b, 0x478d7863, - 0x49b5556f, 0x8eb2fe15, 00000000 + 0x49b5556f, 0x8eb2fe15 }, { 0xfedc72, 0x9444437a, 0xbfc62d59, 0xd4b61b8e, 0x17fe06bd, - 0xc49b2703, 0x8b19c4b6, 00000000 + 0xc49b2703, 0x8b19c4b6 }, { 0xe36a0ab3, 0x2b512e, 0x789d7795, 0xca64f450, 0x96861a84, - 0xe9bc076f, 0xea4137af, 00000000 + 0xe9bc076f, 0xea4137af } }, { { 0x5271a29a, 0x4683ad12, 0xfeee37ed, 0x8132cb19, 0x1844dbe5, - 0x374bb874, 0xb4971ef0, 00000000 + 0x374bb874, 0xb4971ef0 }, { 0x6ce765c6, 0xbd1fa71b, 0xd3c7b312, 0xdfb0e55, 0xc5dfff7e, - 0x2a914dc7, 0xea1b1230, 00000000 + 0x2a914dc7, 0xea1b1230 }, { 0xb573270f, 0x182ed420, 0xceb234e2, 0x5eab29f5, 0xdd9f3767, - 0xaa05d31d, 0x66551495, 00000000 + 0xaa05d31d, 0x66551495 } }, { { 0x538f612c, 0x3f2fe09a, 0xbdac392b, 0xf440da8, 0xb83696fb, - 0xee033a2d, 0x4f54f296, 00000000 + 0xee033a2d, 0x4f54f296 }, { 0x607daba, 0x55c08547, 0xf218fece, 0x65b893a, 0xcd892ec7, - 0x850ed37d, 0xd91913d1, 00000000 + 0x850ed37d, 0xd91913d1 }, { 0x17c58b36, 0x7d63778c, 0x13400ef0, 0x24042622, 0xb106af3a, - 0x38544d44, 0xea78cf28, 00000000 + 0x38544d44, 0xea78cf28 } } }, @@ -16551,211 +16551,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xd8fa29c1, 0xa946830a, 0x34cb4b69, 0xddef36b4, 0xfd46de6f, - 0x8ccffaa5, 0xd2aa6696, 00000000 + 0x8ccffaa5, 0xd2aa6696 }, { 0x721cc20e, 0xbb6074ed, 0x886d9236, 0x7ec9252b, 0x43fb24f3, - 0xcaf8cc56, 0xa923b0ed, 00000000 + 0xcaf8cc56, 0xa923b0ed }, { 0x3e4bfe63, 0x91f680d6, 0xcbe3ebed, 0xe0fad937, 0xacd73a29, - 0xdfbeac5d, 0xbde8d429, 00000000 + 0xdfbeac5d, 0xbde8d429 } }, { { 0xa751ef29, 0xab185822, 0x319ee97d, 0x9837d53d, 0x41ee0e9a, - 0x5895c81a, 0xeb32abf, 00000000 + 0x5895c81a, 0xeb32abf }, { 0x546a48d, 0xf5ad361c, 0xa5c3c7f2, 0xe1b646e1, 0x1c060c88, - 0x325696f9, 0x13295c70, 00000000 + 0x325696f9, 0x13295c70 }, { 0x405dc2b8, 0xb0e1de1, 0x25cce69, 0xb4c8423a, 0x78a658da, - 0x1db0eb61, 0xb637255, 00000000 + 0x1db0eb61, 0xb637255 } }, { { 0x674589dc, 0x2d18546f, 0xe10a0631, 0x1e17b4a6, 0xad938f6a, - 0xca7672ee, 0x19cff9e2, 00000000 + 0xca7672ee, 0x19cff9e2 }, { 0x33a0f109, 0xab871612, 0xcb50d59, 0x331899f3, 0x2e2f0930, - 0x18e3593e, 0xfd011f32, 00000000 + 0x18e3593e, 0xfd011f32 }, { 0xece4cf47, 0x6d180922, 0x8a24fc6c, 0x77d3230c, 0x6f082ef9, - 0x436869d5, 0xcae171ee, 00000000 + 0x436869d5, 0xcae171ee } }, { { 0xb69a371e, 0x23929369, 0xad70064b, 0xf783a87a, 0xda21a391, - 0xb5660365, 0x1a06ec4a, 00000000 + 0xb5660365, 0x1a06ec4a }, { 0xc1e0c353, 0x826f1ee5, 0x361431ed, 0xc732e43a, 0x35c399b3, - 0xab11b2ea, 0x79bb36a0, 00000000 + 0xab11b2ea, 0x79bb36a0 }, { 0xe9df9a3d, 0x46ea6c0a, 0xc91039e6, 0x5547b155, 0x26d3a7d3, - 0x3bf4e535, 0xe501a7c8, 00000000 + 0x3bf4e535, 0xe501a7c8 } }, { { 0x2b062371, 0x38e766d4, 0xb07c0fca, 0x20452706, 0xa73262cb, - 0x19db95d0, 0x4239aa10, 00000000 + 0x19db95d0, 0x4239aa10 }, { 0x885afa5b, 0x85c27d12, 0xe6c77629, 0x3ce9f8ed, 0x62b164fd, - 0xc17bfac0, 0x6b10a3b, 00000000 + 0xc17bfac0, 0x6b10a3b }, { 0x9b8f90b8, 0xc27573d1, 0x5efae766, 0x6df03ce1, 0xd3d10aa, - 0x1cd3828d, 0x2898d7a8, 00000000 + 0x1cd3828d, 0x2898d7a8 } }, { { 0x9dfad56f, 0x3d251e1, 0x21c32137, 0x591f040d, 0xbf2b869f, - 0x31f7fb0b, 0x1863f523, 00000000 + 0x31f7fb0b, 0x1863f523 }, { 0x51b60c6b, 0x8015893d, 0x940f38e6, 0xda5ad279, 0xae9acac6, - 0xfbf91d4c, 0x404d9133, 00000000 + 0xfbf91d4c, 0x404d9133 }, { 0xd6305cbe, 0x40323ed3, 0x5bcf31ff, 0xe96cda0a, 0x75cc8958, - 0xebf9229e, 0x27010560, 00000000 + 0xebf9229e, 0x27010560 } }, { { 0xfdb0cf2b, 0x9dfd3390, 0xa29f3966, 0x9664ec80, 0x38e71790, - 0x72cb24f1, 0xdff8ba73, 00000000 + 0x72cb24f1, 0xdff8ba73 }, { 0xf40309c9, 0x2aa518fb, 0xaa781d53, 0xff2cc6a4, 0xd0d67a51, - 0x7663928c, 0xb48f4b60, 00000000 + 0x7663928c, 0xb48f4b60 }, { 0x8ddf5cf, 0x169448e1, 0x27732e19, 0x66b2b9ea, 0x6dfa6891, - 0xb0ad1694, 0x7f0e7f2a, 00000000 + 0xb0ad1694, 0x7f0e7f2a } }, { { 0x719dfde7, 0x4adf9bbf, 0xcf321af, 0x5e6389ee, 0x8ba08202, - 0x4fb489ac, 0x9321b389, 00000000 + 0x4fb489ac, 0x9321b389 }, { 0x64b74d85, 0xbf9dbe49, 0xd48a5891, 0x4c88ab59, 0x64aec91e, - 0x43c97685, 0xc8a1f04f, 00000000 + 0x43c97685, 0xc8a1f04f }, { 0x7b21d3d1, 0x47f85bbd, 0x9a82c92b, 0x7f4f19be, 0x2d2146da, - 0xf80bce1d, 0x4f5bef46, 00000000 + 0xf80bce1d, 0x4f5bef46 } }, { { 0x52a063db, 0xbc8bb5a1, 0x97c1e9b, 0x82c589ec, 0xaeb0453f, - 0xfa35c121, 0x68127f71, 00000000 + 0xfa35c121, 0x68127f71 }, { 0xc546d9cf, 0x689522c8, 0x60382166, 0xd736ed96, 0x7aed95c7, - 0x75db6c60, 0x16b023b, 00000000 + 0x75db6c60, 0x16b023b }, { 0x982ab4ea, 0xc39cae62, 0xc2bdeafd, 0x6a11824f, 0x5be11dd6, - 0xe3125fa7, 0xa64ac082, 00000000 + 0xe3125fa7, 0xa64ac082 } }, { { 0xfd693855, 0xc1ea0a9, 0xfe6133b2, 0xe9af9624, 0x2e40b98e, - 0x23e6ce62, 0x41dbc0b2, 00000000 + 0x23e6ce62, 0x41dbc0b2 }, { 0x9b554d12, 0x891e796e, 0x571ba45c, 0xe9230162, 0x4e979d49, - 0x81f862e4, 0x1a85d0c4, 00000000 + 0x81f862e4, 0x1a85d0c4 }, { 0x7468054c, 0x3dbff3cb, 0x4c85c19d, 0x1ebe2b26, 0x3f53ccf5, - 0xf32e1cf2, 0x632df497, 00000000 + 0xf32e1cf2, 0x632df497 } }, { { 0xf2b6ce82, 0x4aafc882, 0x759a932, 0x963118ff, 0x6e203331, - 0x9eae4026, 0x7967a04f, 00000000 + 0x9eae4026, 0x7967a04f }, { 0x875bcae5, 0x8f5ba113, 0x6bb3f383, 0x5ecfea35, 0x20eb4cd8, - 0x1d37b473, 0x1b8cd0a, 00000000 + 0x1d37b473, 0x1b8cd0a }, { 0xd3d9dbd0, 0x53875b90, 0x7f066d48, 0x2e5694eb, 0x10db1986, - 0x8e2a1d2d, 0xb15286d0, 00000000 + 0x8e2a1d2d, 0xb15286d0 } }, { { 0xa239a179, 0xb0dfa66c, 0x4fe9f968, 0x6bbf1d27, 0x41cbb87d, - 0xbd19f15a, 0x3867a6dd, 00000000 + 0xbd19f15a, 0x3867a6dd }, { 0xc4dfdb0b, 0x8b438a5d, 0x66b198ee, 0xc217961f, 0x29cf4a46, - 0xb82f46f3, 0x86be188, 00000000 + 0xb82f46f3, 0x86be188 }, { 0xa54e23a0, 0xf96323aa, 0xe722f460, 0x91333861, 0x21e2c1ce, - 0x2ca0e882, 0xae482df6, 00000000 + 0x2ca0e882, 0xae482df6 } }, { { 0x59c86f66, 0x1fd2ba0d, 0xe1d7ffdb, 0x4ba51ff4, 0x8171972a, - 0x3c260da3, 0xca4b6ff, 00000000 + 0x3c260da3, 0xca4b6ff }, { 0xd45d609a, 0xc0256e13, 0x316fc980, 0x98b7f841, 0x7f097542, - 0xd077e791, 0x41c22b0f, 00000000 + 0xd077e791, 0x41c22b0f }, { 0xc13a31e6, 0x62769e0f, 0xd123327, 0x9e3d18d3, 0x5bb33a7, - 0x69c93cd9, 0x5e945612, 00000000 + 0x69c93cd9, 0x5e945612 } }, { { 0x4827b735, 0x795dff2, 0x252092de, 0xe746507f, 0x19df0860, - 0xcb0175f3, 0x62f1ea4f, 00000000 + 0xcb0175f3, 0x62f1ea4f }, { 0xf219d037, 0xbff3f595, 0x13891d76, 0x635bea33, 0x60b3617d, - 0x8287018a, 0xa3674978, 00000000 + 0x8287018a, 0xa3674978 }, { 0x109a9ed6, 0x9694c088, 0xc33b139c, 0x3e0d1b03, 0xb9f5ffde, - 0x4b0ab5e7, 0x955a025a, 00000000 + 0x4b0ab5e7, 0x955a025a } }, { { 0x61cde24f, 0x7e81df77, 0x6ebca730, 0x87f63373, 0xc9490bce, - 0x34672113, 0x53af4c17, 00000000 + 0x34672113, 0x53af4c17 }, { 0x7e000cdf, 0x51bcb29b, 0x1a029dcc, 0x503788f7, 0x7e220606, - 0xc8ca458f, 0xaf7e3da3, 00000000 + 0xc8ca458f, 0xaf7e3da3 }, { 0x8e257252, 0xa210305e, 0x914f2f52, 0x10fdc34e, 0x87f42c44, - 0xd8a44674, 0xda23dde3, 00000000 + 0xd8a44674, 0xda23dde3 } } }, @@ -16763,211 +16763,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xe252a944, 0x6df536c0, 0x3d4d46b7, 0x32927748, 0xedca0ee2, - 0x77e0face, 0x2697a43c, 00000000 + 0x77e0face, 0x2697a43c }, { 0x4d0934ef, 0x49fee01d, 0x50556951, 0x7f5c393d, 0x3c0d61e4, - 0x7a9e64b8, 0x3a563b9d, 00000000 + 0x7a9e64b8, 0x3a563b9d }, { 0x940fa1, 0x1ff7925d, 0xdb7df1a5, 0x88500815, 0x4b3bf1d, - 0x1ceae2f3, 0xa3429d1f, 00000000 + 0x1ceae2f3, 0xa3429d1f } }, { { 0xf5c45f71, 0xf6759628, 0x3ea593e0, 0xd3394515, 0x88075ca4, - 0x564a6ae, 0xe0f4bddb, 00000000 + 0x564a6ae, 0xe0f4bddb }, { 0x86eb882b, 0x3cd9beb6, 0x4ae05a98, 0xe343d798, 0x1c8b76ca, - 0xb12b708e, 0x1cc0a8d7, 00000000 + 0xb12b708e, 0x1cc0a8d7 }, { 0x898f5dc7, 0xcf245c48, 0x671046b, 0xcff6da96, 0x6d35bcaa, - 0x2b280e8c, 0x1e333667, 00000000 + 0x2b280e8c, 0x1e333667 } }, { { 0xccb23ce0, 0xe0d0b6b0, 0x5d2b0719, 0xeadaf5a8, 0x942b804d, - 0x8a708d01, 0x9f36e42d, 00000000 + 0x8a708d01, 0x9f36e42d }, { 0x74bd6673, 0x56b41f33, 0xa27da7d5, 0xe1c142f9, 0x4910cc9a, - 0x2b1e4921, 0x80b34334, 00000000 + 0x2b1e4921, 0x80b34334 }, { 0xf3846fa4, 0x20b4593d, 0x7b170e0e, 0x843a6162, 0x22b78c94, - 0x521eb383, 0x36a8c0b4, 00000000 + 0x521eb383, 0x36a8c0b4 } }, { { 0xd4b7bc13, 0x256f1796, 0xd6331f6c, 0x5f07f6c9, 0x9c5619cf, - 0x61a04255, 0x441ae6fa, 00000000 + 0x61a04255, 0x441ae6fa }, { 0xf1ec2397, 0x994580dc, 0x48b7d40b, 0xb3096b59, 0xc91735e6, - 0x99ff017f, 0x50010da9, 00000000 + 0x99ff017f, 0x50010da9 }, { 0x1ef64fbd, 0xc71e7893, 0xa6dc88a2, 0xe07d4635, 0x454945d, - 0xd4c10fb7, 0xe3a4dcaf, 00000000 + 0xd4c10fb7, 0xe3a4dcaf } }, { { 0xbcbfb9ea, 0xaa99a10b, 0x530edca3, 0x419caa08, 0xcd60019f, - 0x30875f84, 0xb3f08098, 00000000 + 0x30875f84, 0xb3f08098 }, { 0xfccbbe17, 0x2af05b99, 0xfbf2b730, 0xa078e2b0, 0xaa6bc29e, - 0xfde8a93e, 0x61e0ddc4, 00000000 + 0xfde8a93e, 0x61e0ddc4 }, { 0xbbb6295c, 0xf77bdfa8, 0x92f299e, 0xf757447f, 0xcdec1541, - 0x9191c6dd, 0x9bc6096e, 00000000 + 0x9191c6dd, 0x9bc6096e } }, { { 0x78d96a24, 0x8688d3c9, 0x5ff911fc, 0x3d57f154, 0x636897d5, - 0xd85ac58a, 0x5ab3e2bb, 00000000 + 0xd85ac58a, 0x5ab3e2bb }, { 0x62efb672, 0x1e29a4da, 0x583bddcf, 0xe2009863, 0xc2b19291, - 0xc611a71d, 0x34b5a8fb, 00000000 + 0xc611a71d, 0x34b5a8fb }, { 0x1b81a8ce, 0x2e54e85b, 0x45a8ca16, 0x8c8c58f9, 0x9284b50b, - 0xdacf62ae, 0xc1b34c9d, 00000000 + 0xdacf62ae, 0xc1b34c9d } }, { { 0xcfc4d1df, 0x942db042, 0x1d5afdcc, 0x6c2884e5, 0xe3c7d456, - 0xced14d71, 0xee7a4a14, 00000000 + 0xced14d71, 0xee7a4a14 }, { 0x28d62bba, 0x526a23d0, 0x6c9f2187, 0x6fc31185, 0x4cdac58e, - 0x47afe976, 0xb855eaeb, 00000000 + 0x47afe976, 0xb855eaeb }, { 0x2a6421b2, 0xd9407f9b, 0x78e63e7f, 0x1a560320, 0xbeb182eb, - 0xdb6cc606, 0x59763fff, 00000000 + 0xdb6cc606, 0x59763fff } }, { { 0xe88a8841, 0x64526767, 0xe9ae2b41, 0xff34e577, 0x63d49761, - 0xf9724760, 0xc2a3f352, 00000000 + 0xf9724760, 0xc2a3f352 }, { 0xc014a8a4, 0xc5c4503b, 0x84f67960, 0x4965decd, 0x4d0f4529, - 0x7ecdc8e8, 0x6e44f764, 00000000 + 0x7ecdc8e8, 0x6e44f764 }, { 0xb7ca4838, 0xa281a893, 0x6c26230f, 0xe07277b7, 0xc2313da8, - 0x78314657, 0x973baff3, 00000000 + 0x78314657, 0x973baff3 } }, { { 0xdb5c4721, 0x5588fb78, 0x9d4d4505, 0x255d8197, 0x6b6744d0, - 0x4b054e20, 0xdea9c08c, 00000000 + 0x4b054e20, 0xdea9c08c }, { 0x91dc94cc, 0x5719437, 0x31fdc053, 0x99189b04, 0x86eeec83, - 0xeae351ac, 0x850439f5, 00000000 + 0xeae351ac, 0x850439f5 }, { 0x6dbc9bb6, 0xdf197d6d, 0x1f486772, 0x5c194132, 0x733f16a7, - 0xd4322f47, 0x4aa65aa6, 00000000 + 0xd4322f47, 0x4aa65aa6 } }, { { 0xd583e2a4, 0x81bad364, 0xd8a4b732, 0x165375a, 0xc0d22353, - 0x4f7135da, 0xcf244181, 00000000 + 0x4f7135da, 0xcf244181 }, { 0x297eb13e, 0x9795cb02, 0x203faf98, 0xa9868c6e, 0x1f7d352d, - 0xfbc3a709, 0x5dffd61a, 00000000 + 0xfbc3a709, 0x5dffd61a }, { 0x1397169d, 0x3c628e12, 0xf2fad465, 0x5d2651b1, 0x96dc9b17, - 0x64415071, 0x68ce5fa6, 00000000 + 0x64415071, 0x68ce5fa6 } }, { { 0xe38909d9, 0x1d41a23a, 0x18901567, 0x66c0b50c, 0x6641c830, - 0x4b7a3b24, 0x8fe04694, 00000000 + 0x4b7a3b24, 0x8fe04694 }, { 0x593d1867, 0x2ba29895, 0x66914beb, 0x353d0f79, 0x540f69e0, - 0xbff2c66d, 0x4340b3bb, 00000000 + 0xbff2c66d, 0x4340b3bb }, { 0x75a8f99f, 0xef321d4d, 0xcf355393, 0xacf46b8e, 0xf54caf11, - 0x2c5cdb26, 0xaab80db2, 00000000 + 0x2c5cdb26, 0xaab80db2 } }, { { 0xc752d8b6, 0x8e9e23a0, 0x676a1162, 0xc79ee932, 0xda2f9976, - 0x73f68980, 0xb3fef011, 00000000 + 0x73f68980, 0xb3fef011 }, { 0x8177022b, 0xc6836911, 0xed24536b, 0x8a899d8b, 0xd3c4e79, - 0xa0cdf9ba, 0x4ee572bb, 00000000 + 0xa0cdf9ba, 0x4ee572bb }, { 0xcd6216b5, 0x8bc242fa, 0xc5b27d36, 0x64f7ab1d, 0x9fec237d, - 0xb6e7a47d, 0x71e10b3, 00000000 + 0xb6e7a47d, 0x71e10b3 } }, { { 0x9e9c921a, 0xdc894bd9, 0x7b92a503, 0x6532f1d7, 0x6059361d, - 0xfdc3ffb5, 0xd29f8d84, 00000000 + 0xfdc3ffb5, 0xd29f8d84 }, { 0x20197dab, 0xe0de7cc8, 0x224b780c, 0xb6e67294, 0x749d0a65, - 0x67a3dc5c, 0x812993e2, 00000000 + 0x67a3dc5c, 0x812993e2 }, { 0xab4fbc1a, 0x810c32a7, 0xd5718f, 0x64da42a4, 0xffdb9815, - 0xb98d55b7, 0x790df633, 00000000 + 0xb98d55b7, 0x790df633 } }, { { 0x7a887678, 0x79c93d99, 0x4d0f8588, 0xe25aeb1e, 0xf122dc8c, - 0x9c103ebf, 0xf7c6561d, 00000000 + 0x9c103ebf, 0xf7c6561d }, { 0xbb10ce65, 0x334f03ce, 0xf3074e77, 0x4eaddf5c, 0x4190d789, - 0xc7d11f32, 0x910c2d76, 00000000 + 0xc7d11f32, 0x910c2d76 }, { 0x3f3ee8d8, 0x30494480, 0x78c046d4, 0xb22c1198, 0x214178db, - 0x5e8062ad, 0xe840867f, 00000000 + 0x5e8062ad, 0xe840867f } }, { { 0xfb253a8a, 0x40c354cc, 0x28ca0a6d, 0x141c652e, 0x5ba034eb, - 0x54dea830, 0x1a1095be, 00000000 + 0x54dea830, 0x1a1095be }, { 0xc79ca322, 0x20638db0, 0x4c3b58c2, 0x59493a29, 0x4d3d6fe5, - 0x555c3edf, 0xda49aebb, 00000000 + 0x555c3edf, 0xda49aebb }, { 0x41b0edc7, 0xd43bc444, 0x3a7bf9e6, 0xc3656043, 0xe475536e, - 0x59296813, 0x138ce694, 00000000 + 0x59296813, 0x138ce694 } } }, @@ -16975,211 +16975,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x3f00013a, 0xdd0a1ac0, 0xd64ed56d, 0xca83855b, 0xb3acdd1d, - 0xf93b2314, 0xa8bc6876, 00000000 + 0xf93b2314, 0xa8bc6876 }, { 0x7655e08c, 0x598d4df7, 0x72b88425, 0x8d58701f, 0x7ed6192b, - 0xe0410ac7, 0x664d2523, 00000000 + 0xe0410ac7, 0x664d2523 }, { 0xb7823946, 0x6ca56372, 0x7351699d, 0xea2583b, 0x37632022, - 0x85770e9a, 0x97e2f853, 00000000 + 0x85770e9a, 0x97e2f853 } }, { { 0x37fe9bb6, 0xf47dc6ba, 0x76066ce9, 0x6ebc1d4, 0xdf86761a, - 0x79df8cec, 0x6c349235, 00000000 + 0x79df8cec, 0x6c349235 }, { 0x968b4957, 0x3c3cc21b, 0x3be79180, 0xa06fed4b, 0xc3e64227, - 0xe7a4f06c, 0x59db04d8, 00000000 + 0xe7a4f06c, 0x59db04d8 }, { 0x33132caf, 0x3e5f3fad, 0x64619b35, 0xfef5e2f3, 0x58257d80, - 0x1495290, 0x6c26224b, 00000000 + 0x1495290, 0x6c26224b } }, { { 0x1cf3e1c3, 0x8b489ca2, 0xd259342e, 0xee582ad2, 0xb8eb381, - 0x8d44b81d, 0xb1b41e04, 00000000 + 0x8d44b81d, 0xb1b41e04 }, { 0x9a163960, 0xc71bdca3, 0xdd168346, 0x661c1b07, 0xa8cb56ee, - 0xf045379e, 0x1f935b37, 00000000 + 0xf045379e, 0x1f935b37 }, { 0xaefa2983, 0xc8b6092b, 0xba406f2f, 0x7e4e757c, 0x82082175, - 0xa29a416b, 0x5ed891e, 00000000 + 0xa29a416b, 0x5ed891e } }, { { 0xd321edbd, 0x8dbf4df8, 0xe4778b66, 0xcb519460, 0xaf6e6b88, - 0x25eecefe, 0x72159114, 00000000 + 0x25eecefe, 0x72159114 }, { 0xbb1f8c27, 0xd1ed742e, 0x3955ac9e, 0x8ae207c0, 0xa836f0e9, - 0xdd62a3bf, 0xeadc6801, 00000000 + 0xdd62a3bf, 0xeadc6801 }, { 0x53879c64, 0x9d0dc7eb, 0x8e88e258, 0xec0ddc7e, 0xf332c861, - 0x3e68b7a4, 0xfcad3be0, 00000000 + 0x3e68b7a4, 0xfcad3be0 } }, { { 0x1ff555b9, 0xb2e8005c, 0x9f53b45e, 0x2c14f5c0, 0xc8fbbf2c, - 0x22f2f7f, 0x2eda3bd8, 00000000 + 0x22f2f7f, 0x2eda3bd8 }, { 0x1a0ab984, 0x98ecfbc9, 0x41af6cfd, 0x73371bd0, 0x2f14abc, - 0xba095788, 0x39b5f6ae, 00000000 + 0xba095788, 0x39b5f6ae }, { 0x1b2c79eb, 0x73d180d3, 0x13a08211, 0x33cb4dbf, 0x91128e77, - 0x95de58e3, 0xe9b1d2bf, 00000000 + 0x95de58e3, 0xe9b1d2bf } }, { { 0x6307261d, 0x234c3d11, 0x816c36b0, 0xac0576e9, 0xc1d985b1, - 0x95f00131, 0x66e75e9, 00000000 + 0x95f00131, 0x66e75e9 }, { 0xd709f29d, 0x6a624d11, 0xf8e4621c, 0x5e7dfa2c, 0xc4579895, - 0x3cb36590, 0x343587c0, 00000000 + 0x3cb36590, 0x343587c0 }, { 0xe767f0ec, 0x6646204d, 0xd688b099, 0x28c2f065, 0xf4a80289, - 0x19c1307d, 0xef380e57, 00000000 + 0x19c1307d, 0xef380e57 } }, { { 0xf6df0057, 0x1dfc3f11, 0x1b7afcac, 0x58525f48, 0x37838578, - 0xf17128aa, 0x63a9a92e, 00000000 + 0xf17128aa, 0x63a9a92e }, { 0xca5d1e1d, 0xc1bc5f21, 0xb979a91, 0x818feaff, 0x6ce98bc, - 0x709a00af, 0x95eb05a9, 00000000 + 0x709a00af, 0x95eb05a9 }, { 0x5308d520, 0xaaad5d9a, 0xf2e052a3, 0xb1e92282, 0x67792ff2, - 0xde940218, 0x6f634d79, 00000000 + 0xde940218, 0x6f634d79 } }, { { 0x9bd2612b, 0xb63b27f7, 0x33f1cfa9, 0x22807b95, 0xeaf7d7eb, - 0x4022c001, 0x2ab80894, 00000000 + 0x4022c001, 0x2ab80894 }, { 0xb7981bec, 0xf762e82a, 0xa4523c53, 0x1f184c30, 0xd7272265, - 0xf9b102c4, 0x93a4a6d9, 00000000 + 0xf9b102c4, 0x93a4a6d9 }, { 0x55445f11, 0x9db6d03c, 0xe631ba8e, 0xec152f8e, 0x159c062b, - 0x3e9eae01, 0xf1dcf787, 00000000 + 0x3e9eae01, 0xf1dcf787 } }, { { 0x783bb290, 0xaf482041, 0xaf6ab3a5, 0xce1cd472, 0xaef02105, - 0x3f662ad7, 0x552be83f, 00000000 + 0x3f662ad7, 0x552be83f }, { 0x3a3df15d, 0x3c8cc17a, 0x479b9a27, 0xb809067b, 0x46e0c720, - 0x5b59b0c0, 0x3413c7f6, 00000000 + 0x5b59b0c0, 0x3413c7f6 }, { 0xd6726881, 0x9161b7d2, 0x1acda2ca, 0xac99f9ef, 0xb9b591d8, - 0x3d7c4e90, 0x704e7616, 00000000 + 0x3d7c4e90, 0x704e7616 } }, { { 0xe11e6918, 0xeff2739d, 0xd58545b9, 0x9d72e4eb, 0x10082a5e, - 0x8d174e89, 0x77c053c2, 00000000 + 0x8d174e89, 0x77c053c2 }, { 0xc43ee358, 0x8f2ddd98, 0x46d6675, 0x1c3976f4, 0xc8034a97, - 0xfb0292a7, 0xb195f06a, 00000000 + 0xfb0292a7, 0xb195f06a }, { 0x6c61d702, 0x133926f6, 0x76e08899, 0xe33db626, 0x74aaf9fb, - 0xd3889bf2, 0x811abe07, 00000000 + 0xd3889bf2, 0x811abe07 } }, { { 0x12264097, 0xc48eadf7, 0x8b8ec7bf, 0x62be1e0f, 0xe6510b5c, - 0x84e466ae, 0x2f70d5d6, 00000000 + 0x84e466ae, 0x2f70d5d6 }, { 0xa9e9fe84, 0x242b0f1c, 0x34dfa6cb, 0x908edab7, 0x74b05ebe, - 0xcee39119, 0x2722952b, 00000000 + 0xcee39119, 0x2722952b }, { 0x697cbe43, 0xe4fdb6eb, 0x8aec9e1b, 0x62138fb9, 0xbc8f3cea, - 0x6f5cdd6e, 0x95f2cbb4, 00000000 + 0x6f5cdd6e, 0x95f2cbb4 } }, { { 0xa240f2ca, 0xaa68d79c, 0x4c306a4, 0x38a0c81a, 0x6870c3a4, - 0xabdd1aee, 0xf00d2a5d, 00000000 + 0xabdd1aee, 0xf00d2a5d }, { 0xf176ea4e, 0x8475bfce, 0x30f7b3ae, 0x6b0d3b6a, 0xda850ebb, - 0xd0423d4d, 0xfc10b649, 00000000 + 0xd0423d4d, 0xfc10b649 }, { 0x6a23642, 0x2326b8a5, 0x27a3df3, 0x848599cc, 0x45709296, - 0x669e3271, 0xc94b18f9, 00000000 + 0x669e3271, 0xc94b18f9 } }, { { 0x3f4ff35e, 0xd6481d68, 0x86a681d1, 0xfeadc692, 0x7add8ad0, - 0xd44ac205, 0xb0013689, 00000000 + 0xd44ac205, 0xb0013689 }, { 0x1fc0a205, 0xd11bf538, 0x96c89def, 0xf0039bf5, 0x1872b930, - 0x32734e02, 0xe16eb001, 00000000 + 0x32734e02, 0xe16eb001 }, { 0x86a43cc2, 0x33f51953, 0xe1ca0369, 0x49684dd0, 0x33946f7d, - 0x946dcd46, 0x6c40458a, 00000000 + 0x946dcd46, 0x6c40458a } }, { { 0x29c03276, 0x53d2e62b, 0x5231d4b5, 0xa3b4ed57, 0x95b6962a, - 0x2382e7dc, 0xd618e81f, 00000000 + 0x2382e7dc, 0xd618e81f }, { 0x7ffa164c, 0xa3f48974, 0x98dd820a, 0xd0a61a12, 0x3db6812f, - 0x27265731, 0x21c87579, 00000000 + 0x27265731, 0x21c87579 }, { 0x18b4dfbd, 0x8c1497b1, 0xd584e004, 0xb30109fc, 0x2c9f73fd, - 0x2bb0bf92, 0xa59ee471, 00000000 + 0x2bb0bf92, 0xa59ee471 } }, { { 0xaacd9947, 0x685a5e8c, 0x95251370, 0xfd4f0d3e, 0x19e36101, - 0xee1fceeb, 0xfce25d22, 00000000 + 0xee1fceeb, 0xfce25d22 }, { 0xb8b2c253, 0x85e38ecd, 0x1a6f2d93, 0x236902fd, 0xd0ca8fc, - 0xa5b5d96, 0xa6bffedb, 00000000 + 0xa5b5d96, 0xa6bffedb }, { 0x4f7e004a, 0x82175adb, 0x3b433b3d, 0x8fb6557f, 0x996fedd9, - 0x14905fb, 0x37f59b7d, 00000000 + 0x14905fb, 0x37f59b7d } } }, @@ -17187,211 +17187,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xf651718a, 0xb5d4481b, 0xb6fcc72c, 0x7df00aac, 0x34c20f45, - 0x2251ee7, 0x9e494774, 00000000 + 0x2251ee7, 0x9e494774 }, { 0xe3542365, 0xe16649b3, 0xb28cdc31, 0x66586f57, 0x8fad73cd, - 0xd155b6f, 0xd2ad9b57, 00000000 + 0xd155b6f, 0xd2ad9b57 }, { 0xf29137c2, 0xa0b668a6, 0xcd860543, 0xb36fe5c2, 0x75d23fc6, - 0xbdcdee5, 0x4b09235f, 00000000 + 0xbdcdee5, 0x4b09235f } }, { { 0xc3ee9067, 0xe9f53c36, 0x706278a2, 0xf581241d, 0x8c2dd4f6, - 0x25b0599a, 0x18129b9d, 00000000 + 0x25b0599a, 0x18129b9d }, { 0xfa664504, 0xfd5181bd, 0xcdc0570c, 0x6b2d792e, 0xf8668c9f, - 0x2ba44c5e, 0x37fa0bd4, 00000000 + 0x2ba44c5e, 0x37fa0bd4 }, { 0x254f32ab, 0x43fa58c0, 0xf0c23b19, 0x6e5632fd, 0xbc4f83e4, - 0x7c7c2c4c, 0x3c9bb670, 00000000 + 0x7c7c2c4c, 0x3c9bb670 } }, { { 0xd7aede3d, 0xce19fd57, 0x1f68a3f9, 0x65859fc3, 0x9c8e877a, - 0x1f5678bd, 0x3ba9e994, 00000000 + 0x1f5678bd, 0x3ba9e994 }, { 0xc82c81d9, 0x61562bce, 0x9702c95, 0xd134915e, 0xe11d6a19, - 0x11c83adf, 0xbc96e647, 00000000 + 0x11c83adf, 0xbc96e647 }, { 0x4c357ae3, 0x40ff5028, 0x25b4dbbe, 0x424628a2, 0xa8cbf34e, - 0xe99bbeee, 0x3f9b535a, 00000000 + 0xe99bbeee, 0x3f9b535a } }, { { 0xf16d85ea, 0x97fa538c, 0x7e36d85a, 0x55f8ec5d, 0xe8b483ce, - 0x4c682cdc, 0x2f982bfe, 00000000 + 0x4c682cdc, 0x2f982bfe }, { 0xc476ec4a, 0x6ed8430b, 0xa67746fc, 0x22f5ca38, 0xfbc3f6b, - 0xc3303f11, 0xa7677a6, 00000000 + 0xc3303f11, 0xa7677a6 }, { 0xbbfd773f, 0xa44b85c7, 0xe046000b, 0x4c51901a, 0x5fc4d1a5, - 0xbdcd933b, 0x41854251, 00000000 + 0xbdcd933b, 0x41854251 } }, { { 0x35ac3d4a, 0x1d770ba6, 0x82a856d8, 0x376e76f6, 0xf47a1dfb, - 0x23b7c188, 0xc6d155c8, 00000000 + 0x23b7c188, 0xc6d155c8 }, { 0xb4e0661b, 0xe6aae31f, 0x28adee84, 0x4d8f0eae, 0x5c04fd68, - 0x7ec02235, 0x434ca8a6, 00000000 + 0x7ec02235, 0x434ca8a6 }, { 0xf0c38a0c, 0x4d2362db, 0x5307b075, 0x96b0fc39, 0x110e6d65, - 0x31b15727, 0xd019211a, 00000000 + 0x31b15727, 0xd019211a } }, { { 0x6d622db, 0xa2219e7a, 0x1ea45d5d, 0xfac2b758, 0x7997e64f, - 0xcf4ac9ec, 0x8887d9cf, 00000000 + 0xcf4ac9ec, 0x8887d9cf }, { 0x65bd42f2, 0x455cb236, 0x80639c92, 0xc62c3b6b, 0x2434a035, - 0x28f4db31, 0x603eccd0, 00000000 + 0x28f4db31, 0x603eccd0 }, { 0x5d97d136, 0xaf756f34, 0xc98bd8b2, 0x744ba552, 0x287e7231, - 0xec115a68, 0x50dafed4, 00000000 + 0xec115a68, 0x50dafed4 } }, { { 0xba44a07b, 0x95e34b6f, 0x26aa59f9, 0x4c7c476f, 0xe717b16c, - 0x268b26bb, 0x2ae8234e, 00000000 + 0x268b26bb, 0x2ae8234e }, { 0xfdd7bb3a, 0x19f304e5, 0xebddebcf, 0xfe74bc8a, 0xf40ca50f, - 0xb21a4925, 0x5887e65, 00000000 + 0xb21a4925, 0x5887e65 }, { 0xce5db929, 0x561ff796, 0x5b46b257, 0xb2378506, 0xbcb2cb54, - 0xab22d52f, 0x466b506c, 00000000 + 0xab22d52f, 0x466b506c } }, { { 0x7e304ba5, 0xec02ac95, 0xa741b563, 0x848b4906, 0xd5aa72d6, - 0x9e612ef, 0x75e3831c, 00000000 + 0x9e612ef, 0x75e3831c }, { 0xb60ae24f, 0xb68445f2, 0x2b83016f, 0xc6eac681, 0x41b818ca, - 0xc027734, 0xf57bca7c, 00000000 + 0xc027734, 0xf57bca7c }, { 0xcca752aa, 0xdc3fc13b, 0xcba2a273, 0x39fd23fb, 0x8f0b08c5, - 0x5f187944, 0x69c3b9f1, 00000000 + 0x5f187944, 0x69c3b9f1 } }, { { 0x11dbb7bd, 0x253ee79f, 0x1d0b796d, 0xe403d52d, 0x8c4fc151, - 0x5e8cd97e, 0x1f55e8a3, 00000000 + 0x5e8cd97e, 0x1f55e8a3 }, { 0x1b847e95, 0x1f47bc5d, 0xca422515, 0xa28b4b05, 0x6b27feb1, - 0xdcf02b45, 0xfd23f81a, 00000000 + 0xdcf02b45, 0xfd23f81a }, { 0x6411e043, 0xde8b4b51, 0x56f734e9, 0x7b593e51, 0xa7322119, - 0xc25437c7, 0x80d2b5bb, 00000000 + 0xc25437c7, 0x80d2b5bb } }, { { 0x2e148af8, 0x13ec6e65, 0xb0917172, 0x5bb15e92, 0xb774bc57, - 0x203fff06, 0x7d7be6a8, 00000000 + 0x203fff06, 0x7d7be6a8 }, { 0x7a844953, 0x64a2c193, 0xc29fcaf9, 0x62ea6947, 0xbab23d8e, - 0xc27cce9a, 0xcb0867a3, 00000000 + 0xc27cce9a, 0xcb0867a3 }, { 0x1690e2f3, 0xb56976a6, 0x9eadff54, 0xfca45afb, 0xcd931fd5, - 0xd55f446f, 0xdb609a31, 00000000 + 0xd55f446f, 0xdb609a31 } }, { { 0x2d898431, 0xa82ea62, 0x2d292227, 0xed16fb2, 0xf161d14, - 0xf19e01b8, 0x5b44aef2, 00000000 + 0xf19e01b8, 0x5b44aef2 }, { 0xeccf991a, 0x30f4aa30, 0x799d99ab, 0x40dedc96, 0x799bab15, - 0x25f00043, 0x25587aca, 00000000 + 0x25f00043, 0x25587aca }, { 0x561dc7cf, 0x8be43232, 0xf6c87b83, 0x693ca9d6, 0xb25e3600, - 0xf0cdcb29, 0x42bd3510, 00000000 + 0xf0cdcb29, 0x42bd3510 } }, { { 0xf53b8f59, 0xaa1f4b6, 0x937a8aae, 0xb67fbda0, 0x43e377ab, - 0x196ea81, 0x1bfc51c, 00000000 + 0x196ea81, 0x1bfc51c }, { 0x956cd21d, 0x838e6827, 0xb8a085fb, 0xf004e4da, 0xd51de91c, - 0x7e5b676a, 0x7117b5cc, 00000000 + 0x7e5b676a, 0x7117b5cc }, { 0xd2af4e32, 0x1aa8f7aa, 0xf0439f6f, 0xe0dda81a, 0xe7f6f2a, - 0xa536ea48, 0xefa623c8, 00000000 + 0xa536ea48, 0xefa623c8 } }, { { 0x217503b6, 0x16804001, 0xe2543eb0, 0xc14d63d0, 0xbd15030b, - 0x369b389e, 0x718362cf, 00000000 + 0x369b389e, 0x718362cf }, { 0x47567cbe, 0xa8d76b57, 0xb6e7cce7, 0xb5498867, 0xc3917f53, - 0x2e5cb196, 0xc45007d6, 00000000 + 0x2e5cb196, 0xc45007d6 }, { 0xff564ab, 0x57c0e5ea, 0x471df341, 0x6ffd254e, 0x8e760d08, - 0xc1734fce, 0x879d4500, 00000000 + 0xc1734fce, 0x879d4500 } }, { { 0x2b1c73d8, 0xdd13ef33, 0xdbd30dc8, 0xab59cff8, 0x73cfedb8, - 0xfd734fc6, 0xee3a20f0, 00000000 + 0xfd734fc6, 0xee3a20f0 }, { 0xceac9b5d, 0xd59b1a36, 0xd4505404, 0xe3263a98, 0xab124104, - 0xb629018a, 0x82997740, 00000000 + 0xb629018a, 0x82997740 }, { 0x3bba1e1a, 0x9d825c84, 0xc148d906, 0xfb624f30, 0x4679591e, - 0xdf35009c, 0x4f183553, 00000000 + 0xdf35009c, 0x4f183553 } }, { { 0x300620d3, 0xa2a5346c, 0x34bc71b4, 0xc77d1045, 0x4ae79e9d, - 0xe2860ede, 0x9786eb71, 00000000 + 0xe2860ede, 0x9786eb71 }, { 0x9a80e434, 0x5541f8b4, 0x70586b16, 0xf7c2a3a7, 0xc5c6fccf, - 0x6b8cd483, 0xa32a9c56, 00000000 + 0x6b8cd483, 0xa32a9c56 }, { 0xbc8a957e, 0x5d9c4d44, 0xf643d4ba, 0xc42b27d6, 0x1502af8, - 0x68017b18, 0x53336311, 00000000 + 0x68017b18, 0x53336311 } } }, @@ -17399,211 +17399,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xce6c0066, 0xed332622, 0x79ae69f1, 0x7a171bb, 0x895f650a, - 0x3ef38a32, 0x5e8a184d, 00000000 + 0x3ef38a32, 0x5e8a184d }, { 0xcb342d6a, 0x1c5f3254, 0x236b6342, 0xd7e3722a, 0xb91c8e3b, - 0xf49b1472, 0xf410282d, 00000000 + 0xf49b1472, 0xf410282d }, { 0x69c55a97, 0x4446ef6e, 0x431cbc8d, 0x18554942, 0xeecb141e, - 0xa7664bd, 0xdb2f1a99, 00000000 + 0xa7664bd, 0xdb2f1a99 } }, { { 0x7de6b9e, 0xa5083eab, 0xfc7e00b1, 0x1448c96d, 0x1488df7f, - 0x6996177b, 0x11fcbd5e, 00000000 + 0x6996177b, 0x11fcbd5e }, { 0x9da96c05, 0xcef4cc2, 0xebf0da6b, 0xb86263b0, 0x10d4452d, - 0x5c9aacae, 0xdb8eb7f6, 00000000 + 0x5c9aacae, 0xdb8eb7f6 }, { 0x187fc08f, 0x7d06bf87, 0xe59ea0b4, 0xc5808c06, 0xbea4af62, - 0x1fa5a283, 0x7d39b93c, 00000000 + 0x1fa5a283, 0x7d39b93c } }, { { 0xbe94e2b7, 0x587ff13b, 0x9f190a33, 0x490a31f4, 0xc60c4895, - 0x3323ca5e, 0x3855e084, 00000000 + 0x3323ca5e, 0x3855e084 }, { 0xe26cef6c, 0xf8e3b8a4, 0x6257856b, 0x865d6c09, 0x65cbaf5c, - 0xaeab1929, 0xabcda666, 00000000 + 0xaeab1929, 0xabcda666 }, { 0x81f2bf69, 0x540c7984, 0x3c92039c, 0xd43909fa, 0x7369a161, - 0xdcf899, 0x4e6b124a, 00000000 + 0xdcf899, 0x4e6b124a } }, { { 0x6a889eda, 0x9db5edda, 0xf07a06da, 0x7a2b5071, 0xbf7f0f1, - 0xb639a879, 0x4d88127b, 00000000 + 0xb639a879, 0x4d88127b }, { 0x670b8795, 0x2ac1dca1, 0xed9eec0e, 0x875388, 0xdc39600b, - 0x5aea1c88, 0xca807a6d, 00000000 + 0x5aea1c88, 0xca807a6d }, { 0xef706452, 0xf0fa185d, 0xdd2c32aa, 0x5a1126b7, 0xcc4b2c64, - 0x6958a1ec, 0x2ac366b9, 00000000 + 0x6958a1ec, 0x2ac366b9 } }, { { 0x7b8df7f8, 0x3833af95, 0x89dbf20, 0x4694b8c9, 0x67db4f12, - 0xeab50aa8, 0xb0cd3fa3, 00000000 + 0xeab50aa8, 0xb0cd3fa3 }, { 0xc6146f11, 0x41eacd87, 0xc205aa13, 0x983f50af, 0x4a916412, - 0x9b012d5d, 0xb7a948dc, 00000000 + 0x9b012d5d, 0xb7a948dc }, { 0xa404bc83, 0x8a568ddd, 0x46ec2350, 0x236ff32a, 0x550160c6, - 0x3843737b, 0x176153d7, 00000000 + 0x3843737b, 0x176153d7 } }, { { 0x8b94a2d2, 0x3b6fc7d0, 0x4ce373a3, 0xfeed2a82, 0x6a08bace, - 0x75fdc8b7, 0xacd6fe96, 00000000 + 0x75fdc8b7, 0xacd6fe96 }, { 0x6b4cc598, 0xa4b92284, 0xf90c748, 0x20020fde, 0x7df25bf2, - 0x5e144a5f, 0x34fe0e8c, 00000000 + 0x5e144a5f, 0x34fe0e8c }, { 0x841596ac, 0x51cb34ed, 0x521f97b, 0xb02b0108, 0xf8f865b2, - 0xf0eb77cf, 0x70c1e193, 00000000 + 0xf0eb77cf, 0x70c1e193 } }, { { 0x88bb2385, 0xdecbe192, 0x924dc420, 0xeddf5a30, 0xa7ad561a, - 0x47fab499, 0xe6b21b2d, 00000000 + 0x47fab499, 0xe6b21b2d }, { 0x93360a4e, 0x3d4ed090, 0xe23017e, 0x3ce080c5, 0xa72d228d, - 0x11c0a38e, 0x41007de9, 00000000 + 0x11c0a38e, 0x41007de9 }, { 0xf784ab49, 0x1f57fe4a, 0x9f165a2, 0x249789b0, 0xe1fb1ee4, - 0xb7d957e7, 0x6fa10aa8, 00000000 + 0xb7d957e7, 0x6fa10aa8 } }, { { 0x4e93758, 0x9b30361d, 0x48e5e986, 0x1e21b379, 0x6b6a7d14, - 0xe358ebd, 0x256b6e96, 00000000 + 0xe358ebd, 0x256b6e96 }, { 0x14b34c01, 0x91580da6, 0x9f221b37, 0x5e5b04e9, 0xa50416b2, - 0x9a06f39c, 0xbebd74c3, 00000000 + 0x9a06f39c, 0xbebd74c3 }, { 0x28badd36, 0x89173ed0, 0x1a880cab, 0x75630542, 0x89f5120, - 0x3cb1f7e3, 0xac97412b, 00000000 + 0x3cb1f7e3, 0xac97412b } }, { { 0x64d74d4b, 0xa7380d59, 0x8a2381f2, 0x52680503, 0x519dad4e, - 0xbb015131, 0x18685a0e, 00000000 + 0xbb015131, 0x18685a0e }, { 0x7c38ae6, 0xd215110e, 0x38914f12, 0xfae092ed, 0x35a5b795, - 0x8a88ddf5, 0x97caea1f, 00000000 + 0x8a88ddf5, 0x97caea1f }, { 0x2bff287f, 0xed13050f, 0x141a4cee, 0xe5ec684d, 0xfc7c7f7f, - 0xc0199561, 0x8ed5247, 00000000 + 0xc0199561, 0x8ed5247 } }, { { 0x4a945ce4, 0x5e5e2ea5, 0xcb7814bc, 0x8f3bf676, 0xb3503c8f, - 0xed27463d, 0xd65a3afb, 00000000 + 0xed27463d, 0xd65a3afb }, { 0xc8431d4e, 0x567c71fe, 0xf29c4f2c, 0xfde30942, 0x65241434, - 0xfe5534f2, 0x983e28eb, 00000000 + 0xfe5534f2, 0x983e28eb }, { 0x540198ed, 0xe77c19ad, 0xf62a48e2, 0xb6c215b5, 0x3d8d2910, - 0xcf3e2350, 0x10c40a27, 00000000 + 0xcf3e2350, 0x10c40a27 } }, { { 0x84db8d9c, 0xe6d231d2, 0x2b9fe917, 0xa5fdfa0e, 0xa552c24d, - 0x641dd6be, 0xadbc8754, 00000000 + 0x641dd6be, 0xadbc8754 }, { 0x34f0d5f2, 0xf75f27e3, 0x2dae007, 0x5cee9181, 0x6328af9f, - 0x98e3d19c, 0x5e8ef2bc, 00000000 + 0x98e3d19c, 0x5e8ef2bc }, { 0xa96e7d53, 0xf1a1b483, 0xc290a7fb, 0xa2484199, 0x676e49f5, - 0x50fb21ad, 0xc3b0bf9, 00000000 + 0x50fb21ad, 0xc3b0bf9 } }, { { 0xb08fde52, 0x9895590c, 0x80fe5729, 0xd1d809a9, 0x562155ef, - 0xf4647f4b, 0x5f91656, 00000000 + 0xf4647f4b, 0x5f91656 }, { 0xa4095af, 0x4c179735, 0x2fd307d4, 0x85ea0af4, 0xc91e6f88, - 0x12ad0709, 0x10cc08f7, 00000000 + 0x12ad0709, 0x10cc08f7 }, { 0x62a3c39d, 0xa64cb3a7, 0x83631b60, 0x40a70fa1, 0xade8f6f8, - 0x972c7036, 0x67324ec0, 00000000 + 0x972c7036, 0x67324ec0 } }, { { 0xce55755f, 0x62f0d6d1, 0x237f18bd, 0x867ca309, 0xd4e47014, - 0xb23345d, 0x480550af, 00000000 + 0xb23345d, 0x480550af }, { 0xcbcd6e52, 0x69537d7d, 0xab09e59d, 0xcd70da39, 0xa1f29744, - 0xb582d7c, 0xa3318968, 00000000 + 0xb582d7c, 0xa3318968 }, { 0xbbad43e6, 0x730c846b, 0x6123b3e1, 0x4ae07ba4, 0x9d732e50, - 0x4af8e107, 0x2621b16, 00000000 + 0x4af8e107, 0x2621b16 } }, { { 0xdb367969, 0x573c42b0, 0x85126403, 0xf605f0e0, 0x8712486, - 0xdf0a6511, 0x7543c555, 00000000 + 0xdf0a6511, 0x7543c555 }, { 0x5b10e957, 0x4f33ab55, 0x6fec9d4f, 0x49b09443, 0xf557255c, - 0x3ad30cc, 0xca10036b, 00000000 + 0x3ad30cc, 0xca10036b }, { 0xac08511a, 0xf715680e, 0x38c5d8b4, 0x155ee9bb, 0x340fc9b3, - 0xd83ad43d, 0xfa769800, 00000000 + 0xd83ad43d, 0xfa769800 } }, { { 0xdb309224, 0xe339d98a, 0x89c288e8, 0xeb7f5c19, 0xcddea9ec, - 0x59ef172, 0xd88e90ff, 00000000 + 0x59ef172, 0xd88e90ff }, { 0xb4ababcf, 0x99faf565, 0x64845ef5, 0x2619794f, 0x52cb9121, - 0xca27179b, 0x65c08847, 00000000 + 0xca27179b, 0x65c08847 }, { 0xa2fe1a85, 0xd15064c0, 0xc3324307, 0x23e159a4, 0xa1fd5a4b, - 0x22ccc2ab, 0x19f1bcd3, 00000000 + 0x22ccc2ab, 0x19f1bcd3 } } }, @@ -17611,211 +17611,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x6206ec06, 0xaa3119bf, 0x1ea8e1b4, 0xd49331f2, 0xf7a8415e, - 0x504b5b29, 0x73039242, 00000000 + 0x504b5b29, 0x73039242 }, { 0x9ddc0bbd, 0x9cf5eb44, 0x55a2af37, 0x7acc1d58, 0x1dd19318, - 0xdfcdb837, 0xdd32c85c, 00000000 + 0xdfcdb837, 0xdd32c85c }, { 0x90f08c5d, 0x4c4876ae, 0x7b439c54, 0xb4293977, 0xd4eeffe6, - 0xe1e04709, 0x9790c73f, 00000000 + 0xe1e04709, 0x9790c73f } }, { { 0x33b196c0, 0x654c0efe, 0x18edcff6, 0x86ae658f, 0x19dd3913, - 0xc613c9f3, 0xe92b48e5, 00000000 + 0xc613c9f3, 0xe92b48e5 }, { 0xc9c67eba, 0x97c65ce2, 0xdddf37b1, 0xac5a2876, 0x1d48052a, - 0xff268d4b, 0xe7cc34de, 00000000 + 0xff268d4b, 0xe7cc34de }, { 0xa5242b10, 0xe561a1c8, 0xd84ba900, 0x9cdface0, 0x600f243f, - 0xa2a21187, 0x69e4b069, 00000000 + 0xa2a21187, 0x69e4b069 } }, { { 0x54b0bee7, 0x65e862c6, 0x27b53d99, 0xa00574b7, 0xb3890792, - 0xbf4437d9, 0x50996682, 00000000 + 0xbf4437d9, 0x50996682 }, { 0xe747f0f8, 0x1f0e9faf, 0xd1dc984, 0x69f58c27, 0x6929cd8d, - 0x1e460b26, 0x86d0e0b1, 00000000 + 0x1e460b26, 0x86d0e0b1 }, { 0xbbfc27cc, 0xb7169341, 0x1e97fdb4, 0x2bc8fa7f, 0xf31d62f, - 0xe1af5277, 0x1cab5651, 00000000 + 0xe1af5277, 0x1cab5651 } }, { { 0xde097e31, 0x927056d9, 0x73ec09d1, 0x273c74d7, 0x69a5ec7c, - 0xf2e4494a, 0x89209920, 00000000 + 0xf2e4494a, 0x89209920 }, { 0xb83146e8, 0x6586ba65, 0x21e10911, 0xdc9e83da, 0xae43dbf2, - 0x32746a8, 0xbb8d346d, 00000000 + 0x32746a8, 0xbb8d346d }, { 0xe3646c64, 0x5f8ea1de, 0x8fa9d955, 0xb73dec3d, 0x16c8caf2, - 0xdcc011ab, 0x73b474da, 00000000 + 0xdcc011ab, 0x73b474da } }, { { 0xcb90c6df, 0x90593b94, 0xa2995ba, 0x23afbed0, 0xafd0ba76, - 0x994abd70, 0xaf19c867, 00000000 + 0x994abd70, 0xaf19c867 }, { 0xe559c156, 0xc26ad988, 0x364936fc, 0x25203fb1, 0x3911200, - 0x5d59d53f, 0xa29bd308, 00000000 + 0x5d59d53f, 0xa29bd308 }, { 0x5763135e, 0x24639f48, 0x111cb74, 0xdc971b98, 0xb294cbf1, - 0x8ed8a7b4, 0x799a2a10, 00000000 + 0x8ed8a7b4, 0x799a2a10 } }, { { 0x49b2cf93, 0xa606cffd, 0xa82a1e1c, 0x64706a17, 0xa708a11d, - 0x1c9822c5, 0xd99b30fc, 00000000 + 0x1c9822c5, 0xd99b30fc }, { 0xb51bac4a, 0x6206a78d, 0x82d34109, 0x2afa882f, 0xb6971a72, - 0x9da7033f, 0x3d5ac28b, 00000000 + 0x9da7033f, 0x3d5ac28b }, { 0x8d61b8ce, 0xc04f65a2, 0xad85374e, 0x3892e00c, 0xcf0d2340, - 0xdf13fe45, 0x48fc33b9, 00000000 + 0xdf13fe45, 0x48fc33b9 } }, { { 0xaa446816, 0xf59e0d97, 0xc9d6301f, 0x59e10281, 0xf804add, - 0x31c6e9ca, 0x52df7bd, 00000000 + 0x31c6e9ca, 0x52df7bd }, { 0x7472235a, 0x8d7917af, 0x3ce714fe, 0x757e64cc, 0xf9206d6f, - 0xcbad8400, 0x86ca32c4, 00000000 + 0xcbad8400, 0x86ca32c4 }, { 0xc099d3e9, 0x387e5a80, 0x5faf00a6, 0xd4fd7e6d, 0xa58fb9c9, - 0x50a3f92a, 0x9c709433, 00000000 + 0x50a3f92a, 0x9c709433 } }, { { 0xceb990c3, 0xf260d2e5, 0xaf4c6ad0, 0xb34f01e7, 0x4fc54fbd, - 0xf0f2406d, 0x55dc1a4e, 00000000 + 0xf0f2406d, 0x55dc1a4e }, { 0x2e9a7f18, 0xfec41b85, 0x7c7bd631, 0x3905743a, 0x4fa9c3c, - 0x7af09577, 0xe379e453, 00000000 + 0x7af09577, 0xe379e453 }, { 0x62644191, 0x46ec9cab, 0x80ebe1a5, 0xb8d8e8e1, 0x610e050d, - 0xd767a65a, 0x122fc2f2, 00000000 + 0xd767a65a, 0x122fc2f2 } }, { { 0x4f84af6e, 0xf80411d3, 0xb0be5d22, 0xfdceedc8, 0xcd4eadbb, - 0x73748a1, 0xc6beb956, 00000000 + 0x73748a1, 0xc6beb956 }, { 0x2d256f99, 0x33c1e5d1, 0xd87e4a88, 0xede52f18, 0xb60f5a8b, - 0xedbcfb83, 0x433d988c, 00000000 + 0xedbcfb83, 0x433d988c }, { 0x5de4a1c3, 0xffa02d8d, 0xd777026e, 0xe9b5659f, 0x27a52fcd, - 0x90d6fc14, 0xf5e66b1, 00000000 + 0x90d6fc14, 0xf5e66b1 } }, { { 0x8bece048, 0x527f801, 0xfe67a491, 0xb1aa8e04, 0xcc925f0f, - 0x58febefa, 0xca74e18, 00000000 + 0x58febefa, 0xca74e18 }, { 0x2c0d3ff, 0xf909057b, 0x55631ce3, 0x43df3ecc, 0x2748a07b, - 0xd1cadbbf, 0x551f7a83, 00000000 + 0xd1cadbbf, 0x551f7a83 }, { 0xf1b998b, 0x1fa2c481, 0x5a4417f1, 0xa03e737f, 0xdedbd72d, - 0x69326b8a, 0x9a91668, 00000000 + 0x69326b8a, 0x9a91668 } }, { { 0x1374d798, 0x980fb1ce, 0x1049910a, 0x3baa25fa, 0x8763a238, - 0xbf5e2d26, 0xd2996fee, 00000000 + 0xbf5e2d26, 0xd2996fee }, { 0xa35a401d, 0xf2b0e9d8, 0xf74756bd, 0xbbfd2c2c, 0x86d97106, - 0x11d3d441, 0x5b7e90cf, 00000000 + 0x11d3d441, 0x5b7e90cf }, { 0x6c20ce80, 0x288e4ba0, 0x9934c1b7, 0xabb3203f, 0xe4d0992a, - 0x15f41ae4, 0x6c56c783, 00000000 + 0x15f41ae4, 0x6c56c783 } }, { { 0x55a5a109, 0xd745e3ed, 0x91b0bdb4, 0xc3716022, 0x79f0dee7, - 0xedc0816c, 0x7fb7254d, 00000000 + 0xedc0816c, 0x7fb7254d }, { 0x2b0d3743, 0xbb478318, 0x3a5d3bfa, 0x1fb2e259, 0x1070fdd7, - 0x272ce7c4, 0xf1b8bcb4, 00000000 + 0x272ce7c4, 0xf1b8bcb4 }, { 0x2a6be8d7, 0xf8c737d3, 0xd2c81e13, 0x6c32ac8, 0xc5fdbb09, - 0x1752bcc1, 0x204c21fa, 00000000 + 0x1752bcc1, 0x204c21fa } }, { { 0x4f0cd303, 0x54b8696e, 0xc7466698, 0x63dcb854, 0xc211b90f, - 0x4e19269e, 0x6dd182e0, 00000000 + 0x4e19269e, 0x6dd182e0 }, { 0x2ec24032, 0xc4ff3e44, 0x31e28e70, 0xdccf1086, 0xc8a7e0ce, - 0x4042a70b, 0xeb7bfda0, 00000000 + 0x4042a70b, 0xeb7bfda0 }, { 0x6d731962, 0xe577f171, 0xaefb801d, 0x51b4f60, 0x16a217ad, - 0xb9dff4b8, 0x118bbe62, 00000000 + 0xb9dff4b8, 0x118bbe62 } }, { { 0xc572b567, 0x1ab6b4e2, 0x337e1249, 0x6cb51199, 0x4132210f, - 0xe0d29fe7, 0x9d8f0f13, 00000000 + 0xe0d29fe7, 0x9d8f0f13 }, { 0x4130d078, 0xfaa700de, 0x6fa73793, 0x53c6c57e, 0x9b277967, - 0x7d79d784, 0xba7bc003, 00000000 + 0x7d79d784, 0xba7bc003 }, { 0x363975f5, 0x3ff3fb5a, 0x31ba5f29, 0xa825c5df, 0xc5ad64a4, - 0xffbd3d95, 0x83fbb2d6, 00000000 + 0xffbd3d95, 0x83fbb2d6 } }, { { 0x446ff3f7, 0x4a16c16, 0x8a1918d7, 0x9e165668, 0xabc45aa6, - 0x7d0e93, 0x85fc951c, 00000000 + 0x7d0e93, 0x85fc951c }, { 0x38af5997, 0xc1f9f91c, 0x17358d6b, 0xee3c40bb, 0x1988dec7, - 0x265937b5, 0x2916c753, 00000000 + 0x265937b5, 0x2916c753 }, { 0x949d524, 0x2e36b39e, 0xe86c31d4, 0x12ced5a2, 0xfb9f67c8, - 0xa88d017e, 0x73e65d29, 00000000 + 0xa88d017e, 0x73e65d29 } } }, @@ -17823,211 +17823,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xa693edab, 0xa4a63f14, 0x56353dd6, 0xe3a4e0ec, 0xffcb3734, - 0x4cb896d, 0x7772ab7c, 00000000 + 0x4cb896d, 0x7772ab7c }, { 0x9bea2bed, 0x305b733a, 0x7cecbbb5, 0x5bcc9200, 0x72d109d8, - 0x104df942, 0x77bd73bb, 00000000 + 0x104df942, 0x77bd73bb }, { 0xc99256f3, 0x85875797, 0xcc4b4e15, 0xdc125cf7, 0xbc31c93f, - 0x37c2ff6, 0xc71ac0d8, 00000000 + 0x37c2ff6, 0xc71ac0d8 } }, { { 0xd29a520f, 0xeb2d4ebb, 0xdc93a606, 0xe879a020, 0x7b2c2d5f, - 0xc9634fc5, 0xb414674e, 00000000 + 0xc9634fc5, 0xb414674e }, { 0x4949f049, 0xe5ddd1c, 0x919e0df3, 0x54b2c0a, 0x8d213185, - 0xb12f4320, 0xf92d10d6, 00000000 + 0xb12f4320, 0xf92d10d6 }, { 0x48ec0c3b, 0x67effca, 0x44e44d39, 0xccb94c30, 0x3bd0ed46, - 0xf341a7fb, 0x47881d52, 00000000 + 0xf341a7fb, 0x47881d52 } }, { { 0x5423c1b5, 0x3f82230, 0x9749774d, 0xaab8fd41, 0xf851b958, - 0xf9f1fcef, 0xc5864150, 00000000 + 0xf9f1fcef, 0xc5864150 }, { 0x29ffb0a0, 0x47649eb9, 0xc841cd55, 0xac9b4480, 0xe8349042, - 0x976534de, 0xfdcea2bc, 00000000 + 0x976534de, 0xfdcea2bc }, { 0x31b37e4e, 0x2d96baff, 0xc0761dd0, 0xba1aaad4, 0x189c69d4, - 0x6db8e23a, 0x4bef2ab1, 00000000 + 0x6db8e23a, 0x4bef2ab1 } }, { { 0x7d235fbd, 0xf8b2925c, 0x7e5eb8a4, 0x7494aef7, 0x884dcb52, - 0xbb46ad30, 0xbfa64652, 00000000 + 0xbb46ad30, 0xbfa64652 }, { 0x4a1fde83, 0xc142c6b1, 0x12b815ef, 0x4cad5e7c, 0x8aa87ac5, - 0xba9eab85, 0x28769974, 00000000 + 0xba9eab85, 0x28769974 }, { 0xf86e3431, 0x12c028c5, 0xdf9150d0, 0x70d738bb, 0xda20def9, - 0x371fffe2, 0x788993ef, 00000000 + 0x371fffe2, 0x788993ef } }, { { 0x430af8fe, 0x4065bc8c, 0x3654a466, 0x58a1fb7b, 0x8acc1d6e, - 0xc7dc6266, 0xa02ec31d, 00000000 + 0xc7dc6266, 0xa02ec31d }, { 0xbdbfb76e, 0xd0ecba6b, 0xabc4804e, 0x4483a0c9, 0x97812b48, - 0x53825095, 0xf668a40f, 00000000 + 0x53825095, 0xf668a40f }, { 0x423e936e, 0x4f97f75, 0xed538abf, 0x4f4fa724, 0xe1b23453, - 0xe438bbd7, 0x6e77b680, 00000000 + 0xe438bbd7, 0x6e77b680 } }, { { 0x47e46c13, 0x2ffefd5c, 0x41a7f370, 0x2190154e, 0xa4e5f5f, - 0x5371d51f, 0x6d26c265, 00000000 + 0x5371d51f, 0x6d26c265 }, { 0x6e7fc86b, 0xf74ffc4c, 0xd3900bc8, 0x690bd4c1, 0x29be7dc5, - 0x200df87f, 0x2e677810, 00000000 + 0x200df87f, 0x2e677810 }, { 0x3332bbe6, 0xfe7a93c5, 0x28eeea03, 0x880a5198, 0xe3b115ac, - 0x72b6576f, 0x81ebd4fc, 00000000 + 0x72b6576f, 0x81ebd4fc } }, { { 0xbbed3af4, 0x9664992a, 0x16b7f373, 0x3c51e471, 0x1e16fc49, - 0x69d038a1, 0x91c21e30, 00000000 + 0x69d038a1, 0x91c21e30 }, { 0x544d7472, 0x4a1306e0, 0xe4640da5, 0x66d6ce39, 0x325e6eb8, - 0x701ccd40, 0x20271d81, 00000000 + 0x701ccd40, 0x20271d81 }, { 0x99dd648c, 0x9af7dc31, 0x99905bb, 0x7f33289e, 0x15b9894a, - 0x1ac1b6de, 0x5fdb23ff, 00000000 + 0x1ac1b6de, 0x5fdb23ff } }, { { 0xa2e44022, 0x8b7ad5b6, 0x90835be9, 0xa5f07b10, 0x2bbac9c7, - 0x81c36f06, 0x6517039a, 00000000 + 0x81c36f06, 0x6517039a }, { 0xec04f691, 0x3a9d9b70, 0xe766f062, 0xb5351eea, 0x64bb600c, - 0x25fa84c9, 0xa15f63da, 00000000 + 0x25fa84c9, 0xa15f63da }, { 0x5cea5aa6, 0x705d8a1, 0xfc86a194, 0x7b8f8012, 0x8b3d7556, - 0xe945356e, 0xeced72e3, 00000000 + 0xe945356e, 0xeced72e3 } }, { { 0x8e71c958, 0x28ea634c, 0x8d6058e4, 0x908a5bee, 0xa4969f35, - 0xf54bc3c0, 0x8932f369, 00000000 + 0xf54bc3c0, 0x8932f369 }, { 0x80210d1a, 0x5d6ae1e6, 0x211874bd, 0xf43a275e, 0xd1b4c74e, - 0xa1d0d3a8, 0xcd19e2be, 00000000 + 0xa1d0d3a8, 0xcd19e2be }, { 0x63be765d, 0xfb2d3469, 0xccb3592e, 0x975890ba, 0x70b8282c, - 0xe242146f, 0xb6910db1, 00000000 + 0xe242146f, 0xb6910db1 } }, { { 0xa23a5d51, 0x75b3af42, 0x234746cb, 0xf57bce15, 0xb8dcf573, - 0x981c5c61, 0x233b7db2, 00000000 + 0x981c5c61, 0x233b7db2 }, { 0xa148b4cf, 0xa12c091a, 0x8753be2e, 0xe6edbfef, 0x8d7e53a2, - 0x8372f6c9, 0x89e7ca8a, 00000000 + 0x8372f6c9, 0x89e7ca8a }, { 0x7281726c, 0x9c5d0767, 0x4cd94628, 0xb8d682f8, 0x255435cd, - 0xb34779a2, 0xd6f19817, 00000000 + 0xb34779a2, 0xd6f19817 } }, { { 0x19ac9215, 0x84be7502, 0x5c70dd22, 0xd4bc5470, 0xb5126363, - 0xa3da6495, 0x53a7b2d7, 00000000 + 0xa3da6495, 0x53a7b2d7 }, { 0x57268dd4, 0x799f9b99, 0x2f65eca9, 0xdea7e451, 0xccd16abd, - 0x1f4e1725, 0x215750ab, 00000000 + 0x1f4e1725, 0x215750ab }, { 0xab893691, 0xad2b88ae, 0x772207fe, 0xb2495a60, 0x1de47163, - 0x2c9fbc77, 0xbec7f4b7, 00000000 + 0x2c9fbc77, 0xbec7f4b7 } }, { { 0x2fd9490a, 0x6dc45990, 0x69f63fa, 0xf31be4f3, 0xff6692ae, - 0xfd67ddd8, 0x31e8ba41, 00000000 + 0xfd67ddd8, 0x31e8ba41 }, { 0xc35fd726, 0x4214d35c, 0xb8e4da91, 0x52fd55a8, 0x79e6ffea, - 0xad178345, 0x1064a9f8, 00000000 + 0xad178345, 0x1064a9f8 }, { 0x44d8b7a2, 0x9a4de3eb, 0x35eddb, 0xa8afc246, 0xccf5327f, - 0x48790eb5, 0x3c3ae5f9, 00000000 + 0x48790eb5, 0x3c3ae5f9 } }, { { 0x40b0e427, 0x5d7dedd, 0x93bdf18b, 0xdc67acce, 0x41bddedf, - 0xacbd7ade, 0xf8ad5b46, 00000000 + 0xacbd7ade, 0xf8ad5b46 }, { 0x8e79ccef, 0xb4e01126, 0x6e5f2d9e, 0x11989da3, 0x52d52337, - 0xb5b9365b, 0xde25cbe0, 00000000 + 0xb5b9365b, 0xde25cbe0 }, { 0x4c5e5790, 0xdcdfde89, 0x3a4ea271, 0xfb765a2d, 0x8b6037ad, - 0x3f570ed, 0xded648aa, 00000000 + 0x3f570ed, 0xded648aa } }, { { 0xbf353b2b, 0x6caba93a, 0x786de4a4, 0xdfaeb5a9, 0x1750a3a, - 0xeb20a697, 0x9a87de82, 00000000 + 0xeb20a697, 0x9a87de82 }, { 0x7dd8db83, 0xcf901551, 0x2a0d126c, 0x2df7fef4, 0xf95d3791, - 0xa25aee09, 0x699885c5, 00000000 + 0xa25aee09, 0x699885c5 }, { 0x3285b227, 0x545c5e99, 0x558d2d6a, 0x7c65bb5d, 0xbca118c4, - 0x53e418f5, 0x48fdfe5c, 00000000 + 0x53e418f5, 0x48fdfe5c } }, { { 0x6c53f464, 0x8d2f30a5, 0x279a0aae, 0xc2bd421d, 0x4dedb65e, - 0xd758bb6a, 0xe19698c2, 00000000 + 0xd758bb6a, 0xe19698c2 }, { 0x71e05f62, 0x6cbca507, 0x5199d740, 0x7dbdcfdf, 0x6ba47085, - 0x457c31f, 0xcc6f4c22, 00000000 + 0x457c31f, 0xcc6f4c22 }, { 0xe5799b5e, 0x47eb0943, 0x7aba3b89, 0xdf8eb085, 0x5081e1d7, - 0x75a1175b, 0xa6074efb, 00000000 + 0x75a1175b, 0xa6074efb } } }, @@ -18035,211 +18035,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x2182c276, 0x87e40175, 0xfc5820dc, 0xad1b6fb7, 0xe8e4b414, - 0x23b920a2, 0xff7e5289, 00000000 + 0x23b920a2, 0xff7e5289 }, { 0xb8d7c42f, 0x7995ce15, 0xa8c7093f, 0xead8f10e, 0xdc316d9d, - 0x6b4fddff, 0xc207149d, 00000000 + 0x6b4fddff, 0xc207149d }, { 0x8fbceb9c, 0xca92a8dd, 0xc4e17f34, 0xb5b11d0e, 0x804628e3, - 0x689dad86, 0xd76dee92, 00000000 + 0x689dad86, 0xd76dee92 } }, { { 0x6f25cd40, 0x1b9c586f, 0x1ea41ba7, 0xae49327e, 0x82399a9b, - 0x31cc73f5, 0x9d8b11e2, 00000000 + 0x31cc73f5, 0x9d8b11e2 }, { 0xbfac5a87, 0x98cd4450, 0xea068b7e, 0x88f4a050, 0x8f04b668, - 0xd2596a58, 0x7f094730, 00000000 + 0xd2596a58, 0x7f094730 }, { 0xe8b01fca, 0xfcab53, 0x52d70727, 0x1ede4855, 0x34e9c49f, - 0xa2e84b65, 0x1f9fdbcf, 00000000 + 0xa2e84b65, 0x1f9fdbcf } }, { { 0xaf6cfd87, 0x99183c08, 0x27c2f791, 0x7b284a47, 0xe7a45f40, - 0x510beea8, 0xdb577c43, 00000000 + 0x510beea8, 0xdb577c43 }, { 0x9991991d, 0x2056f453, 0xa8ba24c2, 0x4fd4a95a, 0xe9e8032f, - 0x8ec6e660, 0x811c409a, 00000000 + 0x8ec6e660, 0x811c409a }, { 0xb5623840, 0x4816e8c2, 0x1ac5b2b6, 0x75dc512f, 0xe47d9794, - 0xc951423c, 0xb48704ef, 00000000 + 0xc951423c, 0xb48704ef } }, { { 0x634373f4, 0xff605831, 0x2cf3be74, 0xf0a3ecc9, 0xb5c0c767, - 0xfa3992af, 0x8404058e, 00000000 + 0xfa3992af, 0x8404058e }, { 0x98900f19, 0x978ee411, 0xafad0944, 0x833aea8f, 0xe4f0860c, - 0x84aa63bb, 0x5b287a7, 00000000 + 0x84aa63bb, 0x5b287a7 }, { 0xb9227576, 0x1842c182, 0xaef907b1, 0xb803eaf0, 0x6fb2c3e2, - 0x2d3e1d39, 0x41160d7f, 00000000 + 0x2d3e1d39, 0x41160d7f } }, { { 0x4e2196ff, 0xb6086f9, 0xc6fb2d9b, 0xb06ba3c7, 0xb0f9a3ad, - 0xc2faca53, 0x1cecf733, 00000000 + 0xc2faca53, 0x1cecf733 }, { 0xd80ad361, 0xf7d20820, 0x92126868, 0x57123f92, 0x25081c24, - 0x9449e5d5, 0xcd158f44, 00000000 + 0x9449e5d5, 0xcd158f44 }, { 0xcf4b5e52, 0xf6a303c6, 0x23ea694b, 0xd5b04a2c, 0xeefe6b0c, - 0x93e4a12d, 0xb01a6109, 00000000 + 0x93e4a12d, 0xb01a6109 } }, { { 0xee235654, 0xeac408a9, 0xe3ebbb62, 0xfe8b37b, 0x4f6094d8, - 0x6b0fdb76, 0x865e1382, 00000000 + 0x6b0fdb76, 0x865e1382 }, { 0x21c28fbf, 0x6aa9d2b0, 0xae04b0c5, 0x84ab2a29, 0x94da0b0b, - 0xcbd9963e, 0x2b6f2431, 00000000 + 0xcbd9963e, 0x2b6f2431 }, { 0x40a44d2d, 0x5c995513, 0x39258cb8, 0xb30c5fbf, 0x1661b84e, - 0x1a401d80, 0x5d28c157, 00000000 + 0x1a401d80, 0x5d28c157 } }, { { 0x1d97e190, 0xf7db6f2a, 0xc57abb6b, 0x2312f582, 0xb9deff02, - 0x395d960f, 0x3dd643aa, 00000000 + 0x395d960f, 0x3dd643aa }, { 0x72804b3, 0x49484455, 0x28d59349, 0x7e392ffb, 0x9180379b, - 0x8a0f3ef1, 0xcddda122, 00000000 + 0x8a0f3ef1, 0xcddda122 }, { 0xbbd06fc6, 0x2b9572f4, 0x487b45a1, 0x903f1aa, 0xacb994e3, - 0x62fb0754, 0x7971e9ce, 00000000 + 0x62fb0754, 0x7971e9ce } }, { { 0x50148f20, 0xfe3ed93d, 0xc7ccdd1b, 0x23ce972f, 0x68ca7ef7, - 0x41cdccd1, 0x4ab3e3a8, 00000000 + 0x41cdccd1, 0x4ab3e3a8 }, { 0x3f642025, 0xd7fc47bd, 0x786139cd, 0x21f9f014, 0x42363ced, - 0xa24060f1, 0xc999d436, 00000000 + 0xa24060f1, 0xc999d436 }, { 0x3e70f27f, 0x306ce01d, 0xd7bc7aa7, 0xe4c2a84c, 0x5ba283b, - 0xc5d31cc0, 0x1f6d1f01, 00000000 + 0xc5d31cc0, 0x1f6d1f01 } }, { { 0x4af2426a, 0xcf9816d9, 0xcbdf9dc5, 0xc17f0e98, 0x7fa226bc, - 0x25fe4e6f, 0xd250aa08, 00000000 + 0x25fe4e6f, 0xd250aa08 }, { 0xfb2d933c, 0x2d1c1167, 0x8385248a, 0x79693be1, 0x675f0c75, - 0xa4dfe485, 0x41591fbd, 00000000 + 0xa4dfe485, 0x41591fbd }, { 0x174b406b, 0xbdbee110, 0xf12d6690, 0xc1c6713b, 0x670552aa, - 0x77018ade, 0xada8e04f, 00000000 + 0x77018ade, 0xada8e04f } }, { { 0xa315a6d, 0xc3fe240c, 0xf12d819e, 0x730cc83d, 0xf5d0fa8b, - 0x6dc479fc, 0xa6c4c1a3, 00000000 + 0x6dc479fc, 0xa6c4c1a3 }, { 0xed996518, 0x8c1d2bd1, 0xf5dfeb0d, 0x41344082, 0xad800958, - 0x483bead0, 0xe71ca618, 00000000 + 0x483bead0, 0xe71ca618 }, { 0x31710e3c, 0x5e19f3a5, 0x250fa7cb, 0x8ac0e42c, 0x35d2320d, - 0x854800f3, 0x4ea63742, 00000000 + 0x854800f3, 0x4ea63742 } }, { { 0x27aa33f0, 0xcd2b030, 0xdebfac4e, 0x76603bc9, 0x10098042, - 0xc3d1dca, 0xc344e314, 00000000 + 0xc3d1dca, 0xc344e314 }, { 0x61602a71, 0x309ad10b, 0x74aa8a73, 0x88bf88e6, 0xb4f73eec, - 0xd50e7383, 0x38ed83a9, 00000000 + 0xd50e7383, 0x38ed83a9 }, { 0xd98c823c, 0x10e295d4, 0xf4964275, 0x37229e71, 0xead98134, - 0x188dc753, 0xddfcbc9, 00000000 + 0x188dc753, 0xddfcbc9 } }, { { 0xa322dc02, 0x25579ecc, 0x7c102168, 0x98a57a82, 0xf08ff1df, - 0xbb15e948, 0x5a74cb89, 00000000 + 0xbb15e948, 0x5a74cb89 }, { 0x87cab4d, 0x42be4ec4, 0x504f09f9, 0xd33e484e, 0xfb56c208, - 0xcc38db15, 0x46f0fcd4, 00000000 + 0xcc38db15, 0x46f0fcd4 }, { 0x6630c8ba, 0x5b2b845e, 0x23042cf2, 0xb2658bf9, 0x33f2a9cf, - 0xe6f1aa9f, 0xf6735136, 00000000 + 0xe6f1aa9f, 0xf6735136 } }, { { 0x10b720d3, 0x6d4586f3, 0xf044b533, 0x565b7445, 0xd67662a6, - 0x274ad3cd, 0xf97fe8ff, 00000000 + 0x274ad3cd, 0xf97fe8ff }, { 0x8528e486, 0x82dc8505, 0x1b9963bf, 0xc7e96834, 0xea6030d7, - 0x21676cf3, 0xf23e4a06, 00000000 + 0x21676cf3, 0xf23e4a06 }, { 0x92490d2b, 0xe02cdd61, 0x2daceefc, 0xff9c27f, 0x662e96c6, - 0xa4302b1c, 0xcbb0e39a, 00000000 + 0xa4302b1c, 0xcbb0e39a } }, { { 0x4b6e886f, 0x2e93c033, 0x1c252549, 0x722b16f1, 0xe80c990c, - 0x547dde8, 0xe0217a8b, 00000000 + 0x547dde8, 0xe0217a8b }, { 0x82fbe5, 0xa2642da8, 0xe4f2d097, 0xb355eea, 0xdcd6ed6e, - 0xa93380f7, 0x42f6ffcc, 00000000 + 0xa93380f7, 0x42f6ffcc }, { 0x253dc35a, 0x93ef59b3, 0x71b34147, 0xca387c48, 0xadd85d77, - 0x77f3100b, 0xa843a8a2, 00000000 + 0x77f3100b, 0xa843a8a2 } }, { { 0x575510d0, 0xfc7a355, 0x6ec18454, 0x51fdcf6e, 0x6c2c3676, - 0xbc9140f0, 0x28b1ab9d, 00000000 + 0xbc9140f0, 0x28b1ab9d }, { 0x52754e9f, 0xaeaa53ab, 0xbe8c8604, 0x2eab7712, 0x9e530efe, - 0x76370ac3, 0xa7b8905d, 00000000 + 0x76370ac3, 0xa7b8905d }, { 0xeaa47608, 0x6df4990e, 0x26e53eb4, 0x1e1c98ab, 0x13c289f2, - 0x5ffc8e3a, 0x983058a1, 00000000 + 0x5ffc8e3a, 0x983058a1 } } }, @@ -18247,211 +18247,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xec519091, 0x80b425fd, 0x83854814, 0x8075ca28, 0xb39264a5, - 0x44085ce7, 0x9e8960ad, 00000000 + 0x44085ce7, 0x9e8960ad }, { 0x64548852, 0x82ae881a, 0xc4671089, 0x949102bd, 0x5ff63d6a, - 0x31bbaf63, 0xc1435c2c, 00000000 + 0x31bbaf63, 0xc1435c2c }, { 0x39fff4e5, 0x14620c09, 0x52050bf4, 0x30a29bbc, 0x989af0a6, - 0x8af2fb3e, 0x67821900, 00000000 + 0x8af2fb3e, 0x67821900 } }, { { 0xe23228f3, 0xad00d76, 0xa635c3b4, 0xb3e6aff4, 0x961e55b1, - 0xe134c618, 0xdc9173f4, 00000000 + 0xe134c618, 0xdc9173f4 }, { 0x91e2e39a, 0xf37600f8, 0xee41e146, 0x3832b699, 0x18c10e68, - 0x7b9f3ef1, 0x42fa03e0, 00000000 + 0x7b9f3ef1, 0x42fa03e0 }, { 0x212c05f5, 0x5235ad78, 0x4508a843, 0x9954a44b, 0x88e75bf9, - 0xc07c4869, 0x8cefa7cf, 00000000 + 0xc07c4869, 0x8cefa7cf } }, { { 0x16e18d43, 0xe10089f, 0x902b96ec, 0x43ad6e22, 0xfe3a5239, - 0x497efbcc, 0xa37f8755, 00000000 + 0x497efbcc, 0xa37f8755 }, { 0xff67a8a0, 0xaf82950d, 0x8df82ad4, 0x5d3f73, 0x3ff3dadd, - 0x29221999, 0xc0873ebd, 00000000 + 0x29221999, 0xc0873ebd }, { 0xee5bacc6, 0x1043de64, 0x75bb0a01, 0x98834438, 0xfe0b77c2, - 0x1b860c90, 0x41f09dd5, 00000000 + 0x1b860c90, 0x41f09dd5 } }, { { 0x66370591, 0xdbc108bc, 0xc0da8354, 0x5296e543, 0xae266155, - 0x49f6097b, 0x2338000a, 00000000 + 0x49f6097b, 0x2338000a }, { 0xc0c2d207, 0x94b4173f, 0x6de2a558, 0x312ab0ca, 0x49b10a3e, - 0xddf15ecd, 0x82a15491, 00000000 + 0xddf15ecd, 0x82a15491 }, { 0xa36336b1, 0x6b227c6a, 0x2d284a57, 0x35c6ede9, 0x573d8309, - 0xc1a0eef6, 0xccbdfd5f, 00000000 + 0xc1a0eef6, 0xccbdfd5f } }, { { 0xb3b01ea1, 0x3e1af8d8, 0x505acedc, 0xe15a9f79, 0x94afe1c1, - 0x755ff8bb, 0x6eddf8c8, 00000000 + 0x755ff8bb, 0x6eddf8c8 }, { 0x9e9d07aa, 0xc11b943c, 0xc2e1e4fd, 0x26fa4a64, 0xbd71cd33, - 0x91e8c724, 0x265f81ed, 00000000 + 0x91e8c724, 0x265f81ed }, { 0x4b007c3c, 0xd0088bc6, 0xdd211035, 0xb6197d13, 0x614af8e0, - 0x97755af8, 0xf52a7521, 00000000 + 0x97755af8, 0xf52a7521 } }, { { 0x4d6ec72a, 0xf89757ec, 0x195f251f, 0xbc8f393, 0x5b742898, - 0x8f0d08fd, 0x2d44b83b, 00000000 + 0x8f0d08fd, 0x2d44b83b }, { 0x8502c164, 0xf63592e3, 0x25f6bed9, 0x2620194d, 0x3801f166, - 0x188e0632, 0x174bf9cd, 00000000 + 0x188e0632, 0x174bf9cd }, { 0x2c4eec3d, 0x3590214, 0xeb36b7d4, 0xb068120d, 0x50732359, - 0x42783997, 0x501d2f, 00000000 + 0x42783997, 0x501d2f } }, { { 0xe30a6f92, 0xa9868fce, 0x89066738, 0x20aa0fa3, 0xe94007ba, - 0x98d12f2, 0xc6d663d6, 00000000 + 0x98d12f2, 0xc6d663d6 }, { 0x34987a08, 0x6644394f, 0xcfab3e2e, 0x66851373, 0x990d5594, - 0xd4404dbe, 0xb1d114e3, 00000000 + 0xd4404dbe, 0xb1d114e3 }, { 0x5d67ce09, 0x92212ede, 0x5ceaa78e, 0xdbad1be3, 0xb722423, - 0x85984ec2, 0x3c302e05, 00000000 + 0x85984ec2, 0x3c302e05 } }, { { 0x47db2db9, 0xe4aeba60, 0x3a6c39f9, 0x4c0f57b2, 0x476231af, - 0x99a2ac0, 0x614a3d3d, 00000000 + 0x99a2ac0, 0x614a3d3d }, { 0xc7db4b20, 0xd9708d9e, 0x5bce9eca, 0x54eaa3fb, 0x2453a11, - 0x2688c8c4, 0x285c254d, 00000000 + 0x2688c8c4, 0x285c254d }, { 0x5ae9baea, 0xc4f6a41e, 0x6345858b, 0x6e735e5b, 0x3f58acde, - 0xf8e43e3d, 0x63b166ba, 00000000 + 0xf8e43e3d, 0x63b166ba } }, { { 0x3c148712, 0x53753bf, 0x217f2cd0, 0x445e5b8d, 0xb7014756, - 0xa0788ea4, 0x5c486969, 00000000 + 0xa0788ea4, 0x5c486969 }, { 0x4d97c34c, 0x99a0b501, 0x47193146, 0x3aba20dd, 0x591271e9, - 0xc213d4a1, 0x75a58fed, 00000000 + 0xc213d4a1, 0x75a58fed }, { 0x7e40ad6, 0x3e1ac06, 0x5c2cd1cb, 0xcd08912c, 0xf3552485, - 0x9e58f33a, 0x58467f22, 00000000 + 0x9e58f33a, 0x58467f22 } }, { { 0x3ccbb446, 0x5cff853a, 0x43814dd3, 0xad6d506a, 0xb2a27ed0, - 0x9b27d2bf, 0x204b0e9d, 00000000 + 0x9b27d2bf, 0x204b0e9d }, { 0xbb76e175, 0xd100996e, 0x8c811d9, 0x50287563, 0xbb297308, - 0xe66eb0bb, 0x392378e3, 00000000 + 0xe66eb0bb, 0x392378e3 }, { 0xe7e59a7c, 0x5c13a93f, 0xca13e024, 0xc9294da6, 0x6c30fdb4, - 0x44fdc6f2, 0xab9fe8dd, 00000000 + 0x44fdc6f2, 0xab9fe8dd } }, { { 0x6432aebe, 0xa8a80247, 0xfafd6d9, 0xda794da2, 0xa205f58c, - 0x1702710d, 0xbe2f8317, 00000000 + 0x1702710d, 0xbe2f8317 }, { 0x8c5566ed, 0xb7de6261, 0x695c20a7, 0x8374cde1, 0xa6029d46, - 0xd282e63e, 0xf59eead2, 00000000 + 0xd282e63e, 0xf59eead2 }, { 0x288e6f9a, 0x93d0e784, 0xfdee48be, 0xa3f82e1f, 0xe98420d8, - 0x3ec78e4b, 0xa704531f, 00000000 + 0x3ec78e4b, 0xa704531f } }, { { 0xe1d911b0, 0x57da92d8, 0x37418923, 0x6abde44c, 0x9995a34c, - 0x56064463, 0x91dc63cf, 00000000 + 0x56064463, 0x91dc63cf }, { 0x2fdb3c01, 0xf3bb86bb, 0x3caac55e, 0xa3884dbc, 0x7bc69ff8, - 0x39272677, 0x7ffefdf4, 00000000 + 0x39272677, 0x7ffefdf4 }, { 0x68b8e143, 0x359c2d4f, 0x811b84b9, 0xb36a0a32, 0x6452d8c8, - 0x94672866, 0x8739617b, 00000000 + 0x94672866, 0x8739617b } }, { { 0x5fb617e2, 0x1abc57ee, 0xe4b2b9c9, 0x74b37af6, 0x92787d34, - 0xa679b094, 0x211a492e, 00000000 + 0xa679b094, 0x211a492e }, { 0xb34f7018, 0xa980e0cb, 0xe0c17cc0, 0x84e9b480, 0x95953d51, - 0x613b7c72, 0xfc73256e, 00000000 + 0x613b7c72, 0xfc73256e }, { 0x2e0fa3c1, 0x37112611, 0xdbfb4cee, 0x72b063e9, 0x7ebb72, - 0x6a30ef85, 0x2d5584f9, 00000000 + 0x6a30ef85, 0x2d5584f9 } }, { { 0x697154d5, 0x5a2810bd, 0x94bb5c1d, 0xad20ad63, 0x53536970, - 0x21386a38, 0x80f65382, 00000000 + 0x21386a38, 0x80f65382 }, { 0x2cd7cfb0, 0x4136862a, 0x9fd0cca3, 0x7195c77a, 0xec796b9, - 0x2c5013de, 0x2ba60ce4, 00000000 + 0x2c5013de, 0x2ba60ce4 }, { 0x14402204, 0x4886b3ba, 0x75123858, 0x3fecb871, 0xdb38c774, - 0xa10e14fb, 0xae7e0328, 00000000 + 0xa10e14fb, 0xae7e0328 } }, { { 0x3ce873aa, 0x5d2ca648, 0x1a912c49, 0x7328c38b, 0x7505b9e8, - 0xee21134b, 0x6aa7c5c0, 00000000 + 0xee21134b, 0x6aa7c5c0 }, { 0xfbd322d9, 0xb85b2de8, 0x8e03a295, 0x99ea839e, 0x52e10006, - 0xeeb3a592, 0xec9d4f2b, 00000000 + 0xeeb3a592, 0xec9d4f2b }, { 0x71fc4b47, 0x3b7c2162, 0xd19a9484, 0xdcaab216, 0xaed37cf1, - 0x37984c7b, 0xce573166, 00000000 + 0x37984c7b, 0xce573166 } } }, @@ -18459,211 +18459,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x5c208c88, 0x7d3f54fa, 0x2d3a413c, 0xdf36a87c, 0x25b15d4f, - 0x23fd664b, 0x74cae4c2, 00000000 + 0x23fd664b, 0x74cae4c2 }, { 0x24c13317, 0x3505a57c, 0x3a1db67e, 0x696ea0f7, 0xeda5896d, - 0x668d1853, 0x7f96bffd, 00000000 + 0x668d1853, 0x7f96bffd }, { 0x53ec8ffd, 0x546c1388, 0xbf11624d, 0xe49a262b, 0x9f528ce8, - 0xd0bdb827, 0x56ca21d7, 00000000 + 0xd0bdb827, 0x56ca21d7 } }, { { 0x34599736, 0x19c8d669, 0x161ab1b0, 0x745539e3, 0xbf5422f, - 0xdf34504b, 0xe2487f85, 00000000 + 0xdf34504b, 0xe2487f85 }, { 0x7cc20ae7, 0x409553e5, 0x405fe630, 0xe7d0d2bd, 0x118dea4e, - 0x6827ba60, 0x1d09d6c8, 00000000 + 0x6827ba60, 0x1d09d6c8 }, { 0x86cdd3fd, 0x6f1eb106, 0x42831aba, 0x82c88d1f, 0xa6e727dd, - 0xb43968fb, 0xece0996d, 00000000 + 0xb43968fb, 0xece0996d } }, { { 0x5a7a23bf, 0xddbea4a6, 0xbc308ae8, 0x9cb9407f, 0xc08d136b, - 0xbd6ab0ef, 0x22c5b4f6, 00000000 + 0xbd6ab0ef, 0x22c5b4f6 }, { 0x5cd922f4, 0xefc3b3a0, 0x10c08373, 0x65af1a78, 0xadbd7a73, - 0xa517845b, 0x2dbe94d9, 00000000 + 0xa517845b, 0x2dbe94d9 }, { 0x108c153f, 0x5659f036, 0xb384be73, 0x27da059f, 0xff1c41e1, - 0x18b68674, 0xfbb8c51b, 00000000 + 0x18b68674, 0xfbb8c51b } }, { { 0x11a94019, 0x83f7852e, 0x50d52f45, 0xab0444ce, 0xfb4ac968, - 0xe089dbf7, 0xb3db0f7a, 00000000 + 0xe089dbf7, 0xb3db0f7a }, { 0xa87194cb, 0x521bb873, 0xdd859c27, 0x703f18b3, 0xf364c38b, - 0xced2d33e, 0x20a080c4, 00000000 + 0xced2d33e, 0x20a080c4 }, { 0xd9759e24, 0x39cc585a, 0xd5411f0b, 0xa389f8bc, 0xe10cdfc9, - 0xf8c12657, 0x7bef550d, 00000000 + 0xf8c12657, 0x7bef550d } }, { { 0xc57aa2f8, 0xd88988f9, 0x17448ac4, 0x488c4ba3, 0xd28c7fda, - 0xce40d805, 0x51384a24, 00000000 + 0xce40d805, 0x51384a24 }, { 0x73414276, 0x6105c8b2, 0x8b5f77ca, 0xe5a7de3, 0x686f1cf3, - 0x96d1366f, 0xb0a669ad, 00000000 + 0x96d1366f, 0xb0a669ad }, { 0x78d612b6, 0x7b65fb75, 0x644b8cf0, 0x24b2f00a, 0x6a776943, - 0x5c26eecc, 0xacf7a66a, 00000000 + 0x5c26eecc, 0xacf7a66a } }, { { 0x60664299, 0x2fff1ee4, 0x81c09d95, 0xff46f138, 0x1493818e, - 0x8deb2286, 0xf9552860, 00000000 + 0x8deb2286, 0xf9552860 }, { 0x2fb07d80, 0xf6164e36, 0x8442474c, 0xa04b5117, 0x4f091e0, - 0x7b920ded, 0x2950433c, 00000000 + 0x7b920ded, 0x2950433c }, { 0x98905e7a, 0x73144959, 0xf485e44f, 0x39f49c0f, 0x1d2add6a, - 0xb8fb6463, 0x3b625e8b, 00000000 + 0xb8fb6463, 0x3b625e8b } }, { { 0x45642ea9, 0x6a7c4ffa, 0xd7bd1e4f, 0x46e378c8, 0x5e9c179b, - 0x44db32ac, 0x655064ba, 00000000 + 0x44db32ac, 0x655064ba }, { 0x5052caa6, 0x6b542df8, 0x319e408d, 0xf3b199a1, 0x9d3ad6d7, - 0xdd945668, 0xe412e702, 00000000 + 0xdd945668, 0xe412e702 }, { 0xb6e29985, 0xc5bab4f2, 0x2469706d, 0x95a066a1, 0x94eac759, - 0x8ecd7013, 0xe7222ca8, 00000000 + 0x8ecd7013, 0xe7222ca8 } }, { { 0x2a909235, 0xd1a788f8, 0x845498bf, 0x2f0a636c, 0xc38dfd9e, - 0x9545f8f5, 0xb10cb021, 00000000 + 0x9545f8f5, 0xb10cb021 }, { 0x1430c408, 0x7140fb72, 0x9c36b264, 0x653942c1, 0xda1935ec, - 0x5e32409d, 0x618095bc, 00000000 + 0x5e32409d, 0x618095bc }, { 0xc9c39bf2, 0x71295ce, 0x29b24d91, 0xcaa25f1f, 0xe3bde528, - 0xc66f6952, 0x9ab8b425, 00000000 + 0xc66f6952, 0x9ab8b425 } }, { { 0x5b1c0c0, 0xc7307dcb, 0x84fbe6c5, 0x420de47a, 0x435b0bf, - 0x2397b81a, 0x6f2c6741, 00000000 + 0x2397b81a, 0x6f2c6741 }, { 0x8afdd77, 0x447fc5de, 0xf17e4abe, 0x80111e7f, 0xc0828b98, - 0xed8af81c, 0x733e9157, 00000000 + 0xed8af81c, 0x733e9157 }, { 0x95e147fc, 0x1ee9204d, 0x8b676e7c, 0x30f91db2, 0x8d87498b, - 0x8389f772, 0x80bb046e, 00000000 + 0x8389f772, 0x80bb046e } }, { { 0xa5e1cf0f, 0x5939e6aa, 0xc83059b5, 0xa70eed9e, 0xb9615e9d, - 0xaf80f3b8, 0xb85c3ea1, 00000000 + 0xaf80f3b8, 0xb85c3ea1 }, { 0x40632bfd, 0xc80e4f90, 0xef53cf14, 0x87e6822d, 0x12ab67d9, - 0x54420b03, 0x8f8e96cb, 00000000 + 0x54420b03, 0x8f8e96cb }, { 0x485cde4f, 0x9e89ceee, 0x55b3db6c, 0x857b81bc, 0xd2955bb5, - 0x1684e043, 0x98084ca2, 00000000 + 0x1684e043, 0x98084ca2 } }, { { 0x46040e73, 0x383a2d4e, 0xa0ace7a3, 0xf8be484e, 0xcef46604, - 0x3441da92, 0xd97be5ac, 00000000 + 0x3441da92, 0xd97be5ac }, { 0xad292ef2, 0xd9437662, 0xd153f933, 0xb3621d13, 0xd423b63e, - 0x2dbce409, 0x4b9d5d39, 00000000 + 0x2dbce409, 0x4b9d5d39 }, { 0x68b6facb, 0x31a1039c, 0x6f020085, 0xc016606e, 0x27a08c21, - 0x5d978608, 0xd067187d, 00000000 + 0x5d978608, 0xd067187d } }, { { 0x98591126, 0x61cac16d, 0x6a4225b1, 0x50785303, 0x70e5a994, - 0xcbacafb4, 0x473cd88d, 00000000 + 0xcbacafb4, 0x473cd88d }, { 0x5d8bf839, 0x8ed42849, 0x6cb9c070, 0x4595bfc7, 0xfa7634b4, - 0x9821fe1f, 0x8b624d0d, 00000000 + 0x9821fe1f, 0x8b624d0d }, { 0xa11bdb1c, 0xfa4db8af, 0x75ac10cf, 0xcc8373b8, 0x5d36d7ac, - 0x9b1a2f38, 0xcaf395c8, 00000000 + 0x9b1a2f38, 0xcaf395c8 } }, { { 0xba357cf8, 0x34eead74, 0x57216262, 0x6d72ea13, 0x68e20d39, - 0xd6290721, 0x376e6477, 00000000 + 0xd6290721, 0x376e6477 }, { 0x2f0c99fe, 0x3f79f67a, 0x2ea5b4b6, 0xca3b6191, 0xa6272ebc, - 0x503bf7ee, 0x57a12d6f, 00000000 + 0x503bf7ee, 0x57a12d6f }, { 0x4925f0eb, 0xa09f69f8, 0xbf000909, 0xcc6853c6, 0x8638711e, - 0xff3f4c67, 0x87fd7c27, 00000000 + 0xff3f4c67, 0x87fd7c27 } }, { { 0x68fca246, 0xbd07ee5e, 0xae95e8b3, 0xfe441325, 0x73cd7ff, - 0x2cbea32, 0xba6d0148, 00000000 + 0x2cbea32, 0xba6d0148 }, { 0x334bb273, 0xc4953df2, 0x773f07e4, 0x61557f58, 0x314214ad, - 0xf13c689b, 0x1a1ef26c, 00000000 + 0xf13c689b, 0x1a1ef26c }, { 0x4e844298, 0x68a16f3b, 0xf57a48bd, 0xc29c170c, 0xc25a770, - 0x1ec891e8, 0xb2d7c5d7, 00000000 + 0x1ec891e8, 0xb2d7c5d7 } }, { { 0x2bdb863f, 0xad27b2ae, 0xd7b448cb, 0x685abd6c, 0xfa2e7ed3, - 0x6268c604, 0x2db93890, 00000000 + 0x6268c604, 0x2db93890 }, { 0xf7a358ad, 0xbbe862e8, 0x5d167b21, 0x23232921, 0xb7d852ac, - 0x41ca71ad, 0x9576b443, 00000000 + 0x41ca71ad, 0x9576b443 }, { 0x9b71524f, 0xebb73d1d, 0x1689eb03, 0x9abe4a06, 0x705cc03d, - 0xf2fbf87b, 0x4be3c55b, 00000000 + 0xf2fbf87b, 0x4be3c55b } } }, @@ -18671,211 +18671,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xbd6b5e77, 0x987a5568, 0x8da4aff6, 0x82df559e, 0x47fc0b7e, - 0x5d853e69, 0x1d6adc3a, 00000000 + 0x5d853e69, 0x1d6adc3a }, { 0xf5ef7454, 0xb0da5da4, 0x294bba51, 0xb0e49f23, 0x8d58157e, - 0x14831dc8, 0xf05f8357, 00000000 + 0x14831dc8, 0xf05f8357 }, { 0x21392a9f, 0xc500111e, 0xfbcc412f, 0x700a9d48, 0x681fa44f, - 0x30486057, 0xd63792a0, 00000000 + 0x30486057, 0xd63792a0 } }, { { 0xc0f5ea8, 0x5821846e, 0xe70e09a8, 0x488dddb0, 0xb5754b5f, - 0xd34290cf, 0xeef1fab0, 00000000 + 0xd34290cf, 0xeef1fab0 }, { 0xb01b93b7, 0x7b1e6c9c, 0x33c9319, 0x4007a083, 0xcad1999b, - 0x1e728691, 0x7092f2f7, 00000000 + 0x1e728691, 0x7092f2f7 }, { 0x5a58addd, 0x464d34c0, 0xc1bdc156, 0xea708ab2, 0xdf742f7b, - 0x7c30b96, 0xf0a8c437, 00000000 + 0x7c30b96, 0xf0a8c437 } }, { { 0xc62f225, 0x2b0042aa, 0xb6539310, 0x3567c0ac, 0x7f222e41, - 0xa4e42030, 0xf78126aa, 00000000 + 0xa4e42030, 0xf78126aa }, { 0x8e68f1c6, 0x28f078ae, 0x8501aacd, 0x47b0cae7, 0xe4ca8a99, - 0xd9551134, 0xeb2756ff, 00000000 + 0xd9551134, 0xeb2756ff }, { 0x13657944, 0xec097af9, 0xe5df95ff, 0xab780cb, 0x86894f84, - 0xcd89cc61, 0x6c7d1996, 00000000 + 0xcd89cc61, 0x6c7d1996 } }, { { 0x349f874b, 0x13e0d0a2, 0x8f76faa5, 0x178768fe, 0x9c637ab5, - 0x8ce23134, 0xfdd611ee, 00000000 + 0x8ce23134, 0xfdd611ee }, { 0x4308237e, 0x7fb6ed0, 0x67b95558, 0xe500dc30, 0x57abc912, - 0xacd042e5, 0x75de0207, 00000000 + 0xacd042e5, 0x75de0207 }, { 0x41450314, 0xc2789e2c, 0xf8db5762, 0x2dfb0c64, 0x655a95cb, - 0x6f3411f9, 0x69fb6694, 00000000 + 0x6f3411f9, 0x69fb6694 } }, { { 0x3d5852ee, 0x40d1f43e, 0xcea442d0, 0xd8e751a, 0x4c8edd6, - 0x48c88486, 0xfa2d82ff, 00000000 + 0x48c88486, 0xfa2d82ff }, { 0xa5c9008a, 0x54b60039, 0x3ea05152, 0x4d4453f1, 0xd17e84b6, - 0xfcb8559f, 0x4b596bc5, 00000000 + 0xfcb8559f, 0x4b596bc5 }, { 0x3ca22b71, 0x42b55dea, 0x1e6366d9, 0xbaee8b1f, 0xbf529bb1, - 0x52134d1b, 0xd994de2c, 00000000 + 0x52134d1b, 0xd994de2c } }, { { 0x82b85de8, 0x879bed00, 0x3d492d85, 0xca2db7f2, 0x7a6fd60c, - 0x17e258dc, 0x9bebb38f, 00000000 + 0x17e258dc, 0x9bebb38f }, { 0x3aca1ac0, 0xd06014c3, 0x52c50b92, 0x5569f813, 0xc651765, - 0xd32e9f4, 0xad69f94, 00000000 + 0xd32e9f4, 0xad69f94 }, { 0x8c33b8c6, 0x155a2b02, 0x3dc6f2ac, 0xba2ddd44, 0x4138fc65, - 0xa8029fb5, 0x7a6dd645, 00000000 + 0xa8029fb5, 0x7a6dd645 } }, { { 0x1d40523d, 0x8e09f525, 0xbf1e8555, 0x6f33b6e2, 0xb135f027, - 0x16f41e37, 0x69c67fac, 00000000 + 0x16f41e37, 0x69c67fac }, { 0x4260156, 0x54032ab9, 0xd4d26c6b, 0x647cccad, 0x13f4b5a8, - 0x2f585dfe, 0xe2f338b1, 00000000 + 0x2f585dfe, 0xe2f338b1 }, { 0x892adfbf, 0x304b8968, 0x7fab6263, 0x209a772f, 0x9f35704e, - 0x6a08f993, 0x1c9c2cf4, 00000000 + 0x6a08f993, 0x1c9c2cf4 } }, { { 0x4b03ec8c, 0x484d7aa1, 0xcaeb21c1, 0x2659b5cd, 0xa23373dd, - 0x8b1e30d0, 0x3001a461, 00000000 + 0x8b1e30d0, 0x3001a461 }, { 0x253896c0, 0x82ca4074, 0x9209197, 0xc97aabf8, 0x151b30, - 0x947d6051, 0x180ff2f9, 00000000 + 0x947d6051, 0x180ff2f9 }, { 0x718db491, 0x84a95e3e, 0x5ee1871, 0x24434b6e, 0x80e7f7db, - 0x12e21cd5, 0x94275533, 00000000 + 0x12e21cd5, 0x94275533 } }, { { 0xe92cf6ec, 0x2a11ff3d, 0xf8e03587, 0xa4440469, 0x3de0e447, - 0xbd9f3a73, 0xbf550b17, 00000000 + 0xbd9f3a73, 0xbf550b17 }, { 0x6687ac5c, 0x7137557d, 0xba98b97b, 0x7c083a25, 0x42cf2dd2, - 0x1edd555c, 0x9146a83b, 00000000 + 0x1edd555c, 0x9146a83b }, { 0x7b322d57, 0xc2e1ad4d, 0xb7049312, 0x8866265e, 0x49e0c6b5, - 0x5c1f8c35, 0x146649b4, 00000000 + 0x5c1f8c35, 0x146649b4 } }, { { 0xdf103ff, 0x2d9139a2, 0x5d204643, 0x98964649, 0xce2aa4ab, - 0x45315533, 0xa933129b, 00000000 + 0x45315533, 0xa933129b }, { 0x47a11164, 0xe33e549e, 0xb05fd3aa, 0xf8825f05, 0xd8d338a7, - 0xc98ba33f, 0xece2e4dc, 00000000 + 0xc98ba33f, 0xece2e4dc }, { 0x4a26da6d, 0xc1e4cb39, 0x10d6c738, 0x738291f8, 0xfa2bd5ed, - 0xa945698a, 0x373c91c7, 00000000 + 0xa945698a, 0x373c91c7 } }, { { 0xd7617b24, 0xc516278d, 0xea537f13, 0x1559d4d5, 0x87c2764e, - 0x449e1ec, 0xa9516426, 00000000 + 0x449e1ec, 0xa9516426 }, { 0xcc12ee4d, 0xda739b38, 0x207bc277, 0x472a9292, 0x77b7cffd, - 0xe00e4238, 0xedd33fbd, 00000000 + 0xe00e4238, 0xedd33fbd }, { 0xdf6960ae, 0xfa7c961d, 0x90d5042f, 0x25df5ab9, 0xa6a6f400, - 0xd6fd7d09, 0x1acdeddf, 00000000 + 0xd6fd7d09, 0x1acdeddf } }, { { 0xe96ccdff, 0xc8f49868, 0x70faec1c, 0x6672ceec, 0xfe3e8e03, - 0x7238a530, 0xa3af3c9a, 00000000 + 0x7238a530, 0xa3af3c9a }, { 0x43ba418, 0xd7561761, 0x64dcca75, 0xbfd224db, 0x729dacde, - 0xe112b05c, 0x2837874a, 00000000 + 0xe112b05c, 0x2837874a }, { 0xfdc46296, 0x57236c52, 0x5d431c9e, 0x4aa7ce65, 0x952e17c2, - 0xdf1bb519, 0x275a7284, 00000000 + 0xdf1bb519, 0x275a7284 } }, { { 0x5f6553ec, 0x19613524, 0x9bb0a530, 0x5d135b9c, 0x7d6e1635, - 0xe847560d, 0x8cac083f, 00000000 + 0xe847560d, 0x8cac083f }, { 0x9d1bbf18, 0xe8e1f4f8, 0x9f32305d, 0xc0d8bf75, 0xa894f260, - 0x8c3c71df, 0x9963ec38, 00000000 + 0x8c3c71df, 0x9963ec38 }, { 0x704b95b, 0x48bcd4b0, 0xc3a0a370, 0xedaa3a0e, 0x53587348, - 0xa5660d57, 0x7a796e89, 00000000 + 0xa5660d57, 0x7a796e89 } }, { { 0xf0ae0b02, 0x9a73d669, 0xcdeabca6, 0x7881f77e, 0xf48df257, - 0x8030b5b6, 0xf8eb97bf, 00000000 + 0x8030b5b6, 0xf8eb97bf }, { 0x2ce8addb, 0x88b2c169, 0x5d3253c6, 0x980819c8, 0x90f5f098, - 0x6ff836e6, 0xa98cf728, 00000000 + 0x6ff836e6, 0xa98cf728 }, { 0x42c2d184, 0xe6ca7691, 0xf90bb496, 0x999cb3fb, 0x2d5a2424, - 0x2767d10a, 0xcb26e00c, 00000000 + 0x2767d10a, 0xcb26e00c } }, { { 0xf3710290, 0x6669296d, 0xdb501a1b, 0xa4bf777e, 0xfc462747, - 0xfa3379ed, 0x16fb4d24, 00000000 + 0xfa3379ed, 0x16fb4d24 }, { 0x11c836d1, 0x9daec733, 0x3b69466d, 0xa6453ac0, 0xf04cf8b0, - 0xa7dc0678, 0xeabb040a, 00000000 + 0xa7dc0678, 0xeabb040a }, { 0x49543c0e, 0x62ec631f, 0x33741b0c, 0x239b5298, 0x316688c1, - 0xde1bd348, 0xbdea81bc, 00000000 + 0xde1bd348, 0xbdea81bc } } }, @@ -18883,211 +18883,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x8c4e216c, 0x157b1477, 0xa70489f3, 0x384564c6, 0x13eb30b1, - 0xd943f3ef, 0xc4642b92, 00000000 + 0xd943f3ef, 0xc4642b92 }, { 0xb50a48ff, 0x495b02bb, 0x51c3a5bd, 0x772876de, 0xa5470f1f, - 0x239069e1, 0x9d354150, 00000000 + 0x239069e1, 0x9d354150 }, { 0x9734fc9, 0x51b0dc7f, 0xaf803963, 0x97520119, 0x41eb5d81, - 0x5a8cb76b, 0xcd27c752, 00000000 + 0x5a8cb76b, 0xcd27c752 } }, { { 0xa66c11eb, 0xbaaa03bb, 0xdd7807a6, 0xf8994af4, 0xea9729df, - 0x6a22127, 0x5d28656c, 00000000 + 0x6a22127, 0x5d28656c }, { 0xb0f33e13, 0x237487d8, 0x2f431e1c, 0x4398b806, 0xdc2bf876, - 0xc6f43af2, 0xe8e17049, 00000000 + 0xc6f43af2, 0xe8e17049 }, { 0x3c66b3e7, 0x9967c748, 0x911bda1d, 0xe47dbb42, 0x80fa5e94, - 0x11c3a406, 0x867b8b6c, 00000000 + 0x11c3a406, 0x867b8b6c } }, { { 0xdf5241, 0xe79f0f9a, 0x3c654f56, 0x1bde25a1, 0x869e161c, - 0x84a2e06f, 0xd446e368, 00000000 + 0x84a2e06f, 0xd446e368 }, { 0x93760448, 0xaf9f64f1, 0xf12eba75, 0xbdfa00ae, 0x98cd7e3f, - 0x504877ba, 0x8d720ac, 00000000 + 0x504877ba, 0x8d720ac }, { 0xfe322cf1, 0x2307c421, 0xf56190fc, 0xd9f6c78f, 0x4595fa21, - 0x1793e1c9, 0xa5b0cbc6, 00000000 + 0x1793e1c9, 0xa5b0cbc6 } }, { { 0x6275a4a2, 0xaaf907d6, 0xbb46e86, 0x79a9e15f, 0xa1de6c3d, - 0x3961ee57, 0xea801086, 00000000 + 0x3961ee57, 0xea801086 }, { 0x3f9b688, 0x168c0a8, 0x4176da83, 0x88b7d683, 0x487446a, - 0x6dab98bc, 0xf4babc6d, 00000000 + 0x6dab98bc, 0xf4babc6d }, { 0x1b68d917, 0xae2f513e, 0x40202337, 0x11079165, 0xb8258d6f, - 0x7528859c, 0xaafa0570, 00000000 + 0x7528859c, 0xaafa0570 } }, { { 0x426d78cb, 0x2761da55, 0x9f632a2b, 0xa95284ef, 0x47081382, - 0xe498dc94, 0x5f3024f8, 00000000 + 0xe498dc94, 0x5f3024f8 }, { 0xb3c721a4, 0xf5545bf9, 0x935472cd, 0x7c2e26f7, 0x1e4ed677, - 0x2191cac3, 0x83320f7f, 00000000 + 0x2191cac3, 0x83320f7f }, { 0x4b6bf386, 0x106c57d2, 0x3f51676a, 0xce1aed49, 0xab0278fd, - 0x67e0700b, 0x86d8d62d, 00000000 + 0x67e0700b, 0x86d8d62d } }, { { 0xc987e86f, 0xb2e33ace, 0x9f4f309e, 0x9442358f, 0xff9a5aa5, - 0xc80ee0e1, 0x334c3f, 00000000 + 0xc80ee0e1, 0x334c3f }, { 0xaf35c637, 0xfbaf8562, 0x542b8fe6, 0x1b212fc0, 0x1025dda5, - 0x56142fb7, 0xa0ec69, 00000000 + 0x56142fb7, 0xa0ec69 }, { 0xa253e70b, 0x283861f6, 0x75bf4b28, 0x23c533f7, 0x205b689f, - 0x5da64294, 0x93d7ccaa, 00000000 + 0x5da64294, 0x93d7ccaa } }, { { 0x7257039f, 0xa3e91e9c, 0xc0ddfe77, 0x4336d3f9, 0x7c3bbb2f, - 0xd12a8e38, 0x98509056, 00000000 + 0xd12a8e38, 0x98509056 }, { 0x2b8726e7, 0x3e019e7e, 0x269cc61a, 0x13afb784, 0xe25d2e17, - 0x63306d29, 0xe633bae7, 00000000 + 0x63306d29, 0xe633bae7 }, { 0x1f2347b8, 0x9cdb6bdc, 0x42897fe5, 0x2ca7e693, 0x360a8508, - 0x9583ac9d, 0x78299607, 00000000 + 0x9583ac9d, 0x78299607 } }, { { 0xa89172cc, 0xf47c0613, 0x60ab3b1e, 0x20876de0, 0xe0260341, - 0x613ba90, 0x6c754b0, 00000000 + 0x613ba90, 0x6c754b0 }, { 0x621ad065, 0xcc300f8f, 0x91ef7988, 0xb0c4650e, 0xcdf3d2ac, - 0x277e95c3, 0x6406ec10, 00000000 + 0x277e95c3, 0x6406ec10 }, { 0xa909096d, 0x7065560d, 0xedc9a5c0, 0xac0edc65, 0xd89983f4, - 0xaccccd57, 0x64ad8311, 00000000 + 0xaccccd57, 0x64ad8311 } }, { { 0xf44d75be, 0x46abeebf, 0x5e275703, 0x7649a480, 0xbe47865a, - 0xcde6053b, 0x1aa0647e, 00000000 + 0xcde6053b, 0x1aa0647e }, { 0x0a7bae, 0x326b8d53, 0x9909cca4, 0xe6a3d8b5, 0x661082c2, - 0x234a8ad9, 0x768cbd00, 00000000 + 0x234a8ad9, 0x768cbd00 }, { 0xcccc2084, 0x66252d53, 0x95b17abb, 0x34f4aba3, 0xf9361001, - 0x8afffe27, 0xf7f2316a, 00000000 + 0x8afffe27, 0xf7f2316a } }, { { 0xffc7c258, 0x85254ed8, 0xf854d9d3, 0x3e141ba8, 0x3f10d853, - 0x4bfc3d98, 0x28676c44, 00000000 + 0x4bfc3d98, 0x28676c44 }, { 0x2bc98ce3, 0x4af532ce, 0x7092aa60, 0xf4e3ca9b, 0xef336cad, - 0xe5a7caf2, 0x8f9e0580, 00000000 + 0xe5a7caf2, 0x8f9e0580 }, { 0xeb0e4da6, 0xe829f371, 0x6c9f5e01, 0xbdad89fe, 0x478dda4b, - 0xda59d41a, 0x8475e517, 00000000 + 0xda59d41a, 0x8475e517 } }, { { 0x24d2ac79, 0x3f77a38f, 0xff0c7f2, 0xe8d0ef06, 0xdc649467, - 0x3196c957, 0x2ad489f1, 00000000 + 0x3196c957, 0x2ad489f1 }, { 0x44558f72, 0xc7231b9f, 0x2629bb8, 0xb692d81f, 0x101e64aa, - 0x8f613d1f, 0x367bfd12, 00000000 + 0x8f613d1f, 0x367bfd12 }, { 0xed8c2f0b, 0xe724a5a0, 0x78b701, 0xb29443e4, 0xf0b11d78, - 0xe90efa51, 0xea6bff88, 00000000 + 0xe90efa51, 0xea6bff88 } }, { { 0xae0a4744, 0xdd3d16af, 0xd628f6eb, 0xf3455c3d, 0x6b1fd60d, - 0x66c6ee1f, 0x252f5809, 00000000 + 0x66c6ee1f, 0x252f5809 }, { 0x3fc6ac3c, 0xfd546d59, 0x8b23ec94, 0xb8df9166, 0x5f94c17a, - 0x1389950f, 0x5eb748a8, 00000000 + 0x1389950f, 0x5eb748a8 }, { 0xdaa05629, 0xe148a484, 0x1c91f7ca, 0xbbc66586, 0xa7e27d33, - 0xd03fa5e3, 0xa97f1a5d, 00000000 + 0xd03fa5e3, 0xa97f1a5d } }, { { 0x43c2c608, 0x99bfeb81, 0x13e93ea1, 0x5df07c0b, 0x5032bce, - 0x974b9c2a, 0xf0eb8ba, 00000000 + 0x974b9c2a, 0xf0eb8ba }, { 0x4adb4797, 0x479f8f4c, 0xc3ea93e9, 0x20f9be8d, 0x7e5c4069, - 0x7bc8794d, 0x8ef3827c, 00000000 + 0x7bc8794d, 0x8ef3827c }, { 0x4a2a0b96, 0xb7af381d, 0x4c65d3d1, 0xb12804a4, 0xa679f9be, - 0x84f1e3f7, 0x4a1a4b97, 00000000 + 0x84f1e3f7, 0x4a1a4b97 } }, { { 0x80c05f41, 0x1337d492, 0xd8612035, 0x22c4b634, 0x9f81687d, - 0xbb5c0084, 0xd81379dc, 00000000 + 0xbb5c0084, 0xd81379dc }, { 0xaa3d449f, 0xe30a43fc, 0xfd8b3ca6, 0x3f560e23, 0x928a956d, - 0x483a0da0, 0xb088552e, 00000000 + 0x483a0da0, 0xb088552e }, { 0xb1647783, 0x70967a48, 0xa747dfec, 0xe16a6428, 0xe0832fd1, - 0x827c03b8, 0xd13ba720, 00000000 + 0x827c03b8, 0xd13ba720 } }, { { 0x28a2ef2c, 0xb72f1a33, 0x6b4fbd7, 0x365ca0f7, 0x6bc5da36, - 0x3d88fb0f, 0x267fb5f3, 00000000 + 0x3d88fb0f, 0x267fb5f3 }, { 0xc8a7cab9, 0x74aa9178, 0x6663168, 0xa867c2b, 0x6faf98c, - 0x7002b13a, 0x7d973519, 00000000 + 0x7002b13a, 0x7d973519 }, { 0x580499b, 0x5228206c, 0xd5b8b571, 0xef5ee45b, 0xf4b6b141, - 0x79c5ce22, 0x7f4ac920, 00000000 + 0x79c5ce22, 0x7f4ac920 } } }, @@ -19095,211 +19095,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x2ec8e40d, 0x4edbd0d5, 0x1ac761da, 0xe594492f, 0xe6511ea4, - 0xbaa52029, 0xa4b126c6, 00000000 + 0xbaa52029, 0xa4b126c6 }, { 0x1ad7c15b, 0x96d96702, 0x60df87d0, 0x10773e79, 0x3bcf5ad3, - 0x50577e3b, 0xc4dc3d35, 00000000 + 0x50577e3b, 0xc4dc3d35 }, { 0x37b57110, 0x66f6147e, 0xe40ffc46, 0x5ff9a75e, 0x3e9755d8, - 0x6f8d9519, 0x600cf496, 00000000 + 0x6f8d9519, 0x600cf496 } }, { { 0xb136c619, 0x3dc52daa, 0x83c40092, 0x495b87c5, 0xe725a08f, - 0xf980f24b, 0xd13012cc, 00000000 + 0xf980f24b, 0xd13012cc }, { 0x644baaba, 0x7fe2d9ea, 0xe4af24da, 0x71f385c9, 0x6bd63d32, - 0xfe425735, 0x5625baa8, 00000000 + 0xfe425735, 0x5625baa8 }, { 0x8739c817, 0x4d8cdf49, 0xe9e225de, 0x86778a59, 0x61ee0a29, - 0xad92805b, 0x5fbd945f, 00000000 + 0xad92805b, 0x5fbd945f } }, { { 0x31df6880, 0x42fa40e3, 0xedaf3cc9, 0x8961339a, 0x2496aaeb, - 0x162c7f66, 0xb32af4d4, 00000000 + 0x162c7f66, 0xb32af4d4 }, { 0x80589f71, 0xf351047b, 0xde7af3ba, 0xec909f64, 0x8f1a3e28, - 0x2a464d4c, 0x26aa1db5, 00000000 + 0x2a464d4c, 0x26aa1db5 }, { 0xebcb9b5d, 0xd04ca29f, 0xe2592575, 0x7ef016d0, 0xf35cef36, - 0x9a90294, 0xfb530f84, 00000000 + 0x9a90294, 0xfb530f84 } }, { { 0xa457fe98, 0x6764faab, 0x2a623b1f, 0xf60d9fca, 0xf79189e1, - 0xd8e2b4a7, 0x6fb0e48f, 00000000 + 0xd8e2b4a7, 0x6fb0e48f }, { 0x9728f9e4, 0xf5e34014, 0xf37da9e0, 0x2ffba9e0, 0x600ae434, - 0x7bb75da5, 0xe206d8ec, 00000000 + 0x7bb75da5, 0xe206d8ec }, { 0x2fd42714, 0xa3f38b45, 0xa1048860, 0x7d466b4d, 0x515880b2, - 0xaf9fd670, 0x9f0fe8f7, 00000000 + 0xaf9fd670, 0x9f0fe8f7 } }, { { 0x8080714b, 0xeb19654f, 0xa7a208ac, 0x319027a4, 0x8331864c, - 0x134fa8df, 0x2c12b31a, 00000000 + 0x134fa8df, 0x2c12b31a }, { 0x264cfccc, 0x653d1c87, 0xa9c2b80f, 0x2104bb08, 0xa1272b99, - 0x18cb10f0, 0xa8a8b958, 00000000 + 0x18cb10f0, 0xa8a8b958 }, { 0x6206d1ca, 0xe58148e1, 0x29a6fd9d, 0x746b883e, 0x502b97c7, - 0x4f1269e4, 0x9cccfd6a, 00000000 + 0x4f1269e4, 0x9cccfd6a } }, { { 0xa03a57f3, 0xeec56e7e, 0x2a21408e, 0xd25b143a, 0x534abdb5, - 0x8d3f88c6, 0xa3c8fb8, 00000000 + 0x8d3f88c6, 0xa3c8fb8 }, { 0xef40c093, 0x80365093, 0x791e5a14, 0x3b217a80, 0x563ae5cc, - 0x184ecc41, 0x64554c87, 00000000 + 0x184ecc41, 0x64554c87 }, { 0x6f435d01, 0xcafc2d7f, 0xa96d416a, 0xc9b51929, 0xe79ca2d8, - 0xd73d682b, 0xee60b22e, 00000000 + 0xd73d682b, 0xee60b22e } }, { { 0x1bb192e, 0x6275bea7, 0xee7dbed5, 0x3f03e74a, 0x7b6730a0, - 0x609c3d77, 0x4899f647, 00000000 + 0x609c3d77, 0x4899f647 }, { 0x996bb185, 0x5fe4885e, 0x4f0b23ed, 0x7a30f087, 0x4d6262a6, - 0xbf91ffc2, 0x68824a4a, 00000000 + 0xbf91ffc2, 0x68824a4a }, { 0x11de3f5d, 0xb33c52f9, 0xcb388cf, 0x534e4e7e, 0x200dfd3f, - 0xd6012d22, 0xeee3af3, 00000000 + 0xd6012d22, 0xeee3af3 } }, { { 0xa948d74d, 0xac49fd6e, 0x10703c7b, 0x52786974, 0x2936e38d, - 0xf70250b7, 0x83cd83cf, 00000000 + 0xf70250b7, 0x83cd83cf }, { 0xb360e1ab, 0x408e5352, 0xbfc5800e, 0x924e3a14, 0x80e3e309, - 0xda766449, 0xab76522b, 00000000 + 0xda766449, 0xab76522b }, { 0xf0ccb6dd, 0x2525110a, 0xdc267d4c, 0xd9aca8e8, 0xee02dd9d, - 0xe034313c, 0xc722680d, 00000000 + 0xe034313c, 0xc722680d } }, { { 0xf7fdb5d5, 0x376e8b96, 0x448252be, 0xa5c66680, 0x6be95e05, - 0x86e9d700, 0x1667228b, 00000000 + 0x86e9d700, 0x1667228b }, { 0x78c53d89, 0x9cc859de, 0x7c0b0571, 0x253fbcab, 0xf0a41e81, - 0x69d9508b, 0xb0be5b98, 00000000 + 0x69d9508b, 0xb0be5b98 }, { 0xf643e96, 0xe90a6142, 0xc605d827, 0xbfe4188c, 0x86cd1a7, - 0x4c237e1, 0x96c5a43f, 00000000 + 0x4c237e1, 0x96c5a43f } }, { { 0x6a4ff5c0, 0x924506c8, 0x661b3e5, 0xafd323c3, 0xb937405b, - 0xd79fe049, 0x13416d6b, 00000000 + 0xd79fe049, 0x13416d6b }, { 0x22602140, 0xdfcc4c3a, 0xecfc6de2, 0x2ee80a5d, 0x17e03711, - 0x98f332b5, 0xd15deb41, 00000000 + 0x98f332b5, 0xd15deb41 }, { 0xf2373283, 0xf7003ebb, 0xe04891d0, 0x722643ec, 0xb882d88e, - 0xb6b183c0, 0xd664ef0, 00000000 + 0xb6b183c0, 0xd664ef0 } }, { { 0x4ae172a4, 0xb9ceab21, 0xd3df8d72, 0xb615ce85, 0xf7b17ace, - 0xf277b355, 0x59ded96c, 00000000 + 0xf277b355, 0x59ded96c }, { 0xf910379, 0x917a4196, 0x80b38cec, 0x5e90b65c, 0x273da6a, - 0xa760248, 0xceed6b51, 00000000 + 0xa760248, 0xceed6b51 }, { 0xe2f8157b, 0xc594b1cb, 0xea92d500, 0xf684e032, 0xdc8bec32, - 0x4bad4bba, 0xab36c395, 00000000 + 0x4bad4bba, 0xab36c395 } }, { { 0x6eb58b92, 0xab0c4cd9, 0x1bfc88d2, 0x8b81a749, 0x7f7b389c, - 0x22bc5e12, 0x338b2349, 00000000 + 0x22bc5e12, 0x338b2349 }, { 0xa8656af9, 0xffb79508, 0x3adf1510, 0x61cd1b48, 0xa5815614, - 0x94541033, 0x624240cd, 00000000 + 0x94541033, 0x624240cd }, { 0x195e924f, 0xa1df1e93, 0x1347e701, 0xde36f314, 0x6847626d, - 0xe0770d61, 0x9b837f13, 00000000 + 0xe0770d61, 0x9b837f13 } }, { { 0xdea18497, 0xf4d23bf9, 0x3714e04, 0xd268f222, 0xfee66e34, - 0x6c975da6, 0xc0dce248, 00000000 + 0x6c975da6, 0xc0dce248 }, { 0x84151ae8, 0x1fae8cb9, 0xd5076667, 0x5e8eed32, 0x7dbaf861, - 0x5c5fa77, 0x76babf62, 00000000 + 0x5c5fa77, 0x76babf62 }, { 0x9baf723b, 0x991d9017, 0x691bef43, 0x8c52ff1b, 0x5958be6c, - 0x616edef6, 0x621d0536, 00000000 + 0x616edef6, 0x621d0536 } }, { { 0xd716a81c, 0x58e91783, 0xecf5fc4a, 0x504b1776, 0x96e083c5, - 0xc2dd5bdf, 0x6c24a0b5, 00000000 + 0xc2dd5bdf, 0x6c24a0b5 }, { 0xc3c44661, 0x18253ed8, 0x975a8dbe, 0xdc18d96d, 0xadcc0841, - 0xd22b31ca, 0x62d73142, 00000000 + 0xd22b31ca, 0x62d73142 }, { 0xb58aa429, 0xdcf64a44, 0x1dbc3b79, 0x539a8c17, 0x6f8ad4e2, - 0x3d740fa1, 0x335ba0e8, 00000000 + 0x3d740fa1, 0x335ba0e8 } }, { { 0x4da527c2, 0x6966e370, 0x2d24258a, 0x827a93ff, 0xe8beec1a, - 0x9a6df5c8, 0x9a8814fc, 00000000 + 0x9a6df5c8, 0x9a8814fc }, { 0x9c519a1e, 0x368f7550, 0xec79a86a, 0x27654ad9, 0xd310b99c, - 0x81ed52aa, 0xababcbfb, 00000000 + 0x81ed52aa, 0xababcbfb }, { 0x3e00d554, 0x694d3d72, 0xf485bbff, 0xd27a7aa4, 0x85ded779, - 0xf0dcfe4f, 0x655222c9, 00000000 + 0xf0dcfe4f, 0x655222c9 } } }, @@ -19307,211 +19307,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x9aa410ec, 0x4ba8c0fc, 0x3aad09d6, 0xf0801593, 0x163f8610, - 0x26d6d516, 0xe96baea0, 00000000 + 0x26d6d516, 0xe96baea0 }, { 0x1963d542, 0x3690cb47, 0x1ad820e2, 0x1ca62543, 0x76fd4a17, - 0xaf808dde, 0x705c5d1f, 00000000 + 0xaf808dde, 0x705c5d1f }, { 0xa3b6ade2, 0x7b1b935, 0xd28d4e6f, 0x331615b3, 0xa2e277cc, - 0x1418498e, 0xa606f672, 00000000 + 0x1418498e, 0xa606f672 } }, { { 0x9e73239, 0xfbf0d551, 0x4595f67e, 0xc29b1ca6, 0x5d7cc3b5, - 0xb8d08612, 0x4a5206e4, 00000000 + 0xb8d08612, 0x4a5206e4 }, { 0x254cc973, 0x27a29774, 0xee80ea63, 0xcc194c49, 0x2be83afb, - 0x8e345df8, 0x1f073034, 00000000 + 0x8e345df8, 0x1f073034 }, { 0x249c073b, 0xef6aec7d, 0x683e7acc, 0x7f4f09e3, 0x48dd6a0c, - 0xdcdcee50, 0xecab8b48, 00000000 + 0xdcdcee50, 0xecab8b48 } }, { { 0x566128ec, 0xdec2c1e8, 0xdde3ebe8, 0x4a8a092, 0x6401c8e8, - 0x48b6e2a4, 0x356f9292, 00000000 + 0x48b6e2a4, 0x356f9292 }, { 0x4c54c8f3, 0x86014301, 0x359c27a6, 0xd67a066a, 0xa7f1f69b, - 0xa3f4f362, 0x2a3ef1e2, 00000000 + 0xa3f4f362, 0x2a3ef1e2 }, { 0x95499ed6, 0x772e50c2, 0x70ee7c52, 0xb6f9ee91, 0x7e834ea, - 0xbf7f5ea6, 0xf0b67665, 00000000 + 0xbf7f5ea6, 0xf0b67665 } }, { { 0xa4b258ae, 0x11e01e07, 0xea7849ed, 0xf0edba17, 0x7465e842, - 0xe456beaa, 0xe8a989d6, 00000000 + 0xe456beaa, 0xe8a989d6 }, { 0x99dca8d2, 0xf8d5df9a, 0xf5d882d5, 0x684f8d5f, 0x2594a457, - 0x6631e7bd, 0x8a6fd5a6, 00000000 + 0x6631e7bd, 0x8a6fd5a6 }, { 0xd91e51ca, 0x5ef49117, 0x5b33f84, 0x33bbfb4, 0xa1a25124, - 0x694bb7f, 0xc5db6c26, 00000000 + 0x694bb7f, 0xc5db6c26 } }, { { 0xb03029ea, 0x1de8ed83, 0x8eb647d, 0xcf2903cb, 0x25f4cd44, - 0xe2bd2555, 0x3a165614, 00000000 + 0xe2bd2555, 0x3a165614 }, { 0x61e84954, 0x9324b8ac, 0x91c85696, 0x43b56a39, 0x29d294e1, - 0x6ad8a480, 0x9eba6b8b, 00000000 + 0x6ad8a480, 0x9eba6b8b }, { 0x4073974c, 0x6b6c2083, 0xe75c5072, 0x3beb8e05, 0xec41a4c6, - 0x8ec09414, 0x8d9ec2ae, 00000000 + 0x8ec09414, 0x8d9ec2ae } }, { { 0xd95c4bb5, 0x6866a50e, 0x69a6f65b, 0x3a5edd47, 0x1c74d868, - 0x3360713c, 0xd0699de6, 00000000 + 0x3360713c, 0xd0699de6 }, { 0x16c51bff, 0x21d9463a, 0x26cb4bba, 0x1670eabf, 0x17e4a5ee, - 0x534d0b92, 0x1137e374, 00000000 + 0x534d0b92, 0x1137e374 }, { 0x92a8ab29, 0x21bfd2de, 0x606b33ea, 0x7b49ebaf, 0xe8f74fab, - 0xc990b68, 0xf78d25c8, 00000000 + 0xc990b68, 0xf78d25c8 } }, { { 0x9cc5f622, 0xcc0faef3, 0x14ce0652, 0xc5bd851d, 0xd858c3e9, - 0xe53af724, 0xd51a74a2, 00000000 + 0xe53af724, 0xd51a74a2 }, { 0xd859520, 0xa78995a2, 0x8e51ba6d, 0x492e17b8, 0x25c198c4, - 0xe5a95e6e, 0xf729dae5, 00000000 + 0xe5a95e6e, 0xf729dae5 }, { 0xd377c7d4, 0x934fc340, 0x7c08781d, 0x237b5fca, 0x10cd1c7a, - 0x9788030, 0x8ee5615c, 00000000 + 0x9788030, 0x8ee5615c } }, { { 0x59fdde51, 0x9c859bde, 0x4c93436e, 0xf20b9340, 0xb0bf3dc8, - 0x318db287, 0x5d423df, 00000000 + 0x318db287, 0x5d423df }, { 0x2affe08d, 0x5eaca835, 0xd5558837, 0xc680ab7a, 0x7931939b, - 0x33308da2, 0x7bcfe1ad, 00000000 + 0x33308da2, 0x7bcfe1ad }, { 0xabb98b23, 0x93b1d992, 0x72725540, 0x2e745418, 0x9bdeefad, - 0x626a65be, 0xf224ec0f, 00000000 + 0x626a65be, 0xf224ec0f } }, { { 0xa5ffb3a5, 0xd52e86ad, 0xc75179c8, 0x98ba3591, 0x5222449b, - 0xeb556fc6, 0x7ab39e9c, 00000000 + 0xeb556fc6, 0x7ab39e9c }, { 0x3d3427e3, 0xd72d7474, 0xd9b36d1, 0x60fdd3a, 0x46718ddc, - 0x2b964a78, 0xde1575c2, 00000000 + 0x2b964a78, 0xde1575c2 }, { 0x2b246352, 0x66177d61, 0x7815ad84, 0x67d52410, 0x8e8d1865, - 0xb8e4173f, 0xe3053237, 00000000 + 0xb8e4173f, 0xe3053237 } }, { { 0xc7f4127a, 0x642b2761, 0xe35f2423, 0xf04ed97, 0xb90de840, - 0xd872feb6, 0xf17ed6f5, 00000000 + 0xd872feb6, 0xf17ed6f5 }, { 0x96fbfdd4, 0xb526f9ab, 0x4d7ae75b, 0xe07f5d18, 0xc8da9db2, - 0x27e75922, 0xa4927750, 00000000 + 0x27e75922, 0xa4927750 }, { 0x25f84f1d, 0xc7e04b5, 0x8b931af5, 0x26087457, 0x213cd9e4, - 0x81b5806c, 0x7f2f12de, 00000000 + 0x81b5806c, 0x7f2f12de } }, { { 0x6a9777ce, 0xed8121bd, 0xd91d439e, 0xf63c74c9, 0xd0738d64, - 0x1905b957, 0xfaed7280, 00000000 + 0x1905b957, 0xfaed7280 }, { 0xafd2eab0, 0xcb9562ec, 0x14d09609, 0x2d96575f, 0x4c94703d, - 0x6c1ec7b7, 0xf3993a2e, 00000000 + 0x6c1ec7b7, 0xf3993a2e }, { 0xe0559dc, 0x6aba466c, 0xc530c3fd, 0x6f4d4317, 0xbaec9dc6, - 0x90218c03, 0x61826074, 00000000 + 0x90218c03, 0x61826074 } }, { { 0x1a7be350, 0xeb5312cc, 0xe2ac0de0, 0x8b907c4, 0xa46b5714, - 0x3905268b, 0x86b80964, 00000000 + 0x3905268b, 0x86b80964 }, { 0xffba4ea5, 0xb2f4ee3e, 0x7d629028, 0x258a72f, 0x1a25c1df, - 0x62c0fa45, 0x66508cd4, 00000000 + 0x62c0fa45, 0x66508cd4 }, { 0xd68cf7c0, 0xb01ed09d, 0x785f761e, 0x73c3bc8f, 0x96c97351, - 0x747f6b66, 0x3b67c1e5, 00000000 + 0x747f6b66, 0x3b67c1e5 } }, { { 0x817ba1da, 0xeb5eabe3, 0xb4a09d6, 0x824f4002, 0x2446d029, - 0x226a0a84, 0x3ad53d7c, 00000000 + 0x226a0a84, 0x3ad53d7c }, { 0x6bbf6a62, 0xf3dc52bc, 0xe17bb524, 0x8d7b6f6b, 0x1fca637b, - 0xb9533fb9, 0xf19435dc, 00000000 + 0xb9533fb9, 0xf19435dc }, { 0xdac158b1, 0x7a1853c0, 0xbef21386, 0x9c79589a, 0x1fdb5271, - 0xb58888fb, 0x91e24065, 00000000 + 0xb58888fb, 0x91e24065 } }, { { 0x3294df4b, 0xf5bef573, 0x36f6555c, 0x92413662, 0xa6cd246f, - 0xf8cb51fc, 0x98322dcd, 00000000 + 0xf8cb51fc, 0x98322dcd }, { 0x90cac585, 0xbdb74eb9, 0x1906af87, 0xa2ccd502, 0x1af56f5, - 0xcc394fa9, 0x8772b9d1, 00000000 + 0xcc394fa9, 0x8772b9d1 }, { 0xf2a09a59, 0xfa00a3dc, 0xd35ceb86, 0x88f56b44, 0x58c2e5b1, - 0x9f93300e, 0x74527b1e, 00000000 + 0x9f93300e, 0x74527b1e } }, { { 0xe7f3e767, 0xe7e5b4e8, 0xdd746a8, 0x16ccd822, 0xaa847ae5, - 0xe7335fd5, 0x5ffc49dd, 00000000 + 0xe7335fd5, 0x5ffc49dd }, { 0x28bcad45, 0xb7f8b88, 0xf7a51568, 0x27edb632, 0x7249bca3, - 0x82d4f25a, 0x48e81894, 00000000 + 0x82d4f25a, 0x48e81894 }, { 0xe8ebaa17, 0xc3276a3d, 0xd6937726, 0xe7e3ab88, 0xc1ffffea, - 0xeefac1db, 0x5486ed96, 00000000 + 0xeefac1db, 0x5486ed96 } } }, @@ -19519,211 +19519,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xd7d4cd93, 0xdd6d9e68, 0x14e16c97, 0x1da6de37, 0x769ea441, - 0x24a246e4, 0xc48cd242, 00000000 + 0x24a246e4, 0xc48cd242 }, { 0x736127d2, 0x9b6aeab3, 0xe6cab9d4, 0xf7f861b4, 0x26f5df0d, - 0x4914cf4a, 0xbd318e07, 00000000 + 0x4914cf4a, 0xbd318e07 }, { 0x59b17fd2, 0x4ffc793b, 0x84537cfc, 0x309b54e3, 0xe78e9a88, - 0x196831ae, 0xf4a0222b, 00000000 + 0x196831ae, 0xf4a0222b } }, { { 0x2687c32b, 0x6b3d36eb, 0xda2a85d4, 0x330e4502, 0x64892995, - 0xb5f643e7, 0xdefb876f, 00000000 + 0xb5f643e7, 0xdefb876f }, { 0x55692549, 0x1d139322, 0xcfa9eabc, 0x15791bef, 0x8cd99ea7, - 0x1500d8e2, 0xb8f0b7ea, 00000000 + 0x1500d8e2, 0xb8f0b7ea }, { 0xcbc3da3d, 0x5d6d1ab8, 0x38166ca2, 0xdd3a412b, 0x6c13add7, - 0x934a6dfe, 0x4cda73a0, 00000000 + 0x934a6dfe, 0x4cda73a0 } }, { { 0x689691ce, 0x9f2bde0f, 0xe0ce3e35, 0xa1d6930a, 0xa27fccc9, - 0xd0e6c2be, 0xd7ecc305, 00000000 + 0xd0e6c2be, 0xd7ecc305 }, { 0xdf34d13b, 0xcae9b921, 0x874480d5, 0x9ff1dbc4, 0xfa305f3d, - 0xefb2e6b5, 0x9965ff18, 00000000 + 0xefb2e6b5, 0x9965ff18 }, { 0xcbbf7243, 0x72064db8, 0xef665758, 0xe2e1fa1d, 0xcb167e66, - 0xca8f351c, 0x99ff2a2c, 00000000 + 0xca8f351c, 0x99ff2a2c } }, { { 0x1ef6366a, 0xdb955046, 0xc7492cd8, 0xdf51bdc5, 0xaf98b853, - 0xb41e0202, 0x1374dbfd, 00000000 + 0xb41e0202, 0x1374dbfd }, { 0x3d64cc0f, 0x966e9ef0, 0xe3eeedcd, 0xec378ad5, 0x1325e36c, - 0x236a8977, 0xdbbfb13, 00000000 + 0x236a8977, 0xdbbfb13 }, { 0x85731358, 0x3ed599ba, 0x714227e3, 0x9e955ed7, 0x6d529d43, - 0xeeddcdc, 0xa95c66a7, 00000000 + 0xeeddcdc, 0xa95c66a7 } }, { { 0x13b8c614, 0x94622b95, 0xea2f210, 0x5843c2c3, 0xff030c78, - 0xd6a92a13, 0x91d461ac, 00000000 + 0xd6a92a13, 0x91d461ac }, { 0x62402b4f, 0x588ea0d7, 0xd68d2b64, 0x426403f7, 0x4813d6b5, - 0xb54b1ba0, 0xe9556f73, 00000000 + 0xb54b1ba0, 0xe9556f73 }, { 0xa1bbaa29, 0x46d71ecf, 0xef0819be, 0x20923d88, 0x8bcd0339, - 0x485f251d, 0x7a192bd7, 00000000 + 0x485f251d, 0x7a192bd7 } }, { { 0xca0a41d7, 0xb8681bbe, 0x24d2fcc7, 0x985c0b22, 0x5231e795, - 0x6a0a8e16, 0x202f9c71, 00000000 + 0x6a0a8e16, 0x202f9c71 }, { 0xe7d9d964, 0xdb1c15dc, 0xe4578a84, 0xf564952b, 0x203d6531, - 0xf2083869, 0x1fc8c334, 00000000 + 0xf2083869, 0x1fc8c334 }, { 0x68a3cdfc, 0x199352fe, 0xb676d3cb, 0xc7ee5c7e, 0x8b672914, - 0x8b1d32cc, 0x2d422f47, 00000000 + 0x8b1d32cc, 0x2d422f47 } }, { { 0xfc4f4c57, 0x44b7634b, 0x41e57ffa, 0x1491a2cd, 0x40f5293e, - 0x9e1746ea, 0x33c98bed, 00000000 + 0x9e1746ea, 0x33c98bed }, { 0xb659422c, 0x6a7e7de5, 0xcbce4f0d, 0x93bbe0a, 0x7731872f, - 0x5f8b1c2b, 0x90bca0b3, 00000000 + 0x5f8b1c2b, 0x90bca0b3 }, { 0xff808a8e, 0x57d8b09b, 0xd5c62af1, 0x5be47def, 0x5f6bad23, - 0xd8a64a, 0x74363b11, 00000000 + 0xd8a64a, 0x74363b11 } }, { { 0xcf0747e1, 0x616026ce, 0x94a4053, 0x28a69213, 0xf34a2c0c, - 0x607ab0ae, 0x9b5b1fb2, 00000000 + 0x607ab0ae, 0x9b5b1fb2 }, { 0x48b33b5e, 0x21c39873, 0x25131866, 0xfe5ea363, 0xce0dfee5, - 0x53219bde, 0x4db77272, 00000000 + 0x53219bde, 0x4db77272 }, { 0x7cfb1104, 0x5d85816b, 0x2a2fd059, 0xa567d57d, 0x6dd6022b, - 0x2b03afd1, 0x6e097f16, 00000000 + 0x2b03afd1, 0x6e097f16 } }, { { 0x1eb2aa5d, 0x19d52e87, 0x83db2961, 0x2b578cb3, 0x9a7e271d, - 0x18bde5ab, 0x4aa15553, 00000000 + 0x18bde5ab, 0x4aa15553 }, { 0xd0463bb5, 0x81eac54c, 0x8cf23955, 0x6c0c91e7, 0xf19a9bfb, - 0xef5a9ba3, 0x5082541f, 00000000 + 0xef5a9ba3, 0x5082541f }, { 0x2135670c, 0xa6d4fb52, 0x80c523e7, 0x9bda8c6c, 0x8c1bc124, - 0xc8d3ff68, 0xc6fdeba6, 00000000 + 0xc8d3ff68, 0xc6fdeba6 } }, { { 0xff022174, 0x7ecca57e, 0x1ecbb82a, 0x366f2bad, 0x35ea6a99, - 0xad5270bd, 0x9e73540a, 00000000 + 0xad5270bd, 0x9e73540a }, { 0x777f7d25, 0xb2c2ff84, 0xbe9ef4d6, 0x20ece675, 0xb39acb9c, - 0x9e394e23, 0xa3b91241, 00000000 + 0x9e394e23, 0xa3b91241 }, { 0x14c2da94, 0x85f94299, 0xe1458292, 0xa900185c, 0x838d0b23, - 0x906d9f1e, 0x82a955b3, 00000000 + 0x906d9f1e, 0x82a955b3 } }, { { 0x7f087f69, 0x832b821c, 0x39bc7e9b, 0x660a14d0, 0x259220e1, - 0x3953df5a, 0x1394291, 00000000 + 0x3953df5a, 0x1394291 }, { 0x47dc760a, 0xcd837a9e, 0x27e9cefa, 0x85e08ee8, 0x3a7344d3, - 0x23417909, 0xba219d33, 00000000 + 0x23417909, 0xba219d33 }, { 0x7b74b357, 0xa76af9db, 0x21aba831, 0xf9ff214d, 0x1464b0d3, - 0x89f9cf6d, 0x32ff637f, 00000000 + 0x89f9cf6d, 0x32ff637f } }, { { 0xed364b61, 0x46c6cacc, 0xc0930d3b, 0x3c355823, 0xcb1c47b1, - 0x247709d4, 0x6d0bfec8, 00000000 + 0x247709d4, 0x6d0bfec8 }, { 0xdd8348ac, 0x42554315, 0xb4a56f62, 0x943123d3, 0xe53119bc, - 0x65756d4b, 0xad984e3, 00000000 + 0x65756d4b, 0xad984e3 }, { 0x93de24ed, 0x62122c93, 0xb3070c13, 0xde5c65f4, 0x962ace28, - 0xd8c317a9, 0x391b66a5, 00000000 + 0xd8c317a9, 0x391b66a5 } }, { { 0x8ec12a40, 0xbb049b76, 0xf1bb36de, 0x2faac15e, 0xf723ff89, - 0x61af6475, 0x1ea82022, 00000000 + 0x61af6475, 0x1ea82022 }, { 0x1efccc1a, 0x1b438e28, 0xfc15de8, 0x8e73387c, 0xdaf3b9f9, - 0x9744b7a6, 0x8717d592, 00000000 + 0x9744b7a6, 0x8717d592 }, { 0xc7ddc58c, 0xae6fbf0b, 0xd92c2fd7, 0x658ed149, 0x6f21fd13, - 0x4dd64596, 0x7de0e6eb, 00000000 + 0x4dd64596, 0x7de0e6eb } }, { { 0x5a4e81a2, 0x33a1ca9c, 0xec35cb63, 0x4dc3483e, 0x7e94c7, - 0x8a3a43ac, 0xb1ec174e, 00000000 + 0x8a3a43ac, 0xb1ec174e }, { 0x163469d, 0xe5e3c258, 0xf2e24b47, 0x405dd96, 0xa9cb5043, - 0x801f31e9, 0xff62e288, 00000000 + 0x801f31e9, 0xff62e288 }, { 0xfcfd573d, 0x8f78915a, 0x7bf29812, 0xca6500cc, 0xeda180f3, - 0x41d9ed9c, 0x4a5d4068, 00000000 + 0x41d9ed9c, 0x4a5d4068 } }, { { 0x4d6258f8, 0xe2d1333, 0x75642afc, 0x2d5d791, 0xdffa787d, - 0x3b144d8d, 0x721ad80d, 00000000 + 0x3b144d8d, 0x721ad80d }, { 0xd5b2f404, 0xeb83ff20, 0x23b201e2, 0x52fa62a3, 0x18c5df20, - 0xa38fa192, 0x4126a09f, 00000000 + 0xa38fa192, 0x4126a09f }, { 0xaa08674c, 0xd1481a32, 0x9c050991, 0xc8441607, 0x903ca33d, - 0x3012e63c, 0xb440cd31, 00000000 + 0x3012e63c, 0xb440cd31 } } }, @@ -19731,211 +19731,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x174701c1, 0x73188b8b, 0xc67f99cb, 0x9509cf8f, 0x49ebaaa0, - 0xb2b94e41, 0x419711dc, 00000000 + 0xb2b94e41, 0x419711dc }, { 0xb4f4dd48, 0x6587659, 0xfa8cc0ee, 0xb039e92e, 0x650b730d, - 0x1b7745d6, 0x6bc682ff, 00000000 + 0x1b7745d6, 0x6bc682ff }, { 0xea8b80d1, 0x19073b9, 0x60fa9f3b, 0xc84bd1ca, 0xda48f309, - 0x4549cc79, 0x4222e6ec, 00000000 + 0x4549cc79, 0x4222e6ec } }, { { 0xcb50ed67, 0xaa8c472e, 0x8a4b5355, 0xfa876d02, 0xaf6bfa35, - 0xcbe5952f, 0x98845e93, 00000000 + 0xcbe5952f, 0x98845e93 }, { 0x59a48cfa, 0xa747c12c, 0x550c3807, 0xc1b196c7, 0xf9876a8e, - 0xe793bf82, 0xd6e7e184, 00000000 + 0xe793bf82, 0xd6e7e184 }, { 0x9d3fbb79, 0xe8a89b74, 0xc922d07c, 0xbd4e9237, 0x5bd010a4, - 0x209e9535, 0x22436a89, 00000000 + 0x209e9535, 0x22436a89 } }, { { 0x9e7782b, 0xc14c2b10, 0x7969fbcd, 0x88bd7d49, 0x2d39aa2c, - 0x1d5dd605, 0xff8ba2e9, 00000000 + 0x1d5dd605, 0xff8ba2e9 }, { 0x54f92762, 0xee78724d, 0x361f9b67, 0x8d780cd8, 0x93cd2e01, - 0xf92934f0, 0x4ed24ac7, 00000000 + 0xf92934f0, 0x4ed24ac7 }, { 0xd9c075eb, 0x479b11ef, 0xb752f768, 0x93f31fbe, 0x4d204cb4, - 0x7c6ffb6f, 0x5a3aa05a, 00000000 + 0x7c6ffb6f, 0x5a3aa05a } }, { { 0xd70c1093, 0x68373d8d, 0x9b12d41b, 0x8def5665, 0x1a8c58cc, - 0x2bcb74cf, 0x844963bf, 00000000 + 0x2bcb74cf, 0x844963bf }, { 0xad9b6ba7, 0x7e9073be, 0xe9848060, 0x8237ea60, 0xf11bf3de, - 0x64b980d9, 0x62042d11, 00000000 + 0x64b980d9, 0x62042d11 }, { 0xbafacf32, 0xbc1c4cf3, 0x49d52007, 0xb3ecbf63, 0x356b5bf9, - 0xcb439b97, 0xe1011c44, 00000000 + 0xcb439b97, 0xe1011c44 } }, { { 0x1987e156, 0xb83cbe2b, 0x659760d3, 0x3ee53747, 0x2d1fc861, - 0x2b8460f5, 0x65002c79, 00000000 + 0x2b8460f5, 0x65002c79 }, { 0x4e0de441, 0x29709c9b, 0x5688c764, 0xd8bcd311, 0x7472c6ae, - 0x49818243, 0xc59a5591, 00000000 + 0x49818243, 0xc59a5591 }, { 0xf0c1a974, 0xe6b3dae, 0x5a9c578b, 0x48a253ec, 0x85797d46, - 0x9b499d4f, 0x8686e8d2, 00000000 + 0x9b499d4f, 0x8686e8d2 } }, { { 0xdebb782, 0xf1e4997e, 0x645c9eba, 0xf828afb4, 0xf969028, - 0xb54b4fb4, 0x42e6ef4b, 00000000 + 0xb54b4fb4, 0x42e6ef4b }, { 0x3aedb961, 0x909c82b5, 0x4bfcdc6a, 0x211d5f16, 0xd7b6a11b, - 0x7ca1186a, 0x813bc943, 00000000 + 0x7ca1186a, 0x813bc943 }, { 0x42c50a11, 0xd89c577b, 0xe6ca83f9, 0xf6cff99c, 0x6300f30f, - 0x51c09302, 0x276fd3ac, 00000000 + 0x51c09302, 0x276fd3ac } }, { { 0xcd9a6c1c, 0xfedd317a, 0x2799a240, 0x241169fb, 0xe81a869a, - 0x30078cc5, 0xf38dbeb3, 00000000 + 0x30078cc5, 0xf38dbeb3 }, { 0x56c06a78, 0x8503543e, 0xdec79937, 0x5c6e1ad, 0x57391757, - 0x667ba8fb, 0x68fd5a4d, 00000000 + 0x667ba8fb, 0x68fd5a4d }, { 0x6fc6ade9, 0x6d69e025, 0x9cdcfb72, 0x1ff239a8, 0x7cde2ccb, - 0x78842005, 0x7adbab39, 00000000 + 0x78842005, 0x7adbab39 } }, { { 0x552948fc, 0x2962cdf8, 0xbc852370, 0xb5577c1c, 0x75c27e6, - 0xbb406fab, 0x972b142e, 00000000 + 0xbb406fab, 0x972b142e }, { 0x7f6cf015, 0x95b9d90a, 0x368eb1d8, 0x50ac4c1c, 0x85480c2a, - 0xe4884058, 0x541f40bf, 00000000 + 0xe4884058, 0x541f40bf }, { 0xa5ae9f95, 0x29ce21cf, 0x295da616, 0x575090bf, 0xbd72fcdc, - 0xed2be1ec, 0xeea4d404, 00000000 + 0xed2be1ec, 0xeea4d404 } }, { { 0x72045a70, 0x5fc9ab47, 0x937ddd98, 0xa5282154, 0x446e4fce, - 0x1a4194a4, 0x306e2415, 00000000 + 0x1a4194a4, 0x306e2415 }, { 0xe69abb5e, 0x3176ae68, 0x1ce046fb, 0x4551dd01, 0xbfb4e477, - 0x9df1e17b, 0x69af64fe, 00000000 + 0x9df1e17b, 0x69af64fe }, { 0x9a5bcb73, 0xc8f3d406, 0x9ff218f3, 0x9c6293a5, 0x7ba495eb, - 0xd81cadc5, 0x7ca17d80, 00000000 + 0xd81cadc5, 0x7ca17d80 } }, { { 0x2bda5caa, 0x305cba6a, 0x1aea14cd, 0xcffbe31e, 0xc9cae348, - 0x808b578d, 0xb9747e5b, 00000000 + 0x808b578d, 0xb9747e5b }, { 0x8a3055c, 0xa967f93b, 0x8329e0ed, 0xfc192321, 0x4cfb6d05, - 0x120cb3ac, 0xb3fae0a3, 00000000 + 0x120cb3ac, 0xb3fae0a3 }, { 0xa41ad5f2, 0x47404976, 0x518294cd, 0xf1821428, 0xadd8af87, - 0x89472944, 0x1bc453e5, 00000000 + 0x89472944, 0x1bc453e5 } }, { { 0x2c61715c, 0x14c58a8c, 0xc4e97052, 0x85a5b8f7, 0xec5a24d1, - 0x5ab5ccb4, 0xebdc71a1, 00000000 + 0x5ab5ccb4, 0xebdc71a1 }, { 0x99934bb, 0xccf40af1, 0xa987b05f, 0xce9f6c1a, 0x3b1be701, - 0xdfa581f3, 0xcac0f2e5, 00000000 + 0xdfa581f3, 0xcac0f2e5 }, { 0x4bf8cef5, 0xf221e53f, 0xe9584fc4, 0x3391952e, 0x1d1c8ae6, - 0xed640d3f, 0x6b874660, 00000000 + 0xed640d3f, 0x6b874660 } }, { { 0x6431e838, 0xe7a47e69, 0x9f218902, 0xff2a378d, 0xf9475eff, - 0xbed45b1f, 0xbf2bd046, 00000000 + 0xbed45b1f, 0xbf2bd046 }, { 0x4a09b9b2, 0x3e91c2a9, 0xd66012a, 0x5d3bbf17, 0x9799ec56, - 0x4c93e17b, 0x800278a2, 00000000 + 0x4c93e17b, 0x800278a2 }, { 0x469fe692, 0xf750384d, 0x2a08d5d6, 0xce2eb145, 0x7e4cbfaf, - 0x728e4d7e, 0x972245b8, 00000000 + 0x728e4d7e, 0x972245b8 } }, { { 0xe505804d, 0x29f68bd5, 0x8520b704, 0xb232d920, 0xe4764e92, - 0x63ecfe20, 0x90cb089f, 00000000 + 0x63ecfe20, 0x90cb089f }, { 0x71ed4f17, 0xbdedcce2, 0x7f271adb, 0x8ba1a05a, 0x922737fd, - 0xdcda51d3, 0x2f713f12, 00000000 + 0xdcda51d3, 0x2f713f12 }, { 0x6b5c9f33, 0x9b045163, 0xd6fd5949, 0xb88e9343, 0x322335b9, - 0x36f3b6e6, 0x741a467f, 00000000 + 0x36f3b6e6, 0x741a467f } }, { { 0x6bfd4705, 0x56079a9, 0x504879f, 0xb0c73863, 0x18f7f171, - 0x54edaf93, 0xecb3e886, 00000000 + 0x54edaf93, 0xecb3e886 }, { 0x730df1ee, 0x40d573c5, 0x56bd1d3b, 0x9c1b687e, 0xb0726463, - 0x2a173966, 0xfe6cf406, 00000000 + 0x2a173966, 0xfe6cf406 }, { 0xa6463e30, 0x2ae682eb, 0x5278e917, 0xe7b8b278, 0xdd26b9f0, - 0x546c1a58, 0x54f9bc23, 00000000 + 0x546c1a58, 0x54f9bc23 } }, { { 0x30662726, 0x49545032, 0x3def97b0, 0x704ca15, 0x5b848cfc, - 0xdf164ae2, 0xb3c4b7c, 00000000 + 0xdf164ae2, 0xb3c4b7c }, { 0x58db7a67, 0x96e5a1de, 0xcf6f32a2, 0xc6abbd13, 0x31d058d8, - 0xfffde099, 0x466f24a6, 00000000 + 0xfffde099, 0x466f24a6 }, { 0xd72916b8, 0x53907cdf, 0xb65f63c4, 0x740193c2, 0xae36c3b8, - 0xcdf8a76e, 0xf14b58ed, 00000000 + 0xcdf8a76e, 0xf14b58ed } } }, @@ -19943,211 +19943,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x2b299955, 0xb834091d, 0xbb110092, 0xb62f78f1, 0x27145384, - 0x3911e6f5, 0x373038c1, 00000000 + 0x3911e6f5, 0x373038c1 }, { 0x9d0190db, 0xa85a501c, 0xa6a612bc, 0x6e0d9f67, 0xef8a7cc, - 0x93069e26, 0x4b0eedb9, 00000000 + 0x93069e26, 0x4b0eedb9 }, { 0x3cea65bf, 0x39ef9d44, 0x2a01aae7, 0x724d6a71, 0x91963463, - 0xdc8fc8de, 0xf3ca5686, 00000000 + 0xdc8fc8de, 0xf3ca5686 } }, { { 0x5e01c546, 0xc027fd9c, 0x326730d8, 0x6082bf66, 0x6acb8b53, - 0xae9e59a6, 0x83d42e23, 00000000 + 0xae9e59a6, 0x83d42e23 }, { 0xbacbaa5b, 0xe6b1a0d1, 0xb48e7597, 0xc4986dfc, 0x20ed1bb0, - 0xb7d41bfe, 0x1ec0d0eb, 00000000 + 0xb7d41bfe, 0x1ec0d0eb }, { 0x15236055, 0x485a4dbc, 0x6e615c73, 0x70b57264, 0x45059e5a, - 0xca2c5604, 0xc4de351b, 00000000 + 0xca2c5604, 0xc4de351b } }, { { 0x22c8628b, 0x2d5465d7, 0x92774b9, 0x2466fc3f, 0x4f5157d9, - 0x81957c36, 0x16c29b16, 00000000 + 0x81957c36, 0x16c29b16 }, { 0x2a3e5c35, 0x30015310, 0xbc682a1e, 0x43d2176e, 0xd56fcc65, - 0xa15234b3, 0xc0296dd8, 00000000 + 0xa15234b3, 0xc0296dd8 }, { 0x6242e9e9, 0xc29313d8, 0xa20729a6, 0xd0dab52b, 0x7e189bd8, - 0x70e9d75a, 0x7842c46c, 00000000 + 0x70e9d75a, 0x7842c46c } }, { { 0x3e98fe57, 0xd2cbd7d2, 0x1aa47ee2, 0xd50ba43e, 0x35785d71, - 0xeb4c6b11, 0x470685f8, 00000000 + 0xeb4c6b11, 0x470685f8 }, { 0x3b2275ca, 0xa07e5def, 0xa772a838, 0x3550ddcf, 0x67ebb3ec, - 0xfde880d6, 0x44e6c555, 00000000 + 0xfde880d6, 0x44e6c555 }, { 0x4421bfb0, 0x932b657e, 0x3b7e17ee, 0x9b9aa0d5, 0xa0e2a694, - 0xbcc1c1e4, 0x995ebbaf, 00000000 + 0xbcc1c1e4, 0x995ebbaf } }, { { 0x6d1d22fd, 0x82105a9, 0x9e171bc1, 0x605c554d, 0x181ad1a8, - 0x78efe248, 0x62938655, 00000000 + 0x78efe248, 0x62938655 }, { 0xb87f193d, 0x80850632, 0x67eeab08, 0xf200895c, 0xe54ebae0, - 0x13420a3f, 0x926e78b, 00000000 + 0x13420a3f, 0x926e78b }, { 0x2daa4be3, 0xb920b415, 0x7d0e7bdb, 0x1427db11, 0x5d697f0a, - 0xff6342c9, 0x19dcf1e6, 00000000 + 0xff6342c9, 0x19dcf1e6 } }, { { 0xa149ce44, 0x25ed3198, 0x13e80b3a, 0x98065cb0, 0x946bc413, - 0x222aaa18, 0x771ab8f4, 00000000 + 0x222aaa18, 0x771ab8f4 }, { 0xc6560bc9, 0x2b7d89a1, 0xcfa23d05, 0xde972a6, 0xb7298db, - 0x99b64a2, 0xfd2dc121, 00000000 + 0x99b64a2, 0xfd2dc121 }, { 0xb2f97edc, 0x59ce3b04, 0xef8a5575, 0x1ba03f5f, 0xbb10be5d, - 0x633efd57, 0x5eb063eb, 00000000 + 0x633efd57, 0x5eb063eb } }, { { 0x23ab44d, 0xa0dcba7c, 0xe672e30d, 0xb6321e09, 0x61d4d9ae, - 0x98bf3777, 0x3419d687, 00000000 + 0x98bf3777, 0x3419d687 }, { 0x1e03663e, 0xffb1a4b3, 0x8e128540, 0x5df62550, 0x499366a7, - 0xcb98fb54, 0x660647b0, 00000000 + 0xcb98fb54, 0x660647b0 }, { 0xe3e5bf9d, 0x327cbb94, 0xeb9761f2, 0x2b5009a1, 0x1a0592ed, - 0x46d78f12, 0x9d3f111c, 00000000 + 0x46d78f12, 0x9d3f111c } }, { { 0x490aa38a, 0x5c5fda51, 0xfaac7fd0, 0xd19857e5, 0x17a044a8, - 0x86b2609, 0x57c7312d, 00000000 + 0x86b2609, 0x57c7312d }, { 0xda98e06a, 0x9e91e68d, 0x6c4d13e6, 0x242502a3, 0xc7ecd196, - 0xfa0349f2, 0xb68fa62c, 00000000 + 0xfa0349f2, 0xb68fa62c }, { 0x526c57dc, 0xfa45a9aa, 0x69cddb7c, 0x94d976e3, 0x138893e1, - 0x80ea5ce9, 0x6e969a1a, 00000000 + 0x80ea5ce9, 0x6e969a1a } }, { { 0x33c6af54, 0x314631ea, 0x1174dea3, 0x2f5f2c91, 0x80dfcb23, - 0xf23a95e, 0x45262ae4, 00000000 + 0xf23a95e, 0x45262ae4 }, { 0xb8655c4c, 0x4dc715ac, 0x1ff0c5c, 0x686cfeed, 0x375eaa75, - 0x5c157bfe, 0x86507f8f, 00000000 + 0x5c157bfe, 0x86507f8f }, { 0x54577b15, 0xfa2f9e5a, 0x59688259, 0x7ef6dbc2, 0x80c701bd, - 0xcfb1dda0, 0xeaf62df7, 00000000 + 0xcfb1dda0, 0xeaf62df7 } }, { { 0xc1f2812d, 0x78c8e6, 0x87b45a40, 0x5f1ef899, 0xc5a669bd, - 0xa1fb093, 0x45c2cdcd, 00000000 + 0xa1fb093, 0x45c2cdcd }, { 0xcbfc61aa, 0x3b82e090, 0x51d19162, 0xc7acd912, 0xe5a45313, - 0x1712cea, 0xca72c5a5, 00000000 + 0x1712cea, 0xca72c5a5 }, { 0xe19bf7d6, 0xc303308c, 0xa65f85f2, 0xfd5866bf, 0x1bc12551, - 0xf69e7703, 0xb2afbc4f, 00000000 + 0xf69e7703, 0xb2afbc4f } }, { { 0xedba6759, 0x1f8382d7, 0xeb83446a, 0xdb4e4b76, 0xbaf7cd36, - 0x8983b907, 0x7964f547, 00000000 + 0x8983b907, 0x7964f547 }, { 0xc33e5ef7, 0xca9ac54f, 0xdf295425, 0xf30381c8, 0x88690e2c, - 0x5752fcea, 0x1bf8501e, 00000000 + 0x5752fcea, 0x1bf8501e }, { 0xcfb229ae, 0x557d38f0, 0xfda79033, 0xadc2e14a, 0x8336263b, - 0xb668d012, 0x58d70182, 00000000 + 0xb668d012, 0x58d70182 } }, { { 0x37bba5fc, 0x1483ec04, 0x64a47a39, 0xa6df47c3, 0x894b97c3, - 0xb9f8b75, 0xfdd4fc5e, 00000000 + 0xb9f8b75, 0xfdd4fc5e }, { 0x532d21d2, 0x6eeaa07f, 0xdc7f07a1, 0xfdacb4db, 0x514f877, - 0x580aa6f3, 0x3748229e, 00000000 + 0x580aa6f3, 0x3748229e }, { 0x1e7d28fb, 0xa2c8d449, 0x1146fe7b, 0xbbe7184b, 0x350da505, - 0xf65b3e6b, 0x254d1d62, 00000000 + 0xf65b3e6b, 0x254d1d62 } }, { { 0x6d00f81, 0xd428370b, 0x15d846e4, 0xb0ff88b7, 0xbd1e5e93, - 0x4bfd584c, 0x3786bb16, 00000000 + 0x4bfd584c, 0x3786bb16 }, { 0x2a49aee, 0x57f41c60, 0xea1f62c8, 0x6992d762, 0x8c8327a1, - 0xa38e92cb, 0x149d9bd7, 00000000 + 0xa38e92cb, 0x149d9bd7 }, { 0x9f33ecab, 0xd7854756, 0xf4d770b7, 0x827c0270, 0x868fddba, - 0x9eecf275, 0x1ad41582, 00000000 + 0x9eecf275, 0x1ad41582 } }, { { 0x37a1e2f2, 0x819270ea, 0x725c7e21, 0xca4e91df, 0x1c202840, - 0xeaf875aa, 0xdc98f02a, 00000000 + 0xeaf875aa, 0xdc98f02a }, { 0x1c2470b1, 0xe6b90d6c, 0x7d34a1d3, 0x71c06ccf, 0x49994c5d, - 0x2436f69, 0xe8645285, 00000000 + 0x2436f69, 0xe8645285 }, { 0xddfb00ab, 0x67cac66c, 0x965036c, 0x3c6898ad, 0xa125e3ed, - 0x74e8bb20, 0x3722fbfa, 00000000 + 0x74e8bb20, 0x3722fbfa } }, { { 0x7d1b1b7f, 0xdc48298f, 0x9190701d, 0xfd249326, 0x94bda441, - 0xf22a0302, 0x93717755, 00000000 + 0xf22a0302, 0x93717755 }, { 0x44d2ea9a, 0xa0e8aba0, 0x23831fad, 0xf86173c5, 0x1d02ea04, - 0x4db383ca, 0xddbaa371, 00000000 + 0x4db383ca, 0xddbaa371 }, { 0x23f61655, 0x64821050, 0xdd450b1, 0x4e59fd31, 0xfbfe175e, - 0xe8d6313, 0xff02180e, 00000000 + 0xe8d6313, 0xff02180e } } }, @@ -20155,211 +20155,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xf2176eb8, 0x5c19c0ef, 0x21d9115a, 0x647658ea, 0x501089b0, - 0x37df1251, 0xef1cb4aa, 00000000 + 0x37df1251, 0xef1cb4aa }, { 0x6cbb1c64, 0x88b7c9c0, 0xbd510c6c, 0x4289357f, 0xab80c800, - 0xc7c81f7a, 0xdf8ec4cc, 00000000 + 0xc7c81f7a, 0xdf8ec4cc }, { 0xaffd4c1f, 0x64ab0740, 0x98703c85, 0x10b20907, 0xfad4a4ce, - 0x12c91af8, 0xe9958c86, 00000000 + 0x12c91af8, 0xe9958c86 } }, { { 0x10d05688, 0x30440c00, 0x5df3b508, 0xb3cdc848, 0x436d4861, - 0x8dc03cae, 0x72d99afe, 00000000 + 0x8dc03cae, 0x72d99afe }, { 0x391a96ec, 0x9605fc52, 0xef34ed79, 0xedd01035, 0x6006aea1, - 0x728340ae, 0x54147c2e, 00000000 + 0x728340ae, 0x54147c2e }, { 0x7c175a96, 0xc1c0d96f, 0xabf899fd, 0xadd860a1, 0xb8f5855e, - 0xaf23ff49, 0x1cdf10f5, 00000000 + 0xaf23ff49, 0x1cdf10f5 } }, { { 0x70bf3cf9, 0x6726a4d1, 0xbc9dd629, 0x6d09eb28, 0xfc851054, - 0x45c2d95f, 0xecced3b5, 00000000 + 0x45c2d95f, 0xecced3b5 }, { 0x10e7f980, 0xbfc09c16, 0x54f05d3, 0x37f1166b, 0x1f014371, - 0x5b473e51, 0x8162e4d1, 00000000 + 0x5b473e51, 0x8162e4d1 }, { 0xee3e7363, 0xa5e2f2ed, 0x4f9ef0c6, 0x1d220f55, 0xbca2f174, - 0xeeede02c, 0x3b5a2b5c, 00000000 + 0xeeede02c, 0x3b5a2b5c } }, { { 0x97886bc2, 0x47787e41, 0xc170f36, 0xa2bf892a, 0x5927706a, - 0xc9056501, 0xe95c71d4, 00000000 + 0xc9056501, 0xe95c71d4 }, { 0x395f4548, 0x5eec7d47, 0x78180a87, 0x23e4414a, 0x1dc0bcc7, - 0x165ee6ba, 0x9fe1f2db, 00000000 + 0x165ee6ba, 0x9fe1f2db }, { 0x6795c059, 0x6604cbab, 0xf64667b2, 0xb97e44e2, 0x35d4e4ad, - 0xe9e0ef9c, 0x92079ca7, 00000000 + 0xe9e0ef9c, 0x92079ca7 } }, { { 0x6d2cc47, 0x8271264f, 0xc0a5b0a4, 0x5ca8a721, 0xf224f4d4, - 0xfca59a79, 0xc9a1480, 00000000 + 0xfca59a79, 0xc9a1480 }, { 0x5a08d785, 0xab015832, 0x92fccbf1, 0x76698ec2, 0x4ae2a625, - 0xf659adee, 0x39618e0a, 00000000 + 0xf659adee, 0x39618e0a }, { 0xf24d7c0c, 0x5ac3157, 0x1b225490, 0x99c755cb, 0x9fed0b35, - 0x783e4651, 0xb64ef631, 00000000 + 0x783e4651, 0xb64ef631 } }, { { 0xe9aa6da9, 0x648f1e3f, 0xc6b11168, 0xede66de0, 0x4a1fb75f, - 0x231a76ed, 0x4b538d7a, 00000000 + 0x231a76ed, 0x4b538d7a }, { 0xe3839a7f, 0x1a9407e8, 0xca923d23, 0xcc65bc80, 0xfb57a6f1, - 0xcf7db509, 0xa08c1e0d, 00000000 + 0xcf7db509, 0xa08c1e0d }, { 0x75013265, 0xafa25322, 0x2187735b, 0x3070bf03, 0x7489601, - 0x48138c7, 0x62add336, 00000000 + 0x48138c7, 0x62add336 } }, { { 0x86a78bbb, 0x2f040d3, 0x31e6998b, 0x60f56de4, 0xec4395fc, - 0x6871ec6c, 0x72d8e09b, 00000000 + 0x6871ec6c, 0x72d8e09b }, { 0xf051f750, 0x32c18591, 0x2a50213d, 0x8a99c00f, 0xdc086f33, - 0x2cf2814e, 0x70dbc9ae, 00000000 + 0x2cf2814e, 0x70dbc9ae }, { 0xdcaf1a47, 0x119f0a11, 0xab453fa7, 0x90db36a2, 0xd4b83697, - 0x400abc5e, 0x17cb08ad, 00000000 + 0x400abc5e, 0x17cb08ad } }, { { 0x36758b91, 0x7beee654, 0x8ebfbdf4, 0xffd9e167, 0x2efd0623, - 0xf20dc58f, 0xbda5ebce, 00000000 + 0xf20dc58f, 0xbda5ebce }, { 0xdd59bdd4, 0xd85599ec, 0xd055e21, 0x739a6eec, 0x26c5cc0f, - 0xba4880e7, 0x18f04428, 00000000 + 0xba4880e7, 0x18f04428 }, { 0xcbe42ac3, 0x6a25a5de, 0xa9989c2d, 0x26dfd673, 0xaae0813a, - 0x209367cc, 0x37e31961, 00000000 + 0x209367cc, 0x37e31961 } }, { { 0x8391f080, 0x12b709a2, 0x3ccc1a8f, 0x15cb17bc, 0xd33e76d8, - 0xcedc6ce2, 0xf86b47cb, 00000000 + 0xcedc6ce2, 0xf86b47cb }, { 0xc37fd032, 0xd4836c0, 0xd4cee9d5, 0xc1f40bcb, 0xc3478670, - 0x88f93b00, 0xcc52c0c1, 00000000 + 0x88f93b00, 0xcc52c0c1 }, { 0x7a42d987, 0xd0d8134c, 0xf14ebad7, 0x704b7d2a, 0x14739992, - 0x9b1d67a2, 0x1bb54967, 00000000 + 0x9b1d67a2, 0x1bb54967 } }, { { 0x3ea68806, 0xf88ffc0b, 0xf4a4751c, 0x61637e42, 0x721626d0, - 0xbe6017d2, 0x57acbe4e, 00000000 + 0xbe6017d2, 0x57acbe4e }, { 0xbfe64ed6, 0x4557560a, 0xabe1ae11, 0x7e227ba, 0x220ce079, - 0xd8a2cdc4, 0xbf487441, 00000000 + 0xd8a2cdc4, 0xbf487441 }, { 0x271458a4, 0xa277179, 0x865a4eef, 0xf58239f9, 0x26282c2, - 0x322468d5, 0xc2afec0a, 00000000 + 0x322468d5, 0xc2afec0a } }, { { 0xfea2a909, 0x3f0b2d53, 0xe7b80636, 0x2371c15f, 0xb938ffda, - 0xd7798912, 0x9523ada1, 00000000 + 0xd7798912, 0x9523ada1 }, { 0xf2a151b8, 0x6f4cc03e, 0x703e29e8, 0xc1d671ec, 0xb57f4eeb, - 0x6b00fb31, 0x5f40cf59, 00000000 + 0x6b00fb31, 0x5f40cf59 }, { 0xa8ca27f3, 0xa7f6ea44, 0xa100f81d, 0xe8cdcb7c, 0xd71ef468, - 0x8b20e6e9, 0x692285ca, 00000000 + 0x8b20e6e9, 0x692285ca } }, { { 0xcb63486e, 0x1035c795, 0x16593586, 0xadd8a2af, 0xee75952e, - 0x925011d2, 0xa72e1dfa, 00000000 + 0x925011d2, 0xa72e1dfa }, { 0x18b46511, 0xa4a6f3db, 0x1186c140, 0x1c97b34c, 0xe6edfcf3, - 0x8243dd4c, 0x8649d2a5, 00000000 + 0x8243dd4c, 0x8649d2a5 }, { 0x6dc80917, 0x9b2b5cd3, 0x4876f905, 0x557b604c, 0x77a2009c, - 0x7edd0adf, 0x8f9d8fe7, 00000000 + 0x7edd0adf, 0x8f9d8fe7 } }, { { 0xd28ec077, 0x18b6b365, 0xe662ba84, 0x56d8a693, 0x3868ee76, - 0x18ae3f3e, 0xde57f896, 00000000 + 0x18ae3f3e, 0xde57f896 }, { 0xbb35d995, 0x5d7ae13b, 0x6d1aab54, 0x7615bf39, 0xf4f1d67d, - 0xb10335b3, 0x2aaa4015, 00000000 + 0xb10335b3, 0x2aaa4015 }, { 0xe0af291d, 0x2a154f3c, 0x906367cf, 0x4ce5d396, 0xf7fad513, - 0xf334d05a, 0xfdc80352, 00000000 + 0xf334d05a, 0xfdc80352 } }, { { 0x38efb040, 0xc6897a, 0xe54bb8a3, 0xe4b6ab2a, 0xd827e69e, - 0x72257689, 0x416eec38, 00000000 + 0x72257689, 0x416eec38 }, { 0xd63b0886, 0x96392e26, 0x527f610b, 0x73394c21, 0xa614bd82, - 0x58108ae, 0x4ea152e3, 00000000 + 0x58108ae, 0x4ea152e3 }, { 0xc0b40f04, 0x5889f5b0, 0xa6c42bcc, 0xb2ceef04, 0x75c5610b, - 0x5859953, 0x3c9f3742, 00000000 + 0x5859953, 0x3c9f3742 } }, { { 0x8b221478, 0xc3668c3d, 0x5155dcfc, 0xe69dd0ec, 0xe39ff4f7, - 0x895302f0, 0xa6502c9e, 00000000 + 0x895302f0, 0xa6502c9e }, { 0x14a5f7a0, 0xd02b5ea5, 0xc712154a, 0xaa290da8, 0x22590a04, - 0xbdf625d7, 0x9587b865, 00000000 + 0xbdf625d7, 0x9587b865 }, { 0xb2627902, 0x9a77f5cf, 0x31955c27, 0xd90461de, 0xc48ff600, - 0xe96b3a7c, 0xe21c6cc8, 00000000 + 0xe96b3a7c, 0xe21c6cc8 } } }, @@ -20367,211 +20367,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xd51f1d79, 0x754b5ac3, 0x256875aa, 0x385c2397, 0x9b0b9d40, - 0x8370c993, 0xfa13c7a5, 00000000 + 0x8370c993, 0xfa13c7a5 }, { 0x8fa98c22, 0x9a3a5e5c, 0x52c03817, 0x449e6e48, 0x646d7f16, - 0xcea69aa0, 0x715a28a8, 00000000 + 0xcea69aa0, 0x715a28a8 }, { 0x20e622b4, 0x8085b37f, 0x92b66008, 0xa264c240, 0xa5e6d161, - 0x3ea26d7, 0x18b07d2d, 00000000 + 0x3ea26d7, 0x18b07d2d } }, { { 0x6f4f8a8, 0xca47543, 0x91acd20a, 0x7ab4c46, 0xdda5a854, - 0x104e5e22, 0x63ee54cb, 00000000 + 0x104e5e22, 0x63ee54cb }, { 0xa6ac00ef, 0x4b31955, 0x4d9f54d1, 0x3674e723, 0x5069b16e, - 0x1f112e78, 0x217ef86d, 00000000 + 0x1f112e78, 0x217ef86d }, { 0xa435fd9c, 0xc50a8fd8, 0x31513f6c, 0x23688f90, 0x8c0d1851, - 0x55a99307, 0xd9519bcc, 00000000 + 0x55a99307, 0xd9519bcc } }, { { 0xfc8cfb31, 0xd7891fc3, 0x70599f69, 0xd92cbef3, 0xf4be9ffa, - 0x910e2905, 0xbf91d3f4, 00000000 + 0x910e2905, 0xbf91d3f4 }, { 0x11f065f3, 0x5187e769, 0xf687140f, 0x2867851e, 0xe9bb007c, - 0xa350da00, 0x540e4d84, 00000000 + 0xa350da00, 0x540e4d84 }, { 0x33ead9f0, 0xf31f601e, 0x2e9d842b, 0xcd27db5e, 0xf1e34337, - 0xd44719f5, 0xc253c3cc, 00000000 + 0xd44719f5, 0xc253c3cc } }, { { 0x18f651fa, 0xf1296ee6, 0x53ce51c5, 0x8db8e9d9, 0x2a6c2b98, - 0x1a0a1157, 0x39e8ef99, 00000000 + 0x1a0a1157, 0x39e8ef99 }, { 0xa1c72d26, 0xef39aaf7, 0xee43d47e, 0xf98acd0, 0xa3e21031, - 0xa97757e9, 0x84ffd3e9, 00000000 + 0xa97757e9, 0x84ffd3e9 }, { 0x4e9d0290, 0x739a35a, 0x2244e48f, 0xdc9d6ab9, 0xfb4abc69, - 0xf37fcc07, 0xfa416def, 00000000 + 0xf37fcc07, 0xfa416def } }, { { 0xc6711356, 0xe56c6376, 0x3ec380ce, 0x762581a2, 0xd6fbeb87, - 0x4c24dfd5, 0x6abaa20b, 00000000 + 0x4c24dfd5, 0x6abaa20b }, { 0x167bd1a0, 0x2828fa94, 0x545ff8c5, 0x1ee276, 0xe7d77f73, - 0x4c8b8cf7, 0x9134912f, 00000000 + 0x4c8b8cf7, 0x9134912f }, { 0xe5c85e70, 0xc220887b, 0x2a02a66d, 0xb37442da, 0xcb6a0883, - 0x4612adb2, 0xf39ddc4b, 00000000 + 0x4612adb2, 0xf39ddc4b } }, { { 0xb017d114, 0x3793fd4a, 0x31017fc4, 0x656efdb6, 0x430d5a58, - 0x67f1e263, 0xca0a9570, 00000000 + 0x67f1e263, 0xca0a9570 }, { 0x73676d43, 0x6b12939b, 0x46647873, 0x95434344, 0xa9a3d93, - 0x9609d3a4, 0x7b5e181d, 00000000 + 0x9609d3a4, 0x7b5e181d }, { 0xfe97b4c6, 0x17230a10, 0xb0ddf149, 0x303e1d87, 0x6260fa8b, - 0xf85faeb4, 0x12b93da8, 00000000 + 0xf85faeb4, 0x12b93da8 } }, { { 0xbbe37b72, 0x9033c3a6, 0xc8aacc5, 0x8b869341, 0x58b9dacb, - 0xddbcad9e, 0xb52c6e5f, 00000000 + 0xddbcad9e, 0xb52c6e5f }, { 0xa9a584f9, 0x558f41cf, 0xafed34e6, 0xbbf69b58, 0x6f5a9e7b, - 0x49eb0964, 0x77a15362, 00000000 + 0x49eb0964, 0x77a15362 }, { 0xb8a2db60, 0xda43e1f8, 0x3de3d08e, 0xb4f175ba, 0x719d13d2, - 0xa06999af, 0xda0c4766, 00000000 + 0xa06999af, 0xda0c4766 } }, { { 0x1583d20e, 0x826b7d9, 0xdae08939, 0x67033e58, 0xd92f67f2, - 0xed9dd634, 0xe445b37d, 00000000 + 0xed9dd634, 0xe445b37d }, { 0x2d953420, 0xcef05647, 0xac33c572, 0x415c8569, 0x8c3651a5, - 0x1d5b647c, 0xe7264702, 00000000 + 0x1d5b647c, 0xe7264702 }, { 0x34416052, 0xd909e5f, 0x829c4ecc, 0x9d71ea46, 0xddd52735, - 0x44aab607, 0x5ad844e7, 00000000 + 0x44aab607, 0x5ad844e7 } }, { { 0x6c2cda72, 0xdea20473, 0xe8d7fc15, 0xad1fdc50, 0xded0e69c, - 0x364027f9, 0x895ad3c0, 00000000 + 0x364027f9, 0x895ad3c0 }, { 0x9b5e36af, 0xa74b772d, 0xfbfa962d, 0x4ac9580, 0x3bf3d3ec, - 0x99872d3e, 0x9acf3ab4, 00000000 + 0x99872d3e, 0x9acf3ab4 }, { 0x12b8154, 0x139cfd3f, 0xf9c97951, 0xe8c78522, 0x443362d, - 0xbedd538d, 0xc0e73975, 00000000 + 0xbedd538d, 0xc0e73975 } }, { { 0x1c145e62, 0x16f5e732, 0x9d7ac2ea, 0x9c4db00a, 0xb53bff0f, - 0x693fdc3c, 0xdb038c14, 00000000 + 0x693fdc3c, 0xdb038c14 }, { 0x1989ea11, 0x47b12b95, 0xf59f8c52, 0x1ae9baef, 0x777a92c3, - 0x50e3d786, 0x994b156a, 00000000 + 0x50e3d786, 0x994b156a }, { 0xc702aa76, 0xcefdafde, 0x82fc1829, 0x72d4846e, 0x37e4ea9b, - 0xfcdf7019, 0x85227447, 00000000 + 0xfcdf7019, 0x85227447 } }, { { 0x50813ebc, 0x268b830d, 0x5ad1e981, 0xac909d08, 0xe2a2aab6, - 0xcd013f77, 0x634cc7d8, 00000000 + 0xcd013f77, 0x634cc7d8 }, { 0x16851f4d, 0xce93f40f, 0x4350df9, 0xff87e631, 0x4607c2e6, - 0xb1f77e1, 0x84d0de69, 00000000 + 0xb1f77e1, 0x84d0de69 }, { 0xa7056d19, 0xf136fdff, 0x3157c8e0, 0xf85630da, 0xc0076d65, - 0xf12f6005, 0xe96d505f, 00000000 + 0xf12f6005, 0xe96d505f } }, { { 0x3f976f43, 0x64948fcf, 0x751c8978, 0xe8cc7a19, 0xeb58f915, - 0xd1263f28, 0x3f17d07, 00000000 + 0xd1263f28, 0x3f17d07 }, { 0xf31825fb, 0xcff56bf, 0x6a446649, 0xb26bc1fe, 0x47136d19, - 0x6b3402e7, 0x7ea4ce5c, 00000000 + 0x6b3402e7, 0x7ea4ce5c }, { 0x9a21d4ed, 0xe095f7ed, 0x92b8a6e1, 0xd3a680fc, 0x48ea3b35, - 0x7753e7e5, 0x6ec97491, 00000000 + 0x7753e7e5, 0x6ec97491 } }, { { 0x69b47775, 0xa87b6335, 0xf8964337, 0x8859db50, 0x6cf8e916, - 0x233c00c3, 0x3987ef0, 00000000 + 0x233c00c3, 0x3987ef0 }, { 0xcd46dece, 0xeb5a858c, 0x725765a1, 0x982241d4, 0x22aacb58, - 0x4d9f543a, 0x84cfb2c2, 00000000 + 0x4d9f543a, 0x84cfb2c2 }, { 0xa964b064, 0xb2c913e7, 0x1d32eba3, 0x494bce3a, 0xd4a3b32c, - 0x79b446e0, 0xdef67ed8, 00000000 + 0x79b446e0, 0xdef67ed8 } }, { { 0xa9e36656, 0xf003d90b, 0x7a1ac845, 0xc4af0d29, 0xbbc56ba8, - 0x828da298, 0xb757e2b6, 00000000 + 0x828da298, 0xb757e2b6 }, { 0xa15608e1, 0x303a83a8, 0x8cc53373, 0x59bcddff, 0x83f3617a, - 0xe8a75d00, 0xab997791, 00000000 + 0xe8a75d00, 0xab997791 }, { 0x284678ef, 0x6bc4e0bd, 0x83710a1c, 0xc360cbeb, 0x4fde672, - 0x45fdbbba, 0x45df5cc0, 00000000 + 0x45fdbbba, 0x45df5cc0 } }, { { 0x389feb7f, 0x81c0260b, 0x7d540118, 0x28bb9962, 0xb8819277, - 0x8f2a5439, 0xb727ac49, 00000000 + 0x8f2a5439, 0xb727ac49 }, { 0xb48f4993, 0xf97eb7ea, 0xe6d5821e, 0x9c75c8d0, 0xb950a80f, - 0x31d757e9, 0x6caaa47e, 00000000 + 0x31d757e9, 0x6caaa47e }, { 0xcdcf30a5, 0xe95a3eb6, 0xe3583ae7, 0xeef437bc, 0x79a68e8b, - 0xc2540149, 0x5e4e649e, 00000000 + 0xc2540149, 0x5e4e649e } } }, @@ -20579,211 +20579,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xaf3d9dc4, 0xb31692c, 0x2d09a40b, 0xf75c7ad6, 0xe714197c, - 0xb003182d, 0xa26ca444, 00000000 + 0xb003182d, 0xa26ca444 }, { 0x91e86f4, 0x53d133c2, 0x6814361a, 0x8b6fc78f, 0x4bd557cd, - 0xc6ac556c, 0x58c21fe8, 00000000 + 0xc6ac556c, 0x58c21fe8 }, { 0xb8033fea, 0xe11535c7, 0xc04813cf, 0x756c351d, 0xc1ee5b3a, - 0xe39c3a22, 0xe2b4f52a, 00000000 + 0xe39c3a22, 0xe2b4f52a } }, { { 0xf4d52d4e, 0x879d5be1, 0x8b62d286, 0x5bfabfe8, 0x256bfd1d, - 0xb8cb1ea4, 0xa4f23fe0, 00000000 + 0xb8cb1ea4, 0xa4f23fe0 }, { 0x221df9a, 0xfad83edd, 0x5e7d91fb, 0xe8c548c2, 0x71501142, - 0xf45b5887, 0xd1892aa8, 00000000 + 0xf45b5887, 0xd1892aa8 }, { 0xe72aee68, 0x82f7dab1, 0x7344e5bd, 0x58d6c412, 0x6d9b9d92, - 0x55be5b2a, 0xfef9c211, 00000000 + 0x55be5b2a, 0xfef9c211 } }, { { 0x53db3af9, 0xe056d9f2, 0x61cfe045, 0xdf031cc6, 0x6d8aeade, - 0xc76e93cd, 0xeee9c2b9, 00000000 + 0xc76e93cd, 0xeee9c2b9 }, { 0x1f351683, 0xb48562eb, 0xc9e6e547, 0x8853639a, 0xd0e82e70, - 0x75ffdc4b, 0x82c40f96, 00000000 + 0x75ffdc4b, 0x82c40f96 }, { 0x8104af7c, 0x72dd50c0, 0xe28de522, 0x85cece76, 0xebd42b70, - 0x2df05ac4, 0x27a08176, 00000000 + 0x2df05ac4, 0x27a08176 } }, { { 0x6a48d520, 0x5a5c723, 0xfafddd1, 0x15d62602, 0x8039d705, - 0x78364d9b, 0x151bcb72, 00000000 + 0x78364d9b, 0x151bcb72 }, { 0x45921d86, 0x269f598d, 0xba373c93, 0x60c60916, 0xb23dd1c4, - 0xf1ccf325, 0x2b0d1aad, 00000000 + 0xf1ccf325, 0x2b0d1aad }, { 0x8d7d2dee, 0x862ae3fb, 0x4ef4d2f4, 0xf3934899, 0x80bc066f, - 0x9ce8809, 0xc4936d61, 00000000 + 0x9ce8809, 0xc4936d61 } }, { { 0x9e9e0992, 0x94dbe329, 0x84f40184, 0xace25260, 0x65f03325, - 0x27502ab, 0xa4b53c71, 00000000 + 0x27502ab, 0xa4b53c71 }, { 0xe1106b07, 0x950b8f32, 0x7c8ea3c1, 0x2fbab5fa, 0x23b0b48a, - 0x917fd9ad, 0x27a333dd, 00000000 + 0x917fd9ad, 0x27a333dd }, { 0x992561be, 0xf1949965, 0xeb56b0da, 0x2de0d620, 0xaad552e1, - 0x15d37f15, 0x7429f70c, 00000000 + 0x15d37f15, 0x7429f70c } }, { { 0x5b1124fe, 0x350210a, 0x4cd6cb7f, 0xfabcd783, 0xfd50fca7, - 0x42d75712, 0xeff45cdf, 00000000 + 0x42d75712, 0xeff45cdf }, { 0xb481ec30, 0xbb334054, 0xfddbe45c, 0xf81e7f04, 0x1da71d3a, - 0x1fe0c430, 0xde4fc51b, 00000000 + 0x1fe0c430, 0xde4fc51b }, { 0x191569aa, 0x2e1d81dc, 0x751d17f8, 0x7bff039, 0x1cd279c8, - 0x9a2f730, 0x94e2324c, 00000000 + 0x9a2f730, 0x94e2324c } }, { { 0xf4da2f2d, 0xb792f47a, 0x29179928, 0x8c87a272, 0x481d91f3, - 0xa4319d47, 0xf4ca99f1, 00000000 + 0xa4319d47, 0xf4ca99f1 }, { 0x499233a8, 0x92546d33, 0xfc1a476a, 0x371b7f0b, 0xdc446d97, - 0xd42d5bb7, 0x509a240c, 00000000 + 0xd42d5bb7, 0x509a240c }, { 0xa31ef6a0, 0x87ff2383, 0x35d08287, 0x3018bdfd, 0x2d93b062, - 0x7e823c39, 0xac3b9b54, 00000000 + 0x7e823c39, 0xac3b9b54 } }, { { 0x3de79e3c, 0x70fdbcce, 0x4a8806d4, 0xe9c6e8c7, 0x44cfb146, - 0xf7e00be9, 0x8fcb2af8, 00000000 + 0xf7e00be9, 0x8fcb2af8 }, { 0xcbe38dc3, 0x45baf1b8, 0xeecb6035, 0x997e8c49, 0xf5d4e64, - 0xaedf3f99, 0x530f0acd, 00000000 + 0xaedf3f99, 0x530f0acd }, { 0xc43b4b7c, 0x36b863b, 0x20f32ec3, 0x37dfe850, 0x7e0e1d97, - 0xc27e1808, 0x9dc976fb, 00000000 + 0xc27e1808, 0x9dc976fb } }, { { 0xb96898e9, 0x8618880, 0xde09249e, 0x691f3666, 0x45cc0b7a, - 0xadbc857c, 0x4c2fa693, 00000000 + 0xadbc857c, 0x4c2fa693 }, { 0xffbf833, 0x18dcaf18, 0xdb4bcc90, 0xb89f1cec, 0xb9889f77, - 0x34f5de22, 0x8d97750f, 00000000 + 0x34f5de22, 0x8d97750f }, { 0xf5d83d7a, 0x1aba05d5, 0xa08f1577, 0x9395683, 0x136b671f, - 0xb2c9ff1c, 0x6f0fdf1a, 00000000 + 0xb2c9ff1c, 0x6f0fdf1a } }, { { 0xa8550b33, 0x7c06ab3, 0x72d3bbf7, 0x39560111, 0x256a1ba1, - 0x5c6ba64f, 0xcd5f4803, 00000000 + 0x5c6ba64f, 0xcd5f4803 }, { 0x8782ecc8, 0x8dc0e20, 0x765da917, 0x2050f3fb, 0xecb64d2f, - 0x91ad77af, 0x75486808, 00000000 + 0x91ad77af, 0x75486808 }, { 0xc57ecc2e, 0x5bae38e4, 0xee59a97, 0x58299585, 0x709e8388, - 0x101d18d2, 0x1f84f6d, 00000000 + 0x101d18d2, 0x1f84f6d } }, { { 0x1fa98ccc, 0xb25ba396, 0xc1c85439, 0x692fb3a6, 0x2086ac2e, - 0xefd06c7a, 0xaba9b118, 00000000 + 0xefd06c7a, 0xaba9b118 }, { 0xca7f0fd5, 0x79a209f4, 0x2939afb3, 0xe9f64036, 0x421cabbf, - 0x322b68e3, 0x9a2ce0aa, 00000000 + 0x322b68e3, 0x9a2ce0aa }, { 0x1961dc71, 0x67866c2c, 0x40818758, 0x845ca33f, 0x4b08bb91, - 0x64f1f41f, 0xe895f6ac, 00000000 + 0x64f1f41f, 0xe895f6ac } }, { { 0xe242babc, 0xe6dba216, 0x15672eb9, 0xa75e2797, 0x748aa442, - 0x9113917f, 0x2f449830, 00000000 + 0x9113917f, 0x2f449830 }, { 0x6c945cbd, 0x72affbe, 0x5f05feda, 0x906a93c, 0x826ce07b, - 0x54c1aadf, 0x9e2485e2, 00000000 + 0x54c1aadf, 0x9e2485e2 }, { 0x8a62853f, 0x4148abf2, 0xabcafa54, 0x5cd33ef1, 0x4e206bad, - 0xf56f598d, 0x8180c68c, 00000000 + 0xf56f598d, 0x8180c68c } }, { { 0x3000b981, 0x267b3964, 0xb2136fde, 0xad1229ff, 0x62f426b0, - 0xfa9d2de4, 0x6a667869, 00000000 + 0xfa9d2de4, 0x6a667869 }, { 0x6e203e01, 0x45face8a, 0xb262269d, 0x94aff667, 0x5ded5111, - 0x21de6c6a, 0x7305e4, 00000000 + 0x21de6c6a, 0x7305e4 }, { 0x52e57ea6, 0x518a7741, 0x4cd11d1e, 0x1b37280c, 0x24f5c035, - 0x9b5e3fd1, 0x674462da, 00000000 + 0x9b5e3fd1, 0x674462da } }, { { 0xf8990655, 0xdf7db2f7, 0x5442f654, 0xec10920, 0x79ed8dd0, - 0x321bae75, 0x18ab19e0, 00000000 + 0x321bae75, 0x18ab19e0 }, { 0xaa7495c5, 0x4dac4e45, 0xaa52daa6, 0x1775266a, 0x9f9a359c, - 0xf1d483dc, 0x49444f0, 00000000 + 0xf1d483dc, 0x49444f0 }, { 0x7ee7ee8c, 0xb5af8464, 0x8fbdf3ff, 0xa063bfdd, 0x4b6b95f0, - 0x8d990470, 0xde54cc0b, 00000000 + 0x8d990470, 0xde54cc0b } }, { { 0x482ec43b, 0xdbcee305, 0x6cf45089, 0x6b50b383, 0x2260f84a, - 0xd428fb69, 0x109a88c6, 00000000 + 0xd428fb69, 0x109a88c6 }, { 0xfdf0aaa, 0xd99dc935, 0x9ba55dad, 0x4583201d, 0x8deb5ffe, - 0xe3344af6, 0xf18d707, 00000000 + 0xe3344af6, 0xf18d707 }, { 0x54d45a25, 0x1d71945f, 0x1576ee28, 0x43c48e4d, 0x2f5f01d1, - 0x64261259, 0xf2c8a10b, 00000000 + 0x64261259, 0xf2c8a10b } } }, @@ -20791,211 +20791,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x1439343, 0xccbf6da5, 0x85549083, 0x48fc3ea1, 0x4c972765, - 0x9944e1d8, 0x49abdadd, 00000000 + 0x9944e1d8, 0x49abdadd }, { 0x7a77f75e, 0xdff350f9, 0xebe1db8f, 0xeb16c3f0, 0xeb944b2f, - 0x5ede38e1, 0x267baf57, 00000000 + 0x5ede38e1, 0x267baf57 }, { 0xfad98f8b, 0xc4111f6, 0xf9bccbe0, 0x6c69dc78, 0x6776c5c2, - 0x987a88f4, 0x16f15e2f, 00000000 + 0x987a88f4, 0x16f15e2f } }, { { 0x8ea14102, 0xf58bf7bc, 0x374bd951, 0x6bb94808, 0x45345daa, - 0x26e1d1da, 0x5c5835cb, 00000000 + 0x26e1d1da, 0x5c5835cb }, { 0xf35cb2cd, 0xa246a2df, 0x59d99b72, 0x41aa10ca, 0x2e0d5d4d, - 0x21a68ff, 0x582d2f75, 00000000 + 0x21a68ff, 0x582d2f75 }, { 0x6890363, 0xfc348b19, 0xa056bff7, 0x97cd9f09, 0x144cd00e, - 0x7415e07a, 0xc2361671, 00000000 + 0x7415e07a, 0xc2361671 } }, { { 0x35cc6d46, 0xcab095f7, 0xa268b0ac, 0x7e1c3404, 0x7eab51f8, - 0xe1babd02, 0x3268ce08, 00000000 + 0xe1babd02, 0x3268ce08 }, { 0x5cadbb1a, 0x4d7f3adf, 0x967a11b3, 0xf4d21d9f, 0xd4c13e55, - 0xf7021cb8, 0xc0286303, 00000000 + 0xf7021cb8, 0xc0286303 }, { 0xb90c646a, 0xe691e621, 0xe8c5556a, 0xe6e6645a, 0x4a6409d9, - 0xc3c91a86, 0x927d6b04, 00000000 + 0xc3c91a86, 0x927d6b04 } }, { { 0x65c33e80, 0xf38b3030, 0x884659f6, 0xc1d9bf9, 0xff2e9290, - 0xc2f4058c, 0x5f15b516, 00000000 + 0xc2f4058c, 0x5f15b516 }, { 0xc0043a70, 0xd13fedc0, 0x93da8fa2, 0x59c0f995, 0x5703d9c, - 0x9fd4ee1f, 0x52e45045, 00000000 + 0x9fd4ee1f, 0x52e45045 }, { 0x5fad1e56, 0x4a76fefc, 0x70b3d1f, 0x42aceab5, 0x748b0ac7, - 0x64075a82, 0x254de8be, 00000000 + 0x64075a82, 0x254de8be } }, { { 0x6e9729a7, 0xd1af77c4, 0x18dc6a96, 0x6883f48e, 0x699b8fea, - 0x8194a82d, 0x6cff699b, 00000000 + 0x8194a82d, 0x6cff699b }, { 0xb280cea4, 0x5c657229, 0xe63438a2, 0x5519a00d, 0x83f672c3, - 0xdec05db5, 0x3a595ef4, 00000000 + 0xdec05db5, 0x3a595ef4 }, { 0x4b49ffe9, 0xa0219354, 0xfcc05d13, 0xa37e93a0, 0x5f52f307, - 0xe82ebe2d, 0x3cbefb60, 00000000 + 0xe82ebe2d, 0x3cbefb60 } }, { { 0xffd29719, 0x37a39c08, 0xe0fb13b0, 0x68d5b40b, 0x830cfec1, - 0xc789852a, 0xc05e0000, 00000000 + 0xc789852a, 0xc05e0000 }, { 0xb7af284f, 0x72bf019d, 0xcc5f7470, 0x36d19a4a, 0xf010886c, - 0x4cb5e5f5, 0x53b82264, 00000000 + 0x4cb5e5f5, 0x53b82264 }, { 0x1ead587d, 0x50f0737c, 0x66ae7208, 0x82a737c3, 0xc311b6d1, - 0xdb2ba56c, 0xe6309fa4, 00000000 + 0xdb2ba56c, 0xe6309fa4 } }, { { 0xe11477df, 0xc970b96e, 0xdfc07f2e, 0x12eac6ef, 0xb0f25f4f, - 0x591ff32, 0x96eac9b7, 00000000 + 0x591ff32, 0x96eac9b7 }, { 0x4aec258c, 0xf6648ad7, 0x5eaa81e4, 0xd4d7aa27, 0xe94c8487, - 0x96fd6a2f, 0xfe64955e, 00000000 + 0x96fd6a2f, 0xfe64955e }, { 0x6aff04ff, 0xa589755b, 0x1e1ca99f, 0x3c53739b, 0x191006f0, - 0x31769e3, 0x6951f079, 00000000 + 0x31769e3, 0x6951f079 } }, { { 0x534ed3ec, 0x17fd736, 0x6760788b, 0x25745f92, 0x77682934, - 0x7353327, 0x7083fecd, 00000000 + 0x7353327, 0x7083fecd }, { 0x737b68, 0x174fb36c, 0xbd1310e3, 0xbe930a94, 0x101904c2, - 0x1ff53779, 0x8d05ade2, 00000000 + 0x1ff53779, 0x8d05ade2 }, { 0xa6f1051a, 0x29a6dda5, 0xbd275d18, 0x35022564, 0x4091c5f3, - 0xc94fa7e3, 0xdee37187, 00000000 + 0xc94fa7e3, 0xdee37187 } }, { { 0x2cd879f4, 0xcfffd39c, 0xc2b50ada, 0x41a6f24f, 0xdc110854, - 0x9028470b, 0x7f11c7d6, 00000000 + 0x9028470b, 0x7f11c7d6 }, { 0x143e222a, 0x3080a229, 0xcdd260ce, 0xe6efbeda, 0xa00ceff4, - 0x9b753cad, 0xe4cbf479, 00000000 + 0x9b753cad, 0xe4cbf479 }, { 0x69131060, 0x3ef3e12b, 0x885e847c, 0xc54a9cfe, 0xd73f8bff, - 0xab9a6570, 0xff1ae268, 00000000 + 0xab9a6570, 0xff1ae268 } }, { { 0x1f890f87, 0xc4294920, 0x9ed92561, 0x8d129c9e, 0x5e4c2649, - 0x81400045, 0xa87fbd34, 00000000 + 0x81400045, 0xa87fbd34 }, { 0x3055610e, 0xf16beb3e, 0x6b2aee8c, 0x3b4dea61, 0x6c75b9fa, - 0xec0e78b8, 0x20f1a5f8, 00000000 + 0xec0e78b8, 0x20f1a5f8 }, { 0xb347701c, 0xfe733ca, 0xc69870db, 0xcecc0c9f, 0xa58c209d, - 0xb564921d, 0x306151f1, 00000000 + 0xb564921d, 0x306151f1 } }, { { 0x9ba18fe7, 0x2ba55df7, 0x61805ddd, 0xa36569b1, 0x86071a73, - 0x70d17a53, 0xf1bf7575, 00000000 + 0x70d17a53, 0xf1bf7575 }, { 0x7f0e39d, 0xe52c1911, 0xff1ae2da, 0xdb9124af, 0xb0d43a12, - 0x99ff08c9, 0x643eca29, 00000000 + 0x99ff08c9, 0x643eca29 }, { 0xc94e4ec3, 0x1c49ae7a, 0xac3b3d4c, 0x6465ff05, 0x8b416697, - 0x3f378987, 0x264a5067, 00000000 + 0x3f378987, 0x264a5067 } }, { { 0x213c406b, 0xc5206148, 0x4ab8cfc9, 0x3e1767b2, 0x56159ae5, - 0x1582313a, 0x121e39ef, 00000000 + 0x1582313a, 0x121e39ef }, { 0x7f4af73a, 0x217b6f5a, 0x6fb596ec, 0xad84a448, 0x93f0b878, - 0x98aa59ab, 0x2c37385f, 00000000 + 0x98aa59ab, 0x2c37385f }, { 0x1023e60b, 0x6b618230, 0xb740fb28, 0xec27419f, 0x985f08f7, - 0x4d727a26, 0xc06493a5, 00000000 + 0x4d727a26, 0xc06493a5 } }, { { 0x3398e214, 0xd14d74b7, 0xc688114a, 0xe0fbc718, 0x42c37c78, - 0xfba49ac4, 0xf378292d, 00000000 + 0xfba49ac4, 0xf378292d }, { 0xe19c7ad2, 0x44de84fd, 0xe3bc5394, 0x4f359963, 0x87dccae2, - 0xdd0e749, 0xe07a997c, 00000000 + 0xdd0e749, 0xe07a997c }, { 0x604e4bc0, 0xad56e656, 0x506d23c4, 0x321739d4, 0xab91d2bf, - 0xcfbca4cb, 0x1e117aff, 00000000 + 0xcfbca4cb, 0x1e117aff } }, { { 0x77774aaf, 0xa3cb61b0, 0xc8fa52bd, 0xf550b3a6, 0x48c32d1, - 0x31c6166, 0x2c43f974, 00000000 + 0x31c6166, 0x2c43f974 }, { 0x690859ec, 0xa257e475, 0x1db565b9, 0x668e24c9, 0x49e4c3dc, - 0x38def520, 0xcaf9f134, 00000000 + 0x38def520, 0xcaf9f134 }, { 0x80b7e3c8, 0x75b6c5c4, 0x801a1083, 0x4e7164da, 0x10f2c6be, - 0xdf946eff, 0xa6973b04, 00000000 + 0xdf946eff, 0xa6973b04 } }, { { 0x8de286aa, 0xb790e92d, 0x5e54f9b9, 0x788eecd0, 0x1df008f8, - 0xa51ff3f5, 0x1a62676c, 00000000 + 0xa51ff3f5, 0x1a62676c }, { 0xcd9065bc, 0xe6f89880, 0x12dbc63c, 0xfaa1aa79, 0x6867eb67, - 0x4c388b68, 0x21986f40, 00000000 + 0x4c388b68, 0x21986f40 }, { 0xe11ad8df, 0xc3af1727, 0xc5a99e00, 0x2d6df75c, 0xb0f09edc, - 0xfba903c1, 0xed6b8c13, 00000000 + 0xfba903c1, 0xed6b8c13 } } }, @@ -21003,211 +21003,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x33882804, 0xc8610b4b, 0xec456906, 0xc2418976, 0xed136685, - 0x24fdfd4c, 0xd6f6db17, 00000000 + 0x24fdfd4c, 0xd6f6db17 }, { 0xb366461, 0xfbe86bb3, 0x39b5eb6e, 0x575a168c, 0xebd4abb9, - 0xfc6e67b8, 0xab4854a0, 00000000 + 0xfc6e67b8, 0xab4854a0 }, { 0x402829c6, 0xecb298f9, 0xc5f0d0d1, 0x6565c39a, 0x6b2d1c82, - 0x315d2018, 0xda1a83a9, 00000000 + 0x315d2018, 0xda1a83a9 } }, { { 0x324de25c, 0x51f8e6b7, 0x963e3057, 0xb0a00333, 0x7b8d1a9d, - 0xf02ec55a, 0x7e7d9e7c, 00000000 + 0xf02ec55a, 0x7e7d9e7c }, { 0x685e7b46, 0x23641541, 0xd3ce4170, 0x968c5f10, 0x13089651, - 0x1453811f, 0xdc3e834d, 00000000 + 0x1453811f, 0xdc3e834d }, { 0x3f2df580, 0xe8dc3086, 0x1580af4f, 0xcdd65a8e, 0x80a613e8, - 0x39c307f5, 0x8380f6a7, 00000000 + 0x39c307f5, 0x8380f6a7 } }, { { 0xee81ec4e, 0x51cafa47, 0x53fff9bc, 0x9973fac0, 0x5d856dd8, - 0xe032eb10, 0x34b30d47, 00000000 + 0xe032eb10, 0x34b30d47 }, { 0x34e1d736, 0xc40e87a6, 0x282504e4, 0x32cad352, 0x6a0999c2, - 0xd38900d1, 0x6350a7ca, 00000000 + 0xd38900d1, 0x6350a7ca }, { 0x17fb651, 0x970479d2, 0x1df983ce, 0xbfebb338, 0x97ccb5b1, - 0x1e41ccd9, 0x3054409c, 00000000 + 0x1e41ccd9, 0x3054409c } }, { { 0x350c012a, 0x8c561763, 0xa4468612, 0x412253a1, 0x3a7b099f, - 0xd2840cc5, 0x997b0815, 00000000 + 0xd2840cc5, 0x997b0815 }, { 0x6d238136, 0x54286b1c, 0x12db95c9, 0x38c106d0, 0x3a8ee820, - 0x6440dc3a, 0xcddd1139, 00000000 + 0x6440dc3a, 0xcddd1139 }, { 0x5a54da26, 0xf6a3f27a, 0x2653bbd5, 0xac2be82a, 0xc06af52, - 0xe5e385e9, 0x7460df70, 00000000 + 0xe5e385e9, 0x7460df70 } }, { { 0x4e14d214, 0xcf2a3f90, 0xe3c1055d, 0x44212860, 0x9df9e587, - 0xe139ab7c, 0xb5868aae, 00000000 + 0xe139ab7c, 0xb5868aae }, { 0x81249afc, 0x233b245a, 0xd6050dee, 0x249a3d43, 0xa86397a1, - 0x5e7f8e96, 0x6001632c, 00000000 + 0x5e7f8e96, 0x6001632c }, { 0x78fa8d, 0x34092c22, 0x71761de9, 0x13105e85, 0x530885fc, - 0x75d3d62f, 0x62a7d52e, 00000000 + 0x75d3d62f, 0x62a7d52e } }, { { 0xf4f5d5bd, 0x39f19529, 0xe2cf068d, 0xbfff3ca6, 0x2ddad778, - 0xec301b43, 0x708874af, 00000000 + 0xec301b43, 0x708874af }, { 0x1c97952b, 0xcbf75cb8, 0x75ddc321, 0x703377a5, 0xe2dc7e9, - 0xb0874e7e, 0x17368e5f, 00000000 + 0xb0874e7e, 0x17368e5f }, { 0x8651db11, 0x4cf571be, 0xb5aa047d, 0xef5cba44, 0x97772a89, - 0x8dc925b7, 0x2b414f9d, 00000000 + 0x8dc925b7, 0x2b414f9d } }, { { 0xa8af36ca, 0xf0fcafe, 0x78f06a2c, 0xa1caaf3c, 0x15379f42, - 0x939f8758, 0x54d93d, 00000000 + 0x939f8758, 0x54d93d }, { 0x95025d5, 0xe044c701, 0xa6c2e70f, 0x8fe8e1c3, 0xc968d1bf, - 0xcb2ed2b2, 0x2d8d21a7, 00000000 + 0xcb2ed2b2, 0x2d8d21a7 }, { 0x5fecf9a6, 0x2dc5ca87, 0xb78b1f78, 0xf843e18a, 0x26266208, - 0x98bbe234, 0xbaf3b28, 00000000 + 0x98bbe234, 0xbaf3b28 } }, { { 0x81a6cd98, 0xcf7eb31b, 0x67141025, 0x1a7d1934, 0x71204910, - 0xd28f48dc, 0xff609b0a, 00000000 + 0xd28f48dc, 0xff609b0a }, { 0xddba1162, 0x67cff401, 0xedc6e765, 0x8afa6ebf, 0x4ab8b730, - 0x20e1d852, 0x372d0440, 00000000 + 0x20e1d852, 0x372d0440 }, { 0xdaf552dd, 0x5401149d, 0x77725516, 0x1f5f69b8, 0xe9b3b0fe, - 0x7f7ba7e3, 0x5fd345f1, 00000000 + 0x7f7ba7e3, 0x5fd345f1 } }, { { 0x8755be8a, 0x2199bae1, 0xc5a04d57, 0x9e49dcb7, 0x7c940850, - 0x6aecac4a, 0x172de000, 00000000 + 0x6aecac4a, 0x172de000 }, { 0x4b211d9f, 0x1fac982f, 0xb4638cf7, 0x34ce0162, 0x5b7dc25e, - 0x5988ef7a, 0x1eae7a3a, 00000000 + 0x5988ef7a, 0x1eae7a3a }, { 0x80e1dd9a, 0x60b4a470, 0x742cf191, 0x2d13a139, 0xc06b582d, - 0x90a1ba8c, 0x420ec35d, 00000000 + 0x90a1ba8c, 0x420ec35d } }, { { 0x8b7cb957, 0x4502a0bb, 0xce506f3c, 0xbda406f9, 0x8202efe4, - 0x990b1102, 0x4b77cbb8, 00000000 + 0x990b1102, 0x4b77cbb8 }, { 0x76f50812, 0x4523382, 0xe68b3055, 0x58777795, 0xc8c8b25b, - 0x352e5d0b, 0x15e6edb, 00000000 + 0x352e5d0b, 0x15e6edb }, { 0x9d40d6bf, 0xd9d04ea, 0x9b1b3b63, 0x8ee7cd, 0x5dfe5411, - 0xb376da70, 0xfcf686c, 00000000 + 0xb376da70, 0xfcf686c } }, { { 0xab41a807, 0x906deea5, 0x97ff66, 0x9264a21b, 0xec8190d4, - 0xa2230db0, 0xe31cccea, 00000000 + 0xa2230db0, 0xe31cccea }, { 0xf30425ef, 0x19d007b9, 0xcd66d4e5, 0x73eb6713, 0x3e1b92bb, - 0xb75912d3, 0x7c436707, 00000000 + 0xb75912d3, 0x7c436707 }, { 0x13095c2f, 0xb7f02a4c, 0x70b973d0, 0x90b6b03f, 0x6a2c4763, - 0xdaf96aa3, 0x3105e4dd, 00000000 + 0xdaf96aa3, 0x3105e4dd } }, { { 0x6ddc3834, 0xa864bac2, 0x2ed04eb3, 0xfa173f12, 0x9a45f2b, - 0x1e408363, 0x57eaf5a4, 00000000 + 0x1e408363, 0x57eaf5a4 }, { 0x9779bae5, 0x1c965999, 0x16bb0008, 0xd94f2133, 0xa1afbe49, - 0x87cee36d, 0x9d536831, 00000000 + 0x87cee36d, 0x9d536831 }, { 0xb7d67ddf, 0xbbfab6ca, 0x81aa5641, 0x3268ec48, 0xefe9ab24, - 0x969bd556, 0x32a374ae, 00000000 + 0x969bd556, 0x32a374ae } }, { { 0x1ec187c6, 0x864a0254, 0x1b1a4d0b, 0xe65c9c28, 0xab0aa247, - 0x51414e80, 0xfaa365a9, 00000000 + 0x51414e80, 0xfaa365a9 }, { 0xce2b24ef, 0xfa113766, 0xc416672e, 0xd24c237a, 0x8f34226f, - 0x582966c9, 0x49cf80bd, 00000000 + 0x582966c9, 0x49cf80bd }, { 0x3dbb814d, 0x2ccfcc7e, 0x2b0949c6, 0xd79bd808, 0x2d9bb982, - 0x8e316f03, 0x7577843d, 00000000 + 0x8e316f03, 0x7577843d } }, { { 0xb32d4957, 0xa6a15874, 0xd19f599f, 0xb17488f5, 0x91141f70, - 0x1dc4ccb0, 0x41c0666e, 00000000 + 0x1dc4ccb0, 0x41c0666e }, { 0x2ef068cf, 0x450f7def, 0xf14702c7, 0xbea56d15, 0x1b561b0b, - 0x567c2d01, 0x60c6888a, 00000000 + 0x567c2d01, 0x60c6888a }, { 0xf8fb517, 0x2af7a588, 0xd9739906, 0xcf30d2f0, 0x81a50321, - 0xfe6945d, 0x77b29505, 00000000 + 0xfe6945d, 0x77b29505 } }, { { 0x27927592, 0xd4dad001, 0x1ccda279, 0x6c6d8d9d, 0xacb506b, - 0x3b4a214c, 0x930e8fd4, 00000000 + 0x3b4a214c, 0x930e8fd4 }, { 0x9df29ad8, 0xee600ede, 0xb049e8ca, 0xb77f5f97, 0x8f5d38be, - 0xf5c3b2e1, 0x4c6b1234, 00000000 + 0xf5c3b2e1, 0x4c6b1234 }, { 0xea4bc3ec, 0xe71897e0, 0x1eaf5402, 0xe6a439ea, 0x9079571c, - 0x3b05bad7, 0xa2068b92, 00000000 + 0x3b05bad7, 0xa2068b92 } } }, @@ -21215,211 +21215,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x895beede, 0x7cb37d25, 0x80900c1c, 0x2b35025b, 0xf37dcdbe, - 0x6d8b05a1, 0x6f07de13, 00000000 + 0x6d8b05a1, 0x6f07de13 }, { 0xede526e4, 0xe1298b1d, 0x35b64a88, 0xc80007da, 0xbfd0a917, - 0xc4dbe6fb, 0xa62a506a, 00000000 + 0xc4dbe6fb, 0xa62a506a }, { 0x9d57be0, 0x267df66, 0x4c305b46, 0x91b1504b, 0x4de8975a, - 0x61187e0f, 0xb5ab5dbf, 00000000 + 0x61187e0f, 0xb5ab5dbf } }, { { 0xc4d8e453, 0xbdf32f15, 0x3bbac917, 0x40acc835, 0x1774afea, - 0xbe8a620f, 0xa2836e44, 00000000 + 0xbe8a620f, 0xa2836e44 }, { 0xdf981547, 0x60efae92, 0x9c537545, 0xd7f25e2e, 0x44b55b18, - 0x29e5391b, 0xc792b787, 00000000 + 0x29e5391b, 0xc792b787 }, { 0xaa8ff43b, 0x9a4921ab, 0x14fcb9b3, 0x61b3a1fc, 0x72aeb7ae, - 0xb51c694a, 0xe232645e, 00000000 + 0xb51c694a, 0xe232645e } }, { { 0x5138e094, 0xdd36bdf7, 0x6559a2f4, 0xc683e512, 0x49775289, - 0x2778a59d, 0xdf43411d, 00000000 + 0x2778a59d, 0xdf43411d }, { 0x1b7017e7, 0x7107af06, 0x448ddf31, 0x298d4a49, 0xc7b7226d, - 0x30847207, 0xc0e51c63, 00000000 + 0x30847207, 0xc0e51c63 }, { 0x1b16b7b0, 0x570948da, 0xa5a26961, 0xc631c809, 0x8655d56b, - 0x36aeeaa6, 0xe742ff4, 00000000 + 0x36aeeaa6, 0xe742ff4 } }, { { 0x430b530e, 0xf39ef31a, 0xe883b310, 0x4362a1f8, 0x790a9004, - 0x91f20227, 0xb58c52f8, 00000000 + 0x91f20227, 0xb58c52f8 }, { 0xa702e999, 0xe6660def, 0x90c4603a, 0xf4c1259e, 0xad2c1d6, - 0xc6332665, 0x2d031daa, 00000000 + 0xc6332665, 0x2d031daa }, { 0x878847e4, 0x92bb652a, 0xbba31f95, 0xf283fd61, 0x7adf8bf, - 0x4b025da6, 0x7269638f, 00000000 + 0x4b025da6, 0x7269638f } }, { { 0x78dd55c6, 0x466a6de4, 0xab158058, 0xee3d6626, 0x37000e7e, - 0x81111fe7, 0x1af2313f, 00000000 + 0x81111fe7, 0x1af2313f }, { 0x515b2bd6, 0xb3332bbc, 0x3698f145, 0x3e63066a, 0x356ceadd, - 0xd4ee54a8, 0x7533428a, 00000000 + 0xd4ee54a8, 0x7533428a }, { 0xd71f1c30, 0x52282d7d, 0x1b49beb3, 0xdbdb420d, 0x261d251a, - 0xd402b070, 0xc707dd08, 00000000 + 0xd402b070, 0xc707dd08 } }, { { 0x7a722d12, 0x23fd94fe, 0x38bccd99, 0xeb44f33c, 0x33364c12, - 0x7b6048d8, 0x902a3909, 00000000 + 0x7b6048d8, 0x902a3909 }, { 0x966ddf69, 0xa4a775ce, 0x2688e936, 0x78fed74d, 0x44c82253, - 0xcc42c987, 0x5f9ba60f, 00000000 + 0xcc42c987, 0x5f9ba60f }, { 0x686946c7, 0xe629e57c, 0xdf49981c, 0x78b2fa08, 0x616537e8, - 0xa3776795, 0x2603826d, 00000000 + 0xa3776795, 0x2603826d } }, { { 0x795a2fcb, 0x27da5272, 0xd9c45590, 0x3d6a4127, 0xcd5ca755, - 0xcbd0884f, 0xf1e9896e, 00000000 + 0xcbd0884f, 0xf1e9896e }, { 0xdb849a9d, 0x5346c8d8, 0xb0f93cd0, 0xcec4aea9, 0xd6f5fb9b, - 0x7c5de8cc, 0x4086630f, 00000000 + 0x7c5de8cc, 0x4086630f }, { 0x7bfe0c98, 0x5c5b40a7, 0x1fa8bce3, 0xe678560c, 0xe8ba3527, - 0xf02689da, 0xf6bd3b4d, 00000000 + 0xf02689da, 0xf6bd3b4d } }, { { 0x57f2159a, 0x76c7f609, 0x8808c754, 0xceada55a, 0x40293d7, - 0x5a4379aa, 0xb4ec188b, 00000000 + 0x5a4379aa, 0xb4ec188b }, { 0xe04f29f, 0x918776cb, 0xb077bfb3, 0xabc95bf1, 0x9815b18c, - 0x73d28542, 0x8c16859d, 00000000 + 0x73d28542, 0x8c16859d }, { 0xe282c5de, 0x958b6945, 0xa29cc2db, 0xbbfe87f1, 0xa1910120, - 0xae78fc0c, 0x1bd276b, 00000000 + 0xae78fc0c, 0x1bd276b } }, { { 0xdc58cd35, 0x6a6bb8f6, 0x3ca4b8c0, 0xafb871c3, 0x6bc72bd2, - 0x3dd9d3cc, 0x18a4a6e2, 00000000 + 0x3dd9d3cc, 0x18a4a6e2 }, { 0xe0e9ce58, 0x3c161f86, 0x98c99bb3, 0x1ec47a25, 0x5ae86e88, - 0x2826026f, 0x4986da2c, 00000000 + 0x2826026f, 0x4986da2c }, { 0xda6ee02, 0x1f550ef5, 0xbf5819ee, 0x77eb4bdc, 0x4f4f46d8, - 0xa5d914a, 0xe79f9071, 00000000 + 0xa5d914a, 0xe79f9071 } }, { { 0x4a3dc1ed, 0xa45c39ac, 0xa1b53baa, 0xaff9060d, 0xdae9ac74, - 0x56a2a371, 0xf7a92d87, 00000000 + 0x56a2a371, 0xf7a92d87 }, { 0xa14d22bf, 0xa3dd2a88, 0x2af2f378, 0x72dae6d8, 0x61471d89, - 0x77f8d583, 0xd7e94ea4, 00000000 + 0x77f8d583, 0xd7e94ea4 }, { 0x93eec86, 0xaa564e4b, 0x23daf1d3, 0xd89dc47d, 0xb4f0141d, - 0x94a9253b, 0x7c1a535a, 00000000 + 0x94a9253b, 0x7c1a535a } }, { { 0x64566a6d, 0xe8d6b11a, 0x3cc7f67a, 0xeee0ba14, 0xce6aa79f, - 0xcaa9f94c, 0xd3d632cd, 00000000 + 0xcaa9f94c, 0xd3d632cd }, { 0x5a75e79a, 0x1369d372, 0xaf8fb321, 0x9dc17337, 0xdc3b9fa2, - 0x37ac3f60, 0x1ebe391d, 00000000 + 0x37ac3f60, 0x1ebe391d }, { 0xf8311fc9, 0x8f05e3f0, 0x96b26fba, 0x1795610, 0xdf11f86d, - 0xe5feb3fb, 0xa773abc2, 00000000 + 0xe5feb3fb, 0xa773abc2 } }, { { 0xd82b5293, 0xc1cde85e, 0x5feb119d, 0x2d3ab164, 0x992ae372, - 0x26de04f, 0x64fe977c, 00000000 + 0x26de04f, 0x64fe977c }, { 0xc2d64e79, 0xf5465ac5, 0x8e035af1, 0x805f673e, 0xbf1c9dcd, - 0x1572b22c, 0xbb7c1f39, 00000000 + 0x1572b22c, 0xbb7c1f39 }, { 0xa715176e, 0xe43221d6, 0x73361ad2, 0xcca397b2, 0xcf62b4dd, - 0x69312b57, 0x9f182982, 00000000 + 0x69312b57, 0x9f182982 } }, { { 0xc9da3f97, 0x7bc464c9, 0x3db07f45, 0x6a2b36e0, 0xdc0a786, - 0xb1a9066f, 0x8e5992f3, 00000000 + 0xb1a9066f, 0x8e5992f3 }, { 0x4619e81e, 0xb6b3d3a, 0xc17e9621, 0xfef7d11f, 0xe23f49dc, - 0x4ec6755b, 0x9b3d621a, 00000000 + 0x4ec6755b, 0x9b3d621a }, { 0x2ab22716, 0x5f17fe00, 0x393a90f9, 0x4e349c7e, 0x875f1ac9, - 0x395c3f2b, 0x16ba1155, 00000000 + 0x395c3f2b, 0x16ba1155 } }, { { 0x72be70c0, 0xbe452542, 0x6601fe69, 0x28eb58eb, 0x727b5415, - 0x87427abc, 0x6faacf26, 00000000 + 0x87427abc, 0x6faacf26 }, { 0x2a60b995, 0x9bc5ca97, 0xf9f41186, 0x5a207c86, 0x6f5423c9, - 0x28b8dcd2, 0xffeaf2df, 00000000 + 0x28b8dcd2, 0xffeaf2df }, { 0xfd1883d0, 0xa981b2fe, 0xc5a19c9, 0xf4e9b660, 0x70860000, - 0xe72b2bac, 0xa23ae440, 00000000 + 0xe72b2bac, 0xa23ae440 } }, { { 0x6471bed4, 0x416327c4, 0x9188178b, 0xc8661962, 0x2f67f288, - 0xe0629145, 0x4f97da07, 00000000 + 0xe0629145, 0x4f97da07 }, { 0x53116f48, 0x40010c54, 0x39acd3ac, 0x8e69e48f, 0xb51a9886, - 0x2987a25a, 0x21511e0f, 00000000 + 0x2987a25a, 0x21511e0f }, { 0x40541805, 0x3677c0e6, 0x9faba80b, 0x7545599e, 0xc58b19e2, - 0xfc4e27fd, 0x56ef04a3, 00000000 + 0xfc4e27fd, 0x56ef04a3 } } }, @@ -21427,211 +21427,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xf367b014, 0xd94dbd27, 0x50332e09, 0x44572d49, 0x8e9311c, - 0x272039f3, 0x43a330d0, 00000000 + 0x272039f3, 0x43a330d0 }, { 0x3500104f, 0xcf7992b1, 0xfb17be49, 0x3cef43db, 0x544fbc60, - 0x58ba668d, 0x12e599df, 00000000 + 0x58ba668d, 0x12e599df }, { 0xebf098e6, 0x6589daf4, 0x9648e7fd, 0x1291662b, 0x6df36657, - 0x89e372d, 0x82588a96, 00000000 + 0x89e372d, 0x82588a96 } }, { { 0xbe21095c, 0x9ed6ba44, 0xf98f8e2, 0xea513513, 0x5a463ec3, - 0x3b05b375, 0x2686809a, 00000000 + 0x3b05b375, 0x2686809a }, { 0x45337cfb, 0x5975614e, 0x3e01269a, 0xd627b384, 0x39ae62bf, - 0x6492b21e, 0xbff0535f, 00000000 + 0x6492b21e, 0xbff0535f }, { 0x7c6717ae, 0xdc733c7e, 0x8202a12c, 0x24f42c56, 0x931469ed, - 0x671be66b, 0x97eaee8c, 00000000 + 0x671be66b, 0x97eaee8c } }, { { 0x5c8a20f3, 0xad3f031b, 0x694f57ff, 0x4b20db1b, 0xd96b399d, - 0xe83f1709, 0x79172c5, 00000000 + 0xe83f1709, 0x79172c5 }, { 0xc46cbed1, 0x4cecd886, 0x234adf46, 0x2cea9883, 0x2b883110, - 0xbbfd74c7, 0x3e623457, 00000000 + 0xbbfd74c7, 0x3e623457 }, { 0xc2fae083, 0xe26b20dc, 0xcd4fb93a, 0xc9c9f275, 0x904431bc, - 0x3fd66b10, 0x7e72a053, 00000000 + 0x3fd66b10, 0x7e72a053 } }, { { 0x7a18e849, 0x11c86227, 0x5746e014, 0xfc7abedc, 0x4f7861bf, - 0x31c55326, 0xfac64555, 00000000 + 0x31c55326, 0xfac64555 }, { 0xf93eda2e, 0x359a35f1, 0x8f12d5ce, 0x73c8c96d, 0x665caab4, - 0xe06866c4, 0xdaf9f5c2, 00000000 + 0xe06866c4, 0xdaf9f5c2 }, { 0xe0a57ef0, 0xebb3fa35, 0xd909cb74, 0x34956000, 0x4ed94aa7, - 0x817916e5, 0x3e047c7f, 00000000 + 0x817916e5, 0x3e047c7f } }, { { 0x217fef21, 0x60769a7c, 0x71a8e79f, 0x7617bea0, 0x487cbcf1, - 0xe0439cf6, 0x908e54f1, 00000000 + 0xe0439cf6, 0x908e54f1 }, { 0x3e93e8bb, 0xc5b1b883, 0x4bf3bae2, 0x4e3b3ebb, 0x800aac07, - 0x16e741cc, 0x9239a2b5, 00000000 + 0x16e741cc, 0x9239a2b5 }, { 0x3788c07f, 0xd40bc5ac, 0xa887e6e8, 0x36ebb236, 0x4bd91f4b, - 0xec34143f, 0x255220d1, 00000000 + 0xec34143f, 0x255220d1 } }, { { 0xe363079d, 0x4dd7b939, 0xe7ce07a0, 0x266c00e2, 0x6ff4917, - 0x96160b6e, 0xb324ee26, 00000000 + 0x96160b6e, 0xb324ee26 }, { 0xf3e53a39, 0xad426ace, 0xf114e1a6, 0x2e471fac, 0x1a5aaa00, - 0x56be3bf, 0x549c96f, 00000000 + 0x56be3bf, 0x549c96f }, { 0x92b086e2, 0xb7233c5f, 0x2b3c9e00, 0xee9a747d, 0xfa045fd9, - 0xba20e9f9, 0x72982fa4, 00000000 + 0xba20e9f9, 0x72982fa4 } }, { { 0x602a9921, 0x7fa371d6, 0x3fb5dfee, 0x58f10e10, 0x369518da, - 0xf1d5dd20, 0xf9804a09, 00000000 + 0xf1d5dd20, 0xf9804a09 }, { 0x9b33b13f, 0x1cd29ffb, 0x457dd3f3, 0xb5b58896, 0x1f5048e, - 0xf1ac5dc1, 0x91368ef, 00000000 + 0xf1ac5dc1, 0x91368ef }, { 0x4f0f62f4, 0xaa22040c, 0x5c102367, 0x3ee9a7f8, 0x3ea954c6, - 0x15e20350, 0x3d80a9b3, 00000000 + 0x15e20350, 0x3d80a9b3 } }, { { 0xad85973b, 0xfc380fb1, 0x5bd06547, 0xaf5b49c7, 0xcaa4afcc, - 0x97a04370, 0x5232ee8c, 00000000 + 0x97a04370, 0x5232ee8c }, { 0xfd2415d2, 0xfb1a3379, 0xa63e920, 0x80cfa93a, 0xd54b5ebb, - 0x28bf7454, 0xca02a1f2, 00000000 + 0x28bf7454, 0xca02a1f2 }, { 0x52e4623f, 0x92aa639a, 0xd83fd940, 0x126022a3, 0x8a6f01ad, - 0xe10078ab, 0x5f6cebe8, 00000000 + 0xe10078ab, 0x5f6cebe8 } }, { { 0x74d875, 0x202ba6a0, 0x731b3268, 0x81a51d13, 0x910ac0df, - 0x7c88873a, 0x9cbe0dd9, 00000000 + 0x7c88873a, 0x9cbe0dd9 }, { 0xb9c1c93, 0x5b46c807, 0x79cf7f8e, 0x8bc4f66d, 0x1563b90d, - 0x7cf1484e, 0xb61b0c7f, 00000000 + 0x7cf1484e, 0xb61b0c7f }, { 0x4d68f9a1, 0xf69fca7a, 0x59425354, 0x334bf4b3, 0xd101124d, - 0x200562d9, 0xfc329df9, 00000000 + 0x200562d9, 0xfc329df9 } }, { { 0x126c2be4, 0x5a69dad7, 0x9fe851cb, 0x59de3053, 0xad90c447, - 0x5eb12890, 0x52fbb50c, 00000000 + 0x5eb12890, 0x52fbb50c }, { 0xd33afcb8, 0xbed25b3d, 0x13cad92b, 0xae95c021, 0x8342ade5, - 0xee01ff1c, 0xfa82789f, 00000000 + 0xee01ff1c, 0xfa82789f }, { 0x557f0919, 0xa7624eb2, 0x77da98cc, 0x6da2ac8, 0x705fc436, - 0x9cc57bf8, 0x4f4e360f, 00000000 + 0x9cc57bf8, 0x4f4e360f } }, { { 0x3ff286c6, 0x3e3769a0, 0x656df819, 0x9a0739d3, 0xe5b118a7, - 0xb0dce643, 0xf06e3902, 00000000 + 0xb0dce643, 0xf06e3902 }, { 0x70898724, 0x107edf34, 0xd2572864, 0xd480ff89, 0x62996942, - 0xc0302bcd, 0xad8a5468, 00000000 + 0xc0302bcd, 0xad8a5468 }, { 0x31df07a1, 0x4dd3e95, 0xefb2b68, 0xb9c5047f, 0x75d4cbbb, - 0xaf4a0d9c, 0x1f83bc0, 00000000 + 0xaf4a0d9c, 0x1f83bc0 } }, { { 0x28ea661f, 0x6213d725, 0xfee79499, 0x85d64eec, 0xb165ef59, - 0x4ee7d419, 0x35c22073, 00000000 + 0x4ee7d419, 0x35c22073 }, { 0xa059d76e, 0xc594143, 0xa2211f60, 0x4acbdf88, 0x4024403e, - 0x3dc2a00b, 0xcdd2cdf3, 00000000 + 0x3dc2a00b, 0xcdd2cdf3 }, { 0xf5ec2d29, 0x1fb2ff5f, 0x95630b6d, 0x4eed3175, 0xaaa28460, - 0x6976d3a0, 0xb6de5c2d, 00000000 + 0x6976d3a0, 0xb6de5c2d } }, { { 0xae8bfa91, 0xd6ade2e9, 0x3f263c29, 0x811affef, 0xcf9e7c15, - 0x2748dc7a, 0xd08d1438, 00000000 + 0x2748dc7a, 0xd08d1438 }, { 0x73eaecd7, 0x7e4c97ec, 0xb8450dc2, 0x7af836e8, 0xff5a3570, - 0x4946b166, 0x2315c93e, 00000000 + 0x4946b166, 0x2315c93e }, { 0x7931c972, 0x2b3b62fb, 0xcf10ade6, 0x857b1a3d, 0xdd71fe0, - 0x76e79c49, 0x7395865a, 00000000 + 0x76e79c49, 0x7395865a } }, { { 0xb8ecb7df, 0x27e7e192, 0xe72e9e5b, 0x95d159d5, 0x1d326838, - 0xa9611be4, 0x7bee40e8, 00000000 + 0xa9611be4, 0x7bee40e8 }, { 0x2e12fdc4, 0xf8cac587, 0xdf76a2b7, 0xafd8192a, 0x2c6ca62d, - 0xdb539339, 0x66b2bf87, 00000000 + 0xdb539339, 0x66b2bf87 }, { 0x4d25abaf, 0x4a41b9ac, 0xe50c5b55, 0x5c1b5dda, 0x93144e91, - 0x1ab7e4a3, 0xb90af3c4, 00000000 + 0x1ab7e4a3, 0xb90af3c4 } }, { { 0xff0b9fc7, 0x20c5b131, 0xeebe02b5, 0xcf6e4023, 0x7a053d68, - 0xd5a7e8f4, 0xe1cf8b98, 00000000 + 0xd5a7e8f4, 0xe1cf8b98 }, { 0x3b32cb5d, 0xe15fe705, 0x3858c3aa, 0xb0ce3a17, 0x6acf1ab2, - 0x93365980, 0xf488b24e, 00000000 + 0x93365980, 0xf488b24e }, { 0xc4b967ce, 0x44bd3cba, 0x3ac89858, 0x599dc909, 0xc483429, - 0xe82df321, 0xcba5e4c0, 00000000 + 0xe82df321, 0xcba5e4c0 } } }, @@ -21639,211 +21639,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xc38e75d6, 0xfea7b66e, 0x7d1e1d68, 0x72baa406, 0x8c2c5e55, - 0x5e4b3ec4, 0x57176e43, 00000000 + 0x5e4b3ec4, 0x57176e43 }, { 0x6082a3f7, 0x27025a4c, 0xf2c78f0d, 0x3a273c8, 0x817ecd47, - 0x50e8160d, 0x26308af, 00000000 + 0x50e8160d, 0x26308af }, { 0x34e5c47a, 0xd0ca438f, 0x7d0cbb0c, 0xcf1e710b, 0x8bdc73cf, - 0xbfee70dc, 0x85d504bc, 00000000 + 0xbfee70dc, 0x85d504bc } }, { { 0x55eb86ca, 0xd9caf56, 0xbdea9a9d, 0xd038300a, 0x89a61ceb, - 0x27828911, 0x2dcfee12, 00000000 + 0x27828911, 0x2dcfee12 }, { 0x9bfcb9fd, 0xc0c47a93, 0x2b72effe, 0x927b79b2, 0x10206c50, - 0x958807d4, 0xf518f46e, 00000000 + 0x958807d4, 0xf518f46e }, { 0x12980f1, 0xaf9d2af1, 0x95d61a38, 0x6e4dfc2f, 0xab3ef6f9, - 0x595d708f, 0x3b2aaab3, 00000000 + 0x595d708f, 0x3b2aaab3 } }, { { 0xa281eb38, 0x3bdf5bda, 0x1dd7b13c, 0x7d0e7b4e, 0x3b378a2f, - 0x1ceece66, 0x184b1749, 00000000 + 0x1ceece66, 0x184b1749 }, { 0x377106d9, 0x5a143630, 0x2edc7c84, 0xc3958a6b, 0x293f2887, - 0x82f394c4, 0xbd2aa5d8, 00000000 + 0x82f394c4, 0xbd2aa5d8 }, { 0x35d88254, 0xc7303ac6, 0xc9606549, 0x8190979a, 0xbb308dbe, - 0xad3597cf, 0x7b276075, 00000000 + 0xad3597cf, 0x7b276075 } }, { { 0x936bc76b, 0x24846ee7, 0x89ac597b, 0x62918b1f, 0x4fef1b9b, - 0x69c0fe40, 0xe424f8a0, 00000000 + 0x69c0fe40, 0xe424f8a0 }, { 0x9241702c, 0x46aad42d, 0xd63e0a, 0xc9898d51, 0xd742b33d, - 0xf912973, 0xb681af83, 00000000 + 0xf912973, 0xb681af83 }, { 0x8df6bea5, 0xe9740514, 0xbd06702c, 0x634bb8a4, 0xf88422b2, - 0x9b940553, 0xcc5564d2, 00000000 + 0x9b940553, 0xcc5564d2 } }, { { 0x4b59e920, 0xcb7bb9f4, 0xce36be1c, 0xe008c3f9, 0xe60382d4, - 0x87382a59, 0x933c7886, 00000000 + 0x87382a59, 0x933c7886 }, { 0xfc90bab4, 0xf4a7afb4, 0x315d0c52, 0x5913b289, 0x66cde858, - 0xeb8ea976, 0xbaf74b41, 00000000 + 0xeb8ea976, 0xbaf74b41 }, { 0xc95bf662, 0xb4bae389, 0x75358ec0, 0x6f4f4c09, 0xfce9ba1f, - 0xea94acde, 0x6346ca25, 00000000 + 0xea94acde, 0x6346ca25 } }, { { 0x6c525c86, 0x151b78fd, 0x4deaf82f, 0x660dc6fd, 0xdc7e9a01, - 0xa8d5efd8, 0xcef8d19b, 00000000 + 0xa8d5efd8, 0xcef8d19b }, { 0xe691c238, 0x959d0fd8, 0x29406d61, 0x3a326c8c, 0x80bcf01c, - 0x6fb95d92, 0x3b07d51a, 00000000 + 0x6fb95d92, 0x3b07d51a }, { 0x5d374e1c, 0x8c408f73, 0x78b8bf64, 0x332148e7, 0x1fb236, - 0xa5873565, 0x5e744a28, 00000000 + 0xa5873565, 0x5e744a28 } }, { { 0xcd82a6cc, 0x70a1819, 0x8ff250b2, 0x8404fbcb, 0xc2a056b3, - 0xce48b1b7, 0x7c50fc49, 00000000 + 0xce48b1b7, 0x7c50fc49 }, { 0x6600d454, 0x6dc3612e, 0x36f9d279, 0x24b67300, 0x39e656c2, - 0xcac98284, 0xa39976b7, 00000000 + 0xcac98284, 0xa39976b7 }, { 0x4d86a2ea, 0xab901a91, 0xcb0b9a7, 0xe200a0c9, 0xf84457d5, - 0x2b65e072, 0x966ccca, 00000000 + 0x2b65e072, 0x966ccca } }, { { 0x6f67fb28, 0x891dc9b6, 0x2d9f634c, 0xdf5e6294, 0xb8cb285c, - 0xee4c3ff2, 0x3aec8426, 00000000 + 0xee4c3ff2, 0x3aec8426 }, { 0x7b851501, 0x53640c2a, 0xd65b248c, 0x40522e84, 0x70260ccd, - 0xcbda5775, 0xc0dea7d, 00000000 + 0xcbda5775, 0xc0dea7d }, { 0x3de669b5, 0x84699c78, 0xa01d704f, 0x3c991dcc, 0x23a522d2, - 0xaac79c1a, 0x44353fd8, 00000000 + 0xaac79c1a, 0x44353fd8 } }, { { 0x6e6e5d81, 0xd25536, 0xe97e5ec2, 0xbcb8af6, 0xeef4c02, 0x54cbf4ce, - 0x74cd0cff, 00000000 + 0x74cd0cff }, { 0x25154d22, 0xc77e15e4, 0x27cdf83a, 0xd2692c2c, 0xad71220f, - 0x471a9ec, 0xe650f5ad, 00000000 + 0x471a9ec, 0xe650f5ad }, { 0x2d3fadab, 0xdd2ec548, 0x7f116253, 0x59ee48de, 0x85ce57b, - 0x2463bd02, 0xcfe57b10, 00000000 + 0x2463bd02, 0xcfe57b10 } }, { { 0xd65acb0c, 0x699f3c9a, 0xb41e802a, 0x941a2810, 0x64e472d, - 0xb114d84e, 0xb5a0fb3d, 00000000 + 0xb114d84e, 0xb5a0fb3d }, { 0xfc0eb6ea, 0x63adf63d, 0xadc51ea8, 0x5f5caca8, 0xfc41b52c, - 0x7bf74681, 0xcc230f47, 00000000 + 0x7bf74681, 0xcc230f47 }, { 0x75c28920, 0xf06613, 0xe6cad67a, 0xb78ca8f, 0xf11df107, - 0xf9d9f7a6, 0xf29d7596, 00000000 + 0xf9d9f7a6, 0xf29d7596 } }, { { 0x5d6e016, 0x53545db2, 0x3db6d72d, 0x19ab31ad, 0x131b86cf, - 0xf1e12cb3, 0xff6938be, 00000000 + 0xf1e12cb3, 0xff6938be }, { 0xb704d80, 0x6e963e7e, 0xf774224c, 0xc6235acb, 0x6ff19026, - 0x2e1eae1c, 0x5adb272, 00000000 + 0x2e1eae1c, 0x5adb272 }, { 0x651806cf, 0xe44e05d3, 0x214a18cc, 0x835bd201, 0x2358bf5a, - 0xcc7711ed, 0x77ed8e8e, 00000000 + 0xcc7711ed, 0x77ed8e8e } }, { { 0x2ebc5b19, 0x9baf6cec, 0xe30ab57e, 0x2b343084, 0xde48f789, - 0xe0adb226, 0xa0ba9a95, 00000000 + 0xe0adb226, 0xa0ba9a95 }, { 0x6efc1c40, 0x96e4887b, 0xa0f9c568, 0xd0e9caf6, 0x8b2ec227, - 0x56079963, 0xe858b1c0, 00000000 + 0x56079963, 0xe858b1c0 }, { 0x393a660, 0x982677fb, 0xd9000fd6, 0xda50b48b, 0x6f6ae563, - 0x3f38c186, 0xe45c1c1a, 00000000 + 0x3f38c186, 0xe45c1c1a } }, { { 0x672b8635, 0x9df82374, 0xd6cacc3, 0x6c6e9a8b, 0x415ad409, - 0xa80554ce, 0x2ecbf04a, 00000000 + 0xa80554ce, 0x2ecbf04a }, { 0x674d0b5a, 0xba1091ab, 0x429dd24a, 0x769a99d6, 0x9e870449, - 0x278dd853, 0xaeff9c1b, 00000000 + 0x278dd853, 0xaeff9c1b }, { 0xdde0c444, 0xcd959f28, 0x559a08a6, 0x8024d3d4, 0x10ca687c, - 0xf06893e2, 0x30915ff6, 00000000 + 0xf06893e2, 0x30915ff6 } }, { { 0xefafa1b4, 0xc8339166, 0xf730037d, 0x11f73e8, 0x28334f8c, - 0xa9fd3b97, 0xc27a21a5, 00000000 + 0xa9fd3b97, 0xc27a21a5 }, { 0x50d917b1, 0x66e59063, 0xe1eaeb0c, 0xb5a414fc, 0x4d687e7, - 0x51d2b20e, 0xcba62bdf, 00000000 + 0x51d2b20e, 0xcba62bdf }, { 0xce3994ec, 0x55a189d0, 0xf6d6700b, 0x9e3c9c7, 0x440e845, - 0xbb78b3a0, 0x3bd9b61e, 00000000 + 0xbb78b3a0, 0x3bd9b61e } }, { { 0x1eee204b, 0x44923215, 0xfa99151f, 0x50c5a768, 0xede09d2f, - 0x4ec5617, 0xcfa4bace, 00000000 + 0x4ec5617, 0xcfa4bace }, { 0xba6a391c, 0xf44f4184, 0x6d605a6f, 0x36a58083, 0x17a7397, - 0x13a24a18, 0x296cb5bd, 00000000 + 0x13a24a18, 0x296cb5bd }, { 0x4472d14e, 0x9d8b0dcf, 0x865f781e, 0xa6be0d91, 0x31617130, - 0xd9e8900b, 0x219a0949, 00000000 + 0xd9e8900b, 0x219a0949 } } }, @@ -21851,211 +21851,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xf97d9279, 0xc09c28a8, 0x1697578f, 0xb1bfa94f, 0x12ae89fc, - 0xb2a8ec7, 0xcbf7e712, 00000000 + 0xb2a8ec7, 0xcbf7e712 }, { 0xc39481b3, 0x729b3335, 0xff05f791, 0x21e50dab, 0x47224ffc, - 0x79832478, 0x95937348, 00000000 + 0x79832478, 0x95937348 }, { 0x323421c8, 0x8ab6aad7, 0x53d02c47, 0x505f6a63, 0x1a687e78, - 0xf8888c91, 0xa3870c6c, 00000000 + 0xf8888c91, 0xa3870c6c } }, { { 0x2a4d55c, 0x7ba018dd, 0x4c6574cc, 0x8ea6f8c, 0xa55438f6, - 0x4e451ade, 0x9e0cfd84, 00000000 + 0x4e451ade, 0x9e0cfd84 }, { 0x68763410, 0xef55ac49, 0x18989f7d, 0x63603b29, 0x116e95b4, - 0x26daf990, 0x44d67206, 00000000 + 0x26daf990, 0x44d67206 }, { 0x8cee4196, 0x395c5593, 0x6a99ae90, 0xfb7731e9, 0x50af8860, - 0x93b69e04, 0x84e6f684, 00000000 + 0x93b69e04, 0x84e6f684 } }, { { 0xc5f976c1, 0xcf5cd340, 0x4efc70b4, 0xd8aa3d6e, 0x6709538d, - 0xc9f7b08a, 0x701d3b4b, 00000000 + 0xc9f7b08a, 0x701d3b4b }, { 0xadbbe15, 0x211e404c, 0xd5586202, 0x3693daf4, 0xa485b88, - 0x3b7d0fe8, 0x17464182, 00000000 + 0x3b7d0fe8, 0x17464182 }, { 0xa8545559, 0x500f0bcc, 0x566972cb, 0x93c3d443, 0xdb1158fa, - 0x5b4de2a4, 0x706703d4, 00000000 + 0x5b4de2a4, 0x706703d4 } }, { { 0x74aeb4a2, 0x7b652a3, 0x1ab9999c, 0x81d6e117, 0x2778982f, - 0x89a054b8, 0xd5a79315, 00000000 + 0x89a054b8, 0xd5a79315 }, { 0x1438aacb, 0xdcecbd04, 0x52f9a74a, 0xc3aa01d3, 0x24ce651c, - 0x83ac1bca, 0x747463c, 00000000 + 0x83ac1bca, 0x747463c }, { 0x5de5ec39, 0xb4513ad6, 0x895abb5b, 0xaef2cc0c, 0xe4d58d1c, - 0x219fad3a, 0x4a688224, 00000000 + 0x219fad3a, 0x4a688224 } }, { { 0x427d3252, 0x61f896ee, 0x6cb9927, 0x515e6af0, 0xc5c76459, - 0x83c1c89e, 0x5eee3af5, 00000000 + 0x83c1c89e, 0x5eee3af5 }, { 0x23879541, 0x2993461e, 0xf7070393, 0xe577e17a, 0x8e2280c5, - 0x8445990b, 0x47fe1033, 00000000 + 0x8445990b, 0x47fe1033 }, { 0xad4dc8b, 0xc996bd6c, 0xf80c2ab7, 0x4936168e, 0x76630cfb, - 0xf6e8fed9, 0x6474c1fe, 00000000 + 0xf6e8fed9, 0x6474c1fe } }, { { 0x8f5e3934, 0x44cd98e7, 0x8fab342b, 0x9f117161, 0xa2b89dd2, - 0x40d63b80, 0x42f4acd8, 00000000 + 0x40d63b80, 0x42f4acd8 }, { 0x94d56df6, 0xad990099, 0xd4d39ebf, 0x577524e5, 0x53ffdf87, - 0xc83854bf, 0x47f199c1, 00000000 + 0xc83854bf, 0x47f199c1 }, { 0x7bd76357, 0x78b93692, 0xfd9cd921, 0x56be567d, 0x2c3a2c78, - 0xff54faa2, 0x1417a7ed, 00000000 + 0xff54faa2, 0x1417a7ed } }, { { 0x7f1695ad, 0x5123b01e, 0xdd2dd6dd, 0x9cb11d22, 0x1b0d29f3, - 0xae0ad918, 0xa8770506, 00000000 + 0xae0ad918, 0xa8770506 }, { 0xe9c9f795, 0x34e68ee9, 0x5eb0ea36, 0x251892ca, 0xf77b052f, - 0xafab976c, 0x827ba8a2, 00000000 + 0xafab976c, 0x827ba8a2 }, { 0xcc923f58, 0x744e5f89, 0xfd3a6ce2, 0xf2385ca3, 0xf8554c62, - 0xb07d2a20, 0xbd737c6, 00000000 + 0xb07d2a20, 0xbd737c6 } }, { { 0x21e9c8ab, 0xc49e6789, 0x6f8a3494, 0x66fc56f9, 0x94ba4c95, - 0x1cffc7bb, 0xd4c40585, 00000000 + 0x1cffc7bb, 0xd4c40585 }, { 0xd49fa4a, 0x20ef6028, 0x6c497b72, 0xd49147cb, 0xa9b6df17, - 0x15805d95, 0xe2a80085, 00000000 + 0x15805d95, 0xe2a80085 }, { 0x9833b610, 0xd2447efc, 0x5b8740eb, 0xf10c70d9, 0xf437dd50, - 0xcdb4b55f, 0x52b1fd4, 00000000 + 0xcdb4b55f, 0x52b1fd4 } }, { { 0x17f860ae, 0xc3cd42a6, 0x9bc4e5db, 0x2abacf26, 0x4594ee78, - 0x53524514, 0xc2f76704, 00000000 + 0x53524514, 0xc2f76704 }, { 0xd35469da, 0xe49a6bbb, 0x9d304fad, 0x13f64173, 0x857ae1ab, - 0xdbc64917, 0x45e17e9a, 00000000 + 0xdbc64917, 0x45e17e9a }, { 0x68c5f5e5, 0xcc67852f, 0x3aefb47b, 0xf05c8067, 0x8ed3ebed, - 0xd1020d42, 0x706f1c4a, 00000000 + 0xd1020d42, 0x706f1c4a } }, { { 0xa400135c, 0xb216519, 0x808940c8, 0x8b104ab6, 0xb91f468b, - 0xdc427a87, 0x29aece64, 00000000 + 0xdc427a87, 0x29aece64 }, { 0xc6d8a79d, 0x66328e38, 0xe3f42d1e, 0xbbb9911f, 0x9cbc4c32, - 0x708140f4, 0x43972b7f, 00000000 + 0x708140f4, 0x43972b7f }, { 0xe78ecc99, 0xc2d3521c, 0x529be28, 0x582ab7e8, 0x7c64454c, - 0xf0312fc, 0xb90c4a88, 00000000 + 0xf0312fc, 0xb90c4a88 } }, { { 0x26db8f3f, 0xb6a7afdd, 0x5a658c03, 0xa2627d68, 0xb1e5ff9, - 0x56150cd7, 0xdac5aa70, 00000000 + 0x56150cd7, 0xdac5aa70 }, { 0x993b4d2a, 0x1800be2d, 0xfa02ac68, 0x71ac4570, 0x5e0794bb, - 0x689b9456, 0xc7b33b0b, 00000000 + 0x689b9456, 0xc7b33b0b }, { 0x6f874d45, 0xf7c3f382, 0x2b3e4f79, 0x3e67b8d6, 0x92357414, - 0xbe4a8740, 0x4433f539, 00000000 + 0xbe4a8740, 0x4433f539 } }, { { 0x7b924b27, 0xb1578414, 0xc68fc5ba, 0xcf320807, 0x3de26261, - 0xfcef7842, 0xbd8e9cf8, 00000000 + 0xfcef7842, 0xbd8e9cf8 }, { 0x79161671, 0x8c6d898b, 0xa42020d6, 0x92a6898d, 0xe9d3fbd, - 0xa79e44c5, 0xf96bc986, 00000000 + 0xa79e44c5, 0xf96bc986 }, { 0xdf4ecbfe, 0x1459304, 0xb6913cd9, 0x45a2aa81, 0x4545f72f, - 0xcabba766, 0x5bdf8215, 00000000 + 0xcabba766, 0x5bdf8215 } }, { { 0xf85caf53, 0xe9c8fd37, 0xe9c1416e, 0x7ec605b6, 0xde20e425, - 0x160cdfb5, 0x83fdeb0d, 00000000 + 0x160cdfb5, 0x83fdeb0d }, { 0x9e652592, 0xa39943ae, 0x815b09ad, 0x810bdbbb, 0xf8390d64, - 0xbda10f35, 0x7937d542, 00000000 + 0xbda10f35, 0x7937d542 }, { 0x96266d4d, 0x54b04443, 0x5fa969a9, 0x423055bb, 0x1f0a96, - 0xe3242369, 0xbf76e17a, 00000000 + 0xe3242369, 0xbf76e17a } }, { { 0x1f79e239, 0x75b4f293, 0x52fecd1f, 0xeccff21c, 0xd5633b33, - 0x9801b250, 0xe2a62c4d, 00000000 + 0x9801b250, 0xe2a62c4d }, { 0x8fdf8b7a, 0x225a8eae, 0xbd36891b, 0xd35ec9b3, 0x7189da55, - 0xe79f1280, 0xfbb69614, 00000000 + 0xe79f1280, 0xfbb69614 }, { 0xf175cd64, 0x151b63cb, 0x7c35a977, 0x46eeba96, 0x51fbfc56, - 0x6c945f22, 0xde5f3775, 00000000 + 0x6c945f22, 0xde5f3775 } }, { { 0xee504449, 0x3bc97eaf, 0x8be51add, 0x70d00961, 0xbdffefbb, - 0x825f9747, 0x4a9e007, 00000000 + 0x825f9747, 0x4a9e007 }, { 0x1790dfeb, 0x5280dca3, 0x8c1072c, 0x53edf3fa, 0xd4e7726b, - 0x2157c214, 0xa0bd72e8, 00000000 + 0x2157c214, 0xa0bd72e8 }, { 0xbbeeb7be, 0xb3dc7393, 0x7d02090, 0xb2435a02, 0xee64c254, - 0xd23ac7c7, 0x1eb9820, 00000000 + 0xd23ac7c7, 0x1eb9820 } } }, @@ -22063,211 +22063,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x97066d48, 0x99e9425c, 0x99025584, 0xf401bde4, 0x25ac5251, - 0xdf7dbb4f, 0xf2d3f78f, 00000000 + 0xdf7dbb4f, 0xf2d3f78f }, { 0xb73678a0, 0xc836ecb8, 0x4641c6c1, 0xd6508bb4, 0x1fcce24e, - 0x5af91856, 0xa3658119, 00000000 + 0x5af91856, 0xa3658119 }, { 0x6f2d9a29, 0xfb87219, 0x72e547d0, 0x34b2ac2d, 0x1bf53230, - 0xd277d899, 0x5de8dead, 00000000 + 0xd277d899, 0x5de8dead } }, { { 0x6613ef10, 0xa130d67e, 0xdd148e74, 0xb7b6c49f, 0xee1bbc96, - 0x1f023707, 0xd287c48f, 00000000 + 0x1f023707, 0xd287c48f }, { 0xa4691fa1, 0x6dc6e3fa, 0x6786314f, 0xbf4e6763, 0x17834e1e, - 0x91230de5, 0xb35dc4cf, 00000000 + 0x91230de5, 0xb35dc4cf }, { 0x5e8675c0, 0x7ab4f39d, 0xd433413c, 0xedd90486, 0x7985fbf9, - 0xae2aa099, 0x5185be73, 00000000 + 0xae2aa099, 0x5185be73 } }, { { 0x41e2d45e, 0x4c096c5e, 0xa29056c0, 0x61a8dcfd, 0xec04e21b, - 0xddff7099, 0xf9116f45, 00000000 + 0xddff7099, 0xf9116f45 }, { 0xf88f2250, 0x35a01085, 0x74be6034, 0xbf03fe53, 0x30f0920f, - 0x68d8373a, 0xad61bdbf, 00000000 + 0x68d8373a, 0xad61bdbf }, { 0x56b4d9df, 0xf8f235c1, 0xa33a0bf0, 0x931a1c07, 0xde4de916, - 0xc0d99775, 0xe0aee282, 00000000 + 0xc0d99775, 0xe0aee282 } }, { { 0x7f3d7d69, 0xcf84512e, 0xd85e90c1, 0xa5caaf7a, 0x4c02d33b, - 0xe2e9870a, 0x23c0317d, 00000000 + 0xe2e9870a, 0x23c0317d }, { 0x85bc5791, 0xb110bddb, 0x8671a28d, 0x1dd31ccf, 0x8bd37915, - 0xbc60f3c7, 0xfcedc066, 00000000 + 0xbc60f3c7, 0xfcedc066 }, { 0x538df0b9, 0xc73437d2, 0xf4d05a79, 0xc9fd4646, 0xbde61111, - 0x288db0e1, 0x76c2a972, 00000000 + 0x288db0e1, 0x76c2a972 } }, { { 0x9d052704, 0x2c045c4c, 0xb65093a8, 0x8b6cdbdf, 0x585ffe87, - 0x848bd8db, 0xb8588775, 00000000 + 0x848bd8db, 0xb8588775 }, { 0xd92aac6d, 0x15bf5b0c, 0xe2cf7781, 0x146ac185, 0x62cd6a9d, - 0x8d3566d8, 0x50967945, 00000000 + 0x8d3566d8, 0x50967945 }, { 0xbf8d423d, 0x9824e4f6, 0x5a332151, 0x7fc5ead5, 0xdc030372, - 0x87c06937, 0xbd1ea710, 00000000 + 0x87c06937, 0xbd1ea710 } }, { { 0xfb2f35b8, 0xce53dbc, 0x9258800, 0xfcc8d03e, 0xe68cb73c, 0xa8c8d3, - 0x9db1bd72, 00000000 + 0x9db1bd72 }, { 0x10beefca, 0x8e639eef, 0x376b78f7, 0x2899a7fe, 0x3ebec56b, - 0x80cbb555, 0xcab68dce, 00000000 + 0x80cbb555, 0xcab68dce }, { 0x859b848f, 0x4b67a8d3, 0xbd9629fa, 0x3004771a, 0x2c4e1563, - 0x41a49e8f, 0xc2358cfd, 00000000 + 0x41a49e8f, 0xc2358cfd } }, { { 0x39ffb772, 0x1b683b44, 0x7901eabc, 0x22ea6749, 0xf967ac88, - 0x8f88c5da, 0x7e030230, 00000000 + 0x8f88c5da, 0x7e030230 }, { 0x59a230e4, 0x4d7764ae, 0xf80a4cd7, 0x4aa54ed1, 0x8aa034c9, - 0x95fedeb, 0x7fd83dec, 00000000 + 0x95fedeb, 0x7fd83dec }, { 0xfffe3b4b, 0xb07194d4, 0xd6f21899, 0xa411ea3c, 0x2c55125d, - 0x13994e71, 0x878daa4e, 00000000 + 0x13994e71, 0x878daa4e } }, { { 0x6aed0eed, 0x2b84ba02, 0xe7300f50, 0x79faa1d6, 0x54123bf2, - 0xadabdf64, 0x12a74250, 00000000 + 0xadabdf64, 0x12a74250 }, { 0x8dc8b9f2, 0x4328d961, 0xb41105f5, 0x1ae83053, 0xba04dc8e, - 0xf6c50279, 0x73eae471, 00000000 + 0xf6c50279, 0x73eae471 }, { 0x24e1875b, 0x366a339d, 0xd7d3555a, 0x44fb02eb, 0x5d4dafc8, - 0x77af3303, 0x4ffddcbd, 00000000 + 0x77af3303, 0x4ffddcbd } }, { { 0x26186652, 0xd06b1689, 0x400965b7, 0x98e17c33, 0x35f94d9f, - 0x95cc1da6, 0xe032395f, 00000000 + 0x95cc1da6, 0xe032395f }, { 0x52106376, 0x2c1e94c2, 0xc61a148, 0xa4365dc0, 0xb7d3e65b, - 0x838e9148, 0x89a0b9c3, 00000000 + 0x838e9148, 0x89a0b9c3 }, { 0x269e1576, 0x42bd1b09, 0x139d4bf0, 0xf39a20c1, 0xb91dd9d9, - 0x69293389, 0xa84ba5ac, 00000000 + 0x69293389, 0xa84ba5ac } }, { { 0xc7714383, 0x3aa4cbdd, 0x1b816da4, 0x621936, 0x5f384cc, - 0xb3d6ec17, 0xcdeec85d, 00000000 + 0xb3d6ec17, 0xcdeec85d }, { 0xda3234b8, 0xf4998f53, 0xabc2be74, 0x6e777499, 0xb9fb7f8e, - 0x6b7acc2e, 0xe0e91cc2, 00000000 + 0x6b7acc2e, 0xe0e91cc2 }, { 0xaa6d9f7, 0xb3144619, 0x9f3f6bc9, 0x780ffa2f, 0x5567eb6e, - 0x1bf9a248, 0x49c3f047, 00000000 + 0x1bf9a248, 0x49c3f047 } }, { { 0x554d86bb, 0x84cce4f5, 0x6695d836, 0xc3e9d0d1, 0x1c8d3cb, - 0xab9db2c6, 0x5efba8d4, 00000000 + 0xab9db2c6, 0x5efba8d4 }, { 0x59876c43, 0x33bb5d6b, 0x4e5160f1, 0x11a0c0ed, 0x6e0a86c3, - 0x38fe6d12, 0xbeb98320, 00000000 + 0x38fe6d12, 0xbeb98320 }, { 0x8a2099b5, 0x9a9d0173, 0xdddd9d3d, 0xf6bb2cc0, 0x704062da, - 0x8324ad0, 0xab84d7a5, 00000000 + 0x8324ad0, 0xab84d7a5 } }, { { 0x65cb977, 0xb9edc11a, 0xbfcef527, 0x56b7da95, 0x89402460, - 0xb3565baa, 0x1f8a8d7, 00000000 + 0xb3565baa, 0x1f8a8d7 }, { 0xc5cbc7f2, 0xb99d1d17, 0xc9579c21, 0x2821858d, 0x1e99c4b7, - 0x129def21, 0x14b0ca57, 00000000 + 0x129def21, 0x14b0ca57 }, { 0xbf18f834, 0xd7cfba86, 0x908216ba, 0xf38bf056, 0x6c4bc4ad, - 0x730c50d8, 0xfe985124, 00000000 + 0x730c50d8, 0xfe985124 } }, { { 0xb6c53ff6, 0xb231c7e1, 0x2ec79fca, 0x4df9d5b1, 0x46cd1c2e, - 0x8f4e1a3c, 0x3e205973, 00000000 + 0x8f4e1a3c, 0x3e205973 }, { 0x218bac74, 0x645a050b, 0xd5256e21, 0xf3abda70, 0x3292a985, - 0x1ea66dfa, 0x6f0d6a1a, 00000000 + 0x1ea66dfa, 0x6f0d6a1a }, { 0x463b1ce2, 0xd30c81cd, 0xabfb684b, 0x54b6c5a, 0xc7fa00f1, - 0x5b35336, 0xa2e0e2b3, 00000000 + 0x5b35336, 0xa2e0e2b3 } }, { { 0xf92414bb, 0x5e2ce544, 0x46864dca, 0xcbecef35, 0x29ff1fe6, - 0xc1d62c0e, 0x6f7449a3, 00000000 + 0xc1d62c0e, 0x6f7449a3 }, { 0xf6cd9178, 0x74595d0a, 0x2694c744, 0x9aa4b30d, 0x12c4e3ae, - 0xc8cde401, 0xaf904a6, 00000000 + 0xc8cde401, 0xaf904a6 }, { 0x6071e555, 0x62b7599d, 0xdcdf21e1, 0x53cc2731, 0x7db4e1f, - 0x38b7a5c0, 0x4467710a, 00000000 + 0x38b7a5c0, 0x4467710a } }, { { 0x26aca798, 0x57015820, 0x8e63d14b, 0xac9b22e3, 0x47bb51a9, - 0xa4fb279a, 0x7a3ba242, 00000000 + 0xa4fb279a, 0x7a3ba242 }, { 0xd6c692c6, 0xd8a1487c, 0xa5dc887a, 0x275b9c4f, 0x173d5257, - 0x4ab7ca2, 0x4e53dcc9, 00000000 + 0x4ab7ca2, 0x4e53dcc9 }, { 0xe19b7990, 0xf3f358f6, 0xfdc425fe, 0x8d93ab7, 0x69dc0de5, - 0x23acbdb9, 0xef116604, 00000000 + 0x23acbdb9, 0xef116604 } } }, @@ -22275,211 +22275,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xb14200cd, 0xc8ad9f14, 0x1090440f, 0xaefbd1c3, 0xe263ccea, - 0xb3337e05, 0xab7c87, 00000000 + 0xb3337e05, 0xab7c87 }, { 0x4558a9fa, 0x65aed03b, 0x12915228, 0xc3e4d87e, 0xaf63a4a3, - 0x5458b0b6, 0x488345b0, 00000000 + 0x5458b0b6, 0x488345b0 }, { 0x6239e9fc, 0xab19887d, 0xd29abe1c, 0x95edf528, 0xf438b440, - 0xd25bf444, 0xbdcf6a6d, 00000000 + 0xd25bf444, 0xbdcf6a6d } }, { { 0xb5ead130, 0xf7a733a1, 0x93ae43ce, 0x951530e2, 0x57b190b8, - 0xfa26c6a3, 0x3072dcd5, 00000000 + 0xfa26c6a3, 0x3072dcd5 }, { 0xea537589, 0x89d6113, 0xb7e7e65e, 0x8209c161, 0x4c6f13fc, - 0xb60b0e10, 0x3fc7a34e, 00000000 + 0xb60b0e10, 0x3fc7a34e }, { 0xf9e900e3, 0x6f402759, 0xf69d9ccb, 0xaaf5b688, 0x57c3e1a8, - 0x9fab90ce, 0xa532034a, 00000000 + 0x9fab90ce, 0xa532034a } }, { { 0x662a298f, 0x8985ad9, 0x840574dd, 0xefe9cdd2, 0xafa98f5c, - 0x5635785d, 0x88da4949, 00000000 + 0x5635785d, 0x88da4949 }, { 0xbd989fdd, 0x831291c8, 0xafb4f8c3, 0xa12e7120, 0x61dd650d, - 0x9cd64e21, 0xd029480, 00000000 + 0x9cd64e21, 0xd029480 }, { 0xdec34430, 0x81db5f76, 0xece812bc, 0x4243c565, 0x3e961c1f, - 0x5c10fac5, 0x8634c8f3, 00000000 + 0x5c10fac5, 0x8634c8f3 } }, { { 0x9de8c247, 0xc153c7f, 0x79490318, 0x9403c08d, 0x181f903d, - 0x39556cd3, 0xc1d3f312, 00000000 + 0x39556cd3, 0xc1d3f312 }, { 0xc8192861, 0x4a394d16, 0x1f59ce10, 0x3b6276e0, 0xe4a495ac, - 0xb24ce3e7, 0xd12bf8ca, 00000000 + 0xb24ce3e7, 0xd12bf8ca }, { 0xa6e5ec73, 0x901854a2, 0xe09bfe10, 0x712dba9b, 0x4e8c5ea7, - 0xaba414a3, 0x17170e5f, 00000000 + 0xaba414a3, 0x17170e5f } }, { { 0x87c51bbe, 0x3a00e808, 0x8e7f0444, 0xab5e2252, 0x49ca0147, - 0xb0cddb24, 0x6b8efa78, 00000000 + 0xb0cddb24, 0x6b8efa78 }, { 0x872140f9, 0x4b9aa74, 0x60779865, 0xadbc33a9, 0xf8b97e74, - 0x5f934314, 0x2c0fa74e, 00000000 + 0x5f934314, 0x2c0fa74e }, { 0x63ed5fe, 0x7dbf3a74, 0xc5da703, 0x760db63c, 0x645b4f9, - 0x3ebb3679, 0x2e39d5be, 00000000 + 0x3ebb3679, 0x2e39d5be } }, { { 0x2e1d0a2d, 0xfadb57c7, 0x9522d296, 0xbe46065, 0x4736667e, - 0x9a553b03, 0x7ea308d8, 00000000 + 0x9a553b03, 0x7ea308d8 }, { 0x931ade3b, 0x12e15369, 0xe7d33375, 0xe8175880, 0x604a028, - 0x8ef21892, 0xcd7a6d04, 00000000 + 0x8ef21892, 0xcd7a6d04 }, { 0x5edd9b6d, 0x434872f4, 0x9190196e, 0x7ced4a35, 0x2749d800, - 0xf476cb63, 0x412f5638, 00000000 + 0xf476cb63, 0x412f5638 } }, { { 0x7d48af9e, 0xea98cff9, 0xde07156a, 0x76342239, 0xef61769, - 0x2168bbf5, 0x485b3d6, 00000000 + 0x2168bbf5, 0x485b3d6 }, { 0xa2b7b1de, 0x198d792e, 0xf12c202f, 0x30bfae06, 0xc789502c, - 0x7b8fa079, 0x91b00bae, 00000000 + 0x7b8fa079, 0x91b00bae }, { 0xe91bde96, 0xf23c8f0f, 0x9938c88a, 0x98ed4b44, 0x64a984e5, - 0x79fcaede, 0x6c7a01ec, 00000000 + 0x79fcaede, 0x6c7a01ec } }, { { 0xdfa4e6f8, 0x52016106, 0x666e140d, 0x8605dc92, 0x389f8e93, - 0x170a983a, 0x9cfeab7e, 00000000 + 0x170a983a, 0x9cfeab7e }, { 0x915c6d49, 0x7418bb74, 0x85f967a9, 0xc15a64c6, 0x5341b2b1, - 0x2d04618b, 0xad6eef87, 00000000 + 0x2d04618b, 0xad6eef87 }, { 0xbcc366dd, 0xa7563f08, 0x83dcbee6, 0xed7e3909, 0x8f2cb744, - 0xd6f28f23, 0xa59deff3, 00000000 + 0xd6f28f23, 0xa59deff3 } }, { { 0x89287bf, 0xfa987f0e, 0x1ec52aec, 0x6771d432, 0x90835505, - 0x5d546750, 0x79200ec6, 00000000 + 0x5d546750, 0x79200ec6 }, { 0xa62fa8d7, 0xa5ad18eb, 0x59d769ab, 0xe99ec735, 0x576377b5, - 0x72c8acbb, 0x26c900c6, 00000000 + 0x72c8acbb, 0x26c900c6 }, { 0x39c08e18, 0xcf6bb0ec, 0x50524eda, 0xe02c65ff, 0x542679ff, - 0xca4969c0, 0x3ce11a82, 00000000 + 0xca4969c0, 0x3ce11a82 } }, { { 0x153d83f7, 0xd0c990b5, 0x5c282490, 0x85f39e04, 0xd806d77d, - 0xdc663de1, 0xe30584c, 00000000 + 0xdc663de1, 0xe30584c }, { 0xa9c1cba7, 0xf31b4a8e, 0x4f446f1, 0xaa311df2, 0x397e272d, - 0x9db09d1d, 0x446ddf2c, 00000000 + 0x9db09d1d, 0x446ddf2c }, { 0x2c484e98, 0x29b57c12, 0xc84f9eba, 0x212d746d, 0xe1749e1c, - 0xd4f9b2bf, 0xef4ffca5, 00000000 + 0xd4f9b2bf, 0xef4ffca5 } }, { { 0xb5064fec, 0x1810c007, 0x2fc322c, 0x956b6818, 0xde372966, - 0x86dbd0be, 0xd2392188, 00000000 + 0x86dbd0be, 0xd2392188 }, { 0xf55ffce, 0x25d3af30, 0xe20133d4, 0x394e5d, 0x296028e6, - 0x911be9b2, 0xbb03477f, 00000000 + 0x911be9b2, 0xbb03477f }, { 0x40542213, 0xca9b2948, 0x2bf8987e, 0x67b9d6ab, 0x116f1de1, - 0x7212416c, 0xaa94175b, 00000000 + 0x7212416c, 0xaa94175b } }, { { 0x4554b7bc, 0x86820d23, 0x66534046, 0xf1368e36, 0x99a1c4b9, - 0x6fb150f8, 0x210c60a3, 00000000 + 0x6fb150f8, 0x210c60a3 }, { 0xff44e9ac, 0x38d08c55, 0xb9d21f08, 0x5110da75, 0xf5143a12, - 0xf442a24f, 0xab5ec831, 00000000 + 0xf442a24f, 0xab5ec831 }, { 0xb38bffc9, 0x43e9b127, 0x863fad9b, 0xac1fc9ff, 0xc8dc055, - 0x8492c501, 0x265eda00, 00000000 + 0x8492c501, 0x265eda00 } }, { { 0x72f88a0d, 0x66901b, 0x674fc6f3, 0x2b66239, 0x88b54e18, - 0xafa02463, 0x42e21588, 00000000 + 0xafa02463, 0x42e21588 }, { 0xb617f9b, 0x7a203705, 0x408ea51e, 0x66fbef46, 0xeee68cec, - 0xe29dfb66, 0x972d5a81, 00000000 + 0xe29dfb66, 0x972d5a81 }, { 0xfa7da85b, 0x2a7647d8, 0xe04044ce, 0xbce2d105, 0x5217c287, - 0x1091a478, 0xcc27eb22, 00000000 + 0x1091a478, 0xcc27eb22 } }, { { 0xa661d97b, 0xc87017f6, 0xf0c7c221, 0x82c037fe, 0xf891494f, - 0x7d3402a3, 0xe6d80324, 00000000 + 0x7d3402a3, 0xe6d80324 }, { 0x7a3296ce, 0xf1a99e52, 0xff2ed621, 0x2145db98, 0xf42a12d1, - 0x8d19345b, 0x15dedc88, 00000000 + 0x8d19345b, 0x15dedc88 }, { 0x75fad575, 0x832ae5f, 0x2c04246a, 0x9b0d68cc, 0x3df84de, - 0x68c4de41, 0x47a20990, 00000000 + 0x68c4de41, 0x47a20990 } }, { { 0xcbb81665, 0xb8d249a6, 0x3f75926b, 0xeb67028e, 0x1d3fb442, - 0xc32df53e, 0x960fd0b6, 00000000 + 0xc32df53e, 0x960fd0b6 }, { 0x95cd9c04, 0x62712554, 0xf68af544, 0xf95da965, 0x9a379a0c, - 0xc9e313fb, 0x1f89cb22, 00000000 + 0xc9e313fb, 0x1f89cb22 }, { 0xba4d488b, 0x6185f721, 0xd3b62152, 0x32d71b57, 0xcad7fef1, - 0x4ce73df5, 0x478c7156, 00000000 + 0x4ce73df5, 0x478c7156 } } }, @@ -22487,211 +22487,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x6116b8bf, 0xd72386cc, 0x8b84c24b, 0xf21bb424, 0x86084a56, - 0x30dcb6aa, 0x8a60697f, 00000000 + 0x30dcb6aa, 0x8a60697f }, { 0xc8f13c84, 0xc48d2bb2, 0xb6e73d6a, 0x2ed701d2, 0xd56729f5, - 0x6f4b9494, 0xd7ce340c, 00000000 + 0x6f4b9494, 0xd7ce340c }, { 0xab9ba3b8, 0xa6f4275a, 0x1993d5dd, 0x3f9aba95, 0xc070595c, - 0x1fc596, 0x6c7dfa52, 00000000 + 0x1fc596, 0x6c7dfa52 } }, { { 0xe5047f77, 0x4e322b36, 0xfbf24587, 0xfa83bf25, 0x3d12230f, - 0xf36efd52, 0x6a8cf632, 00000000 + 0xf36efd52, 0x6a8cf632 }, { 0x78cebc1a, 0x942d2ed3, 0x8c932bbe, 0x1d8cfe2e, 0xd3aac71a, - 0x8fbf46e9, 0x8d3139b4, 00000000 + 0x8fbf46e9, 0x8d3139b4 }, { 0x2206bf95, 0x21a1380d, 0x6cea6dd2, 0x6f44ca2, 0xed04cbfd, - 0x40c268b6, 0xb9eb7fbc, 00000000 + 0x40c268b6, 0xb9eb7fbc } }, { { 0x12e16aad, 0x90802005, 0xabbed202, 0xb7955ff3, 0x7689c433, - 0x35b6c573, 0x44c16d34, 00000000 + 0x35b6c573, 0x44c16d34 }, { 0x9c06f8dc, 0xa2ed364d, 0x9a030652, 0x720687bd, 0x8ef7f0de, - 0x3252a1cb, 0x4f553f28, 00000000 + 0x3252a1cb, 0x4f553f28 }, { 0xc9d62ba5, 0x13375e0, 0x9189cf6d, 0x40501496, 0xdf32a89e, - 0x668d9120, 0xeb0ee27a, 00000000 + 0x668d9120, 0xeb0ee27a } }, { { 0xfde0aacf, 0xe6633adf, 0x74501173, 0x62673375, 0x45e67f04, - 0xfe8ba495, 0xe3b18227, 00000000 + 0xfe8ba495, 0xe3b18227 }, { 0x842093d1, 0xf2deae1f, 0xa442e1f2, 0x5fc8e706, 0x287107ee, - 0x96768b10, 0xdf1dfd9d, 00000000 + 0x96768b10, 0xdf1dfd9d }, { 0xb2e5dd0, 0xd03b6d6b, 0x3aeb53d7, 0x1d45de16, 0xa5cabeb1, - 0x6e88bea2, 0x2613c67b, 00000000 + 0x6e88bea2, 0x2613c67b } }, { { 0x7dcdf2ba, 0xe998be22, 0x43bd7fea, 0x4fd1f20d, 0xf1ce7f48, - 0x5de939c1, 0xcd090e98, 00000000 + 0x5de939c1, 0xcd090e98 }, { 0xac25dc4d, 0xc65321e4, 0xd1bca202, 0x31fbce86, 0xdd35b6b8, - 0x7045c386, 0xeabd5475, 00000000 + 0x7045c386, 0xeabd5475 }, { 0xd80d6791, 0x73603f88, 0x9a9ad0d3, 0xef4b2f04, 0xeed3e050, - 0xa4a7f34, 0xa71db35e, 00000000 + 0xa4a7f34, 0xa71db35e } }, { { 0x117af435, 0x605b5bf, 0xadbffbd3, 0x3a02999d, 0x345100a9, - 0x6e34e70f, 0xf26eb760, 00000000 + 0x6e34e70f, 0xf26eb760 }, { 0xb64765bc, 0x896824d2, 0x383c85fc, 0x9efe59b8, 0xf2e2247c, - 0x1075d477, 0xa8077bd4, 00000000 + 0x1075d477, 0xa8077bd4 }, { 0xd28fce04, 0x99998f07, 0x6a91ab59, 0x69a0b077, 0x5906668d, - 0xbf502de7, 0xfe5f415f, 00000000 + 0xbf502de7, 0xfe5f415f } }, { { 0x4e90a0f, 0xce1cb0cb, 0x950eb524, 0xe859741f, 0x6d255247, - 0x88304dc8, 0x3897fdd0, 00000000 + 0x88304dc8, 0x3897fdd0 }, { 0xadca611d, 0x8536dd9b, 0xef3263d0, 0xe588cbca, 0xaf22da91, - 0x655a98e5, 0x19033634, 00000000 + 0x655a98e5, 0x19033634 }, { 0xc3e70b93, 0xc136c7ac, 0xd1be8945, 0x4fd4d0e6, 0xe9ece0d5, - 0x8e91e734, 0x94c3636e, 00000000 + 0x8e91e734, 0x94c3636e } }, { { 0xd549621b, 0xaaf88543, 0x8d2cf84c, 0xde69ac67, 0xc19cf05f, - 0xe4465028, 0xfdcffa8f, 00000000 + 0xe4465028, 0xfdcffa8f }, { 0xcf74aaa9, 0x87b9be70, 0x187a70a0, 0xc31645ae, 0x14638986, - 0x2f77e117, 0x82b1ce54, 00000000 + 0x2f77e117, 0x82b1ce54 }, { 0xc3be4d87, 0x72474953, 0x99753d7a, 0xc336a37, 0xd9bd5b49, - 0xad61f31, 0x2e4e865, 00000000 + 0xad61f31, 0x2e4e865 } }, { { 0x3286bb1f, 0x8a663b63, 0xf6ff45f6, 0x74126272, 0xb58e98be, - 0x2554edde, 0xceb9ac62, 00000000 + 0x2554edde, 0xceb9ac62 }, { 0x9dbb9e87, 0xe0843c20, 0xe54aaa17, 0x898cd783, 0xf69b8f2a, - 0x73a961, 0x6c081ea1, 00000000 + 0x73a961, 0x6c081ea1 }, { 0x69c775cc, 0xe18c4191, 0x958205fa, 0x5bfeef28, 0x92e094ae, - 0x5e49fff1, 0xa3ac8f39, 00000000 + 0x5e49fff1, 0xa3ac8f39 } }, { { 0xb279fb, 0x90669f03, 0x5d0d64a, 0xdf7dd310, 0xbe531ae5, - 0x8c717a2a, 0xa8c73747, 00000000 + 0x8c717a2a, 0xa8c73747 }, { 0xa1e84e64, 0x73f3449f, 0xa5484a73, 0x3a6f47fd, 0x9583cbf3, - 0x4c84fb37, 0x90599681, 00000000 + 0x4c84fb37, 0x90599681 }, { 0xaca4a369, 0x58902a79, 0xb530d40a, 0xda56a1eb, 0x7690b794, - 0xbb925373, 0x156d00e0, 00000000 + 0xbb925373, 0x156d00e0 } }, { { 0xb416c451, 0x3f021f5a, 0xd6661115, 0x8263a203, 0x2f3a199b, - 0x298fdf62, 0x9f235912, 00000000 + 0x298fdf62, 0x9f235912 }, { 0x307163ad, 0x55f1717c, 0x2d6e01b5, 0x8268d79a, 0x144c0a53, - 0x268fb04e, 0x4e5edf78, 00000000 + 0x268fb04e, 0x4e5edf78 }, { 0x405a47ea, 0xd1736d59, 0x691153a4, 0x37d40692, 0x2c5f551, - 0x34aaefa7, 0x20f4bda1, 00000000 + 0x34aaefa7, 0x20f4bda1 } }, { { 0xc1a60488, 0x14f52dbf, 0xff90dffd, 0xbd67bb89, 0xfe555abd, - 0xdf18142d, 0x629b0f59, 00000000 + 0xdf18142d, 0x629b0f59 }, { 0x66bab0fe, 0x2698cb14, 0xf2947fa, 0xeffa35e7, 0xfbda6fef, - 0x6ba556a7, 0xfecc5a14, 00000000 + 0x6ba556a7, 0xfecc5a14 }, { 0xc1ecb61e, 0x548a3b80, 0xe6a18d99, 0x9c06763e, 0xd6605998, - 0xd762daca, 0x59930461, 00000000 + 0xd762daca, 0x59930461 } }, { { 0xe7eb93f4, 0x8764fcb2, 0xa484b452, 0xa99d15ea, 0x46269834, - 0x3b098f76, 0x32075ad6, 00000000 + 0x3b098f76, 0x32075ad6 }, { 0x860aee57, 0xa33b0f39, 0x5a6f50f8, 0xf4a86b7c, 0xb59251c3, - 0xfca23e8c, 0x2c81ae1f, 00000000 + 0xfca23e8c, 0x2c81ae1f }, { 0xf59091a6, 0x3123e5ed, 0x69246525, 0x5e8e1220, 0xe10977a3, - 0x9ab047c7, 0x4b6f51d1, 00000000 + 0x9ab047c7, 0x4b6f51d1 } }, { { 0x2a2a7750, 0x12343fab, 0x373250bf, 0x60a33ee8, 0xf84b25fc, - 0xa54891f2, 0x39aeb7cb, 00000000 + 0xa54891f2, 0x39aeb7cb }, { 0xe4d6c58b, 0x5e3ed76e, 0x916d192c, 0x272b6f95, 0x3ccdd2ab, - 0x639fc322, 0x795c32a, 00000000 + 0x639fc322, 0x795c32a }, { 0xd50761f7, 0x4c39b767, 0xd245792, 0x999e8d63, 0xaa311f82, - 0xceaf7b2e, 0x685b4ba8, 00000000 + 0xceaf7b2e, 0x685b4ba8 } }, { { 0x3e0d8a62, 0x6c78189c, 0x9f425f65, 0xc625414c, 0xb97b6cb0, - 0x2cef5809, 0x2142851e, 00000000 + 0x2cef5809, 0x2142851e }, { 0xe9f31dfa, 0x8f449f5f, 0x6ea5eb70, 0x1b731e9c, 0x11420a7b, - 0x2178d7fa, 0xd07c6e44, 00000000 + 0x2178d7fa, 0xd07c6e44 }, { 0x6137913b, 0x1774ba0, 0xa3c0e8bb, 0x563d2c9c, 0xd4730008, - 0x20b3c9cb, 0x7a2e2e9e, 00000000 + 0x20b3c9cb, 0x7a2e2e9e } } }, @@ -22699,211 +22699,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x65bd806c, 0x8a638af1, 0xf2c52a15, 0xe12db240, 0xda492dc6, - 0x71c74ca4, 0xb0e7330f, 00000000 + 0x71c74ca4, 0xb0e7330f }, { 0x1ee8c8a5, 0xf33164b5, 0x3b313057, 0x515396eb, 0xa958a69b, - 0xd8513952, 0xf901a575, 00000000 + 0xd8513952, 0xf901a575 }, { 0xc1dccdfd, 0xe19f131b, 0x7fb1b30c, 0xff5950b1, 0xec497cad, - 0x993ae8a1, 0x48a25be2, 00000000 + 0x993ae8a1, 0x48a25be2 } }, { { 0x1c068582, 0xb935e9d5, 0x3624fe23, 0x428d12ed, 0x68999f0f, - 0xfa78a33, 0xc2e861f9, 00000000 + 0xfa78a33, 0xc2e861f9 }, { 0x6b99c47d, 0x833e8c3d, 0x52fab392, 0x36d73336, 0x99721d0, - 0x417459aa, 0x4f97408, 00000000 + 0x417459aa, 0x4f97408 }, { 0x8ee8a180, 0xb6714aac, 0x180f78ed, 0xc10bf9f, 0xf3fe5346, - 0x21b90c0b, 0xfc0aaaf1, 00000000 + 0x21b90c0b, 0xfc0aaaf1 } }, { { 0x757486e1, 0x1c177d6e, 0x7f385a4e, 0xcff52cf, 0x2a9001e4, - 0xf6a02fa7, 0x867856c7, 00000000 + 0xf6a02fa7, 0x867856c7 }, { 0x98dda0d4, 0xcb00f276, 0xc711be2, 0xde3d2925, 0x76110bc, - 0x895428a4, 0x49851268, 00000000 + 0x895428a4, 0x49851268 }, { 0xcfe6a1ab, 0xe1cfcf8c, 0x3212b20d, 0xcc9ba177, 0xfeb93a03, - 0xd6c9fa73, 0xa95cbc5d, 00000000 + 0xd6c9fa73, 0xa95cbc5d } }, { { 0x41762359, 0x6bd421b2, 0xb7c17cc2, 0xea0e412a, 0x4a3761a7, - 0xd4dddd21, 0x36022052, 00000000 + 0xd4dddd21, 0x36022052 }, { 0x12426af7, 0xd84e6831, 0xa4f2e963, 0x3fbc1888, 0x1c38f580, - 0x571d5275, 0xbfa4f7d8, 00000000 + 0x571d5275, 0xbfa4f7d8 }, { 0x9c8ecc80, 0x750d96e7, 0x8026612, 0xac3c55a9, 0x87c7be49, - 0xe94144c7, 0x6349a456, 00000000 + 0xe94144c7, 0x6349a456 } }, { { 0x595f6880, 0xd117f027, 0x78a19017, 0xa077bd64, 0x27cd193c, - 0x2020e972, 0x79fb6ce5, 00000000 + 0x2020e972, 0x79fb6ce5 }, { 0xecfe3249, 0xf77b2811, 0x4db08cba, 0x370bd0e1, 0xd901ba10, - 0x48248d42, 0x67f91088, 00000000 + 0x48248d42, 0x67f91088 }, { 0x8a5eff3c, 0x523b1140, 0x774e9ad9, 0xad47793a, 0x965e875f, - 0x1c39003b, 0x704f57e1, 00000000 + 0x1c39003b, 0x704f57e1 } }, { { 0x21399eaf, 0x2c7c30b9, 0xdd397592, 0x757857bc, 0xfb7e0c1a, - 0x663dd843, 0x434c337b, 00000000 + 0x663dd843, 0x434c337b }, { 0x500841f5, 0xdb4c20c6, 0x1dbdeed2, 0x78b5fa8b, 0x34e9e4ab, - 0x6ff1da62, 0xf34189bb, 00000000 + 0x6ff1da62, 0xf34189bb }, { 0x4f19ca60, 0x88c6e45, 0x97a5247c, 0xf0fff8f2, 0x59336840, - 0x2f61e745, 0x64523742, 00000000 + 0x2f61e745, 0x64523742 } }, { { 0x83b4a032, 0x2932731, 0x6b9d045f, 0x3ca5b74f, 0x9ba04ac2, - 0x289b9b0f, 0x9e4fb6ff, 00000000 + 0x289b9b0f, 0x9e4fb6ff }, { 0xe1efe29f, 0xb00f6130, 0x8f2d43fe, 0x17169b32, 0x5880198f, - 0xf0684daa, 0xb8bc4618, 00000000 + 0xf0684daa, 0xb8bc4618 }, { 0xf5de73e, 0xe8bbd5d, 0x383131e5, 0x1eb1bffb, 0x32b35d2d, - 0x2e461005, 0x6fde1bba, 00000000 + 0x2e461005, 0x6fde1bba } }, { { 0x2484fddc, 0xb288abf2, 0xa907d5aa, 0x52b0f3db, 0x1397544c, - 0x90947949, 0x401237e6, 00000000 + 0x90947949, 0x401237e6 }, { 0x1bb02958, 0x5046319a, 0xf24b8a04, 0x7a5ddab4, 0x2d8088a3, - 0x4392c6b8, 0xc8e1ab28, 00000000 + 0x4392c6b8, 0xc8e1ab28 }, { 0x87ed4fc4, 0x54160742, 0xa500d41d, 0x56fb92db, 0xee9c7c70, - 0x778346a7, 0x8195f35a, 00000000 + 0x778346a7, 0x8195f35a } }, { { 0x1de65a32, 0xbe6d89c4, 0x65b75f12, 0xc4159636, 0x2bbcf718, - 0x3eebd0e8, 0x4d5b5fdd, 00000000 + 0x3eebd0e8, 0x4d5b5fdd }, { 0xd01b27eb, 0xc8377667, 0x3ae5599c, 0xea3f65e6, 0x9a964b, - 0xf2516ab8, 0x12adcbad, 00000000 + 0xf2516ab8, 0x12adcbad }, { 0xc86d8bb, 0xe3fee5dc, 0x30d3e015, 0x40744001, 0xc05be4e6, - 0xaef994fc, 0x4fee3052, 00000000 + 0xaef994fc, 0x4fee3052 } }, { { 0xb9e22675, 0x35f2eb60, 0x34888843, 0x1acf8696, 0xdfa99808, - 0xb872880a, 0x113e442d, 00000000 + 0xb872880a, 0x113e442d }, { 0x2e57caed, 0xc90f55d0, 0x5a235988, 0xb1d9b67d, 0xdf922bc, - 0x84b6e146, 0x44bde7c6, 00000000 + 0x84b6e146, 0x44bde7c6 }, { 0xddb01462, 0x7edf6aae, 0x3170b32f, 0xbd6ecc22, 0xb894ecce, - 0x390fc1ef, 0x3bc2b32d, 00000000 + 0x390fc1ef, 0x3bc2b32d } }, { { 0xa482165b, 0x9ae4a05e, 0x40fea884, 0x93a05355, 0x53b01b9, - 0xd294f280, 0x1a5466da, 00000000 + 0xd294f280, 0x1a5466da }, { 0xdcd6dee1, 0x3bd7b6b9, 0xd2dedbfd, 0xdf2f7e5b, 0xa3c23437, - 0x43b6d283, 0xe857f086, 00000000 + 0x43b6d283, 0xe857f086 }, { 0xf57d2779, 0x3bcf3bbc, 0xef10158, 0x824b0e14, 0xe3113765, - 0xfce23e34, 0x4ef9f88, 00000000 + 0xfce23e34, 0x4ef9f88 } }, { { 0xbdd1ce93, 0x39dc3c00, 0x5e8d3a77, 0x7937879e, 0xe40dd845, - 0x5e97faed, 0xe071a037, 00000000 + 0x5e97faed, 0xe071a037 }, { 0x187600eb, 0x6cf4b8aa, 0x43622934, 0x446d2888, 0xc6e8e72f, - 0x4089ee66, 0xe6a0697, 00000000 + 0x4089ee66, 0xe6a0697 }, { 0x58e1521d, 0x5b9b1398, 0x5e0f58f0, 0x3f016d23, 0x9e62fcb9, - 0x4aac3bd0, 0x1050591a, 00000000 + 0x4aac3bd0, 0x1050591a } }, { { 0xf092fc4d, 0x9016f6f, 0xc8cb24b, 0x956e494c, 0xcf01fdf, - 0x663321a8, 0x6c20b90d, 00000000 + 0x663321a8, 0x6c20b90d }, { 0x2f906575, 0x66e290bd, 0xf72827fe, 0x57960415, 0xac1fe0fd, - 0xb2bcf7c6, 0xbed3e027, 00000000 + 0xb2bcf7c6, 0xbed3e027 }, { 0xc63b5ddd, 0xbced8033, 0x653d9375, 0xb7d3321a, 0x3142bb72, - 0x341edbb9, 0x53f215d, 00000000 + 0x341edbb9, 0x53f215d } }, { { 0xed715de7, 0x8e1928bd, 0xe701b6cb, 0x7be15a4b, 0x448c5c1a, - 0x925e9a89, 0x1e00746e, 00000000 + 0x925e9a89, 0x1e00746e }, { 0x3e0f1ebd, 0xa208fa96, 0x784b549, 0xf8fb08ec, 0xc5dec0b4, - 0xeea8deb9, 0xeb02dd3a, 00000000 + 0xeea8deb9, 0xeb02dd3a }, { 0x3dd89789, 0x3dd0ae93, 0xd682fc5c, 0x3e871b96, 0x7357e7d, - 0x2beba55d, 0xa843e7af, 00000000 + 0x2beba55d, 0xa843e7af } }, { { 0xc2c298d6, 0x9ee20b53, 0xaf05b844, 0x4eab7635, 0x96ad5f0a, - 0xa21e7f, 0x35357e9c, 00000000 + 0xa21e7f, 0x35357e9c }, { 0x8d9dfa7d, 0x6796a16f, 0xce2de147, 0x5cdd78c7, 0x25c18bb1, - 0x398bf21c, 0xc598cae7, 00000000 + 0x398bf21c, 0xc598cae7 }, { 0x97e868ea, 0x365ad0b0, 0xf3f58ced, 0x9e309046, 0x141340e3, - 0x851759f7, 0xe7368377, 00000000 + 0x851759f7, 0xe7368377 } } }, @@ -22911,211 +22911,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x7e6f705b, 0x59e5f64a, 0x7d24bb9a, 0x369be828, 0x2e3ace57, - 0x8834ef7d, 0x2ac7c98, 00000000 + 0x8834ef7d, 0x2ac7c98 }, { 0xa24696bd, 0x9c8218ba, 0x8c00e82d, 0xbd978cfd, 0x2b4b7020, - 0x7682731f, 0xb3d6ac98, 00000000 + 0x7682731f, 0xb3d6ac98 }, { 0xc18e5b60, 0x9eadfde6, 0xc1c32caf, 0xb6fd70d0, 0x873b8684, - 0xf155de3e, 0xe6669050, 00000000 + 0xf155de3e, 0xe6669050 } }, { { 0xe1e8cc54, 0x548aab0f, 0x4789faaf, 0x41881043, 0x19a02159, - 0x2924947f, 0x13d3fa09, 00000000 + 0x2924947f, 0x13d3fa09 }, { 0x8fb24ebc, 0x9cacd45e, 0xa568d6e5, 0x4344b72a, 0x7cbfcc00, - 0x30931a0b, 0x9a1405ad, 00000000 + 0x30931a0b, 0x9a1405ad }, { 0x7e78e83f, 0xb024683, 0x6a998209, 0x4660ac1d, 0x585d0bc3, - 0xf29da499, 0xe7f90735, 00000000 + 0xf29da499, 0xe7f90735 } }, { { 0x4516ee94, 0x7502190e, 0xcfee80ca, 0x315f0465, 0x36e5b847, - 0xb4e458f, 0x8423f700, 00000000 + 0xb4e458f, 0x8423f700 }, { 0x112b5f94, 0xd613c160, 0x16e6c2c5, 0xa769bd1d, 0xfb277cf8, - 0xd0a758b4, 0x7d338a6f, 00000000 + 0xd0a758b4, 0x7d338a6f }, { 0xe790eb05, 0x2b694e1a, 0xed085784, 0x4dae3a75, 0x4ab88955, - 0xbcaf7bbb, 0x6f81b2d9, 00000000 + 0xbcaf7bbb, 0x6f81b2d9 } }, { { 0x7e07e59, 0x125df8e5, 0xb82fc8ca, 0x69fbfd9f, 0x7392effd, - 0xdc69819d, 0xe552ee62, 00000000 + 0xdc69819d, 0xe552ee62 }, { 0x7f83ee22, 0x20c5669e, 0x632464ef, 0xdf420bd4, 0xe9291e15, - 0x38fee1b, 0xe9fa6b9b, 00000000 + 0x38fee1b, 0xe9fa6b9b }, { 0xeb597cd0, 0x5d6b594, 0xba5a89ad, 0xe9debd23, 0x73ec5f16, - 0x4fdee07d, 0x88111889, 00000000 + 0x4fdee07d, 0x88111889 } }, { { 0xa082bdd0, 0x6b412300, 0x60267c7d, 0x36726ea4, 0xdd7ba906, - 0x280f4383, 0x892fe5c4, 00000000 + 0x280f4383, 0x892fe5c4 }, { 0x1b9868b4, 0x186eeb3a, 0xc998ce0f, 0x6964fb36, 0xde0ea1a1, - 0x1407cc14, 0x48fb49f0, 00000000 + 0x1407cc14, 0x48fb49f0 }, { 0xc38d69dd, 0x2bece58, 0xe907fd78, 0x2421d63b, 0x7bd97de8, - 0x87cea6f, 0xb607cd72, 00000000 + 0x87cea6f, 0xb607cd72 } }, { { 0xeff1a2c7, 0xe9f865, 0x667c0cf6, 0xebba7f5, 0xcc0dee52, - 0x1e0a074e, 0x4e1b4992, 00000000 + 0x1e0a074e, 0x4e1b4992 }, { 0x6aeb0ad8, 0xfc42e084, 0x9d93f595, 0x4de11b15, 0x3bf68fa1, - 0x15f13bb8, 0x3bdafdb1, 00000000 + 0x15f13bb8, 0x3bdafdb1 }, { 0xbf03b541, 0xeaa127b7, 0x578bd3fe, 0x31f2e35f, 0x4669c912, - 0xf610a395, 0x1e4f9cea, 00000000 + 0xf610a395, 0x1e4f9cea } }, { { 0x25fcca56, 0xfd740fa2, 0x5ca0985f, 0x1da3462e, 0x963ab5f0, - 0x488e9163, 0xd1165649, 00000000 + 0x488e9163, 0xd1165649 }, { 0x1da00e09, 0xbef0bbb, 0x7970749f, 0x3d2b7ba1, 0xcca39fc0, - 0x3cd61f6d, 0x7ca8e84f, 00000000 + 0x3cd61f6d, 0x7ca8e84f }, { 0xcb8174d0, 0x15cad3b5, 0xc41c61f3, 0x56328554, 0x9571593e, - 0x46f95a38, 0xe2609538, 00000000 + 0x46f95a38, 0xe2609538 } }, { { 0xfdb9e32b, 0xeaad1cd, 0x7d991c23, 0x8de118a3, 0x8df64a1a, - 0xbaf25acf, 0x66e37d0a, 00000000 + 0xbaf25acf, 0x66e37d0a }, { 0xe68700c8, 0x7a23e68f, 0x55dea984, 0x50278f04, 0x6e19ca25, - 0x2704e2c8, 0x7b48f965, 00000000 + 0x2704e2c8, 0x7b48f965 }, { 0x8cc582ab, 0xc723fe98, 0x7e92dc96, 0x16127d22, 0x750142a4, - 0xbb5b6dc9, 0x6875f35f, 00000000 + 0xbb5b6dc9, 0x6875f35f } }, { { 0x513b1768, 0xb1c9f539, 0xba2204f3, 0x3c8c3149, 0x22dd54ac, - 0x6ca548cb, 0x262358b7, 00000000 + 0x6ca548cb, 0x262358b7 }, { 0xc3344497, 0x3e7b94cb, 0xaf0f6d48, 0x3c72215e, 0xd718fef, - 0x7bc3843e, 0x713eeeb7, 00000000 + 0x7bc3843e, 0x713eeeb7 }, { 0x7ab91da4, 0x2e35fbb8, 0x15d90a2d, 0xffd52311, 0xb9ab658b, - 0x9b6dfafa, 0x773fe2b5, 00000000 + 0x9b6dfafa, 0x773fe2b5 } }, { { 0xb667f418, 0x61be0cd9, 0x5b73b9a4, 0x4c293c07, 0x2fa13ee8, - 0x6c76cd6b, 0x27280b41, 00000000 + 0x6c76cd6b, 0x27280b41 }, { 0x9ac90504, 0x80558ec, 0xf295967f, 0x27a75c46, 0x8424d902, - 0x14e5da02, 0x62907655, 00000000 + 0x14e5da02, 0x62907655 }, { 0xca29cc27, 0x8793ff57, 0x66250191, 0xdfba6e72, 0x8ea7e6fd, - 0x80952984, 0x55312c2b, 00000000 + 0x80952984, 0x55312c2b } }, { { 0x4dcc45ce, 0x4349dc21, 0x5ec3cf9a, 0xbcbe8c07, 0x80226e23, - 0x1e444380, 0x3eacb77f, 00000000 + 0x1e444380, 0x3eacb77f }, { 0x56b9be8c, 0x983d589, 0x276df508, 0xb9425ef1, 0x76b76737, - 0x29efd9d5, 0x30843d83, 00000000 + 0x29efd9d5, 0x30843d83 }, { 0xe49a0bcc, 0x6d4dd904, 0xe31307c, 0xa148cdf2, 0xd7de1fa9, - 0xba353ede, 0xe8572cce, 00000000 + 0xba353ede, 0xe8572cce } }, { { 0x5dc45dbe, 0x9da889b1, 0xd615aff4, 0x3820f1ef, 0xb97e6545, - 0x4156f9f, 0xd0e4fb37, 00000000 + 0x4156f9f, 0xd0e4fb37 }, { 0xe06461c4, 0x8b873124, 0xc03ef34b, 0xca0c90aa, 0xb90936e6, - 0x18b57d9c, 0x287d8810, 00000000 + 0x18b57d9c, 0x287d8810 }, { 0x3ed19c4c, 0xa3d4ce3f, 0xfe83d81d, 0xbbd3a3cf, 0x83f3e360, - 0x4dc83708, 0x9617805, 00000000 + 0x4dc83708, 0x9617805 } }, { { 0xdc7742e, 0x2c4cdb67, 0x30c9528d, 0x3954bef, 0xf517fd7b, - 0xfa6dfb52, 0x246f3705, 00000000 + 0xfa6dfb52, 0x246f3705 }, { 0x1afe6e62, 0x334e9a05, 0x6d86e356, 0x95ae249c, 0x156f7829, - 0x14d17b26, 0x9ae775b4, 00000000 + 0x14d17b26, 0x9ae775b4 }, { 0xda52f611, 0x2ede1fe4, 0x72a09dd3, 0xe3411d24, 0x50c31e8f, - 0x22a22166, 0x9b7cef01, 00000000 + 0x22a22166, 0x9b7cef01 } }, { { 0x59b435bb, 0xf79c5d17, 0xa2bb4c0a, 0x4626108, 0x394f13c3, - 0x295ff1e4, 0x2ca65457, 00000000 + 0x295ff1e4, 0x2ca65457 }, { 0xfbb8be10, 0xd0a98902, 0x3969f1d6, 0xce03f60f, 0x4697bc41, - 0x4760d856, 0x3007fb70, 00000000 + 0x4760d856, 0x3007fb70 }, { 0xa8010da9, 0x72dc784e, 0x5abb16cf, 0x97bc14b7, 0xe2902e23, - 0x7fbc3752, 0x7a972023, 00000000 + 0x7fbc3752, 0x7a972023 } }, { { 0xb51ba072, 0x99898197, 0xa5397e5, 0x7bc4992d, 0x5f30ddca, - 0xe707aef4, 0xa385e5dc, 00000000 + 0xe707aef4, 0xa385e5dc }, { 0x6fe181a8, 0xffc96e86, 0xd9d1c892, 0xfbd994be, 0x2d663f42, - 0x2d550071, 0x27f2dc16, 00000000 + 0x2d550071, 0x27f2dc16 }, { 0xccc1a2d7, 0x6113d4d8, 0xb2090cf, 0xfb96e1f3, 0xab90a423, - 0x59e3868e, 0x367d786b, 00000000 + 0x59e3868e, 0x367d786b } } }, @@ -23123,211 +23123,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x849c3c1, 0xf4ff13ac, 0x4821ac90, 0x824c4f71, 0x1600d5d8, - 0xed2b7055, 0xf26a1215, 00000000 + 0xed2b7055, 0xf26a1215 }, { 0xfe1f4591, 0xe2d9067e, 0xa863d129, 0x276747aa, 0x2fa7c835, - 0xfe7a1e8a, 0x698d77f1, 00000000 + 0xfe7a1e8a, 0x698d77f1 }, { 0x36d0c729, 0x2e98a458, 0x13d1095f, 0x94bb13d, 0x32a4c551, - 0x2f4ea87d, 0x6f58c47e, 00000000 + 0x2f4ea87d, 0x6f58c47e } }, { { 0xa9598aaf, 0x6878c00d, 0x3c5a5573, 0xd329f610, 0x47e2e108, - 0xc23aa926, 0x5fb84911, 00000000 + 0xc23aa926, 0x5fb84911 }, { 0x302e1e09, 0x4461f4bc, 0xf8e77fad, 0xeba89002, 0x57d1f48e, - 0x96824b14, 0x7f54b20a, 00000000 + 0x96824b14, 0x7f54b20a }, { 0xda186913, 0xfadeb127, 0x9746b9e9, 0x5f5e8abe, 0x2aff205a, - 0x4101c022, 0x8643245e, 00000000 + 0x4101c022, 0x8643245e } }, { { 0x7be8511a, 0x4b01c5e1, 0x471d4849, 0x75534ffa, 0x584fa45, - 0xec7084fb, 0x70ecb692, 00000000 + 0xec7084fb, 0x70ecb692 }, { 0x63a1b8a3, 0x4de0071b, 0xb7b669b4, 0x963681c8, 0x45507018, - 0xb3b783a4, 0x11431b33, 00000000 + 0xb3b783a4, 0x11431b33 }, { 0xac78ae18, 0xd070d884, 0x793dbcfd, 0x48d1210b, 0x5845e071, - 0xf324faa7, 0x9094a181, 00000000 + 0xf324faa7, 0x9094a181 } }, { { 0xa6d2363d, 0x3b5fa511, 0x6c67a36f, 0xe060a396, 0x3cf25da5, - 0x5df93042, 0xaa461675, 00000000 + 0x5df93042, 0xaa461675 }, { 0xd96555ab, 0xfe7216f3, 0x3188b5e8, 0xef2c9200, 0x9f8e869a, - 0xb8b5dfc7, 0x8ffe5850, 00000000 + 0xb8b5dfc7, 0x8ffe5850 }, { 0x59b02b3c, 0x8f92d942, 0x9f571d28, 0x4ad68846, 0x1d52febc, - 0x84ba151, 0xff7022ad, 00000000 + 0x84ba151, 0xff7022ad } }, { { 0x2fe9efdd, 0x509feb03, 0x6ff9d2f3, 0x4d7c4342, 0xd4e7667, - 0x144140c4, 0x2d9a8ee2, 00000000 + 0x144140c4, 0x2d9a8ee2 }, { 0x67515e01, 0x423aa16d, 0x189d824b, 0x81ab47be, 0xfe12ee9c, - 0x18fc5117, 0x67399592, 00000000 + 0x18fc5117, 0x67399592 }, { 0xad0f733e, 0x80516fa6, 0x219b6f0d, 0x6124a905, 0x615feac1, - 0x63950081, 0xc4657c14, 00000000 + 0x63950081, 0xc4657c14 } }, { { 0x9737aeef, 0x448674b9, 0xdab5c443, 0xbe7069d5, 0x33fd10d5, - 0x5f393811, 0x5e7398a2, 00000000 + 0x5f393811, 0x5e7398a2 }, { 0x8a921915, 0xd1200a12, 0xe0f52dde, 0xfb18a878, 0xf54cb01c, - 0x9dc737d3, 0xb019fb2e, 00000000 + 0x9dc737d3, 0xb019fb2e }, { 0x4c5437e1, 0x4c21aeb8, 0x962168fd, 0x4f2abfe4, 0xb962f163, - 0x3c43430, 0x3a1e2d33, 00000000 + 0x3c43430, 0x3a1e2d33 } }, { { 0xca2b8e98, 0xbd7b92f1, 0xdddde3cc, 0x9241a702, 0xc1c0a8e0, - 0xa7c57fdc, 0x2ee5c4a7, 00000000 + 0xa7c57fdc, 0x2ee5c4a7 }, { 0xca21da77, 0x972661, 0x992a295b, 0xe45a984b, 0x44c99420, - 0x2df8633c, 0xb80d2917, 00000000 + 0x2df8633c, 0xb80d2917 }, { 0x8e45d466, 0xc3d23016, 0x58e1457, 0xab8df08b, 0xe6fb4f86, - 0x7a33deed, 0xc7f60f35, 00000000 + 0x7a33deed, 0xc7f60f35 } }, { { 0xc8be377d, 0xf640d431, 0x59332841, 0x417046b0, 0x80ad2d65, - 0x49194d58, 0x2b6d92be, 00000000 + 0x49194d58, 0x2b6d92be }, { 0x6e8a3a78, 0xed140c75, 0x2ec0ec3f, 0x83092b47, 0x1f71b026, - 0x51a27852, 0xf007103b, 00000000 + 0x51a27852, 0xf007103b }, { 0xdf2bc8ca, 0x6311615b, 0x862f0a38, 0xc7450ab0, 0x6acae832, - 0x7ec8fdc6, 0xa0048359, 00000000 + 0x7ec8fdc6, 0xa0048359 } }, { { 0x9892c277, 0x7db55194, 0x734b472a, 0xfad7983f, 0x98ad7cf7, - 0x7121a81e, 0x91105e71, 00000000 + 0x7121a81e, 0x91105e71 }, { 0x9a91b78, 0x6c233c05, 0x2128a0d9, 0xd1ab8130, 0x6f4be13b, - 0x8d40961a, 0xfeb4404b, 00000000 + 0x8d40961a, 0xfeb4404b }, { 0x135eb63f, 0xa068f818, 0x210daa3, 0xda1539ab, 0x69ef5168, - 0x8e1097ab, 0x4251d624, 00000000 + 0x8e1097ab, 0x4251d624 } }, { { 0x6f66bc38, 0x46e84684, 0xe1377c1c, 0xd0f40a2, 0xc7c3eafd, - 0x8506a5fb, 0x889bfe5d, 00000000 + 0x8506a5fb, 0x889bfe5d }, { 0x5deebf, 0xf36ee872, 0x81031ac6, 0xd07533c2, 0x643250d0, - 0xfd352fd, 0x2ac31855, 00000000 + 0xfd352fd, 0x2ac31855 }, { 0x638219cf, 0x37155cda, 0x99be6938, 0x3c0d3357, 0x27f7ffc5, - 0xd2b8bec3, 0xd486f64c, 00000000 + 0xd2b8bec3, 0xd486f64c } }, { { 0xf27348fd, 0x1c8449, 0x1c0dfac2, 0x32883c9f, 0xb9cc8f41, - 0x71544606, 0xa396f5ef, 00000000 + 0x71544606, 0xa396f5ef }, { 0x9c070781, 0x6eec75c8, 0xfd3a51fd, 0x82bb6a29, 0x5537db8f, - 0x4b430bbe, 0x151e15f9, 00000000 + 0x4b430bbe, 0x151e15f9 }, { 0x450f47e2, 0x86f801cd, 0xcd72b632, 0x40c6cb55, 0xa2df133b, - 0xbbf4200f, 0xebdcf7f9, 00000000 + 0xbbf4200f, 0xebdcf7f9 } }, { { 0xef714b4c, 0xe4443e33, 0x4c05cd47, 0x7946177e, 0x91973941, - 0x3a4f809f, 0xa26fd06b, 00000000 + 0x3a4f809f, 0xa26fd06b }, { 0x9e841330, 0x7e110527, 0x30fa4188, 0x5dc8b8cf, 0xe27f0acc, - 0x7a446613, 0x56b4fd58, 00000000 + 0x7a446613, 0x56b4fd58 }, { 0x8264dfe2, 0x52046eb5, 0x2efee8a8, 0x4d055677, 0x91131448, - 0xa9dc1f0e, 0x677aaf62, 00000000 + 0xa9dc1f0e, 0x677aaf62 } }, { { 0xbd5d2cbe, 0xbd2641be, 0xf3585456, 0xf6436914, 0x4a31f75a, - 0x23c3bf02, 0x23e4a6dd, 00000000 + 0x23c3bf02, 0x23e4a6dd }, { 0x6836ebee, 0x320f8814, 0x1ac1fca7, 0x29aa387a, 0x1be40909, - 0xa0f2de33, 0x3501d247, 00000000 + 0xa0f2de33, 0x3501d247 }, { 0xb95e6818, 0xc18d75b0, 0xf6fb9d27, 0x77f6f63b, 0x5631604a, - 0xd323099, 0xd2719e62, 00000000 + 0xd323099, 0xd2719e62 } }, { { 0xbe63170e, 0xece1c91d, 0x6f524634, 0xddb6485c, 0xf072c0b3, - 0x4190a63, 0x7f1fcd6a, 00000000 + 0x4190a63, 0x7f1fcd6a }, { 0xdbf67795, 0xcdcd65ef, 0x3e7f7038, 0xb9dcc712, 0xa98036d0, - 0xb0d9ff1c, 0xb1904fac, 00000000 + 0xb0d9ff1c, 0xb1904fac }, { 0xae3da3eb, 0xeb13528a, 0x5d6dba00, 0xb489eda8, 0xb336b485, - 0x2570ff5, 0x1cc7c831, 00000000 + 0x2570ff5, 0x1cc7c831 } }, { { 0x730ca2c3, 0x2a96bada, 0xa067f56e, 0xe3c83fe0, 0xb478d8f7, - 0xfdea74cd, 0x635fa0d4, 00000000 + 0xfdea74cd, 0x635fa0d4 }, { 0xae1ba75d, 0xd5b591ad, 0xf56837bf, 0x981c80c2, 0xdf862d03, - 0xab98f2ab, 0x8d4be4d2, 00000000 + 0xab98f2ab, 0x8d4be4d2 }, { 0xbee5f359, 0xd7a7c2f7, 0xc31aa8e, 0x4b229be8, 0x66554918, - 0x20929655, 0x286af782, 00000000 + 0x20929655, 0x286af782 } } }, @@ -23335,211 +23335,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xc71a31fd, 0x86054286, 0x2ac51dc4, 0x8d9e5c67, 0xb025f906, - 0x95b75f9e, 0x4a37784d, 00000000 + 0x95b75f9e, 0x4a37784d }, { 0xca3cd8b0, 0x6bf5d7b8, 0x6f225f81, 0x53e73c07, 0x85d820fa, - 0x29c2297c, 0x2d25dee1, 00000000 + 0x29c2297c, 0x2d25dee1 }, { 0x23d7036b, 0xb28b14e6, 0x6b49d803, 0x846c566b, 0xb4ec8dee, - 0xef89c929, 0xca095590, 00000000 + 0xef89c929, 0xca095590 } }, { { 0xa1385e80, 0x4367bf14, 0x4d6eec4d, 0x13f52313, 0xe48f333e, - 0x5fc8aeb6, 0xeee50d5f, 00000000 + 0x5fc8aeb6, 0xeee50d5f }, { 0x67d7f93f, 0x454f3b6a, 0xa2d284e1, 0xea074b8c, 0x2f1d8a05, - 0xce290d2e, 0x59e02529, 00000000 + 0xce290d2e, 0x59e02529 }, { 0x88206abf, 0x29dac50b, 0x7c49eb95, 0x16a76a84, 0xebc9c1ca, - 0x6b099159, 0xaa1a803b, 00000000 + 0x6b099159, 0xaa1a803b } }, { { 0x5e1e972e, 0xa3eedf7, 0xcb576350, 0x2438ce8, 0x5d6e1337, - 0x3488d07d, 0xddc33ff3, 00000000 + 0x3488d07d, 0xddc33ff3 }, { 0xd7513536, 0x4addfeae, 0x15c7205b, 0x68a2b160, 0xa0a57f24, - 0xdf433630, 0x4146e849, 00000000 + 0xdf433630, 0x4146e849 }, { 0x8d7bd341, 0x21e0514d, 0x3907536a, 0xc56a9807, 0xf78d315a, - 0xa2367a99, 0x913c51fd, 00000000 + 0xa2367a99, 0x913c51fd } }, { { 0x1a3e482b, 0xe13ff0a9, 0xad0f3e59, 0x72d8b583, 0x7af6e1f8, - 0x773ae271, 0x7fcb34ca, 00000000 + 0x773ae271, 0x7fcb34ca }, { 0xa1b14ea0, 0xbaa8520d, 0x4a17ef08, 0x63f564e7, 0xb81c1d01, - 0xdc211586, 0xf8400145, 00000000 + 0xdc211586, 0xf8400145 }, { 0xedac1c2b, 0xc15f2b6f, 0x7779e88, 0xa62a6721, 0xc2c39eb0, - 0x5f9555ab, 0xc82d2214, 00000000 + 0x5f9555ab, 0xc82d2214 } }, { { 0x2f29d651, 0x1c142845, 0xd1b94fd5, 0xec1dd635, 0xf95a68fe, - 0xe40d491f, 0x760488ff, 00000000 + 0xe40d491f, 0x760488ff }, { 0x3ad3a837, 0xff85a21d, 0x73ce0ace, 0x5be89105, 0xa09971bc, - 0xf17fe8d0, 0x319d4cc0, 00000000 + 0xf17fe8d0, 0x319d4cc0 }, { 0xd04f42b9, 0xc923ef1b, 0xe576757f, 0xe6aac753, 0x41353e6e, - 0xd78f116c, 0x3013d0ae, 00000000 + 0xd78f116c, 0x3013d0ae } }, { { 0x79e4a56f, 0xd98c26cf, 0x72612110, 0x70c334f7, 0xb2ceaf5d, - 0x8a0fd711, 0x8ff2b53e, 00000000 + 0x8a0fd711, 0x8ff2b53e }, { 0x174ff915, 0x6e89bb25, 0x5e6c3274, 0x3dd2ae3f, 0x2089978b, - 0x6e04bde8, 0xe045fab1, 00000000 + 0x6e04bde8, 0xe045fab1 }, { 0x8b25e250, 0x9a849739, 0xd6cacfc6, 0xd83b61ce, 0xdf327e7c, - 0x59779143, 0xc95a0709, 00000000 + 0x59779143, 0xc95a0709 } }, { { 0xca569ec5, 0xa54a5d78, 0x44eae894, 0x5adf0ff5, 0xf1c26aee, - 0xf6c5c63e, 0xe21c29ed, 00000000 + 0xf6c5c63e, 0xe21c29ed }, { 0x8a786562, 0x7ecc54a0, 0x953cd46e, 0x73270320, 0x693964c7, - 0x879be4e9, 0xa7b93cd1, 00000000 + 0x879be4e9, 0xa7b93cd1 }, { 0xafa2de8, 0x5a016c4f, 0x3a651612, 0xf3f61444, 0x7916b0c7, - 0x315d0764, 0xe0ffc299, 00000000 + 0x315d0764, 0xe0ffc299 } }, { { 0x44aa3052, 0xdcf4fef5, 0xf3a3a969, 0xf5b0ecad, 0x5470dd76, - 0xc867e1be, 0xdf33bf92, 00000000 + 0xc867e1be, 0xdf33bf92 }, { 0xb142d055, 0xadfc0701, 0x5b262e34, 0xc2ee75fe, 0x5f57814, - 0x703eec74, 0x789d09ea, 00000000 + 0x703eec74, 0x789d09ea }, { 0xc90d0a26, 0x77596837, 0xa690974f, 0x2d9d5d39, 0xd13e7f0b, - 0x87204cf5, 0xb48b1e73, 00000000 + 0x87204cf5, 0xb48b1e73 } }, { { 0xb6a5161b, 0x643e89a9, 0xd9d4dc22, 0xbbc0d28e, 0x5ebb7283, - 0x12e66af8, 0xd17792b7, 00000000 + 0x12e66af8, 0xd17792b7 }, { 0x35c8d7a9, 0xe1a8454f, 0x8d5f04e0, 0x46519e29, 0xb447ad15, - 0x5e0cc11a, 0xf21e6953, 00000000 + 0x5e0cc11a, 0xf21e6953 }, { 0x48895da6, 0xa9e088e0, 0xd663830a, 0xe42fa74b, 0xae498a44, - 0x9dfebb3e, 0x1b3e51ef, 00000000 + 0x9dfebb3e, 0x1b3e51ef } }, { { 0x418c98ef, 0x2f49c29c, 0xa8c1b949, 0x477b937b, 0x44d72785, - 0x764e23e1, 0xb8390208, 00000000 + 0x764e23e1, 0xb8390208 }, { 0x69d8d7de, 0xe3c7f486, 0x15c96d39, 0x8ef1c6ff, 0x72418415, - 0xb5bd0e5b, 0x828d9667, 00000000 + 0xb5bd0e5b, 0x828d9667 }, { 0x3ee8edc6, 0x1fa516f5, 0xbf35eb7f, 0x57f19539, 0x1c94406d, - 0x4842d010, 0x1d6fac1a, 00000000 + 0x4842d010, 0x1d6fac1a } }, { { 0xbfe48967, 0x31f81b4d, 0x385a87ef, 0x1224debf, 0x90ce793b, - 0x3f878c8a, 0xb6ad3bc6, 00000000 + 0x3f878c8a, 0xb6ad3bc6 }, { 0x502d95dd, 0x6be62c04, 0x4bdb6d0c, 0x28a8d055, 0x79a5bda8, - 0xd2e4f9ac, 0xcc34369f, 00000000 + 0xd2e4f9ac, 0xcc34369f }, { 0x450fc10e, 0x4b4483d0, 0xa9d7b8c4, 0x3aa71f32, 0xc990ccdd, - 0xcc5b451, 0x613f3867, 00000000 + 0xcc5b451, 0x613f3867 } }, { { 0x64921811, 0x823a0cb8, 0xaa4c6e78, 0x45b9c100, 0x1500f29, - 0x19bb4178, 0xc1f1c7b8, 00000000 + 0x19bb4178, 0xc1f1c7b8 }, { 0x184c84e7, 0x58b7752f, 0x4abdc637, 0xe2d9a1b2, 0xc83933ef, - 0x9db48fea, 0xb1d49be9, 00000000 + 0x9db48fea, 0xb1d49be9 }, { 0x9bbfdb84, 0x1383e5fd, 0xb21d24fb, 0xbdd3cfff, 0xc6b863bd, - 0xce16f783, 0xc4a76acd, 00000000 + 0xce16f783, 0xc4a76acd } }, { { 0x584026b0, 0x2972fb7, 0x57b77950, 0x7b788bf2, 0x3ec9d870, - 0xce6e6d86, 0xe470038a, 00000000 + 0xce6e6d86, 0xe470038a }, { 0x27aadbaf, 0x25d19df8, 0x16018323, 0x7b697548, 0xe3223b18, - 0xa3e2d8d3, 0x5a0ffcce, 00000000 + 0xa3e2d8d3, 0x5a0ffcce }, { 0xfa3241ca, 0x67c6c806, 0x54234d3a, 0xdb307fcf, 0x666aa54c, - 0x44ff8052, 0x85967aee, 00000000 + 0x44ff8052, 0x85967aee } }, { { 0xbdc35821, 0xc6d5ff4c, 0x82c7ac97, 0x1174e399, 0xed1eef50, - 0xd30b09b1, 0x8d6c5648, 00000000 + 0xd30b09b1, 0x8d6c5648 }, { 0x9f23cff7, 0xac825b62, 0x4e60be6a, 0x9bca808d, 0x1feac601, - 0xd43266db, 0x121af70d, 00000000 + 0xd43266db, 0x121af70d }, { 0x3bd7b112, 0x33f77606, 0x30bf0c7f, 0x282bf914, 0x7507d789, - 0x5aa58586, 0x638b6495, 00000000 + 0x5aa58586, 0x638b6495 } }, { { 0x3ec23598, 0x30a787e0, 0x8b077234, 0xfce7dbe0, 0x6b89c527, - 0x74e8a742, 0xaeca717d, 00000000 + 0x74e8a742, 0xaeca717d }, { 0xa235bc8f, 0x10a7a8ff, 0x88568a7c, 0x2d83c223, 0xd58b8170, - 0x75bd36d, 0x97c84403, 00000000 + 0x75bd36d, 0x97c84403 }, { 0xe18203a9, 0x701fc7c3, 0xa54b8d92, 0xd2b792ab, 0x8d70051f, - 0x8fb312ea, 0x8e7694ad, 00000000 + 0x8fb312ea, 0x8e7694ad } } }, @@ -23547,211 +23547,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x2db4349e, 0x3f46572c, 0x9e5d194a, 0x62407c9, 0xdb13750a, - 0x6e297d80, 0x144c213b, 00000000 + 0x6e297d80, 0x144c213b }, { 0xc74ceb51, 0xfd225526, 0x232f82af, 0xd439c579, 0x8c3aa17b, - 0xc96cbfb9, 0xa7de6d59, 00000000 + 0xc96cbfb9, 0xa7de6d59 }, { 0xe3784ff1, 0x76260f12, 0x6e09e59c, 0x67969a73, 0x239323c1, - 0x96021576, 0x1de22a1f, 00000000 + 0x96021576, 0x1de22a1f } }, { { 0xd2223652, 0xf71fb706, 0xe2cf3efa, 0x681e9fa5, 0xc6fcfbab, - 0x9936e007, 0xc6f48ed8, 00000000 + 0x9936e007, 0xc6f48ed8 }, { 0x4a564f16, 0x11200ea4, 0x967fdcf8, 0x3902c9be, 0x5838500d, - 0x14d538e2, 0xcb8a2826, 00000000 + 0x14d538e2, 0xcb8a2826 }, { 0xc95160d6, 0xe00b036c, 0xe163c1a0, 0x5204e934, 0x85acc245, - 0x835051fa, 0x8b3c0dfe, 00000000 + 0x835051fa, 0x8b3c0dfe } }, { { 0x41e1c2fc, 0xeedbd83e, 0xa833843b, 0xb08fb530, 0x9a2e9696, - 0x8c8ebba0, 0x8667abd7, 00000000 + 0x8c8ebba0, 0x8667abd7 }, { 0xea0b8d17, 0xc065296f, 0x13473d66, 0x2c5ed2ac, 0xc918a443, - 0x89d879ea, 0xaa9359e, 00000000 + 0x89d879ea, 0xaa9359e }, { 0x71f4fad2, 0x5e6aaf0b, 0x1a32b830, 0x29552c6f, 0xd32e37e8, - 0xf1e81215, 0xac5640d5, 00000000 + 0xf1e81215, 0xac5640d5 } }, { { 0x378b67aa, 0x11f83491, 0xe9e303b4, 0x70fc660a, 0x2ba04ccc, - 0x39b5308e, 0xb73543b1, 00000000 + 0x39b5308e, 0xb73543b1 }, { 0x17983c1d, 0x56e87415, 0x36067cdc, 0x811c68a7, 0xdf4f3cd7, - 0x81a37c27, 0x9a29c2e8, 00000000 + 0x81a37c27, 0x9a29c2e8 }, { 0x6e53c688, 0xb0d3eee3, 0x4ce66c97, 0x8b5340df, 0x218460e9, - 0xb7c57e44, 0x628dd0d4, 00000000 + 0xb7c57e44, 0x628dd0d4 } }, { { 0x3e5e08eb, 0xd1c6cfe7, 0x8629a1ae, 0x461f95d, 0x79cf0919, - 0x52d9c01b, 0xb15bb476, 00000000 + 0x52d9c01b, 0xb15bb476 }, { 0xdcf5049c, 0x2939ff83, 0x96efef9f, 0xdb116de8, 0xd42a3996, - 0x1495d834, 0xa3124d13, 00000000 + 0x1495d834, 0xa3124d13 }, { 0xd72aaf96, 0x60df02e3, 0x7a07ddce, 0x95fae727, 0x9a56036d, - 0x64685921, 0x304de463, 00000000 + 0x64685921, 0x304de463 } }, { { 0x18b6740f, 0x5a10b6f8, 0xeb7043e9, 0x28e9a6a2, 0xe0993aa7, - 0x11605e4d, 0x1b223551, 00000000 + 0x11605e4d, 0x1b223551 }, { 0x832a7c91, 0x60b11b43, 0x99dea64f, 0xb8d8b632, 0x6c8bf91b, - 0x1e1fc2ef, 0x8f8f8b81, 00000000 + 0x1e1fc2ef, 0x8f8f8b81 }, { 0x5e4c920f, 0x4296188b, 0x25c25377, 0xf6146c73, 0x20b96080, - 0x6ba6fc9e, 0xb4624457, 00000000 + 0x6ba6fc9e, 0xb4624457 } }, { { 0x5e890de9, 0xa45e5a0b, 0xc6197537, 0xd1ab4918, 0xcf647ccf, - 0x9a4d7bc9, 0x3650144b, 00000000 + 0x9a4d7bc9, 0x3650144b }, { 0x8ad6cba6, 0x6cdec1a8, 0x9867e50d, 0xc15108c4, 0x26c1e55, - 0xf5e7cc3f, 0x8e0afe3e, 00000000 + 0xf5e7cc3f, 0x8e0afe3e }, { 0x6c768d7, 0xea0150dc, 0x377fb887, 0xc6b73d4c, 0xccff4a53, - 0x6bcdea8b, 0xceb6b3a8, 00000000 + 0x6bcdea8b, 0xceb6b3a8 } }, { { 0x71ed46ca, 0x995d692e, 0x6c76859b, 0xc6b9786c, 0xd920387, - 0x42aa0375, 0x32759c09, 00000000 + 0x42aa0375, 0x32759c09 }, { 0x5e7f9f2b, 0x740c9901, 0x70f597d1, 0x46f99441, 0x255e7044, - 0x400c91b, 0x7559ae5c, 00000000 + 0x400c91b, 0x7559ae5c }, { 0x58ba2a89, 0xc180e5b1, 0x58bd8c71, 0x5cd4ab44, 0x6320ae85, - 0xacbdeba6, 0xc3b2388e, 00000000 + 0xacbdeba6, 0xc3b2388e } }, { { 0x22712682, 0xe8838aa6, 0xcfe8a0d, 0x5cdbea4c, 0x91c993f0, - 0x39b6ca7f, 0x4a0cd838, 00000000 + 0x39b6ca7f, 0x4a0cd838 }, { 0x227b690c, 0xf1745674, 0xc6cb9d7e, 0xbbd48013, 0xe8ea40b7, - 0x980b38b5, 0xc6190dc7, 00000000 + 0x980b38b5, 0xc6190dc7 }, { 0x6c257f58, 0x1458f0e7, 0xe8bbfa1f, 0xcfd7867f, 0x5efeffc8, - 0x63fa66c, 0xf156f94a, 00000000 + 0x63fa66c, 0xf156f94a } }, { { 0x13a5afa5, 0x78f0a51a, 0xb48cf9c2, 0x69478443, 0xe601a7ec, - 0x41ed5f24, 0xf5103f39, 00000000 + 0x41ed5f24, 0xf5103f39 }, { 0xc003947f, 0x37214a55, 0x3d284c46, 0xcabb8eed, 0x4c21eb43, - 0xfa317150, 0x6ebd129b, 00000000 + 0xfa317150, 0x6ebd129b }, { 0x955fdad, 0xd88bc8d7, 0xd0018012, 0xa25c26f2, 0xca28a4c9, - 0xc8ca91cf, 0x6bb15c28, 00000000 + 0xc8ca91cf, 0x6bb15c28 } }, { { 0x62cb0c08, 0x31a349d0, 0xe1c9a5c8, 0xc71b63a2, 0x7dc18aef, - 0x632467a1, 0x98e82f64, 00000000 + 0x632467a1, 0x98e82f64 }, { 0xd836f39a, 0x2b90f8aa, 0x94ac6d2a, 0x3e1ab2b5, 0x7efd91cd, - 0x5d945bb4, 0xdc01c49a, 00000000 + 0x5d945bb4, 0xdc01c49a }, { 0x91ba55bf, 0x4d26be74, 0x4a2147b7, 0x61062c30, 0xd8335271, - 0xef7796d4, 0x82ab7898, 00000000 + 0xef7796d4, 0x82ab7898 } }, { { 0xb8eca3fb, 0xbd6350dd, 0xd1666283, 0xf51509e9, 0x7e21fabf, - 0xbf0f7c90, 0x5890d2a1, 00000000 + 0xbf0f7c90, 0x5890d2a1 }, { 0xfe7e105f, 0x1405110, 0xdb87610e, 0xdac5acc2, 0x9c4a27c7, - 0xb751e2c9, 0x30efbbe5, 00000000 + 0xb751e2c9, 0x30efbbe5 }, { 0xa85e3d10, 0x590fe992, 0x9cb0919b, 0xb07be1bd, 0xe4b7a96d, - 0x5721a626, 0x273feae9, 00000000 + 0x5721a626, 0x273feae9 } }, { { 0x115d70c6, 0x81556f95, 0xeb39e3f4, 0xa7df3719, 0x103f7b74, - 0xd6d1be7f, 0xf4bf1985, 00000000 + 0xd6d1be7f, 0xf4bf1985 }, { 0x775a45f7, 0x3eeb5620, 0x145ba0f6, 0x1e842f22, 0xbabe506c, - 0xcb809133, 0x2af501f7, 00000000 + 0xcb809133, 0x2af501f7 }, { 0x139d33bf, 0x4bc886f5, 0x5cd48f37, 0x51039edc, 0xcce20e0c, - 0x48b638ec, 0x7a34f450, 00000000 + 0x48b638ec, 0x7a34f450 } }, { { 0x26eaecf0, 0xe008fe2c, 0xd557bc1e, 0x18e88e25, 0xaebc6a90, - 0xd89a3614, 0x82ad371f, 00000000 + 0xd89a3614, 0x82ad371f }, { 0x74c2264e, 0xc6d37c84, 0x105d70a8, 0x9659d195, 0xf7186e5c, - 0xef9ef75a, 0xdfb4d0be, 00000000 + 0xef9ef75a, 0xdfb4d0be }, { 0xfb231fad, 0x3e23e2b9, 0xa42777a6, 0x24141c27, 0x918d38da, - 0x95abb665, 0x97bffe57, 00000000 + 0x95abb665, 0x97bffe57 } }, { { 0x5a9fc42f, 0xc6550780, 0x8e640b47, 0xbdcaec0d, 0xe8cd0cf4, - 0xaaf60511, 0xb62049f4, 00000000 + 0xaaf60511, 0xb62049f4 }, { 0xfdf81fce, 0x817417b1, 0x432a1fb3, 0x51bf56c7, 0x7ec9b984, - 0xa7acf1f6, 0xc577559e, 00000000 + 0xa7acf1f6, 0xc577559e }, { 0x88e510ec, 0xf3e90c40, 0xdb1ae1c8, 0x3b21eb1f, 0xf8e06651, - 0x93ce5b8, 0xa68e7bb, 00000000 + 0x93ce5b8, 0xa68e7bb } } }, @@ -23759,211 +23759,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x9bbcd426, 0x79cfe0d7, 0x6f138966, 0x23136d3c, 0xf1bcc68b, - 0xa32e34f3, 0xae309094, 00000000 + 0xa32e34f3, 0xae309094 }, { 0xc8fa2a61, 0x9cf09cc5, 0x91284670, 0x7595f879, 0x4320d04f, - 0xbb99a366, 0xf8242f7, 00000000 + 0xbb99a366, 0xf8242f7 }, { 0x9f40ba0e, 0x1af48f84, 0x7416d178, 0x56a796e4, 0x32f1c8bc, - 0x8adf3c3b, 0x1a44e83c, 00000000 + 0x8adf3c3b, 0x1a44e83c } }, { { 0x766c1f68, 0x4d85c5f1, 0xfd3ef2d7, 0xb62979e6, 0x6a32cc4b, - 0x5351e0bd, 0xc6377314, 00000000 + 0x5351e0bd, 0xc6377314 }, { 0xed63160d, 0x14bb21d9, 0x5618ab30, 0x17a49868, 0x2b59a158, - 0x84ab633c, 0xc750b124, 00000000 + 0x84ab633c, 0xc750b124 }, { 0x908259ad, 0x82682aa7, 0xd51817b8, 0x211db562, 0xeded3732, - 0x1f7e90b1, 0xabc5ba3e, 00000000 + 0x1f7e90b1, 0xabc5ba3e } }, { { 0xc0cb9dc8, 0xdd79af2c, 0xf26e8776, 0x8278b77a, 0x6d47a1b8, - 0xb8b41849, 0xc902ccee, 00000000 + 0xb8b41849, 0xc902ccee }, { 0x18f243dd, 0xf05c4ce7, 0x417fc1bd, 0x4f1961ef, 0xc71635f5, - 0x76291aa6, 0xc4cb830a, 00000000 + 0x76291aa6, 0xc4cb830a }, { 0x2a661bee, 0x5d85c4c8, 0xe13445f6, 0xdaece888, 0x5f5bea88, - 0x682a79e5, 0x39422c13, 00000000 + 0x682a79e5, 0x39422c13 } }, { { 0xe1ebd83f, 0xf18d5fbd, 0xe81b3457, 0xf15a23f8, 0xae81e844, - 0x7cbee206, 0x4742d2f0, 00000000 + 0x7cbee206, 0x4742d2f0 }, { 0x4a360cbd, 0x4e0e87a6, 0x21ca0f79, 0x44594be8, 0xdadfc463, - 0xfc03cdfb, 0x44227fe2, 00000000 + 0xfc03cdfb, 0x44227fe2 }, { 0xee5d4a0b, 0x3ade6ae3, 0xef53577e, 0xfca00ae, 0x7778594f, - 0xf343126f, 0xba90dfd9, 00000000 + 0xf343126f, 0xba90dfd9 } }, { { 0xfa98be04, 0x3cca6fe, 0x6fea7f9d, 0x61a85550, 0x5ea508bf, - 0x627ee988, 0x7c9c7b24, 00000000 + 0x627ee988, 0x7c9c7b24 }, { 0x7e55c814, 0x30846f83, 0xde079ef0, 0x6a0c31d3, 0x24b5a28f, - 0x4d971623, 0x87afd75e, 00000000 + 0x4d971623, 0x87afd75e }, { 0xb12cbb90, 0x80fabfc5, 0x75109d85, 0xca9fafc5, 0x6cca9359, - 0xcdca6005, 0x7847c3a8, 00000000 + 0xcdca6005, 0x7847c3a8 } }, { { 0x6e937090, 0x3afb8ab9, 0x56e7520f, 0xc3315f3f, 0xcaaa765e, - 0xf71c37c, 0x31562ae8, 00000000 + 0xf71c37c, 0x31562ae8 }, { 0x22d30bb5, 0xb160d188, 0x1ab9261d, 0x31c7bad1, 0x3da5b304, - 0xa7b46a9f, 0x62ab8cdc, 00000000 + 0xa7b46a9f, 0x62ab8cdc }, { 0x8f8d87ac, 0xae2f4991, 0x65e3b2d5, 0x1effdab, 0x2f8c86a4, - 0x930a5a8, 0x28e67c56, 00000000 + 0x930a5a8, 0x28e67c56 } }, { { 0xf16c5d97, 0x56017ee5, 0x23aeb45, 0x694efd31, 0xcdc9018d, - 0x55b66a22, 0x4d1b3715, 00000000 + 0x55b66a22, 0x4d1b3715 }, { 0xa953e117, 0x49db339b, 0x2b5e4fda, 0xac695d63, 0x590ad8b0, - 0x9ee60cf6, 0x9afc097c, 00000000 + 0x9ee60cf6, 0x9afc097c }, { 0x56c7b497, 0x6ad018da, 0x5fc0936d, 0xe8084469, 0xc3ccdb4e, - 0x99c3b0e2, 0xf98a1230, 00000000 + 0x99c3b0e2, 0xf98a1230 } }, { { 0xc0f393b3, 0xfcd29353, 0xd06e70e1, 0x25b21519, 0xe8a1fbe8, - 0x524568bf, 0x8078778d, 00000000 + 0x524568bf, 0x8078778d }, { 0xa9473a97, 0xd88eb40f, 0xe718f1ed, 0x5208c8ba, 0x838a4683, - 0xf8ab5472, 0x79b368d9, 00000000 + 0xf8ab5472, 0x79b368d9 }, { 0xdc78e9d, 0xa6516025, 0x829dd021, 0x5660778d, 0x21788229, - 0x42a7caee, 0xfd5d9992, 00000000 + 0x42a7caee, 0xfd5d9992 } }, { { 0x8e8e6d34, 0xa8ad460f, 0x2930567d, 0xb45c6490, 0x1460dd91, - 0x29c7e481, 0x9551451f, 00000000 + 0x29c7e481, 0x9551451f }, { 0xf655f294, 0xd6a592d8, 0x7098bc7b, 0x8cef6404, 0x247d8024, - 0x23ae6b1e, 0x695bbc6e, 00000000 + 0x23ae6b1e, 0x695bbc6e }, { 0x5b10c315, 0x5cb6a6fa, 0xd6a128d3, 0xfd9d8285, 0x9de72147, - 0x3ef3ca68, 0x95c461b, 00000000 + 0x3ef3ca68, 0x95c461b } }, { { 0xf6401639, 0x1e6948bc, 0x8a9d7d99, 0x4a079753, 0x18f46a03, - 0x5d3e6e3a, 0x1da5bc43, 00000000 + 0x5d3e6e3a, 0x1da5bc43 }, { 0x184fbd8b, 0xee404f15, 0x20ff21b9, 0x8363ccfe, 0x1c3deca8, - 0x89c560e4, 0xdb00c090, 00000000 + 0x89c560e4, 0xdb00c090 }, { 0xa7853a99, 0x8a57145a, 0x1bb3b75c, 0xb5603fc3, 0x95b3793f, - 0xcd90ce3b, 0x326321b0, 00000000 + 0xcd90ce3b, 0x326321b0 } }, { { 0x9c26feb6, 0x2b2c4274, 0x7c929ccb, 0x5bbc5fbe, 0xbbac2619, - 0x290742ec, 0xa6d8a74c, 00000000 + 0x290742ec, 0xa6d8a74c }, { 0x3fd3309e, 0xcca454f1, 0x4a3cbc6e, 0x7fe21e63, 0xdaae41f4, - 0x4aa0a1e6, 0x78c6e175, 00000000 + 0x4aa0a1e6, 0x78c6e175 }, { 0xb63d347b, 0x1fdeaaad, 0x7cad4676, 0x9acccbb8, 0x4e8eac63, - 0xb1314727, 0x570fea7b, 00000000 + 0xb1314727, 0x570fea7b } }, { { 0xc67ae17e, 0x62831cb4, 0xab535e11, 0x35dbd69c, 0x1c97c386, - 0xa21aa059, 0xc3c035d4, 00000000 + 0xa21aa059, 0xc3c035d4 }, { 0x55c2256e, 0xbb558144, 0x4e531be6, 0x5b19b282, 0xb76956d0, - 0xae816290, 0x825f4e00, 00000000 + 0xae816290, 0x825f4e00 }, { 0xede93cd8, 0x11c14a3a, 0x89f8998d, 0xb201199f, 0x286accd3, - 0xfc50e81b, 0x9cdc2b67, 00000000 + 0xfc50e81b, 0x9cdc2b67 } }, { { 0xaa8569be, 0x3d35f86d, 0x54519247, 0x1957fb94, 0x955df042, - 0x90a872b0, 0x26aea1e1, 00000000 + 0x90a872b0, 0x26aea1e1 }, { 0xe2be6c47, 0xed3df04d, 0xd167f764, 0xb51e9705, 0x23941c59, - 0xe6042465, 0xe294acbd, 00000000 + 0xe6042465, 0xe294acbd }, { 0x43e9aa80, 0xbb6e7b48, 0x3d8cb50, 0xadcaf527, 0xa864dad9, - 0xcdff44ff, 0x78a5286d, 00000000 + 0xcdff44ff, 0x78a5286d } }, { { 0xb5b0a6ba, 0x63d987eb, 0x497e4163, 0x8034da6e, 0x1ddd044d, - 0x8ed75241, 0xcac72a55, 00000000 + 0x8ed75241, 0xcac72a55 }, { 0xa660175f, 0x8c28a9f9, 0xb6aef890, 0xfce298eb, 0xc1d8ca65, - 0x9ccca3a2, 0xd2607ad1, 00000000 + 0x9ccca3a2, 0xd2607ad1 }, { 0xaeeadd77, 0xc4dc49df, 0xaf9c7bd4, 0xc5767979, 0xe4ae516f, - 0x68bd536c, 0xa0da52f6, 00000000 + 0x68bd536c, 0xa0da52f6 } }, { { 0xa5cfd86a, 0xe9a1cfa3, 0xe0c89b92, 0x9c6a910f, 0x6cb84f26, - 0xbb640a01, 0x6f0b42d9, 00000000 + 0xbb640a01, 0x6f0b42d9 }, { 0x55820ca9, 0x62033cc9, 0xe8533431, 0x6f8157d4, 0xa90134db, - 0x8372c336, 0x1f283284, 00000000 + 0x8372c336, 0x1f283284 }, { 0xbc2ef97b, 0xe760bf9d, 0x7529f47, 0x9666144e, 0x53011311, - 0x59189666, 0x863cb629, 00000000 + 0x59189666, 0x863cb629 } } }, @@ -23971,211 +23971,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x509f70ea, 0x3fd4144e, 0xd007a12, 0x5711c75f, 0x137796ef, - 0xcd81cb23, 0x270efa5b, 00000000 + 0xcd81cb23, 0x270efa5b }, { 0x5b5f344c, 0xeb40367f, 0xce9405, 0xbc5f17f6, 0xf9bdfdb7, - 0x615923c4, 0xc15a4c3f, 00000000 + 0x615923c4, 0xc15a4c3f }, { 0x6f1a53cb, 0xcb453e03, 0x89026595, 0x2b6c2234, 0x9ec7fff5, - 0x273dc14, 0x5f971995, 00000000 + 0x273dc14, 0x5f971995 } }, { { 0x11ced5a3, 0x9c94acf, 0x5fbb6d16, 0x35b9b01d, 0xa8959563, - 0x93b9f3ea, 0xe2082fbd, 00000000 + 0x93b9f3ea, 0xe2082fbd }, { 0x93b7b15e, 0x516201d5, 0x535a6b5c, 0x6dab3551, 0x60cb404e, - 0xb470c62, 0x51695ce7, 00000000 + 0xb470c62, 0x51695ce7 }, { 0xe28c7122, 0xc7b521c1, 0x6e581169, 0x6676e2ae, 0xe01e904, - 0x73903893, 0xedd3fc05, 00000000 + 0x73903893, 0xedd3fc05 } }, { { 0x6452073d, 0xe5139e7d, 0x798b445a, 0x68b6ca50, 0xc34026b9, - 0x8d1c2860, 0x8c50d3a5, 00000000 + 0x8d1c2860, 0x8c50d3a5 }, { 0x77992394, 0xc24ba52, 0x763135a1, 0xbc2284e0, 0xeb870346, - 0x91aee62d, 0xb5745757, 00000000 + 0x91aee62d, 0xb5745757 }, { 0xdc9dd477, 0x85f76d44, 0xbeeeea32, 0xc3ab5de3, 0xbb247ee5, - 0xbe4690f1, 0x5e99fc7b, 00000000 + 0xbe4690f1, 0x5e99fc7b } }, { { 0x8748e59f, 0x7643487d, 0xdb1f4f75, 0x2c3f2616, 0x12371b4d, - 0xa3fd15ae, 0xf0811672, 00000000 + 0xa3fd15ae, 0xf0811672 }, { 0xac2a2050, 0xa369e32f, 0x36b77aa2, 0xfbdf48ac, 0xf896bde2, - 0x19851603, 0xb2c979e5, 00000000 + 0x19851603, 0xb2c979e5 }, { 0xba7be0d9, 0x68324321, 0xd838e0d, 0x90c3f6f6, 0xa4f484e8, - 0x7ce4c3ae, 0x90844327, 00000000 + 0x7ce4c3ae, 0x90844327 } }, { { 0xabefeecb, 0xf7f6b8d7, 0xc3fbecba, 0x290173be, 0xf64b778, - 0xc2e67e2b, 0x82e86665, 00000000 + 0xc2e67e2b, 0x82e86665 }, { 0xd60fb6b0, 0x715b5ca7, 0xfecfd5f5, 0x17f4a890, 0x14390151, - 0xf39c9a5, 0x4ede4ec2, 00000000 + 0xf39c9a5, 0x4ede4ec2 }, { 0x9cf305d6, 0x60bea559, 0x8002bd63, 0x8596aad5, 0x9a1b9548, - 0x7befe453, 0xfa5850d9, 00000000 + 0x7befe453, 0xfa5850d9 } }, { { 0x548d8c0f, 0x9f7a3661, 0x489abda5, 0xc747550f, 0xf7121363, - 0x74b1db99, 0xd629bdef, 00000000 + 0x74b1db99, 0xd629bdef }, { 0x400dd057, 0x6d1086e7, 0xf8b0936b, 0xc39c37df, 0x69ba5791, - 0xca15c501, 0xea38cf8f, 00000000 + 0xca15c501, 0xea38cf8f }, { 0x3ef9fbd1, 0x818e24a0, 0xa492fda5, 0xcd399f70, 0x100dd184, - 0x2557ecd0, 0x1a4810cd, 00000000 + 0x2557ecd0, 0x1a4810cd } }, { { 0xf0e58722, 0x68ac0ad8, 0x3ef3955, 0x4d9f8ea8, 0x5c480df3, - 0x402f3363, 0xdfb4ca4e, 00000000 + 0x402f3363, 0xdfb4ca4e }, { 0x71b7687a, 0x4cd9b2c, 0xa0afae4f, 0xdc502d0c, 0x9363eae2, - 0x64a86051, 0x2cead5da, 00000000 + 0x64a86051, 0x2cead5da }, { 0x8edc62ff, 0x70514e61, 0xe781d324, 0x49fd9e7c, 0x9312bb5f, - 0xcd10b732, 0xaddd766b, 00000000 + 0xcd10b732, 0xaddd766b } }, { { 0xc86501f0, 0x59fbaef7, 0x65ca1a5a, 0x64de59a1, 0x1f2e894e, - 0x23c1074a, 0x75f334b6, 00000000 + 0x23c1074a, 0x75f334b6 }, { 0xe971fe06, 0xb8c46db3, 0x5b24ccae, 0x6b139396, 0xae77d8f4, - 0x3268ebeb, 0x185ed55c, 00000000 + 0x3268ebeb, 0x185ed55c }, { 0x60f0b6d2, 0xb0e227f7, 0xe9f103c6, 0x72d60cbc, 0x1908a2e5, - 0x665f5305, 0xa27cc62a, 00000000 + 0x665f5305, 0xa27cc62a } }, { { 0x4560d305, 0x4d6b68d8, 0x773a8bc1, 0x5e20afe6, 0x125c8466, - 0xedc39c72, 0xebf5f76d, 00000000 + 0xedc39c72, 0xebf5f76d }, { 0x58cc1209, 0x8ad36e67, 0x1e8ab25, 0xce07816a, 0x847e65c2, - 0x4b7c134e, 0xc0204769, 00000000 + 0x4b7c134e, 0xc0204769 }, { 0xcbc8bfa4, 0xabbc444f, 0xc944e269, 0xe0265bd3, 0x8951a25c, - 0x39fd1c37, 0x56d80722, 00000000 + 0x39fd1c37, 0x56d80722 } }, { { 0x2e917fdb, 0xef6a8c1d, 0xb3af1b66, 0x8d8d2830, 0x9608c5af, - 0x182f937f, 0x26365686, 00000000 + 0x182f937f, 0x26365686 }, { 0x537ae023, 0x1bc7fc91, 0x3dd1e74d, 0xfeb15fc1, 0xa65774e3, - 0xb083775e, 0x88c62466, 00000000 + 0xb083775e, 0x88c62466 }, { 0x62d603f4, 0x57fed05, 0x1facc045, 0x455da110, 0x6d1d6480, - 0xb8a776a8, 0x58ed67f0, 00000000 + 0xb8a776a8, 0x58ed67f0 } }, { { 0xddcf2ba1, 0x8a9da9c9, 0x59daa939, 0x97850938, 0x203cf78d, - 0x1c315548, 0xe1bda86d, 00000000 + 0x1c315548, 0xe1bda86d }, { 0x4c88ab23, 0x680ba391, 0xb547be43, 0x1ee900, 0x2418ccc6, - 0x1abe1b37, 0xf75baa91, 00000000 + 0x1abe1b37, 0xf75baa91 }, { 0xc405a4b6, 0x5ead336f, 0x502fc731, 0x280184d3, 0x5f7a9281, - 0xf74a833a, 0x95b6da00, 00000000 + 0xf74a833a, 0x95b6da00 } }, { { 0x70c6883d, 0xadef308c, 0x928b3ed6, 0xfb6b7065, 0xa8196bb2, - 0x6f0ab9b3, 0xf1f801c6, 00000000 + 0x6f0ab9b3, 0xf1f801c6 }, { 0x5237f429, 0xf0ae341f, 0x28869975, 0xd41bd1e5, 0x33883418, - 0x7ed0a0ad, 0x1949c159, 00000000 + 0x7ed0a0ad, 0x1949c159 }, { 0xcdd83e18, 0xf2f724d5, 0x28842c3a, 0x33ebfc3e, 0x12126489, - 0x32a57ca9, 0x657f3ba0, 00000000 + 0x32a57ca9, 0x657f3ba0 } }, { { 0x9b100d7f, 0x521a0e00, 0xd517a84b, 0x5b0f0b03, 0xa8ad936f, - 0xf2fdc2f2, 0x1ad66c52, 00000000 + 0xf2fdc2f2, 0x1ad66c52 }, { 0x5c86bb42, 0x5d345093, 0xcb62be2d, 0x1caa7732, 0xfcab7c67, - 0xb2efe62c, 0xd48a9ea8, 00000000 + 0xb2efe62c, 0xd48a9ea8 }, { 0xfdfaf5df, 0x43a6710a, 0xdeae47b2, 0x2944561e, 0xcddfb563, - 0x1c73f457, 0xd867e063, 00000000 + 0x1c73f457, 0xd867e063 } }, { { 0xabf56761, 0xca4d548, 0xb47e3f92, 0xa020975, 0xd98da1c2, - 0x6bb2b3d9, 0x25b9cd41, 00000000 + 0x6bb2b3d9, 0x25b9cd41 }, { 0x66d8ee11, 0xaaba38d7, 0xe59e9fc0, 0x321fa51, 0xce2aefa6, - 0x6f9fefa2, 0xe10a97cb, 00000000 + 0x6f9fefa2, 0xe10a97cb }, { 0x1f545c84, 0xdfecdb3f, 0x77516da5, 0x98fb73cb, 0x78301500, - 0xb1bb9f79, 0xe07e9a73, 00000000 + 0xb1bb9f79, 0xe07e9a73 } }, { { 0xefb3b7b5, 0x4f0c9381, 0x7333a0a1, 0x77435432, 0x607fe834, - 0x5ed659b8, 0xad04d0b7, 00000000 + 0x5ed659b8, 0xad04d0b7 }, { 0xdd96b408, 0xee17ea3b, 0x1eae4bca, 0x31100bee, 0xa282814c, - 0xbe21382f, 0x80a00b85, 00000000 + 0xbe21382f, 0x80a00b85 }, { 0x58d0fb47, 0x871d37c7, 0xaed0cc52, 0xcc7a6811, 0x654baf04, - 0x3fc10e85, 0x2e1a5e7e, 00000000 + 0x3fc10e85, 0x2e1a5e7e } } }, @@ -24183,211 +24183,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xfba752e3, 0xa81813a3, 0x5117a0cc, 0xb75c0700, 0x8e658c95, - 0x5de09a61, 0x637438ea, 00000000 + 0x5de09a61, 0x637438ea }, { 0x4b7f4109, 0x8de5d69d, 0x8358cbbf, 0xb9d994f5, 0x28d40f01, - 0xa7fbfc71, 0x7a8cdf74, 00000000 + 0xa7fbfc71, 0x7a8cdf74 }, { 0xf81858, 0x7c6032b8, 0x8c31cb2, 0xc48bfe5b, 0xdcc0dc1d, - 0xd416fe98, 0xfcffd0f5, 00000000 + 0xd416fe98, 0xfcffd0f5 } }, { { 0xe7cc008f, 0x44ebb16a, 0x4878d3d4, 0x7c39eff4, 0xc0af7128, - 0x5638633a, 0x1aecfc0b, 00000000 + 0x5638633a, 0x1aecfc0b }, { 0x48cb97fa, 0xdff8c6a6, 0x77e80e3b, 0x266094cb, 0xa4cf7500, - 0x8e29bcd5, 0x7677e330, 00000000 + 0x8e29bcd5, 0x7677e330 }, { 0x7a0786f7, 0xfb058294, 0x4bdfefd4, 0x3bc29a52, 0x59f85d63, - 0x21455673, 0x91f4ae4b, 00000000 + 0x21455673, 0x91f4ae4b } }, { { 0x97103a75, 0x1d8ab1e3, 0x18ed837b, 0x8cb0b62a, 0xc72a3d69, - 0x3d39c702, 0xcaea0c07, 00000000 + 0x3d39c702, 0xcaea0c07 }, { 0x3db68e60, 0xaaf1770e, 0xaa934dcd, 0xa6283f2e, 0xe144ed73, - 0xfc3b26d2, 0x29ad1da5, 00000000 + 0xfc3b26d2, 0x29ad1da5 }, { 0xaeb8e78e, 0x44f5b445, 0x1c4b0578, 0xb8230dd2, 0x6f0281c4, - 0xffeaf1, 0xfebdb0a8, 00000000 + 0xffeaf1, 0xfebdb0a8 } }, { { 0x3e027e39, 0x249b9b97, 0x4052cf8b, 0xa7e89c00, 0xd9fe2a78, - 0x96371d5, 0x893dbe47, 00000000 + 0x96371d5, 0x893dbe47 }, { 0xce878a38, 0xf5b3dbb3, 0x3ec68765, 0xf3b9d7db, 0x43ed0d03, - 0xcc0e840b, 0x78d76405, 00000000 + 0xcc0e840b, 0x78d76405 }, { 0x2814a696, 0x83a516cf, 0xb114b7a4, 0x5f48a49b, 0xeb0966e5, - 0xb555d2b2, 0x938ee32f, 00000000 + 0xb555d2b2, 0x938ee32f } }, { { 0xe19bccbc, 0xb7f03e01, 0xe3890549, 0x91f80672, 0x8b92da1f, - 0x94c38593, 0xa307738d, 00000000 + 0x94c38593, 0xa307738d }, { 0x80ecac85, 0xaa7d07ce, 0x2ad1ddb6, 0x69bee1a5, 0x2afc2251, - 0xe523ee9e, 0x4d5750bc, 00000000 + 0xe523ee9e, 0x4d5750bc }, { 0xcecb7c9, 0x53e6bab7, 0xeae96d9d, 0x60c03753, 0x84dc2c93, - 0x96e16617, 0xd1159ba5, 00000000 + 0x96e16617, 0xd1159ba5 } }, { { 0x9761d951, 0x7ff0308a, 0x117f42cc, 0xdcefc027, 0xca368fb6, - 0xa62768be, 0x45974495, 00000000 + 0xa62768be, 0x45974495 }, { 0x51e4d1d4, 0x9f22063d, 0x2d5e07a8, 0x262802e9, 0x95a480bc, - 0x3125ba7, 0x18d8682b, 00000000 + 0x3125ba7, 0x18d8682b }, { 0x32cd3c98, 0x69c97815, 0xb2a1e2f3, 0xe720e43a, 0xff97d40d, - 0x763a636e, 0xe0d9f872, 00000000 + 0x763a636e, 0xe0d9f872 } }, { { 0xe34dd98, 0x15b670b5, 0x9918de1b, 0x1fed8a86, 0x71ec4372, - 0x50a575d2, 0x8b4637cb, 00000000 + 0x50a575d2, 0x8b4637cb }, { 0x61794b44, 0xdb584e12, 0x44c827f0, 0xc7dbd256, 0x5252ed4e, - 0xa4048ab, 0xfeda0027, 00000000 + 0xa4048ab, 0xfeda0027 }, { 0xa3ece51e, 0x71000e8, 0xfbe39508, 0xf38bbe6d, 0xd931a2ca, - 0x70ee0920, 0xf687b190, 00000000 + 0x70ee0920, 0xf687b190 } }, { { 0xcfec1351, 0x6ff70aab, 0xa13c8e76, 0xbf078465, 0x6a2ca20f, - 0xc94d293a, 0xf2999d53, 00000000 + 0xc94d293a, 0xf2999d53 }, { 0x7f8f4a09, 0xc28427d0, 0x2183e66b, 0x1494fbed, 0x29d3d04e, - 0x39b8bee1, 0x881b4ee1, 00000000 + 0x39b8bee1, 0x881b4ee1 }, { 0x2c17ac32, 0x2d0b857a, 0x622e36c5, 0xc93f0c38, 0xffd2f53b, - 0xc6dc430, 0xadb47254, 00000000 + 0xc6dc430, 0xadb47254 } }, { { 0xfc450042, 0xc9a94e7e, 0x4363b762, 0x9235554f, 0xbd83af7e, - 0x7c22687d, 0x18cb6a44, 00000000 + 0x7c22687d, 0x18cb6a44 }, { 0x8c9937e8, 0x56e1b5e6, 0x41123d53, 0xe8ab53dd, 0x2b70829a, - 0x2dfdc49d, 0x6b0b9b82, 00000000 + 0x2dfdc49d, 0x6b0b9b82 }, { 0x93f79acd, 0xe1c8c147, 0xc47213a3, 0x2b5056e4, 0x625167c1, - 0xec1ed7f, 0x9df52891, 00000000 + 0xec1ed7f, 0x9df52891 } }, { { 0x2091e10d, 0x4b2e4667, 0xb71fd9bd, 0x520c8227, 0x9ea59383, - 0x5bbf6579, 0x96b50c84, 00000000 + 0x5bbf6579, 0x96b50c84 }, { 0xcbf4bd03, 0xed674b49, 0x6e4821ae, 0x52c84fb0, 0x587b17d7, - 0x7e64c9b6, 0xe9024851, 00000000 + 0x7e64c9b6, 0xe9024851 }, { 0x273b1b0f, 0xd5906b2a, 0xf1a55538, 0xaae99495, 0xb9871cc2, - 0x85f20b4e, 0xd80db0c3, 00000000 + 0x85f20b4e, 0xd80db0c3 } }, { { 0x26ac20c5, 0x53ca8cc1, 0x1d58b6d2, 0x42986158, 0x449e99a, - 0xec299506, 0xbd6f12b6, 00000000 + 0xec299506, 0xbd6f12b6 }, { 0x1387f4fa, 0xad175492, 0x94ba8de4, 0xab20eb56, 0x4bb26739, - 0x220a042a, 0x61ff9356, 00000000 + 0x220a042a, 0x61ff9356 }, { 0x22a2c5a3, 0x31fa5a30, 0x9a946cde, 0x100f0e7b, 0x8571ae34, - 0x95d031c8, 0xf0fcbf5f, 00000000 + 0x95d031c8, 0xf0fcbf5f } }, { { 0x3caa03ba, 0xaf234efd, 0x61c82bde, 0x52be3e5a, 0x6d37dbfe, - 0xeb072bdf, 0xfde9d533, 00000000 + 0xeb072bdf, 0xfde9d533 }, { 0x30a1c603, 0xd27d7ed9, 0x9a446d01, 0x2eefb9db, 0xbd1efe2f, - 0x3c891588, 0xa7ae3d88, 00000000 + 0x3c891588, 0xa7ae3d88 }, { 0xd6bb9e94, 0x9ef6d862, 0x9fb6ad7, 0xac1f6ff2, 0x9deabab7, - 0x8414df35, 0xeb9351a8, 00000000 + 0x8414df35, 0xeb9351a8 } }, { { 0x2b8458ca, 0x3805ee52, 0xad62b9b9, 0x5583838b, 0xf3c9f7fb, - 0xb223c0dc, 0x4ea685c1, 00000000 + 0xb223c0dc, 0x4ea685c1 }, { 0x79d43d57, 0x5c247860, 0x9ecd1adc, 0xcafbccbe, 0x2bfed76e, - 0x76338730, 0xd4d8e7f0, 00000000 + 0x76338730, 0xd4d8e7f0 }, { 0xdde1a186, 0x5fc77c01, 0x8892a876, 0x160648b4, 0xc5f213fa, - 0x622f013b, 0xdcb3e8c1, 00000000 + 0x622f013b, 0xdcb3e8c1 } }, { { 0xb5aca3aa, 0xf1e78266, 0x54646f7f, 0xef6ee676, 0xc9c6314, - 0x99a9d227, 0xf47a0880, 00000000 + 0x99a9d227, 0xf47a0880 }, { 0xbc4a2578, 0x7f1cc666, 0x52d50a3e, 0xd2a0d3fb, 0xb412d1f9, - 0xe7713234, 0x6c3e5030, 00000000 + 0xe7713234, 0x6c3e5030 }, { 0x6616d963, 0xe65b2e64, 0xe0d358a8, 0xc4acb4b1, 0x8bdc3dac, - 0x892c7d6, 0x3bb5476e, 00000000 + 0x892c7d6, 0x3bb5476e } }, { { 0x8060f54e, 0x3236dd05, 0xe0927824, 0xbc8ee315, 0x49d6fa8e, - 0xe5f64db5, 0x4d69b6c3, 00000000 + 0xe5f64db5, 0x4d69b6c3 }, { 0x7ce7c6c5, 0x28272d05, 0xf4406c8d, 0x2df702ff, 0xb8716807, - 0xcae3573a, 0xb4f88850, 00000000 + 0xcae3573a, 0xb4f88850 }, { 0x8442096, 0x641f64db, 0xc50a2e74, 0xe51487a2, 0x9210509c, - 0x4ab22696, 0x989b8ae1, 00000000 + 0x4ab22696, 0x989b8ae1 } } }, @@ -24395,211 +24395,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xd358c2a8, 0xf7ef885c, 0xc0e24d85, 0x7d5cddbc, 0x9a867678, - 0x41a69aa7, 0x5a03f493, 00000000 + 0x41a69aa7, 0x5a03f493 }, { 0xf3d19b97, 0xaa82be6e, 0x4a936e17, 0xd1232b05, 0xa1f5fe33, - 0x9774be19, 0x8159a53f, 00000000 + 0x9774be19, 0x8159a53f }, { 0x5bf52e1, 0x74429448, 0xeb2de4eb, 0x2553b828, 0xa369c10b, - 0xaa3457e0, 0x438a4765, 00000000 + 0xaa3457e0, 0x438a4765 } }, { { 0xc9aac8b8, 0xd2a68b05, 0x727b7178, 0x8ca89e87, 0x97a96b3, - 0x5c414d3a, 0xc9c887b6, 00000000 + 0x5c414d3a, 0xc9c887b6 }, { 0x5759cb3b, 0xebffb7ab, 0xbfc87522, 0x4d7892e4, 0xfca68255, - 0xb178487b, 0xd65c5f76, 00000000 + 0xb178487b, 0xd65c5f76 }, { 0x850c0d2, 0x4286dae3, 0xce0b3d08, 0x4e7cca7c, 0xcc80605, - 0x49b7252a, 0x837e9caa, 00000000 + 0x49b7252a, 0x837e9caa } }, { { 0xcd10e8e5, 0xc3fc5d5, 0xa775467a, 0x4157e509, 0xf7dbe4f6, - 0xff9130b8, 0xd6c2cb5a, 00000000 + 0xff9130b8, 0xd6c2cb5a }, { 0xeb93a4a6, 0x3cb44aac, 0xce897328, 0xe632b6e3, 0xf168a07a, - 0x4a864813, 0xe39cd385, 00000000 + 0x4a864813, 0xe39cd385 }, { 0xd4980031, 0x53acf4a1, 0xdab899b6, 0xb2b53f22, 0x46a756d0, - 0x16d8efb1, 0xd5e34718, 00000000 + 0x16d8efb1, 0xd5e34718 } }, { { 0x6c61dc5b, 0x33af1049, 0x7f05caa3, 0xd5b0afc4, 0x603510b1, - 0xe3cf0587, 0xb61c4a4c, 00000000 + 0xe3cf0587, 0xb61c4a4c }, { 0x38478db, 0x5d1b7b6d, 0xd93c66c7, 0xfcf95eae, 0xbfb443dd, - 0x49a48f2a, 0x21e23689, 00000000 + 0x49a48f2a, 0x21e23689 }, { 0x74b0cfbd, 0xd2ae5838, 0xdb856aa5, 0xed493e70, 0xf1a0b35d, - 0xf392bb89, 0x181181a3, 00000000 + 0xf392bb89, 0x181181a3 } }, { { 0x271e793a, 0xd4cbc5a0, 0x3f74950d, 0x8aa70266, 0xd01be077, - 0xa42a6d21, 0xf8ae3b23, 00000000 + 0xa42a6d21, 0xf8ae3b23 }, { 0x4f291000, 0x57b04cbb, 0x6e57ebf6, 0x97baf522, 0x6b2065cc, - 0x47007ea6, 0x2a07af9e, 00000000 + 0x47007ea6, 0x2a07af9e }, { 0xceae9ff6, 0x5e4ae4a2, 0x9503e6cb, 0xb7b4839c, 0xc61d6420, - 0x337354ca, 0xdf36e363, 00000000 + 0x337354ca, 0xdf36e363 } }, { { 0x30c83206, 0x4df38c04, 0xd1fce086, 0x6bfd110a, 0xdf3acb01, - 0x38c6b6d5, 0xd62c8b0c, 00000000 + 0x38c6b6d5, 0xd62c8b0c }, { 0x13910733, 0x809a48d0, 0x7c5168a3, 0xabc6caaf, 0x461a119c, - 0x4297e36d, 0xa50b2cf1, 00000000 + 0x4297e36d, 0xa50b2cf1 }, { 0x365e80c5, 0x906696c7, 0x2e5e6410, 0x6ffd78b3, 0x8b2414b8, - 0x5e81ac0c, 0x5676d034, 00000000 + 0x5e81ac0c, 0x5676d034 } }, { { 0x32d0d06d, 0xc50f1f29, 0x935d2b9b, 0x91b1911f, 0x6a61f04d, - 0x93b5a05b, 0xd5d3aa10, 00000000 + 0x93b5a05b, 0xd5d3aa10 }, { 0xa6c9a3ce, 0x46d18484, 0xd2bddc46, 0xb32f9ef1, 0x5e51285b, - 0xd1b7ea14, 0x834e411e, 00000000 + 0xd1b7ea14, 0x834e411e }, { 0xc6c83f0e, 0x57434f45, 0xe6e57be8, 0x938180b1, 0xa4fa7fde, - 0x712d9ac2, 0x575b1bb7, 00000000 + 0x712d9ac2, 0x575b1bb7 } }, { { 0xb5d9e681, 0x6b380503, 0x3e26a643, 0xf738dd24, 0x94c14567, - 0xc8776948, 0x1e21337a, 00000000 + 0xc8776948, 0x1e21337a }, { 0x6d153271, 0x774d8693, 0x38142c04, 0xf4d71282, 0x4e02f68, - 0xf66781c9, 0x3c8285da, 00000000 + 0xf66781c9, 0x3c8285da }, { 0x6897121b, 0xfe8b0556, 0x3c3eeed1, 0x82c65617, 0x48c7973c, - 0x6f63c304, 0x2d5ac3de, 00000000 + 0x6f63c304, 0x2d5ac3de } }, { { 0x416a5e41, 0x2a02fa39, 0x9ac614a2, 0x2968ddcd, 0x4a712303, - 0x5921fea3, 0xba3dc746, 00000000 + 0x5921fea3, 0xba3dc746 }, { 0xe849e7c, 0x2db231f9, 0x9cf893cf, 0x6aa8fa90, 0x21efbbc0, - 0x37218c0b, 0xfbfdc011, 00000000 + 0x37218c0b, 0xfbfdc011 }, { 0x30587153, 0x4b26b726, 0x3d88861b, 0x7ee242a5, 0xdd96e85b, - 0x7db11a17, 0xeeb71e6f, 00000000 + 0x7db11a17, 0xeeb71e6f } }, { { 0x2f68209f, 0xed0d2dbc, 0xc7fedf0, 0x1774b03e, 0xe88c1de6, - 0x3083ae42, 0x502d67ac, 00000000 + 0x3083ae42, 0x502d67ac }, { 0xfce935c0, 0x8f486c44, 0xbd79c89, 0xece0248d, 0xfd5bb492, - 0x575407fe, 0x4f8c0b76, 00000000 + 0x575407fe, 0x4f8c0b76 }, { 0x33a3b9af, 0xd39eedf0, 0x9f014dfe, 0x54574496, 0x9e7327ff, - 0x83e36e5, 0x885e4d26, 00000000 + 0x83e36e5, 0x885e4d26 } }, { { 0x312f32e2, 0xee39b6ff, 0x2e4a4784, 0xe800f75f, 0xb61ffb89, - 0x62f762aa, 0x1d67243d, 00000000 + 0x62f762aa, 0x1d67243d }, { 0x6d6432ef, 0x43366065, 0x756fe437, 0x621b5611, 0x9e222f9a, - 0x4542c859, 0x69003d4d, 00000000 + 0x4542c859, 0x69003d4d }, { 0x94a83e4a, 0xa87fa232, 0x6999e2e1, 0xb46999f6, 0xa26e2433, - 0x5f6789ea, 0x4f2bc753, 00000000 + 0x5f6789ea, 0x4f2bc753 } }, { { 0x5f1ba813, 0xc4c6bc1c, 0x31dc45e0, 0xa5122329, 0xd5c6943d, - 0x4a57f79e, 0x22c94fb7, 00000000 + 0x4a57f79e, 0x22c94fb7 }, { 0xdfaa9ab0, 0xf744781b, 0x776bfba6, 0xa74e3d4c, 0xce309996, - 0xa2f19f80, 0xd7ff076c, 00000000 + 0xa2f19f80, 0xd7ff076c }, { 0x99064aba, 0xef083df, 0xba6b860, 0x8468784c, 0xa33a2d44, - 0xf63135de, 0x61f77a68, 00000000 + 0xf63135de, 0x61f77a68 } }, { { 0xfe3e99f3, 0xe445bd08, 0x5c3a7efa, 0xa2fc92ae, 0xa319adbc, - 0x33412d25, 0x531bc303, 00000000 + 0x33412d25, 0x531bc303 }, { 0x9d740783, 0x6baf62ca, 0x7dc645f5, 0x33b8825f, 0xb22d66c8, - 0x9e342c2e, 0x1f21cabe, 00000000 + 0x9e342c2e, 0x1f21cabe }, { 0xafefaf08, 0x1229620f, 0xd6f35f8b, 0x456128f, 0x3aefbf6b, - 0x75940f75, 0xa73610a1, 00000000 + 0x75940f75, 0xa73610a1 } }, { { 0x6323c0a4, 0x5704292c, 0x3db610a, 0x8d97cac7, 0xa2633185, - 0xa3ad9cbd, 0x64099966, 00000000 + 0xa3ad9cbd, 0x64099966 }, { 0xd6ace4a6, 0x44fce03d, 0x2c959578, 0xa2328b04, 0x1fa35667, - 0xa3a24e4b, 0xccdb12e5, 00000000 + 0xa3a24e4b, 0xccdb12e5 }, { 0xb7c4d79d, 0xa0662897, 0x13958247, 0xbe5cdb20, 0x9bc79a29, - 0x21e16283, 0x9dcbed2a, 00000000 + 0x21e16283, 0x9dcbed2a } }, { { 0xa85ecf2d, 0xce21781, 0xeef61e87, 0x6e15f785, 0x5033a498, - 0xa20754d4, 0x6fb4a3fe, 00000000 + 0xa20754d4, 0x6fb4a3fe }, { 0x62b031c3, 0x72cec18f, 0xa96eece0, 0xa7b3f4f4, 0x188a660e, - 0xadbc3a4, 0xeb197e4b, 00000000 + 0xadbc3a4, 0xeb197e4b }, { 0x62403ec9, 0x93ceb898, 0x6a2f2bed, 0xe137fb5b, 0x2ddc6a81, - 0xf5b459c3, 0x2ab0cd61, 00000000 + 0xf5b459c3, 0x2ab0cd61 } } }, @@ -24607,211 +24607,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xda6c08f9, 0x468ca222, 0xfad1679a, 0x38a86289, 0x98c5111, - 0xe19d44d9, 0x29ab93ac, 00000000 + 0xe19d44d9, 0x29ab93ac }, { 0xe3747207, 0xea6c1ec2, 0x28d57fe2, 0x5ffd2de3, 0x6bfa6a8b, - 0x5249e440, 0x3da203b5, 00000000 + 0x5249e440, 0x3da203b5 }, { 0x52ee7a73, 0xe373344b, 0xba423d61, 0x9c0fb2e, 0xa7c97f76, - 0x40dac8d8, 0x538b1b83, 00000000 + 0x40dac8d8, 0x538b1b83 } }, { { 0x8f3d817f, 0xef739190, 0xc1c1f3e7, 0x4fd4b110, 0x474a1546, - 0xbe4a1f70, 0x5b97886c, 00000000 + 0xbe4a1f70, 0x5b97886c }, { 0xfa91e62a, 0x3978210c, 0xd82d76a9, 0x1495109c, 0x9329c3b8, - 0x6b93cce5, 0xf99ee019, 00000000 + 0x6b93cce5, 0xf99ee019 }, { 0x99bb95ea, 0x2995bdfd, 0xc1deae86, 0x9643e8d5, 0xa344ead4, - 0xdc44eca8, 0xd317f4ae, 00000000 + 0xdc44eca8, 0xd317f4ae } }, { { 0x92dd811e, 0xe34b8a16, 0xaecba030, 0x976f3f41, 0x24d14873, - 0x69758d52, 0xd2ed01c9, 00000000 + 0x69758d52, 0xd2ed01c9 }, { 0x9804be3a, 0x3fd60a88, 0x5c8e55b, 0x8eb56bea, 0x100bc3ee, - 0x2369538b, 0xf0398e19, 00000000 + 0x2369538b, 0xf0398e19 }, { 0x86d1f7e0, 0x1a383ce2, 0x313eee78, 0xc71cb2b6, 0xb4205419, - 0xc04ea563, 0xfc545610, 00000000 + 0xc04ea563, 0xfc545610 } }, { { 0xe8c7ad31, 0xe8da7ade, 0x276ed9f9, 0xf7d45371, 0x2d8354d4, - 0xb4c8ccd, 0xa3684bcc, 00000000 + 0xb4c8ccd, 0xa3684bcc }, { 0x5d3da02a, 0x897253ac, 0xdb4c903c, 0xf2fe13ae, 0x716884e4, - 0xd9cda6f3, 0xe1a64300, 00000000 + 0xd9cda6f3, 0xe1a64300 }, { 0x2044e856, 0xacde572f, 0xa5e5013f, 0xefe4a3ad, 0xc32dc0d4, - 0xafa01eb1, 0x2121dfb8, 00000000 + 0xafa01eb1, 0x2121dfb8 } }, { { 0xeede1542, 0xb638fd1c, 0x87909615, 0x4e28c378, 0x93357eae, - 0xaf82dd62, 0xa0aa0e4d, 00000000 + 0xaf82dd62, 0xa0aa0e4d }, { 0x14206b64, 0x6eb14296, 0x9ed1fe00, 0x97872978, 0x95c94384, - 0xf79b758a, 0xd941c6d8, 00000000 + 0xf79b758a, 0xd941c6d8 }, { 0xe580c33b, 0x36b53800, 0x8e11a268, 0x3e7a3518, 0x1f5f70e9, - 0x69af483b, 0x1fb32a96, 00000000 + 0x69af483b, 0x1fb32a96 } }, { { 0x3b38c4c3, 0xbb5d57b, 0x9f75555b, 0x404cd06d, 0x50bbe4fd, - 0x17da8cc3, 0xba7a84b0, 00000000 + 0x17da8cc3, 0xba7a84b0 }, { 0xce94c1cd, 0xc3ea0ffe, 0x3fd3290c, 0xcb083ff4, 0x9b9b986b, - 0x3e46665, 0xda2f4498, 00000000 + 0x3e46665, 0xda2f4498 }, { 0x1803e020, 0x177b2f01, 0xea6079e8, 0xe362ffa0, 0xe4adf079, - 0xf1a9a855, 0xb60019ba, 00000000 + 0xf1a9a855, 0xb60019ba } }, { { 0x798a510a, 0x3e0d0edb, 0xc223c63d, 0x2f7eddaf, 0x1a99df23, - 0x424e5a3b, 0x423c6c30, 00000000 + 0x424e5a3b, 0x423c6c30 }, { 0x7d5365da, 0xfcc4ed82, 0x49b3dc71, 0x97a54992, 0xb7d8bc71, - 0xc1e36dce, 0x9642431e, 00000000 + 0xc1e36dce, 0x9642431e }, { 0x3f026756, 0xa5c62e4a, 0xc7145f1b, 0x349da75a, 0x1aeb571e, - 0x49385cda, 0x815355b5, 00000000 + 0x49385cda, 0x815355b5 } }, { { 0x5de9d095, 0x9ac0676a, 0xd46e6887, 0xb1c0ea68, 0xb0c90336, - 0x563c3e07, 0x4a3e7fa5, 00000000 + 0x563c3e07, 0x4a3e7fa5 }, { 0xe76d9ce2, 0x839951c8, 0x81bd6115, 0x26ef25a6, 0xacbf6d70, - 0x39bf49c2, 0xb67edd2d, 00000000 + 0x39bf49c2, 0xb67edd2d }, { 0x51fa5e2e, 0x17bbeb1c, 0x6d6ea66, 0xabdbc6e, 0x98d6b1d3, - 0x1d3259d5, 0xa44d431a, 00000000 + 0x1d3259d5, 0xa44d431a } }, { { 0xf5d9cd98, 0xd1d26a75, 0x248d4bac, 0x3ae066a3, 0x680b01ba, - 0xe85a7286, 0x2c24a3e6, 00000000 + 0xe85a7286, 0x2c24a3e6 }, { 0x8df99333, 0x7964fa40, 0xe838b0f1, 0x2f156021, 0x5c05eb5d, - 0xb447418b, 0xc6273ed6, 00000000 + 0xb447418b, 0xc6273ed6 }, { 0x360272eb, 0xe6b6fe2a, 0x4bfd8bc4, 0xbad2a820, 0x91b3f7e6, - 0x211c3c1b, 0xc460cc07, 00000000 + 0x211c3c1b, 0xc460cc07 } }, { { 0xc6fb62c9, 0x662d3797, 0x49327b64, 0x87c665c2, 0xe729c084, - 0x55b018c6, 0x2f43c864, 00000000 + 0x55b018c6, 0x2f43c864 }, { 0xa974cf8d, 0xfcce687c, 0xbb9d0663, 0x361d8d27, 0x12ea36c0, - 0xb6c45d01, 0x5ea67d3c, 00000000 + 0xb6c45d01, 0x5ea67d3c }, { 0xb72bcc5d, 0x9e203d52, 0x61d2fcfc, 0xc5e6d900, 0x2c389ac8, - 0x25eb8ad1, 0xcf087bde, 00000000 + 0x25eb8ad1, 0xcf087bde } }, { { 0xded91f1, 0x84fb92d3, 0xb2a1f2bc, 0xad0b8d36, 0xf78215ad, - 0x180db9a4, 0x7338206b, 00000000 + 0x180db9a4, 0x7338206b }, { 0xef9e904a, 0x4d56642d, 0xab707141, 0x1b0649f1, 0xe35a0b93, - 0xb37302fa, 0xfbe6fc08, 00000000 + 0xb37302fa, 0xfbe6fc08 }, { 0xefd9e8be, 0xfd7da517, 0xd526f3a6, 0xd0cb6652, 0xd15a5a0, - 0x855a63e, 0xa8c65a37, 00000000 + 0x855a63e, 0xa8c65a37 } }, { { 0x36bc29bf, 0xeaebea6e, 0xed3aebb2, 0xe3b4dbbb, 0x33d78af5, - 0x3451ba46, 0xfa580f59, 00000000 + 0x3451ba46, 0xfa580f59 }, { 0xdff14534, 0x4566c7dd, 0x1f67f72d, 0xe81f87d1, 0xb02ba2d1, - 0x3fb0b237, 0xabc21f64, 00000000 + 0x3fb0b237, 0xabc21f64 }, { 0x7d072ba0, 0xb260ce03, 0x71efec1e, 0x38c83889, 0xc24aada9, - 0xb1fbb011, 0xed4d284a, 00000000 + 0xb1fbb011, 0xed4d284a } }, { { 0xb11aeaa, 0x35318ac2, 0xcc60bce0, 0xf246a29e, 0xf942e118, - 0x8ca134d6, 0xa027b3d9, 00000000 + 0x8ca134d6, 0xa027b3d9 }, { 0xab3f1dbf, 0x3243226f, 0xacfda1c1, 0xb22d41ff, 0x171ade5f, - 0x1a8fa581, 0x2f4a3abd, 00000000 + 0x1a8fa581, 0x2f4a3abd }, { 0x7bd863dd, 0x61dcd5a0, 0x83ca479d, 0x6b5fea0c, 0x35712710, - 0x3d9a0b33, 0x6f575d6c, 00000000 + 0x3d9a0b33, 0x6f575d6c } }, { { 0x65a87eeb, 0x4672c654, 0xc2965366, 0xac110b66, 0xfe635be2, - 0xf5b424e1, 0x20d36041, 00000000 + 0xf5b424e1, 0x20d36041 }, { 0x3a4c28f4, 0x2b9b99c9, 0xe1ace903, 0x55cd4345, 0x36408614, - 0x82000d41, 0xeb572d7e, 00000000 + 0x82000d41, 0xeb572d7e }, { 0x331162f9, 0x15d9cbe6, 0xaa0d1f9a, 0xa1c676a6, 0xe3405796, - 0x36d96e2a, 0x2a054c35, 00000000 + 0x36d96e2a, 0x2a054c35 } }, { { 0xe27a4302, 0xfb886065, 0x54c021c3, 0xa3f23226, 0x4a9cb5aa, - 0x2eeffa45, 0xeda7fe55, 00000000 + 0x2eeffa45, 0xeda7fe55 }, { 0x8ff89a4e, 0xde559528, 0x8502c1f9, 0x698c8b8d, 0xa7aeb14a, - 0x997df7d0, 0x98d77e7b, 00000000 + 0x997df7d0, 0x98d77e7b }, { 0x52579a09, 0xe581e3d8, 0xcc8f0fb1, 0xc520aaca, 0x2dc1bf20, - 0x677ba259, 0x1579312d, 00000000 + 0x677ba259, 0x1579312d } } }, @@ -24819,211 +24819,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xeda9f9c3, 0xaa5a7923, 0x6ffc1320, 0xe791599, 0x4d0cc37c, - 0xe65d9cd3, 0x3053a032, 00000000 + 0xe65d9cd3, 0x3053a032 }, { 0x8c7634eb, 0x5daa2eb7, 0x8fd01dd6, 0x3f227c34, 0x2f630226, - 0xe94ab343, 0xc47bdfba, 00000000 + 0xe94ab343, 0xc47bdfba }, { 0xa5d30142, 0x38aa80ff, 0xd25d8d66, 0x11af0871, 0x763aee3e, - 0x65ce9e33, 0xa4ef8f5b, 00000000 + 0x65ce9e33, 0xa4ef8f5b } }, { { 0xf10a0833, 0xf84f5306, 0xf9b391fe, 0x7d484fed, 0x6851c98c, - 0x3074d640, 0x6028e99, 00000000 + 0x3074d640, 0x6028e99 }, { 0x96d860a5, 0xa7641557, 0x64ba958d, 0xbd5bce02, 0x672e174e, - 0x97247494, 0x5921c8d8, 00000000 + 0x97247494, 0x5921c8d8 }, { 0x8572bbd7, 0xd6e8e2f5, 0x7e714d07, 0xad04b0d1, 0xb6a644e5, - 0x37f94a28, 0xcaa0feb6, 00000000 + 0x37f94a28, 0xcaa0feb6 } }, { { 0x8d69cb28, 0xf09aadf7, 0x4f60ec4c, 0x242a73a5, 0x4a8760d5, - 0xa566bd47, 0xb2f9aaaf, 00000000 + 0xa566bd47, 0xb2f9aaaf }, { 0x9c086fa4, 0x50ac1232, 0x3babf48d, 0x96ff1fe2, 0xb9273f45, - 0xb4ac913e, 0xd69d1fec, 00000000 + 0xb4ac913e, 0xd69d1fec }, { 0x44668287, 0x9715a3fe, 0x6f641967, 0x1e5459bb, 0x8d039498, - 0xd22d5b76, 0x8b958619, 00000000 + 0xd22d5b76, 0x8b958619 } }, { { 0x5fdefeed, 0x3fc67592, 0x2ebaba7c, 0x4f5d1f69, 0x2726c2d2, - 0xc61b1198, 0x1adda431, 00000000 + 0xc61b1198, 0x1adda431 }, { 0x9b161ebd, 0xd6a2a551, 0xff7d3acd, 0xa6b78aeb, 0x8864f6e1, - 0x5ab2722c, 0xbf37be8, 00000000 + 0x5ab2722c, 0xbf37be8 }, { 0x9f94c23c, 0x51b0a49d, 0xc51ab176, 0xb50b2218, 0x8d5b43f3, - 0x7decd309, 0xa27e00c4, 00000000 + 0x7decd309, 0xa27e00c4 } }, { { 0xd22f5f0a, 0xda468a97, 0xf20eba09, 0xe6da6f8b, 0xd75396b2, - 0xa831b2bb, 0x918b9450, 00000000 + 0xa831b2bb, 0x918b9450 }, { 0x71b4d815, 0x80bbe328, 0x8c853585, 0xb4afa3aa, 0x44e91db8, - 0x3f5d8919, 0x7776282c, 00000000 + 0x3f5d8919, 0x7776282c }, { 0x6b47f3a4, 0xc60969ec, 0x778c11ea, 0x88db8e9f, 0xde488ff9, - 0x911e52ef, 0x2564e80c, 00000000 + 0x911e52ef, 0x2564e80c } }, { { 0x9d087722, 0x5ddc675a, 0x5cc68b44, 0x7034aefb, 0xb51f1415, - 0x94bfe719, 0xeec1d188, 00000000 + 0x94bfe719, 0xeec1d188 }, { 0x80d4f88f, 0x9899b03f, 0x79a287e, 0xeb84e784, 0xd7d7ac0a, - 0x3cb8c86b, 0x92d8e2a8, 00000000 + 0x3cb8c86b, 0x92d8e2a8 }, { 0x23e2f3a6, 0x28bf1dd3, 0x6ff0419f, 0x59b71cc0, 0xf450c472, - 0xe2b6bce3, 0x8d535cc1, 00000000 + 0xe2b6bce3, 0x8d535cc1 } }, { { 0xb0e73f23, 0xd4fb18d6, 0x3cda3b9d, 0x484e6480, 0xd6d3a73b, - 0x30a6472b, 0x27591c21, 00000000 + 0x30a6472b, 0x27591c21 }, { 0xbff646f7, 0xff489674, 0xf9d6fb1d, 0xa7ff21e8, 0xd03a9997, - 0x4e1072d8, 0x436f5dff, 00000000 + 0x4e1072d8, 0x436f5dff }, { 0xc07f17c0, 0x54c1208, 0x95c96913, 0xde342dd5, 0xd92c3855, - 0xc683b30, 0xd8569bef, 00000000 + 0xc683b30, 0xd8569bef } }, { { 0x93fd7bde, 0x990094fa, 0xcff8a877, 0x46a1a61c, 0xcfc89e04, - 0x14a2cd68, 0x38a85980, 00000000 + 0x14a2cd68, 0x38a85980 }, { 0xf38bf6d, 0xea466239, 0x776d5f2b, 0xd55a6387, 0xf7325e, 0xa3b2f2a, - 0x83f34c5b, 00000000 + 0x83f34c5b }, { 0x25ad915, 0xba7bad4, 0xaf8b68d4, 0x7939ce1d, 0xdad2585f, - 0x2b75efa1, 0x47781809, 00000000 + 0x2b75efa1, 0x47781809 } }, { { 0x6aed4ca3, 0xa5014d71, 0xa3ecd3c7, 0xa0826e66, 0xe53590dc, - 0x2b90222c, 0x59ddec52, 00000000 + 0x2b90222c, 0x59ddec52 }, { 0x25b37483, 0x24e54ca3, 0xb2633eaf, 0x59612b82, 0x9c7660b2, - 0x41b8b52d, 0xb6bef9a7, 00000000 + 0x41b8b52d, 0xb6bef9a7 }, { 0x5e0862da, 0x80432460, 0xcdd97672, 0xe9caeaa, 0xcdef187c, - 0xff24068d, 0x46be2249, 00000000 + 0xff24068d, 0x46be2249 } }, { { 0xc1050536, 0xc1fe49e2, 0x9c812d64, 0xae2034e4, 0x49df9c5c, - 0x6153095b, 0x1aff30b5, 00000000 + 0x6153095b, 0x1aff30b5 }, { 0x55fa29b0, 0x5bc02a31, 0xb9198b9b, 0xb9fbb2fc, 0x5bd66c7c, - 0x39ddf759, 0x674b5ddd, 00000000 + 0x39ddf759, 0x674b5ddd }, { 0x51976596, 0x11f891a6, 0x1c841fb2, 0x5773fc7d, 0xa32885dc, - 0xc27d681f, 0x14d03e7, 00000000 + 0xc27d681f, 0x14d03e7 } }, { { 0xcdea00f7, 0xbfec84fc, 0x81ce7501, 0xa231e234, 0x5aca98d3, - 0x54771dc, 0x92919e16, 00000000 + 0x54771dc, 0x92919e16 }, { 0xe174ed5c, 0x47281b4f, 0x19a0fc7b, 0xccc0f8aa, 0xde0e8f3e, - 0x11cac947, 0xa9788854, 00000000 + 0x11cac947, 0xa9788854 }, { 0xa3b956cd, 0x88cd6357, 0xed495955, 0xe8c7de3e, 0xc6b1d5b3, - 0x54337f6c, 0x5766c69a, 00000000 + 0x54337f6c, 0x5766c69a } }, { { 0x6c3bcf23, 0xc5503054, 0xc4265e87, 0xa68c0d9c, 0xbff09bb4, - 0xc346f4f1, 0x914cf83, 00000000 + 0xc346f4f1, 0x914cf83 }, { 0x1cbb2f06, 0x06d995, 0x96ddf328, 0x35952045, 0xc1114f66, - 0xd2037575, 0x8d5759cf, 00000000 + 0xd2037575, 0x8d5759cf }, { 0xa3820388, 0x99dea428, 0xe7b08c53, 0xd83ddee7, 0xc0111f32, - 0x1a992e54, 0x17100f6f, 00000000 + 0x1a992e54, 0x17100f6f } }, { { 0xbd80a027, 0x43c549fa, 0xb8bec3bc, 0x3fed30c7, 0x89f365c5, - 0xf05d0327, 0x5fbc5b17, 00000000 + 0xf05d0327, 0x5fbc5b17 }, { 0xb320f701, 0x2139680b, 0x5dfb746d, 0x2dac4274, 0xa6edc71b, - 0x85bdceb7, 0x3c0875e5, 00000000 + 0x85bdceb7, 0x3c0875e5 }, { 0xc19495bb, 0x1ee95e72, 0x814eb03e, 0xa8ce4648, 0x71317c4c, - 0xb240d48e, 0xf44ecabb, 00000000 + 0xb240d48e, 0xf44ecabb } }, { { 0x209330a4, 0x185b99c2, 0x840fb373, 0x9bd6fd2, 0x8539b6d3, - 0x15aa5448, 0x94b4331f, 00000000 + 0x15aa5448, 0x94b4331f }, { 0x8e2a7e63, 0x80b7b4eb, 0x8ad2774, 0x85343458, 0xe2f8f3f7, - 0x49024a85, 0x5c285259, 00000000 + 0x49024a85, 0x5c285259 }, { 0x974d4708, 0x8a864e54, 0xbbfadc3d, 0x75d3e505, 0x5b129f64, - 0xbcfeb3de, 0xf252beba, 00000000 + 0xbcfeb3de, 0xf252beba } }, { { 0x8a5b63da, 0xd818d82f, 0xf769b1c2, 0x19c88171, 0xc5aa1ce7, - 0xc26b84db, 0x8a133071, 00000000 + 0xc26b84db, 0x8a133071 }, { 0xe8e8e93a, 0xb86918ba, 0x9433b188, 0x8920485e, 0xac08d00d, - 0xa7663f5e, 0x51b184f1, 00000000 + 0xa7663f5e, 0x51b184f1 }, { 0x2efdd1b5, 0x234455c2, 0xb8c6de0f, 0x63bea35a, 0x93d287c9, - 0xecb14e9d, 0xca9e988e, 00000000 + 0xecb14e9d, 0xca9e988e } } }, @@ -25031,211 +25031,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xf0cff0f3, 0x6756c7c, 0xaa3e6cc8, 0xcb308e62, 0x5059989e, - 0x6f13fb50, 0x9c5a2fa0, 00000000 + 0x6f13fb50, 0x9c5a2fa0 }, { 0xaee5c31a, 0x6652005f, 0xb519a044, 0xc4f28342, 0x5f3851a, - 0x97a8ad6, 0x95fed444, 00000000 + 0x97a8ad6, 0x95fed444 }, { 0x8098a96b, 0x25e97174, 0x200a2212, 0x3ff39949, 0xa4667b7e, - 0x876b7945, 0xd540ac4e, 00000000 + 0x876b7945, 0xd540ac4e } }, { { 0x39534b70, 0x564c0391, 0xfe46b68c, 0x2afab64e, 0xe168235c, - 0xef0c6c23, 0xaaaf6771, 00000000 + 0xef0c6c23, 0xaaaf6771 }, { 0x659bef0e, 0xf8815f46, 0xd422c5ba, 0x54f10fff, 0xbb6144f6, - 0x876f52e9, 0x38f3c414, 00000000 + 0x876f52e9, 0x38f3c414 }, { 0xf578c8a2, 0x622157fc, 0xdd0f9224, 0xda7531d0, 0xbbe60171, - 0xf460696a, 0x5fcfe07b, 00000000 + 0xf460696a, 0x5fcfe07b } }, { { 0xc09c9db5, 0x456dfa67, 0x528247, 0xc5f6f33d, 0x341d1f94, - 0x5de5f707, 0x8e3f4878, 00000000 + 0x5de5f707, 0x8e3f4878 }, { 0xaa40c482, 0x99f6b4f3, 0x1457fb96, 0xbb1e445, 0xd097e42e, - 0x1edf6ac6, 0x920c97cc, 00000000 + 0x1edf6ac6, 0x920c97cc }, { 0xd4f1dc70, 0x131aab73, 0xef3c0895, 0x20ea4263, 0x6e04da29, - 0x2deed8f3, 0xb62534ea, 00000000 + 0x2deed8f3, 0xb62534ea } }, { { 0xfd4480d5, 0x5ee6b902, 0x8f1dc850, 0x44b4dd23, 0xe1866d61, - 0xb637ad22, 0xff918e7c, 00000000 + 0xb637ad22, 0xff918e7c }, { 0x80d41be, 0x4b05c1cb, 0xec32250a, 0xf35c7657, 0x586697b0, - 0x76513155, 0x63745a62, 00000000 + 0x76513155, 0x63745a62 }, { 0xec2a1f1c, 0x42e62e88, 0x7c13456f, 0x6396338c, 0xd608ec23, - 0x2e7be51e, 0x69d7aa30, 00000000 + 0x2e7be51e, 0x69d7aa30 } }, { { 0x98c4c4cb, 0xa883de45, 0x15bfe8d8, 0x49e022da, 0xa1c2c13e, - 0x45e1c12, 0x75797907, 00000000 + 0x45e1c12, 0x75797907 }, { 0x2ba26f88, 0x810abd4f, 0x46967df8, 0x67f4cca8, 0xf46d5abc, - 0xca9ce63d, 0xc681d124, 00000000 + 0xca9ce63d, 0xc681d124 }, { 0xda2d2b19, 0xb4af06b6, 0xd967c4fa, 0x79e4d9b6, 0xd1ae3a2f, - 0xc8bb0cdd, 0x8f7cafa5, 00000000 + 0xc8bb0cdd, 0x8f7cafa5 } }, { { 0x4b758c8e, 0xc0170c41, 0xb7570f46, 0xce237261, 0x7c8bb714, - 0x95e2b5ec, 0x7a970053, 00000000 + 0x95e2b5ec, 0x7a970053 }, { 0x181b8831, 0x44ce6231, 0xe36475ab, 0x383580ce, 0x3a1fb6db, - 0xd0e4b8a8, 0x499b98a1, 00000000 + 0xd0e4b8a8, 0x499b98a1 }, { 0x2c607b04, 0x1b9d318c, 0x8db1ed0c, 0xc3770c40, 0xbe882dc, - 0x79c71d55, 0xc165c5bc, 00000000 + 0x79c71d55, 0xc165c5bc } }, { { 0x26f61e7c, 0xb5b55772, 0x16be9782, 0xf722d8b3, 0x4374e6b2, - 0x1127de81, 0x55ee588b, 00000000 + 0x1127de81, 0x55ee588b }, { 0xfaff0029, 0x2bf789c7, 0x3f9befe7, 0x122badeb, 0xbbb97835, - 0x9411faa3, 0x104bb28f, 00000000 + 0x9411faa3, 0x104bb28f }, { 0xf9408b44, 0x4cd36e2d, 0xc2c0bb4b, 0xa4247b47, 0x732b9c85, - 0xe3fa9e0a, 0xd8f4850, 00000000 + 0xe3fa9e0a, 0xd8f4850 } }, { { 0x40a1c393, 0xbb3bd235, 0x9f410c65, 0xa2d1f74f, 0xadda1c3c, - 0xe68f6a31, 0x6cd422c, 00000000 + 0xe68f6a31, 0x6cd422c }, { 0x409dc72c, 0xf83cc439, 0xd4512695, 0x2f5764ae, 0x606aa8df, - 0x2cb5c052, 0xb28eb66, 00000000 + 0x2cb5c052, 0xb28eb66 }, { 0x44ceb675, 0xf07fd680, 0x97e69c29, 0x59cae02b, 0x5434a08a, - 0xa9333531, 0xc97f3756, 00000000 + 0xa9333531, 0xc97f3756 } }, { { 0xdc158c3c, 0xf51ef015, 0x6e3ae8c9, 0xbe1e4035, 0x13a48350, - 0x4868b52, 0xe626fdb9, 00000000 + 0x4868b52, 0xe626fdb9 }, { 0xfe0e06b9, 0x998e1516, 0xd677deb0, 0xb1cda90d, 0x644f58b3, - 0x675b5daa, 0x3f26f080, 00000000 + 0x675b5daa, 0x3f26f080 }, { 0x8676d9f9, 0xa7a6b5b2, 0xd7cad682, 0xfd7eb0ee, 0xfb038519, - 0x70c9e1bd, 0x2aaaf3cb, 00000000 + 0x70c9e1bd, 0x2aaaf3cb } }, { { 0x87781f85, 0xea6a8d54, 0xa627509, 0x164620b5, 0x2e3dbe9f, - 0x3807c576, 0x6d231982, 00000000 + 0x3807c576, 0x6d231982 }, { 0xa20e5127, 0x6bddc277, 0xc486ccd, 0xe59aa0c5, 0x30cbb808, - 0xa86d84e1, 0xad5e43c4, 00000000 + 0xa86d84e1, 0xad5e43c4 }, { 0xf6723d71, 0x4e26f1d6, 0xa353438, 0x977d6a84, 0x5dfb7892, - 0xb4e5975a, 0x6f99c9ff, 00000000 + 0xb4e5975a, 0x6f99c9ff } }, { { 0x702a3480, 0x25dd7fb6, 0x92785113, 0x61e76d2e, 0x247b59f8, - 0x120e3f38, 0xc237d844, 00000000 + 0x120e3f38, 0xc237d844 }, { 0x3e0f3166, 0x456841d5, 0xf4edecb, 0x9d23b2a1, 0x3dec96e1, - 0x60c3b182, 0xe931f569, 00000000 + 0x60c3b182, 0xe931f569 }, { 0x2b50b241, 0x381400af, 0xbc6fd4db, 0x98eb2c74, 0xf0a04945, - 0x5a74eb57, 0xde82a5ef, 00000000 + 0x5a74eb57, 0xde82a5ef } }, { { 0x982070dd, 0x852ce3af, 0x6d6f9f82, 0x1e9327d1, 0xf632e483, - 0xb7c24d98, 0x2be3f509, 00000000 + 0xb7c24d98, 0x2be3f509 }, { 0x4feb197d, 0xf673841a, 0xa5e2e8a7, 0x1106bf5d, 0x1cd1a204, - 0xebb6dc0b, 0xa3c94bc5, 00000000 + 0xebb6dc0b, 0xa3c94bc5 }, { 0x865cc737, 0xd32b4d48, 0xc3aa5082, 0xbbd75a3c, 0x9d0846bf, - 0x95872746, 0xcd609257, 00000000 + 0x95872746, 0xcd609257 } }, { { 0x90d8fd0a, 0xa22d7492, 0x78e0b842, 0x86949cfc, 0xeb3adf6f, - 0x355b1ebc, 0xe888c089, 00000000 + 0x355b1ebc, 0xe888c089 }, { 0x4c5c636e, 0xa63212e6, 0xe26c2fa3, 0xee4f60f3, 0x6bab6889, - 0x2b816ddf, 0xb0d2e096, 00000000 + 0x2b816ddf, 0xb0d2e096 }, { 0x48b9c151, 0xe5ea28c1, 0xbbbd1a44, 0xd26302a1, 0xc2ae0b24, - 0x38f48c51, 0x4f22dbe9, 00000000 + 0x38f48c51, 0x4f22dbe9 } }, { { 0x7e62f375, 0x1d6d6651, 0xac47b4fd, 0x51a30ae6, 0x45c87df3, - 0x283d5b4d, 0xae23a566, 00000000 + 0x283d5b4d, 0xae23a566 }, { 0x1f3cb71e, 0x8063d6a4, 0x53ec0ad, 0x59bff8c8, 0x71259c5a, - 0xd44be536, 0x516d591d, 00000000 + 0xd44be536, 0x516d591d }, { 0xf8c4e7c8, 0xbf304585, 0x4f6a9123, 0x251cf66a, 0x3c88985, - 0xe1ea30b9, 0x3e0fedd, 00000000 + 0xe1ea30b9, 0x3e0fedd } }, { { 0x482ee0e7, 0x446da5d5, 0xad4c51c1, 0xb14d4861, 0xf83998a8, - 0xd9641edc, 0x60029965, 00000000 + 0xd9641edc, 0x60029965 }, { 0x1d4e023f, 0xeaf62b71, 0x59a4f337, 0x3cb5ef9c, 0x6d9b353e, - 0x8fcb0811, 0xc4cc7274, 00000000 + 0x8fcb0811, 0xc4cc7274 }, { 0x688b211c, 0xd3e67cce, 0x99356aa7, 0xf769a8c5, 0x8bd75129, - 0x15bdaa92, 0x657607a, 00000000 + 0x15bdaa92, 0x657607a } } }, @@ -25243,211 +25243,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x8db4e1cd, 0xf862f323, 0xd4a326a8, 0xbdbef349, 0x6d0ce38d, - 0xe4704cb5, 0xf10c1f67, 00000000 + 0xe4704cb5, 0xf10c1f67 }, { 0xae197887, 0xeed89932, 0x2fb68e4a, 0xc302722e, 0xfa09ea3a, - 0x79c409b, 0x1c948baf, 00000000 + 0x79c409b, 0x1c948baf }, { 0x9e8b16b2, 0xb468f237, 0xfcabb434, 0x4d1619cc, 0x5e1a00a8, - 0x65e80816, 0x5036ca30, 00000000 + 0x65e80816, 0x5036ca30 } }, { { 0x54e68dde, 0x7ea1ecf1, 0x62ab139, 0xbe42ecf3, 0x999bc1f2, - 0x8213ff80, 0x8821937d, 00000000 + 0x8213ff80, 0x8821937d }, { 0xa08c301e, 0x38adf638, 0xa6a9919d, 0x4b635c63, 0x16f0dd3d, - 0x44ba97a8, 0x82b66ef2, 00000000 + 0x44ba97a8, 0x82b66ef2 }, { 0x24308668, 0xd8cfbf4e, 0xa6e400cb, 0xa3090b04, 0xa50baea8, - 0x864d2040, 0x5b174fb8, 00000000 + 0x864d2040, 0x5b174fb8 } }, { { 0x15757f9d, 0x7b00b47a, 0xd67157a, 0x3d408558, 0x3e7565d, - 0x2bbac37d, 0x3ed11a68, 00000000 + 0x2bbac37d, 0x3ed11a68 }, { 0x263d7968, 0x303cabe7, 0xe0e51dcb, 0xd50385b4, 0x4205c7f1, - 0x3d4a15b2, 0xc6b0a534, 00000000 + 0x3d4a15b2, 0xc6b0a534 }, { 0x5c0a5096, 0xc7da6860, 0x386e144a, 0x63046237, 0x68d22b2a, - 0x35eb57f8, 0x8e343b63, 00000000 + 0x35eb57f8, 0x8e343b63 } }, { { 0x8d839e2a, 0xbe840c95, 0xdae7ce77, 0xbd023bc, 0x6ce11dc2, - 0xb4d8b793, 0xf4395263, 00000000 + 0xb4d8b793, 0xf4395263 }, { 0x8a64c33d, 0x913c3023, 0xb04c9f00, 0xac39b96c, 0x8944b2be, - 0xa93b1f54, 0x43e44c2, 00000000 + 0xa93b1f54, 0x43e44c2 }, { 0xdb41cba1, 0xdb339491, 0xe5c74e2a, 0x824416e0, 0x8d49b0d, - 0x2458f641, 0x886e538d, 00000000 + 0x2458f641, 0x886e538d } }, { { 0xad567f26, 0x36eef3f, 0xfcd428cd, 0xdc97df3a, 0xe921b934, - 0xd5fb0953, 0x94a0054b, 00000000 + 0xd5fb0953, 0x94a0054b }, { 0xc377a857, 0x608a82d8, 0xb5f4fe44, 0xefa5b055, 0x1d366dae, - 0x76c0090a, 0xaeda6e88, 00000000 + 0x76c0090a, 0xaeda6e88 }, { 0xd0de2d4f, 0x7b81477, 0x5ea53285, 0x92cd0e57, 0x89880b3b, - 0xe920aa37, 0xe60d8e1c, 00000000 + 0xe920aa37, 0xe60d8e1c } }, { { 0xfc3dd42a, 0x272c8be1, 0x1ff56f21, 0x201de62b, 0x37eb4663, - 0x84cc7db5, 0xfff89399, 00000000 + 0x84cc7db5, 0xfff89399 }, { 0x84278f58, 0x3288b6b6, 0xe7d1cc2b, 0x7c2dbc92, 0xddab7559, - 0x59139d9a, 0x395cc8b, 00000000 + 0x59139d9a, 0x395cc8b }, { 0x34d7be78, 0x59c949c, 0x26af3392, 0x9d566a52, 0x358cbf55, - 0x6747bd9, 0xb21e24f9, 00000000 + 0x6747bd9, 0xb21e24f9 } }, { { 0xa478cd2, 0x6625d446, 0xd48deb65, 0xab547469, 0xbd6c1233, - 0x1408e6e9, 0xc27c948d, 00000000 + 0x1408e6e9, 0xc27c948d }, { 0x4c8d2d4a, 0x623b4013, 0xba7d4336, 0x13a2bb6f, 0x68c242c9, - 0x58a9a274, 0xb6d1c8bb, 00000000 + 0x58a9a274, 0xb6d1c8bb }, { 0x93ef5c46, 0x81273cab, 0x5f3d0ffd, 0x2e9478ee, 0xa92b7af7, - 0x6e00e44a, 0xf74e16f0, 00000000 + 0x6e00e44a, 0xf74e16f0 } }, { { 0x2fc21ff4, 0x41cc1e65, 0xd12e18b7, 0x972a6091, 0xb466096a, - 0xb441b1e0, 0x41c0b3bd, 00000000 + 0xb441b1e0, 0x41c0b3bd }, { 0x28aaed52, 0xdc280831, 0xf5a2f44b, 0x1b72917e, 0xe34029f2, - 0xd35c627c, 0x7a1e3ab2, 00000000 + 0xd35c627c, 0x7a1e3ab2 }, { 0x8ebc33cf, 0x2541f472, 0x2b8a8029, 0x96a9208a, 0x488288fb, - 0xa70cd095, 0xfe4ff0c4, 00000000 + 0xa70cd095, 0xfe4ff0c4 } }, { { 0xb430c4b5, 0x8583b436, 0x697a8ac9, 0xc1ddb2f3, 0xd9bd1ae5, - 0x6c737296, 0x4d4247a7, 00000000 + 0x6c737296, 0x4d4247a7 }, { 0xef060662, 0x601e06e9, 0x8c6dad55, 0x6da925c7, 0x2262f3da, - 0x73a54551, 0x66d46f4b, 00000000 + 0x73a54551, 0x66d46f4b }, { 0xe8b3ac9d, 0x1976252f, 0x69fedfe7, 0x52b0fc03, 0x5a1c6f2e, - 0x3c68e267, 0x45d1b442, 00000000 + 0x3c68e267, 0x45d1b442 } }, { { 0xb0630c2c, 0x8ac50b5e, 0x3fa168a8, 0xcfb1fc33, 0xd2b9700e, - 0x766ea84d, 0x4442e199, 00000000 + 0x766ea84d, 0x4442e199 }, { 0x16f66fbc, 0xbe4d9b48, 0x7732fbbd, 0xad23ef41, 0xd3a8f350, - 0xbb57b3b4, 0x3b385f29, 00000000 + 0xbb57b3b4, 0x3b385f29 }, { 0x49ffe95, 0x2494ea3, 0x51273fe4, 0xeb39598a, 0x9f43e871, - 0x5c1b72fd, 0xe50d30ef, 00000000 + 0x5c1b72fd, 0xe50d30ef } }, { { 0xe92dd3ff, 0xfebf53fc, 0xefd440ff, 0xfe01352c, 0x632647ce, - 0x74a33c43, 0xaf9c934, 00000000 + 0x74a33c43, 0xaf9c934 }, { 0x6d707aab, 0xe2076040, 0xd21799a8, 0xd9f327a5, 0xe3a1f23d, - 0x56c548f6, 0x292fda72, 00000000 + 0x56c548f6, 0x292fda72 }, { 0x540510bb, 0x5aea19a1, 0xba6dcb9e, 0x2ec1294b, 0x76f9c6a5, - 0xc742c8ff, 0x702b881e, 00000000 + 0xc742c8ff, 0x702b881e } }, { { 0x3f08c02b, 0x500ccaa1, 0xae865c35, 0xa447658f, 0x2c2ef2ee, - 0x6fbcaeec, 0xb96cfa8f, 00000000 + 0x6fbcaeec, 0xb96cfa8f }, { 0x479db3a3, 0x134ebc89, 0x84742e6f, 0x27f3d14e, 0x38bd8aae, - 0x66d19cf1, 0xa686a5a4, 00000000 + 0x66d19cf1, 0xa686a5a4 }, { 0x813a1253, 0x6a5917d9, 0xcf45c54b, 0x8c84f52, 0xa295adad, - 0x580d3229, 0xf66868cb, 00000000 + 0x580d3229, 0xf66868cb } }, { { 0xf470a435, 0xbfcfecbb, 0x81433867, 0x7dc2eba1, 0xb4a0d5ae, - 0x45ba4e17, 0x71ecc573, 00000000 + 0x45ba4e17, 0x71ecc573 }, { 0xd0b39345, 0xf1e8b4e2, 0xdb60ac44, 0x9da78cd5, 0x3b33204, - 0xf1a89e91, 0x51f2c62c, 00000000 + 0xf1a89e91, 0x51f2c62c }, { 0xcda34305, 0x1212897f, 0x5049be35, 0xa1e0e3f0, 0x5a1548df, - 0x9434fbae, 0x43a1d938, 00000000 + 0x9434fbae, 0x43a1d938 } }, { { 0x129c93d6, 0x982b0a13, 0x41d8c38b, 0xec91bd45, 0x793b28d0, - 0x67aa0566, 0x325d2212, 00000000 + 0x67aa0566, 0x325d2212 }, { 0x379280da, 0xc7a80e2d, 0x3680ed8e, 0x220c5255, 0xce812bc8, - 0x9ea4f359, 0x67244656, 00000000 + 0x9ea4f359, 0x67244656 }, { 0xa53df0c1, 0xd2a6304b, 0x60f1be1, 0x28c474a4, 0xde632870, - 0x9a9647a6, 0xed5383ad, 00000000 + 0x9a9647a6, 0xed5383ad } }, { { 0x233eba00, 0x99e7c8f4, 0x1cf6dec5, 0x46146574, 0x77715f9f, - 0xae986a7b, 0x9801b737, 00000000 + 0xae986a7b, 0x9801b737 }, { 0x4e916eac, 0x7927036, 0xc4a20570, 0xb9bb2a9b, 0xfcf17dbd, - 0x6d2eeb95, 0xa782dd53, 00000000 + 0x6d2eeb95, 0xa782dd53 }, { 0xff4f578f, 0x812ad07a, 0x94f8f6d5, 0x81b56db9, 0xc96b0f13, - 0xc76ebc5d, 0x64eb4262, 00000000 + 0xc76ebc5d, 0x64eb4262 } } }, @@ -25455,211 +25455,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x4704733b, 0x6aba620d, 0x311b5f1c, 0x3485177d, 0x986d9fad, - 0xb81e4bd8, 0x55900cad, 00000000 + 0xb81e4bd8, 0x55900cad }, { 0xbd9e20c9, 0x54e4dbc6, 0x8eab3a84, 0x1ce90884, 0x6a881cd2, - 0x3c32a7dc, 0xd2bef9f8, 00000000 + 0x3c32a7dc, 0xd2bef9f8 }, { 0x36e086e3, 0xce524852, 0xfda088f6, 0x677d6dc3, 0x56c5df46, - 0x8a028463, 0x313d7e0e, 00000000 + 0x8a028463, 0x313d7e0e } }, { { 0x20e470e, 0xe6484d7c, 0x34e55361, 0x8449d04c, 0x88f2c037, - 0x77f5baab, 0xd6f89cd0, 00000000 + 0x77f5baab, 0xd6f89cd0 }, { 0xc7647ad6, 0x7376ed7f, 0x688b2524, 0xdcdebf0c, 0x14c4e298, - 0x9dd2aa4f, 0x5b211c78, 00000000 + 0x9dd2aa4f, 0x5b211c78 }, { 0xbfe7be6e, 0x42e2e373, 0xd908ee1, 0x2d8dae9f, 0xb250bb56, - 0xfb794b0a, 0x95c2cbfb, 00000000 + 0xfb794b0a, 0x95c2cbfb } }, { { 0xd2859414, 0x8293fbed, 0x58c7c8f7, 0xab7e1e41, 0xbfe50bcc, - 0x62aa9bb0, 0x1fd32ad7, 00000000 + 0x62aa9bb0, 0x1fd32ad7 }, { 0xaf24904a, 0x2f569ea2, 0x1bd65723, 0xd7a39b65, 0x629884db, - 0xb18956e1, 0xa46d3d8c, 00000000 + 0xb18956e1, 0xa46d3d8c }, { 0x70829d64, 0x3a087766, 0x3a5cdc5f, 0x1d607345, 0x8c327619, - 0x4c14ea4a, 0xe0e040f9, 00000000 + 0x4c14ea4a, 0xe0e040f9 } }, { { 0xc57ea0ad, 0xe9945997, 0x2b8f5c3b, 0x8f8483dc, 0xd5e868e, - 0x1ee6bce2, 0xd481a1d9, 00000000 + 0x1ee6bce2, 0xd481a1d9 }, { 0xbe3c19d, 0x454765f, 0x3f0a6c90, 0x994d96fc, 0x4a0d115c, - 0x3d1809d2, 0x98ca6db9, 00000000 + 0x3d1809d2, 0x98ca6db9 }, { 0xeeed7500, 0x4271f5a3, 0x6e47f499, 0x26f58279, 0xc4777d07, - 0x8af290d3, 0xa0b4152d, 00000000 + 0x8af290d3, 0xa0b4152d } }, { { 0x9b2baee7, 0xb1173a90, 0xda2a191a, 0xd37feb55, 0x9d99b23b, - 0xff958815, 0xe8020a5a, 00000000 + 0xff958815, 0xe8020a5a }, { 0x957a49cf, 0xa4141794, 0x236cc3f3, 0xf363f6c9, 0xbd5bfc43, - 0x85e1bc08, 0xf77add75, 00000000 + 0x85e1bc08, 0xf77add75 }, { 0xd1bf4766, 0xc1724331, 0xb6c40317, 0xa9802116, 0x31d5da96, - 0x268e374a, 0x3a6809d4, 00000000 + 0x268e374a, 0x3a6809d4 } }, { { 0x61fece06, 0x3ff35062, 0x4d8cae86, 0xc57a839a, 0x70dcf651, - 0xf1a7441d, 0x1e1f3d1b, 00000000 + 0xf1a7441d, 0x1e1f3d1b }, { 0x3a460e1c, 0xb1b2dd31, 0xb8e288a9, 0x589c794f, 0xf475dbc5, - 0x74f0b377, 0xb1402183, 00000000 + 0x74f0b377, 0xb1402183 }, { 0xf28daeb8, 0x78980507, 0xdb0c6cd7, 0x59338ad1, 0xc0027ef5, - 0x894b60f2, 0x4cd8a079, 00000000 + 0x894b60f2, 0x4cd8a079 } }, { { 0x7730a78c, 0x4b960928, 0xa9915f49, 0xf4bc32ca, 0x98281757, - 0x26a86465, 0xafb66435, 00000000 + 0x26a86465, 0xafb66435 }, { 0x55c12e57, 0x2c255e25, 0x9f1e9c29, 0xb0c36561, 0xd319a796, - 0x4e39da9f, 0x866c4193, 00000000 + 0x4e39da9f, 0x866c4193 }, { 0x926920b7, 0xc49e0f8e, 0x7a4c2ae1, 0xe61fa1f6, 0xb9f8c591, - 0x4369c0a5, 0x811d2edc, 00000000 + 0x4369c0a5, 0x811d2edc } }, { { 0x3080d546, 0x89341a5a, 0x5a3748c6, 0x93527c8, 0xa7178eeb, - 0x1cd70ade, 0x55bcf373, 00000000 + 0x1cd70ade, 0x55bcf373 }, { 0xc8ed70fd, 0xe51bec42, 0xbf203718, 0xc7408cf9, 0x852715af, - 0x740e99a9, 0xfc745156, 00000000 + 0x740e99a9, 0xfc745156 }, { 0xfd7911c0, 0x3666d50, 0x6dc00ae4, 0x9d086f6e, 0x5ea0470c, - 0xbb2d8bf0, 0x66c65cb9, 00000000 + 0xbb2d8bf0, 0x66c65cb9 } }, { { 0xd333a8f1, 0x612a3011, 0x311d21e6, 0xa0a651b, 0x2628f8c5, - 0x472928a9, 0x147f9191, 00000000 + 0x472928a9, 0x147f9191 }, { 0xebad44b4, 0x5c70dfb2, 0x5b47306c, 0x969a6a08, 0x15b394e3, - 0x9c83cf5c, 0xb7a348ff, 00000000 + 0x9c83cf5c, 0xb7a348ff }, { 0xda6f2a38, 0xd2946edc, 0x922e2160, 0xc6993ab, 0xbf848aea, - 0x77a6e51b, 0x687ccad, 00000000 + 0x77a6e51b, 0x687ccad } }, { { 0x99a858d7, 0x785e9fd, 0x22ee52c2, 0x11be72a, 0x222f7ea1, - 0xcf949cc9, 0x35294ec1, 00000000 + 0xcf949cc9, 0x35294ec1 }, { 0x4d05a54c, 0xafd895ea, 0xd4c3de0c, 0x1d342540, 0xe3ddda24, - 0xd7233767, 0x33abac0e, 00000000 + 0xd7233767, 0x33abac0e }, { 0x99a9daa9, 0xaafa9115, 0x1f232bc1, 0xd5d0436c, 0xf03d0e66, - 0x927d6d43, 0x7faa9f10, 00000000 + 0x927d6d43, 0x7faa9f10 } }, { { 0x63328962, 0xd448688c, 0xbff31cda, 0x89a8e324, 0x5d9a19cd, - 0x5ace1cf1, 0xcfd77cc, 00000000 + 0x5ace1cf1, 0xcfd77cc }, { 0xafed5fc7, 0xd433ea6a, 0xcc226167, 0x2dd565d3, 0x7b94c7de, - 0xf1c94852, 0xd785fe9b, 00000000 + 0xf1c94852, 0xd785fe9b }, { 0x23226770, 0x253b153a, 0xb9a22e88, 0xb688240, 0xa6bb1466, - 0xfcfbc8e6, 0x7675f5a6, 00000000 + 0xfcfbc8e6, 0x7675f5a6 } }, { { 0xb4d671a9, 0xed128611, 0x6d0ee421, 0x201d6831, 0xdb833fa2, - 0x67a7aafc, 0x799a5a01, 00000000 + 0x67a7aafc, 0x799a5a01 }, { 0xc08a548a, 0x6afcfb9d, 0x4eafadd9, 0x5370ade, 0xe43b1418, - 0x84b4f121, 0x39c66260, 00000000 + 0x84b4f121, 0x39c66260 }, { 0x1d0551cf, 0xeb4d5fd1, 0xf89df61d, 0x2e67efd0, 0x3a5e65bc, - 0xfd3bcdbb, 0xbeef87a, 00000000 + 0xfd3bcdbb, 0xbeef87a } }, { { 0xe766b57, 0x80a35ba1, 0x9f2d5bfc, 0xc14075e5, 0x9a5af932, - 0x4af90ca3, 0x950798ad, 00000000 + 0x4af90ca3, 0x950798ad }, { 0x842b96a2, 0x1150a845, 0x54b629ba, 0x400717cd, 0xdcc262fd, - 0x1199eb3e, 0xb1c79350, 00000000 + 0x1199eb3e, 0xb1c79350 }, { 0x36517d12, 0xeaa89625, 0x55997b23, 0x7967bbea, 0x80fbdf2e, - 0x7daf60c9, 0x669d3e80, 00000000 + 0x7daf60c9, 0x669d3e80 } }, { { 0x3a0e2374, 0x9767a79f, 0x59529d87, 0x102b4f4c, 0x2c4df283, - 0xeb2770a0, 0xaa1caa97, 00000000 + 0xeb2770a0, 0xaa1caa97 }, { 0x1237e169, 0xf2114380, 0xa507372a, 0xeb244b23, 0x18c04647, - 0x7d9e4ef5, 0xccbedd33, 00000000 + 0x7d9e4ef5, 0xccbedd33 }, { 0x62b3af1c, 0xd7ba71dd, 0xf855f8d7, 0xa092b906, 0xda3d8c2f, - 0x5f1a38a2, 0x5226e0d4, 00000000 + 0x5f1a38a2, 0x5226e0d4 } }, { { 0xcb23eb85, 0x84a9a677, 0x19d8faf3, 0x24f7f598, 0x2133b70b, - 0xf7517ac8, 0x9d74dda8, 00000000 + 0xf7517ac8, 0x9d74dda8 }, { 0x71e38fd1, 0xc0b15322, 0x81712e74, 0xdea84b98, 0x147a58ae, - 0x41d3a9da, 0x2b1326bc, 00000000 + 0x41d3a9da, 0x2b1326bc }, { 0x8acf6b6c, 0x34aa3ea0, 0xa6b4e7d4, 0xdccda790, 0xeb454844, - 0xd383d0c6, 0xe3492c8f, 00000000 + 0xd383d0c6, 0xe3492c8f } } }, @@ -25667,211 +25667,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xf0d34acb, 0x11fa5e97, 0x10ab69db, 0xc5afa106, 0x6146a331, - 0x6973d2f3, 0x69fa2d67, 00000000 + 0x6973d2f3, 0x69fa2d67 }, { 0xd8c0495d, 0x5e5c3905, 0x9638a5b2, 0x97eebc3b, 0x74e9b0c1, - 0xda6a4e47, 0x33a1791e, 00000000 + 0xda6a4e47, 0x33a1791e }, { 0x19bff7b8, 0x6ff6d80d, 0xce51fc0b, 0x46d4ee18, 0x1d5a36a2, - 0x1ab71e5e, 0x6317fed2, 00000000 + 0x1ab71e5e, 0x6317fed2 } }, { { 0x849c7a74, 0xa2c54410, 0x419059bf, 0x756107f4, 0x3f43fffb, - 0x860a47ce, 0x8224d5c2, 00000000 + 0x860a47ce, 0x8224d5c2 }, { 0xb832e2b5, 0xa3b1f5bc, 0xabf556b7, 0xd6cc5bd2, 0x51008b04, - 0x42425e54, 0x609eed7a, 00000000 + 0x42425e54, 0x609eed7a }, { 0xbc8e6eef, 0x8b131731, 0x5995f222, 0x51428514, 0x4952e1cc, - 0xeadbeeb7, 0x99c29828, 00000000 + 0xeadbeeb7, 0x99c29828 } }, { { 0xf22dec30, 0xb5c5414f, 0x7125d7d8, 0xd76a214c, 0xaae71f70, - 0x5c5f579a, 0xb1ed26dc, 00000000 + 0x5c5f579a, 0xb1ed26dc }, { 0x88d42114, 0x70e9570a, 0xc5c4c1ff, 0x8fda05b2, 0xa7cbc5ed, - 0x891c4af, 0x28675f58, 00000000 + 0x891c4af, 0x28675f58 }, { 0x89843f4d, 0xe0f08603, 0x559f1406, 0x848e53b, 0x127ea5a8, - 0xf1160847, 0x6a717d68, 00000000 + 0xf1160847, 0x6a717d68 } }, { { 0xe18e1889, 0xf61c9a24, 0xc5902e07, 0xc5bdd815, 0x4003912, - 0x389d3c24, 0x8b534213, 00000000 + 0x389d3c24, 0x8b534213 }, { 0x5e972a6a, 0xd39978fc, 0x1f69835c, 0x23d21c57, 0xd8b4eece, - 0x9625c7a5, 0xd205e4dc, 00000000 + 0x9625c7a5, 0xd205e4dc }, { 0x22173d41, 0x7b8f15fc, 0xb5dd28b0, 0x81fe6db, 0xc21a0a5, - 0x48d5e781, 0xd6a35a32, 00000000 + 0x48d5e781, 0xd6a35a32 } }, { { 0x242f4905, 0x6d4937de, 0xdcc185d0, 0x14664daa, 0xf1e0a0bd, - 0x77ddf989, 0xced3ec74, 00000000 + 0x77ddf989, 0xced3ec74 }, { 0xcc0f27ae, 0x5fdeebef, 0x4a1daa4c, 0x82633608, 0x1eaab84e, - 0xe4406a9c, 0x102fe8a5, 00000000 + 0xe4406a9c, 0x102fe8a5 }, { 0xd56eb205, 0x4e39a316, 0x8686f22e, 0x1596fe26, 0xa152f879, - 0x89d302ab, 0xc1a42789, 00000000 + 0x89d302ab, 0xc1a42789 } }, { { 0xbdd01ed7, 0x26d7f856, 0x31da7206, 0x5453d80, 0x85acff4e, - 0x88228f72, 0x97c6f13a, 00000000 + 0x88228f72, 0x97c6f13a }, { 0xcca790d7, 0x5f6ab5af, 0x58d0f069, 0xa2fb4fd0, 0xc0ed541, - 0x57a6d48c, 0xbf68fea3, 00000000 + 0x57a6d48c, 0xbf68fea3 }, { 0x40f9bf18, 0xb9a8da09, 0x7f4d7d3c, 0x40547f55, 0xef7f0dff, - 0x420389f3, 0x84b8a9df, 00000000 + 0x420389f3, 0x84b8a9df } }, { { 0xd25efdb3, 0x74ac44fe, 0x80e28190, 0x6e817f55, 0x1713d146, - 0x6daccfa9, 0x865999c8, 00000000 + 0x6daccfa9, 0x865999c8 }, { 0x316315fb, 0x93d1a20f, 0xa107050a, 0x7294febc, 0x87bc0b46, - 0xf213b07f, 0xaaa6179, 00000000 + 0xf213b07f, 0xaaa6179 }, { 0x841f0121, 0xe2598854, 0x11003c6e, 0x8605c883, 0xd9eb15df, - 0xf637eb4c, 0xd43ef3ff, 00000000 + 0xf637eb4c, 0xd43ef3ff } }, { { 0x2e9d500, 0x755eb604, 0x57b40caf, 0x9d65c140, 0x16fdc7dd, - 0x2e5194fd, 0xbc854551, 00000000 + 0x2e5194fd, 0xbc854551 }, { 0xcd497892, 0x24e5829c, 0x60374551, 0xd9be0df5, 0x40878fa8, - 0x6cacdf40, 0xb28b71a5, 00000000 + 0x6cacdf40, 0xb28b71a5 }, { 0x9d798a33, 0xaedbb4c, 0x72178b76, 0xd5b9baaa, 0xcdb80cee, - 0xed05d010, 0xdff6dacb, 00000000 + 0xed05d010, 0xdff6dacb } }, { { 0xfce51376, 0xef9f81be, 0xb74ad30d, 0xa6cf27d3, 0x66502aef, - 0xb66544eb, 0x2bcc2db9, 00000000 + 0xb66544eb, 0x2bcc2db9 }, { 0xa281450e, 0xafeb44c, 0xe5222701, 0x3175f0e6, 0xf93b737f, - 0x7946898b, 0xefd06781, 00000000 + 0x7946898b, 0xefd06781 }, { 0xc9c3e1f7, 0x79287b1e, 0x3d8da31e, 0x74673db1, 0xba8d864a, - 0x2dd1ba81, 0x48a3b6c6, 00000000 + 0x2dd1ba81, 0x48a3b6c6 } }, { { 0x9e6dec, 0x102f9da4, 0x9e3ba0f5, 0x5501448f, 0xa8635b38, - 0x667d310a, 0xe353a5d, 00000000 + 0x667d310a, 0xe353a5d }, { 0xd140733c, 0xe4ead7d5, 0x97a086b3, 0xc2833782, 0x6e1694af, - 0xb35b2675, 0x3446a6ed, 00000000 + 0xb35b2675, 0x3446a6ed }, { 0x98d601b1, 0x4b433ab5, 0x43341023, 0xa3a4622, 0x780b0569, - 0x25338580, 0x9803c47b, 00000000 + 0x25338580, 0x9803c47b } }, { { 0x97dcb408, 0xc8a8016c, 0x5cb09213, 0x4cf1064, 0xcfb5f0bf, - 0xe019fe99, 0xc4c31add, 00000000 + 0xe019fe99, 0xc4c31add }, { 0x51f50877, 0xab874561, 0x90b7ebd4, 0x84e891f1, 0xfeb1727d, - 0xe105d813, 0x1ddcbd3c, 00000000 + 0xe105d813, 0x1ddcbd3c }, { 0xd3eeb3a4, 0xcba4c5a7, 0x14f2c216, 0x46d45d60, 0x27823447, - 0x70ff28db, 0x638266da, 00000000 + 0x70ff28db, 0x638266da } }, { { 0x3d8617b8, 0xf58d1a9d, 0xa6cf1f22, 0xec0817d9, 0xe89a6f5a, - 0xbf80ed50, 0xf0ee8af8, 00000000 + 0xbf80ed50, 0xf0ee8af8 }, { 0xc659b7ea, 0x6f9c452f, 0xfe4b41ae, 0x75ba1c31, 0x9b8282c8, - 0x3e17ed82, 0xdfcd4c68, 00000000 + 0x3e17ed82, 0xdfcd4c68 }, { 0xf006fed5, 0x4cb75a06, 0xea0e7b52, 0xa757c5b0, 0xe020ceb8, - 0xc84f52f1, 0x74540f22, 00000000 + 0xc84f52f1, 0x74540f22 } }, { { 0x79f1f442, 0xc07836ae, 0x897ea99d, 0x48ee8c9d, 0x78aed868, - 0xdefc0774, 0x367be4a1, 00000000 + 0xdefc0774, 0x367be4a1 }, { 0xedb30dc9, 0xea9344bf, 0x5490d7f7, 0x26333f23, 0x968f1cb1, - 0x441c23f4, 0x6680fee5, 00000000 + 0x441c23f4, 0x6680fee5 }, { 0x7073c318, 0xc55af5e5, 0xfa147f4c, 0x8e189a28, 0xcbd27adb, - 0xb58f865f, 0xdde5c76a, 00000000 + 0xb58f865f, 0xdde5c76a } }, { { 0xe4b9fe5, 0x7369867f, 0x5fedcf62, 0xdf494cea, 0x4e167d4f, - 0x6ec32fbb, 0xeaa4e6a1, 00000000 + 0x6ec32fbb, 0xeaa4e6a1 }, { 0x7e79618c, 0x5a9402f4, 0x2253af2f, 0x6a068598, 0xe647a4ac, - 0xb88c43bb, 0x4b6ce471, 00000000 + 0xb88c43bb, 0x4b6ce471 }, { 0xba84e314, 0xc36bc0df, 0x1e2df531, 0x872730ce, 0x7c248bce, - 0x5214d3db, 0x75a43251, 00000000 + 0x5214d3db, 0x75a43251 } }, { { 0xc89dfba5, 0x32ab85a7, 0x440a3841, 0x4ff2992c, 0xa9cc863d, - 0xecf199b2, 0x8749b142, 00000000 + 0xecf199b2, 0x8749b142 }, { 0xfcaa1e10, 0x70f4091a, 0x6b815264, 0xafe5a256, 0x524b9518, - 0x51104c91, 0x9d9c759, 00000000 + 0x51104c91, 0x9d9c759 }, { 0x777c90f2, 0x456b813c, 0x904e4213, 0x4da38d75, 0xf89aa0e0, - 0x6ac833b8, 0xb0b7e2a8, 00000000 + 0x6ac833b8, 0xb0b7e2a8 } } }, @@ -25879,211 +25879,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x10c7cbe4, 0x97eb797, 0xf48ebed4, 0xde2e6a29, 0x91a02030, - 0x343ea139, 0xacc856ef, 00000000 + 0x343ea139, 0xacc856ef }, { 0xec5c655a, 0xb4f0f31, 0x37a2d022, 0x91465d0, 0x1e3d24d5, - 0x18ae049d, 0xfbd86512, 00000000 + 0x18ae049d, 0xfbd86512 }, { 0xe5a77f21, 0x9a28ea08, 0xaf88e15f, 0x20c7491, 0xdf64d86e, - 0xad9795c7, 0x1d12942f, 00000000 + 0xad9795c7, 0x1d12942f } }, { { 0xf608c6ee, 0x468f0c64, 0xed8b321a, 0x5bc4251f, 0xc0107354, - 0x6a4c85f7, 0x6baa9799, 00000000 + 0x6a4c85f7, 0x6baa9799 }, { 0xa8d5abad, 0x35bd9451, 0x392c82c1, 0x772f8cec, 0x65e748d0, - 0xef3ac539, 0x7e4fcf47, 00000000 + 0xef3ac539, 0x7e4fcf47 }, { 0x3957921, 0x718c24da, 0xe86dccee, 0x892c751a, 0x7aa4d260, - 0x8109dbef, 0x1bb929a3, 00000000 + 0x8109dbef, 0x1bb929a3 } }, { { 0xe4cadc42, 0xdd831746, 0x519b4bf6, 0x257bac7e, 0xebfb3b58, - 0xe5061e1c, 0x211cf576, 00000000 + 0xe5061e1c, 0x211cf576 }, { 0x8cbc5ec9, 0xa8883066, 0x7820be9d, 0xc876e547, 0x42b3c4dd, - 0x25e3c3d4, 0xa680d566, 00000000 + 0x25e3c3d4, 0xa680d566 }, { 0x27c8a377, 0x2b8eccf1, 0x26ea9ea4, 0xbd5d17cf, 0x565ab37a, - 0x457be72e, 0x16f36816, 00000000 + 0x457be72e, 0x16f36816 } }, { { 0x1e077967, 0x5a13e570, 0xb75a598f, 0xf602e1d0, 0x233ded9, - 0xa7681666, 0xdde667cd, 00000000 + 0xa7681666, 0xdde667cd }, { 0xddf2cb1c, 0x9defdf24, 0xb502b93c, 0xf02e60b2, 0xa1319631, - 0x38c3396f, 0x27c11df5, 00000000 + 0x38c3396f, 0x27c11df5 }, { 0x8c3b6a86, 0xe2f4a4d4, 0xb513896f, 0xf71176b4, 0x1dfc0ba8, - 0xe6243b46, 0x12ff4f39, 00000000 + 0xe6243b46, 0x12ff4f39 } }, { { 0x9a472de, 0x9d0c1df5, 0xa6a4480b, 0x88e84ee8, 0xa5bfdf89, - 0x4710006, 0x62db759a, 00000000 + 0x4710006, 0x62db759a }, { 0x4571ac3b, 0xe459d6b, 0x5d375d74, 0x11aba4ef, 0xe418d089, - 0x6bd66712, 0x9fd2271d, 00000000 + 0x6bd66712, 0x9fd2271d }, { 0xaa2d986, 0xd5a24314, 0x7833333f, 0x9874d094, 0x5e08017f, - 0xefcd5f34, 0x8be61c01, 00000000 + 0xefcd5f34, 0x8be61c01 } }, { { 0x6c2e44c1, 0xc3642131, 0x4aaea695, 0x7ccd1f16, 0xc2553d34, - 0xef972b3a, 0x7d6fbd2f, 00000000 + 0xef972b3a, 0x7d6fbd2f }, { 0xc11ac48d, 0xeff99dd0, 0x2a6009c2, 0x662901a0, 0xfdda91c2, - 0xcf2a3375, 0x94c26b8c, 00000000 + 0xcf2a3375, 0x94c26b8c }, { 0x783523a1, 0xb850a1a4, 0xc32a71b, 0x812c3be7, 0xb8f82e9e, - 0xd669aeb4, 0xd175f60d, 00000000 + 0xd669aeb4, 0xd175f60d } }, { { 0xd10effb0, 0x8ffb166e, 0xbcb86af1, 0xb046856c, 0xdd88626c, - 0xa54c6d4f, 0x6dc17fb3, 00000000 + 0xa54c6d4f, 0x6dc17fb3 }, { 0xfffd220c, 0x1b952f65, 0x6db09413, 0xd0e402, 0x62bb8216, - 0xf52e103f, 0x4c0260f9, 00000000 + 0xf52e103f, 0x4c0260f9 }, { 0x1de73b1e, 0x38656899, 0x6fda6fe3, 0xf24d18a4, 0x94de19d, - 0x24ae593f, 0x2da4bcfb, 00000000 + 0x24ae593f, 0x2da4bcfb } }, { { 0xd5f59cd1, 0xe6bda434, 0xafff94a3, 0x3aeea443, 0x6e91511f, - 0x33712d98, 0xdc5eacb0, 00000000 + 0x33712d98, 0xdc5eacb0 }, { 0x9f9a494, 0xe4664c61, 0xb52ecc07, 0x96655df9, 0x2c39d31e, - 0x66f1c8a6, 0x4dda20f1, 00000000 + 0x66f1c8a6, 0x4dda20f1 }, { 0xe05f6ba3, 0x5e90438d, 0xc561c8d3, 0xf310607f, 0xa094d02, - 0xecc866ef, 0x85cfb9f9, 00000000 + 0xecc866ef, 0x85cfb9f9 } }, { { 0xfe3878c3, 0xb5e76ee9, 0x3894edf6, 0x5f8b5751, 0x9756d71f, - 0x1f3b9e15, 0xd1bd31de, 00000000 + 0x1f3b9e15, 0xd1bd31de }, { 0xbc73d63e, 0xf6154ed7, 0x239a5306, 0xd7849c5f, 0xce6d8650, - 0xf40eb03d, 0x2c8d8488, 00000000 + 0xf40eb03d, 0x2c8d8488 }, { 0x302e48c, 0x5de37b1b, 0x481c0de, 0xc2540ce1, 0xbf990ecc, - 0xa34b4e86, 0xd6b9e58, 00000000 + 0xa34b4e86, 0xd6b9e58 } }, { { 0xea68cef5, 0x2ca9ea8d, 0x2798da52, 0xd137e82, 0x8a237a3a, - 0x1ffb1881, 0x9555150, 00000000 + 0x1ffb1881, 0x9555150 }, { 0x2128744c, 0x4ca4ef0e, 0xa253cfc6, 0xda40f1df, 0x5baea721, - 0x6327d8fe, 0xc3f05e75, 00000000 + 0x6327d8fe, 0xc3f05e75 }, { 0xcce1dbec, 0xba04418d, 0x67def824, 0x207992fd, 0x2770c2be, - 0x9ed6184f, 0xda43a409, 00000000 + 0x9ed6184f, 0xda43a409 } }, { { 0x840c0630, 0x7024b41, 0x7db6812d, 0xc10dcf15, 0xab2a80f6, - 0xe0f40097, 0x6a0e9411, 00000000 + 0xe0f40097, 0x6a0e9411 }, { 0xb63a71db, 0x3081932a, 0xe6634eec, 0x885c460b, 0xb41d90fa, - 0x3c647739, 0x7d16e7f3, 00000000 + 0x3c647739, 0x7d16e7f3 }, { 0x33e0732e, 0x9f75696c, 0x5fcfdf9e, 0x48f6be29, 0x60dcb99d, - 0x610d5627, 0x67d18726, 00000000 + 0x610d5627, 0x67d18726 } }, { { 0x72183b16, 0xc6650914, 0x99a9fe36, 0x1204a4d1, 0xbaa73c60, - 0x107dfeb3, 0xf389c1c, 00000000 + 0x107dfeb3, 0xf389c1c }, { 0xdf2197c8, 0xce96c86b, 0xcf9b46e0, 0xbfda9178, 0xb7b54423, - 0xe3f8dad7, 0x7d771e41, 00000000 + 0xe3f8dad7, 0x7d771e41 }, { 0x59885c92, 0x1dd8eb27, 0xfc90aaf9, 0xcdcaa2af, 0x701bb1ad, - 0xf0c86204, 0xa2e7edde, 00000000 + 0xf0c86204, 0xa2e7edde } }, { { 0x5a270a6d, 0xfbe0c100, 0xd21eb345, 0xc6a643f7, 0x3e9ab6e, - 0x23fc6810, 0x1bff5dd6, 00000000 + 0x23fc6810, 0x1bff5dd6 }, { 0x7ec79f74, 0x5eebd76d, 0xb9e5ad17, 0xe8383742, 0x209389cb, - 0xe215c7fd, 0xa6c143dc, 00000000 + 0xe215c7fd, 0xa6c143dc }, { 0x72b67802, 0x32661331, 0xa59f4860, 0xe51917f0, 0xdade8e9d, - 0x9f224df9, 0x6c4c2887, 00000000 + 0x9f224df9, 0x6c4c2887 } }, { { 0xce1286c3, 0x24ee5e57, 0x29521880, 0x6bff084e, 0x31d5476e, - 0x1e3ede0b, 0x60005227, 00000000 + 0x1e3ede0b, 0x60005227 }, { 0x9a507694, 0x518f791b, 0xd78bcdf2, 0xdab3fccb, 0x9a83f70f, - 0xd2655470, 0xd8f417a8, 00000000 + 0xd2655470, 0xd8f417a8 }, { 0x36e42bc4, 0x9bef4c5f, 0xd9e091ee, 0x52648828, 0x121d9774, - 0xf28fe3cf, 0xa307885d, 00000000 + 0xf28fe3cf, 0xa307885d } }, { { 0xfa6fda2c, 0x7913f227, 0xb4581617, 0xdffc7ed4, 0x8c24ab41, - 0x328d83e6, 0xe4081fa1, 00000000 + 0x328d83e6, 0xe4081fa1 }, { 0xf8ef3cf, 0x3fde04f4, 0xcd02cebc, 0x6d004d42, 0x6dd2fd3e, - 0x7d12c495, 0x9a735df1, 00000000 + 0x7d12c495, 0x9a735df1 }, { 0x57251194, 0x4acbcf95, 0xa683fe5, 0xe2334343, 0x7f23314c, - 0xb0a28f96, 0x4de2ce05, 00000000 + 0xb0a28f96, 0x4de2ce05 } } }, @@ -26091,211 +26091,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xc24c4a6d, 0x44ad07d3, 0x29150b80, 0xfbbb39e2, 0xebd01fdc, - 0x9fa252bd, 0xd9cd110d, 00000000 + 0x9fa252bd, 0xd9cd110d }, { 0xe4e8c571, 0x79d2efdd, 0x124376fa, 0xe589fd55, 0x8e605bf1, - 0x94915fd8, 0x83b5abf9, 00000000 + 0x94915fd8, 0x83b5abf9 }, { 0x8bbbceb1, 0xcf1548e5, 0x46b6ec9e, 0xa183cadc, 0xbff4fb6d, - 0xedf54c7f, 0x975e6e09, 00000000 + 0xedf54c7f, 0x975e6e09 } }, { { 0x85aa4cc2, 0xa95a9812, 0xc4000acb, 0x54eb27dc, 0xb4550e17, - 0xb1214fb4, 0x6bcfd9c1, 00000000 + 0xb1214fb4, 0x6bcfd9c1 }, { 0x619849e5, 0xdfa72eba, 0x31b01377, 0xcf508830, 0x1f9eb51e, - 0xa1ba8194, 0x381e075b, 00000000 + 0xa1ba8194, 0x381e075b }, { 0x345548e1, 0xdd1fac08, 0x2220e6c3, 0x34ae8342, 0x3017f066, - 0x3a1025d9, 0xd738f16e, 00000000 + 0x3a1025d9, 0xd738f16e } }, { { 0xa36a0849, 0x32074e95, 0xd6c5f184, 0x3ddcfe04, 0x71e64c1e, - 0x2b7f0ee3, 0x6a5e780e, 00000000 + 0x2b7f0ee3, 0x6a5e780e }, { 0x673eee3, 0x5114ee7f, 0xa77d010a, 0xbdca9e15, 0xc6917aed, - 0x333bc957, 0xe1ab309e, 00000000 + 0x333bc957, 0xe1ab309e }, { 0x83cfb2e5, 0x36f48394, 0x705d14a4, 0x4b4cfa26, 0x7f207cad, - 0xb0d0c3af, 0xa87a8c19, 00000000 + 0xb0d0c3af, 0xa87a8c19 } }, { { 0x49c32c72, 0xb7d74afe, 0xffc71c64, 0x6e0c5c97, 0x3651290a, - 0xa2b7fa52, 0xb2dd6ffb, 00000000 + 0xa2b7fa52, 0xb2dd6ffb }, { 0xee58c008, 0xf83165e8, 0x19bc2c67, 0xe1a4fe3d, 0x7326f8eb, - 0x1e76ef7b, 0xa46594b9, 00000000 + 0x1e76ef7b, 0xa46594b9 }, { 0xc53d57b3, 0xeb0933dc, 0x572b5266, 0x23f0338e, 0x55b78ff0, - 0x808a68f9, 0xf7910590, 00000000 + 0x808a68f9, 0xf7910590 } }, { { 0xe929985d, 0x17b60267, 0x135a6b5d, 0x965c4e1f, 0x7308788f, - 0xe289c010, 0x4a8a2610, 00000000 + 0xe289c010, 0x4a8a2610 }, { 0xbd34f06d, 0xf022947f, 0x3efbdf9c, 0xd7a45ea2, 0x1c9c81a9, - 0x138c79ae, 0xfa21f31f, 00000000 + 0x138c79ae, 0xfa21f31f }, { 0x3c44a969, 0xc5ed8e62, 0xa2506101, 0xee6f6e1d, 0xfb5a06da, - 0x6256649b, 0x9e50053f, 00000000 + 0x6256649b, 0x9e50053f } }, { { 0x18773fe2, 0xdc4c5c23, 0x6ca3dd0c, 0x98fa3bed, 0x1740b0db, - 0x2c8ad431, 0xb599d83d, 00000000 + 0x2c8ad431, 0xb599d83d }, { 0x11be4a9d, 0x71c85575, 0x28b4b68e, 0xa43d405, 0xa49f77cf, - 0x22d72688, 0x7a9e24c8, 00000000 + 0x22d72688, 0x7a9e24c8 }, { 0x77994f7d, 0xbaf50a39, 0x344640a2, 0x23b5e2b6, 0x4bae4985, - 0xb60ed0d3, 0x929f9c37, 00000000 + 0xb60ed0d3, 0x929f9c37 } }, { { 0x3b75e5a9, 0xd9a5afdd, 0x63dc7ffa, 0x536cb79c, 0xbc41a620, - 0xde9914ab, 0xb1cf0391, 00000000 + 0xde9914ab, 0xb1cf0391 }, { 0x12f29530, 0xed4a1c28, 0xb7fd0b40, 0x7b048870, 0x5966ad95, - 0x9890d678, 0xa86e20d1, 00000000 + 0x9890d678, 0xa86e20d1 }, { 0xd561b8ff, 0xf80710d4, 0xa5e074ca, 0x6ed1662b, 0x32759d30, - 0x9196603e, 0x83e5731d, 00000000 + 0x9196603e, 0x83e5731d } }, { { 0x1f521897, 0x778d222e, 0x7661c372, 0x358cc1e1, 0xac11f6ed, - 0xcbdae539, 0x85975ed0, 00000000 + 0xcbdae539, 0x85975ed0 }, { 0x5876a301, 0x9d56bc5, 0x1a2003a2, 0x48cd11ee, 0x4a3ef6e6, - 0xb01530e8, 0xbc138c47, 00000000 + 0xb01530e8, 0xbc138c47 }, { 0x5ac12d0f, 0xc11fd2cd, 0xd208cbb6, 0x6bbca3b2, 0xd687239f, - 0xcca46ea8, 0xeeb41944, 00000000 + 0xcca46ea8, 0xeeb41944 } }, { { 0x7135b786, 0x3ed55d47, 0xd951bad, 0xbb547a5a, 0x3798ccf1, - 0x521e7a60, 0xdc74c0b9, 00000000 + 0x521e7a60, 0xdc74c0b9 }, { 0xd6100338, 0x711cb03b, 0xb71327f4, 0xe49db94, 0x2aba414b, - 0xbc5f853a, 0x31feb165, 00000000 + 0xbc5f853a, 0x31feb165 }, { 0xb6e02cb7, 0xcd5e778f, 0xde11e10e, 0x996d2d75, 0xbf3ff103, - 0xd8ec3e6a, 0xb3854d36, 00000000 + 0xd8ec3e6a, 0xb3854d36 } }, { { 0xaa33cf69, 0xdac8feed, 0x5c157ee3, 0xab8a354f, 0xb5caf575, - 0x1f248886, 0xfbf81040, 00000000 + 0x1f248886, 0xfbf81040 }, { 0x84681347, 0x56aea67e, 0x536491df, 0x78d8afd8, 0x35576b78, - 0x1071bc81, 0x1c7b5548, 00000000 + 0x1071bc81, 0x1c7b5548 }, { 0x3b5f3c48, 0x8251c56d, 0xe2cc3301, 0x4a5d7595, 0xc78f315b, - 0x35e4753, 0x485d11e4, 00000000 + 0x35e4753, 0x485d11e4 } }, { { 0xb32c3834, 0xd2f06b9c, 0x8adfb599, 0xda4702f0, 0x23606cd2, - 0x54e3ef31, 0x1a6a5163, 00000000 + 0x54e3ef31, 0x1a6a5163 }, { 0x38e9c750, 0x72d0b28e, 0x6abdf47e, 0x1af0b089, 0x7b18da66, - 0xa1ea40bd, 0xe11863c3, 00000000 + 0xa1ea40bd, 0xe11863c3 }, { 0x4122db4a, 0xe49c8f54, 0x5cc0daa4, 0x486e7c9, 0xdc457b3b, - 0x157a004d, 0x8fcbde72, 00000000 + 0x157a004d, 0x8fcbde72 } }, { { 0x3f9d5413, 0x1dab962a, 0x681bd06e, 0x64da9bff, 0x273e0b66, - 0x4127eb3b, 0x42adc6a8, 00000000 + 0x4127eb3b, 0x42adc6a8 }, { 0xaa596662, 0xa508a7c, 0x808a891f, 0xf29e1b6b, 0xebd6fbb9, - 0x9ec32ff9, 0x2f749845, 00000000 + 0x9ec32ff9, 0x2f749845 }, { 0xdaea035c, 0xc1c33c3c, 0xbc1d71d9, 0xb3343e35, 0x29552c, - 0xb48c3567, 0xaf2a723f, 00000000 + 0xb48c3567, 0xaf2a723f } }, { { 0x87ff7f3b, 0x850180a9, 0xd35689ad, 0x1b5624f0, 0x8ef1d121, - 0x5e5e4fce, 0x6c987c94, 00000000 + 0x5e5e4fce, 0x6c987c94 }, { 0x15a9055e, 0x9f656653, 0x488ff701, 0xd8ec553f, 0xf7cedfec, - 0x415ad10c, 0xe487d653, 00000000 + 0x415ad10c, 0xe487d653 }, { 0xfdfceb17, 0x2447d298, 0xff99641c, 0x1926998e, 0x29c1e9b7, - 0xcb38b129, 0xf8c53f2c, 00000000 + 0xcb38b129, 0xf8c53f2c } }, { { 0x599e33d9, 0x5a8504f2, 0xc07ffcd2, 0xa468e347, 0x3759464b, - 0x83de2103, 0xcd1a3787, 00000000 + 0x83de2103, 0xcd1a3787 }, { 0x697bc864, 0xb7950bfb, 0xfa4b9cea, 0x3df0d527, 0x33c11f99, - 0xc4eb1eee, 0xf8a10fff, 00000000 + 0xc4eb1eee, 0xf8a10fff }, { 0x97c0d73d, 0x762eb006, 0x938e92de, 0x6c4b8665, 0xb34339da, - 0xeb0f4dce, 0xfc50922b, 00000000 + 0xeb0f4dce, 0xfc50922b } }, { { 0x8c09bbee, 0xe8a59b43, 0xc06bfa6f, 0x4384e971, 0x3c8b3cda, - 0xe268f46, 0x3f1ae445, 00000000 + 0xe268f46, 0x3f1ae445 }, { 0x8e51bdb6, 0x7c0f86dd, 0xd7f8c02d, 0x4deefc02, 0xfaf39c, - 0x1ae3103, 0xda5f2782, 00000000 + 0x1ae3103, 0xda5f2782 }, { 0x84d59a42, 0x39849583, 0xcc612767, 0x586ccf4c, 0x9bbb3f8c, - 0x4f1c176a, 0x47dc12e, 00000000 + 0x4f1c176a, 0x47dc12e } } }, @@ -26303,211 +26303,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xcf1ac774, 0xfa010e39, 0xb212673a, 0x80ca393e, 0x83029f9d, - 0xbfa4e436, 0x1e22eb1a, 00000000 + 0xbfa4e436, 0x1e22eb1a }, { 0xebfa8872, 0x439da9ea, 0x45100e2e, 0x478dffd9, 0x4612098, - 0x3514f401, 0x4537419b, 00000000 + 0x3514f401, 0x4537419b }, { 0xc6444690, 0xc6a38af9, 0x3946f430, 0xea3a19e, 0x1adf41cb, - 0x12c115fb, 0x11cc1f71, 00000000 + 0x12c115fb, 0x11cc1f71 } }, { { 0xda12e65d, 0x3f2846ae, 0x65e8b504, 0xfba01df9, 0xc6869f03, - 0xed334392, 0xf0284714, 00000000 + 0xed334392, 0xf0284714 }, { 0xd3ea8ef7, 0xbc615b59, 0x7edda05e, 0x8267f718, 0xc51b0b63, - 0x1a0f4eba, 0x4721170, 00000000 + 0x1a0f4eba, 0x4721170 }, { 0x210fc068, 0xae3a9c50, 0x15b3f738, 0x2fe73f1f, 0x4d248ccf, - 0x32110e5, 0xe9d62cd8, 00000000 + 0x32110e5, 0xe9d62cd8 } }, { { 0x3e9a6845, 0xffc4fd18, 0xe54e98c7, 0x1996cdba, 0x5bb2e1b1, - 0xd9d02d44, 0x4ebcab24, 00000000 + 0xd9d02d44, 0x4ebcab24 }, { 0x5b513512, 0xe4c96ee6, 0x8cd2a20b, 0x5333b81c, 0xc6d467fb, - 0x5fa40d67, 0x2cd63d4f, 00000000 + 0x5fa40d67, 0x2cd63d4f }, { 0x6e0fdc4f, 0x4f8b763, 0xaa216110, 0x4be6e8d8, 0x2c9878b8, - 0xbb46da37, 0x349be880, 00000000 + 0xbb46da37, 0x349be880 } }, { { 0x96104bb7, 0x2163219a, 0x38a8d618, 0xc272e681, 0x6c998fbc, - 0x40cdd215, 0x691d6ef7, 00000000 + 0x40cdd215, 0x691d6ef7 }, { 0x1618dbf3, 0x9a4c8350, 0x7f0b5af, 0x79627116, 0x42e7d2d4, - 0xd4b056a5, 0xcb292766, 00000000 + 0xd4b056a5, 0xcb292766 }, { 0xfa461178, 0x36a89166, 0x931799f5, 0x6c4f2167, 0xbd47e985, - 0x4b72b69b, 0xb2ff7a39, 00000000 + 0x4b72b69b, 0xb2ff7a39 } }, { { 0x49ef1d33, 0x1548a2c2, 0x2ed86dd2, 0x2c62cfd, 0xff3855f5, - 0xe6dac8f4, 0xffc9f360, 00000000 + 0xe6dac8f4, 0xffc9f360 }, { 0xaef5b5d6, 0x681fe859, 0x5be1e2a2, 0xcbd398d8, 0x9191c92, - 0x77820b7d, 0x728f5c2c, 00000000 + 0x77820b7d, 0x728f5c2c }, { 0xe4d55500, 0x60260a6c, 0x546516d, 0x6b0fc3bf, 0xff278245, - 0xf294aa9a, 0x8b22d850, 00000000 + 0xf294aa9a, 0x8b22d850 } }, { { 0xf6c01443, 0x851d3459, 0x46efb386, 0x1a6ed3a8, 0x6af27a53, - 0xede994e7, 0x6d092b9b, 00000000 + 0xede994e7, 0x6d092b9b }, { 0x8225803d, 0x5fbd00d5, 0x87ff5f05, 0x193bc98, 0x90b088ff, - 0x7c6f1980, 0x8a5fd43c, 00000000 + 0x7c6f1980, 0x8a5fd43c }, { 0x558a0e53, 0xbf3f219d, 0x1658d118, 0xf64446a1, 0x21798e65, - 0x77137be7, 0x7e8c27e2, 00000000 + 0x77137be7, 0x7e8c27e2 } }, { { 0xc0f1a7c5, 0x11d50304, 0xa0207bd8, 0x4905bdbb, 0x60fd9f5a, - 0x8f70a037, 0xf6b6aeab, 00000000 + 0x8f70a037, 0xf6b6aeab }, { 0x52e9a2a, 0xdb814668, 0xccf3411e, 0x9f6a5d6b, 0xda83325, - 0xc92f8f84, 0x82755f96, 00000000 + 0xc92f8f84, 0x82755f96 }, { 0x3cc15f27, 0x6285142e, 0x7d1d3b2f, 0xe58e5f0d, 0x4a4dec7e, - 0x836cd02, 0x667e6a88, 00000000 + 0x836cd02, 0x667e6a88 } }, { { 0x9a2283e9, 0x727ca6e, 0xb7c6f6d4, 0xa4a53f8f, 0x2bea1c70, - 0xbd7e41e1, 0xb9328f66, 00000000 + 0xbd7e41e1, 0xb9328f66 }, { 0xbf39e495, 0xc5b40554, 0x5efda069, 0x533c693, 0x2bbf78ed, - 0xb6841aa, 0x8a5c73f9, 00000000 + 0xb6841aa, 0x8a5c73f9 }, { 0x594ea6da, 0x94d693be, 0x87d5e4fe, 0x28524a70, 0x65d2a8f5, - 0x97e00b78, 0xbbef6934, 00000000 + 0x97e00b78, 0xbbef6934 } }, { { 0x7e0d7ab9, 0x4bd85c24, 0x351fa26a, 0xa8737f51, 0x3c0afdb9, - 0xba2ebe59, 0x2b167158, 00000000 + 0xba2ebe59, 0x2b167158 }, { 0xb160c507, 0xe76d4847, 0x72b68b98, 0xa3b982fb, 0xaec73136, - 0xa7693dba, 0x624aa036, 00000000 + 0xa7693dba, 0x624aa036 }, { 0xe945e81c, 0x1e5d4fee, 0x345047b2, 0x72859850, 0xbb4efd15, - 0x69d4c184, 0xf0e594ff, 00000000 + 0x69d4c184, 0xf0e594ff } }, { { 0x414f76f, 0x68eedb7a, 0xc8996786, 0xf1409a8a, 0xbdd696d6, - 0xe7c74c0f, 0xb867a313, 00000000 + 0xe7c74c0f, 0xb867a313 }, { 0x88582f36, 0x9d638578, 0x5c42a03a, 0x4863cf9a, 0x42a3b296, - 0x3d7dde40, 0x489d6e08, 00000000 + 0x3d7dde40, 0x489d6e08 }, { 0xae20ce00, 0x639fe3bb, 0xdc1beff9, 0xb9be7a19, 0x5e2c1414, - 0xebd05b01, 0x1d1f2664, 00000000 + 0xebd05b01, 0x1d1f2664 } }, { { 0xde050021, 0xa06fcc5, 0x9814ac93, 0x2d86684, 0xdb848a69, - 0x609b638e, 0x79595e2b, 00000000 + 0x609b638e, 0x79595e2b }, { 0x5c31d6e2, 0x7ceb1996, 0x6cbc850b, 0x61a6b8a8, 0xda9a8ef2, - 0x2d7d2b5e, 0xdbf81e1e, 00000000 + 0x2d7d2b5e, 0xdbf81e1e }, { 0xa226a603, 0xc9518e2, 0x3c96fe68, 0x5b2b6389, 0x9ea992b8, - 0x78f8537e, 0x8ab5d540, 00000000 + 0x78f8537e, 0x8ab5d540 } }, { { 0xaf50aa26, 0x2742460b, 0x3c6f526a, 0x739967a9, 0xa36bce00, - 0x2d71eecf, 0x4f6ba6ca, 00000000 + 0x2d71eecf, 0x4f6ba6ca }, { 0x769296f3, 0x625ffa26, 0xc1e4f521, 0xb6c4a9d5, 0xefe6fa85, - 0xdc081fe, 0xf30fd30d, 00000000 + 0xdc081fe, 0xf30fd30d }, { 0xca415757, 0xe4828465, 0x1838939b, 0xeb6e6b9, 0xc4e40c76, - 0xe0bb0903, 0xb9b5e9ae, 00000000 + 0xe0bb0903, 0xb9b5e9ae } }, { { 0xdd713442, 0xfaad8091, 0xab006f16, 0x1c82cef4, 0x5433f74f, - 0xf42a091c, 0x8c66ce6d, 00000000 + 0xf42a091c, 0x8c66ce6d }, { 0xbcc3ebcb, 0xe02cd3c, 0xa5db32e, 0xf769f050, 0xd5a8baf5, - 0x8522e3d9, 0xe4073f97, 00000000 + 0x8522e3d9, 0xe4073f97 }, { 0x9f3c8245, 0xd54755c9, 0x8583ddfb, 0x686f99c0, 0x5da6f3a5, - 0x60a1dd90, 0x7eb63097, 00000000 + 0x60a1dd90, 0x7eb63097 } }, { { 0x4f83f555, 0xdf2e65d6, 0x8862a017, 0xdc038271, 0x85c34f20, - 0xa00213f5, 0xdd6b1104, 00000000 + 0xa00213f5, 0xdd6b1104 }, { 0x882bd128, 0x4c0b8a13, 0xc158acc5, 0x68be1f17, 0x3692e674, - 0x20e8c67d, 0x226b5da5, 00000000 + 0x20e8c67d, 0x226b5da5 }, { 0x4457f5ae, 0xdada81e7, 0xc6c54ae2, 0x9208ab03, 0x48170bea, - 0x47ca3b11, 0x30e1df3, 00000000 + 0x47ca3b11, 0x30e1df3 } }, { { 0xa681dafb, 0x8bbe4e8, 0x58856e7e, 0x2531be66, 0x2f9a90a3, - 0x983370d, 0x34b972ba, 00000000 + 0x983370d, 0x34b972ba }, { 0xf1a9e6b4, 0x398fb176, 0x84690117, 0x5ad167d3, 0x7d172964, - 0xd685cd2, 0x6c649938, 00000000 + 0xd685cd2, 0x6c649938 }, { 0x4e8ce2b7, 0x23867251, 0x317ba0e6, 0x1413c669, 0x1c49e1fa, - 0xfdeec0bc, 0x3417b49b, 00000000 + 0xfdeec0bc, 0x3417b49b } } }, @@ -26515,211 +26515,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xd2e67557, 0x658051bb, 0xfe86e85d, 0x88ceef0e, 0x8e728773, - 0x3b6945ca, 0xf1fe7145, 00000000 + 0x3b6945ca, 0xf1fe7145 }, { 0xe8960dea, 0x542bbfdd, 0x16583599, 0x690aa4f, 0x7afb115c, - 0x39a3ac27, 0x80b3fe30, 00000000 + 0x39a3ac27, 0x80b3fe30 }, { 0xe60dee09, 0xab48bdc1, 0x73f1970a, 0x56abe65d, 0xed04c792, - 0xd8d4add2, 0x7ff088e, 00000000 + 0xd8d4add2, 0x7ff088e } }, { { 0xb2b3d96e, 0x240dcdd6, 0x5d8bccad, 0xe76c02fa, 0xe06151fd, - 0xaa85f501, 0x14566027, 00000000 + 0xaa85f501, 0x14566027 }, { 0x7d532666, 0x220cf4db, 0xb707800e, 0x3f679f0, 0x834555d1, - 0x7e1ceb13, 0x101856eb, 00000000 + 0x7e1ceb13, 0x101856eb }, { 0x4a61217e, 0xcfd58961, 0x8d5aa2eb, 0x567d2642, 0xbbf6894b, - 0x4d4dcad8, 0xacb71a93, 00000000 + 0x4d4dcad8, 0xacb71a93 } }, { { 0x8803adc4, 0x3c25c369, 0xadc02199, 0x518cf10c, 0x572eb2e2, - 0xa6bcc381, 0xebecb6e2, 00000000 + 0xa6bcc381, 0xebecb6e2 }, { 0xeab95494, 0x3e7373f4, 0x743bf4a9, 0x3f522025, 0xc686aa5, - 0x9695c650, 0x92d409a0, 00000000 + 0x9695c650, 0x92d409a0 }, { 0x44dbd39a, 0xf533f39b, 0x4faef6b, 0xb3cf846e, 0xc600fcb8, - 0x3ed363dc, 0x387ea524, 00000000 + 0x3ed363dc, 0x387ea524 } }, { { 0xaa3c1b5e, 0x85e058de, 0x27c952bb, 0x7531c291, 0x57e68707, - 0xe448ce59, 0x5ce89624, 00000000 + 0xe448ce59, 0x5ce89624 }, { 0xce810eae, 0x177266e2, 0x8458256a, 0x413136ec, 0xa4594d1c, - 0x42761323, 0xaa6f2d53, 00000000 + 0x42761323, 0xaa6f2d53 }, { 0x6325c873, 0x47f8ff09, 0xc0287a61, 0x845aeca1, 0x94ad33eb, - 0x7af2960c, 0x60ce806a, 00000000 + 0x7af2960c, 0x60ce806a } }, { { 0x38ac154b, 0xac6c35e, 0x7a8d253b, 0xcff50f9d, 0x71c91461, - 0xc6a7cd56, 0x5851e61e, 00000000 + 0xc6a7cd56, 0x5851e61e }, { 0x8488305b, 0x4af6f56e, 0x3986e61d, 0x44c89dc0, 0xcd0dd256, - 0x60c166e8, 0x21ba8b8, 00000000 + 0x60c166e8, 0x21ba8b8 }, { 0x799c4867, 0x486da2cd, 0x2812cbca, 0xaed98f46, 0xba7c64dd, - 0xf1d984ce, 0x3b2a9b0f, 00000000 + 0xf1d984ce, 0x3b2a9b0f } }, { { 0x39979e4b, 0xc287050c, 0x768ae3e5, 0x2f952677, 0x206ac07d, - 0xb3cc4ae0, 0x324bf36f, 00000000 + 0xb3cc4ae0, 0x324bf36f }, { 0xa2d3d447, 0x37bbf486, 0x62636355, 0x857b40a6, 0xa0f493ee, - 0x858ebdd4, 0x46c26604, 00000000 + 0x858ebdd4, 0x46c26604 }, { 0x6a691c08, 0xeed3d950, 0xaf43f77b, 0x76345e14, 0x8d7ee094, - 0x237d9a1e, 0x3a3a2f75, 00000000 + 0x237d9a1e, 0x3a3a2f75 } }, { { 0x5fd6d495, 0x2859dd2c, 0x80a1f5eb, 0xf64048a, 0xd8908711, - 0xa840917c, 0x2771bac7, 00000000 + 0xa840917c, 0x2771bac7 }, { 0x94c053c9, 0x830948a9, 0xf4cba036, 0x942d27fc, 0x74a21f19, - 0x38481f7e, 0x295302ac, 00000000 + 0x38481f7e, 0x295302ac }, { 0x57bd6ecc, 0x7bbeaa85, 0xa503ef6, 0xf34c8101, 0xf0d46df8, - 0xab2842fb, 0x234f0d3d, 00000000 + 0xab2842fb, 0x234f0d3d } }, { { 0xaefb92ea, 0x7c80caca, 0x177b6f71, 0x74e4e5ef, 0x584eea31, - 0xabad70c0, 0x49101da4, 00000000 + 0xabad70c0, 0x49101da4 }, { 0x8a3007b8, 0x9872dd92, 0x1f1a31e3, 0x693c11db, 0x1d30eaa, - 0xe7ad21a0, 0x4571935b, 00000000 + 0xe7ad21a0, 0x4571935b }, { 0x582acb5, 0x25e16c66, 0xbca1824e, 0x487ef814, 0xe07fe890, - 0x79b8e2a6, 0xdac94e6, 00000000 + 0x79b8e2a6, 0xdac94e6 } }, { { 0x814307f9, 0xef855741, 0x8cfd9ad8, 0xae50a3a9, 0x235e4dd9, - 0x6dba5d62, 0x41ca0295, 00000000 + 0x6dba5d62, 0x41ca0295 }, { 0x55ba36a4, 0xe8a1aecb, 0x3a061b5c, 0xb8fe19, 0x687770fb, - 0x542f80e2, 0x48ed7b19, 00000000 + 0x542f80e2, 0x48ed7b19 }, { 0x408dfb78, 0x7a557f4c, 0xd6d06551, 0xdb01b3b4, 0x8f479c5, - 0x85646212, 0x7ebf41f8, 00000000 + 0x85646212, 0x7ebf41f8 } }, { { 0x9488ac53, 0xf2244679, 0x383d6b96, 0x41d0e84f, 0x1e744677, - 0x45dc9b9e, 0x800d3bba, 00000000 + 0x45dc9b9e, 0x800d3bba }, { 0xe1261c56, 0x5746c6d7, 0xcdb6a83, 0x6e8ff2f5, 0xa90b8a96, - 0x9f94357a, 0x628b8e79, 00000000 + 0x9f94357a, 0x628b8e79 }, { 0x997df8f7, 0xc736e70f, 0xe6360bea, 0x6014be14, 0xc3d6c53f, - 0xc4cdfe77, 0xa66cecb8, 00000000 + 0xc4cdfe77, 0xa66cecb8 } }, { { 0x3b4ba71b, 0xf12ab564, 0xfdd30a6d, 0x571fc3ab, 0x2158f296, - 0x71f530d0, 0xd20c8ed7, 00000000 + 0x71f530d0, 0xd20c8ed7 }, { 0xf729da, 0x1eddb5e4, 0x5d8d5bde, 0x51273478, 0x772fc614, - 0x62babdcc, 0x4bd28821, 00000000 + 0x62babdcc, 0x4bd28821 }, { 0xcf5b81b5, 0x6561ec1e, 0xb45f6bcc, 0x85be989f, 0xcc756477, - 0xdc1aed7e, 0xf22daba3, 00000000 + 0xdc1aed7e, 0xf22daba3 } }, { { 0x82f8ea0c, 0xb6f0716c, 0xafd323e1, 0x138b9576, 0xe47d2d97, - 0x328a6662, 0x71d270b7, 00000000 + 0x328a6662, 0x71d270b7 }, { 0xef8a07e2, 0x70fe174f, 0x5131befb, 0xc7fd7847, 0xd5628626, - 0xc7b93ade, 0x4ee4c091, 00000000 + 0xc7b93ade, 0x4ee4c091 }, { 0x6fb3df50, 0x971d630e, 0x3a5d1402, 0x3c126406, 0xbc0f4e1f, - 0x23580289, 0x3fb8f92f, 00000000 + 0x23580289, 0x3fb8f92f } }, { { 0x3d6f13c0, 0xd90de3fe, 0xffd14f68, 0x4a6b160, 0xb65c0898, - 0xf9f222e6, 0xec8c7863, 00000000 + 0xf9f222e6, 0xec8c7863 }, { 0xe211ff8e, 0x7dfc45b2, 0xed71a9c4, 0xbd2f7e7b, 0x3b73eb42, - 0x7fac992e, 0x44dec793, 00000000 + 0x7fac992e, 0x44dec793 }, { 0xa57882f5, 0xb9d03ac2, 0x808f4c3a, 0x58227184, 0xc91bfea4, - 0xf033ade8, 0x66d1ef43, 00000000 + 0xf033ade8, 0x66d1ef43 } }, { { 0x31356774, 0x7186b91, 0x6565bf3f, 0x739e6f53, 0x3c1fe305, - 0x614971e1, 0x435580f3, 00000000 + 0x614971e1, 0x435580f3 }, { 0x9d2d9d3f, 0xb867af37, 0xfb3e335e, 0xa7964143, 0x7a6705c1, - 0xc469c92e, 0xd661af34, 00000000 + 0xc469c92e, 0xd661af34 }, { 0x4033eaa5, 0xd0c93b19, 0x53e4168f, 0x35f07c4, 0xd7913a66, - 0xe4a35a0, 0x62977ac9, 00000000 + 0xe4a35a0, 0x62977ac9 } }, { { 0xa4bc52c6, 0x25a6845d, 0x788dbaa8, 0x34cc3abf, 0xb6ca569, - 0xf589a670, 0xd77513f1, 00000000 + 0xf589a670, 0xd77513f1 }, { 0x1056098e, 0xa6377ec8, 0xe67f9a2d, 0xbfeb8972, 0xe0aea0b9, - 0xf7276954, 0xe459f380, 00000000 + 0xf7276954, 0xe459f380 }, { 0x1eb68047, 0x8c32148e, 0x71cd30fb, 0xcbabbf1f, 0xa11287ad, - 0x37a659fd, 0xb6a002c3, 00000000 + 0x37a659fd, 0xb6a002c3 } } }, @@ -26727,211 +26727,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0xb0ba064, 0x1bdfe6c5, 0x88a7deda, 0xedefef3d, 0xb70c9604, - 0x5b888d45, 0x9fe81bfb, 00000000 + 0x5b888d45, 0x9fe81bfb }, { 0x33951103, 0x77986474, 0x6c888569, 0x8eb6aa0b, 0x6c71d4be, - 0x928f2bac, 0x631ff9e0, 00000000 + 0x928f2bac, 0x631ff9e0 }, { 0xba0ee988, 0x7bc6a75f, 0x491545a2, 0xbc78e513, 0x2e6643dd, - 0xe07cba6a, 0x2b226025, 00000000 + 0xe07cba6a, 0x2b226025 } }, { { 0x9d600dd5, 0xfc35ff16, 0x9cba05dc, 0x49203425, 0x53e67e6a, - 0x9336c220, 0xbd16928b, 00000000 + 0x9336c220, 0xbd16928b }, { 0x1909727a, 0x102170aa, 0x2f8285c, 0x96f9b4dd, 0xfd88508e, - 0x3cafabd5, 0xc250dff, 00000000 + 0x3cafabd5, 0xc250dff }, { 0x904ada5, 0x795d8d98, 0x59fe96fa, 0xf044fdb1, 0xd8546d35, - 0x3d34db58, 0x92dd6c9e, 00000000 + 0x3d34db58, 0x92dd6c9e } }, { { 0x1e4e012f, 0x51dc7c57, 0x640882e6, 0x1b75eccc, 0xb2c68438, - 0xb158defe, 0x68d29abf, 00000000 + 0xb158defe, 0x68d29abf }, { 0xb6e2f6ea, 0xb041f67f, 0x51bd5783, 0xa2481f3a, 0xdd2ac1f3, - 0x770d7c72, 0xc317812d, 00000000 + 0x770d7c72, 0xc317812d }, { 0x969b3f72, 0xeec0a4fd, 0x31276afc, 0xd634c713, 0x33bf76da, - 0xf24ced1d, 0x69a11aac, 00000000 + 0xf24ced1d, 0x69a11aac } }, { { 0xa215a0cf, 0xfbb866a7, 0x9a145846, 0xc486ec3, 0x83f84e92, - 0x69d6c432, 0xb7136614, 00000000 + 0x69d6c432, 0xb7136614 }, { 0x3071b0e7, 0x34086d81, 0x93f4b92e, 0xd355dffc, 0xe13bad52, - 0x68a77914, 0x519000ea, 00000000 + 0x68a77914, 0x519000ea }, { 0xe3dc2868, 0x60ce7658, 0x6f01d579, 0x3e09f865, 0xba78bfc1, - 0x601498db, 0x29deb2fa, 00000000 + 0x601498db, 0x29deb2fa } }, { { 0x8f9d3375, 0xa363b813, 0x78dd4351, 0x1c48d5aa, 0x5f3b9551, - 0xa6794056, 0x7ec16613, 00000000 + 0xa6794056, 0x7ec16613 }, { 0x6dff3cd, 0x89241a59, 0x924a11fa, 0x9dc7481, 0x25a9bcba, - 0x78ebdc8e, 0x170317c9, 00000000 + 0x78ebdc8e, 0x170317c9 }, { 0xcc6453b0, 0x86dc48f5, 0x7bced2ce, 0x42167c82, 0x6f8f2b02, - 0x7361081, 0x976c7807, 00000000 + 0x7361081, 0x976c7807 } }, { { 0x39f30a52, 0x30246a95, 0x20e6dc68, 0xd9ec5405, 0xc46908f9, - 0x3bd57b31, 0x6f7d429f, 00000000 + 0x3bd57b31, 0x6f7d429f }, { 0x47777f73, 0x1ed3d21d, 0xfc51b52b, 0xe1c71511, 0x41a15e11, - 0x565eeb67, 0xe2e7c18f, 00000000 + 0x565eeb67, 0xe2e7c18f }, { 0xdc3a59f2, 0xfc450237, 0x4386be03, 0x668335fd, 0x243dec87, - 0xfa41cdae, 0x1a2564ea, 00000000 + 0xfa41cdae, 0x1a2564ea } }, { { 0x6c3804a1, 0x9b158cf1, 0xdde8b0cb, 0xeb162769, 0x68c0ddbe, - 0xee73e608, 0xff342d7a, 00000000 + 0xee73e608, 0xff342d7a }, { 0xde80eced, 0x719eaea1, 0x35c7250e, 0xdd650537, 0xc8ef72ec, - 0x93ccf524, 0x3acb1e14, 00000000 + 0x93ccf524, 0x3acb1e14 }, { 0x95dc0888, 0x88f5b784, 0x31e91f6b, 0xf0eb5f6d, 0x4c3584ea, - 0x660e52ce, 0x9f97f04c, 00000000 + 0x660e52ce, 0x9f97f04c } }, { { 0x75c372a8, 0x47c0e0c1, 0xa82b35b1, 0x11e11ad0, 0xe14fe91b, - 0xeb68fc17, 0x5b15247e, 00000000 + 0xeb68fc17, 0x5b15247e }, { 0xa4849c99, 0x16f73e5b, 0x837827f2, 0x24fed475, 0x5c8cff05, - 0xcbff9792, 0x78dbddce, 00000000 + 0xcbff9792, 0x78dbddce }, { 0xadd216a4, 0x360d1657, 0xcc6d45c0, 0xe1a3bd74, 0x43336536, - 0xa287d839, 0xfca83d78, 00000000 + 0xa287d839, 0xfca83d78 } }, { { 0x418bc9be, 0xea033e4f, 0x7cee502b, 0x259cf5a2, 0x427063aa, - 0x4818f152, 0x67b6dbac, 00000000 + 0x4818f152, 0x67b6dbac }, { 0x4f3b4265, 0x639e7ea7, 0xaadf742b, 0x65062f05, 0x5bd9d97b, - 0xaba4f7a0, 0xfe5dc9ee, 00000000 + 0xaba4f7a0, 0xfe5dc9ee }, { 0x372f023e, 0xcacfa856, 0x28e1518a, 0xc926c5a4, 0xa21b1782, - 0xa596fab6, 0xe534094d, 00000000 + 0xa596fab6, 0xe534094d } }, { { 0xb4646107, 0x71755736, 0x17f2a8ab, 0x9a26d803, 0x6f29bc73, - 0x49567823, 0xb2e235b1, 00000000 + 0x49567823, 0xb2e235b1 }, { 0xd472a069, 0x9fa1e50c, 0xd041323e, 0x3d4af3b1, 0xe9c4726e, - 0xc796e9fc, 0x94276047, 00000000 + 0xc796e9fc, 0x94276047 }, { 0x3fd1368c, 0xe1eb3328, 0x988bf5ca, 0x689569a9, 0x9dffad43, - 0xe48d8ce0, 0x403f9e04, 00000000 + 0xe48d8ce0, 0x403f9e04 } }, { { 0x4ed86bea, 0xc8dc1a3a, 0xf6324c48, 0x5de73d1f, 0x43f091e9, - 0x80032b9e, 0x19a408d0, 00000000 + 0x80032b9e, 0x19a408d0 }, { 0x1a221d2, 0x32f6cd06, 0xd99861ce, 0x72ec6014, 0xdb72affd, - 0x8085a75b, 0x8e02608c, 00000000 + 0x8085a75b, 0x8e02608c }, { 0xc48e3410, 0xb89d4efa, 0x4fdff771, 0x18600a2b, 0x54a6a871, - 0xbfc6e8b0, 0x68272f6e, 00000000 + 0xbfc6e8b0, 0x68272f6e } }, { { 0x260d141, 0xbdfd658a, 0xc3acd6c9, 0x7ccebd75, 0x4099b9a2, - 0xaa33d765, 0xa8962bbe, 00000000 + 0xaa33d765, 0xa8962bbe }, { 0x6f525b47, 0x9aca4eec, 0x2b57ece0, 0x27b57825, 0x7befd0c5, - 0x6e74d08a, 0xa331694, 00000000 + 0x6e74d08a, 0xa331694 }, { 0xa03fe66b, 0x9b85a673, 0x1698977f, 0xf54acb9a, 0x463070fb, - 0x9b72d840, 0xf114c82d, 00000000 + 0x9b72d840, 0xf114c82d } }, { { 0xb4a51e5c, 0x50445ae4, 0xa31bc01, 0x4ea0d801, 0x3ffcdd9b, - 0x4ffff9f8, 0x132ab32d, 00000000 + 0x4ffff9f8, 0x132ab32d }, { 0x9bf06eac, 0x877f3066, 0xa9ad634e, 0x1b9711cb, 0x806a2a73, - 0x9dc6a1fd, 0x7aa2fd17, 00000000 + 0x9dc6a1fd, 0x7aa2fd17 }, { 0x7200b8bf, 0x9e981513, 0xe2b8a6d5, 0x96c4fcf5, 0xf2394398, - 0xe08dc0d9, 0x2836b8c6, 00000000 + 0xe08dc0d9, 0x2836b8c6 } }, { { 0xfd327b8c, 0x3ee911c, 0x9b94af54, 0x2c318fbe, 0x2e6f8269, - 0x3475a7bf, 0xf9770b13, 00000000 + 0x3475a7bf, 0xf9770b13 }, { 0x6fc6d426, 0x4c8aae75, 0xbcef387b, 0x96642675, 0x77ed013d, - 0xa450857f, 0x6029c04, 00000000 + 0xa450857f, 0x6029c04 }, { 0x61aec442, 0x2527e62f, 0x9b8489f5, 0xeb11dda0, 0xe8fe284e, - 0x15056c41, 0xdf1c4e77, 00000000 + 0x15056c41, 0xdf1c4e77 } }, { { 0x999d52ef, 0x90782965, 0x6f23d18d, 0x5881fe27, 0x77fe4665, - 0xb224439b, 0x497d44ac, 00000000 + 0xb224439b, 0x497d44ac }, { 0x2b603c3d, 0xfd1da77, 0x9c5163af, 0x10070598, 0xd1837f50, - 0x2d0d1cf4, 0xec794755, 00000000 + 0x2d0d1cf4, 0xec794755 }, { 0xd2f09cfe, 0x7d9ce2ed, 0x748cbc6b, 0x9ce153e3, 0xffd74d4e, - 0xe6962bed, 0x5c84c927, 00000000 + 0xe6962bed, 0x5c84c927 } } }, @@ -26939,211 +26939,211 @@ static WORD generator_table[64][15][3][LIMBS] = { { 0x5e7ed1fd, 0x191081e, 0xce9b04b5, 0xd8a6767d, 0x75f7230e, - 0x37430be, 0xc323e419, 00000000 + 0x37430be, 0xc323e419 }, { 0x433237, 0xde183402, 0x93ef5f74, 0xe768e2e9, 0xf46be298, - 0xc5774417, 0x215496b, 00000000 + 0xc5774417, 0x215496b }, { 0xb71253d6, 0x385fcce4, 0x19a8e560, 0x38f0ffd8, 0x6ea1d932, - 0x9a3df7d6, 0x2309f937, 00000000 + 0x9a3df7d6, 0x2309f937 } }, { { 0x551e80fc, 0xe2682015, 0x120758b6, 0x781f1ebf, 0x6fe71cdf, - 0x9b28aa58, 0x6151e4a7, 00000000 + 0x9b28aa58, 0x6151e4a7 }, { 0xda51ec08, 0x72707419, 0xe4b95fa4, 0x66b25022, 0x1525e7df, - 0x9b52bcbc, 0x7038914, 00000000 + 0x9b52bcbc, 0x7038914 }, { 0xf7ef6cd5, 0x9c93e26, 0x82d6730d, 0x26b1779d, 0x1342e66f, - 0x90417455, 0xf439969, 00000000 + 0x90417455, 0xf439969 } }, { { 0xe5b91ee8, 0xdcd1a1b8, 0xdcd9873, 0x11f21890, 0x1ba881f4, - 0x7188714b, 0x3ff10223, 00000000 + 0x7188714b, 0x3ff10223 }, { 0x1d3d03bd, 0x74148aea, 0x58666ffe, 0xa1e25ca6, 0xeb36ebb3, - 0x91ca6dde, 0xde8c4c01, 00000000 + 0x91ca6dde, 0xde8c4c01 }, { 0x7159f5fe, 0xe90f6d11, 0x9bd95f9b, 0x68be4c2f, 0xb596cd59, - 0x9d3c3b71, 0xe78b4a33, 00000000 + 0x9d3c3b71, 0xe78b4a33 } }, { { 0xc5f22ef8, 0xc16ac63c, 0xe22ca0aa, 0xdaa3413d, 0x9fb7cba5, - 0x5578c4e7, 0xc5571672, 00000000 + 0x5578c4e7, 0xc5571672 }, { 0x948b3e79, 0xde4b9013, 0x2a42e9aa, 0x5d29c6bd, 0x51233948, - 0xc4afd672, 0xf1b3a8c8, 00000000 + 0xc4afd672, 0xf1b3a8c8 }, { 0x8a042be, 0xa5427b33, 0xbc85a8a4, 0x8f0b3503, 0x337c352b, - 0xb6e50286, 0x461bfe78, 00000000 + 0xb6e50286, 0x461bfe78 } }, { { 0x30428e38, 0x7460abf5, 0x213d4e, 0xe60c9367, 0xe2caeb8b, - 0x66ed9f62, 0x6191755d, 00000000 + 0x66ed9f62, 0x6191755d }, { 0xce5a657c, 0xac02a538, 0x65dc8a5f, 0x46135e36, 0xd8e73134, - 0xd908d30e, 0x916b1c52, 00000000 + 0xd908d30e, 0x916b1c52 }, { 0x54acd19b, 0xb1cda44e, 0x3a9730e8, 0x362c0121, 0xab79806c, - 0x1769b81b, 0x2d757e58, 00000000 + 0x1769b81b, 0x2d757e58 } }, { { 0x9d748f4, 0xdb6ddcc1, 0x58dfc574, 0xa0d5f7ad, 0x2e975346, - 0xddd3b1c6, 0x51c13b36, 00000000 + 0xddd3b1c6, 0x51c13b36 }, { 0x5b93a897, 0xae13df64, 0x8e272a67, 0x2e539223, 0xd5005e67, - 0x2a1fd587, 0xfe69c5aa, 00000000 + 0x2a1fd587, 0xfe69c5aa }, { 0xc60723dd, 0x9474c7c1, 0x24694b30, 0x2d44a8b8, 0x8cff5b30, - 0xb8e483de, 0x22e9f3cf, 00000000 + 0xb8e483de, 0x22e9f3cf } }, { { 0x6967f134, 0xf322bd9a, 0xd89cfa18, 0x2f29f647, 0x94738b91, - 0x826ed78c, 0xb1e5ec32, 00000000 + 0x826ed78c, 0xb1e5ec32 }, { 0xe0f72198, 0xaf42310e, 0x8b7d231c, 0x427780f2, 0x1e5a7826, - 0x7425a458, 0x79a9920c, 00000000 + 0x7425a458, 0x79a9920c }, { 0x429cf4b2, 0xc61f37b8, 0xef3e409, 0x88efef31, 0xe041c626, - 0x50b64c99, 0x629c1e2, 00000000 + 0x50b64c99, 0x629c1e2 } }, { { 0x175e80ad, 0x6946813c, 0x8a2f11d4, 0x23dd79c, 0xa120659, - 0x3c1e7f79, 0x844e6f29, 00000000 + 0x3c1e7f79, 0x844e6f29 }, { 0xe7cb2486, 0x21a0a8e5, 0xbb7e8905, 0x8e4a177a, 0xa17f76de, - 0xc84a4ac7, 0xae2a318b, 00000000 + 0xc84a4ac7, 0xae2a318b }, { 0x9c4130ee, 0x2f08407b, 0x62c1c7d6, 0x16fe9c24, 0x8622ce07, - 0xa40390a2, 0x28cd8934, 00000000 + 0xa40390a2, 0x28cd8934 } }, { { 0xc214fadf, 0xa618290e, 0x5ec60f7b, 0xbdf0899f, 0x19caf765, - 0xaeda70e8, 0x5be3309b, 00000000 + 0xaeda70e8, 0x5be3309b }, { 0x25fbcfad, 0x1fe32531, 0x25602a22, 0x1882acb8, 0x98fce340, - 0x7aebb1d4, 0x320c8c0f, 00000000 + 0x7aebb1d4, 0x320c8c0f }, { 0x37c0abf8, 0x630621dd, 0x98f88a1f, 0x57dd3e7d, 0xda4d5fef, - 0x74569ff0, 0x46694364, 00000000 + 0x74569ff0, 0x46694364 } }, { { 0xae541f1, 0xe29a286b, 0x5f97dbbc, 0x711a7612, 0x596fd2fe, - 0x9e0e1c7f, 0x11d67c4e, 00000000 + 0x9e0e1c7f, 0x11d67c4e }, { 0x81bdf261, 0x14eabaec, 0xee201263, 0x235a7140, 0x181ba853, - 0xac2a9c19, 0xc7f6c18, 00000000 + 0xac2a9c19, 0xc7f6c18 }, { 0xb5c66f32, 0x9e84c780, 0xe5ab87c0, 0xdb0df0d1, 0x6c9f2a48, - 0x463c7835, 0x94b80c71, 00000000 + 0x463c7835, 0x94b80c71 } }, { { 0xfa603541, 0xfd78b677, 0xf2f80521, 0x6e1e5d3a, 0x63278732, - 0x3d85a8d8, 0x271ad8b, 00000000 + 0x3d85a8d8, 0x271ad8b }, { 0x3097818e, 0x9c54dc89, 0x27282265, 0xd5f89786, 0x2568244b, - 0xd9358d10, 0x76893ed8, 00000000 + 0xd9358d10, 0x76893ed8 }, { 0x3d831714, 0x3cf2689b, 0xb8a6934f, 0x65d22d73, 0x77b8cc83, - 0xed27b1a4, 0xdd6ed8ea, 00000000 + 0xed27b1a4, 0xdd6ed8ea } }, { { 0x186736b3, 0xa44951df, 0xefdfd2f5, 0x28a8b422, 0xee667e75, - 0x1a2b5123, 0xfe04218e, 00000000 + 0x1a2b5123, 0xfe04218e }, { 0x28bfcd8d, 0x5047ff19, 0xe77c5f03, 0x9a749cd6, 0x8d0929cc, - 0x11bcde71, 0xd22c06f, 00000000 + 0x11bcde71, 0xd22c06f }, { 0xb31ccff0, 0xe785fe2d, 0x49576846, 0x309e5d03, 0xea1700cd, - 0x571fde2b, 0x417ed53f, 00000000 + 0x571fde2b, 0x417ed53f } }, { { 0x5573211f, 0xb3a9071, 0x225d91d1, 0x954e6711, 0xd4d60f06, - 0xa2602af6, 0xd75f1925, 00000000 + 0xa2602af6, 0xd75f1925 }, { 0x4cd6d6e, 0xd66dacbb, 0x6b2eddf5, 0xf1b69565, 0xf9889285, - 0x3de4e86f, 0x511bfdd8, 00000000 + 0x3de4e86f, 0x511bfdd8 }, { 0x9843fd6a, 0x688626cb, 0x7f04ee6c, 0xef7aa2e, 0x8a6e457, - 0x8acb6d49, 0x5f7ffa5, 00000000 + 0x8acb6d49, 0x5f7ffa5 } }, { { 0xa368eece, 0xaab13b0b, 0xfd23b014, 0xe85a92c8, 0x35c6bea4, - 0x95427ce9, 0xfbd97a5d, 00000000 + 0x95427ce9, 0xfbd97a5d }, { 0x4fab272b, 0x770068ee, 0x118b10f, 0x8d4691f6, 0x7d605c42, - 0x5549579c, 0xc84636e2, 00000000 + 0x5549579c, 0xc84636e2 }, { 0xa8bb723c, 0x4ab6ca68, 0xff512eb9, 0x32287f2, 0x320af20e, - 0xa0f882fc, 0x26424cad, 00000000 + 0xa0f882fc, 0x26424cad } }, { { 0xed54dae4, 0x6b51654b, 0x796c20d9, 0xe22f4ccb, 0xa5e036c9, - 0x67379f20, 0x8a81ae21, 00000000 + 0x67379f20, 0x8a81ae21 }, { 0xf96543e3, 0x8744f55e, 0xfd90b5ec, 0x4f7001a4, 0x25bc4c52, - 0xcdf3440f, 0x8494151f, 00000000 + 0xcdf3440f, 0x8494151f }, { 0x293bba8c, 0x64624d82, 0x28e03ae0, 0x72463e6c, 0xa95d35b8, - 0x574e8d98, 0x92ee224f, 00000000 + 0x574e8d98, 0x92ee224f } } } diff --git a/ec/native/p521_tables.h b/ec/native/p521_tables.h index 216e9a60..75538361 100644 --- a/ec/native/p521_tables.h +++ b/ec/native/p521_tables.h @@ -37025,18 +37025,18 @@ static WORD generator_table[144][15][3][LIMBS] = 0x81adc101, 0xb331a163, 0x18e172de, 0x4dfcbf3f, 0xe0c2b521, 0x6f19a459, 0x93d17fd4, 0x947f0ee0, 0x3bf7f3ac, 0xdd50a5af, 0xb035a69e, 0x90fc1457, 0x9c829fda, 0x214e3240, 0xb311cada, - 0xe6cf1f65, 0x000074, 00000000 + 0xe6cf1f65, 0x000074 }, { 0x5a9e268e, 0x28460e4a, 0x3b4fe8b3, 0x20445f4a, 0x43513961, 0xb09a9e38, 0x809fd683, 0x2062a85c, 0x4caf7a13, 0x164bf739, 0x8b939f33, 0x340bd7de, 0x24abcda2, 0xeccc7aa2, 0xda163e8d, - 0x22e452f, 0x0001e0, 00000000 + 0x22e452f, 0x0001e0 }, { 00000000, 0x800000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, 00000000, - 00000000, 00000000, 00000000, 00000000, 00000000, 00000000 + 00000000, 00000000, 00000000, 00000000, 00000000 } }, { @@ -37044,19 +37044,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a96faa6, 0xdf011096, 0x41d9d5ca, 0x66db5e69, 0x9fd74a3a, 0x7838d301, 0xfb7b51ba, 0x8a7c5eab, 0xd9c8ba47, 0xdbfd4148, 0x1ce7e915, 0xe2808852, 0xc45378e2, 0xc7bc26a, 0x3bac7ab5, - 0x78480413, 0x00008e, 00000000 + 0x78480413, 0x00008e }, { 0x2d4315c0, 0x2fdc61a, 0x5ee9d057, 0x47410691, 0x39487029, 0x80536060, 0xe6bdfed, 0x35b541a7, 0xf7a3c021, 0xe08fe0d0, 0x58f5ae2, 0x5b31d1c3, 0x9019307, 0x51ac9a9b, 0xbddce37a, - 0x15947e53, 0x00006c, 00000000 + 0x15947e53, 0x00006c }, { 0xb53c4d1d, 0x508c1c94, 0x769fd166, 0x4088be94, 0x86a272c2, 0x61353c70, 0x13fad07, 0x40c550b9, 0x995ef426, 0x2c97ee72, 0x17273e66, 0x6817afbd, 0x49579b44, 0xd998f544, 0xb42c7d1b, - 0x45c8a5f, 0x0001c0, 00000000 + 0x45c8a5f, 0x0001c0 } }, { @@ -37064,19 +37064,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdac3be95, 0xb71827f, 0xcc4c606b, 0x6475b73e, 0x3aaf49e6, 0xc024b184, 0xd149446a, 0x5c056f30, 0xd1ed6064, 0x454a85be, 0xb2a01854, 0xa29f5cf1, 0x1689c0db, 0xfa10f3db, 0xdc3dc3cb, - 0x699a69ce, 0x0001c5, 00000000 + 0x699a69ce, 0x0001c5 }, { 0x293e2691, 0xd947b8c0, 0x1dbe09e7, 0x4f033194, 0xb5ef0317, 0xb14e70cf, 0xa7d63d25, 0xa1343a7a, 0xeb2bf69d, 0xc2b03c37, 0xa89a27d0, 0xf1592af, 0x41168cc6, 0x4d639621, 0x29d42607, - 0x9db84c30, 0x000167, 00000000 + 0x9db84c30, 0x000167 }, { 0x2cab7700, 0x1c46d40f, 0xd60466fc, 0x2d224370, 0xa7006ca3, 0x90b4c598, 0xeb4e38f0, 0xb3a7954e, 0xd9314193, 0xc2c9a3c, 0x24de1eaa, 0xaabcd8f4, 0xc68ed9e9, 0xed89bae3, 0xf4f7fcca, - 0xb732bcdd, 0x000129, 00000000 + 0xb732bcdd, 0x000129 } }, { @@ -37084,19 +37084,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf13e7864, 0xdd9d3aa6, 0x63675f99, 0xa737b38a, 0xa1d8e4df, 0xd5617e04, 0xb817a6a7, 0xad4e9b09, 0x2fd56017, 0xace33434, 0x809507c7, 0xb7176ded, 0x98dc053a, 0x6f198152, 0xfa8bf421, - 0x7e618369, 0x000055, 00000000 + 0x7e618369, 0x000055 }, { 0x2b51cee7, 0xdb3e8ef6, 0xe6ce3ef3, 0xa179c872, 0x8ed8f52a, 0xc34f3caf, 0xc8336261, 0xb0656115, 0xb454738, 0x63a0ec2a, 0x72cf42f6, 0xbfcd6490, 0xdc3e8bc8, 0x9635fe59, 0xc34b798, - 0x6a4d181b, 0x000064, 00000000 + 0x6a4d181b, 0x000064 }, { 0x9d23ff2d, 0x1c8ebaa2, 0xe1007c88, 0x136dbef7, 0x18c6be64, 0xf6547b6d, 0x31ab5720, 0x27df6564, 0x13d30e32, 0x2f778c20, 0x21f5308a, 0x2b707807, 0x45421307, 0x47dc28fc, 0x34ea9c22, - 0xc8e3d2b0, 0x00007c, 00000000 + 0xc8e3d2b0, 0x00007c } }, { @@ -37104,19 +37104,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc73b0010, 0xa32e7617, 0x6bad7f9a, 0xc64bad07, 0x64305aa7, 0x1e2fc4d7, 0x81bd51d8, 0x8fe5655e, 0xce4ceb7b, 0x6445d068, 0xf90acd9d, 0x43824a96, 0xbb11954c, 0xae991a88, 0xb5d59026, - 0xb97df325, 0x000108, 00000000 + 0xb97df325, 0x000108 }, { 0x19555a42, 0x58754980, 0x280036fa, 0x551d65e3, 0x19b0ad37, 0x36491f05, 0x841e8f5d, 0xc53fded6, 0xb7d97964, 0xa92dd062, 0x4d49d035, 0x441592dc, 0x62667e14, 0x3a040095, 0xd9e05027, - 0x8f964715, 0x000016, 00000000 + 0x8f964715, 0x000016 }, { 0xd56b0653, 0xa001bda8, 0x5e59b3d9, 0x69930944, 0xe2afc8ef, 0x8ef706f6, 0x5bfc4ad5, 0x6e298aaf, 0x218944a3, 0xcc896607, 0xd7b5f0b0, 0xdbc1d6c6, 0xdacb2f2b, 0x90d9efde, 0x5255cc09, - 0x2ca7c9e7, 0x000133, 00000000 + 0x2ca7c9e7, 0x000133 } }, { @@ -37124,19 +37124,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19b39c2c, 0xcdc14a05, 0x682b6937, 0x8a0bdb53, 0x90fa5a69, 0x126c325f, 0x76798e31, 0xc7ddaa7d, 0xb2754b5d, 0xa3daa405, 0x76c04ca9, 0x7fb5d9db, 0x29b65ea5, 0x224d7bfc, 0x5ccb3118, - 0x8786bc57, 0x0000ef, 00000000 + 0x8786bc57, 0x0000ef }, { 0x17b32617, 0x200c5bfe, 0x298c4c4b, 0x48d73fd8, 0xc94d480b, 0x2cbbd748, 0x3c549de5, 0x8999cb8c, 0xcd0a969, 0xcbb32e03, 0xbcedd79a, 0xcd9f0556, 0xc4c404c6, 0x8a2d4edd, 0xd42c3b4b, - 0x39b751aa, 0x00001a, 00000000 + 0x39b751aa, 0x00001a }, { 0xaa99622c, 0x7ca04728, 0xdf4f1b53, 0x7a90bb12, 0x40fb7b0e, 0x57d6d7ff, 0x5aa14c9c, 0xe3562c98, 0xa29328d0, 0xdc087ae6, 0xcced00ff, 0x15fee543, 0x6ffe688e, 0x24ee2275, 0xfe564c80, - 0x16a494bf, 0x000047, 00000000 + 0x16a494bf, 0x000047 } }, { @@ -37144,19 +37144,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfe2582d3, 0x293aa170, 0x3c9a69bb, 0xa1e486c8, 0xee134e89, 0x6338369f, 0x8be5e27f, 0xb34d52be, 0x4820bde8, 0xa20ef330, 0xdfc3a66c, 0x763b61ea, 0x19e5979b, 0x89b9545c, 0x4c0cfa4e, - 0x2fa3967f, 0x00010a, 00000000 + 0x2fa3967f, 0x00010a }, { 0x324dae, 0x17bec4e, 0xc3cd83b1, 0x189d69b2, 0xc8466d1b, 0xf267a7e0, 0xbbebf623, 0x2f9bdfad, 0x47beee87, 0x1c7fd502, 0xb8cf171, 0x1fd54cd, 0x3e101f1, 0x36f4b77, 0xffc1ba56, 0xdb15c92d, - 0x00018c, 00000000 + 0x00018c }, { 0x5fa1b669, 0xbd18b9c8, 0xc3b5f3f0, 0x7919d893, 0xf36eeaa0, 0xd44a4e1e, 0x31d2c63e, 0x5d82d62, 0xbe730207, 0x75f10c60, 0xdbe5727b, 0x7a8d57b3, 0x141b5009, 0x13b3075e, 0x2adc034f, - 0x5d60749b, 0x00019f, 00000000 + 0x5d60749b, 0x00019f } }, { @@ -37164,19 +37164,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa969a610, 0xa4b44987, 0xd936cf10, 0xc53739e9, 0x8db0f028, 0x199f9deb, 0xd5bb522, 0xc1c9a9fa, 0x8d690138, 0x18db000d, 0xd1984c5a, 0xd273f6ce, 0x3c534445, 0x9c14b585, 0x36b41130, - 0xf53390be, 0x0000fb, 00000000 + 0xf53390be, 0x0000fb }, { 0x7f8e9175, 0xace3a377, 0x1196653c, 0x6b0b552b, 0x2555b884, 0xd2de8ba8, 0xae287230, 0x1703e367, 0xb8652a90, 0xd1745fb4, 0xc3bdf14, 0xf36deb4d, 0xc6a93332, 0xcb2a7028, 0xbcaf07e7, - 0xefeb92c, 0x000073, 00000000 + 0xefeb92c, 0x000073 }, { 0xbcc8c22a, 0x327670c0, 0x68e29a00, 0x391eac06, 0x35a4d1a2, 0x95d73064, 0x2f8affe, 0x3b3803fa, 0xa68ca19a, 0x919e45e2, 0x50a1fcc6, 0x85620773, 0x699a3708, 0x58fc774a, 0xb401b42b, - 0xb5a17ef1, 0x000170, 00000000 + 0xb5a17ef1, 0x000170 } }, { @@ -37184,19 +37184,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4b37fb13, 0x26a08edc, 0x5341054e, 0xc7e19fc9, 0x6bda87a4, 0x8d8c4d86, 0xda482f06, 0x9a2c5126, 0xcd828655, 0xefe715bc, 0xfee5f37, 0x75080a89, 0x73b31637, 0xef448504, 0x1311b28c, - 0x2437d9f6, 0x000067, 00000000 + 0x2437d9f6, 0x000067 }, { 0xe284efc5, 0xf9b14840, 0x9b071eb2, 0xc42fb1b6, 0x902e87fb, 0x46867d86, 0x2e55a68e, 0x4dcfb324, 0x62b8114c, 0x5adbde38, 0x3a92e269, 0x97bd014a, 0x2325a87, 0x5352b96c, 0xc53cea4f, - 0xcadeee3a, 0x000031, 00000000 + 0xcadeee3a, 0x000031 }, { 0xc0f96bc2, 0x11cbe75f, 0x6316920a, 0xd8f89425, 0x793b7ef3, 0x62db3c88, 0x9eca39f5, 0xcabda621, 0x202ec83e, 0xfb175e2b, 0x69d38716, 0x36452492, 0x9b1635c6, 0x71912532, 0x44628388, - 0xd4652320, 0x00010e, 00000000 + 0xd4652320, 0x00010e } }, { @@ -37204,19 +37204,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x669ae93c, 0x9a2a6544, 0xf1279bb, 0xf5ee37cb, 0xb32443e9, 0x48e8343, 0xba985b40, 0xc4287aef, 0xde9413e2, 0x9b3f65ee, 0x160896ce, 0xbba495a1, 0x83098f7b, 0x349ba940, 0xc2ac977c, - 0x6f009d7a, 0x000034, 00000000 + 0x6f009d7a, 0x000034 }, { 0x3e308b78, 0x2f8b3d80, 0xb97619da, 0x74071633, 0x66c3058a, 0x25995bc6, 0xb376739, 0x1474127e, 0x2ca6db09, 0x5f58f4be, 0xca0081c9, 0x80103011, 0xa1024e0f, 0x868d886c, 0x9c6d5d82, - 0x255f9509, 0x000158, 00000000 + 0x255f9509, 0x000158 }, { 0x130dc74c, 0x78f42779, 0xfbbb4b2b, 0x49bc55e5, 0xb8e207ae, 0x1eb10aff, 0x1017d3ca, 0xcec234e2, 0xf772593c, 0x27e24f1c, 0xac49e15a, 0x6f67ef73, 0x8bde8fc6, 0xb17d2638, 0x2438bacf, - 0x570fd50c, 0x000035, 00000000 + 0x570fd50c, 0x000035 } }, { @@ -37224,19 +37224,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3e471a98, 0x3c43dec3, 0x3835eb2f, 0x899935ae, 0xd5b87fa3, 0x75e1cf8e, 0xd0cbcf1f, 0x81040f39, 0xbe232d43, 0x413d943, 0xb8eec8ba, 0xd3a032ae, 0x9f9b74f5, 0xa13c6ae2, 0x762c3941, - 0x864c932b, 0x000082, 00000000 + 0x864c932b, 0x000082 }, { 0x558cbaee, 0x4e0eece2, 0xfd62a07d, 0x1395e7ad, 0x88606c84, 0x3b33eee7, 0x99a91164, 0xcd158caa, 0x33df15c4, 0xc6bc901e, 0x52b8a08e, 0x90c48490, 0x82f0af5c, 0xb5f654e9, 0xa4178399, - 0x5cdf62e6, 0x0000b4, 00000000 + 0x5cdf62e6, 0x0000b4 }, { 0x906b68da, 0x8d2716cb, 0xa20dacc3, 0x1d376b02, 0xce995c44, 0x1f2cd219, 0x78659a16, 0x3187a255, 0xc57d63e, 0x8d2222a, 0xe2e4d052, 0x324e2a81, 0xf7147f8c, 0x9515b7a4, 0xe730ac60, - 0xf606ce68, 0x0001f8, 00000000 + 0xf606ce68, 0x0001f8 } }, { @@ -37244,19 +37244,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x58861ece, 0x64719b83, 0xac412b72, 0x286ae298, 0xc364c5d, 0x27fe4c24, 0x10b92f4c, 0x862f6d76, 0x856c51c1, 0x2a034a1e, 0x2ababdea, 0x2b7c17a8, 0x42fe3433, 0x2e971d23, 0xe1632518, - 0xdd410dcd, 0x000051, 00000000 + 0xdd410dcd, 0x000051 }, { 0x5375b3ab, 0x5706f5c4, 0x1ec466cb, 0xe5a5711d, 0xc01015a2, 0xd42d9586, 0xc97805d9, 0xb7f35fb0, 0x15205f02, 0x4fc3e764, 0x3202d74d, 0xb2c02b44, 0x8540e3ff, 0x912e4834, 0xaacae759, - 0x3517749a, 0x000121, 00000000 + 0x3517749a, 0x000121 }, { 0x3a329484, 0xfebd594d, 0x37111679, 0x60b9844c, 0x651dbba2, 0x6c03898c, 0xfc1b81c8, 0x16bc0746, 0xb9803229, 0x1cee18b9, 0x456b91a4, 0x63f7f284, 0x64576a5a, 0xdf5bbe6b, 0xbdab50b3, - 0x9b261ce5, 0x000091, 00000000 + 0x9b261ce5, 0x000091 } }, { @@ -37264,19 +37264,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x20d6885a, 0x46b174fc, 0x84d13830, 0xa3000092, 0xd0ec4b43, 0xf3eeefc1, 0xa46d2c35, 0xa01c870e, 0x4ccbea8d, 0x47fd51cf, 0x53e6fb3c, 0xf256f439, 0x93c2895d, 0xc8850cbd, 0x3d736c7d, - 0x781bbed9, 0x000064, 00000000 + 0x781bbed9, 0x000064 }, { 0x22ce2e38, 0x9e372198, 0xee875055, 0xa8e01715, 0xa9415166, 0x1ddb4d42, 0x900d33ce, 0x7e6202d6, 0x720ed73b, 0x4feadbc3, 0x9419c28a, 0x7cffe59a, 0x6edd100c, 0x8287b3cd, 0xf6fd88f0, - 0xfe5f02b6, 0x00018d, 00000000 + 0xfe5f02b6, 0x00018d }, { 0x1743f560, 0xe4e18ccc, 0xbdb6305e, 0x922cca69, 0x4b953a6b, 0xda0ee640, 0xd72526ce, 0x71e7dfdb, 0x31ffe4ec, 0x21114b56, 0x742e251e, 0x3684c15f, 0x35d78e1a, 0xd1aeb38c, 0x95c857e5, - 0xbe2918f0, 0x000019, 00000000 + 0xbe2918f0, 0x000019 } }, { @@ -37284,19 +37284,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x153dbf, 0xe3386a00, 0x15f9823e, 0x633ed370, 0xd701717b, 0x1d318961, 0x953fd9b7, 0xd4a2bee6, 0xccf23369, 0x37a21103, 0xf42ef42, 0x70c84398, 0xbb521a4, 0x208e3f7d, 0xd649907a, - 0xfe580cb2, 0x000074, 00000000 + 0xfe580cb2, 0x000074 }, { 0x62306733, 0xc1e719f2, 0xa38f20bf, 0x84a5d6c6, 0x1fe62851, 0xa16f41d, 0x138bdcd0, 0xf737ac5c, 0xa5212ff4, 0x1af1d647, 0xba445241, 0x50454188, 0x64f3aee, 0xe834db9c, 0xceef21dd, - 0x7070b5ef, 0x0001ab, 00000000 + 0x7070b5ef, 0x0001ab }, { 0xebe277b1, 0x5a656ed7, 0x1181fa3c, 0x9f08a82, 0xb7e78e8e, 0xf4a3705d, 0x58d521c0, 0x5ba8c833, 0xbd2a6f45, 0xd8b3d44c, 0xe7842a6a, 0xe0346b9c, 0x8f13e583, 0xc490d3c7, 0xbaaa35e1, - 0x35f9b67e, 0x000135, 00000000 + 0x35f9b67e, 0x000135 } }, { @@ -37304,19 +37304,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5753a18d, 0x430ed532, 0xcf6f4ba9, 0xef4b698c, 0xa95bcfe5, 0x5c5273ed, 0x35f65c71, 0xa37a5a97, 0xd26dd192, 0x88f7314b, 0x110f0065, 0xc6aa2dbf, 0x21663c09, 0x7a25fad7, 0x8be75347, - 0x9eab742e, 0x0000cf, 00000000 + 0x9eab742e, 0x0000cf }, { 0xe90b4cfe, 0x159c9c12, 0xe30b99db, 0x65a49a62, 0x751876a, 0x138284db, 0xee63569, 0xadc24c51, 0xbceb5550, 0x7fe8beb, 0xe7a4607d, 0x51b4bdb, 0x89ad79ce, 0xe8e8ce06, 0x722986cf, - 0x24218f13, 0x000057, 00000000 + 0x24218f13, 0x000057 }, { 0x592c0caa, 0x770411fe, 0x758c4775, 0x1c6703f7, 0x9738203, 0x96252fd5, 0xe8f7b44f, 0xc1ae9bd7, 0x455e6613, 0xbd2a8d0d, 0xc830f262, 0x344a2074, 0x1889897, 0x92d3b516, 0xed1d139c, - 0xdf48ffee, 0x000008, 00000000 + 0xdf48ffee, 0x000008 } } }, @@ -37326,19 +37326,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x846cd39, 0x2e041fc9, 0x2edd7e88, 0xa31f37e9, 0x54404d0f, 0xc6cbd1e5, 0x72a55fcd, 0x34280dc6, 0xc62e4716, 0x4c72a4f3, 0x33a1125f, 0xb21c41a2, 0x2bb4ecdd, 0xbbfd2590, 0x4c2af9e0, - 0x8265707f, 0x00005e, 00000000 + 0x8265707f, 0x00005e }, { 0x979cd513, 0x26c7cf43, 0xa03093e2, 0xd973a782, 0x32b5000e, 0xe50974e1, 0xc92203ba, 0xa5c6f83a, 0x8b627565, 0x3b9165d, 0xa7eedf9, 0x320705a3, 0x5c17df20, 0x6953ac3e, 0x59269cd3, - 0xca5e49e7, 0x00007e, 00000000 + 0xca5e49e7, 0x00007e }, { 0x4291e1d4, 0x10c92d5a, 0x14ec21d4, 0xc074aff9, 0x5ce01cc, 0xa0f87368, 0x4e347cf5, 0xe013c05c, 0x8acad279, 0x485eec19, 0x8708a317, 0xbab96910, 0x24b62d7f, 0x44aab421, 0x918908b9, - 0x93e50861, 0x000008, 00000000 + 0x93e50861, 0x000008 } }, { @@ -37346,19 +37346,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x86b65e50, 0x15f23626, 0xde4df7e8, 0x85bb0d4c, 0xd690dc30, 0x3a1852dd, 0x6b3560f0, 0xee29d8fd, 0x2a2e9ba7, 0x5c8a86ff, 0xa505766d, 0x1eba6be, 0x4bf86abe, 0x4b5832d2, 0x4204268e, - 0x92feb1c8, 0x00006a, 00000000 + 0x92feb1c8, 0x00006a }, { 0x8e7f15bf, 0x7438501b, 0x65ad3cac, 0xdd6e0ebf, 0x72e2b184, 0x4be81f83, 0xab00f19d, 0x13a88995, 0x783cc369, 0xf3b80757, 0x6c2e73d2, 0xdff8223f, 0x5045ff26, 0xd3af68ec, 0x7764a0c0, - 0xa464bf14, 0x0001b1, 00000000 + 0xa464bf14, 0x0001b1 }, { 0xb825661a, 0xc3306964, 0xdee68705, 0x674574a1, 0x952423d3, 0x912658fb, 0x877c015b, 0x3c87058d, 0xc75a1b06, 0xa4e7cafb, 0x8c20a1b7, 0x58739060, 0xac92d10b, 0xb6da427a, 0xb24cbeb5, - 0xf6c13061, 0x000005, 00000000 + 0xf6c13061, 0x000005 } }, { @@ -37366,19 +37366,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8e3e0098, 0x4174f971, 0xf9a0c862, 0x3b9051bb, 0x199c1333, 0xa7039c42, 0xb591fd81, 0xd9c25116, 0xe835ede4, 0xea8b3be9, 0x16aede57, 0x5963f0f6, 0x2f4fdb3a, 0xb0dd800a, 0x5b737da4, - 0x6d28faf4, 0x0001c8, 00000000 + 0x6d28faf4, 0x0001c8 }, { 0xaece7895, 0xee22edfe, 0x7e5926aa, 0xf40292d6, 0xa3005922, 0xb1d2909, 0x695f4308, 0xeb38a724, 0x5834c137, 0x790b5bcb, 0xdd449a4e, 0x1455b139, 0x3a995c16, 0x2dfdcdd6, 0xccb0f4f9, - 0x7712d60a, 0x0001ec, 00000000 + 0x7712d60a, 0x0001ec }, { 0x9935ab6, 0xbdaf1225, 0x363cdf, 0xf067a97a, 0xfa22c392, 0xbe2cab2a, 0xabe26c39, 0x4ad0b851, 0x9ade169f, 0x8f9d1408, 0xbce319f5, 0x1a86e2cb, 0x26da4c83, 0x3484d260, 0xbd73e7ec, - 0xa8b2b89, 0x0000ea, 00000000 + 0xa8b2b89, 0x0000ea } }, { @@ -37386,19 +37386,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa220df82, 0x7ef19bcd, 0x2c018838, 0x516d49a, 0xf94161ae, 0xc3fee15b, 0x2a710bc7, 0x94850078, 0x45e6a457, 0x9eb09f19, 0xa4b7baea, 0xf41fa707, 0x288a73c8, 0x3e983027, 0xc3a3530f, - 0x8d317c63, 0x000086, 00000000 + 0x8d317c63, 0x000086 }, { 0x961c7875, 0xe7245f9d, 0x67a5b54a, 0x2c8b67d7, 0x650c8126, 0x4f2bb602, 0xcf50925f, 0xb42d1ef2, 0x80da3da8, 0xb86ef24e, 0xdff3f49e, 0x9387e8dc, 0x371d2ca8, 0xe9b87d7f, 0x566f53d0, - 0xa5238060, 0x000163, 00000000 + 0xa5238060, 0x000163 }, { 0x72a24623, 0x73074b30, 0x7c768697, 0x1e0761ed, 0xcb90434e, 0x992e092a, 0x2f44d3e8, 0x23f09cc8, 0x5891f7d3, 0x7b741a5e, 0xa0677655, 0x8d8424d0, 0xf91ba686, 0x68f2a440, 0x3657c4d1, - 0xfff75932, 0x000064, 00000000 + 0xfff75932, 0x000064 } }, { @@ -37406,19 +37406,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7bd81da2, 0x10c8f03f, 0xc1579db, 0x30b92698, 0xa4e497a4, 0xf9f1ebec, 0x861b4dd6, 0x999cc117, 0x395939fa, 0x9eb93f00, 0xf4ddf3b, 0x7a6a9c2c, 0x769a19bf, 0x39c5856b, 0xcc903679, - 0x1440d8cf, 0x0001f5, 00000000 + 0x1440d8cf, 0x0001f5 }, { 0xd6628140, 0xf676c0c5, 0x3d124518, 0xa43c3c74, 0x9ca2bcde, 0x96fe67d1, 0xb94c0bc0, 0xa1ae13bc, 0xb8e57550, 0xd92016a1, 0x53de199f, 0x66651469, 0xefbf29b1, 0x2533b0c7, 0x5b3e26ad, - 0x207eff66, 0x0001a0, 00000000 + 0x207eff66, 0x0001a0 }, { 0xdccde8c9, 0xc0969693, 0x94a1fc0f, 0x45c7c169, 0x77da1973, 0xcbeca502, 0xd620b562, 0xd6c84ecb, 0xd8d04b30, 0x53540b84, 0xe5a5aceb, 0x1865fb65, 0x25e468d, 0xbd02eb4, 0xbab7e070, - 0xc1aa52e5, 0x0001df, 00000000 + 0xc1aa52e5, 0x0001df } }, { @@ -37426,19 +37426,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2981e782, 0xe8626cef, 0xada5e720, 0x79723661, 0xb22b9980, 0x50e0402b, 0x9383103c, 0x1e3bd389, 0xf3f95928, 0x74a1426b, 0xaa17907b, 0x19555a63, 0xb772f2, 0x811897cf, 0x8a2f8769, - 0x5823953, 0x0000bd, 00000000 + 0x5823953, 0x0000bd }, { 0x2d03fb49, 0xed4f0e51, 0x68832c7c, 0xe5c8944a, 0xbde7cb80, 0x96982a, 0x90d68926, 0x2a05ff0f, 0xf44c903a, 0xc50da5af, 0x4dde36f8, 0xcdd98780, 0xcb7b1f7b, 0x4ba341c0, 0xdcefb493, - 0x897a0828, 0x0001e6, 00000000 + 0x897a0828, 0x0001e6 }, { 0x9453c440, 0x1f8334f5, 0xea3864d8, 0xd0ec4d38, 0x1c153b2e, 0x83480e5b, 0x6551501e, 0x872402e7, 0xa8898692, 0xf36d3d85, 0x10b643d5, 0xbd8251c9, 0xac2e9348, 0xda9d7992, 0xccb9e252, - 0x74b7f4ec, 0x0001e8, 00000000 + 0x74b7f4ec, 0x0001e8 } }, { @@ -37446,19 +37446,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9568a536, 0xd400e0b0, 0xa23738ed, 0xfa7d29d5, 0xb3311413, 0x51120897, 0xe63d4148, 0xb4832f9b, 0xe71580b5, 0x9a11425b, 0xf8043281, 0xd2a642d4, 0x3346af95, 0xa8456389, 0x2f3f8e16, - 0xa66b44de, 0x00011d, 00000000 + 0xa66b44de, 0x00011d }, { 0x9abf7816, 0x327cf928, 0x73baac5f, 0xa1c1fab, 0xa2b02570, 0x156df9db, 0x6ed91081, 0x1b478a0b, 0x1e0fa0d7, 0xbb855df4, 0x56b71526, 0x17f902a0, 0xc8f751bc, 0x2164b5c0, 0xaa74ff08, - 0x843ac6cc, 0x00004a, 00000000 + 0x843ac6cc, 0x00004a }, { 0x577e3239, 0xc428a45e, 0x54aa89bb, 0xce1ddc1a, 0x6672b22a, 0xc1f62e74, 0x4489aa4e, 0xe5da1fc5, 0x9e733dbc, 0xbf036e8, 0x7b95c409, 0x98a02c38, 0x51c3309d, 0xc4fc5780, 0xe0510554, - 0x374f99d3, 0x00004e, 00000000 + 0x374f99d3, 0x00004e } }, { @@ -37466,19 +37466,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2f593f84, 0x782fd25e, 0x17558b5f, 0x5f5e887e, 0x3244ac17, 0xda7eba9b, 0xfc4c8f6c, 0xcb89ad28, 0x9e693307, 0x244de82d, 0xde429fe, 0x9ef13ad9, 0x22f55db7, 0x655c7908, 0x11d9297c, - 0x95ec387f, 0x000114, 00000000 + 0x95ec387f, 0x000114 }, { 0x9aa3c848, 0x709923cc, 0xf1825987, 0xca8c725a, 0x93faf1c3, 0xcd34de8a, 0x78dbd661, 0x76c7c83c, 0xc85192d3, 0x6d233145, 0xa52b74d2, 0x6b39e7e3, 0x66d8968e, 0xc26802b2, 0xc0ec7e6d, - 0xac3d9eee, 0x000026, 00000000 + 0xac3d9eee, 0x000026 }, { 0xb2ddac0, 0x158a4af5, 0x24ed7e34, 0x6dabb6f8, 0x491f606e, 0x540f9cce, 0xb982fcd5, 0x573f39d4, 0xda66b81, 0xaf1ada87, 0x47a311a1, 0x2049e8d4, 0xc75e804a, 0x912dc691, 0xee2d4fe4, - 0x131666b3, 0x0000ee, 00000000 + 0x131666b3, 0x0000ee } }, { @@ -37486,19 +37486,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc6c30810, 0xee4ad73c, 0x6b4e57f5, 0x62feb9ba, 0x51434c8f, 0x206f1447, 0x9ac4fd58, 0xc3a7ea90, 0x5755d822, 0xdb81b462, 0x662243be, 0x4f8273bb, 0xa9a24050, 0xf076ea68, 0x5377cfbb, - 0xa4b38ec8, 0x0001ca, 00000000 + 0xa4b38ec8, 0x0001ca }, { 0x1ddd5827, 0xbfc6fbee, 0x56bd8dc8, 0xe28e1529, 0xbb4a13ea, 0x36c22fa8, 0x61adc685, 0xd2a8cac7, 0xe44388e6, 0xadb902b4, 0xeff60f7c, 0x48e53a8c, 0x92845bda, 0xcea3d00b, 0x9c32fce8, - 0xefb8a42d, 0x0000b8, 00000000 + 0xefb8a42d, 0x0000b8 }, { 0x30af199d, 0x77917bf0, 0x17f531b0, 0xc9dede14, 0xcf87d059, 0xd82f9da7, 0xc1816927, 0xa13d3218, 0x48f110ad, 0x6bb2ab02, 0x6aa60e89, 0x688425f6, 0xfeeaf103, 0x5ce00f34, 0xcfdd1201, - 0x4a0a57e, 0x0000ed, 00000000 + 0x4a0a57e, 0x0000ed } }, { @@ -37506,19 +37506,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x79a815b4, 0x61e07785, 0xa6b07ac8, 0x722d5485, 0x2d1f76ad, 0x5d32d20d, 0x90c9d181, 0x4d6a021, 0x61f7270e, 0xbdc858a3, 0x29e283b5, 0x6c8e72f, 0xa11d2190, 0xf5786859, 0x6b2e3038, - 0xe1ac9087, 0x00019f, 00000000 + 0xe1ac9087, 0x00019f }, { 0xf026c050, 0xc15cc3e2, 0x98eaca3, 0x2f2960f7, 0x1ad51f30, 0x556308a9, 0xbd6b04b, 0x7f84d0fe, 0xe7ff4ca, 0x8aa9300c, 0xa8b9eb5b, 0x62145de0, 0xe7dcb6f7, 0xcec83ad8, 0x7ab84617, - 0x3e200169, 0x000090, 00000000 + 0x3e200169, 0x000090 }, { 0x2cce984e, 0xd57d3c18, 0x3ab882df, 0xb888507, 0xf8342fa9, 0x432ebe84, 0x335c5081, 0x119f1489, 0x51f5415, 0xf33da79, 0x4f6fde6a, 0x541bace, 0x61e0a2ff, 0x57d968a0, 0xba643c0d, - 0x53b34330, 0x0001b6, 00000000 + 0x53b34330, 0x0001b6 } }, { @@ -37526,19 +37526,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9873cdc6, 0xcb377c55, 0x69866b86, 0xc1b45ebb, 0x31b212f1, 0xfa5f8fbe, 0x9c87276f, 0x4e6f8971, 0x76b41619, 0xc4784d57, 0xb192a6ee, 0xf6c8f8a5, 0x74d0d1c6, 0x40ec40b2, 0xaeacbd75, - 0xf8772f92, 0x0000e0, 00000000 + 0xf8772f92, 0x0000e0 }, { 0x86454663, 0xa01d43fc, 0xef8fd4d0, 0xb8c9fb71, 0x5d6901b1, 0x7e1be653, 0x88ed7b2b, 0x7eb1efcc, 0x7543d499, 0xdb6375aa, 0x430663ac, 0xb908dcc, 0x1c62773, 0xdde80219, 0x2f6ddaed, - 0xadd531f2, 0x0001f2, 00000000 + 0xadd531f2, 0x0001f2 }, { 0xbd0eafb7, 0xb637b790, 0xaf482201, 0xacd197cb, 0x51d6c69c, 0xa4e436d8, 0x5fafd40f, 0xc2f97545, 0x6115b892, 0x8e90255e, 0x8b2d17ee, 0xc42840b0, 0x53f45f20, 0x63912981, 0x2cfde43c, - 0x96664f2b, 0x0000ed, 00000000 + 0x96664f2b, 0x0000ed } }, { @@ -37546,19 +37546,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1e13548d, 0x546ce59, 0x3ce96942, 0x8b53ebf0, 0x672bf202, 0xe5869e79, 0xff7376da, 0xff66f48f, 0xcb5d0c1f, 0xd735173c, 0x200ac6b7, 0x9ec07de6, 0x42a85cea, 0x4cad404e, 0x468fe7f9, - 0x3fde86ff, 0x000166, 00000000 + 0x3fde86ff, 0x000166 }, { 0x6fdb098b, 0xff4be811, 0xa9072234, 0x2dd71617, 0x8409bd3b, 0x3d2649ee, 0xea5895b6, 0xfdb95584, 0xb96ced02, 0x2cc745fc, 0x134d1b71, 0xb86c73f4, 0xdc5f588a, 0x1e18fd24, 0x8b3f23e9, - 0xead57e84, 0x0001df, 00000000 + 0xead57e84, 0x0001df }, { 0x4a438992, 0x17315c60, 0xcc977542, 0xa798f0c9, 0x4f75953e, 0x53f7d149, 0x4e107578, 0xa68144ce, 0x19f4433a, 0xd92b1036, 0xc7b9f4b0, 0x44f4abfa, 0x4f21f1e9, 0xcee2d0cd, 0x67671d97, - 0x9e4246db, 0x000050, 00000000 + 0x9e4246db, 0x000050 } }, { @@ -37566,19 +37566,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe0eea109, 0x886a57c5, 0x4d8cd9e1, 0x59cdb815, 0x675d001b, 0x1ef8a425, 0xee4e7ca5, 0x9f55abe0, 0xcb7d465e, 0xc379ad8c, 0x7957cccf, 0xa66d96b8, 0xfe639805, 0xf15636d8, 0x5e98b6ac, - 0x44b13b4, 0x0000f3, 00000000 + 0x44b13b4, 0x0000f3 }, { 0xa92f9e26, 0x99c1c132, 0x2c8ffeb3, 0x6e291ec4, 0x53e29fe9, 0x9d737365, 0x5a8f6fdf, 0x20d1379d, 0x42ad84, 0x311aa338, 0xaf5e377, 0xc61fa618, 0xef29ae78, 0xd20e0803, 0xd4c22671, - 0x48fbe61, 0x000084, 00000000 + 0x48fbe61, 0x000084 }, { 0x3af73ab6, 0x79330660, 0xb00d3c2f, 0xd43d39a4, 0xbad703fd, 0x84c93398, 0x8316358f, 0x131e1917, 0x8e8cbe66, 0x4de6085e, 0x9fbaab29, 0x73c6c7ca, 0x45814dde, 0x9656bfa4, 0xf1abcedc, - 0x277bfd24, 0x000191, 00000000 + 0x277bfd24, 0x000191 } }, { @@ -37586,19 +37586,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc455bc7c, 0x3f9170c6, 0xdaa30517, 0x2afeaeb6, 0xed87025c, 0x1fb5dbf9, 0x39915b13, 0xd8063a0e, 0x3c61dfcc, 0x3830911d, 0xb3aae028, 0xbf1e474b, 0x7072871e, 0x986d30cf, 0x81928a98, - 0xe155029e, 0x000017, 00000000 + 0xe155029e, 0x000017 }, { 0x22f10235, 0x54d8c162, 0x877c0322, 0x897840fc, 0xd41492a, 0xb1fa8f4, 0xdd9fb963, 0x2f2b89ee, 0xc805440d, 0x75e6149e, 0xc55dc0ee, 0x7afb0b00, 0xb7050c8e, 0x165fed4c, 0x3754fd3d, - 0x96e38929, 0x000064, 00000000 + 0x96e38929, 0x000064 }, { 0xf8d0a888, 0x6134e53c, 0x4fc696c, 0x7ab901da, 0x2adb5779, 0xf52a45fb, 0x15ed1db3, 0x65aa7382, 0x1b0bd374, 0xb7665085, 0xa1f15b00, 0x5b55e939, 0x892d40f1, 0x63106eac, 0x1089bcd2, - 0xe1bb6dda, 0x0001c2, 00000000 + 0xe1bb6dda, 0x0001c2 } }, { @@ -37606,19 +37606,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa163df48, 0xdefcadde, 0xd47800c5, 0x6a053450, 0xe9915e15, 0x8eb9185e, 0xb49d40ce, 0xe0a874b7, 0xbc441d9e, 0xbc2909df, 0x561796f7, 0xcf34b9, 0xd012ba69, 0x86548442, 0x59f947d3, - 0x41fde36b, 0x00002e, 00000000 + 0x41fde36b, 0x00002e }, { 0xbf7102c0, 0x83c117ae, 0x706a457a, 0xa9bf7482, 0xca7950e6, 0xae473243, 0x1091f3ed, 0x5411484d, 0xdc12732b, 0xbc4a6f4e, 0x83a9424d, 0xe48fc1f, 0xfb5a5f7d, 0x1288cd90, 0x295da200, - 0xc9c52c69, 0x000033, 00000000 + 0xc9c52c69, 0x000033 }, { 0x19b9effb, 0xd9814c1d, 0x327003d9, 0x2e01f9de, 0x78b617ba, 0x568d0c0b, 0xd1f954, 0x48238989, 0xae582330, 0xa9a5b305, 0xcabea4b7, 0xa51c231b, 0x98651797, 0x2adb5658, 0xc5a8b5fd, - 0x749882a0, 0x0001a8, 00000000 + 0x749882a0, 0x0001a8 } } }, @@ -37628,19 +37628,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2b3b6138, 0xb1f506b, 0xa06e69bf, 0x948f8814, 0xc88f204b, 0x9090450, 0x770db1a8, 0xbd845cef, 0xcb007814, 0xaa9d86e, 0xe754c796, 0x61599da3, 0x361f819e, 0x74ccdbfd, 0x6b211b49, - 0x33f4c4c4, 0x00004a, 00000000 + 0x33f4c4c4, 0x00004a }, { 0x5b83ef05, 0x4d714cf8, 0x9287bd70, 0xc70da34b, 0xd69e628b, 0xc1d36bd9, 0x32aafb26, 0x2f4eb3bc, 0x3ada8c26, 0x48b01a49, 0x9e46b892, 0xacc2ca35, 0x215387c2, 0x2b08294b, 0xbe4a68ff, - 0xb6f06e28, 0x0001b0, 00000000 + 0xb6f06e28, 0x0001b0 }, { 0xa56e278, 0x12aa98dc, 0xc03ed059, 0x316d841b, 0xde2577a, 0xe8d0cfa, 0x2731c4, 0xf46c84c4, 0x62b4d790, 0x513dc23c, 0x26ec5ee9, 0x42e4d7bc, 0x70baf9fe, 0x9fe135bf, 0x6cdefb45, - 0x82fe9212, 0x0001b8, 00000000 + 0x82fe9212, 0x0001b8 } }, { @@ -37648,19 +37648,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8023d228, 0xae581a38, 0xc318bac7, 0x21aae211, 0xd0100121, 0xb3431c02, 0x29317471, 0x279a42c6, 0xc99f10be, 0x3d158eb6, 0x241ff2a0, 0x907488f2, 0xbf87096b, 0xef3d80fc, 0x796c6185, - 0x78c59be1, 0x000131, 00000000 + 0x78c59be1, 0x000131 }, { 0x211c69b7, 0x4698fb58, 0x933bfefc, 0x23f7c0e2, 0x5ce4d966, 0x24179e24, 0x4828c75c, 0xd7eeea3b, 0x123b4d65, 0xf3f30322, 0xd328cf00, 0x482f740f, 0x1aba20f, 0x1490d731, 0xe3eb04dc, - 0xc1a6f2da, 0x0001a7, 00000000 + 0xc1a6f2da, 0x0001a7 }, { 0x25466682, 0x57e28264, 0xf924c554, 0x12ba043, 0x6d0831b5, 0xf6b4f365, 0xfb9deec0, 0x1cb041cf, 0x951d95e1, 0x81ad07b0, 0x6462077, 0xb85cc989, 0xea8a5dd, 0x2f978fef, 0x642d3aeb, - 0xe1aa3b4d, 0x000170, 00000000 + 0xe1aa3b4d, 0x000170 } }, { @@ -37668,19 +37668,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x29877bde, 0xad185306, 0xd3cbe272, 0x4aaf3352, 0xa394b54b, 0x6371ac2b, 0xadded503, 0xa20f3b33, 0x37f09f82, 0xf84a7d16, 0x5fa885ec, 0x6f6a7622, 0x22dc6a6c, 0xaa30c32e, 0x9fc0f750, - 0x67ef4956, 0x000002, 00000000 + 0x67ef4956, 0x000002 }, { 0xcf2c4d28, 0x18ded1ea, 0x9472c81a, 0x9cf0d75a, 0x91c15ec, 0x2af10d82, 0xc6cd586c, 0x405c9f00, 0xc2f352a2, 0xc5252bd5, 0x6fd0e5fb, 0x7df8ce44, 0x5718dd32, 0xa261eaca, 0x5999aa60, - 0xedfa83ce, 0x000174, 00000000 + 0xedfa83ce, 0x000174 }, { 0x8ef6d964, 0x4d8fb609, 0x3e6f417a, 0xeb5df9aa, 0xd1ce6603, 0xa375f9fc, 0xf9d3b653, 0xc9bede64, 0xd6f0dcdd, 0x256e3e63, 0x346ec7a3, 0xfaf56c5e, 0xe5b186a7, 0xa64d5373, 0x4b487bd3, - 0x8c43a6d3, 0x0001bc, 00000000 + 0x8c43a6d3, 0x0001bc } }, { @@ -37688,19 +37688,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x85094e77, 0xdd2fd2b6, 0x8c0cd6bb, 0x407644e0, 0x72cdee67, 0x88dcf183, 0x8b284dc, 0x5469f17a, 0x612d5e37, 0x77e47eda, 0xee25006b, 0x99ec4a11, 0x830d8fa7, 0x20f82d4c, 0x3bbc64cb, - 0x625d95a2, 0x0001e5, 00000000 + 0x625d95a2, 0x0001e5 }, { 0xa0e296cd, 0xe8467783, 0xd387d7f5, 0xe75869b7, 0x71ef8cf7, 0x10264972, 0x792a88cc, 0x43f2791a, 0x6ab10053, 0x5f1207a4, 0xf608443f, 0x84af1067, 0x43e1a53d, 0x3eac5d97, 0x89fbc7c5, - 0x1a1cbd9b, 0x000190, 00000000 + 0x1a1cbd9b, 0x000190 }, { 0x692731df, 0x7efb0bae, 0x7aa0a62b, 0x633492a8, 0xebe0e90a, 0xa481709, 0x5671eb23, 0x28e12a6a, 0x69bbebbd, 0x65f19d7f, 0x46ecd809, 0xa9e29a72, 0xa0468a55, 0xcc8cf030, 0x5c0f26ad, - 0xb051b55c, 0x0001d8, 00000000 + 0xb051b55c, 0x0001d8 } }, { @@ -37708,19 +37708,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf46d7179, 0x9e7273d5, 0xfff00df8, 0xee73dfc8, 0xba00a1c9, 0x6c1ea89, 0x275504b5, 0xbe060d81, 0x9a9c7779, 0x5d0d47e6, 0x13a3c9de, 0x87b696c0, 0x273f16bc, 0xb5ea30a1, 0x400188e7, - 0x34365bca, 0x00006b, 00000000 + 0x34365bca, 0x00006b }, { 0xca6c84e4, 0x559a751a, 0x6073b3bb, 0x4f493b8, 0x419796a4, 0x32cc67a5, 0x4cbea7de, 0x35b738bf, 0x34cbf53e, 0xa8690c6b, 0x35dc57ed, 0x6d321510, 0xa4c78fa7, 0xd4d6e505, 0xdc9d21c5, - 0x289daacc, 0x0001d2, 00000000 + 0x289daacc, 0x0001d2 }, { 0x19fef5c4, 0x497511c5, 0x791d2443, 0x4389ec10, 0x471856b0, 0xa58df6ad, 0x6abf4788, 0x6d200061, 0x68ae935e, 0xef40954, 0x8fb68477, 0x33e783fb, 0x4bd028e9, 0x813cfa6e, 0xb5bd1d07, - 0xb8f65300, 0x0000a4, 00000000 + 0xb8f65300, 0x0000a4 } }, { @@ -37728,19 +37728,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6934eb4, 0xb8dab03f, 0x920cd3b5, 0xdd3836ef, 0x343c090a, 0xbbcf9afc, 0x3d70705c, 0x74f118b, 0x4c469aa, 0x929e6973, 0xbc4f08f1, 0x97a2a488, 0x9ad127d8, 0x16836a67, 0x886f6812, - 0xd504e622, 0x0000cf, 00000000 + 0xd504e622, 0x0000cf }, { 0xd8fefd1c, 0x8376316f, 0xe77676f8, 0x439fa158, 0x9d403301, 0xead01bcf, 0xa90ef2fa, 0x88b7b27a, 0x67574d54, 0x8f293456, 0xd18d62ac, 0x9a01e209, 0x32f8e5a4, 0x365c6c5e, 0xb1af6cdf, - 0x6d356b55, 0x0001be, 00000000 + 0x6d356b55, 0x0001be }, { 0xcbe857c2, 0xecd51d4a, 0x337fbb1f, 0xc8646eb, 0x257bee8f, 0xc9c48e6c, 0xdacee0cd, 0xb2438a0, 0xee17982d, 0x93596f24, 0x87b8d47c, 0xfdbeafc8, 0x9d821f89, 0xf43d3945, 0x4a98f961, - 0x5477441d, 0x0001a0, 00000000 + 0x5477441d, 0x0001a0 } }, { @@ -37748,19 +37748,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb9f879f, 0xafa7c4, 0x1f80048b, 0xe29d5403, 0x78a724cf, 0x6972e2d9, 0xbeb989db, 0x8aee3fa1, 0x2767027c, 0x42fa10cf, 0xf5d384de, 0x7fcf7961, 0xbba0d359, 0x484d8111, 0x5e71ecb4, - 0x165260fb, 0x00015d, 00000000 + 0x165260fb, 0x00015d }, { 0x626162b9, 0xb02077dd, 0x53017f28, 0x36fa6799, 0xf184c7c2, 0x1bbcdfc6, 0x7d06c714, 0x2031b60f, 0xcdccedb1, 0xdfd233f8, 0x2d9bcf1f, 0x70a2b69e, 0x8ccdb847, 0xc9cb3ce, 0xa71b3603, - 0x3493fe8a, 0x000074, 00000000 + 0x3493fe8a, 0x000074 }, { 0x2552f3c6, 0x5cc50113, 0x9cf9a5d2, 0xdccd0010, 0x8f66d32b, 0x98facadb, 0xbad4088, 0x2c8c692d, 0xe179793e, 0x404c6690, 0x13042e88, 0x132862fd, 0x5c2fc6c4, 0x73964c48, 0xe8f3d5e8, - 0xad7a5b6b, 0x00010b, 00000000 + 0xad7a5b6b, 0x00010b } }, { @@ -37768,19 +37768,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2bd77313, 0xf5e0d6fc, 0xfb433066, 0xc9d7003a, 0xf92e9eec, 0xf50facbd, 0xc311293c, 0xafa4e945, 0x76f3afe7, 0xf36e2122, 0xf9a6fb63, 0x98582d82, 0x647aa861, 0x39eaf8be, 0xa4032eab, - 0xd59c5a10, 0x0000a8, 00000000 + 0xd59c5a10, 0x0000a8 }, { 0x5841dd21, 0xc9ec46ba, 0x12272dca, 0x5592c861, 0xeb660220, 0x93c52457, 0xd8dc1967, 0xd98e39f4, 0xfb2b4dd3, 0x89c2b513, 0xb1a21904, 0xe97eecdc, 0x8654c8bc, 0x4af9641a, 0xeacfe014, - 0xbb77c7a2, 0x00018f, 00000000 + 0xbb77c7a2, 0x00018f }, { 0x4ecb1a36, 0xd551f9d3, 0x5ba044f, 0x1656626e, 0x2d016c4f, 0x102efe11, 0x1a43ec96, 0xa07e3e51, 0xea901a2d, 0x7ad5367, 0xafa9a8fb, 0xeec9a5, 0x59bf9f1e, 0xfaf2deef, 0xe3351608, - 0x7b04a356, 0x0001d8, 00000000 + 0x7b04a356, 0x0001d8 } }, { @@ -37788,19 +37788,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb1aff636, 0xa89f47c, 0x5df863c1, 0x93bd905e, 0xdf188d7b, 0x3ee787d0, 0xba34aa7e, 0x64d944ce, 0x122e07e0, 0x284122c3, 0x6d0ba2b, 0x4dba9d02, 0x443d0038, 0xf27f7797, 0x659824e4, - 0x7ff4a386, 0x0001d8, 00000000 + 0x7ff4a386, 0x0001d8 }, { 0xe216dd88, 0xe56f4eb9, 0x7fbec98b, 0xcf7d9bd2, 0x5878e1f1, 0xc9eacdfb, 0x12e087fb, 0x298903e6, 0xebad1534, 0x9b152e28, 0xda9130e0, 0x1d16da80, 0xe37925b0, 0x1908aecb, 0x54356357, - 0xf7c377b2, 0x0000eb, 00000000 + 0xf7c377b2, 0x0000eb }, { 0x541880e9, 0x614aa1a5, 0x86aa2891, 0xd1b415dd, 0x75f5b68e, 0x17bbc3de, 0xc0a2e05b, 0xeb3b0162, 0x2b5b233d, 0x71400e98, 0x967935a5, 0x45bbccf5, 0x281deaf6, 0xfd2eba14, 0xb014876d, - 0xd0839db6, 0x00017d, 00000000 + 0xd0839db6, 0x00017d } }, { @@ -37808,19 +37808,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x576cbe16, 0x7a2ce874, 0x3d410676, 0xe695e33, 0xe9aa50ed, 0x7e97e285, 0x915d91c0, 0x380a7a94, 0x792f4479, 0x749f23ee, 0x454b3d10, 0xcd63d84f, 0x43a42fd4, 0xe696fc50, 0x6793ad61, - 0x2628ad1c, 0x0000b7, 00000000 + 0x2628ad1c, 0x0000b7 }, { 0xa76fd76b, 0xfda9e43d, 0x55f93058, 0xc5ab3162, 0x224234c, 0x66d2312f, 0x4d25a66b, 0xee3e304, 0x12beb1ca, 0x56a673d4, 0x9e446b20, 0xd1646183, 0x95106642, 0x8def9f31, 0x92a90dc, - 0x34126f56, 0x0001e0, 00000000 + 0x34126f56, 0x0001e0 }, { 0xcc6b4d4a, 0x82453a2b, 0xfbeaedd3, 0x20a324bd, 0xfc78e5c7, 0xb04c2db0, 0x95655fc6, 0x15ff136d, 0x3b1ef032, 0xcd8bff18, 0xc73551aa, 0xbc43dfb4, 0xad71da97, 0x116d72fd, 0xb53e559d, - 0xf3dbc6bf, 0x0000e4, 00000000 + 0xf3dbc6bf, 0x0000e4 } }, { @@ -37828,19 +37828,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7f6c1c8e, 0xc7048687, 0x4587c4b1, 0x4578d110, 0x226a229, 0xf709c331, 0x16ad8bcb, 0xb6d1803f, 0x84403a87, 0xa1cef72b, 0xefd975ca, 0xefadf256, 0xb1da29f2, 0xd0d6e04, 0x39887819, - 0xdfff1dd2, 0x00012b, 00000000 + 0xdfff1dd2, 0x00012b }, { 0x6912bfd, 0x69bf09e9, 0x9408fad0, 0x9d70b9a4, 0x14ddae6e, 0x735ebf8d, 0x30976d88, 0x562bced4, 0x16b83443, 0xfb72b000, 0x158b24fb, 0xa972b674, 0x3d9391af, 0x3609c077, 0xc4e3786, - 0x2d4d2471, 0x00008d, 00000000 + 0x2d4d2471, 0x00008d }, { 0x258d6e00, 0x7a00a5a6, 0x75c74354, 0x8e65be19, 0x1971d457, 0x389f0014, 0x3b3e4c6, 0xd2ba1445, 0xf934677a, 0x4cfd6e67, 0x33d0291b, 0x8494513, 0x1b8cf8, 0x60c49064, 0x12a5a40e, - 0x64965ba3, 0x000124, 00000000 + 0x64965ba3, 0x000124 } }, { @@ -37848,19 +37848,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf7f35684, 0x2f07c181, 0xc1501cd0, 0xba8c9541, 0x3fa4308b, 0x253488d9, 0x83ac1c00, 0xef148410, 0x8dd2a914, 0x385ebfcb, 0x9db7be6, 0x1fa43785, 0xed5e8e45, 0x91dc4c02, 0x91268abc, - 0x4150d1ec, 0x0000ab, 00000000 + 0x4150d1ec, 0x0000ab }, { 0x1261be7, 0x4d9f4523, 0x6c43968, 0x2c455fb7, 0x5983a21d, 0x32dacf78, 0xca618c93, 0x21caf4ef, 0x6c7da628, 0x94a7f1aa, 0x78d4c571, 0x8c6a62a0, 0xc9446de2, 0x3b4b52ed, 0xef7a5bdb, - 0xfdbab459, 0x000143, 00000000 + 0xfdbab459, 0x000143 }, { 0x490ae2d8, 0x24716476, 0x3ef77a80, 0x2e808e46, 0xe4b23cd3, 0x394d0a9d, 0xd2aed242, 0x5032a886, 0x948b12de, 0x375d03e8, 0x66a002fa, 0x84e1722a, 0x580817fb, 0x751bc1e9, 0x45241433, - 0x4cce32cf, 0x0001e9, 00000000 + 0x4cce32cf, 0x0001e9 } }, { @@ -37868,19 +37868,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x801d6435, 0xa9b13318, 0x34d4330, 0xb81cbafd, 0x99f759f2, 0x16b932fc, 0xbd6bafb4, 0x3e2c3738, 0x8c539f4b, 0x491cd629, 0xc3298559, 0x9439f1cb, 0x99d4d205, 0x34b77d33, 0x5a7cc013, - 0x4762a7b6, 0x00000b, 00000000 + 0x4762a7b6, 0x00000b }, { 0x74878814, 0x4e448c3b, 0x41aead97, 0x25634c9, 0x89793176, 0x65c67bb8, 0x9325919e, 0xeb0be414, 0x4eeaea42, 0xd889ba97, 0x58922673, 0x63497863, 0x6fe4000, 0x456d682a, 0x99fe8a9, - 0x63476fab, 0x00017c, 00000000 + 0x63476fab, 0x00017c }, { 0xcb12bb2b, 0xd942bc33, 0x82eb90ab, 0x1c7cf445, 0x2c43e3f7, 0xa23e84a1, 0xadd645d2, 0xd531c69a, 0xec21efd9, 0xbbefe809, 0xb70a478, 0x45dbd038, 0x320b331, 0xbc4a27a8, 0x3604d0a6, - 0x2335a7ea, 0x0000c0, 00000000 + 0x2335a7ea, 0x0000c0 } }, { @@ -37888,19 +37888,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x50b74fd0, 0x389c89c7, 0x437c4db6, 0x7f26dab5, 0xdf998ec4, 0x4953efa1, 0x4cdf16bf, 0xbc08dc76, 0x6e962433, 0xc186efe6, 0x52e89ff7, 0xd4022f2, 0x636d214e, 0x65c7f0e5, 0x16ebdd9f, - 0x4b9248fb, 0x0001fd, 00000000 + 0x4b9248fb, 0x0001fd }, { 0x86a7ad20, 0xf8e1b180, 0xda2b386e, 0xe2a2efbb, 0x3e526134, 0xa9d2516c, 0xe1a9ae86, 0x5f454846, 0xdfbe5854, 0x42aebc88, 0x61442d2e, 0x8f94f27e, 0x2c3796ce, 0xa6fa6b1c, 0x63b45f93, - 0xd30b404f, 0x00017e, 00000000 + 0xd30b404f, 0x00017e }, { 0x5251584b, 0xee0d8d98, 0xf9c0ae2b, 0x51094cf1, 0x2e71a411, 0x72c95762, 0x8ae32b86, 0x4bd6cdc2, 0x2d4e319d, 0x4f08ac0c, 0x235c9cfc, 0x90ba1415, 0xb0193ba, 0x2b6a27e, 0xa999d3f5, - 0xac333fea, 0x0001f2, 00000000 + 0xac333fea, 0x0001f2 } }, { @@ -37908,19 +37908,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa70a5876, 0x8aff70bd, 0x10a3a951, 0x7d9d6823, 0x9a99efab, 0xc50a03b7, 0xa25beb43, 0xe851a3f2, 0xc0b237d, 0x456c8158, 0xd26e187d, 0x7df2ea5c, 0x2370570d, 0x1977e5d, 0x94fedf67, - 0x8faefb12, 0x0001f7, 00000000 + 0x8faefb12, 0x0001f7 }, { 0xa9699eef, 0xb4f39fc, 0xc0eef270, 0x3c0d736d, 0x89674105, 0x5729ef30, 0x74c27cf0, 0x8ebd6b80, 0xca05583d, 0xa8c6faf, 0x6d585b3a, 0x41c11ae7, 0x619ec08f, 0x39fac65f, 0x3f3f7498, - 0x2f89c7f0, 0x0001a9, 00000000 + 0x2f89c7f0, 0x0001a9 }, { 0x949a599c, 0xc910f249, 0x886398ce, 0xe1dada25, 0x515c37d6, 0x1e4c5e9c, 0x66557129, 0x37157b7, 0x11fa189f, 0x3f74f3cc, 0xb543d0f1, 0x3af71763, 0x9ef60aff, 0x300eea2a, 0x7689dd0a, - 0x1cee1f4c, 0x000135, 00000000 + 0x1cee1f4c, 0x000135 } } }, @@ -37930,19 +37930,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaa0dfbc7, 0x5cf7e384, 0x1f948ff4, 0x85481841, 0x5d030f52, 0x475d491e, 0xe1370fe, 0xe1061c6e, 0xb8179155, 0x18f584a2, 0x977bcae, 0xd1a0b71a, 0x550e4fdc, 0xd776487f, 0x1312f417, - 0x45900566, 0x00006a, 00000000 + 0x45900566, 0x00006a }, { 0x1bcfa2e1, 0x2f4fd076, 0x7f170c4e, 0x49da7df9, 0xf820e819, 0x40d6839c, 0xb3f8e07c, 0xe5a2c79a, 0x6612e86a, 0xeed3bc0a, 0x914a5953, 0xb00f76f2, 0x381e318d, 0x849a11bf, 0xc312830f, - 0x6181440d, 0x00006d, 00000000 + 0x6181440d, 0x00006d }, { 0xc17fa510, 0x4fc2bec9, 0xe5dd5b54, 0x285cdde, 0xe1dd2e8b, 0x3b14fff9, 0x21c071f2, 0x777e0943, 0x3fc69392, 0x7895e783, 0x97606193, 0x3ae01077, 0xb1b9f0a4, 0xbfead1e4, 0x413a8fe3, - 0x5f0ec30d, 0x000192, 00000000 + 0x5f0ec30d, 0x000192 } }, { @@ -37950,19 +37950,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x70c20aaf, 0xf943ec31, 0x39cc8609, 0xb5057fa6, 0x428617ce, 0x7c353cbd, 0x8da05b16, 0x2019cd9b, 0x922595c, 0xc434fb64, 0xcc94b93e, 0xb8491329, 0x16e9491b, 0xc3711f6a, 0x5c1dd78d, - 0xb8b68e12, 0x000010, 00000000 + 0xb8b68e12, 0x000010 }, { 0x10fcc6bf, 0xaf641e55, 0x932f17d5, 0x61a18b05, 0xfa725c5d, 0x7083635c, 0x2e0a7b57, 0x13b3c7b4, 0xcb0c5b17, 0xeb9e3a15, 0x5ce6d268, 0x6430b2de, 0x8a07ecf, 0x49b0b86a, 0x6b629d33, - 0xd99ae9cd, 0x0001ac, 00000000 + 0xd99ae9cd, 0x0001ac }, { 0x6a065d7a, 0xe7e40487, 0xd48fc1f6, 0x1f5605be, 0xcb98eb28, 0xdd884c16, 0x99238549, 0xd45a8641, 0xe0ba6c66, 0xe7c1b11, 0x90952c1e, 0xc3db471b, 0xa6ab48ce, 0x192f858c, 0x3d51e404, - 0xaccb7661, 0x000015, 00000000 + 0xaccb7661, 0x000015 } }, { @@ -37970,19 +37970,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5e73791b, 0xbed83152, 0x59fe0682, 0xf532899e, 0x3b18bd53, 0x748db1cd, 0x82229848, 0x39f44700, 0xb5b10197, 0xb73d903, 0xff1c322e, 0xd6e2c12e, 0xee781e1, 0xb3de32a6, 0x243c0dbe, - 0x7d3b8368, 0x0000a6, 00000000 + 0x7d3b8368, 0x0000a6 }, { 0xfe4a58ee, 0x47967bf4, 0x90f82ae3, 0xc628e994, 0x2a93cf65, 0xeaf0fd2e, 0x7a4d80f3, 0xdc504c12, 0x216e17d9, 0x9249419f, 0x1acb870, 0x8fc80167, 0x639782da, 0xc794c30a, 0xefb51049, - 0x7b9c0d13, 0x000078, 00000000 + 0x7b9c0d13, 0x000078 }, { 0x4d9969cb, 0x385ff555, 0xa00aa4d4, 0xed727d19, 0xf3353cc2, 0xc3efd4d6, 0xc71b604, 0x2a40e6bf, 0xbff0d04e, 0xe805c474, 0xb9215c49, 0x95c5b90f, 0x70b68b80, 0xaae25f31, 0x6d4d184, - 0x29b5f10a, 0x0001d9, 00000000 + 0x29b5f10a, 0x0001d9 } }, { @@ -37990,19 +37990,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3466205b, 0xab1d78b, 0x9e8cc2df, 0xaaedc7d4, 0xa4e3442d, 0xc6e1efcc, 0xaf552138, 0xf73930be, 0xb2aa8e75, 0xd30df61a, 0x44d91dc4, 0x6917049c, 0xae9c8d65, 0xa43fef26, 0x83336593, - 0x434d29df, 0x000092, 00000000 + 0x434d29df, 0x000092 }, { 0x3ce060c8, 0x201b3ca, 0x597edc38, 0x3092140c, 0x64e4ed66, 0xf92d925a, 0x5a4d8c2c, 0x15e2e8db, 0xebeb87b, 0x579fab13, 0x67c1026, 0x2fb8bd6, 0x14470423, 0x6608d2a, 0xe1e344d4, - 0xb2cc1407, 0x0000e2, 00000000 + 0xb2cc1407, 0x0000e2 }, { 0x8ebe6830, 0x155313a1, 0xe99f35b0, 0xf669dded, 0x8992e5cf, 0xc2c14b37, 0x985c3b45, 0x8b7ed322, 0xa0812427, 0x44bf1117, 0x97c3b288, 0x24d30a3b, 0x14a1d266, 0x40e29427, 0xf6bba1d5, - 0x6954ff81, 0x000094, 00000000 + 0x6954ff81, 0x000094 } }, { @@ -38010,19 +38010,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6b5e5abb, 0xf750a240, 0x974bcf28, 0xeffaa162, 0x7e38174a, 0xa706ee39, 0xef32a756, 0x14113d64, 0xeef783e8, 0x52a9471e, 0x518b34d8, 0x53b3963f, 0x4fb7cd50, 0x83abae99, 0xfad67e24, - 0x5950ab8c, 0x0001fc, 00000000 + 0x5950ab8c, 0x0001fc }, { 0x98f5c8b, 0x936e5b6f, 0x4a3707a3, 0x5b750458, 0x3e27f02c, 0x9e694aca, 0x20efc38c, 0x3655f03a, 0x7eaa0efb, 0xc8dfd5db, 0x8c64c6c1, 0x27e64f5b, 0x687c86da, 0x9f227873, 0x106d269c, - 0xe47eb510, 0x0000c2, 00000000 + 0xe47eb510, 0x0000c2 }, { 0xfa58799b, 0x2b123275, 0x22202ffe, 0x677ebf07, 0x20267b34, 0x858a1a83, 0x205b5999, 0x7d79e737, 0x8369e43c, 0x4027e0f9, 0xc69757d9, 0x540f444f, 0x9ca53c2f, 0x6c9630e0, 0x7c06eac1, - 0xcdc4c5c, 0x000123, 00000000 + 0xcdc4c5c, 0x000123 } }, { @@ -38030,19 +38030,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfb9841b0, 0xc2f60a, 0x4422917d, 0x7f6bd7bc, 0x110be6cd, 0x53660a51, 0x80677b4a, 0xb542df1b, 0x13f5c29, 0x7ed2000a, 0xbba3400e, 0xe57c8e67, 0xddeae25b, 0xdb81c2cc, 0xa7089239, - 0x747a6631, 0x0001e3, 00000000 + 0x747a6631, 0x0001e3 }, { 0x18817411, 0x2bec417d, 0x4c25cf89, 0xfec75766, 0x4e0598e2, 0x79db2851, 0x8dc8bd89, 0x2d86c0ef, 0x199f706c, 0x5a6d60af, 0x682a2c36, 0x41148939, 0x4a97ed98, 0xf7983df5, 0x6e1521de, - 0x4847e460, 0x000006, 00000000 + 0x4847e460, 0x000006 }, { 0x61213ee1, 0xbc92508d, 0xf723cc6a, 0x74dde5e6, 0xc0243161, 0xd723cd95, 0x5ce5bd64, 0xf953acb6, 0x65e43ae1, 0x27dfdb12, 0xe8dc2c5a, 0x7550de25, 0x86fc3506, 0xcc82267d, 0x47c6eb4b, - 0x3bb5f65d, 0x0000b7, 00000000 + 0x3bb5f65d, 0x0000b7 } }, { @@ -38050,19 +38050,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xddda2db6, 0xb95acb29, 0xbed6846f, 0xcd0afdf6, 0x63aedd56, 0xad85d5c3, 0x4c5541c3, 0x31e86a2e, 0xc6128401, 0x69cc83ea, 0xf7fbea5b, 0x671ccb3c, 0x37b3672d, 0x48654111, 0x11f8d0fa, - 0x97306b47, 0x0000e8, 00000000 + 0x97306b47, 0x0000e8 }, { 0x445441f1, 0x6728f7da, 0x718f2ac8, 0x3ca58b77, 0xa9910fbe, 0x2792f2d9, 0xb63c1cd4, 0xae976f47, 0x4fae2ad2, 0x2d3dcfba, 0x880c468c, 0xf794dfa9, 0x9fe1b10a, 0xbb620cd6, 0xc938c3a1, - 0x47b50903, 0x000114, 00000000 + 0x47b50903, 0x000114 }, { 0xd6b0032b, 0x2cd2d2f8, 0x15954d8b, 0xcb0f1ad1, 0xacf41413, 0x3082954a, 0xbd31a0c6, 0x546f1745, 0xf8ed5fa, 0x8bdbc494, 0x92318ba7, 0x61c4fae1, 0x82dd017b, 0xcdd44dec, 0x1e76a68b, - 0x5b147c9f, 0x000070, 00000000 + 0x5b147c9f, 0x000070 } }, { @@ -38070,19 +38070,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x139701ab, 0xd20bb7ae, 0xb087211, 0x076587, 0x2a5d409b, 0xe2c35418, 0x4c152485, 0xc926fbd9, 0x2860ca4, 0x6961c25e, 0x8197ecaf, 0xeeff5a0d, 0xf22b6fc1, 0x5cada7b9, 0xc7b693e2, - 0xf8454e21, 0x00019a, 00000000 + 0xf8454e21, 0x00019a }, { 0x1bda1891, 0x25d00b3d, 0xd6692698, 0xebdbed1c, 0xa124a951, 0x3e3b9894, 0xb8039c36, 0x2b521208, 0x758fe3d7, 0x2b7d241, 0x5398d371, 0xe26dcbc5, 0x510f1082, 0x35427907, 0x436ec760, - 0x3401723e, 0x000067, 00000000 + 0x3401723e, 0x000067 }, { 0x2dca63f7, 0xa4f5c60, 0xcbbdf588, 0x8d29450d, 0xc5c79491, 0x6b34fa3c, 0xc37e2f7, 0x48bda8ba, 0x68c5d116, 0xefca1ed1, 0x60041770, 0xf906e1fa, 0xcfd09a39, 0x88e5cceb, 0xf08847f8, - 0x39a622f6, 0x0000f2, 00000000 + 0x39a622f6, 0x0000f2 } }, { @@ -38090,19 +38090,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x481b07f, 0x35bcd84, 0x1a5139fe, 0x4cc43767, 0x5728520d, 0x1cdc859c, 0x230aae93, 0xb4a3e7b1, 0x6e106052, 0x51000baf, 0x438f2319, 0xe2e92429, 0xf0828269, 0x5ae8c88d, 0xd5e448b0, - 0x804429e9, 0x00002a, 00000000 + 0x804429e9, 0x00002a }, { 0xc60d1799, 0xf4694d73, 0xeb346cef, 0x5726bcec, 0x636c08d, 0x9e32a21f, 0xcba17f11, 0xc01600a8, 0xfd6e9876, 0x11afa058, 0x4cf8250f, 0xbcc88dc, 0x99d9e051, 0x7f016103, 0xf1360d2b, - 0xe1548a09, 0x000015, 00000000 + 0xe1548a09, 0x000015 }, { 0x93cd320e, 0x5c8d4ff7, 0xcbb0f0a8, 0xc3bcad9, 0x13913730, 0xf4a237be, 0xa1af5dee, 0xa506e083, 0x63a4da84, 0xee6ea618, 0xd61987a1, 0xdaf4d762, 0x2fbf316a, 0xc2aa4981, 0x9b8bd22c, - 0xfd1e6293, 0x000109, 00000000 + 0xfd1e6293, 0x000109 } }, { @@ -38110,19 +38110,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x84de4114, 0x25cd144a, 0xb3750fd, 0xc16f8ee8, 0x9c931623, 0xb8fca230, 0xaeb7147f, 0x8a5bfe47, 0xd8ac6d0e, 0x66696138, 0x2fe20b1f, 0x1705f18c, 0x6ef7ada0, 0xfd6fb06a, 0x683f902d, - 0x5c009d89, 0x0000ad, 00000000 + 0x5c009d89, 0x0000ad }, { 0x6b98db07, 0x75d090bd, 0xca4378de, 0x8035396b, 0x47e21e8f, 0xb6565b14, 0xc2c7bdd2, 0x7b8ddc1d, 0xf4c192e7, 0xb4846e4a, 0xee241f33, 0x3dc91389, 0xb052170a, 0x6808b487, 0x4ff863e6, - 0xe24a78a1, 0x0001c8, 00000000 + 0xe24a78a1, 0x0001c8 }, { 0xa6b93f51, 0x25b705f7, 0x4e19d6f, 0xb27cb1d7, 0x297d4377, 0xba2e1c5d, 0xd3f2e1a6, 0x8b69adc0, 0x50a76432, 0xe3a6e4a0, 0x7c101529, 0xa2e8efa9, 0xbc500b71, 0x4c520656, 0x62f1eef9, - 0x6ddf84a7, 0x00017e, 00000000 + 0x6ddf84a7, 0x00017e } }, { @@ -38130,19 +38130,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x681229e5, 0x2fb5ba37, 0x4711ce75, 0x7e5e1f47, 0x9ca9ff19, 0xdccf2a77, 0x2e22186, 0x6e3f65d0, 0x5f4cf15b, 0xb8931b4d, 0xf364f392, 0x6ad19698, 0xaff38aa1, 0x2509f564, 0xfb519a3b, - 0x83f0d7fc, 0x000159, 00000000 + 0x83f0d7fc, 0x000159 }, { 0x65b264d8, 0x5782271, 0xd4647dba, 0x18377c5c, 0x5139584e, 0x1afadf6a, 0xce4c07c5, 0x35919405, 0xa54d4bbb, 0x971ea1e2, 0x90a65bbf, 0xeaf65c9c, 0x369dab81, 0xa794726a, 0xc1e3c1c5, - 0xa87541a5, 0x000184, 00000000 + 0xa87541a5, 0x000184 }, { 0x6882b35e, 0x2af7c46, 0xf6466a81, 0x597dc7d4, 0xdc5073da, 0xbbf34679, 0xd4c87e5d, 0x990400ed, 0xa437535, 0x4a12858b, 0x3273cda4, 0x842d49d1, 0x4cf27419, 0x8ac739e9, 0x439d087a, - 0xa7349c75, 0x0001f8, 00000000 + 0xa7349c75, 0x0001f8 } }, { @@ -38150,19 +38150,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf2d0c1bc, 0xb9bcbd7f, 0x3f04a3aa, 0x38f1f8fc, 0xfdf23af4, 0xb2ad391f, 0xd51e12fd, 0x72cdb104, 0xa9a966d2, 0x557b7962, 0x754d4441, 0x7c016dc, 0xc203066f, 0x2c87b7aa, 0x5a42cb85, - 0xd086539c, 0x0001fe, 00000000 + 0xd086539c, 0x0001fe }, { 0xe4a5e3d0, 0x4f1f83f0, 0x99353134, 0x51e12e14, 0x42639a13, 0xddf535be, 0x4f0e4b01, 0x5c3bebd5, 0x73e4b0c2, 0xd17ff0eb, 0xaf83a659, 0x13d28c84, 0x46173449, 0xf0a3d93e, 0x931cf957, - 0x20962d7c, 0x000130, 00000000 + 0x20962d7c, 0x000130 }, { 0x2fe39cde, 0xb5316976, 0x9740322b, 0x1d1bd27, 0x4837c07, 0x5752957d, 0x6563b52b, 0xee77966f, 0x15778ab7, 0x8b008d03, 0x88d2f555, 0xe7bf4261, 0xd954c8e0, 0x96efe2a7, 0xef265735, - 0x6e683935, 0x00018c, 00000000 + 0x6e683935, 0x00018c } }, { @@ -38170,19 +38170,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8e2f153e, 0x45bf4459, 0xabbab1d6, 0x956cde73, 0xc7f6ad0f, 0x5ba2279, 0x6c1aed05, 0xd24da6b3, 0x6530439f, 0x51b3fe74, 0xa064bd67, 0xf276b1b9, 0x63c76946, 0xc08eac0c, 0x186a65d4, - 0xbd204fb8, 0x0001b1, 00000000 + 0xbd204fb8, 0x0001b1 }, { 0xd76b9b05, 0x5d6089f3, 0xb234e018, 0xa32c7c86, 0xdefc46f8, 0x14ac2aba, 0x6f624c5c, 0xdd28e654, 0x1ae9c5ca, 0xd493bee1, 0x590435ce, 0xe0c52727, 0x277571c1, 0xb5993ea0, 0x271e1635, - 0x8a5f0f9c, 0x0000c2, 00000000 + 0x8a5f0f9c, 0x0000c2 }, { 0x6b4febcb, 0xc570c591, 0xc81381a6, 0x81b0b421, 0x68be60ba, 0xefa83e4b, 0x6ca76724, 0x6aa811cb, 0x661bf63b, 0xabc7f9bc, 0x760d1354, 0xee3865e9, 0xdf3d95d5, 0x81a3dc8c, 0x727845ae, - 0x92e98ba7, 0x00013a, 00000000 + 0x92e98ba7, 0x00013a } }, { @@ -38190,19 +38190,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26bd7578, 0x8d32f350, 0xdf0ca8a6, 0xcc6d3e08, 0xc67f38b0, 0xac7cb84a, 0x5115a72c, 0x57a97ddb, 0x33ff231d, 0x7118ae0b, 0xb0f323c6, 0xd2a88ac3, 0x3203980b, 0xfe3e7a69, 0xdd7b27a5, - 0x23f873b, 0x000050, 00000000 + 0x23f873b, 0x000050 }, { 0x805a8e60, 0x3aab9bf2, 0xd4ee71a9, 0x4fe9c58f, 0x5ff7cceb, 0x5ed2e880, 0x7e883bcf, 0xda95b293, 0xfe07a3c9, 0xc92c4bd6, 0xaaabf32f, 0x9eab694a, 0x2e1c4ba8, 0x2eb465f7, 0x3d1ea06a, - 0xc4266d5b, 0x000102, 00000000 + 0xc4266d5b, 0x000102 }, { 0xc76c07b5, 0x55cc1676, 0xff1dffb, 0x75840b5a, 0x29dac39b, 0x76194da9, 0xb7036894, 0x27b2e826, 0x5a28449e, 0xe7e97e3e, 0x172cb1d8, 0xc398dd42, 0x4ba0eab2, 0xa62ee93d, 0xbc36aff7, - 0xd3ef7f96, 0x000088, 00000000 + 0xd3ef7f96, 0x000088 } }, { @@ -38210,19 +38210,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x695afc14, 0x1b8517f8, 0x384da6b6, 0xdc64dca4, 0x7d2a81d3, 0x8ace6fce, 0x5e6b3898, 0x985a9291, 0xf265770c, 0x3b83aa39, 0xad1322ee, 0xc82b3acf, 0x961f6fc2, 0x90bd0e90, 0x6f594b22, - 0x6f03afb5, 0x0001fd, 00000000 + 0x6f03afb5, 0x0001fd }, { 0x40ce9bc2, 0x992d09bc, 0xe4fc6c5b, 0x2c7f2e7c, 0x7949124c, 0x572e28ba, 0x96498680, 0x59641cff, 0xde5c917d, 0xb60cd5f, 0x1ca25924, 0x629b4332, 0xc72905a9, 0x4d4c2fd4, 0xad7f0f13, - 0x1ab30a31, 0x000058, 00000000 + 0x1ab30a31, 0x000058 }, { 0xebd4bd75, 0x580cd963, 0x7285bc41, 0xe24c0c87, 0xdf745611, 0x18308f50, 0xc0a8069c, 0xde89e463, 0x16a9085d, 0x4675ddd6, 0xe6c53aae, 0x520729f1, 0xf7da7a5f, 0x7d6d3394, 0xacf5bb08, - 0x832b7a3d, 0x0001fa, 00000000 + 0x832b7a3d, 0x0001fa } } }, @@ -38232,19 +38232,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x948a082a, 0xe11ff1ff, 0x4ac94ddf, 0xf3864d6d, 0x8ed48332, 0x304e83b, 0xbbae8a8b, 0xf733f736, 0xa6e7bd25, 0x5da8bb9, 0x4f49e519, 0xb1b7a503, 0x3201e083, 0x5790da41, 0x42e3558e, - 0xc9a0652c, 0x00005b, 00000000 + 0xc9a0652c, 0x00005b }, { 0xe76d5b2c, 0xaeb8882b, 0x6f08623f, 0xdefbf2ce, 0x44f4f37f, 0xb0baea96, 0xf903573f, 0x789a73e9, 0x928ab8c1, 0xd8c07ebb, 0xf7c0eddf, 0x55213b82, 0xab6486a1, 0x63f9021b, 0xd742d331, - 0xa2967dfc, 0x00011e, 00000000 + 0xa2967dfc, 0x00011e }, { 0xe23f8014, 0x48c570b2, 0xec905a31, 0x62f1bb08, 0xeeb72b90, 0xa6d9b311, 0x25e66429, 0xb3cd54bf, 0xcab05c48, 0xc1ab9022, 0x3bbb31f7, 0xe73c954d, 0x4d183f8d, 0x7bfe17ab, 0xff79b2f6, - 0xbe133a7a, 0x000033, 00000000 + 0xbe133a7a, 0x000033 } }, { @@ -38252,19 +38252,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8666a450, 0xda61a1b0, 0xefd9c798, 0x637fcbc6, 0x93bdd420, 0xab49da9a, 0x15382dcb, 0x3e87289, 0x935a9323, 0x440a56b4, 0x61832466, 0x498a0bba, 0xfedf0d48, 0xab7a6a94, 0x717554b9, - 0xe44e58c0, 0x0000dd, 00000000 + 0xe44e58c0, 0x0000dd }, { 0xb7881fa6, 0x9779e223, 0x4ac399a3, 0xbf2bb7c4, 0xcedb344c, 0x57475a2e, 0xa2e01c1a, 0xaa9278ba, 0xd4788ed9, 0x538dfdbd, 0xd194b23c, 0x6d19da1, 0x4e6b3731, 0xd14ffdfc, 0x9e1cecca, - 0x78dfd959, 0x00003e, 00000000 + 0x78dfd959, 0x00003e }, { 0x2f092326, 0x76ce3ee0, 0x5168aa43, 0x11a78ba4, 0x69e4efdd, 0x93fa6438, 0x35e33bf7, 0x6f8c4a1d, 0x300db4a3, 0xcf21437, 0xe70b2d98, 0xb24cd819, 0xf3c289cf, 0x8f97d1d6, 0xc31d51dd, - 0x3936840b, 0x000179, 00000000 + 0x3936840b, 0x000179 } }, { @@ -38272,19 +38272,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x58881e89, 0x8e076e20, 0xe6876735, 0x4ba47318, 0xb377695f, 0xc71db1d0, 0xd6b90c51, 0x44dce034, 0xf376e275, 0x566167e3, 0xf2c32729, 0x67c5ec0d, 0x3f01b330, 0x813840ce, 0x4dfb0948, - 0xbf7ee7cc, 0x000012, 00000000 + 0xbf7ee7cc, 0x000012 }, { 0xd8d4034, 0x18d0f081, 0xe2b0f279, 0x535badc9, 0x962853c2, 0x2ee79c7d, 0x90c2b7c7, 0x2296e7c3, 0x9142167d, 0x3582541, 0x81c1cd6c, 0xce3fd3b8, 0x9ffc77e1, 0x94210c83, 0x8ec5861f, - 0x9d236892, 0x0001eb, 00000000 + 0x9d236892, 0x0001eb }, { 0x8656e0db, 0x48938752, 0xf76c3f80, 0x9870edf7, 0x316c99ba, 0x61ba050f, 0xdbe89c4, 0xd14533d0, 0x63caae61, 0xb83b1d1c, 0xd62fb507, 0x2d078e16, 0x9fa15ac1, 0x1edf8202, 0xdeaa511f, - 0x5942b06e, 0x0000bb, 00000000 + 0x5942b06e, 0x0000bb } }, { @@ -38292,19 +38292,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1a2c6443, 0x5dbb427f, 0xd713718c, 0xf7c99fd0, 0xd87bfc25, 0x6665d1ea, 0xcf9a214e, 0x80d23df7, 0x1e3ff25d, 0xe6553edc, 0xb447a1fa, 0xa4d636fe, 0xbe4cdc3b, 0x9831a1af, 0xfbe7b0c8, - 0x8c853541, 0x00001b, 00000000 + 0x8c853541, 0x00001b }, { 0xbdb3ddc, 0x8553974, 0x87f3574a, 0x189f5cda, 0x8be038f6, 0x64b95dd3, 0x541eea54, 0xadc5ce8f, 0x292e9742, 0x9fde4f73, 0x8eed7bcc, 0xdd9388d2, 0x963db90a, 0xb92bee87, 0x3f489e66, - 0xdd1c8683, 0x000148, 00000000 + 0xdd1c8683, 0x000148 }, { 0x5a236147, 0xa42f62d7, 0xa0cda205, 0x1f9a2286, 0xda8af532, 0xed62cb0d, 0xda8a9b7f, 0xabbbe2d0, 0xe2759845, 0xee952c6b, 0xf47e5f2, 0x9752ad39, 0x20be6127, 0xdddcea3c, 0x76ebe354, - 0x65421f82, 0x000152, 00000000 + 0x65421f82, 0x000152 } }, { @@ -38312,19 +38312,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x41cd1aea, 0x9bd83d13, 0xbb701ba7, 0x42f8b3b1, 0xf282b5db, 0x56bb44de, 0x15ec6dff, 0xfd4d02be, 0x30e3aaef, 0xb08af535, 0xa66c44da, 0xdc8465b8, 0x94a5122b, 0x81a53579, 0x3bece3a9, - 0x8a8e2e2b, 0x000049, 00000000 + 0x8a8e2e2b, 0x000049 }, { 0x57430e40, 0x5bf2789f, 0x5fe5288c, 0x46e5e5c2, 0x288ec069, 0x8c970926, 0xd684ea5, 0xc55eea95, 0x6a0b2312, 0x279aab7d, 0xdf27f818, 0x4127d48a, 0x3c84a765, 0xf42fbf4f, 0xce784220, - 0x8c35156, 0x0000b2, 00000000 + 0x8c35156, 0x0000b2 }, { 0x5a9fd001, 0x4efaf41e, 0xc0549acf, 0x6f6c1b1f, 0x51016e21, 0xfd7118ab, 0x4fee7dd9, 0x6a591e11, 0xa37626b8, 0xe23c9a40, 0x954679f8, 0x488420c3, 0xf8f4218d, 0xa9fa7854, 0x3b68de70, - 0xb3658e00, 0x0001a2, 00000000 + 0xb3658e00, 0x0001a2 } }, { @@ -38332,19 +38332,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8326556c, 0xc961ddb8, 0xda87fa2, 0xb71b511, 0xdfc938b, 0x4c9e7fc8, 0x6c8dfbe3, 0x841806d9, 0x38d27867, 0xd4df7623, 0x1903bb8e, 0x8d6c1fb6, 0xd37c2fe0, 0xa8989aee, 0x78b00e52, - 0xeeb89d17, 0x0000ac, 00000000 + 0xeeb89d17, 0x0000ac }, { 0xdd09693e, 0xac8597ae, 0xf0ba8dee, 0xf5218d5c, 0xaa9b3934, 0x80cb677a, 0xd1c1c88d, 0xb9efbf0d, 0xcaa0183a, 0xeb00347f, 0x18f75e42, 0xd42b653, 0x5d1773bb, 0xc605d5e2, 0xa666bd2e, - 0x8333a1d8, 0x000088, 00000000 + 0x8333a1d8, 0x000088 }, { 0xdc3f15a3, 0xbb7fe699, 0x9596681c, 0x94f2be17, 0xe2e997d0, 0xa5ceb6c4, 0x6e14d7f1, 0xd272c806, 0x36b553c1, 0x8f7e8cb4, 0xc913f931, 0x146937cd, 0x6e3bda89, 0x5fcb99d1, 0x6961b60e, - 0xb672d45e, 0x000179, 00000000 + 0xb672d45e, 0x000179 } }, { @@ -38352,19 +38352,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa0a0b57, 0xcbc5cb3, 0xbdf7240c, 0x9272f88d, 0x13f6a2a3, 0x631726dc, 0xf09adbff, 0x3ea7634, 0x606c1101, 0x76db0902, 0x264376f6, 0x9b70c8, 0xd0adb9c0, 0x4759839c, 0x396fb99b, - 0x4d8ca05f, 0x000194, 00000000 + 0x4d8ca05f, 0x000194 }, { 0x9c75bed5, 0x268b4ce7, 0x2bfea0fe, 0xed0061bb, 0x9e10c90b, 0xada5b14d, 0xc695b0b, 0x6c5355b7, 0x5c2d0852, 0x4adfa6b1, 0xe7dfbd83, 0x85bf7cee, 0x888812e3, 0xae0ef2c7, 0xa9a066b2, - 0xb0073949, 0x000022, 00000000 + 0xb0073949, 0x000022 }, { 0xbd256bac, 0xad63368e, 0x4bd2f771, 0x531634b9, 0xe9aa82be, 0xcf455b15, 0x4c0848b, 0x3b662f29, 0x8d874cdf, 0xa64c9c30, 0xb09da856, 0x8d657b5c, 0x472fa5b7, 0xecb355fc, 0xae49020, - 0xf8330e5d, 0x00004b, 00000000 + 0xf8330e5d, 0x00004b } }, { @@ -38372,19 +38372,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4df55193, 0xc23135d5, 0xc0c84fc2, 0x33912c0b, 0x814d9e36, 0x968abc1d, 0x866214f0, 0xb739e309, 0xbbbe8620, 0x8983089, 0xccd27d86, 0xc265fef, 0xe6c90fb4, 0xb5c822e6, 0xf99586b5, - 0x2d0883b6, 0x0001c9, 00000000 + 0x2d0883b6, 0x0001c9 }, { 0x6c286f96, 0xa29d6b48, 0x95db2a80, 0xbcb8a071, 0xddc98548, 0xe577c781, 0xe3ba469e, 0x19f18fe6, 0x4c2a725a, 0x9138b8a1, 0x1cd00ae0, 0xce9f3950, 0xb466d683, 0x7b20da6e, 0xaa5e46c7, - 0x19c9d8b5, 0x000170, 00000000 + 0x19c9d8b5, 0x000170 }, { 0x13af53, 0x96db4416, 0xcbfc086f, 0xa1512ee, 0x7ee9963b, 0x6b737495, 0xa252026a, 0x7d3cfbb8, 0x8e79f95d, 0x6086a99b, 0x6c52cd4c, 0x65f2c728, 0x5a01cc36, 0xfcd08592, 0xad7d24eb, - 0xa92723f0, 0x00017f, 00000000 + 0xa92723f0, 0x00017f } }, { @@ -38392,19 +38392,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7d1d733b, 0x377b8a46, 0xf8c642ee, 0x450397b, 0xc6b6129b, 0x1a9925a5, 0x52050f86, 0x2351e275, 0xdfc0c284, 0xab4c8827, 0x65eda09b, 0xb29da2e7, 0x12bb5b11, 0x2bbafd8b, 0x4041c76c, - 0x921522bc, 0x0000c0, 00000000 + 0x921522bc, 0x0000c0 }, { 0x57a0de55, 0x930872c8, 0x4ff4f2b7, 0xf9bb7e67, 0x70cd0d2c, 0x33f19a0c, 0x80d4d527, 0x7d8cdc8d, 0xfa47c991, 0x427ccd6a, 0x3b22b0dc, 0x97333082, 0xdc007187, 0xcec607f2, 0xb79ee64f, - 0xcc585672, 0x000102, 00000000 + 0xcc585672, 0x000102 }, { 0x95244e07, 0xf56b12fd, 0xdda0daa5, 0xc3b10044, 0xa1f8a215, 0x23545180, 0x960f4753, 0xb88879d7, 0x2a4ecef7, 0x8eea7577, 0x4c9033b6, 0x990b201e, 0x48dfa0a2, 0xf5ba0a18, 0x888ce655, - 0xb1388f56, 0x00003d, 00000000 + 0xb1388f56, 0x00003d } }, { @@ -38412,19 +38412,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfcb780ca, 0x140b7559, 0x25ad5bd9, 0xb5f5053, 0x8eb8f95, 0x377025bb, 0x9cfda3aa, 0x555e5d26, 0x62c86b00, 0x84be3c27, 0x76709c09, 0x76c041d8, 0x40e64571, 0x6b9ffc56, 0xc1d99b59, - 0xb49ed952, 0x000053, 00000000 + 0xb49ed952, 0x000053 }, { 0xe285f7fb, 0x5e2c7566, 0x76b9dbe, 0x7ac772c1, 0x7f7ef69, 0x2ad6fb76, 0x16ccc987, 0x128af01a, 0xa5d7a8c2, 0x9ae87121, 0xb4631ab3, 0xd4f27001, 0x6187c52, 0xa900696a, 0x10f85af1, - 0x477bf39c, 0x0000af, 00000000 + 0x477bf39c, 0x0000af }, { 0xb3a820c2, 0x637c27fc, 0xd58e6707, 0x5cfe9468, 0x559c8369, 0xaaa1f2df, 0x12cb5f88, 0x712be0a9, 0x80dce10a, 0x9d98c7e7, 0x909bc121, 0x98189c93, 0x53fffcff, 0xb835ce67, 0x71284b01, - 0xb86a289f, 0x00018f, 00000000 + 0xb86a289f, 0x00018f } }, { @@ -38432,19 +38432,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8e082437, 0x9212092b, 0xc7a6eed5, 0x29a54eb9, 0x9eca1a6e, 0x3fd27bcb, 0x2fafb4b0, 0x54bc452a, 0xd7892ef6, 0x2807c602, 0xe41c2500, 0xcb6bc3c4, 0x365d3c1e, 0xde318e3, 0xfc35a2fb, - 0x374a02e0, 0x00015d, 00000000 + 0x374a02e0, 0x00015d }, { 0x7bd36ee7, 0x9659fd63, 0xeaa0058f, 0xce173856, 0xfd002754, 0x3b3e9680, 0xaa356687, 0x76f318c, 0x9ff707c, 0xdd7c8c20, 0x80a2cc34, 0x3044a0e7, 0xb274d0b4, 0x9e2be50, 0x443a7c93, - 0x7745d8e7, 0x0001bd, 00000000 + 0x7745d8e7, 0x0001bd }, { 0x325311d5, 0x95a9b74, 0xe6a844a8, 0x6464f3fa, 0xa772e180, 0xedc63378, 0xc9610f01, 0x81b07763, 0xe65ebe28, 0x5fefc86f, 0xa1450c11, 0x9789f9af, 0x852610d4, 0xacf22c8, 0x915eda28, - 0xeeeab64d, 0x000068, 00000000 + 0xeeeab64d, 0x000068 } }, { @@ -38452,19 +38452,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x74e8dc37, 0x68f25334, 0xfd17fb19, 0xb831fd55, 0x9ecc379d, 0xa552895a, 0xe373ad17, 0xa15c6baf, 0xdc5608d0, 0x380624d2, 0x411b148b, 0x13119a75, 0xc848eaa1, 0xc37bc743, 0x6994cbce, - 0x461a2fe0, 0x0001b1, 00000000 + 0x461a2fe0, 0x0001b1 }, { 0xb228b1d0, 0x20f6e6a4, 0x4a21b2d4, 0xc9d5e322, 0xb562ce1, 0xa53f8659, 0xf9589567, 0x7ed9e2b2, 0xedf993ae, 0x43d52bc5, 0xad94e7da, 0xf76f230, 0x9458f4aa, 0x450aff58, 0x1cb4222e, - 0x7c931531, 0x000154, 00000000 + 0x7c931531, 0x000154 }, { 0x1d69ccfc, 0x4604cc01, 0xeefc52e6, 0x4ed45d91, 0xdc87f750, 0xfc30e2de, 0xabf2f3b5, 0xfc6df5ce, 0xef4301a4, 0x64013b84, 0x929eab88, 0xce2488a1, 0xb40c6099, 0x5fe51fca, 0x1e924272, - 0x7f2b8813, 0x000187, 00000000 + 0x7f2b8813, 0x000187 } }, { @@ -38472,19 +38472,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x93de583, 0x12557216, 0x243f22cf, 0x8d2a1fbb, 0xdf366d8c, 0xfd04791b, 0x94730fb8, 0x835a95c, 0xc4a5d115, 0x2f90f389, 0x34833e6a, 0x338a7c0c, 0xb07e739a, 0x2eade8a9, 0x808abb37, - 0x6c3eb64d, 0x000176, 00000000 + 0x6c3eb64d, 0x000176 }, { 0x8837ad28, 0x3622761d, 0x5f42b301, 0x8cd04cc0, 0x234c2953, 0x823dfc8, 0xca886f4b, 0x4d2ba9ed, 0xfe02bb13, 0x5c278c40, 0x3764e231, 0xa6811c5f, 0xb7e1ffbb, 0x38c64c72, 0x6cb259af, - 0x1a324c0c, 0x0000cc, 00000000 + 0x1a324c0c, 0x0000cc }, { 0xf2b2fe2f, 0x45b76f6a, 0xa47a813f, 0x1610acf8, 0x250cd401, 0x65feead4, 0x388c6370, 0x5fbe89a3, 0x40d0b109, 0x76890607, 0xbd5f53bc, 0xc6e20644, 0x5c146c08, 0x2c8bbb2f, 0x7e5eadc6, - 0xb4c4a042, 0x000124, 00000000 + 0xb4c4a042, 0x000124 } }, { @@ -38492,19 +38492,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x574b0692, 0x54872f3c, 0x888ae072, 0x83014c34, 0x8ab107ca, 0xd2cd0031, 0xbd02c0bb, 0x4c07e460, 0x1327edf6, 0x759f4377, 0x94d3e6a2, 0x499f42c1, 0x67eb3444, 0x325df5f9, 0x9645d11f, - 0xbbe3ae52, 0x000148, 00000000 + 0xbbe3ae52, 0x000148 }, { 0xbabfc047, 0xa5b26484, 0xa52ee47d, 0xf8ba5a56, 0xf4c54988, 0xf05a293c, 0x763dccb1, 0x64791d0f, 0xe6d1742d, 0xc87fa01b, 0xafeff405, 0x9091480b, 0x46c6d7cd, 0x313cb754, 0xd8067276, - 0x8da1bd29, 0x0000dc, 00000000 + 0x8da1bd29, 0x0000dc }, { 0xe8a14277, 0xae97745, 0x7c676c21, 0x9172fb18, 0xed006ad1, 0xbd310b31, 0xa8da1714, 0x76d62665, 0x8f899e67, 0x459e3cf5, 0x67ce73e7, 0xf0c5f815, 0xb098f5b2, 0xabfa9a04, 0x34b2244a, - 0xb783fd8e, 0x000141, 00000000 + 0xb783fd8e, 0x000141 } }, { @@ -38512,19 +38512,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x573f1dd2, 0xbc28d0ee, 0xe4b48590, 0xe504068b, 0x340a5301, 0xb0defdca, 0x9af18d56, 0xcc9e8f75, 0xa727ed89, 0x78332158, 0xec55a623, 0xb29fcf60, 0xf0058d26, 0xd651fa47, 0x16715df1, - 0xafeb6afb, 0x00010e, 00000000 + 0xafeb6afb, 0x00010e }, { 0x92768c5e, 0x209f9651, 0xe1ea886f, 0xe95eda0e, 0x6468df23, 0xd54783e3, 0xf8d3fd96, 0xcf6e44de, 0xebb4a22b, 0x45935159, 0x4f916198, 0xf593a223, 0x3ee991ec, 0x642f0970, 0xb0d3580e, - 0x28ed9a59, 0x0000d0, 00000000 + 0x28ed9a59, 0x0000d0 }, { 0x6bfd9a6a, 0x865dca3c, 0xf3281a45, 0x427ab48a, 0x2037c2b, 0xfbca1e, 0xc5708981, 0xce7fa42b, 0xd52b478a, 0x4efdce4f, 0x88435a77, 0xd4bb986, 0x89585822, 0xc89d9ce6, 0x2919529e, - 0x370d4d08, 0x000164, 00000000 + 0x370d4d08, 0x000164 } } }, @@ -38534,19 +38534,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x39708e31, 0xdd3c81d5, 0xbc588db4, 0xff2910e0, 0x57506877, 0x7d607c42, 0xcc1d9118, 0x7d6b6eaa, 0x9a8b0875, 0xceea944d, 0x213723, 0xcd8dfe44, 0xacc8697b, 0xb3f26749, 0x2b2640b9, - 0x7af6bd9b, 0x000124, 00000000 + 0x7af6bd9b, 0x000124 }, { 0x3cd10df8, 0xce3f9243, 0x235a33e8, 0x193d3aa7, 0xccdef89a, 0xc62907e9, 0x74d1972f, 0xfcf415a2, 0x24c16803, 0xd44a65d6, 0x777c3a92, 0xcf51c4b0, 0xae4bb43a, 0x5109c1ff, 0x30876bea, - 0xd33097ba, 0x000127, 00000000 + 0xd33097ba, 0x000127 }, { 0xb8a307, 0x423036b9, 0xd6bdb804, 0xff0cb81d, 0x83f4087f, 0xc5e848a0, 0x47f22c2c, 0xccec745b, 0x8ee67e2a, 0x653cdf7, 0x6fd39049, 0xd74bec43, 0x71c99d2e, 0xae73175a, 0xb36da08d, - 0x8c561482, 0x00011e, 00000000 + 0x8c561482, 0x00011e } }, { @@ -38554,19 +38554,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd888bfb0, 0x97e93db3, 0x85547108, 0xea30bba8, 0x237e0c6b, 0x73e42f6, 0x6db4efda, 0xafeb034a, 0x4d152e1d, 0xc08ccbb4, 0xae4c323f, 0x2b78a14a, 0x1733685d, 0xe7408687, 0xd24483bc, - 0xd3946cc3, 0x00017c, 00000000 + 0xd3946cc3, 0x00017c }, { 0xfd6ace7c, 0xb41d684a, 0x8c6f7d94, 0x89b59c59, 0xe2b5ca6, 0x927f8ee7, 0x2be9d872, 0xf9ef128a, 0x50eef5b9, 0x7f8c28e3, 0x7dd088c0, 0x2c97550f, 0x1c6f365d, 0x9ad9c47c, 0x2040ffef, - 0x8d8c3c7e, 0x00000d, 00000000 + 0x8d8c3c7e, 0x00000d }, { 0x6e9dbcda, 0xc8ef1c2b, 0xf98311f7, 0x8b0189ec, 0xe380e75c, 0xf54d3202, 0x8f119ff, 0x31a009fe, 0xac6a1a70, 0x5a29ddcf, 0x73dc18c4, 0x8622895c, 0xa0178148, 0x7d168815, 0xc26eba1f, - 0x4e016fef, 0x00006f, 00000000 + 0x4e016fef, 0x00006f } }, { @@ -38574,19 +38574,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa7d16c09, 0x484e4ab, 0xb6a77353, 0xac4954d8, 0xde7698ee, 0x13e11d12, 0xceb6de16, 0x1b7eb223, 0x191292ae, 0x5909dbad, 0x73193bdb, 0x2bc42285, 0xbd32a15b, 0xaf93b1ca, 0xf92d9692, - 0xbc021878, 0x0000be, 00000000 + 0xbc021878, 0x0000be }, { 0x561fbdbc, 0x3bb7d219, 0xc9ef128d, 0x42e223fb, 0xf8c85943, 0x63636e7d, 0x5974b46f, 0xcadac4a, 0xa5b4b80, 0x2bb8c600, 0xc60e80ed, 0x844a739b, 0x1b3d18d2, 0x4fab941e, 0x9d34c9dd, - 0xaece7aa5, 0x000095, 00000000 + 0xaece7aa5, 0x000095 }, { 0x5ea77018, 0x987d91ea, 0x4952a9f4, 0x430a2ec0, 0xf21f4f63, 0xb6028d2d, 0x5bd5c119, 0x987fa199, 0x48464162, 0x9258b0b5, 0x2128caa8, 0x3d6ccfe7, 0xc83ec3c6, 0x45ab39e4, 0xe034e4dc, - 0x326c1c86, 0x0001c6, 00000000 + 0x326c1c86, 0x0001c6 } }, { @@ -38594,19 +38594,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xafb4e402, 0x8e49a0fd, 0x5f77c87d, 0x6d6cce6a, 0x203f482b, 0xedfa2205, 0x7c95f230, 0x9b57a063, 0x9d8410b9, 0x39f94f39, 0x777b8bd7, 0xcf088755, 0x6176363d, 0xfd1a003a, 0x6d37d4b, - 0x154309c1, 0x000009, 00000000 + 0x154309c1, 0x000009 }, { 0xd71bba44, 0xa521013c, 0xf52c4ef7, 0xf1913b39, 0x63696070, 0x3afc69f7, 0x6029c3fb, 0xa9c7f6e3, 0x25106bd, 0x5b2bdc29, 0xbc3ba976, 0x695fc7ec, 0xc6f693e0, 0xdd3aab3d, 0xec793d47, - 0xae58bf7f, 0x0001d5, 00000000 + 0xae58bf7f, 0x0001d5 }, { 0xd59f1e2f, 0x43b56d2f, 0x2023e746, 0xa24ec604, 0x3554215, 0x359dd492, 0xb6e8195d, 0x3dbfad00, 0xc1c9b0ac, 0x8d41dfd3, 0xa5a28f8e, 0xba6b570a, 0x856c48eb, 0x73ac285c, 0x7e6a8d5e, - 0x22f7027f, 0x000097, 00000000 + 0x22f7027f, 0x000097 } }, { @@ -38614,19 +38614,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5bf46c6d, 0x2585c57, 0xdd6b19e5, 0x6256213f, 0x89b0314c, 0x1ec8364a, 0xbd7de604, 0x8b7202cc, 0x153773fd, 0x55486659, 0xabd5e0d1, 0x75b4bf9a, 0x6a49051, 0x43cf6921, 0x2917dc8c, - 0x3284b632, 0x0001a1, 00000000 + 0x3284b632, 0x0001a1 }, { 0x6216a5cf, 0x2ca46564, 0x8601067a, 0xc1be3825, 0xa3c1154a, 0xabbac6a5, 0xc1b8bf1e, 0x9a5fa12c, 0xaec8dc9d, 0xfa291f38, 0xaaf8424f, 0x58e85060, 0xc4b20efe, 0x8215eaae, 0x23fd82e7, - 0x7d4293ab, 0x00019e, 00000000 + 0x7d4293ab, 0x00019e }, { 0x603b5e82, 0xc093750d, 0x40885761, 0xddbbdafe, 0x984b56ea, 0x382711a7, 0x5ddab984, 0x575680bc, 0xa14bcc88, 0x1c0c9d84, 0x2c3d6fba, 0xd43f8fb8, 0xd1bfcb32, 0x322dd05b, 0xbd2f6353, - 0x70629366, 0x000072, 00000000 + 0x70629366, 0x000072 } }, { @@ -38634,19 +38634,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d22289c, 0x783ed67e, 0x3fd83d95, 0xd3de0f86, 0x91a1ca13, 0x3c963802, 0x2d632947, 0x9ed719d1, 0x797783f9, 0xfe309b63, 0x4789114e, 0x34896c3e, 0x6d79d66a, 0x95ea1704, 0xb10b2923, - 0x1d09669d, 0x000151, 00000000 + 0x1d09669d, 0x000151 }, { 0x16856ac8, 0x6ec094d2, 0x3d1e65a1, 0x9218260f, 0x1f399238, 0x392a25e4, 0x8e3f432f, 0xe7992b0f, 0x93d6c034, 0x540b0ffb, 0x92f7f8b9, 0x8c9d86e, 0x12a0e909, 0x968219d, 0x96ba0802, - 0x9df35b35, 0x0000be, 00000000 + 0x9df35b35, 0x0000be }, { 0xe5c2537c, 0x549e718, 0x5cde4f60, 0x52f80630, 0x10dfc67e, 0xeddf7f9f, 0xe55dad58, 0x2b62b0d2, 0x2de64386, 0xd2107771, 0x62a0e7f6, 0xfaa475a6, 0xfcd22327, 0x3198a816, 0x2cabc9e, - 0xaaf4e907, 0x000052, 00000000 + 0xaaf4e907, 0x000052 } }, { @@ -38654,19 +38654,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1b64dc0d, 0x72ab6432, 0x9c203729, 0x3865d7b9, 0x13c94c94, 0x8ed517e, 0x8ae45842, 0xe3a0bad8, 0xae85a9b2, 0x24e9bf8c, 0x72d8aa21, 0xde8534e0, 0xf89f3757, 0x854ff324, 0x38238e01, - 0xdca8aab8, 0x000137, 00000000 + 0xdca8aab8, 0x000137 }, { 0xc465d2c, 0xe5a87459, 0x68e9e4f1, 0xd96b4aa4, 0xb52bf72d, 0x2b4319cc, 0x421c2e0e, 0xd6b466ab, 0x9de80d1f, 0x7c8a1e41, 0x6060834b, 0x85c89486, 0x370bfc7d, 0x42c467d0, 0x387d952e, - 0x2855341e, 0x00008b, 00000000 + 0x2855341e, 0x00008b }, { 0x404c8910, 0xb78f3964, 0xc77bea9c, 0x20f8ff89, 0x9ba8f871, 0x7857022f, 0xe383399b, 0xa5313942, 0xeb7b16c9, 0x638e92ba, 0xc665b0f2, 0x28621804, 0x7b0a8da5, 0x91369dab, 0xf4f0d030, - 0x1c1cfaa4, 0x0000d6, 00000000 + 0x1c1cfaa4, 0x0000d6 } }, { @@ -38674,19 +38674,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe8bfcf2, 0xce2f46ac, 0xd419a4f2, 0xb02a8e1b, 0x8520a2f6, 0x9bce45e3, 0xa421d204, 0x963e081f, 0xcac1879e, 0x3b0b1bab, 0x33b1aa21, 0x6bd1fd62, 0x3bbfe4e5, 0x1dc0a922, 0x4dd22a2f, - 0xf0c8ed52, 0x00014e, 00000000 + 0xf0c8ed52, 0x00014e }, { 0x84c766ea, 0x19283940, 0x45a1643d, 0x74c8f163, 0xc0487e5f, 0x3c35e74d, 0x499c38df, 0x8c7563e2, 0xe70c7471, 0x1852c2a3, 0x69b578f4, 0x445bef5e, 0xa93877ab, 0xd51eb759, 0x16f760c0, - 0x7e33eeec, 0x0001b1, 00000000 + 0x7e33eeec, 0x0001b1 }, { 0xae2bfaad, 0xcfb8c83, 0xc9682686, 0x4b5f7186, 0x1c9084e9, 0x2e2501a0, 0xa836af22, 0x839bb7d4, 0x5593175a, 0x58df9257, 0x7cab4119, 0xb2bac7df, 0x85af0d98, 0x16862d8f, 0xe8ad8354, - 0x2b5b7411, 0x000090, 00000000 + 0x2b5b7411, 0x000090 } }, { @@ -38694,19 +38694,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6245aeaf, 0xe0db0eb5, 0x35037710, 0xc969cdb7, 0xbce9b84d, 0x651e3d5e, 0x7155b89c, 0x12dad90d, 0x72a7e184, 0xd2eb7c5a, 0x57058d85, 0xc907069d, 0xdf49dfce, 0xa6311b4c, 0xf5395e55, - 0x285880f5, 0x0000cd, 00000000 + 0x285880f5, 0x0000cd }, { 0xa9a5d36d, 0xa6ebe98a, 0x9e769d66, 0xaac59539, 0xff88588c, 0x4a5730f7, 0xa9da81fb, 0x8cb567a0, 0xbc0cad83, 0xc73f7e92, 0x7e73e755, 0x8d722aba, 0x6d6d9e30, 0xbc873f38, 0xc1c0ea05, - 0xf9c297af, 0x0001fe, 00000000 + 0xf9c297af, 0x0001fe }, { 0x11fa7edf, 0x60f3ce49, 0xbb0eeaf4, 0x872a91c4, 0xffa1df4e, 0xb4d9229, 0xefc99c28, 0xdccb88d7, 0x895f8785, 0x91d18787, 0x8183d7ca, 0x5a0ca6f4, 0x98415ad4, 0x4cbc874, 0x11ec04d9, - 0xdc7e0d3, 0x0001f2, 00000000 + 0xdc7e0d3, 0x0001f2 } }, { @@ -38714,19 +38714,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9d00a9a6, 0xc6109642, 0x38df8c2f, 0x4c2b0cae, 0x6ca8b099, 0x73fb1c98, 0x48e60a26, 0x20933a83, 0x1b629d29, 0xfd9227f1, 0xd4fa35c1, 0xfc2e22e5, 0x5588f5d2, 0x996c614d, 0x1a167ebf, - 0x792fee5, 0x0000a2, 00000000 + 0x792fee5, 0x0000a2 }, { 0x88f490fa, 0x6e15cae4, 0x9ab81c00, 0xd0c78e2c, 0x9644e0b3, 0x6b2c3999, 0x4d0fefd3, 0xb58e7a81, 0x51aec9e1, 0xb5f506ae, 0x4ce1d546, 0x79303d9d, 0x5ba07526, 0xe41677f1, 0xed89eb2, - 0x5e5d817b, 0x0000c8, 00000000 + 0x5e5d817b, 0x0000c8 }, { 0x8ac94bb4, 0x87ed2f52, 0x81db38f8, 0x43b25592, 0x623f8f32, 0xa84be870, 0x3976eec0, 0xa276e57c, 0xe6d442e1, 0x8cf53673, 0xf134aec7, 0xdb2d02df, 0x51724933, 0x5157ab55, 0x97cbb4ba, - 0xe3fb925c, 0x000144, 00000000 + 0xe3fb925c, 0x000144 } }, { @@ -38734,19 +38734,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe62734a4, 0xb2b30966, 0x9cf5171e, 0x36e09d43, 0x92c7020a, 0x801e8014, 0x58d23a5, 0x93234555, 0xc8cdcb97, 0xfb718f58, 0x7214d32d, 0x3bde45b6, 0x1bb15624, 0x6ad69a04, 0x51412b21, - 0x8f96a066, 0x0000c0, 00000000 + 0x8f96a066, 0x0000c0 }, { 0xa3e1d1a2, 0xdc0b3ac0, 0x1bff8933, 0xbd21d677, 0xe271bda1, 0xd61cd45e, 0x19a91e3e, 0x4a6ae3b3, 0x9a724fae, 0xf32dc21e, 0x12c71b6d, 0xe580aa3d, 0xccae2a13, 0x71288994, 0xc62e3b08, - 0xb69b4c21, 0x0000bf, 00000000 + 0xb69b4c21, 0x0000bf }, { 0x1c89ca01, 0x45f81d65, 0x75bdf33f, 0x8965d335, 0x9574a200, 0x4361743a, 0x3dedca9e, 0xc4f21f57, 0x19446fb6, 0x72806c64, 0xf60b32d4, 0xf36a72a9, 0x8e3e0bde, 0xe34a2a33, 0xa2e77c58, - 0xafdd8961, 0x000059, 00000000 + 0xafdd8961, 0x000059 } }, { @@ -38754,19 +38754,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf56a0640, 0x4dac8b2e, 0xd3896996, 0xe8325543, 0xe5b2c645, 0x7f8959a5, 0x7eaa03ba, 0x1b0e07a3, 0xe41aa905, 0x6de86232, 0xf12a927a, 0xba208814, 0x25f0a33f, 0x6539baf5, 0x74c78735, - 0xe53cc57c, 0x000108, 00000000 + 0xe53cc57c, 0x000108 }, { 0x4371c367, 0x8d290192, 0xef9401d9, 0x1073451c, 0xfe0a076c, 0x445acee8, 0x1383d1e4, 0x82d3aa96, 0x67cffe59, 0x7104bcf2, 0x84aab05c, 0xee919896, 0xca11d595, 0xcb2ab35d, 0x66ee5019, - 0xe74b18d9, 0x000064, 00000000 + 0xe74b18d9, 0x000064 }, { 0x19276e82, 0x9fb07434, 0x8f784ea8, 0xcd62a486, 0x5166ff1d, 0xc90906b, 0xcd10294b, 0xe558db61, 0x868cfd59, 0x31f8b043, 0x31e17ccc, 0x784a1a55, 0x31022d93, 0xd3c891a1, 0xfce8d938, - 0x5f09d4bf, 0x000090, 00000000 + 0x5f09d4bf, 0x000090 } }, { @@ -38774,19 +38774,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7ecc610c, 0x9aefd6e8, 0x7a4ad448, 0x278fdee3, 0xa51b695a, 0xae038dd7, 0x3640c001, 0xbcfcd0c, 0x007475, 0x36097a68, 0xd3b41e68, 0x457ac39a, 0x70232114, 0x7a31bda7, 0x23bc088, - 0xb8d008d2, 0x000055, 00000000 + 0xb8d008d2, 0x000055 }, { 0x50b6376a, 0x782dc57d, 0x7630de7c, 0x40d8885e, 0x814be84b, 0x78ca0088, 0x95f1c3d7, 0x693c2e74, 0xbb3e01a5, 0x35f3591c, 0x9bbbf89a, 0x293e2829, 0xb50ba1c3, 0x40e183ad, 0x4806773b, - 0xbb7dec92, 0x0001c2, 00000000 + 0xbb7dec92, 0x0001c2 }, { 0xa8e959de, 0x1c17e935, 0x9e62e9a5, 0x90cdb35a, 0x1bdb9edd, 0xd078d019, 0x76e7b28c, 0x4b12667d, 0xe7917b0e, 0x700f418f, 0x7a8e66f, 0x91df6341, 0xcb628492, 0xfca440ff, 0xc952a866, - 0x27d67a3, 0x000084, 00000000 + 0x27d67a3, 0x000084 } }, { @@ -38794,19 +38794,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x14a84a59, 0x9d15e789, 0xa245cc47, 0x27ea431d, 0x9e0d83ea, 0x58096be2, 0x209b85cb, 0xc9ef03f7, 0x3f9e2377, 0x70c7ca6c, 0x42dad667, 0x5893c8c, 0xbc53f566, 0x2554f2a4, 0x487cdeb7, - 0xff3a9a2e, 0x00000c, 00000000 + 0xff3a9a2e, 0x00000c }, { 0x94abcb4c, 0x2d8b6411, 0x9c3d3c2e, 0x2efc4399, 0xdaf83eb2, 0xdbf6368a, 0x28c0735d, 0xc3c92c79, 0x938c8d53, 0x17681040, 0x5e7b2281, 0x1d107dbf, 0x2387409, 0x3682edcc, 0x56d500e0, - 0x7a96cee6, 0x0001a0, 00000000 + 0x7a96cee6, 0x0001a0 }, { 0xd4d09c2f, 0x4770ca86, 0x4cda26fd, 0xb80704b2, 0x2e63d895, 0x84529682, 0x577defeb, 0xf7184e6, 0xb23182e4, 0xc8dd5836, 0x19a0da02, 0x64401276, 0x12a57493, 0x3ee2d258, 0x4994c04a, - 0x470633c0, 0x000145, 00000000 + 0x470633c0, 0x000145 } }, { @@ -38814,19 +38814,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb7610ffd, 0xdad3da8, 0x8ac92b30, 0x264eed85, 0xad009db2, 0x28d20572, 0xc7adf13f, 0x8dd363e3, 0xecf27a47, 0x6c59cb7, 0x36dcb282, 0x3a501923, 0x9f52dc0d, 0x6e635db6, 0xb489961a, - 0x284b470e, 0x00016d, 00000000 + 0x284b470e, 0x00016d }, { 0xe105d85a, 0x5133620a, 0xab1718e9, 0xde79cab1, 0x3e381782, 0x2abeedfd, 0x8a8163fc, 0x7ab6c117, 0x5c42f8d, 0x76e1887a, 0x1273983f, 0xabd29601, 0x63da0071, 0x5a42ddb9, 0xf4b9786, - 0xb9b728, 0x00011c, 00000000 + 0xb9b728, 0x00011c }, { 0xc4bcde06, 0xb52c4e6f, 0x9c963bb3, 0x32f53f1a, 0xb18c4753, 0xbc53afcc, 0x105f3375, 0xa0419e84, 0x6c5c3a8b, 0x5393762c, 0xd3851410, 0xea05a74c, 0xc93f4340, 0x4181e701, 0x723fd960, - 0xd889b25a, 0x000136, 00000000 + 0xd889b25a, 0x000136 } } }, @@ -38836,19 +38836,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x767febcf, 0xa5e8aedd, 0x93b70d73, 0xd2fd9b07, 0x474e1987, 0x2a11a750, 0x5867e1c5, 0xf0a3715b, 0x7bd7a031, 0x5406d02d, 0x15929ae4, 0x8bb1447, 0xb4a45f8e, 0xa1fe2f7a, 0x378d5697, - 0xad908e, 0x00014a, 00000000 + 0xad908e, 0x00014a }, { 0x12ed78e4, 0xbc087787, 0x786c8ddf, 0xd9c6a6c3, 0x574a53b0, 0xb917f58e, 0x7abe3c9e, 0xb2b027a0, 0x55f22dfa, 0x79f3769f, 0x7438a193, 0x547b2d8f, 0xd37092a, 0x7e83e3ce, 0x6f54e011, - 0x6fd46e26, 0x000079, 00000000 + 0x6fd46e26, 0x000079 }, { 0xb9c3f758, 0x6ba2b4d1, 0x33ca0436, 0x1ddb42ed, 0x795f9f59, 0xf7efabf2, 0x8bc06ea, 0xcf2a04cc, 0x4a6c063f, 0xe99958a2, 0x63dc207b, 0x897ef2e3, 0x4ed47cf7, 0x9d2ddb41, 0x214343af, - 0xdeb56e5, 0x0000bc, 00000000 + 0xdeb56e5, 0x0000bc } }, { @@ -38856,19 +38856,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeaae1f4f, 0x1bbccd46, 0x152798d2, 0x2f21ab82, 0xe07f0da5, 0xb1b074a2, 0xbedbc35, 0xb6590d60, 0xf0373c94, 0xa8724eeb, 0xb7141b24, 0xab67901e, 0x9e4030bf, 0xfff76d35, 0x26faf0a5, - 0xe8b96e5b, 0x000121, 00000000 + 0xe8b96e5b, 0x000121 }, { 0x80fe7160, 0xc178b706, 0x44ff5943, 0xce7126fb, 0x288b5b53, 0x826da35b, 0xe086db2a, 0xf3b3aa4a, 0x4082915f, 0x78d22719, 0xaf13df0e, 0xd3f1b09c, 0xb888619f, 0xb1fd1c6f, 0x8fe40db9, - 0x6fa596b, 0x000184, 00000000 + 0x6fa596b, 0x000184 }, { 0xbbc37a13, 0xa2b844b7, 0xf203bcc6, 0x78262d8, 0x66b19803, 0x11e10dc1, 0x6aaf796, 0x3de978dc, 0xe652d2ce, 0xecf8083f, 0x8ea9d69f, 0x5ef8f2d4, 0x7f86105, 0x9a6660d, 0xaed60fcc, - 0xb5eb75ca, 0x000143, 00000000 + 0xb5eb75ca, 0x000143 } }, { @@ -38876,19 +38876,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xddad585a, 0x13071e4a, 0xb8df3bd1, 0xeb20048a, 0xcad17674, 0xcc68da10, 0xce29a733, 0x471c1073, 0x6ce332e0, 0x3a4d540e, 0xf1a2e02c, 0x38826a40, 0xbcc24597, 0x90ae54d8, 0xe203af06, - 0x195129b4, 0x00005e, 00000000 + 0x195129b4, 0x00005e }, { 0xf034dd01, 0x536e9bec, 0xe5e4dc33, 0xbe6420c3, 0x4f8f1482, 0x32e39e34, 0x6b96554, 0x10fada88, 0x4c59c18, 0x8a742c82, 0x5e655d81, 0x33d9bf2c, 0xf06b61df, 0x5420a63d, 0x77ab161b, - 0x1d12b20, 0x0001c9, 00000000 + 0x1d12b20, 0x0001c9 }, { 0x7940770a, 0x3f103db3, 0x2ffbab34, 0x5cd8c572, 0x45ce8ee2, 0x7bffefc, 0xa28e6bd, 0x6c7897e7, 0x7bdca021, 0x46ed9579, 0xe36c6f74, 0x3302cc77, 0x82b6335f, 0xaaad2bb3, 0xf37b8d78, - 0x7b867d11, 0x00016d, 00000000 + 0x7b867d11, 0x00016d } }, { @@ -38896,19 +38896,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x24580ff, 0x8883753b, 0x9e488fe1, 0xcb6fab2f, 0x69ac6ef3, 0x2afce609, 0x2d7be189, 0x25e875f3, 0x46a2b4f6, 0x76446abf, 0x9c8b5e14, 0x9e5e2cd9, 0x5ad58a9c, 0x4c5e1cd, 0xab9fb55e, - 0x6e5577dd, 0x0001f2, 00000000 + 0x6e5577dd, 0x0001f2 }, { 0xa9e86e6d, 0xc5a762f1, 0xa471a8b8, 0xefbde7e4, 0xf4397687, 0x5093e182, 0x6d7347a3, 0xa6aac544, 0x74340e4, 0x8d45f7d7, 0x3155ecbc, 0x46a3e7c2, 0xdd646df8, 0xeb35ef6c, 0xdd10399b, - 0xe3999b87, 0x000157, 00000000 + 0xe3999b87, 0x000157 }, { 0x56c7729c, 0x3081d6f0, 0x672804fb, 0x995d84fd, 0xb36b4697, 0xc033f3a8, 0xdbe6c2bb, 0xf9575cfd, 0xaf8231f6, 0xb0c0b071, 0x29ca9e7f, 0x2a118c08, 0xf5cd63e6, 0xe2132c6f, 0xb7b771e6, - 0xe6007f06, 0x0001fe, 00000000 + 0xe6007f06, 0x0001fe } }, { @@ -38916,19 +38916,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x493b5246, 0x96db4188, 0xb39837ee, 0x9d635139, 0x1ffc2329, 0x705d49b7, 0x284dedc, 0x8c3f2dae, 0xebdc885f, 0xfcaf3386, 0x798187dd, 0xa4922c84, 0x7d39cd93, 0x6dbc7cd0, 0x8ea3cf68, - 0x205f22dd, 0x00001f, 00000000 + 0x205f22dd, 0x00001f }, { 0x99d194e5, 0x15193a32, 0xf120256d, 0x84be9180, 0x18230b75, 0x4cfa0613, 0x1e6495a4, 0x25939286, 0x503e532c, 0xd912ceb4, 0x4571775c, 0x6f850d1b, 0x16af6a5b, 0x49890a40, 0xb8364713, - 0x2162e271, 0x00009d, 00000000 + 0x2162e271, 0x00009d }, { 0x627e6dba, 0xd34c3741, 0xecf59580, 0x7d8046fc, 0x6182d998, 0x7ce6636f, 0x9f7b2375, 0x9f9c6b3b, 0x7b6a0d2d, 0xc8067fe0, 0x9b2f8a58, 0xc5a7411e, 0xee20e84a, 0xeecd3c82, 0xf24b3539, - 0xc3364e1, 0x000080, 00000000 + 0xc3364e1, 0x000080 } }, { @@ -38936,19 +38936,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x54d4a62e, 0xb12928ed, 0x8a4e8b90, 0xe6dde6c2, 0x43e9838f, 0x935f9420, 0xa040367f, 0x24941b72, 0x7de2f3d1, 0x2636e585, 0xe53a35e2, 0xc1d88b63, 0x9c28a6c9, 0x19a7db50, 0xc17e294e, - 0xa2575f5f, 0x000011, 00000000 + 0xa2575f5f, 0x000011 }, { 0x5818ab73, 0x79323ac2, 0x93d53daa, 0x26f8f874, 0x5b9ad507, 0xe06bfaf8, 0xb34b9347, 0xd2554ae1, 0x87b964e4, 0xb74a0aed, 0x1016cd7b, 0x46e43aff, 0xafc08f02, 0xb44b0901, 0x52807267, - 0xaccd424c, 0x000147, 00000000 + 0xaccd424c, 0x000147 }, { 0x2c42741e, 0xd6bb6688, 0x6d14ef0, 0xa1747ed2, 0x9f81be81, 0x154c5afb, 0xf310c6a8, 0x5085de1c, 0x35f1e155, 0x241106e2, 0x9ab27086, 0xfd4de22e, 0xa2222bbd, 0xe47165ba, 0x52c754c, - 0x123375a8, 0x000011, 00000000 + 0x123375a8, 0x000011 } }, { @@ -38956,19 +38956,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbaa8ee33, 0xf87046a4, 0x528a502e, 0x987ce114, 0xe38a9a5c, 0x1400a02e, 0x93054115, 0xef14613a, 0xd00234e5, 0xf1faf871, 0xe9cbbdef, 0xe275df38, 0x7b64ac61, 0x4fc07482, 0x231fbe9b, - 0x406c0568, 0x0001bf, 00000000 + 0x406c0568, 0x0001bf }, { 0xdbb4ab9c, 0x94202fbf, 0x891aadff, 0x72a2e698, 0xfb21982f, 0x6fe2ecca, 0x3afe090b, 0x224d166c, 0x15c30ea6, 0xcae12c63, 0x1125e1de, 0x9bd20507, 0x96ac0709, 0x72d20cdd, 0xb2197de9, - 0xfe5c64a6, 0x000018, 00000000 + 0xfe5c64a6, 0x000018 }, { 0xbe70919a, 0xc55f106c, 0x8657b820, 0xa0addc6a, 0x49639edc, 0x676f16ec, 0xf3cbc7c6, 0x958730ae, 0x93cd95d5, 0x703964e2, 0xfcb6e87c, 0xb585fa7f, 0x298cfbbd, 0xde106af0, 0x3973627b, - 0x77237dd3, 0x000097, 00000000 + 0x77237dd3, 0x000097 } }, { @@ -38976,19 +38976,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc39584dd, 0xa742cd35, 0x867c2623, 0xacf0af87, 0xb9d13f88, 0x384e9b76, 0x1c60478c, 0xcd633687, 0x46aa870d, 0x90cd19b2, 0xfd9a89ca, 0xb328c69b, 0x3f204730, 0x4f82c7f2, 0xc48bd275, - 0xeef44842, 0x00003c, 00000000 + 0xeef44842, 0x00003c }, { 0x2a918f9c, 0xa043623a, 0xfa45896e, 0xc300d07d, 0x930973a8, 0xb86dc9be, 0xaaeb6454, 0x7721ab11, 0xe8169ee, 0x33e6f718, 0x20be870e, 0xbdc1f8c5, 0x75f3ffab, 0x407f1e03, 0xe07c1eb7, - 0x7c367e92, 0x000088, 00000000 + 0x7c367e92, 0x000088 }, { 0x987948a2, 0xfd5b1af7, 0xf2acad72, 0x75579d62, 0xfae01f96, 0x93411a5, 0xba4a88a9, 0xa08267c7, 0xeea8b978, 0x6bab322f, 0x8175e577, 0x7cb3d056, 0x4406ce9b, 0xd706c665, 0xbdc046d4, - 0xc9488c07, 0x0000eb, 00000000 + 0xc9488c07, 0x0000eb } }, { @@ -38996,19 +38996,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xacf225fb, 0x8c638fea, 0x76c75780, 0x4269f3ca, 0x85970442, 0x39096b51, 0xc68ff773, 0xced20092, 0x55fdd3b3, 0xa9921268, 0x34dc98c8, 0x1a8348da, 0x7c60f23e, 0x1648e29f, 0x2b3f2e8d, - 0x888cfdcc, 0x000108, 00000000 + 0x888cfdcc, 0x000108 }, { 0x930f283b, 0x79b1a987, 0x2f3fa9d3, 0xfd95d4a3, 0xfe2d0a86, 0xf8fc1100, 0x6485a62b, 0xd0d8cded, 0x50c26037, 0x7f84d0b1, 0x22ad2e80, 0xacbe4b43, 0xb496d0f0, 0x2336b610, 0x29e58516, - 0x558ef955, 0x00017c, 00000000 + 0x558ef955, 0x00017c }, { 0x6f328022, 0x9f8f2d9a, 0x7a0609d5, 0xcc4552f1, 0x721ba641, 0x2ba07273, 0xc86733c9, 0xe6a19aec, 0xf786c2f, 0x84ec3b83, 0x39b34e90, 0xed79e49e, 0x8b697e57, 0xaaa0234c, 0xd685a3dc, - 0x4cac989c, 0x0001c5, 00000000 + 0x4cac989c, 0x0001c5 } }, { @@ -39016,19 +39016,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xecfc0e64, 0x6e3024c0, 0xa1bae7f7, 0x1f429162, 0xb5bb5d74, 0x12b8ffae, 0x1154b594, 0xa067476e, 0x5b61d8c2, 0x6ca77866, 0xb7dc56cb, 0xcffd512c, 0x6a3503f0, 0x9de6e4d2, 0x7a696f8d, - 0xcfbf3924, 0x0000ed, 00000000 + 0xcfbf3924, 0x0000ed }, { 0x1448acb0, 0xee714565, 0x3551f900, 0xd3666fc0, 0xb1fa11e, 0xb9a3819c, 0x967a280, 0x505ddedf, 0xb38d5381, 0xf6e3fed4, 0x862f088, 0x56064c94, 0xaba945a6, 0x4ec05954, 0x4ca2116e, - 0x80783ba6, 0x00003d, 00000000 + 0x80783ba6, 0x00003d }, { 0x839578a9, 0x364f4e7d, 0xd7986310, 0xc1e9b097, 0x5e43b57c, 0x93fd5fe0, 0xefe4d5f7, 0x4d9f5e7d, 0xbbbeed1e, 0x27a260e, 0xb909fad6, 0x9567a1d0, 0x34aec4f6, 0xceaaef63, 0x5bbfde08, - 0xc9f950c1, 0x000168, 00000000 + 0xc9f950c1, 0x000168 } }, { @@ -39036,19 +39036,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb489548, 0x76afdf67, 0xca5d090c, 0xb84d355, 0x126735bf, 0x713c0ca3, 0xa9bf974d, 0x7bd7cf9a, 0xe84a820e, 0x141a4050, 0xd0247779, 0x89d7c5e6, 0x926f3f22, 0x36e124d1, 0x7428d3d, - 0x6634f750, 0x00006e, 00000000 + 0x6634f750, 0x00006e }, { 0xfdfea5c5, 0x6bae3a6a, 0x4cae0575, 0xfbf4aea8, 0xb50f3a9a, 0x3498b181, 0x2985f895, 0x8e25fac3, 0xd03df12a, 0x93242cb6, 0xfb85e9d1, 0xc2318d3a, 0xd79789d5, 0x22462569, 0x6102bf00, - 0x3b4f6da, 0x00002e, 00000000 + 0x3b4f6da, 0x00002e }, { 0x282d8f71, 0x5d333c41, 0xc860b618, 0x2a6d878, 0xfee42787, 0xa3ee4c4f, 0xe7805b1d, 0x88476513, 0xe316dc30, 0xcacb6262, 0xa4fcbcbf, 0x3139ebda, 0x5e5657cb, 0x34df0f9d, 0x166a5eb8, - 0xe32af5ae, 0x000043, 00000000 + 0xe32af5ae, 0x000043 } }, { @@ -39056,19 +39056,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x130adb23, 0x8602531b, 0x7d402f8b, 0xc8b61efc, 0x999c367f, 0x7db79648, 0x97cd3dc4, 0x8bd64d5a, 0xb9044cca, 0xb22ec37, 0x636ef9a6, 0xf3698b8e, 0xe95f1b54, 0xb1d6efcd, 0xc147ec54, - 0x3fc425f0, 0x0001d1, 00000000 + 0x3fc425f0, 0x0001d1 }, { 0xe8e4db0e, 0x70f4701d, 0x10fe58fd, 0x164c8e5f, 0xedcc073, 0xb361c1a2, 0x226810dd, 0x368ed120, 0xd24dbd15, 0xefee43b1, 0xbac5f766, 0xdc3e14ba, 0x1c2b2aa5, 0xc3944457, 0xcefb132e, - 0xd67a98db, 0x0001c7, 00000000 + 0xd67a98db, 0x0001c7 }, { 0x61202e4f, 0x376175b5, 0x8f7044fc, 0x85cc1517, 0x3f9c36aa, 0xefb75aa4, 0xe38f272c, 0x8fd3a65, 0x68c3f53d, 0x57013013, 0x42bf246, 0xce0b7ecd, 0x6b0533df, 0xc213fce8, 0xa00dbcdb, - 0x93dccab6, 0x0001c5, 00000000 + 0x93dccab6, 0x0001c5 } }, { @@ -39076,19 +39076,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbd46b65, 0x9fc0c8da, 0xb2df224b, 0x2c220916, 0x6420a312, 0xb5dfd39d, 0x1382a7e6, 0x19eb9400, 0x6a66c5fc, 0xeb893a2b, 0x8fcc396c, 0xf90e56ec, 0x392f41c6, 0xe0a0d986, 0x78624caf, - 0x107b6ce4, 0x0000b2, 00000000 + 0x107b6ce4, 0x0000b2 }, { 0xfc7d9156, 0xa83965fa, 0x7799a95, 0x423f7283, 0x122b507b, 0xd3bb995f, 0x4d35f3b2, 0xa531b448, 0xebcc3190, 0x812d791c, 0x47ab5688, 0xddb3658e, 0x2409fb00, 0xf9a5696d, 0xe049d9b0, - 0xbfd08ff4, 0x0001ea, 00000000 + 0xbfd08ff4, 0x0001ea }, { 0x7f2d4218, 0xb2746243, 0x4475015, 0xf13adc4e, 0x29a1800f, 0x93963083, 0x6bea85da, 0x1a4476b3, 0xf4c8163f, 0x1e4faf16, 0xc621f8e9, 0x8f1d894e, 0x54166b1c, 0xed6f10f9, 0x6b4c5f7d, - 0x93452d6e, 0x00017f, 00000000 + 0x93452d6e, 0x00017f } }, { @@ -39096,19 +39096,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x531868ca, 0x75bea9df, 0x9d87bf45, 0xe71275c2, 0xefc6f188, 0xbd0321f8, 0x6b86325b, 0x7b4a0527, 0x7bcc0e10, 0xb2f56fb9, 0x72020fd2, 0x85fc9ffb, 0xc6cd349a, 0x6a33059f, 0xe4f6da5d, - 0x5824a95, 0x0001f4, 00000000 + 0x5824a95, 0x0001f4 }, { 0x17a68713, 0xbfede154, 0xb74d0f21, 0xc19687dd, 0x96f3c882, 0x8db9d03b, 0x3b319fac, 0x34d723db, 0xb8d517be, 0x6af6ec2e, 0x8e7d0345, 0x6f21044e, 0x6aa25586, 0x6b49f911, 0xfdd0917c, - 0x64e49dac, 0x0000ac, 00000000 + 0x64e49dac, 0x0000ac }, { 0x8f7939aa, 0x4ddaa56b, 0x61f4a8ff, 0xbbdc2bf5, 0xce735aee, 0xed6cb046, 0x57b15982, 0x5e43de76, 0xf476be9a, 0x6c5b8c4e, 0x5bfb15ee, 0xd3d8acea, 0x45dd08c5, 0xa48f7431, 0xa0bcd593, - 0x59b5f0c1, 0x000126, 00000000 + 0x59b5f0c1, 0x000126 } }, { @@ -39116,19 +39116,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4fc73d9f, 0x1bccdd42, 0x9be71c3f, 0x96cbb4dc, 0x8303c1e9, 0x18d70b41, 0xaebf0f37, 0x7500e41a, 0xfa684549, 0x1f52112d, 0xd10b5799, 0x8680ef71, 0xe6ceb280, 0x2df8efac, 0x630d1151, - 0x2dec1811, 0x0000d0, 00000000 + 0x2dec1811, 0x0000d0 }, { 0x485e24f3, 0x1da76d3f, 0x4cdd7f32, 0x5102624b, 0x6398b12c, 0x1ab60901, 0x5ae4aeee, 0xf6106d21, 0x3211982d, 0x76db160e, 0x5ebf47f0, 0xf913643f, 0x29858187, 0xaffc4fb7, 0xa741d9e5, - 0x961575b5, 0x000055, 00000000 + 0x961575b5, 0x000055 }, { 0xdef2f1ac, 0x7771c402, 0xb3e616e0, 0x4c3f8026, 0x52d63bec, 0x99ce6cf, 0x9c105c02, 0x5043d29b, 0x718b46fb, 0x55fd841a, 0x24ce727d, 0x9fd77c95, 0xfa8a1fa5, 0x256bae60, 0x47d1ec57, - 0x45088f4a, 0x0000f6, 00000000 + 0x45088f4a, 0x0000f6 } } }, @@ -39138,19 +39138,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3c348b00, 0xab8cf3ed, 0x72d8b42a, 0xd6a7b9c9, 0xcf44cbb4, 0x9dbbef93, 0x9c550eda, 0x7c8df1dc, 0xd5190ed6, 0x8d99cd18, 0xeaa0857a, 0x243307c3, 0xf48ae232, 0x68d5cd98, 0xbd531ec2, - 0xa9f0e1c8, 0x0001a9, 00000000 + 0xa9f0e1c8, 0x0001a9 }, { 0x893392c4, 0xb516e41d, 0x56151fbd, 0x7368f05a, 0x6dc13a0, 0xce651ea1, 0x407ece7e, 0x4704e56d, 0x28757591, 0xc00c7ab6, 0xe2c4e3ff, 0x83293677, 0x39bd8661, 0x2d9a2b08, 0x8fbeddcb, - 0x802a5ecb, 0x000160, 00000000 + 0x802a5ecb, 0x000160 }, { 0xafd3d741, 0xb690c72b, 0xcc66f7a8, 0xb5132f8, 0x1ac4632e, 0x6f827050, 0x7884e979, 0x4f3163aa, 0xc0c66c03, 0xc78723c9, 0xbd471e0c, 0xf25b4f7a, 0xdbd5497, 0x930369ff, 0x759e5c0e, - 0x33b3d8a, 0x00016f, 00000000 + 0x33b3d8a, 0x00016f } }, { @@ -39158,19 +39158,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x42235fb2, 0xbd1cced4, 0xf692f67c, 0x5e576ea8, 0x4c057f43, 0x758271e1, 0x4560a3ca, 0x65ce40a6, 0xf6ad632d, 0xadd7e0c, 0x3e425635, 0x3ed1b4b4, 0xe4bfd2a7, 0x816a0bda, 0xfe73e934, - 0x80ffb670, 0x000147, 00000000 + 0x80ffb670, 0x000147 }, { 0xd613c955, 0xf7ad23fd, 0x9e8289b, 0xf190a81c, 0x19f34bda, 0xa805ed29, 0x33bea5eb, 0x4a29d4f0, 0x411db252, 0x6ba8a0b, 0x3fd598ab, 0xe956d37e, 0xf38ad926, 0x5ab3ae71, 0x4f77aa11, - 0x5b17e4c0, 0x0000fa, 00000000 + 0x5b17e4c0, 0x0000fa }, { 0xf24ced81, 0x2e2af6a7, 0x5e32b86e, 0xf9dbc468, 0x84f19c4b, 0x87f3e6af, 0xec9c279, 0x679a90b2, 0x998bf084, 0x87318dbe, 0x3b7439b8, 0xbb3258b2, 0xdd656369, 0x213cb3fe, 0xaa7a9b5a, - 0x1c1ba40e, 0x000034, 00000000 + 0x1c1ba40e, 0x000034 } }, { @@ -39178,19 +39178,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x15dcbd11, 0xe79f55d5, 0x27aa10b4, 0x288bf15b, 0x803e43d0, 0x49841ee4, 0x80267eda, 0xdff6ec08, 0xa6cdef9f, 0x7074053f, 0x536052dc, 0x4ec92eff, 0xd98c504f, 0x2409258e, 0xe047c2e0, - 0x414efcd2, 0x0000e4, 00000000 + 0x414efcd2, 0x0000e4 }, { 0x3d84cf38, 0x14b78349, 0x50abab3b, 0x9f7bf5ad, 0x68946179, 0x24950058, 0x82f13539, 0x26fd9858, 0xea7cf20f, 0x86a7a74b, 0x5586487f, 0x5002ee91, 0x7a688c1b, 0xb2a98b92, 0xf4d39d45, - 0x102813ef, 0x000017, 00000000 + 0x102813ef, 0x000017 }, { 0x981bdbde, 0xfb2053c1, 0x60c87fb4, 0xb762c5a6, 0x6d0197fd, 0x48a4fdfd, 0xbf1c9dd4, 0x7bf6430f, 0x3d4d21d5, 0x6ddeae37, 0xb2dc7ed8, 0x2fc1fb00, 0x44d94424, 0x693957a4, 0xf7394ecd, - 0x79eee3e3, 0x00009b, 00000000 + 0x79eee3e3, 0x00009b } }, { @@ -39198,19 +39198,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x48386ded, 0xbbbc77d7, 0xf3c50f21, 0xd8d18125, 0x8d950223, 0x6677125f, 0x83ffe9ea, 0x1f481179, 0xc84135ed, 0x9ff93562, 0xb3793c2c, 0xe2851e14, 0x73df7ce0, 0xdb113217, 0x41843292, - 0xeaaadc5, 0x000030, 00000000 + 0xeaaadc5, 0x000030 }, { 0x670e0d65, 0xaa9442c6, 0xb499be37, 0x8682d759, 0x86ec093a, 0x919fb592, 0x55197c0b, 0xdf9616e8, 0xdd28e7a9, 0x679011c7, 0x8f166772, 0xc0f262b9, 0x4d59c2ce, 0xdb3b2d93, 0x63abf01f, - 0x7704d42, 0x000036, 00000000 + 0x7704d42, 0x000036 }, { 0xc270f24a, 0x3d76890, 0xf422cb9e, 0xe3c72805, 0x6704a718, 0x16779e43, 0x1b5a049e, 0x8066f33a, 0xee354261, 0x13d219d3, 0xb1739d73, 0x211a9a8c, 0x9cde9a1e, 0x5dfcf9dd, 0xff4f723d, - 0x9d43e5f0, 0x000094, 00000000 + 0x9d43e5f0, 0x000094 } }, { @@ -39218,19 +39218,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf43b35cd, 0x67dfe271, 0x7611ee51, 0xea265758, 0x6f2af6a6, 0x3f4cd82b, 0x130292f, 0x3d9b0e9, 0x66edd0d9, 0x31ae3fcd, 0xbdfa53c, 0x470e78b, 0xf7042f18, 0x762c5973, 0x8566eb65, - 0x39176c4b, 0x000044, 00000000 + 0x39176c4b, 0x000044 }, { 0x8dac3822, 0x276b71ff, 0xcec8b221, 0x452b1158, 0xcd557ee0, 0x6e51756f, 0xae21c037, 0x6a15e885, 0x3dbbfbbc, 0xa0f7b861, 0x8c2c798a, 0x8bcd57fc, 0x33c4181b, 0xbb98a6d5, 0x7b516177, - 0x53d270a1, 0x0001c5, 00000000 + 0x53d270a1, 0x0001c5 }, { 0xe47385d8, 0xc5cdd31d, 0x4c95c4e8, 0xaf9d4074, 0x437d1c24, 0x9598dfd9, 0xd5a5535d, 0x49fbfc66, 0x9466875e, 0x1f173ca1, 0xcb3ca10b, 0xbebe491d, 0x7ad77dae, 0x581174bc, 0x2360d943, - 0x200039f8, 0x000182, 00000000 + 0x200039f8, 0x000182 } }, { @@ -39238,19 +39238,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9baee7c5, 0x72759c0e, 0x368022d3, 0xce11c73b, 0xe01c9c28, 0x7fa8f534, 0xae894464, 0xe54f3a4, 0xb277fb74, 0xfa548ecc, 0x2daf7238, 0xaf84c27d, 0xb374619d, 0x1ef9fa53, 0xd3491b28, - 0x31dbe468, 0x000031, 00000000 + 0x31dbe468, 0x000031 }, { 0xf7605605, 0x49c47966, 0xa26eeb7c, 0xd51dd680, 0xcc4dc578, 0x79489a6a, 0xe9248916, 0xda818f1e, 0xc2cd85f3, 0x7af69abe, 0x63823256, 0x75f2249, 0x80a48745, 0xcabf7be8, 0x239a2993, - 0x44da635f, 0x00013c, 00000000 + 0x44da635f, 0x00013c }, { 0x152ae427, 0xa15f24d0, 0xff187dfb, 0x7b0f7b64, 0x8d2fee77, 0xcb05d8b6, 0x7b24319a, 0xe700967c, 0xabd275e6, 0x24ba970f, 0x4d08c536, 0xf920cbfb, 0x2533882f, 0xfef31647, 0xeeded817, - 0x16eede14, 0x000011, 00000000 + 0x16eede14, 0x000011 } }, { @@ -39258,19 +39258,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf3b2b14e, 0x8da3a405, 0x305f4fa2, 0xa28a2f96, 0xebb8b956, 0x22bcd94f, 0xbff246cc, 0xb2471b16, 0xca537e3e, 0x92d7232f, 0x78456c4f, 0xe6e32b54, 0x26d5d0b5, 0xa1b3c9b6, 0x348b7d20, - 0xd4375264, 0x0001bf, 00000000 + 0xd4375264, 0x0001bf }, { 0x9791e659, 0x2a396d2b, 0x86461b6d, 0x36ebf094, 0x3751a2d0, 0x82547fca, 0xcd1bb15, 0xe90c06d9, 0xc4a94761, 0x512a98f1, 0x6b3ceb84, 0xb4d4c9f7, 0x85bd7b5f, 0xb8f1144, 0xb99dca08, - 0xdce1dc2a, 0x000189, 00000000 + 0xdce1dc2a, 0x000189 }, { 0x9c351160, 0x491c8952, 0xba46f5b4, 0xd7c992d, 0x67806baa, 0x8ae3d5e5, 0x64899056, 0xa0c79203, 0x3a1d5de3, 0x2910c1f0, 0x445d14a2, 0xef2b1562, 0x307d443e, 0xa3416e3f, 0x3406c2a2, - 0x988ca992, 0x0000e0, 00000000 + 0x988ca992, 0x0000e0 } }, { @@ -39278,19 +39278,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7f30246, 0x82f99d7c, 0xedef6ea0, 0xf25b40f9, 0x493a52bf, 0x9724f3e6, 0xecdda7b3, 0xb4c8ade3, 0xae2043a0, 0x5e8e0819, 0x58b342b8, 0xee0de8cc, 0xb3ebcaae, 0xf5784d56, 0x3372963f, - 0xd2d3b141, 0x000142, 00000000 + 0xd2d3b141, 0x000142 }, { 0x7867a0a2, 0x72b0098a, 0xe594831e, 0x842ad4de, 0xad844526, 0x59a88463, 0x89fee8c, 0xdd9ad4db, 0xd51091e3, 0x2fa55e3a, 0x94fe5daf, 0xf210d305, 0x8fb38485, 0x99e3075, 0xd8786367, - 0x1f9eb78e, 0x000033, 00000000 + 0x1f9eb78e, 0x000033 }, { 0xd8ccd648, 0xe09017db, 0xb00951b7, 0x9292b81c, 0xae324ec3, 0xbfd7bba6, 0xaa49a523, 0x613a2429, 0x95ebbe8, 0x851b2fa4, 0x7cb6e172, 0x4bd3cd01, 0xc8da7fa1, 0x74ffa6c9, 0x6d1d1d39, - 0x7ae9758c, 0x0001be, 00000000 + 0x7ae9758c, 0x0001be } }, { @@ -39298,19 +39298,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf0c94ef, 0xa9ace56, 0x93ee8987, 0x4bc87202, 0xec33d93d, 0xe8b4541e, 0xb2271c5b, 0x56e5239, 0xda54ac11, 0x4f5033bb, 0xf285cdd9, 0xb1ab21f, 0xdd5fe045, 0xc9802f64, 0xa6456e42, - 0xaa097c2d, 0x0000f0, 00000000 + 0xaa097c2d, 0x0000f0 }, { 0x1d9d7429, 0xafbfb4a9, 0xf35fee04, 0xc22d07da, 0xb7ea9472, 0x9eb72241, 0x2a96d40, 0x9b2af17a, 0xdfb6d843, 0xec4f29c9, 0xe3bd7957, 0x30b6a26e, 0xb867aa38, 0xd54256d, 0x39b6cb22, - 0x9338fd78, 0x0001bf, 00000000 + 0x9338fd78, 0x0001bf }, { 0xa40193be, 0x1492a773, 0x169ecbd7, 0xeb48c656, 0x509f75c0, 0x839ea888, 0x442e5594, 0xff3f351a, 0x2245a85c, 0x28bfc3ec, 0x37b3a39b, 0xb2155882, 0xcb6efaf3, 0x9e5ef673, 0xb96cb1e8, - 0x93ef5b6b, 0x0001f9, 00000000 + 0x93ef5b6b, 0x0001f9 } }, { @@ -39318,19 +39318,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb6a550fd, 0x406774ff, 0xe6a5fa6e, 0x16be773c, 0x87c55b3c, 0xe6d54823, 0x16d1c220, 0x71706b1b, 0x9c117ca6, 0x372f64a2, 0x673f2c73, 0x75ec92ba, 0xf5018c26, 0x20f4c4c, 0x33d7ea9c, - 0x6999aaf2, 0x0001fe, 00000000 + 0x6999aaf2, 0x0001fe }, { 0x1ee7b2cb, 0x532024a, 0x6057db5a, 0xd3f05199, 0x535cf047, 0x413d319e, 0x9ae655a7, 0x3197ba45, 0xd9699175, 0x6ee1609e, 0xecba981c, 0x6914bd5a, 0x343cc0ba, 0x43bea54b, 0x1ff0031a, - 0xf95e4e32, 00000000, 00000000 + 0xf95e4e32, 00000000 }, { 0xb92b50a1, 0xe85b0a3c, 0x2fc3555, 0x4872ab09, 0x2153f7b1, 0x7b009cb6, 0x5e28ad98, 0xf78ca1da, 0xaff3e7d, 0xd64cc787, 0x88a6bb03, 0x26f5fb24, 0x4b72cee5, 0xaf24b0f4, 0xc25df6a0, - 0xcea99e9e, 0x0001aa, 00000000 + 0xcea99e9e, 0x0001aa } }, { @@ -39338,19 +39338,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc55f0420, 0xebe4a0ae, 0xfae05e6b, 0x7fa15457, 0x8943168, 0xfd60ae85, 0x3d0dbb87, 0x45acd089, 0xf679ce2a, 0x30032d8e, 0xa9edbcee, 0xbc2a8ea2, 0x8bcec4cd, 0x779a2410, 0x394b6bf3, - 0x9f45a713, 0x000075, 00000000 + 0x9f45a713, 0x000075 }, { 0x1b7e206f, 0xe827c5f2, 0xa35e5ecf, 0x8628cef8, 0x3fa67d55, 0x7d764274, 0x6be21a14, 0x83ccc3a9, 0x3350fabf, 0xfe3b74de, 0xe7e6f77e, 0x98cddc8b, 0xc4526951, 0x980148f4, 0xf50c7fcb, - 0x11d6d0f3, 0x0001b2, 00000000 + 0x11d6d0f3, 0x0001b2 }, { 0xe74f8071, 0x68cd47f2, 0xe8b3cf93, 0x5a049d62, 0xac82fceb, 0x96f10957, 0xae15a8e3, 0xb152e96, 0xd5f9685c, 0xfff87af0, 0x2103a28e, 0xd14108fd, 0xe840764a, 0x5d9cffc6, 0xfed16925, - 0x161e2420, 0x00011e, 00000000 + 0x161e2420, 0x00011e } }, { @@ -39358,19 +39358,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf9bbbce8, 0xa3fb48b2, 0x83c05f59, 0x7b43b108, 0xdf9b6cdb, 0x956153f3, 0xe6168ab1, 0x730d015d, 0x88180273, 0x568d507f, 0xa84e96f5, 0x450c2226, 0x314f9c39, 0xd2682533, 0xcd5e6a93, - 0xfdfb914f, 0x00006e, 00000000 + 0xfdfb914f, 0x00006e }, { 0xb48881aa, 0x61143db9, 0xc0953c6, 0x85810297, 0x63f555af, 0x824e7e23, 0xc5aacdad, 0x16fdfe3e, 0xce430e83, 0x23aad465, 0xb3bac577, 0x499ecf80, 0xf9164c2, 0x80bc77e9, 0xf061074c, - 0xff21ff30, 0x0000d1, 00000000 + 0xff21ff30, 0x0000d1 }, { 0xa218f4f8, 0x311bde11, 0x498b7517, 0x24ebcf4a, 0x235ca785, 0x88dd0e80, 0x7a3f48d5, 0xf3259c87, 0x299f4b29, 0x451b9a7f, 0x16a584f9, 0x9ca0048d, 0x2ecdf2cd, 0x722aec4, 0x5d7b6bf, - 0xe0b2cbc4, 0x000015, 00000000 + 0xe0b2cbc4, 0x000015 } }, { @@ -39378,19 +39378,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe3f6889c, 0xaa08e5e, 0xb0885d0c, 0x43c3f308, 0x389ef8c1, 0xed796663, 0xae8a0915, 0x90e25115, 0xf3a86ed6, 0x123d5af9, 0x90532476, 0xd2f28da0, 0xea74efdb, 0xeb1b739b, 0x3bfab043, - 0xaaea6317, 0x0001f4, 00000000 + 0xaaea6317, 0x0001f4 }, { 0x530afa8f, 0x1b847a97, 0x291503e8, 0x54dc7fa1, 0x92fb6827, 0x6e17fb4f, 0x334279d3, 0x473af362, 0x198de99e, 0xee2ae246, 0xa8290878, 0xb77cf67d, 0xe9440dca, 0x9f593263, 0x609244b7, - 0x2577d0ef, 0x0001d0, 00000000 + 0x2577d0ef, 0x0001d0 }, { 0x27c7ba18, 0xe8637ccf, 0xd2e29849, 0xc9630f04, 0x7837a79f, 0x9dba2ce9, 0x9b2301ec, 0x59a71fe4, 0x2bdba6b9, 0x39fd0139, 0x8014cdcf, 0x2f84a144, 0x3e978ec9, 0x3cce2a2a, 0x5454aa30, - 0x495274e7, 0x000142, 00000000 + 0x495274e7, 0x000142 } }, { @@ -39398,19 +39398,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe0b1f8c4, 0x1946cf7, 0x64cd8e83, 0xf7fd0615, 0xc6f76b37, 0x2787f7af, 0x4e0e3bd0, 0x1eeeb11f, 0x201ba864, 0x9c4964a, 0x856ed71c, 0xc899351a, 0xb87487c3, 0xb45eaf9e, 0x6cddf5cd, - 0xa6f799cd, 0x0001af, 00000000 + 0xa6f799cd, 0x0001af }, { 0xc457b125, 0x5fcf27f, 0xd181c315, 0x7001715c, 0xee51ee99, 0xda9de86e, 0x4642be27, 0xecad84e9, 0x51c0ab3e, 0x3c3e5c51, 0x4816776c, 0x115f8c7a, 0x4f382270, 0xcce57a7c, 0x97efb7c5, - 0xce9448e8, 0x0001cc, 00000000 + 0xce9448e8, 0x0001cc }, { 0x16a4d0a, 0x8c576a35, 0x1b89e04b, 0xeb3613c7, 0x2685eb49, 0xf172a3ee, 0x9c421083, 0x563d4461, 0x6a7612f9, 0x570fd09, 0x21927cbb, 0xa46b5fb5, 0xe497a0e3, 0x12e4948, 0x64f0bdae, - 0x400a1bc9, 0x000089, 00000000 + 0x400a1bc9, 0x000089 } }, { @@ -39418,19 +39418,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x58be31b7, 0x8be7ddcf, 0x9f74929b, 0x7a1ad8bf, 0x291be453, 0x1721e60e, 0xd438e6d9, 0xeaa4964, 0x757450c1, 0x403c004, 0x520c3acd, 0xbe6026b0, 0xfca95886, 0xa1e8a890, 0xec674753, - 0x2386e2bf, 0x000170, 00000000 + 0x2386e2bf, 0x000170 }, { 0xbfde0516, 0x225c734f, 0xdfbe73e, 0xd42ca489, 0xf7ecd7a3, 0x4499b985, 0x526f92b0, 0x727935ff, 0x564288fb, 0xfd42ea95, 0xdccd31f1, 0xfd97c921, 0x7cc991d8, 0xefd24dbe, 0xbee69c93, - 0x9025e00b, 0x000135, 00000000 + 0x9025e00b, 0x000135 }, { 0x697de1e4, 0x467c5522, 0xd534e844, 0xef34313a, 0x5fe84f32, 0x70f5a0c0, 0x8910fd95, 0x1c7cf61, 0xe9dd20ac, 0xfc5b5b90, 0x83f4a28f, 0x1f637e21, 0x1a8152a3, 0xec3d2b33, 0x96fb565a, - 0x6a74c646, 0x0001ba, 00000000 + 0x6a74c646, 0x0001ba } } }, @@ -39440,19 +39440,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4d0c56fb, 0xd185801, 0x8bc25692, 0x3943f542, 0x45cf207a, 0x85c4d6a6, 0xfdb027fe, 0xf0afb872, 0x2b759880, 0x29599202, 0x7462fa2f, 0x66fee405, 0x60b2b31, 0xd09593e9, 0xc0b7671d, - 0xf92784df, 0x0000a4, 00000000 + 0xf92784df, 0x0000a4 }, { 0x872eaed7, 0x7f47b7fb, 0x7d51089, 0xbedb16a9, 0x7f44c0d1, 0x8cab241a, 0x75ff9862, 0xfaf68e13, 0x32b0b2a7, 0x169ddca6, 0x52394e3e, 0xb370af48, 0xda9be225, 0xbb50ba84, 0x8706d8c6, - 0x2a63d2c8, 0x000199, 00000000 + 0x2a63d2c8, 0x000199 }, { 0x503b0f88, 0xf01d4900, 0xf8cb7796, 0x25a7d5bf, 0x397bf32, 0x6de80420, 0x76df8930, 0x3e8a69c9, 0x5b5260c6, 0x887e80a7, 0x578cfbf7, 0xd7fc4891, 0x8ed267dc, 0xa0f5c59, 0x1f3f76d1, - 0xa2542156, 0x000097, 00000000 + 0xa2542156, 0x000097 } }, { @@ -39460,19 +39460,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc0a3a167, 0x17c69286, 0xdb37e9f, 0xe3bcb0e8, 0xcefe4b41, 0x28b35a47, 0x5887e02, 0x39d3fc34, 0xd1fb835a, 0xd594a30a, 0xc3ecbff1, 0x344209e, 0xa1c684ba, 0x177a2f0a, 0xf15567ec, - 0xa0da918c, 0x0001b6, 00000000 + 0xa0da918c, 0x0001b6 }, { 0x1c077624, 0x22101275, 0xf6a28239, 0xac61ae46, 0xfb2fa69, 0x1f256485, 0x448f7b94, 0x8cd4dd70, 0x7440f373, 0x3ed58f6b, 0x460b7580, 0x8d3f4c69, 0x47c487f6, 0x3e9404b5, 0xfa4cb01c, - 0x62d9a15c, 0x000030, 00000000 + 0x62d9a15c, 0x000030 }, { 0x7b0f23ef, 0xfda63128, 0xb5c2c58, 0xfe0e6645, 0x2845e321, 0x46d3b3ee, 0xab7a98c3, 0x8410b309, 0xb237e4d0, 0x6b5d6457, 0x83b13451, 0x45930ab5, 0x83709260, 0x1fd55ce7, 0x351d05b3, - 0xc56544e3, 0x0000bc, 00000000 + 0xc56544e3, 0x0000bc } }, { @@ -39480,19 +39480,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6bb107f5, 0x8fd6206e, 0xd15ae9bb, 0x5d65b62e, 0x78553037, 0x83cb66f6, 0x23bdc184, 0xd3d2b83f, 0xf7bbd7e7, 0xc910867d, 0xba5ca652, 0x3071113d, 0xd2d1d5c2, 0x44a1b292, 0x9a7a225a, - 0xe6abe10a, 0x0001c8, 00000000 + 0xe6abe10a, 0x0001c8 }, { 0x2baf2cf3, 0x404e1cad, 0xb54c616b, 0x6011d157, 0xcb820798, 0x846ca58d, 0x9e31bdaa, 0x30affe7a, 0xf3b5614f, 0xa3e7474f, 0x3d6eac83, 0x173b76b9, 0x98df952c, 0x54f0bfc4, 0x3064f2cf, - 0xb1a4017e, 0x0001ea, 00000000 + 0xb1a4017e, 0x0001ea }, { 0x202f6cec, 0x1e203723, 0x544cebbe, 0x39613147, 0x53f925aa, 0x56adcdc8, 0xcbdd5f4d, 0x9a2f4d4a, 0x6d70e64a, 0x85ae4a15, 0xb6cf3960, 0xaf890530, 0x343232f1, 0x1b8e5201, 0xfbf53f00, - 0x6ca8d0ce, 0x0000cd, 00000000 + 0x6ca8d0ce, 0x0000cd } }, { @@ -39500,19 +39500,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1ec6dcd3, 0x7d8a772f, 0x168ab565, 0x25adf6a4, 0xfd3ad13e, 0x958061cd, 0xd1446573, 0xfceceb1a, 0x92b043ef, 0xc04ce981, 0xc4f06024, 0xd2a99145, 0x8e10ee36, 0x4e833778, 0x17808cdb, - 0x891c08ae, 0x000083, 00000000 + 0x891c08ae, 0x000083 }, { 0x46851c5f, 0x3c87aa5e, 0x5e0a8c46, 0xe9836137, 0x9e5b1bc4, 0x7fa9115b, 0x3f338bfd, 0x19a8499, 0x91858826, 0xef08eca3, 0xb415438, 0x2abc33c8, 0x7cf2de28, 0xe5d466f9, 0x5757bc00, - 0x84bb152, 0x000061, 00000000 + 0x84bb152, 0x000061 }, { 0x80f3f13c, 0x278cf65d, 0x54fab1b9, 0x91662d95, 0x2a5ab81a, 0xc481f294, 0x6f4a3371, 0x3c3ff38, 0x8c41fd46, 0xf27a50c, 0xd029258c, 0x30b4edf4, 0x1a5c2b85, 0xbf3b42e0, 0xafedca13, - 0x8eff493f, 0x000025, 00000000 + 0x8eff493f, 0x000025 } }, { @@ -39520,19 +39520,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x43922e89, 0x358845f8, 0xd099d12a, 0x133481ea, 0x418835f2, 0x69152a45, 0xe5ff7532, 0xa000167b, 0x28059550, 0x5684bc00, 0x2f6ca367, 0xd277ede3, 0x4250bfa2, 0x2dae5ea8, 0x2551e658, - 0x1dd17bd5, 0x0000e4, 00000000 + 0x1dd17bd5, 0x0000e4 }, { 0x9558defd, 0x8888dd70, 0xe5594c11, 0xe00858ae, 0x2013277b, 0x419e8248, 0x68ae7571, 0xc6a853a5, 0x7e6c760f, 0x12a1c8bc, 0xc4e95747, 0xb4d36e2b, 0x8d46d4a1, 0x4ec572db, 0xae7ca6e8, - 0x7494d23b, 0x0001e2, 00000000 + 0x7494d23b, 0x0001e2 }, { 0x7ea73038, 0x3e9915b6, 0x5dc6ce5d, 0x5c4bfc32, 0xa268b397, 0x2fd6c9ab, 0x48a5da60, 0x7ebacf5b, 0xcb7dcf01, 0x62ff324c, 0x5635f557, 0x168d00c0, 0xfd3cb015, 0x58e211fb, 0xef281261, - 0x3c77622a, 0x000110, 00000000 + 0x3c77622a, 0x000110 } }, { @@ -39540,19 +39540,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf86d4275, 0x5dcccce4, 0x4556fd8f, 0x55638b93, 0xa743fbac, 0xdd4df2f6, 0xbbb5300b, 0xdecaa1aa, 0x6923fde6, 0x1f4c80c5, 0xd7108ae7, 0x41b51eda, 0xc6cac13c, 0x99c4bfa6, 0xa1a1956, - 0xa5f994e2, 0x000165, 00000000 + 0xa5f994e2, 0x000165 }, { 0xbe9b0a6e, 0x87ed818d, 0xcf752920, 0x765497a5, 0xfeb77c88, 0x550ca14c, 0x6ec30e8, 0x8f966aa5, 0xe76e4d8f, 0xae08bed, 0xcf9c35d9, 0xe25fc960, 0x5032e698, 0x5372be44, 0x54f79a27, - 0xb0c78fd9, 0x0000d5, 00000000 + 0xb0c78fd9, 0x0000d5 }, { 0x607508d2, 0x48656e41, 0xcdfc9485, 0x4fabadd0, 0xfb3e4a8f, 0x7d395183, 0xf295bf2b, 0x37ff7028, 0xc0370457, 0x10715c33, 0x928f026c, 0x5d07dee8, 0x4b81533, 0x6ff06820, 0x5584c52, - 0xd4f819d4, 0x000049, 00000000 + 0xd4f819d4, 0x000049 } }, { @@ -39560,19 +39560,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb216b164, 0x92354e1b, 0xa865737d, 0x2bb5543e, 0x264a2ec2, 0x2cbe466e, 0xb5a6a76a, 0xb2c32f37, 0xdee5f539, 0x1e7d59dd, 0xd111dffb, 0xa0d42fd4, 0x87f1880d, 0x9c9d8e63, 0x453ae1b8, - 0xb6b10bdd, 0x00015d, 00000000 + 0xb6b10bdd, 0x00015d }, { 0xce0b412c, 0xe90e16b3, 0x517ab41, 0x4ba0c214, 0xbb590270, 0x993eb562, 0x4702aa0a, 0x5e65f328, 0x410d82aa, 0x808836c6, 0x5a39aaf0, 0xe6cfa759, 0x4de7472c, 0xc84e9afe, 0x3bc2b863, - 0x9fa1dd39, 0x000146, 00000000 + 0x9fa1dd39, 0x000146 }, { 0xf16e4862, 0xf941a54a, 0xca71926c, 0xf9518edf, 0x3eda12b, 0x712e5fe2, 0x20aa3634, 0x7f638780, 0xede3ab1d, 0xd6187cc5, 0xf5a8af32, 0xef649177, 0x46c6f677, 0x6261d14f, 0x68500a52, - 0x6c6e6655, 0x000147, 00000000 + 0x6c6e6655, 0x000147 } }, { @@ -39580,19 +39580,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7468f838, 0x87c44394, 0xccb6df0a, 0xd0a95471, 0x843b0e34, 0x86a6cd76, 0xaa24d4c, 0xcc8f1056, 0x93bafcb7, 0x5336df94, 0xe11b0225, 0x6e03a851, 0xa5db839f, 0xc6d02cf0, 0xaffd9d03, - 0x8c6cdd49, 0x00011c, 00000000 + 0x8c6cdd49, 0x00011c }, { 0xa32194b6, 0xa187cb88, 0x7750be53, 0xbf12d1d7, 0x2c429c01, 0xa5c8170e, 0xa2f8ebc2, 0xb311da6c, 0x4a708c31, 0x79d0fe19, 0x998f714d, 0xb23acf5d, 0x757d15a0, 0xa715007a, 0x32563fe5, - 0xcac3b2d2, 0x0001e6, 00000000 + 0xcac3b2d2, 0x0001e6 }, { 0x3b1ff57, 0x56b84164, 0xdabdb034, 0xe44505f9, 0x68dd38b9, 0x650b4c1, 0x44f0e94, 0xefb75866, 0x8e0466d6, 0xef7855f0, 0x9896e56d, 0x636143bb, 0x618fbed9, 0x22980e91, 0x687a7745, - 0xcdff5063, 0x000197, 00000000 + 0xcdff5063, 0x000197 } }, { @@ -39600,19 +39600,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4f1bbd13, 0x7892bc40, 0x848bf542, 0x6c27a125, 0x574fd061, 0xae161582, 0x7be40dc3, 0x68c6ae40, 0xcbaf8038, 0x246112b, 0x8e2351bf, 0x8e0355c, 0xaf43816, 0xa07f1a52, 0xce5ffe0b, - 0x844e94fc, 0x000083, 00000000 + 0x844e94fc, 0x000083 }, { 0xe62e4da7, 0xb58d73d4, 0xe99ee5bc, 0xfdc496e4, 0x2ce22af1, 0x9a4279c, 0x90b27d2b, 0xe5735da8, 0xe692f209, 0x41ab714d, 0xcb16f1a8, 0x56c94b4b, 0x689999be, 0x9c0d0201, 0xec2b566d, - 0x7dfeb1f6, 0x0001dc, 00000000 + 0x7dfeb1f6, 0x0001dc }, { 0x5c60d5a7, 0x4277e981, 0x2ed32393, 0x3ec75fb9, 0x72d6e861, 0x63d6038a, 0xb86f296b, 0xb74b325d, 0xd6aa1b52, 0x5cbed4ad, 0x18e258aa, 0x2c418e2d, 0x8ca38f57, 0xef76e643, 0xd817ec68, - 0x41a7b068, 0x0000a9, 00000000 + 0x41a7b068, 0x0000a9 } }, { @@ -39620,19 +39620,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8946f5f8, 0x9d999756, 0xe6092c09, 0x5c5598f7, 0xe348802b, 0x928a7e67, 0x26b69d5f, 0x527f4d02, 0x74786f5, 0x5ca1501d, 0xb3818ca7, 0xff61a442, 0xed403417, 0x355e1873, 0x253e5eb4, - 0xf67ccbc7, 0x000032, 00000000 + 0xf67ccbc7, 0x000032 }, { 0xe7286563, 0x356f6046, 0x9df80427, 0x949889a8, 0xa7dc3afa, 0x1a6a21ab, 0x9cdbc32, 0x9f9e3ac4, 0x15abbf7b, 0x5fa34428, 0xb7183a02, 0xe22210cc, 0x37d08d3e, 0x5c7f5699, 0x3ccfa0d0, - 0x1ca56f9, 0x00014d, 00000000 + 0x1ca56f9, 0x00014d }, { 0x106c183a, 0x6ce4a6a9, 0x87b27ede, 0x7e5f7e12, 0xbff6121d, 0x2617e8ce, 0xbb3cdb10, 0xf0a7b527, 0x414e8015, 0x3df33be1, 0xb6af652, 0xaa9c054, 0x541a5fb7, 0xa043d594, 0xaacca4c7, - 0x64de75cd, 0x00000e, 00000000 + 0x64de75cd, 0x00000e } }, { @@ -39640,19 +39640,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd98d4dcd, 0x23127b55, 0x786ca528, 0x9759d84d, 0x152b3a22, 0x57a11f46, 0xd3da0c4c, 0x4bc5c42f, 0xbbbc90cd, 0x4fe5c410, 0x4c160a, 0x3c9838ad, 0x15bfe1bf, 0xcc02f61a, 0x8830e168, - 0x1f3546a, 0x000078, 00000000 + 0x1f3546a, 0x000078 }, { 0x12b6f571, 0xba7b40cf, 0xa5a2c277, 0x785c5917, 0x8987a2f3, 0xaa6b24d6, 0xf918d2ef, 0xfcfcc196, 0xc7e0d585, 0x86b291a3, 0xa2e4c663, 0x5b0e727f, 0xcd1643a9, 0xac76ac5c, 0x9c834a38, - 0x74465344, 0x00011a, 00000000 + 0x74465344, 0x00011a }, { 0x590654bd, 0xf79da8a4, 0x770ddeb, 0xdebc707, 0x4fa9adbc, 0x77a26bda, 0xfe7c9e5c, 0x66f19f23, 0x44f75c66, 0x95dae86a, 0x2bf8d8c5, 0x3ba21100, 0xf6f9f0b1, 0xcd79731f, 0xa084690a, - 0x940f143c, 0x000184, 00000000 + 0x940f143c, 0x000184 } }, { @@ -39660,19 +39660,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4c635b0d, 0x323d814c, 0x7b50db3a, 0x6956816c, 0x8380530c, 0x44af1953, 0xdcfb0212, 0x71a585e9, 0x230e4c79, 0xd75de879, 0xcb57aabc, 0xd8788d48, 0x19a8b3b0, 0x1d36a3b9, 0xf7a9e734, - 0x6cbf9604, 0x000178, 00000000 + 0x6cbf9604, 0x000178 }, { 0x5d112a5d, 0x66ce5f0e, 0xbc352a1c, 0xb5dba521, 0xbb891484, 0xa138737c, 0x21d41acb, 0x4665dd82, 0x9d856abe, 0x607bfb71, 0xfdf60905, 0xdf90aa6, 0xa84cb31e, 0x195ded88, 0xcb3e0ca8, - 0x11262b25, 0x000023, 00000000 + 0x11262b25, 0x000023 }, { 0x8d270a74, 0xe94e3b5c, 0xc43c4c0f, 0x2be625b3, 0x657991da, 0x347565a8, 0x56f1e773, 0x8d9bdf7f, 0x41b8e083, 0x127ef8e1, 0x91295a51, 0xe24e757e, 0xfe004871, 0x4021cc83, 0x1c2875d0, - 0x5c58720e, 0x0001b1, 00000000 + 0x5c58720e, 0x0001b1 } }, { @@ -39680,19 +39680,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd132a6e1, 0xa8f4c7be, 0xfb595700, 0xea3c043, 0x4d0fa3d0, 0x287570a8, 0x6f61d997, 0x1177b231, 0xe538f803, 0x17bcb68e, 0xbd8d0732, 0x6326c45b, 0xc7ef68f9, 0x6f46f574, 0x55000317, - 0x86423778, 0x000094, 00000000 + 0x86423778, 0x000094 }, { 0x10ca5f70, 0xe4a271df, 0x15cdb56d, 0x383ff74e, 0x52b6d950, 0xdc1bcfe3, 0xd0e0dbee, 0x274766c1, 0xca97b197, 0x50210e90, 0x32fd7c91, 0xfc7b7567, 0xf1111464, 0xa92052aa, 0xf8f20e4b, - 0x9c33d9f6, 0x00000b, 00000000 + 0x9c33d9f6, 0x00000b }, { 0xf97e8b72, 0x66a7ebd4, 0xaf1f3e28, 0xc10fa87a, 0x7811192a, 0xadc19845, 0xcdeea363, 0x230d7393, 0xc2f03744, 0x294df584, 0xbf24164b, 0x9c3414e6, 0xd00c2dab, 0xe26537aa, 0xf065f11b, - 0x59b8f3d4, 0x0001ee, 00000000 + 0x59b8f3d4, 0x0001ee } }, { @@ -39700,19 +39700,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8f5d9e31, 0x166b6297, 0xf1c18a7, 0xc3212d26, 0x3a4225d, 0xd9bcb0ef, 0xf8fe02f2, 0xd1972d44, 0x175546b4, 0x5c28a945, 0x88afd52d, 0xc8dfa8ca, 0x60ac12b8, 0x551ff6c9, 0x6388df6a, - 0x81d722a5, 0x000134, 00000000 + 0x81d722a5, 0x000134 }, { 0x80e6fe68, 0xbd09e918, 0xd726255, 0x62b6ab3e, 0x572ab130, 0xddd5273a, 0x8070a289, 0xcd7f16af, 0xc9756d37, 0xbee32ac4, 0x370ad25f, 0xbb5e8207, 0xc7c1cfaf, 0xbd848312, 0xb5c902e7, - 0x6cf450de, 0x000043, 00000000 + 0x6cf450de, 0x000043 }, { 0x313fb331, 0xb6006463, 0xd58579e3, 0x10f57aa7, 0xd1d7eb69, 0x9932fa3, 0xbea178b3, 0x7f5f2381, 0xc5117bd9, 0xc95c62db, 0xc85bd9a2, 0xba5f0c09, 0x82d04d60, 0xf7bc5ae, 0xf78f8ef2, - 0x197f8d7f, 0x000150, 00000000 + 0x197f8d7f, 0x000150 } }, { @@ -39720,19 +39720,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xccdab073, 0x26448b03, 0x77ff2b02, 0x4181c789, 0x2b98e612, 0xa23d5b68, 0x4a38bf03, 0x87a27138, 0xb69a1848, 0x4962463f, 0x6ad2f5e9, 0xb95c11a3, 0x32f870b3, 0xaa9320a0, 0xb484417, - 0x3563e282, 0x0000e9, 00000000 + 0x3563e282, 0x0000e9 }, { 0x7a1f0c6d, 0xe1b61056, 0x28a94c29, 0x21569ada, 0x667e3158, 0xa1b0fff0, 0xdefe3f3f, 0xe36ca8a6, 0x79ef6e9, 0x48b21aab, 0xec191b8, 0x767b0395, 0x9854431d, 0x196b5a5b, 0xdf117f8e, - 0xd72b9f22, 0x0000c4, 00000000 + 0xd72b9f22, 0x0000c4 }, { 0x96f9b63a, 0xedf68dd, 0x18fa3e5d, 0x6ca868a1, 0x450cf680, 0xb815b3ef, 0xf7519ba7, 0x39bba44f, 0xbca6e91e, 0x45553ba5, 0xe09914ad, 0x348ae166, 0x3b1bb410, 0xa3853b7f, 0x9f88cf76, - 0x5cd75508, 0x00012c, 00000000 + 0x5cd75508, 0x00012c } } }, @@ -39742,19 +39742,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3bf17e23, 0xd423414a, 0xd98de611, 0xabebbafb, 0x66f1ca6e, 0x954706a7, 0x54803183, 0x756b8e9a, 0x3e9c2ef0, 0x712a9808, 0x1e0c1ebd, 0x9a9d04b3, 0x809b997b, 0x7f301c53, 0xdb17923, - 0x2264fc2f, 0x000121, 00000000 + 0x2264fc2f, 0x000121 }, { 0x51be0a8, 0x104148e0, 0xcef9b7ae, 0x9806a285, 0xa176e0f5, 0xcda3d71, 0x8b6bf503, 0x222470ab, 0xae075519, 0x47ef23cb, 0x8a5735c, 0x6a11f7c9, 0x7a59deaa, 0xbbeef403, 0x2c84aa27, - 0x1578421b, 0x000157, 00000000 + 0x1578421b, 0x000157 }, { 0x27836687, 0x6a1a0b72, 0x32b8bd9f, 0xa0ff9acf, 0x461537f9, 0x3215bad1, 0xd85f4d2b, 0x88df0e92, 0x6ffb1d, 0xbe9e9eec, 0xe2bf0f10, 0xf449cf8a, 0x2c5b9027, 0xaecbfa31, 0x5c76efc3, - 0x36dfd160, 0x000174, 00000000 + 0x36dfd160, 0x000174 } }, { @@ -39762,19 +39762,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2a43585, 0xeb83f835, 0x9f1b9f59, 0xd6c69346, 0x718977ad, 0xbbef8af3, 0x1cd76876, 0xa2db6c53, 0x85a55081, 0xbc6c218b, 0x92c2d0c1, 0x45128a08, 0xfda6648c, 0x4e398ebe, 0xcd3095ef, - 0x5b05b19c, 0x00002d, 00000000 + 0x5b05b19c, 0x00002d }, { 0x918de139, 0x16cb1e59, 0x53f3aa0, 0xeb03d335, 0x4d006ac1, 0x9d1c15ed, 0xa9f18459, 0x9b5bb537, 0x34ecd646, 0x138c75d3, 0x3d7b799c, 0x61c79a5b, 0x3899709c, 0x4633888e, 0x8ee261dd, - 0xc394da24, 0x00002d, 00000000 + 0xc394da24, 0x00002d }, { 0x7a5f7829, 0x757d8785, 0xe66b47eb, 0x20da88e4, 0x36beaf35, 0xf31bd92b, 0x3a22bbd1, 0xc883df5a, 0xd703ed95, 0x10b353a9, 0x207b8de5, 0x523b1d68, 0xd35b7427, 0xe713c492, 0x56d56149, - 0x37cb8190, 0x00018f, 00000000 + 0x37cb8190, 0x00018f } }, { @@ -39782,19 +39782,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x16b9fc54, 0x49cfa92b, 0x18c5fb16, 0xf07d3c48, 0xdf2d6fe5, 0x695780cd, 0x7fb90e3, 0x3dfbcfdc, 0x3dc02b70, 0x4f0d0410, 0x53c72533, 0x81539257, 0x4b8e725b, 0xefbfb9af, 0x10a910b7, - 0x68fe47b6, 0x00003e, 00000000 + 0x68fe47b6, 0x00003e }, { 0xbba91fe8, 0x9c886e83, 0x867fc6f1, 0x1a3f0f1a, 0x274d23af, 0x8074fbd7, 0x6646de01, 0x8379c000, 0x34981dfe, 0xd15bd4f0, 0x811dd82f, 0xc149e091, 0xd5035420, 0xc6d3fc86, 0xb221f2f8, - 0x2a54c8e7, 0x0000bd, 00000000 + 0x2a54c8e7, 0x0000bd }, { 0x5a4a6090, 0xa14a309b, 0x1c5c0db6, 0x89c2b7b6, 0x65e7ad6a, 0x126b1c93, 0x5cca2de3, 0xb20782d8, 0x6b09af95, 0x442c9aa, 0xa4c22f46, 0x7f98136b, 0x64979ca, 0x1b749a2a, 0x9d849bd9, - 0x90b607e6, 0x000149, 00000000 + 0x90b607e6, 0x000149 } }, { @@ -39802,19 +39802,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5328a4e1, 0x45994cec, 0xeac259ac, 0xae2d7a92, 0x5f13e07, 0xbb9116fa, 0x4965f267, 0x54ac82b6, 0xd53798ff, 0xb56ad74b, 0xbedb1447, 0x8d2a1e5c, 0x69048b41, 0x340d7ebb, 0xca5e614d, - 0xfe814a32, 0x000182, 00000000 + 0xfe814a32, 0x000182 }, { 0x3314fcff, 0xcd800d2c, 0x2e956421, 0xa254335e, 0xac4aa424, 0x4f9ecf4d, 0x3e7981ac, 0x19e8bba0, 0x9b3f7d76, 0x288039c0, 0x50aee925, 0xae316a29, 0xefbe11c0, 0xe5a4457a, 0x98cb3316, - 0x5fcad27c, 0x0000f6, 00000000 + 0x5fcad27c, 0x0000f6 }, { 0x39023b22, 0xe0ec0690, 0x158d6960, 0xf7181650, 0x7d8d515a, 0x7bb745c0, 0x947328bd, 0xa5c7b1af, 0x6db1aae9, 0x720bf9fc, 0x25f9a983, 0x5254919c, 0x9d4dc82, 0x8de1b9f6, 0x818ca978, - 0x501bda61, 0x0000f7, 00000000 + 0x501bda61, 0x0000f7 } }, { @@ -39822,19 +39822,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xef1430e7, 0xbac86924, 0xdce0b3ed, 0x98a27331, 0x4ef59fda, 0x647eb380, 0x35c1710f, 0xb6d3c66e, 0x5e5825ea, 0x97c48f3a, 0x1c2e96bd, 0xb105dd77, 0x1ba3ac7e, 0x489ae0c0, 0xd8142231, - 0x222f8ab, 0x000177, 00000000 + 0x222f8ab, 0x000177 }, { 0xe291f393, 0x86b36fae, 0xcd197104, 0xe9dcb476, 0x10cec293, 0x7e704df9, 0x30c0f378, 0xae3aaf2f, 0xb0fd8e6d, 0x8bbc1418, 0x5ce7fd22, 0x24fadca7, 0x65da31f4, 0x3cb7e98f, 0xf35bad6a, - 0xaed9c837, 0x00014a, 00000000 + 0xaed9c837, 0x00014a }, { 0x8ea65902, 0x58ecbbc2, 0xebb0f05, 0xfad34543, 0xf317b22a, 0xeb0c5fe6, 0xf5c4d531, 0x24ad13e2, 0x4da33789, 0x41c8f350, 0x5de8cbb, 0x5992bcd2, 0x26c8a7a5, 0x81086aee, 0x57ace42, - 0x603adeee, 0x000185, 00000000 + 0x603adeee, 0x000185 } }, { @@ -39842,19 +39842,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9b514c0f, 0x94be2abd, 0xa9b84529, 0x4eaf0ff2, 0xd92a16bc, 0xa21c5fba, 0x610c7812, 0x5de24940, 0xb26cc2aa, 0x181241d4, 0x6605849, 0x3ca4a80, 0x585e919b, 0xffe04527, 0x2e56db44, - 0x4b7b8fef, 0x000144, 00000000 + 0x4b7b8fef, 0x000144 }, { 0x97bb0c73, 0xb75697d7, 0x9bca5550, 0x7b4e49f5, 0xfd683809, 0x2e0ace63, 0x480773a5, 0xb3523755, 0xaea0b875, 0xf17d20c, 0x88656186, 0xdfb124e8, 0x5ff707ed, 0x992d4490, 0x7acad52b, - 0xa0589dc, 0x0000d5, 00000000 + 0xa0589dc, 0x0000d5 }, { 0x6d85c26d, 0x1d62f00a, 0xb007541d, 0x3d5ae5f9, 0xf86a833c, 0x8a73ace7, 0x3f7dcd88, 0xcc4ea084, 0xd707f25f, 0x6ef7e900, 0x53986c80, 0x8af04a0, 0x4e9e1caf, 0x4418649b, 0xeab2b5a2, - 0x172f7709, 0x000170, 00000000 + 0x172f7709, 0x000170 } }, { @@ -39862,19 +39862,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x62f937ea, 0xc8d6a36, 0x6b7bec56, 0x7ef0b9af, 0x9f1e69e8, 0xa6728008, 0x12523f5d, 0x2523c592, 0xcaf12b79, 0x943f7f31, 0x3444b13b, 0x727eba15, 0xa81f9c9c, 0x8d64e2d1, 0x8a45ba1d, - 0x836e352d, 0x0001c1, 00000000 + 0x836e352d, 0x0001c1 }, { 0xef146614, 0x70b5b17c, 0xcb3af845, 0x85550e64, 0x83e4df32, 0x62002a09, 0x9133bff0, 0xea939ef1, 0xe803119e, 0x9836dd3d, 0x2cac727, 0x3435ea9f, 0x6a51eba3, 0x463f969e, 0x58b19043, - 0x8bcc3d49, 0x000098, 00000000 + 0x8bcc3d49, 0x000098 }, { 0x5d0dac21, 0x4432bf98, 0x3b17469c, 0xe7e6eca7, 0xe2363607, 0xde64b4bd, 0xeae78d68, 0x7f2ffc7c, 0x36aa92d6, 0xfd123308, 0x9c347575, 0x7cf9c6ad, 0xebbe115e, 0xf083c147, 0xd5806676, - 0x672ca62e, 0x0001ad, 00000000 + 0x672ca62e, 0x0001ad } }, { @@ -39882,19 +39882,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc4188de0, 0xfb7748a1, 0x2b0cfa39, 0x583f1c6e, 0x3dff5295, 0xb44e2add, 0xb1bcbd2b, 0xe3eab19a, 0x2bd0c93d, 0x1524bf4b, 0x8af2f919, 0x50d2b666, 0xc42097da, 0x6b0f8a48, 0x3afe0c3, - 0xfda185f9, 0x000147, 00000000 + 0xfda185f9, 0x000147 }, { 0xfe2685ea, 0x60655082, 0x18deb943, 0x9d3dfd28, 0x8e535a02, 0xc1f9adc6, 0x7464bae, 0x3c9e65a5, 0x5f531c57, 0x52b46f66, 0x5113f470, 0x4519a1a, 0xdb52b1df, 0x4e374e31, 0x554e8b2a, - 0xe79aaaee, 0x000022, 00000000 + 0xe79aaaee, 0x000022 }, { 0xad3bbbf4, 0xe212c93b, 0x332d83a7, 0x24294e8, 0x6958d4dc, 0xb9290574, 0x9580c170, 0x42c9329b, 0x4dfee136, 0xdcc56c05, 0x770572d3, 0x38b3b3d7, 0x86b829aa, 0xa72f79c8, 0xac4442dc, - 0xeae51810, 0x00005c, 00000000 + 0xeae51810, 0x00005c } }, { @@ -39902,19 +39902,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd175767, 0xc568ee27, 0x2976d6e1, 0x718610d5, 0x83a6c4a1, 0x5a2f58df, 0xdff0491f, 0x59639bc5, 0x10fe9605, 0xcb650d1, 0x9b97a859, 0xea2d443b, 0x809b3a3a, 0xb8b7e96c, 0xb5bfb6ce, - 0x5973ca93, 0x0000ff, 00000000 + 0x5973ca93, 0x0000ff }, { 0xc849c0c7, 0xab89d0f7, 0x96f93292, 0x95b53d3, 0x5f0138c, 0x403dbd79, 0x5394251b, 0xb687442e, 0x5ca912e3, 0x178797a6, 0xf3e35ef4, 0xb107436, 0x8cdb9eab, 0x491c5ee5, 0x70051a91, - 0x99fad1cd, 0x000099, 00000000 + 0x99fad1cd, 0x000099 }, { 0x384b20df, 0x6c40b759, 0x18ac569, 0x51a65e48, 0xa0c3be6f, 0x486aa4d8, 0xc17cf6ca, 0xb1734ba7, 0x1caf977d, 0x1c2ec4bd, 0x33022a17, 0x56378b6a, 0xdcc158bb, 0x783009dc, 0x834e5fef, - 0x2b889b23, 0x00002b, 00000000 + 0x2b889b23, 0x00002b } }, { @@ -39922,19 +39922,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x830b1889, 0xf56986d5, 0x8d95b442, 0x550c54fe, 0xfc499986, 0x7a2db0fd, 0x3d722c82, 0x6be6745e, 0xd9b75c59, 0xe58b2a44, 0x6214741d, 0xbf712b75, 0x1c77f606, 0xf6adaeee, 0xad91bcf, - 0xbb676f4, 0x0000aa, 00000000 + 0xbb676f4, 0x0000aa }, { 0xef3bc7f7, 0x8ba08e66, 0x76d13f4d, 0x15b40fca, 0x774cde6, 0x48b3dcc9, 0x79d831c2, 0xcdce3cd4, 0xdfb8a6a7, 0xf680aab2, 0x9a260099, 0x51ed1b18, 0x8d1dabc6, 0x5823aa12, 0x32618d35, - 0x8871e0d6, 0x00002a, 00000000 + 0x8871e0d6, 0x00002a }, { 0x8630ee43, 0x6dfaee5e, 0xa51b4c7b, 0xf1a77d08, 0xb66ac001, 0xcd7037c5, 0x14be88b0, 0x614b14bd, 0xa81f5fe3, 0x78072778, 0xaa1214cb, 0xa51326b5, 0x2c65c932, 0xac2580eb, 0x319af762, - 0x651e510a, 0x0001a3, 00000000 + 0x651e510a, 0x0001a3 } }, { @@ -39942,19 +39942,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x86f7240d, 0x144e5236, 0xf9032be0, 0x4184579, 0x81b82801, 0x4142c7fb, 0xdaa2841a, 0xf5a956c4, 0x26c51e66, 0xd1801cea, 0x867f051c, 0x9bf4c81d, 0x32d3d71d, 0xba336f9e, 0xdfab55e1, - 0x320a7505, 0x00006b, 00000000 + 0x320a7505, 0x00006b }, { 0x8aa526b5, 0x497f3b28, 0x1fc10238, 0x6c688322, 0x39e92dbe, 0xad099f4d, 0x6d13a5a1, 0xb1583f53, 0x7fd9e48a, 0xeb57d5d6, 0x88b4fb6c, 0x2edff633, 0xf27a4c1c, 0x42815da3, 0x492fc2a, - 0xf530215b, 0x0000f0, 00000000 + 0xf530215b, 0x0000f0 }, { 0x31aff4fe, 0x37f6555d, 0x9099ccac, 0x6c8a0c9e, 0xd0d4d69c, 0x9f5f9691, 0x810f0d46, 0xa1f4e726, 0x2d29e321, 0x924c599a, 0x5478dabf, 0x8d1dde11, 0x558f8b47, 0xf064aa8d, 0xd54bb963, - 0x2de831a6, 0x000062, 00000000 + 0x2de831a6, 0x000062 } }, { @@ -39962,19 +39962,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbbf000ab, 0xa7d785e5, 0x4a8939c3, 0x962eb12b, 0xe9e36829, 0xfe5aba87, 0xffd873d8, 0x1d8bdd77, 0x20d9ba4b, 0x68cecc07, 0x4acdf5ef, 0x69ec654e, 0x8b9dd961, 0x2bd6b717, 0x7d787625, - 0xd906baa2, 0x0000fd, 00000000 + 0xd906baa2, 0x0000fd }, { 0xf9ccd7e6, 0xf1757c, 0xee230995, 0x20e16508, 0x29fbdeb9, 0xc3596388, 0xf7efeecd, 0x1e70b509, 0x1ee0be02, 0x8578562f, 0x33a5fa78, 0x1faa5bf1, 0xbfe05c23, 0xeabd4cea, 0xcabd49da, - 0x92d70cb0, 0x0000b5, 00000000 + 0x92d70cb0, 0x0000b5 }, { 0xea4737cd, 0xc40ead3d, 0xdd9c1ab3, 0x75568628, 0xe32e3948, 0x5fc0dde6, 0xf91d851a, 0xe27daa94, 0x275533b1, 0x3cadeaeb, 0xa9266261, 0x9a78f461, 0xd7c596ac, 0xbf92d290, 0x5150063, - 0xfc4ae272, 0x0000dd, 00000000 + 0xfc4ae272, 0x0000dd } }, { @@ -39982,19 +39982,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x403262a6, 0xe9f879c, 0xfb3a6582, 0x4b570506, 0xa543eb4d, 0x6c3048da, 0xd976f96a, 0xa2dbcfee, 0xdfc18fc4, 0xbee2bff5, 0xb7bf80c7, 0xa9a3a06f, 0x3edad7f1, 0x6c1e09ac, 0x408dcbc, - 0x3351d337, 0x0000b6, 00000000 + 0x3351d337, 0x0000b6 }, { 0x81cbed29, 0xe5faefc1, 0x5fc408c4, 0x9e7e1223, 0xd35c080b, 0xb44b96f0, 0xf4c3b12c, 0x3cf0910c, 0x4d1d3637, 0x2f70a285, 0x16746b7, 0x91dd2cbf, 0x5e08d0a1, 0xdc49f00b, 0x1ce73a37, - 0x5b71e394, 0x000099, 00000000 + 0x5b71e394, 0x000099 }, { 0x4d43d664, 0xfa0d8dbc, 0xbfa02325, 0x45b40bfa, 0xcf8601ae, 0xfe42c8c6, 0x51092c21, 0x9e3c79b8, 0x653ea456, 0xae2f7df4, 0xfb69e921, 0x92aa7a4e, 0xa068879, 0x9b604eb8, 0xac71ccd0, - 0x6a8e89d2, 0x00019c, 00000000 + 0x6a8e89d2, 0x00019c } }, { @@ -40002,19 +40002,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcfd065df, 0x99c79ffa, 0xfaa86fd1, 0xf37830a6, 0xcf3e6e5e, 0xb8643143, 0x5f933ef, 0xfce88bdf, 0x6d874ff, 0x5333c922, 0xa5344bc4, 0x7f2fb9df, 0xb568986d, 0x6180c86e, 0x6960e441, - 0x1cd07265, 0x00014e, 00000000 + 0x1cd07265, 0x00014e }, { 0xbf70dd17, 0xc0f62577, 0xc1a5fa6a, 0x69e98708, 0xae08ce07, 0xf751e3ea, 0x6e15dc53, 0xab0e81a3, 0x8bbb21f1, 0x20409367, 0x24972017, 0x9131715e, 0xfd82a613, 0xea71934e, 0x5ce9e2e5, - 0x276752, 0x00008d, 00000000 + 0x276752, 0x00008d }, { 0xf086d175, 0x69a234a9, 0x2554f5b4, 0xd2f7e98, 0x68487d40, 0x83d310d3, 0xce4831bc, 0x26f616c4, 0x989f84cf, 0x616a9040, 0x3a8067fd, 0xf5be1f19, 0x7137cecb, 0xa1c97b46, 0xf2150810, - 0xfff235b8, 0x0000b0, 00000000 + 0xfff235b8, 0x0000b0 } }, { @@ -40022,19 +40022,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb476d179, 0xe8e336b8, 0x5919add0, 0xc83a6ec6, 0x8584f499, 0xc3abb88c, 0x7820dd23, 0x6382d681, 0x45e9ab29, 0xfd21837c, 0x44358ea7, 0xa6593b7e, 0x246efd14, 0x1d5ab8ed, 0x276b0c95, - 0x289c54ac, 0x0000a7, 00000000 + 0x289c54ac, 0x0000a7 }, { 0xaca0416e, 0xb3d2e11c, 0x69bae717, 0x707f68fc, 0x5b844747, 0x233bf358, 0xb0ca8d66, 0x1f9958cf, 0xd72be75d, 0xc0050ba7, 0xbc1a9e98, 0x7a6cdd4b, 0xe8d0f74f, 0xf3b8ccd8, 0x66f6293e, - 0x140bff69, 0x000097, 00000000 + 0x140bff69, 0x000097 }, { 0x216b4d63, 0x37e588ef, 0xca49ec95, 0x71387f47, 0x3cf400ac, 0x3daf524e, 0x163f2287, 0x72c41b9, 0x28fba536, 0x3dc0155a, 0x6e47d19c, 0x57d54715, 0x26b5cc4c, 0x18e40fd0, 0x3a8b29f6, - 0xf2ae7f69, 0x0000de, 00000000 + 0xf2ae7f69, 0x0000de } } }, @@ -40044,19 +40044,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6143dc58, 0xf77c63e3, 0x1cfc9307, 0x87a07fab, 0x187e6bef, 0x6f61afc7, 0xd6575dbe, 0x58136ac0, 0x9f720614, 0xf0f614ae, 0x9870a371, 0x535f65ec, 0x95dfc5a5, 0x924c2ba8, 0x2384b86c, - 0xd23f3a6f, 0x00010d, 00000000 + 0xd23f3a6f, 0x00010d }, { 0x129c92c5, 0xd84e4578, 0xd5c23c3e, 0x43c58143, 0x547966d0, 0xa5122399, 0x648d0dab, 0x7c9c81fc, 0xc66dde8a, 0x4dcccd4b, 0x9eff11d1, 0x94a280e0, 0x1e68d0e5, 0xbb774462, 0x50eb58cf, - 0xc33f472b, 0x000192, 00000000 + 0xc33f472b, 0x000192 }, { 0xd004e0ad, 0xda655970, 0xf1594c16, 0x542cf02c, 0xb5d0ef87, 0x44703ca, 0x1e021527, 0x13bb66ef, 0xbedd65ae, 0x4ccd04a4, 0x7a99b510, 0x9068a986, 0x7f506996, 0x9ae8bf2d, 0xf019b4bb, - 0x1544c546, 0x000070, 00000000 + 0x1544c546, 0x000070 } }, { @@ -40064,19 +40064,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3adf3b8d, 0x25577520, 0xb14af75d, 0x38289a92, 0xc1286a98, 0xe13fae05, 0xbfb41c1e, 0x67b26f6, 0x5c7d69c9, 0xce4d1c3c, 0xab6fea81, 0xd68569f9, 0xad92f85c, 0x33abc551, 0xe7f65e5d, - 0xa6daf2cb, 0x00010b, 00000000 + 0xa6daf2cb, 0x00010b }, { 0xf0ce0ea9, 0x6b7372a6, 0x7c407409, 0x3c5f6773, 0x7015795d, 0x91f45114, 0x766c3c1e, 0x3710bbc, 0x343240a9, 0xd0535c7c, 0xb58eef3b, 0x694bb24e, 0x6c643281, 0x6cad10aa, 0x9504f390, - 0x41e1305f, 0x000041, 00000000 + 0x41e1305f, 0x000041 }, { 0xb2e344ce, 0x79f65430, 0x24f25440, 0x3c857a0d, 0x542e85d5, 0xf394856b, 0xbc6d2cd6, 0x10e698e8, 0x89a8443, 0x229a3440, 0xbe4d11e5, 0x77c9d759, 0xc5962d31, 0xa1b08c0c, 0xb38d2aa7, - 0x49c21546, 0x0001b8, 00000000 + 0x49c21546, 0x0001b8 } }, { @@ -40084,19 +40084,18 @@ static WORD generator_table[144][15][3][LIMBS] = 0xae2310f6, 0xbdc41de7, 0x6065ddc1, 0x40bd14c, 0xface9be0, 0x542b7165, 0x2d4631ec, 0x780c210b, 0xb9ea445f, 0xdb2c3f4d, 0x4767bdd5, 0xab036904, 0xdc29dd2, 0x9ca787c9, 0xe21c3278, - 0x49d51b6e, 0x000047, 00000000 + 0x49d51b6e, 0x000047 }, { 0x8b6a163, 0x0e108c, 0xff6cda4, 0x9b444521, 0xa8cfff4b, 0x83346d5, 0x22d3ef7f, 0x25665e4b, 0x6d5cd74a, 0xe94b22ca, 0x72f2946b, - 0xf2fcf809, 0x80019b80, 0x51c4d0fe, 0x4d35d223, 0xb908504, - 0x000009, 00000000 + 0xf2fcf809, 0x80019b80, 0x51c4d0fe, 0x4d35d223, 0xb908504, 0x000009 }, { 0x51c89351, 0x8b5c3a9e, 0x8786f64f, 0x57d5e947, 0x24ab07e7, 0xa1b42d1f, 0x7d836635, 0xba7844b, 0x8452314, 0x7f6408cc, 0x789d8c1b, 0x5b7b2766, 0xd46f7c32, 0xdb7de39f, 0xf002ca32, - 0xddcb9ddb, 0x0001b0, 00000000 + 0xddcb9ddb, 0x0001b0 } }, { @@ -40104,19 +40103,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26dd9223, 0x2587a33, 0x8e7dc47f, 0xfa4db7fb, 0x5ebb0820, 0x57da68ea, 0x70df8fb1, 0x35fa97cc, 0x54d1a3c7, 0x996a90c8, 0x6ed1c943, 0x7e011922, 0xc583be37, 0xe34baedf, 0x31cb7893, - 0x4f86fe43, 0x000139, 00000000 + 0x4f86fe43, 0x000139 }, { 0xc7ce91f4, 0x72856e1f, 0xc77f2431, 0xbd9175c3, 0xc6eac94c, 0x3733c6e0, 0x2a9a14fa, 0x6e4cf63e, 0x4b5ee374, 0xb4e6ca1b, 0xfb4eb6ee, 0x8e128afb, 0xc57d7e80, 0x85ce1d05, 0x7993bc8e, - 0x619ce22, 0x0000f1, 00000000 + 0x619ce22, 0x0000f1 }, { 0x3dbe1fa3, 0xfe97566e, 0x9ec13194, 0xcf10202d, 0xb8457279, 0xf0f89e46, 0x3ab22a42, 0x50cbb9aa, 0xdc5949cf, 0xbaad5988, 0xf2854d50, 0x72c48d37, 0x8ec8d30, 0x58b84943, 0x559ad90f, - 0xec1ddbb9, 0x000045, 00000000 + 0xec1ddbb9, 0x000045 } }, { @@ -40124,19 +40123,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa75a49a5, 0x7596b4bf, 0x2fa8b6ef, 0x56c03c8d, 0xf5ea0a8e, 0x2c85db08, 0x5aa2bf4c, 0xdd35cb2f, 0x329585f0, 0x40f746d3, 0x43ff72b, 0xddbb9278, 0xd0a73cb9, 0xfeb49179, 0x45f27ca8, - 0x789f4337, 0x0001ff, 00000000 + 0x789f4337, 0x0001ff }, { 0x132c7693, 0x67fc6575, 0xfce5b7ea, 0x2b554960, 0x645dce34, 0x60456c30, 0x1b59822a, 0xf98de92c, 0x82a29e2f, 0x32084c12, 0xd3558acf, 0xbc0dcf50, 0x5c239802, 0x74b6ab45, 0xa300531e, - 0xd194be8d, 0x0000d9, 00000000 + 0xd194be8d, 0x0000d9 }, { 0x21581387, 0x3359f49e, 0x8d6d3b79, 0xb859c3ff, 0x903d4048, 0x9da0ee95, 0x2779e59d, 0xf3b25a2b, 0x4de3dcab, 0xae8355a2, 0xc57d16a8, 0xa6158579, 0x2ae0ea92, 0xa675010f, 0x733724bb, - 0xee72cec6, 0x000147, 00000000 + 0xee72cec6, 0x000147 } }, { @@ -40144,19 +40143,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b8175d8, 0xce28785f, 0xc5be71ec, 0x451631a2, 0xe0abc818, 0xcc26b260, 0x91944d24, 0xf95a30d7, 0x8f4e1fa1, 0x79895506, 0x755493e5, 0x355ac0bd, 0xdbcaa5e0, 0x30819738, 0xa8c175dc, - 0xed355a00, 0x0001ac, 00000000 + 0xed355a00, 0x0001ac }, { 0x92b95ed5, 0x9624d6b8, 0x40572c8b, 0xf3a7ef7c, 0x17c58fe8, 0x2129b1ff, 0xeec138ac, 0xa0848dfd, 0xb2a21fb8, 0x2be9512c, 0xcac6c5ef, 0xc97109d0, 0x29a7315d, 0x6081288e, 0x46d75131, - 0xaa755604, 0x000118, 00000000 + 0xaa755604, 0x000118 }, { 0x4a14ecef, 0x3721b14d, 0x45f114c, 0xf27b6f08, 0xdceddadd, 0x9fd682f2, 0x1d0f7f0e, 0x8f93a1e0, 0x490f33f9, 0xfef1b5, 0x13a4084d, 0x20d4b1a, 0x98c12dfa, 0x481b1a0b, 0x5f863164, - 0xee0ceaee, 0x0000ac, 00000000 + 0xee0ceaee, 0x0000ac } }, { @@ -40164,19 +40163,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x61187da4, 0xc898c240, 0xfad78701, 0x1672f7f0, 0xeffdd864, 0xeb16c255, 0x5ad3c94c, 0x40c6a122, 0x74380bb6, 0xb6d77ec3, 0x7c57a366, 0x751d8f70, 0xb7eee8fe, 0xf9d5d1af, 0x96fafc2d, - 0x75664999, 0x00018b, 00000000 + 0x75664999, 0x00018b }, { 0xc683ef13, 0xcdddb9e, 0xeae323b7, 0x15aacee, 0x7fa01258, 0x810be873, 0x708a23b9, 0x8137975c, 0x4cfebf14, 0x6abaabdc, 0x9c34034c, 0xb78648bb, 0xa19379c6, 0xb45aab33, 0xfbbccc22, - 0x112b1273, 0x000051, 00000000 + 0x112b1273, 0x000051 }, { 0x5037e723, 0x77cf5872, 0xad58ce6a, 0x2c5a97f1, 0xa28a47f5, 0x22bd365a, 0xda8b6c0a, 0xea213eab, 0xf3490989, 0x5a91b40f, 0x5bbb4888, 0x3984f4af, 0xbea7e4bf, 0xdfc75ec6, 0x3952693d, - 0x373cea3c, 0x00011d, 00000000 + 0x373cea3c, 0x00011d } }, { @@ -40184,19 +40183,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf7ca1f9e, 0x39d5bb23, 0x9c75e9bd, 0x29d129c3, 0x91e509ee, 0x456ac400, 0x55ccb3af, 0x5529d85e, 0x60975b72, 0xd3681955, 0x8df5e8bc, 0xe0e8029e, 0x4c0f0bbe, 0x25b5f605, 0xe738b362, - 0xfc30651e, 0x0001c8, 00000000 + 0xfc30651e, 0x0001c8 }, { 0x29ddd75b, 0xd95f1725, 0xb795547c, 0x8ee1d8ea, 0xf88687b2, 0xba1304f7, 0x87c456d4, 0x2230c0d, 0x3d741c4f, 0xce84c0df, 0x9e23caee, 0x9afd0dae, 0x36f5a6bc, 0x826486b0, 0x7c0ea2cd, - 0x1ea1eba, 0x0001e6, 00000000 + 0x1ea1eba, 0x0001e6 }, { 0x40214661, 0xe524af6f, 0xead53c08, 0x94a3368d, 0x1454c18d, 0xdd1956d4, 0x700a8885, 0x63eb8fdf, 0xc5b04a4c, 0x50d58a0c, 0x35eae052, 0x5be068c, 0x6731ac3f, 0x3d9e6b8e, 0x79621559, - 0xfc188f45, 0x000090, 00000000 + 0xfc188f45, 0x000090 } }, { @@ -40204,19 +40203,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfeb3b8f3, 0x9a80a0c4, 0x2da1c11e, 0xe5256e2c, 0x7bb12482, 0x48d88d1, 0x826e94d, 0x5a8ef417, 0x65ea18de, 0xf249b557, 0x62583d4, 0xf209849c, 0x62093bf7, 0x897ba593, 0x9d0a5326, - 0x2daadaf1, 0x00006c, 00000000 + 0x2daadaf1, 0x00006c }, { 0x841036, 0x117d49da, 0x7ea2860a, 0xc2b8b926, 0x31b26f70, 0xeb2df81d, 0x8e0a0d19, 0xace65ddd, 0x74c06c9d, 0x37cad957, 0x26478455, 0xb999995b, 0x5340480d, 0xddc2ff08, 0xd1aaace, - 0x448ca662, 0x0001c2, 00000000 + 0x448ca662, 0x0001c2 }, { 0x7ede3efc, 0x3692c082, 0x6323a9ee, 0x9eaadd1f, 0xba025e35, 0x3c489fdf, 0x44fc3ebb, 0xf525302, 0x9d1ee35e, 0x9176de0f, 0xe7134f30, 0xd39e4b61, 0xf91e84d4, 0x7c32d668, 0xa8f621d2, - 0x5ebb4f9f, 0x000102, 00000000 + 0x5ebb4f9f, 0x000102 } }, { @@ -40224,19 +40223,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x544444ad, 0x70d1fdf5, 0x94231077, 0xc4ca7d42, 0xef0329ab, 0x8ff3874c, 0x95f74858, 0x99767ee, 0xe0e7d28d, 0xeb99fd0c, 0xeaf60361, 0x32f3685b, 0xb178307c, 0xa2e2126c, 0x833a8bbf, - 0x974aa2e2, 0x000097, 00000000 + 0x974aa2e2, 0x000097 }, { 0x5a6a0e4b, 0xde75485b, 0x23ec1dec, 0x937d54e9, 0x34afc77a, 0x72cbc2a, 0x666285ff, 0x13cc0415, 0x381f152a, 0xb3b604cd, 0x168cfba, 0x4d881fb3, 0x3941cabf, 0xf7d8b3f5, 0x57b540b4, - 0xbb9dce60, 0x0001d1, 00000000 + 0xbb9dce60, 0x0001d1 }, { 0xa2c2b73, 0x7d7184c5, 0x677dfe66, 0x14650014, 0x9f176375, 0xe07ce755, 0x6d5a6b33, 0xc757d8a7, 0x1a6bfb4a, 0xd322e2e2, 0xfe742d1c, 0x41f2183, 0x4333d267, 0xa7134de4, 0xb83ac828, - 0xdf59bd1a, 0x000119, 00000000 + 0xdf59bd1a, 0x000119 } }, { @@ -40244,19 +40243,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa63ad77f, 0x5e83ecc9, 0x4b975554, 0x4672a870, 0x84b91e49, 0xd9949dea, 0x14486b78, 0xda79317, 0xdb21afc2, 0x69bcbde3, 0xbe65d3ae, 0x43d7ff66, 0x6713c66c, 0x8caf29fa, 0x24f61fb9, - 0x6f90c345, 0x000043, 00000000 + 0x6f90c345, 0x000043 }, { 0xab6d06ae, 0x6c3a8dce, 0xd52b4fb9, 0xc50854a9, 0x937212fb, 0x7fd8bf4, 0xa9e00aca, 0x7a7ba904, 0xca2cc9ac, 0x87dcd916, 0xda4471d5, 0xf19b894d, 0x2756996d, 0x6e4f31bd, 0x611137b7, - 0x287eb107, 0x0001b5, 00000000 + 0x287eb107, 0x0001b5 }, { 0xc9ef0324, 0x23139e7, 0x906335fa, 0x48a7219e, 0x32606033, 0xfab4212e, 0x7eb65ec, 0xe9715ee0, 0x8d1c09a5, 0x9367ede7, 0xae62346f, 0xee502f40, 0x7c90a3d8, 0xb4f81e47, 0x2755a248, - 0x5ff625cf, 0x000068, 00000000 + 0x5ff625cf, 0x000068 } }, { @@ -40264,19 +40263,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49378752, 0x61cc6764, 0x4da7c825, 0x567374dc, 0x3e6fcf78, 0xdc1a28c, 0x911385b7, 0xed61e83, 0x3c0f35e, 0xe5dea969, 0xf084df3, 0xc17c7bcb, 0xcc0a8174, 0x1dfd317c, 0xf0ae8320, 0x5c627f83, - 0x000198, 00000000 + 0x000198 }, { 0x6c7fc2a1, 0x316565e9, 0x8e56ebb2, 0xeb5b439, 0xb1808421, 0x94191dec, 0x70a84a66, 0xacfbbcea, 0xffe52bc6, 0x241df524, 0xfc7567d, 0xd0e94ff5, 0x25d0665c, 0xb8eedc82, 0x25aa5a1d, - 0x26751fb5, 0x0001b8, 00000000 + 0x26751fb5, 0x0001b8 }, { 0xd13551df, 0x26efce80, 0x897ca9bf, 0x7ea35ee5, 0xf3c269b8, 0xcba18dcf, 0x56f3fe3b, 0x844de4b2, 0x41d26a00, 0x29a80a5b, 0x6910a5be, 0x46ea78f3, 0xf4a80609, 0xc859eb0f, 0x70d240fc, - 0xa1c43c1a, 0x00008a, 00000000 + 0xa1c43c1a, 0x00008a } }, { @@ -40284,19 +40283,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x158d0f12, 0x15ac09a5, 0xdca1b465, 0xe1561cab, 0x3e8800d7, 0xdb44ef40, 0xff896da4, 0x76b7fdcd, 0xb444359, 0x1b26580, 0x19b2fa48, 0xfb797296, 0x7d32bb42, 0xabfd6c40, 0xd1eafce4, - 0x7df79fa, 0x000179, 00000000 + 0x7df79fa, 0x000179 }, { 0xf6684ce3, 0xa2b48905, 0x8166eb9, 0x585e51f7, 0xab8ac539, 0xea70f960, 0x561bce2c, 0xd3b10af5, 0x1d8951d1, 0x76f8162a, 0x136680e2, 0xc13232de, 0xa093bb18, 0xf00d093e, 0xa636e203, - 0x5492937f, 0x000014, 00000000 + 0x5492937f, 0x000014 }, { 0x6f102852, 0x4c0fa250, 0xd020cf0, 0x99b7830f, 0x501e1746, 0xc707270a, 0x167b2c52, 0xe0429af8, 0x567f883e, 0x319150e7, 0x9fee3478, 0xa24349db, 0xfd811595, 0x495d105f, 0x1767bf9b, - 0x52c1e340, 0x0000dd, 00000000 + 0x52c1e340, 0x0000dd } }, { @@ -40304,19 +40303,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc74f4c21, 0x646d5b61, 0x3935b4c1, 0x66bf9dbc, 0x3f74d7bb, 0x2ab217a, 0x1bfdf2a6, 0xdb971e44, 0xf8753a59, 0x2ec19c86, 0xbb438f98, 0xbd9468ac, 0xe360a1f6, 0xef0346b1, 0xea8e8c31, - 0xcbaf9cc6, 0x0001b2, 00000000 + 0xcbaf9cc6, 0x0001b2 }, { 0xc81046c6, 0xfccee3e9, 0x6efc6986, 0x19ee8b29, 0x7da2d8b5, 0xc2da2443, 0x9839545b, 0x255ccd67, 0xfafd8f99, 0xd9c6bf42, 0x2ff2bff0, 0xdaa7534, 0x6cbe2009, 0xbd0b2d28, 0xafea1afd, - 0xcb50105, 0x000135, 00000000 + 0xcb50105, 0x000135 }, { 0xb10c2edf, 0xb859fbfd, 0xf9d05972, 0x6ac49707, 0xd95a9f99, 0x698062a8, 0x76fa06d6, 0x29a3a338, 0x8de08c9d, 0xadca255d, 0xbb1b2d83, 0x5a7073ec, 0xddfc3cb0, 0x818bea7c, 0xe1c9c42c, - 0x8dbb5bf2, 0x000013, 00000000 + 0x8dbb5bf2, 0x000013 } }, { @@ -40324,19 +40323,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x303f905a, 0xda13dc98, 0x3203b04d, 0xfc56ffd0, 0xd924d5d5, 0x1989376b, 0x5cc2bfc2, 0xe17c981c, 0x939fb313, 0x5875014a, 0xea6080b1, 0xb07f70d9, 0x3762f5c8, 0xa3948b0, 0xdacab012, - 0x3bfea6d2, 0x000033, 00000000 + 0x3bfea6d2, 0x000033 }, { 0x99e5775e, 0xe8c22fd5, 0x47f47008, 0x5aa732a5, 0x40789e98, 0xa468abd1, 0xc620b289, 0xc53ed92c, 0xb4ad94f2, 0xc5292496, 0x710c8449, 0xb3d252d8, 0x924fa387, 0xd2af05f4, 0xb43d9699, - 0xe33d3c4c, 0x0001af, 00000000 + 0xe33d3c4c, 0x0001af }, { 0xa78ce73b, 0x7f7ea70b, 0x4c0de1f, 0x3be20b77, 0xe89290fe, 0x8b65b231, 0xd51c57e1, 0x71bdaa72, 0x908cbbf0, 0x4986ad1d, 0xcd45806a, 0x81529294, 0x5d28356b, 0x666a882e, 0x4ceedb9f, - 0x5e003540, 0x000020, 00000000 + 0x5e003540, 0x000020 } } }, @@ -40346,19 +40345,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1694be44, 0x576719bf, 0x6864c537, 0x481e3f19, 0x9329ef71, 0xf4345841, 0xce080aab, 0x33e57186, 0x60b333d4, 0x43864d99, 0x1f1b2785, 0x315fabd3, 0xf112b220, 0x8687421c, 0xb9bcca7a, - 0x58351996, 0x000198, 00000000 + 0x58351996, 0x000198 }, { 0x837569c2, 0xb2da9ae8, 0x5b6dfa86, 0x62fa7de7, 0x97dd34e6, 0x4382aa99, 0x5e169b6a, 0x20de866a, 0x6aaf4299, 0x37f17957, 0x16cbbcb8, 0x5ada56ef, 0x96f566d, 0x76ef6eed, 0x88db00e3, - 0xedc282e2, 0x0001bc, 00000000 + 0xedc282e2, 0x0001bc }, { 0x9bc82709, 0xdebde577, 0xf095b8a0, 0x871f56d4, 0xdaad2739, 0x594b6bc6, 0x33937967, 0x74bc1d24, 0x43cbb1f2, 0xb46772ea, 0x4312e82a, 0xf43fa38, 0x8a14efcd, 0x90222f6c, 0x9fa66dbf, - 0x52b8d4d5, 0x000188, 00000000 + 0x52b8d4d5, 0x000188 } }, { @@ -40366,19 +40365,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x107501e8, 0x2a3bdae7, 0x366e784d, 0x361d3f4f, 0x36ecda8e, 0x599e8067, 0x8a04dbe0, 0x2e39168c, 0x224bd3cf, 0x1764157f, 0x289d7d42, 0x493da96e, 0x38a70625, 0x199c3ec0, 0x450ff37f, - 0x6526881e, 0x00014b, 00000000 + 0x6526881e, 0x00014b }, { 0x3b7ba5d0, 0x3d9bf2e2, 0xa9aa0d2c, 0x80c84eb, 0x4824cffe, 0xe9e2b40a, 0xd243305a, 0xf8a01712, 0x181a3f3d, 0xbf93c926, 0xe4c53ae6, 0x5d9105e4, 0xce966359, 0x8b6c8263, 0xa626e02a, - 0x44f8ba05, 0x000106, 00000000 + 0x44f8ba05, 0x000106 }, { 0x4eb221b1, 0xb513c29, 0x3a0ba7d7, 0x2b57b8a5, 0x119c1f3c, 0x840c6a19, 0x7fd6f711, 0x7713990d, 0x3e1bacd8, 0x75a123ca, 0xdc2d8453, 0xf3473fba, 0x199156b2, 0x9b3140ff, 0x12530aee, - 0xe59053e9, 0x0001bd, 00000000 + 0xe59053e9, 0x0001bd } }, { @@ -40386,19 +40385,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd63c3f36, 0x9136d7b9, 0x57577fa1, 0xbecb7a63, 0x2ca55c1f, 0x4152359b, 0xb321ae35, 0xa8260939, 0x58b77025, 0x694597b4, 0x3ebea4a9, 0x812d4840, 0xa8e25822, 0x2592eec6, 0xb5a1becd, - 0xc7873684, 0x000125, 00000000 + 0xc7873684, 0x000125 }, { 0xaada51be, 0x40f3efa3, 0x1f99a16d, 0x82df948b, 0xe974c114, 0x9c1fbf5b, 0x488e3556, 0xa4e36e27, 0x8a8919b2, 0x13cbf5f2, 0xbb8b5a3b, 0xd0c13686, 0x30a7e0f9, 0xe17bdf64, 0xcf354935, - 0x85146729, 0x0001e4, 00000000 + 0x85146729, 0x0001e4 }, { 0x2bdaa3fd, 0x2247651f, 0x47612149, 0x5b503fe5, 0x94f80bd4, 0xbc6c2536, 0x84b44e78, 0x66a741a6, 0xef095d9e, 0xfc6317e5, 0xf9405ce6, 0xd2e040c2, 0x4fb6ffa, 0x7a865e9a, 0x1f39cb2b, - 0x552d41aa, 0x0001cf, 00000000 + 0x552d41aa, 0x0001cf } }, { @@ -40406,19 +40405,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd09361f1, 0x85d7deae, 0xbfe341b9, 0xb08c201d, 0xb0ab6623, 0xf81e47ed, 0xb9d31d7c, 0x328ae7f7, 0x6cfc3187, 0xd2cbdfa2, 0x3b33dfae, 0xf2d64b24, 0x937ef060, 0xc98fcb4e, 0x173ef03a, - 0x7e3202a8, 0x000155, 00000000 + 0x7e3202a8, 0x000155 }, { 0xa1af915e, 0xe05e4650, 0x3f46f9a8, 0x1a79c5d6, 0x792060a4, 0x1dec8254, 0x76891c83, 0x334f335d, 0xb99c53a2, 0x4757d287, 0x371a2635, 0x7d640d99, 0x7b408c3b, 0x9a80df43, 0xf6a2cdde, - 0xf754c3a7, 0x0001cc, 00000000 + 0xf754c3a7, 0x0001cc }, { 0xb5119f91, 0x3746691d, 0x6cbf8106, 0x2043af07, 0x4d3b735d, 0x3cd8b671, 0x261ba505, 0xcfb9f942, 0x2fd174a3, 0x4f166aae, 0x2c8479ea, 0x9fc1c57a, 0x7b63dbc0, 0x44eaf0e0, 0x47ee32d6, - 0x38da282e, 0x0001ab, 00000000 + 0x38da282e, 0x0001ab } }, { @@ -40426,19 +40425,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x92f38730, 0xeb937625, 0x30cdb18d, 0x5c82e04d, 0x2c8b0086, 0x63e0c87e, 0x7d950d5f, 0x24ea729f, 0x1f8b3dd3, 0x820bcd11, 0xe8d59074, 0x7ab1029a, 0x7afeb996, 0xc385ced3, 0xa24465ee, - 0xa8c98446, 0x000199, 00000000 + 0xa8c98446, 0x000199 }, { 0xdd4a46a2, 0xfc479640, 0x680b6f52, 0xa7577bd4, 0x4ca410b, 0x4538ed77, 0xa02c8a51, 0x74aba211, 0x4f4c6d39, 0x7d5674b1, 0xaf03e9d7, 0x2f784bd4, 0x8b34ab8c, 0x73960457, 0x28785983, - 0x9140f139, 0x0001ca, 00000000 + 0x9140f139, 0x0001ca }, { 0xbf97571e, 0xccce8098, 0xe6cd1905, 0xbca033f7, 0xa0150cf, 0x1bcec3e, 0xeea966e0, 0x4153ef70, 0x540da23f, 0x36d82d51, 0x2604808a, 0x3e82a2d5, 0x850b4f78, 0x581e8f19, 0x3c54906, - 0x9b4c9313, 0x00013d, 00000000 + 0x9b4c9313, 0x00013d } }, { @@ -40446,19 +40445,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a94df1, 0xd08f5d75, 0x50613785, 0x17ac0c44, 0xbef6787f, 0xf8d0718a, 0x8b2b5586, 0xfb6b04d8, 0xe84b1994, 0x59eb630b, 0xe6aec211, 0x24379a7, 0x5fbcdf55, 0xc4f6ccf9, 0x482ca7b7, - 0x36fef377, 0x0001a1, 00000000 + 0x36fef377, 0x0001a1 }, { 0x4c91a28c, 0x625c069, 0x6777a770, 0x8db0279b, 0xc21b445f, 0xe07e5e6f, 0x9d9efec, 0xff96d38e, 0x94332760, 0xc4faed5d, 0xd388331d, 0x235b7f80, 0xa9a60f95, 0xb26470cc, 0x82ae27be, - 0xd1ffd9b2, 0x00003e, 00000000 + 0xd1ffd9b2, 0x00003e }, { 0xf6a2d993, 0xaa1fcd9, 0x41b97020, 0x8af93b12, 0xb4b87d54, 0x3a2c1050, 0x848a7cda, 0xa3a58658, 0x52d5c0b5, 0xc5ae229d, 0xa5002ddd, 0xa2475395, 0xd8452402, 0xf6ac2e1b, 0x6fd8ec5e, - 0x580840a8, 0x0000a3, 00000000 + 0x580840a8, 0x0000a3 } }, { @@ -40466,19 +40465,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x513d82e5, 0x97e049ad, 0xc2afc1a7, 0x33b3911b, 0x97730cf0, 0x4ddebae1, 0xa7e45466, 0xcf92b7f0, 0xe9ce67e5, 0x2df4fa5c, 0xe067de82, 0xece3be00, 0xdcc99765, 0x18b263fd, 0x44ba1477, - 0x6aba8e0a, 0x00017e, 00000000 + 0x6aba8e0a, 0x00017e }, { 0xa9b0f1d, 0x47460ec6, 0x82cd4c3e, 0xd059c00b, 0x625ce6e7, 0xd47dfae2, 0xcc2b7bb3, 0xb55bec74, 0x166dfcb0, 0x35583fae, 0x13c116b6, 0x1d5f82c, 0xfb6b2064, 0xc4a8f02a, 0xe1dd7ba4, - 0xa6f4448a, 0x0000a7, 00000000 + 0xa6f4448a, 0x0000a7 }, { 0xf69815c7, 0x94f1e894, 0x318412ca, 0xe619f6a6, 0x20b4bd06, 0x9fcffe90, 0xfd1b028, 0xbcff4d0c, 0xa9c459f8, 0xb899cd68, 0x1fb60767, 0x5783a328, 0x50d0effd, 0x36b16697, 0x68e70c2, - 0x5496552b, 0x0001c6, 00000000 + 0x5496552b, 0x0001c6 } }, { @@ -40486,19 +40485,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1608a017, 0x9f87c833, 0xfb166e7a, 0xb4793e75, 0xf3e05e0, 0x32879578, 0x85fd83f, 0x64a4c066, 0xdf0ffe29, 0x50bcc580, 0x55754ccc, 0x59dc432b, 0x19d7dcad, 0xb6fac7b5, 0x6b06b202, - 0x7c1bcf87, 0x0001fe, 00000000 + 0x7c1bcf87, 0x0001fe }, { 0x6d12d1e2, 0x1c000bef, 0x53f1b1d1, 0x519bc67e, 0x4518bc41, 0xd3786714, 0x79961ce9, 0x392333c6, 0x8da1d34b, 0xb3bfa59c, 0x97b9bb2d, 0x428fea8a, 0x7c621213, 0x6c013b6b, 0xa65dffe0, - 0x5d29a7b2, 0x000138, 00000000 + 0x5d29a7b2, 0x000138 }, { 0x37504207, 0x68fa3e2b, 0xb0edd1ee, 0x4a3ed75a, 0x6bac4bdc, 0xe36ed35b, 0x8176ddcf, 0x61c612da, 0xdf7c6563, 0x23c32f81, 0xc752c8f3, 0xcf3a3adc, 0x6f860c76, 0x69b6c76, 0xf8995b3e, - 0x144cfac5, 0x000197, 00000000 + 0x144cfac5, 0x000197 } }, { @@ -40506,19 +40505,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdecf4553, 0xb9f1f206, 0xb16098bc, 0x74492085, 0x86095588, 0xd812471e, 0x49f5d99, 0x9329f03a, 0x409b89a2, 0x48192691, 0x2fcdaccc, 0xd0e508ff, 0x1621c371, 0x435298a0, 0x2fb2775c, - 0xabdc9ab, 0x0001d3, 00000000 + 0xabdc9ab, 0x0001d3 }, { 0x80869b75, 0x944758b8, 0x63ee62ee, 0x1b63de0e, 0xc10ad031, 0x8f10e062, 0xa8c76ece, 0xc703ecf4, 0xef017b9d, 0x567d3cea, 0x29afb74a, 0x5feb53ef, 0x52cf93ca, 0xa5a71cba, 0xbad7a47f, - 0x28e09b03, 0x00011b, 00000000 + 0x28e09b03, 0x00011b }, { 0x3dbbc36e, 0x48eb3db9, 0x43b9f09b, 0xf74b9646, 0x5097c0db, 0xb43d2e55, 0x9857be7, 0x604a033c, 0x3a515cdb, 0x566df373, 0xdb4fa171, 0x1a6c742c, 0x8b6385b0, 0xec48d54a, 0x25e649d1, - 0xeabb4789, 0x00012d, 00000000 + 0xeabb4789, 0x00012d } }, { @@ -40526,19 +40525,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6c130688, 0xc87248b1, 0x3a3cd12c, 0x538029d8, 0x75396439, 0xea303945, 0x386f9314, 0x85fb96b, 0xd89b8442, 0xc9d48c5d, 0xd79a8557, 0x10d89ea1, 0x6038eb5, 0x8acc8dbd, 0x30b5cf2, - 0xff364b75, 0x000187, 00000000 + 0xff364b75, 0x000187 }, { 0x82f1ccc6, 0xa8c78fc9, 0x8378ff3b, 0x28a00e64, 0x63fd01cc, 0x219b6d69, 0xb519d824, 0xfc000365, 0x915aefc4, 0x6874535a, 0x78a7786c, 0xc4e40d11, 0xa8726268, 0xbaa09498, 0xa0ba5a46, - 0x2879538a, 0x0000c0, 00000000 + 0x2879538a, 0x0000c0 }, { 0x121b91c3, 0xce205966, 0x8b2db69, 0xf201814b, 0xa5ce562f, 0xf85c2ff0, 0xd4f8e39, 0xbc618448, 0xe343b94f, 0xa4356460, 0xe1693497, 0x7cc01ee5, 0xbf9de879, 0x934381f0, 0xcab85a7c, - 0xcc0af79c, 0x0000a2, 00000000 + 0xcc0af79c, 0x0000a2 } }, { @@ -40546,19 +40545,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x12a9cf80, 0xe7d68aba, 0x83f817cf, 0x1372a40e, 0x4ca64c17, 0x7d1121ba, 0x8b26ba61, 0x6b800c11, 0xd5fa98f2, 0xa585e25c, 0x9495c6d2, 0x5011304b, 0x49dfe40a, 0xcfe7c9f9, 0xfe7ec92b, - 0xaf1b6ad4, 0x000074, 00000000 + 0xaf1b6ad4, 0x000074 }, { 0xb4049a58, 0xb00f1786, 0xb354ad6, 0x31d1d022, 0xff3db6e0, 0x431f95ec, 0x4cd38b1c, 0x3f9a1c40, 0x11f7122, 0xb5e8b681, 0x92bebc14, 0x568eeb14, 0x9f859f26, 0x7273bc1d, 0xf5fae78f, - 0x86f8e8d5, 0x0001ec, 00000000 + 0x86f8e8d5, 0x0001ec }, { 0xe9cd0364, 0x72d0da6a, 0x770e93f4, 0x12f82d29, 0x71a274d5, 0x7be9d67, 0x3ec5ddac, 0xbe529df5, 0x5c35e4d9, 0xf772b25c, 0x4f77b15e, 0xfaada294, 0x234b6e1a, 0x9f95254, 0xfb9ab989, - 0x5978bce8, 0x0000f7, 00000000 + 0x5978bce8, 0x0000f7 } }, { @@ -40566,19 +40565,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8e1d2dfe, 0x21fbb14a, 0x1c96b4af, 0x78fce900, 0xad9cc6ea, 0xbbc36b24, 0xdf024e42, 0x676bece8, 0xdc96b9f2, 0x241127fe, 0xce1cf767, 0x66ddb6f9, 0x6018118a, 0x7a904a56, 0x332c400f, - 0xb94d51d1, 0x0000f9, 00000000 + 0xb94d51d1, 0x0000f9 }, { 0xe04c12c3, 0x7f501b95, 0xa7840aae, 0xa8f591b4, 0xca36db0, 0x64ccb92e, 0x149c58bb, 0x815d76c6, 0xbbcb03f1, 0x6ade1ab7, 0x3afa4d8b, 0x7241eda4, 0xc3e0778d, 0x70cf25fe, 0xe6991af5, - 0x8d2afc67, 0x0000fa, 00000000 + 0x8d2afc67, 0x0000fa }, { 0xc3b54547, 0x9ee39ed4, 0x3007980d, 0x820c7b9c, 0x291e66a, 0xca40ddad, 0xd476c717, 0xf22f91b3, 0xd164213c, 0x433c6d3a, 0xfaf4a00b, 0x8633d9d7, 0x9f71ac04, 0x12b485ae, 0x21e846ca, - 0xd5e05046, 0x000009, 00000000 + 0xd5e05046, 0x000009 } }, { @@ -40586,19 +40585,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf8d88190, 0xabbbd53c, 0xc44c41d0, 0x555d5ecf, 0x35594ac8, 0xd0807277, 0x855b6c03, 0x3bb2046a, 0x4cd8ea82, 0xf2dbe43b, 0x588382c2, 0x716e4e35, 0xeb22c51a, 0xb1172f56, 0xb1ee21d4, - 0xc47be4a8, 0x00016c, 00000000 + 0xc47be4a8, 0x00016c }, { 0x60ab4199, 0x9a44a612, 0xea809259, 0x87e4ba25, 0x9e7e10b6, 0x3990483, 0xc89bbd51, 0x5b2d85dc, 0x115bd335, 0xe9a6dade, 0xb058f23f, 0x83721335, 0x34f85453, 0x3943918, 0xd42bac23, - 0xc34be0c1, 0x000141, 00000000 + 0xc34be0c1, 0x000141 }, { 0xfb188494, 0xc367b19e, 0x3998986d, 0x4ae8d55d, 0xee607130, 0xf106929a, 0x9b30c6e1, 0x292b6336, 0xd3934c5b, 0xf7fdd48b, 0x18aaa315, 0x88601b6, 0xca3d834d, 0x2d42e611, 0xb65e319, - 0xaaf1b452, 0x0001bc, 00000000 + 0xaaf1b452, 0x0001bc } }, { @@ -40606,19 +40605,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8f25ba06, 0xf0c59b4c, 0x2f55972e, 0x54c53923, 0x71f86539, 0xc6745e4b, 0x5bf6346d, 0xb668c453, 0xd3d8318a, 0x333243e0, 0xbc8255a, 0xfec92076, 0xf90bf14d, 0x88abbf85, 0xeb38c604, - 0x95527ea9, 0x00018c, 00000000 + 0x95527ea9, 0x00018c }, { 0xa0bd047d, 0xc5c44ac9, 0xe7088a85, 0xdb7e0220, 0x7bdbeac7, 0x8672eed4, 0x5d4d364d, 0x954ae91, 0x8fb36cf2, 0x3e2a72e9, 0xea1fbcdb, 0xbfeca906, 0x4a7c11db, 0xfab0516a, 0x5f3a6d81, - 0x36102de0, 0x000110, 00000000 + 0x36102de0, 0x000110 }, { 0x64a9a2c0, 0xcc833da5, 0x861a5197, 0x3a16ea3, 0x1bd3cec4, 0x35b7fd, 0xe7c99072, 0x3c20c9d6, 0x94df9fa2, 0x2460db68, 0xdf382111, 0x9c288c5b, 0xc1b27ff3, 0xcd97f75c, 0xa81786ef, - 0xa9a7bcad, 0x0000b9, 00000000 + 0xa9a7bcad, 0x0000b9 } }, { @@ -40626,19 +40625,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21068528, 0xd61925ec, 0xcef8b2cc, 0xbd849000, 0xb1ca3d68, 0xf127c0af, 0x84a94b84, 0xc39ad70e, 0xd1b6edba, 0xf5b7fa9e, 0xbaeb08ed, 0x9e05bef5, 0xa712d821, 0x286a1d53, 0x32bd8a74, - 0x8e4565bd, 0x000015, 00000000 + 0x8e4565bd, 0x000015 }, { 0x26b46866, 0x9796341d, 0x6eb27d2f, 0xadfe7407, 0x4d24250, 0x52c74129, 0x550b0230, 0x9a872e14, 0xa7831793, 0xab8837a, 0x5edecfec, 0x34133b83, 0x4f17016, 0x565d241a, 0x17c96569, - 0xfd830cc4, 0x0000c6, 00000000 + 0xfd830cc4, 0x0000c6 }, { 0x50818c93, 0xbe3baa67, 0xc9a146b2, 0x46695a95, 0x61b5557a, 0xfdd36f01, 0x5ba2af76, 0x3f6d634c, 0xbf95f4e9, 0xba9f1841, 0x4001adeb, 0x7471e31d, 0x9312bc14, 0x59aeb91b, 0x9534d369, - 0xe78dcece, 0x0000eb, 00000000 + 0xe78dcece, 0x0000eb } } }, @@ -40648,19 +40647,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb89c2e28, 0x312ef5ba, 0xcf4dfd5b, 0x12436e9e, 0x1732b8d6, 0x95fd2e1e, 0x768b564c, 0x780f89fa, 0xedad2ca8, 0xa51351fc, 0x59019fc2, 0x38b0f1e2, 0xff194f25, 0xd7247a9e, 0xd382b675, - 0x87dc7d4a, 0x0000bd, 00000000 + 0x87dc7d4a, 0x0000bd }, { 0x7c501a39, 0x568ad7ae, 0x2a91299a, 0x1f0873e2, 0x4da8b4ab, 0xbd0e7ed3, 0x4bd8e44d, 0xc7114775, 0x3bbdbb0d, 0x359cce37, 0x62dc6f80, 0xf73b872, 0x4600a6f, 0x785c79f7, 0xdbb8f3ae, - 0xf9bb2a70, 0x0001cb, 00000000 + 0xf9bb2a70, 0x0001cb }, { 0x1fe11d68, 0xbfc60100, 0x86268c02, 0xa9649b55, 0x98424c86, 0xb4322ed0, 0x32b6e195, 0xa5b6fe08, 0x9e9e97d4, 0xb5661cbe, 0xfd826071, 0x455a87d2, 0x7720a9, 0x3ee51a29, 0x78c76a18, - 0xed63952e, 0x0000fe, 00000000 + 0xed63952e, 0x0000fe } }, { @@ -40668,19 +40667,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb75edfe0, 0x18c02fba, 0xb92ea0b4, 0xceac18c6, 0x36a9a3c2, 0x40ff53c1, 0x9410f04, 0xd854076e, 0xe9018960, 0xd8837c4f, 0x70b60aaa, 0x8a6af133, 0xec07eb37, 0x686b59a3, 0xdb88ad04, - 0x2c64b935, 0x000195, 00000000 + 0x2c64b935, 0x000195 }, { 0x68a24ab7, 0x507b00d6, 0xac488142, 0xf30ee7d5, 0xaa73d603, 0x29c90739, 0xca3c1876, 0xb64549ce, 0x13722c2, 0xc787a8c, 0x5b08f9d7, 0x2080a100, 0x3865ab06, 0xa0f24e99, 0x6d598e41, - 0x4d89b16a, 0x00014d, 00000000 + 0x4d89b16a, 0x00014d }, { 0x23d4e33a, 0xf6583e8e, 0xac050225, 0xe63a98db, 0x22b2b3f7, 0x367a5918, 0xfcc88808, 0x39e2a70b, 0x379f4e6b, 0xdee15a81, 0xe53fe97c, 0x3d598a56, 0xb9d943, 0xc9871d16, 0x86adf1f4, - 0xa63b3f4f, 0x0001ed, 00000000 + 0xa63b3f4f, 0x0001ed } }, { @@ -40688,19 +40687,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb08a5376, 0x5bb961c3, 0x26cf54a1, 0xf479cc9f, 0xf82376ef, 0x739f31a3, 0xf84f7be0, 0xc82837f4, 0x1e972c2d, 0xcb3123f7, 0x497b86bb, 0xbe13d7a3, 0xc1031baf, 0xa54813b2, 0x54525dcb, - 0x532be295, 0x00015f, 00000000 + 0x532be295, 0x00015f }, { 0x3f1e2683, 0x5766ee4d, 0x8346739c, 0x5b79dce7, 0x75b6b270, 0xb38a614, 0x77a15d49, 0x103e882b, 0xe54c974f, 0x9b419fe5, 0x7c7450c6, 0x28209fb8, 0x3ac7560f, 0x7e71a3c6, 0xc0620918, - 0xbfbc1403, 0x000040, 00000000 + 0xbfbc1403, 0x000040 }, { 0xe1f61499, 0xff669ee7, 0x9fbc5789, 0x14e3f01b, 0x9c896b10, 0xd459121f, 0x3bae77f3, 0x3985580a, 0xefe8f604, 0x99fd1646, 0xa84e6b92, 0xb413f282, 0x250cca0, 0xa8bd75df, 0x18478682, - 0x55c626d1, 0x0001af, 00000000 + 0x55c626d1, 0x0001af } }, { @@ -40708,19 +40707,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7d059eed, 0xa6be4505, 0x159025ac, 0xe5e078b4, 0x2ab8d8b6, 0x2ce1aed3, 0x52d635ac, 0x21cb6093, 0xc1f6eb33, 0x4851170d, 0x916f0623, 0xcaee8ba4, 0x61ea24a7, 0x39d2163b, 0x842937d3, - 0x148a4b90, 0x0001ef, 00000000 + 0x148a4b90, 0x0001ef }, { 0x9a1a1191, 0x3cc0bfc5, 0x326f8131, 0x2497d127, 0xb6f22f07, 0x1a5b05fd, 0x8f6c4e4e, 0xb6390f7f, 0x483295d0, 0x1b002f0f, 0x382418ba, 0x2e3e01e5, 0x770fe24f, 0x7f886192, 0x70d0d929, - 0xe486e2aa, 0x000046, 00000000 + 0xe486e2aa, 0x000046 }, { 0x48d80241, 0x7705764d, 0xe0b078ab, 0x5854c091, 0xfb59e284, 0xfeff9667, 0x9dcae7b7, 0x322fc542, 0x2918ab09, 0x7fe14937, 0xe61537ad, 0x9d707c, 0xece32021, 0x60e24ef3, 0x50b2f5fd, - 0x62836930, 0x0000f9, 00000000 + 0x62836930, 0x0000f9 } }, { @@ -40728,19 +40727,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5e3437f2, 0xf8b1702c, 0xd5821b3, 0xc45705a6, 0x60082616, 0xd623d197, 0x75e612dd, 0xcd76d9c1, 0x12014cf, 0xe863e381, 0x57d3e1f7, 0x66552bee, 0xcc9962ce, 0x25af5a4, 0xf76b7cb0, - 0x7c4c5524, 0x0001e2, 00000000 + 0x7c4c5524, 0x0001e2 }, { 0xba07b319, 0x7969ad29, 0xb07391b9, 0x2436bc93, 0x7803ae40, 0x988ee925, 0xcf2713bd, 0xea95be32, 0xfb0e9887, 0x3963179d, 0xf0bf1834, 0x59157caf, 0x5d54aac1, 0xafcd3094, 0x443160f5, - 0xeba94ee7, 0x000181, 00000000 + 0xeba94ee7, 0x000181 }, { 0xb040d855, 0xe844bf5, 0x889a1217, 0xbf36708c, 0xdc0ba7ac, 0x2ed0c425, 0xb386998d, 0x76a34af0, 0x76b2e696, 0xe55806b5, 0x6d912ed7, 0x599aa732, 0xf8f11770, 0x6bdb862d, 0xdac3f8b0, - 0xad8d9b74, 0x0001d0, 00000000 + 0xad8d9b74, 0x0001d0 } }, { @@ -40748,19 +40747,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x90da33ce, 0xf27dfeda, 0xca51ab73, 0x66669175, 0xdebdd14, 0xbba1ad14, 0x2be9fb40, 0x44e88e52, 0x77d31c4c, 0xa9f07526, 0xe7321cd8, 0xf900ef67, 0xc29b62eb, 0x4b9f72c7, 0x1d3ea2db, - 0xf83db856, 0x000108, 00000000 + 0xf83db856, 0x000108 }, { 0x292f504a, 0x90e57f41, 0xcd1b5411, 0x9eff337b, 0x1df15ba4, 0x356bf349, 0x888675df, 0x1ce58f4f, 0x5f336eac, 0x6f3abe0c, 0x24bb786, 0xf3e827cf, 0x19c357af, 0x59dd0472, 0x31d7e017, - 0xe371ae24, 0x0001b0, 00000000 + 0xe371ae24, 0x0001b0 }, { 0x72c84412, 0xf6b7726d, 0x2dd7edb8, 0x7b4afc84, 0x17db0502, 0xbca16aeb, 0xf7383b4a, 0x61abc37, 0xdc105fdf, 0xec682b72, 0x8a35ebac, 0x76b78838, 0x3e6c8fe2, 0xd7a5b66, 0x5cdfc58d, - 0x9594c78c, 0x0001dc, 00000000 + 0x9594c78c, 0x0001dc } }, { @@ -40768,19 +40767,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x885bf1eb, 0x877e166c, 0xe2748733, 0xc6d40c92, 0x5a3c05d2, 0xb7b9a9cf, 0xacd9e52c, 0x5cdcd753, 0xa35b9467, 0x79318e0, 0x6a65011a, 0x497f3d7b, 0xca4abdf4, 0x78d4d71d, 0xa0c2b0e1, - 0x136c8dac, 0x000049, 00000000 + 0x136c8dac, 0x000049 }, { 0x1bf00c3f, 0x2f64a5b3, 0x48620ef7, 0x35cc8db1, 0xa59d729c, 0x35d52623, 0x35b8be7d, 0x7848147c, 0x33e5a70d, 0xa9928789, 0xa330d65a, 0x814adf19, 0x3f6b2bac, 0x95f254f4, 0xf9417503, - 0x4fec9fd3, 0x00003b, 00000000 + 0x4fec9fd3, 0x00003b }, { 0xda11808, 0x9a6419ba, 0xa44e44d3, 0xad0ce2e4, 0xe7c0af51, 0xa3e2f23b, 0x75769c3a, 0x2c0db0df, 0x98dee181, 0x900f2ef7, 0xd1f4581b, 0x508db78, 0x39f2d42b, 0x56c862b1, 0x4f24ba95, - 0x8341a9d, 0x0000a7, 00000000 + 0x8341a9d, 0x0000a7 } }, { @@ -40788,19 +40787,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc3a9a5ef, 0x734a75cc, 0xddc989ba, 0x99231b36, 0x266d189f, 0xfdde42ae, 0x37df3d22, 0x5f8b7786, 0x44361352, 0x20bbb2e2, 0xaa12fd67, 0xc92ed7a5, 0x1c44be0b, 0xca5530f1, 0xef27c5bb, - 0x2b609437, 0x0001a2, 00000000 + 0x2b609437, 0x0001a2 }, { 0x340d6034, 0x683a5c6f, 0x671b1ab0, 0x2aaacb38, 0xf8f8d076, 0xe317c2e2, 0x685b9881, 0x737355b0, 0x12347be5, 0x761f443d, 0xef00c814, 0x572ca2df, 0xc697ac4d, 0x3ff8df7c, 0x9c5bc847, - 0xbb43ebb1, 0x0000a8, 00000000 + 0xbb43ebb1, 0x0000a8 }, { 0x642ccbe7, 0xb6d8894a, 0xb0ca9a60, 0x7e1b3417, 0x191be5a4, 0x27137118, 0x37090ad3, 0x57709079, 0x9d5c2e50, 0x31024751, 0x861b25cb, 0xcafa0d00, 0x92ef4151, 0x6574ef2a, 0x60240fe1, - 0x24f797be, 0x0000cd, 00000000 + 0x24f797be, 0x0000cd } }, { @@ -40808,19 +40807,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x44336ecf, 0xc7eb1fe5, 0xf7e06271, 0x2a1be9dc, 0x5f8368de, 0x2a235e86, 0x2c9fa952, 0xe04725d6, 0xd8d80bc7, 0x7b0dc1f, 0x585bfc93, 0xc41e17b5, 0x949d3e91, 0xfc3be911, 0xe499f402, - 0xa595c207, 0x000126, 00000000 + 0xa595c207, 0x000126 }, { 0x5df9c41c, 0xb480819b, 0xe8743e77, 0xcebce417, 0x640bc0cb, 0xf1a5f408, 0x86eddd85, 0xf064c8, 0x9f41c925, 0xb830c3e5, 0x37150668, 0x3c3ef4ad, 0x9ff0280e, 0xfc2b85e3, 0xa91c3e9b, - 0x2266f9b8, 0x000010, 00000000 + 0x2266f9b8, 0x000010 }, { 0x70e93c8e, 0x7ed1cb8e, 0x9e0d5532, 0x6812bbcd, 0x65c98f93, 0xe25405db, 0x471eb4c5, 0xf12ba2a9, 0xadd81876, 0x7349e74b, 0xe7426c49, 0xfbeab3f7, 0xeb052721, 0x32f214be, 0x26bf7865, - 0x541f3475, 0x000064, 00000000 + 0x541f3475, 0x000064 } }, { @@ -40828,19 +40827,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x969652f5, 0xd56c1be6, 0xa4acbb2f, 0xd3106277, 0x88917c34, 0x12c8e883, 0xbf0c482d, 0x681e67d3, 0x8715a20f, 0xe046ecb1, 0xa19461da, 0xd508b37d, 0x86d47998, 0x31daa938, 0x56ef6849, - 0xf6f432f7, 0x00014f, 00000000 + 0xf6f432f7, 0x00014f }, { 0x218af245, 0xb28b3289, 0x6d3ac4df, 0xa1e866aa, 0x1e309c1d, 0x9deb7e82, 0x2ed4be45, 0xc29c7945, 0x7047e407, 0x43c9586f, 0x8a1167e8, 0x662d4da1, 0xdb9a3d6, 0xd5fe90cc, 0x590a47cd, - 0x99a841e5, 0x000122, 00000000 + 0x99a841e5, 0x000122 }, { 0x2b5462fa, 0x5bf46af9, 0xbccc50c1, 0x9e8af7b5, 0x2cfcdcde, 0x8cee137a, 0xbe32a01d, 0x73b5a217, 0xe9821fcd, 0x40929d6e, 0x76a8ae8a, 0x7daeee8, 0x3d83ced0, 0xc03787ce, 0xf20174e6, - 0x63a7277e, 0x000059, 00000000 + 0x63a7277e, 0x000059 } }, { @@ -40848,19 +40847,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf28d097d, 0xf89e3bd1, 0x6badee6f, 0x5a7a26fb, 0x3006f5bb, 0xbd877d7d, 0x68db1ee6, 0xf64cf6e2, 0x676f6914, 0x4e4aea96, 0x7f5754b5, 0x60b99f63, 0x3017b23, 0xfc865ad8, 0x837d406b, - 0x4cb6d726, 0x000056, 00000000 + 0x4cb6d726, 0x000056 }, { 0xfcd15010, 0x823070db, 0x929aaf67, 0x40cf62aa, 0x5f8a1879, 0xedb25dc6, 0x622fff36, 0x90c480de, 0xd1c8b8be, 0x3ae98414, 0x5c4d22e8, 0x4d811f6f, 0x2c016a5d, 0xf2d08244, 0x12308769, - 0x7fdd5c47, 0x000040, 00000000 + 0x7fdd5c47, 0x000040 }, { 0xd5a2bf2d, 0x1a3962e1, 0x6129896a, 0x89531f80, 0xba4c4e63, 0xdd40701, 0x1f550974, 0x52b4ebe2, 0xd0ed9238, 0x96c0e6da, 0x4c731f8a, 0xe12f0342, 0xb4ce985f, 0x5fe1571, 0xc07156d0, - 0x28e2b8a8, 0x0001b5, 00000000 + 0x28e2b8a8, 0x0001b5 } }, { @@ -40868,19 +40867,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x14051e21, 0xf032a3e6, 0x9503689b, 0x9e677198, 0x26f91335, 0xf40489fa, 0x77caa68f, 0xac1f19a1, 0x57f4100, 0xd506b0f9, 0x724e941b, 0x1aaf9f34, 0x8af21ff5, 0xb8af72af, 0x9cf43306, - 0xd3de1129, 0x00009c, 00000000 + 0xd3de1129, 0x00009c }, { 0x297b4d0c, 0xd35d96b5, 0x27ba09d0, 0x7f41b08e, 0xda2e70a0, 0xfb197ece, 0x49751fe9, 0x3a2b162a, 0x23cd2ad6, 0x60767b4d, 0x1a56e4c4, 0x3a6b1abd, 0x7aaf4400, 0x1e202e84, 0x8a954a8c, - 0x15a1b9f3, 0x0001b4, 00000000 + 0x15a1b9f3, 0x0001b4 }, { 0xfb4cc9cd, 0x398061f, 0x448982f6, 0xace30969, 0xd601b406, 0xc6a66a3d, 0x1192a576, 0x72e67e53, 0xee46f6c8, 0x9e1da427, 0xbd74bc48, 0xec42fd80, 0x99288299, 0xadcad987, 0x772f3204, - 0x53377fd2, 0x000104, 00000000 + 0x53377fd2, 0x000104 } }, { @@ -40888,19 +40887,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36846371, 0x720b45be, 0x215ac0ba, 0xfaf0ee1c, 0xb14f5a26, 0x322a6582, 0x6a517fa7, 0x987cbf3c, 0x42740836, 0x7cbeb5dd, 0xfcc443c8, 0x1cad80fc, 0x5679ae72, 0x357e2d93, 0x50e103a0, - 0xe0510e47, 0x0000bb, 00000000 + 0xe0510e47, 0x0000bb }, { 0x2fedd5f5, 0xb4d8127a, 0x509bb1aa, 0x40ee30a3, 0xc503029d, 0xd1b2c04c, 0xddec59f3, 0x86deee29, 0x1459217a, 0xc83850ca, 0x6d88b5b7, 0xefbc533f, 0x5d0bb9a8, 0xa109e170, 0xcc0a345b, - 0x330dc886, 0x0000a8, 00000000 + 0x330dc886, 0x0000a8 }, { 0xfda62656, 0x450a9e39, 0xb1674fa, 0xbbe60d6b, 0xd831bc6f, 0xd8726a14, 0x8ea91abd, 0x1091cb56, 0xa99f9c6e, 0x2a906e06, 0x784e5e7b, 0xb4a4e55e, 0xdaf46bf1, 0x8e70c5a, 0x8ea48a6, - 0x3109dcc8, 0x000087, 00000000 + 0x3109dcc8, 0x000087 } }, { @@ -40908,19 +40907,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d65aad7, 0xee4f2e2c, 0x310c7d02, 0x8e25b5b9, 0x4a5ea048, 0x62c1ced5, 0x583c44d1, 0x23cce7ee, 0x46cbea1b, 0x706aab6d, 0x6b364b56, 0xac47e402, 0x5464c14d, 0x2cf1185a, 0x98135e9d, - 0xe2931f53, 0x0001b2, 00000000 + 0xe2931f53, 0x0001b2 }, { 0xb12b1ad, 0xd6b45a8, 0xeca38e44, 0xbaeeab9e, 0x30710f1e, 0x7b7596f5, 0xcfd3da09, 0x57717fd1, 0x71a76d55, 0x30f59c25, 0xa758a00f, 0xbd47b197, 0xe0f12d96, 0x6a97cf4c, 0xb8675d84, - 0x4efaf60f, 0x000150, 00000000 + 0x4efaf60f, 0x000150 }, { 0x4ae76ac, 0xd4cea186, 0x56727a2e, 0x557c943, 0x92ecc9d1, 0xd0fc7af4, 0x1ffb4bb8, 0x8caf1f58, 0xfc343d1b, 0x97c40791, 0xa042e00e, 0x5b47cf05, 0x5fb15c29, 0x8f54ba90, 0x57d8a22b, - 0x583b4d45, 0x000030, 00000000 + 0x583b4d45, 0x000030 } }, { @@ -40928,19 +40927,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb9dcad73, 0x211ff4a0, 0x5ad4e4a, 0x7eb2a3d6, 0xc084e960, 0x173eef56, 0xd494a08e, 0x8af566e3, 0xb8535981, 0xb0851e8, 0xecd5da23, 0x6fedf002, 0xbb88516a, 0xe7309fcf, 0x52975413, - 0xb1fc112, 0x00004b, 00000000 + 0xb1fc112, 0x00004b }, { 0xd417a18c, 0xbc954af9, 0xf7cc3a52, 0xb98bfb3a, 0x9df4b96b, 0xc4f43183, 0x57abfe60, 0x49777288, 0xe36d2e7f, 0xcf8ffd39, 0x4e3ad72a, 0x8fc8735, 0xc3b4e623, 0x980299cd, 0x691c4a8, - 0xc9a08742, 0x000110, 00000000 + 0xc9a08742, 0x000110 }, { 0x7a2f9a2e, 0xa695b04d, 0xcb766719, 0x63b94970, 0xf6b0fd19, 0xf9750cb5, 0xdb929f2e, 0x88fea90f, 0x75614479, 0x1641abf6, 0xc1688e32, 0xa6270de5, 0x730748b1, 0xeb7c0f4b, 0xcc39c266, - 0xea728104, 0x00012e, 00000000 + 0xea728104, 0x00012e } } }, @@ -40950,19 +40949,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x525d9714, 0xd4ab404a, 0xf90af935, 0xbacca96d, 0x77f2dfb2, 0x4e4640d0, 0xfdb676e3, 0x226fb868, 0xb504dc31, 0x60909b2d, 0x3854ed5b, 0xe6bfc7cf, 0xfd189d50, 0xa1bab0cf, 0x5682b9c6, - 0xfc2be05c, 0x00003b, 00000000 + 0xfc2be05c, 0x00003b }, { 0x6de0f921, 0x75ade1b4, 0xd9e3d2c9, 0x61ae9599, 0xcb7734f, 0xfd51c326, 0x72c27a2b, 0x9f676c69, 0x45c14e50, 0x1931d152, 0x9486ba91, 0x410ce3c5, 0xeda44b87, 0xe15520ea, 0x7dea2f8b, - 0x735f022, 0x000125, 00000000 + 0x735f022, 0x000125 }, { 0xf54658e4, 0xca8d04db, 0x9378623e, 0xb6a797ed, 0x2bce1734, 0xce13a72e, 0x3c90a0ab, 0x3244abab, 0x65945f5f, 0xb12b8c52, 0xc12ed154, 0x599b59ac, 0x5afd1425, 0x27da9986, 0x31c313f9, - 0x3f127296, 0x000086, 00000000 + 0x3f127296, 0x000086 } }, { @@ -40970,19 +40969,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x97198ad2, 0xff803a7e, 0x8ef2a870, 0xea62bc7a, 0x218cd8f7, 0x9b08ecc0, 0x51b26678, 0x1b272ab8, 0x15c8d4f8, 0xf5ee6cb9, 0x837e37e8, 0x698eb0b9, 0xd21cbdd2, 0x168174e0, 0x41f0d4ed, - 0x9e896c13, 0x000002, 00000000 + 0x9e896c13, 0x000002 }, { 0xb40613ea, 0xd9f483c8, 0xd7eb059e, 0x8a6a47dc, 0x51fb649b, 0x5195db5c, 0x2703b71, 0x45d31ddd, 0x4af7e859, 0x89aa80ba, 0xfdb4618b, 0xed5e73ba, 0xf81f36ab, 0xe74b9f01, 0xcd916149, - 0x46f01934, 0x0001bf, 00000000 + 0x46f01934, 0x0001bf }, { 0xe5c8e617, 0x99f4705f, 0x205c4b5c, 0x4dd2ec2e, 0x9f1cf0c0, 0x13c43f91, 0x142131fe, 0x33bb3860, 0x7239958f, 0x81c81a01, 0x68090dab, 0x20e20a46, 0x816f473c, 0xc5851b18, 0xf1e8cf74, - 0xaecb15fb, 0x0000de, 00000000 + 0xaecb15fb, 0x0000de } }, { @@ -40990,19 +40989,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd7ab305, 0xc8695602, 0xcf36981a, 0x34428f48, 0xcbd22915, 0x2317400a, 0x48aa16f0, 0x8972d781, 0xb99edf67, 0xef84d2d9, 0x2b6d609c, 0x7de9e07b, 0xe4678196, 0xcf983e6c, 0xabe8d846, - 0xac5f5951, 0x00009a, 00000000 + 0xac5f5951, 0x00009a }, { 0x4f4d4d7f, 0xb8a5ae7d, 0x2aae7278, 0xdfaab5f0, 0xf72335ab, 0xc9aea997, 0xd7cf0208, 0xfab68e12, 0xb32dba49, 0xe63c8aea, 0xdd5f2b66, 0x3312314c, 0xb3a2e8bc, 0x12c336ce, 0x80a4a639, - 0x4962329, 0x00019c, 00000000 + 0x4962329, 0x00019c }, { 0xd25b4d0b, 0x65fdbfc4, 0x7d875524, 0x170f775e, 0x59f0dbb1, 0x5691d0b9, 0x6c1c3c93, 0x8330cdfa, 0xecf6a3d1, 0xb50d7ae7, 0xc76e8386, 0x79dfb9c6, 0xd876b4e4, 0xbe99bc92, 0x8e29a399, - 0xaff80f2d, 0x00019d, 00000000 + 0xaff80f2d, 0x00019d } }, { @@ -41010,19 +41009,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd159d8f, 0x3b2331b6, 0x28448cca, 0x6b1ff2b3, 0xcbfdf0a5, 0x3bd7b6da, 0xd6743896, 0x572dbe3b, 0x836741b3, 0x3cd0d593, 0xf0cd8d0, 0xabb1c68e, 0x1a3155b6, 0x24c6164b, 0x421f872e, - 0xdcdc2e62, 0x000066, 00000000 + 0xdcdc2e62, 0x000066 }, { 0xd8e32fe6, 0x1ee1b8c7, 0x8d84a724, 0xf94bf2cc, 0x9e04ea60, 0xf2a15640, 0x573ec41c, 0xa5065de8, 0x3c5735f8, 0xaa325f32, 0xa797c205, 0xc931ed59, 0xe7683f9c, 0x197270a, 0xe2a00dae, - 0xfb429046, 0x00010f, 00000000 + 0xfb429046, 0x00010f }, { 0xf5beeccf, 0xedee5724, 0x8a430f93, 0x8a1e706, 0xc209f632, 0x73c62029, 0x5f545fc4, 0x301ef596, 0xc49b60a9, 0xcfe50e07, 0xca998aee, 0x4ddfe08, 0xb2ae37a, 0xcfbede73, 0xdfa4f9c7, - 0x8ad9d942, 0x000137, 00000000 + 0x8ad9d942, 0x000137 } }, { @@ -41030,19 +41029,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x18f0e195, 0xcf2c15f, 0x58b8239c, 0xb2b74688, 0x2d666642, 0x574d2358, 0xe6e7cd1, 0xcbec7a67, 0xa19ac6ba, 0x239b2a8c, 0xbd290fad, 0xc3702a27, 0x7ec6251e, 0x84ca6c8a, 0x6308fa1b, - 0xd4234056, 0x00014c, 00000000 + 0xd4234056, 0x00014c }, { 0x2c62c7ab, 0x1b6f55d9, 0xab3d917c, 0x4810fa49, 0x74a4284c, 0x171de54f, 0xcafcc5fc, 0x85c951e0, 0xda9e48b7, 0xed0fd940, 0x4bdae120, 0x377660a3, 0x2f5fb186, 0xb81bfd99, 0x9f60a329, - 0xc3958dfa, 0x000020, 00000000 + 0xc3958dfa, 0x000020 }, { 0x88255c21, 0xe054f6c7, 0xa6a98532, 0xe8f2d2d5, 0x49adbcbe, 0x578d482d, 0x7c7a58ff, 0x6df3be85, 0x3148ccd4, 0x1749b89, 0xb61143c5, 0x8456786d, 0xdc6ca996, 0x356aa721, 0x6298c4de, - 0x11229d30, 0x0000c4, 00000000 + 0x11229d30, 0x0000c4 } }, { @@ -41050,19 +41049,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9816d966, 0x3e70b90d, 0x3fdd7137, 0x855a6550, 0x66261b1c, 0x2bd63953, 0x66bd1408, 0x839cf097, 0xf320ca96, 0x9ca2b6f1, 0xb8c0abe5, 0xb11ab8b8, 0x2397208, 0x41686f0b, 0x499c6a9a, - 0xe55bd3c, 0x0000f7, 00000000 + 0xe55bd3c, 0x0000f7 }, { 0x2e5bed32, 0x45e2e475, 0x290e91b4, 0x937bcf5, 0x629a78d9, 0x51f8ccd, 0x8b4219de, 0x5727be9, 0x5d5158a0, 0x55c1e9ca, 0x5029ec10, 0x6bc7fd11, 0xd4a430cf, 0xe49abb29, 0x9a993897, - 0xdfe23241, 0x00001f, 00000000 + 0xdfe23241, 0x00001f }, { 0xfd4bb771, 0xaab1be56, 0x34abf5c9, 0x5dba92ec, 0x7dbdd811, 0x828bb5ca, 0xd1428c83, 0xed8984c5, 0x320d50d3, 0xc79a45d4, 0x6a493454, 0x25185d80, 0x2b66940a, 0x193c57b6, 0x6f0703ed, - 0x27609cfc, 0x000028, 00000000 + 0x27609cfc, 0x000028 } }, { @@ -41070,19 +41069,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x74629211, 0x3b74e559, 0xd2a86095, 0xe6f23931, 0x34870277, 0x1399185c, 0xc7150a35, 0x596f6211, 0xeeea6825, 0xa51f8f2b, 0xfe2b8860, 0x92822465, 0x18e152bf, 0x8c45da19, 0x46d673e3, - 0x6f1792ba, 0x00010e, 00000000 + 0x6f1792ba, 0x00010e }, { 0x8813bac4, 0x94a6ceca, 0x638720b5, 0xa3548c7d, 0x605bdf65, 0x1a4da58a, 0xd73ea5d1, 0xbbc7a781, 0xfc023605, 0x66b9ddaa, 0x9cceec3e, 0x8a5fe44a, 0xa2cb6712, 0x1da3c4f9, 0xc088900a, - 0x75a2b8bd, 0x00004e, 00000000 + 0x75a2b8bd, 0x00004e }, { 0x8c10dda2, 0x170a6e67, 0x966b80c0, 0xf1d4f0c1, 0xf1cf1d8, 0x624355f0, 0xfba7e2cc, 0xf3ab6401, 0x28cd2780, 0x1db1c8dc, 0x59a6dea4, 0x6cba4fa3, 0x75fb4103, 0x8078858d, 0x82258db4, - 0x5f23d145, 0x000042, 00000000 + 0x5f23d145, 0x000042 } }, { @@ -41090,19 +41089,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7582b8f6, 0x804065c0, 0x79ea4683, 0x7893ccd0, 0x64c3b328, 0x92d30b03, 0xb6245bde, 0x35c6e4b2, 0x6b454aab, 0xe30ddd05, 0xa21a7122, 0x797d1b32, 0xc930a9f6, 0xe64f763d, 0x8183336b, - 0xea00038a, 0x00005f, 00000000 + 0xea00038a, 0x00005f }, { 0xf23649b2, 0x744eb09e, 0xa2869135, 0xd78ccdce, 0x48e9e5b7, 0xfcaf4270, 0xf7ee838c, 0x48ed2d89, 0x78f03d1d, 0x8bc61e4a, 0x421a967e, 0x6563b400, 0x8999a4f5, 0x6bb38215, 0x4435304, - 0x30bf8a47, 0x00016f, 00000000 + 0x30bf8a47, 0x00016f }, { 0x75da4904, 0xd8f37e91, 0xf9baf864, 0xe71651be, 0x2b118141, 0x1904965a, 0x6610f445, 0xe13a5b4b, 0x478d1a7c, 0x2d33b2cd, 0x138c9eac, 0xd2e306dc, 0xb3d39c07, 0x6c104084, 0xe7716060, - 0xfe3f9b41, 0x00015a, 00000000 + 0xfe3f9b41, 0x00015a } }, { @@ -41110,19 +41109,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc113af92, 0x2f73089f, 0x5a2d410d, 0x51085ae9, 0xcc0955ea, 0x61d8112a, 0xa2be7ba0, 0xcd0cfa92, 0x2925aba1, 0x1e4304c, 0xb7887eb6, 0xb8ecd703, 0x8b67d8a5, 0x3d96295, 0x93a0d0e3, - 0x4f9928c6, 0x0000fd, 00000000 + 0x4f9928c6, 0x0000fd }, { 0x9ffac144, 0xd2612131, 0xeb519270, 0x2b7f95f, 0xe3e7be8b, 0xe201a8db, 0xaea0ca5d, 0x8b86e481, 0x8805e54b, 0xbf69001a, 0xbd068acc, 0x6544e43a, 0x7087c5b3, 0x634fd8c0, 0x879b76cf, - 0xeac10301, 0x00019c, 00000000 + 0xeac10301, 0x00019c }, { 0x779c751d, 0xc2c6c7b4, 0xaecad660, 0xcd975e39, 0x8849ab8, 0xbe2461a7, 0x271d2fd9, 0x333b5291, 0x5971be22, 0x65ed7721, 0x68ad99db, 0xe4ddf265, 0xdbd8ec53, 0xedd39e72, 0x384101d3, - 0x42470aa3, 0x00015e, 00000000 + 0x42470aa3, 0x00015e } }, { @@ -41130,19 +41129,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2f2a8b8a, 0x30fb6fca, 0xc3b3643f, 0x33cd040a, 0x58d22d94, 0x34661db7, 0x35c965f6, 0x5451dd3b, 0xc17c7e99, 0xf59bc99f, 0xc8e353c5, 0xafa80646, 0x92b001c2, 0xb17bf93d, 0xe8f2e3fa, - 0xfe676bfe, 0x0000aa, 00000000 + 0xfe676bfe, 0x0000aa }, { 0x86caf50b, 0x29138ab, 0xb65c3d29, 0x1cd38fbc, 0xf3e4429e, 0x8186d074, 0x823967a, 0x59fe2040, 0x865f8644, 0x8ab0e970, 0x21aeec4e, 0x47e5e979, 0xc1246f0f, 0x9ad9d121, 0xc601f5ab, - 0x2fffa7aa, 0x00010b, 00000000 + 0x2fffa7aa, 0x00010b }, { 0x9c7251f6, 0xbb28ff2d, 0x72be1cb8, 0x5d48b8ce, 0x17628133, 0x5a566441, 0x1a17c84e, 0x33c38bcf, 0x844ce6bf, 0xf9f0b17a, 0x1e9804d6, 0x2de30409, 0x226061f7, 0x2ff82e3b, 0xfcbed463, - 0xce68251d, 0x000041, 00000000 + 0xce68251d, 0x000041 } }, { @@ -41150,19 +41149,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5c4c0918, 0x37bb37d9, 0xc7ad03c9, 0xaaa78dc8, 0x4a70817d, 0x6f494315, 0xcdeac8e4, 0xc2b9a6fb, 0xd502302c, 0xf09e02bc, 0x13dd813a, 0x8a200cc3, 0x2ee73f3f, 0xe7b4d9a6, 0x298de9a1, - 0xb3689a99, 0x0000d9, 00000000 + 0xb3689a99, 0x0000d9 }, { 0xddcd7a22, 0xda44ac35, 0x117cc4cc, 0x6eaedca2, 0xead3756e, 0x85715a40, 0x5555693e, 0xa3077fdf, 0x40eebefb, 0xe1b1f61d, 0x8e7235fa, 0x5e358432, 0x7776afe9, 0xf2a8d20d, 0xaf24d02c, - 0x8c704f5a, 0x000143, 00000000 + 0x8c704f5a, 0x000143 }, { 0x83e1d3db, 0x169ce8ea, 0xfd75dc14, 0xf5a284e8, 0xca12b4e5, 0x5330bd61, 0x19b0f9e2, 0xd5028dbc, 0xd411bee1, 0xa2d5729f, 0x8c646955, 0xa07bba2d, 0x86487c55, 0x5fb8f53a, 0x8bb7a0c4, - 0x63eadc06, 0x000024, 00000000 + 0x63eadc06, 0x000024 } }, { @@ -41170,19 +41169,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x177ea457, 0x476aeb84, 0xec7c3c8b, 0x8f45a791, 0xb36b453a, 0x801784c8, 0x2d842f39, 0x31b439da, 0xa34953c4, 0x94113b3d, 0x7d27280c, 0xa03a46da, 0x8e4558a7, 0x82ae1924, 0x5b0299d4, - 0x7985cb6, 0x000121, 00000000 + 0x7985cb6, 0x000121 }, { 0xe77e3428, 0x33f72f10, 0x54034cfd, 0x5990ba7, 0x9853275, 0xfd280b47, 0xaedae770, 0x872242de, 0xf0678e36, 0xdd179615, 0x67d3c9d9, 0x9d577179, 0x38f7646e, 0x169269bb, 0xb7b58710, - 0xbb8ee1b4, 0x000170, 00000000 + 0xbb8ee1b4, 0x000170 }, { 0x57011cad, 0xeadb293b, 0xf916a3f9, 0x1422a988, 0xb7b28128, 0xc8fbd3dc, 0x51d03ad6, 0xbe3bfa81, 0x26b0b677, 0x7091bfc2, 0x8ffa8a1c, 0xe5ab0ba2, 0xcbb1952a, 0xa9e9a1da, 0x3618bfe3, - 0x331975fa, 0x0001b3, 00000000 + 0x331975fa, 0x0001b3 } }, { @@ -41190,19 +41189,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xff8d9002, 0xe1189aab, 0x3058de46, 0x37467542, 0xcb0d24c4, 0xccd5bade, 0x642b5e34, 0x8a181619, 0x9854b291, 0x236ff892, 0x559f72cf, 0x37f51e05, 0xcdef88df, 0xf90a8f1d, 0x6caa1ba, - 0xa8c58465, 0x0000c9, 00000000 + 0xa8c58465, 0x0000c9 }, { 0x63c98285, 0x21868c1a, 0x34647896, 0x4ebced90, 0xdbe3c30e, 0x7b2063b3, 0xae21c387, 0x54a4522d, 0x27142ad2, 0x6c2bc24e, 0x8013cb66, 0x6bd8d609, 0xf42d4609, 0x45dd2711, 0xe9a8df55, - 0x48e8f51a, 0x0001f3, 00000000 + 0x48e8f51a, 0x0001f3 }, { 0x5bad52e6, 0xef924370, 0x9d350ae4, 0x29d93cec, 0xdb7acc8d, 0x46c99c5a, 0xb66440be, 0x9d7b1cc0, 0xc1fdff9b, 0x406cf8ec, 0x7dc76e11, 0x7a13a8e1, 0x319687df, 0xc99f03fa, 0xfca5cefc, - 0x2c98eac5, 0x0000b1, 00000000 + 0x2c98eac5, 0x0000b1 } }, { @@ -41210,19 +41209,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdd6ab401, 0x87c010c0, 0x7d33c3ea, 0x50c749b3, 0x721cc4e, 0x24ebce1e, 0xa008fa12, 0x6a9d9e1d, 0x6e255bc6, 0x541450fd, 0xed7d9b5b, 0x73ad065a, 0xa2bced62, 0x32de2c7d, 0x1915abb2, - 0xd94acfa, 0x000044, 00000000 + 0xd94acfa, 0x000044 }, { 0x82335e26, 0x7ea4d5a9, 0xb55c5dc6, 0x9bb956d1, 0x7a83da1b, 0x9d922a72, 0x41d9075a, 0x4ed91fc2, 0xd4f0a413, 0x5316420c, 0x6b4b1f74, 0x28e2dd92, 0xebea9306, 0x16441269, 0x9c33acc2, - 0xc4fe231b, 0x000158, 00000000 + 0xc4fe231b, 0x000158 }, { 0x66155960, 0x191379da, 0x2cd07f88, 0xbeb9b2b5, 0x5394c6f1, 0x89f87dc2, 0x9a4d5385, 0xeee12ef1, 0x184a2ded, 0xabb781df, 0xad4491cf, 0x577d4ce8, 0x6b4c8388, 0x6575425, 0xd9bc462, - 0xa21187dc, 0x00019b, 00000000 + 0xa21187dc, 0x00019b } }, { @@ -41230,19 +41229,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x16f68166, 0x6d7a206b, 0x91c7f8cb, 0x8dd990aa, 0xc8d28a99, 0x495df904, 0x7481136b, 0xdd68c7c, 0x17ab9e21, 0xd3c27d97, 0xa3724aae, 0x94509078, 0x4ad9ee84, 0x51954e02, 0x8c91704e, - 0xef626afc, 0x000018, 00000000 + 0xef626afc, 0x000018 }, { 0x30f5365e, 0x2520384f, 0x968340cf, 0x9d7092b8, 0x264a5ce, 0x97c1b7e6, 0xd661f589, 0x6773858f, 0xf7d06038, 0xfadb4cd5, 0x2c27fddf, 0x49af3045, 0x22537f73, 0x32e57729, 0x77f5da4b, - 0x48decb1, 0x00011b, 00000000 + 0x48decb1, 0x00011b }, { 0xd27e13b2, 0x5d1375fa, 0xde9287a5, 0xe222aab6, 0xc415ddd2, 0x78aecc5c, 0xfc720ea9, 0x11301b57, 0xe84a86b7, 0x79a9d5be, 0xb56aad86, 0xe2ed99fa, 0x2e6a619, 0x8fde3085, 0x603620a3, - 0x1ad3af13, 0x0001f9, 00000000 + 0x1ad3af13, 0x0001f9 } } }, @@ -41252,19 +41251,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbca9f9c7, 0x85511e51, 0xb3bec5fb, 0x84b754fe, 0xccaddd27, 0x6b87ad1d, 0x3a524f4, 0x94720707, 0xf47c161e, 0xc5eec0d3, 0xbdad302e, 0xf960bc79, 0xc8d93efe, 0x2f335231, 0xca6ef92d, - 0x4db26861, 0x0000f9, 00000000 + 0x4db26861, 0x0000f9 }, { 0x26561fdf, 0x64834a43, 0x76a849c2, 0xada99150, 0xe3cc32, 0x62f54a06, 0x3c6f52e8, 0xba61c0ba, 0x8713da77, 0xdcd11647, 0xe86d3211, 0x77186b63, 0xa56afb09, 0xa9e47cb9, 0x18ec976b, - 0x720037ef, 0x000011, 00000000 + 0x720037ef, 0x000011 }, { 0x61ea3815, 0x604de3e7, 0x333d59d3, 0x108c9bfd, 0x4ae8134f, 0x79a8722a, 0xe4e75230, 0x47ca845b, 0x4c9cdf9e, 0xea1bb1a0, 0xb9be81b6, 0x839c84e, 0x2efb9db4, 0x11022965, 0xb0bc2382, - 0x5e786096, 0x000064, 00000000 + 0x5e786096, 0x000064 } }, { @@ -41272,19 +41271,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xafbf5bd0, 0x94bf57dc, 0x1cb12cbc, 0x98c4c2cf, 0xad2013f9, 0x3dc63fbf, 0xf0f09798, 0xa2fe5a43, 0xacc59bbf, 0x53c8a187, 0x25b03f83, 0xcee29df4, 0x93c65d9b, 0x8181e0ad, 0xdab0ccd8, - 0xbac7ff2, 0x000064, 00000000 + 0xbac7ff2, 0x000064 }, { 0xeb746465, 0x8a14dc5c, 0x51a6d0ac, 0xfc151d96, 0x1c4f3259, 0xce063ddf, 0x2250b54c, 0xa3b04521, 0x7353250e, 0x27c1a519, 0x73d23a81, 0xefadf161, 0x7ceab27, 0x2e480e4b, 0x633acccc, - 0x1555c429, 0x0001af, 00000000 + 0x1555c429, 0x0001af }, { 0x2027c06, 0x5ff81db0, 0xa3056134, 0x8a9fd201, 0xb0c0c0b0, 0xcee710f8, 0xd679844d, 0xfb772aa4, 0x4f5d907c, 0x209cd472, 0x34c025d9, 0xd9a2a43, 0xef55b62, 0xec0bd8b6, 0x191f632a, - 0x3f2e15c6, 0x0001f6, 00000000 + 0x3f2e15c6, 0x0001f6 } }, { @@ -41292,19 +41291,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1c9c6c29, 0x4043a70e, 0x391ef49f, 0x32b205aa, 0xfeb25134, 0x27862f8f, 0xd9c5287b, 0x4c81195d, 0xc301cf3c, 0x4a59fd65, 0x60db9e2, 0x77997efe, 0x288729f5, 0x5755ef34, 0xcb21f587, - 0x834d8df9, 0x0001a2, 00000000 + 0x834d8df9, 0x0001a2 }, { 0x8b615912, 0x5ef83328, 0xf14c3d0c, 0xe447a3df, 0x7edb9520, 0x77da8354, 0x69741540, 0xabe4ba40, 0x2b2ace8a, 0xcbd957d4, 0x66a58e38, 0x99bde3a9, 0xbe0e8da7, 0x83b9f48a, 0xbcbe7e13, - 0x5beaa5ee, 0x000108, 00000000 + 0x5beaa5ee, 0x000108 }, { 0x6b8761f, 0x8d6338a1, 0x124f5c8, 0x42d3893f, 0x2afbcaa5, 0xce180626, 0x9972aade, 0x7e90e5f7, 0x2923fcec, 0x2ff904b, 0xcb564d8, 0xd5c0376f, 0x42eb15ac, 0xe0126b4b, 0x92ea47f4, - 0xd4764ff5, 0x000104, 00000000 + 0xd4764ff5, 0x000104 } }, { @@ -41312,19 +41311,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5f325a25, 0x8ad1b426, 0xb8407edd, 0x87317090, 0x11cdd3a6, 0x27516498, 0x1ba048c0, 0xa93f26b1, 0x7d48a948, 0x33dafc16, 0x62783928, 0x86af083f, 0x90f4e0bf, 0x81868b03, 0x6f189936, - 0xf6a1614b, 0x00018b, 00000000 + 0xf6a1614b, 0x00018b }, { 0x5e87ad3a, 0x861665ac, 0xd74399d3, 0x617adc7b, 0x23af2fb7, 0x2ef1b8f4, 0xc49471e0, 0xe3154ddb, 0xa5e9cee, 0x7c767ceb, 0xce545e8b, 0xa72b0ae5, 0x65c52b13, 0xd638128b, 0x5f820148, - 0x6b82c91, 0x00013a, 00000000 + 0x6b82c91, 0x00013a }, { 0x73875fef, 0x7285281a, 0x5fdb2228, 0x34b557b8, 0x1ba89456, 0x16c724a0, 0xb1d183df, 0x23783be1, 0x61dc65cb, 0xc41598bd, 0x8e72d16, 0xf1c52bf6, 0x3e642f65, 0xb42f8211, 0x14b8baa7, - 0xd8f85a24, 0x000121, 00000000 + 0xd8f85a24, 0x000121 } }, { @@ -41332,19 +41331,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40e91907, 0xefa07fc, 0xd08504ac, 0xe9db2966, 0x32bbf3aa, 0x25896763, 0x4586b7e7, 0x67320d44, 0xbc523aa3, 0xb44c6f70, 0xe8d22a0e, 0x52c32288, 0x704313b5, 0x190f1e9, 0x5a5479d3, - 0x7fecc17a, 0x000057, 00000000 + 0x7fecc17a, 0x000057 }, { 0xbd23a897, 0xc6a0adf5, 0x2d8d624c, 0x410bb3cb, 0xdf5c7e2c, 0x5ef1599, 0x644d289, 0xf44e5ed6, 0x71290fa7, 0xd897b27b, 0x9c3a1b74, 0x12823f07, 0xfbe03efa, 0x62e16590, 0xd3d2c5f9, - 0x337a283a, 0x00003b, 00000000 + 0x337a283a, 0x00003b }, { 0x4afbabc, 0x49911b78, 0x157ec82b, 0x44bad68f, 0xbd314656, 0x4e65f530, 0x9d5e4d05, 0x7c1340cb, 0xc5864f35, 0x6b6fc4f3, 0x7e8b62ee, 0xb1ae023d, 0xb77371f2, 0xc8401884, 0xe9d4bce8, - 0xf13d0ccd, 0x00018b, 00000000 + 0xf13d0ccd, 0x00018b } }, { @@ -41352,19 +41351,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfdd1278c, 0x61f4c09, 0x4353ee4e, 0xf6b63cf4, 0x527366c8, 0xb8f12c5d, 0x69a24795, 0xbd6c0baf, 0xb899eedf, 0x82a358ff, 0x48f702c8, 0x50617c66, 0x1872dee1, 0x4911a29c, 0x50f66f8a, - 0x74c892a6, 0x000155, 00000000 + 0x74c892a6, 0x000155 }, { 0x594dcd8b, 0x3c6ad8f6, 0xbac087d6, 0x52493da9, 0x7c9f88d6, 0xc23973df, 0x4a335d2a, 0x76e04660, 0xaa0e0cb7, 0xcb3ab516, 0x69de10f, 0x1d8e5be6, 0x29688113, 0xb61216b3, 0x3a89f0dc, - 0x7a8c2995, 0x00015d, 00000000 + 0x7a8c2995, 0x00015d }, { 0x51eebdc1, 0x4bb18d9e, 0xd8f9acb9, 0xcccc919f, 0x9d5670a7, 0x716a8eea, 0x983ad675, 0xbe8d46df, 0xddd618b5, 0x2b992be7, 0x200ac66e, 0xb2e8baf5, 0x17034fb9, 0xa5ffc4fc, 0x163bdd16, - 0x8d7c1099, 0x0001c3, 00000000 + 0x8d7c1099, 0x0001c3 } }, { @@ -41372,19 +41371,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1855ff3d, 0x83a35cd2, 0xce7d406e, 0xcc1acbf3, 0xf067aff2, 0xe6a43d94, 0x5dbfeaf1, 0x3a54260a, 0xa75ec79e, 0x8bb80e14, 0x364c8df, 0x926c77af, 0xcbdb5c5f, 0xb2be115f, 0x471dc92, - 0x8fb71459, 0x00007a, 00000000 + 0x8fb71459, 0x00007a }, { 0xbdae6acd, 0x23ff5e70, 0x25663be0, 0x9af1d58a, 0x65f31490, 0xbbc20b12, 0xc9df49c0, 0x658e22aa, 0xafdab72f, 0x83586fd1, 0x9d76eca8, 0x259d7cb3, 0xaffd176e, 0x8219d47, 0xda2c81df, - 0x8baa23b2, 0x000167, 00000000 + 0x8baa23b2, 0x000167 }, { 0x6cf42348, 0x90f4b5d7, 0xe646af98, 0x37c9e517, 0xb1befb9f, 0xe582629d, 0xe28a6d3e, 0x33092bc9, 0x7f80c451, 0xb6a31abd, 0x7ae060f5, 0x8d9d3d42, 0x4c708eab, 0xf82ee012, 0x7da9e168, - 0x70a5b513, 0x0000b9, 00000000 + 0x70a5b513, 0x0000b9 } }, { @@ -41392,19 +41391,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6b4ee6ba, 0x6c0676bf, 0xecf4ea02, 0xfc369559, 0x385e27ef, 0xdeab33cb, 0x5724e1a7, 0x1c994363, 0x3fa95e70, 0x15069e4b, 0xb30c003c, 0xde2af594, 0x71eecea4, 0x110a8b8d, 0x9359fc0d, - 0xd1b2878c, 0x00009b, 00000000 + 0xd1b2878c, 0x00009b }, { 0x79ae50c0, 0x346f2f0b, 0xc7c2c133, 0x7eb8a3c5, 0x9549e419, 0xb5c1c7d3, 0x597b6da3, 0x1ec1e7ff, 0x1e3f15e6, 0x84f72cc5, 0xffad00f0, 0x3f196fb4, 0x9eb5ad96, 0xa487a25b, 0xaf08b3a3, - 0xcf78fcb4, 0x000047, 00000000 + 0xcf78fcb4, 0x000047 }, { 0x4468880, 0xb2eb4ec8, 0x1f0253d3, 0x2f628177, 0x9ca46b8a, 0x9d9d5142, 0x79f3dd73, 0x57d65bac, 0x958ed394, 0x4b5c05b3, 0xa29a1633, 0x3c6ecc5, 0x4bcabacc, 0xd137ce2b, 0x323507de, - 0xe68bcc6c, 0x00017c, 00000000 + 0xe68bcc6c, 0x00017c } }, { @@ -41412,19 +41411,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc8c62970, 0x3eb7778c, 0x1a7598a5, 0x266429a0, 0xa8887e3c, 0xbdc27d47, 0x73f817fe, 0xcdfc8f89, 0x5e771671, 0xfe5fcc77, 0x71f1d4cc, 0xfe8dbd3b, 0x16560c1f, 0x7e69911d, 0x80841345, - 0x4427e5f1, 0x000176, 00000000 + 0x4427e5f1, 0x000176 }, { 0x78c36719, 0x27b5e703, 0x60941d23, 0xcbc0f4f2, 0x450fc91e, 0x94d4eb74, 0xa0338905, 0xfae8f52c, 0x869a6457, 0xe4811eab, 0x344e2856, 0x2fb16798, 0x5a5cd58, 0x6b7de472, 0xb9ccc32f, - 0x73c1ced1, 0x000158, 00000000 + 0x73c1ced1, 0x000158 }, { 0xf69a14e8, 0xbeee4b73, 0xa866004d, 0x5deb9cd9, 0xd87a0274, 0x7b4cb3a9, 0xe9570c3c, 0xcc00758f, 0xbe0c9d08, 0x5547d789, 0xc4b6047c, 0xc7192f7, 0x91bc6df6, 0x5df86b3d, 0x2baa4ea2, - 0x2c3b47e0, 0x00016a, 00000000 + 0x2c3b47e0, 0x00016a } }, { @@ -41432,19 +41431,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x588b4ed4, 0x24fb15a5, 0xecde2504, 0xc6b6a44c, 0x93d8cc00, 0xda3de949, 0xd49240c6, 0x1b910485, 0xb37840bd, 0xf12b0459, 0xd97d50e0, 0x2fe92466, 0xd9f47d93, 0x69de331a, 0xf1faf6bb, - 0x1482fec5, 0x00014c, 00000000 + 0x1482fec5, 0x00014c }, { 0xc49e652f, 0x3c83ef29, 0xd7184550, 0x61cb6d7f, 0x2fe8662d, 0xa5390ae1, 0x53b52296, 0x279a6b2d, 0x7afd77a3, 0x12900246, 0xfebc91bb, 0x26d1996b, 0x54ff1cf1, 0x932faa43, 0xa61c4507, - 0xaead388a, 0x0000a5, 00000000 + 0xaead388a, 0x0000a5 }, { 0x275f3076, 0x898eadca, 0x31ec12bf, 0x93bd1d1a, 0xfd7436b8, 0x30733b7c, 0x99604a7e, 0x7756f962, 0x16197b7, 0x4a3be6e0, 0x615b616a, 0x10b967fd, 0xadcf1f3e, 0x245c3360, 0xec31869c, - 0x9cee55fd, 0x00000d, 00000000 + 0x9cee55fd, 0x00000d } }, { @@ -41452,19 +41451,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3133bf39, 0x4feba5d9, 0x538cecc3, 0xd6d095a0, 0x6dda6f14, 0xb77ef313, 0x551f70b9, 0x1a8e85b4, 0xc1b8bf33, 0xd6d067d1, 0x716cfeee, 0x13b9f521, 0x7c6aad0, 0x45659bc3, 0xb8bddc29, - 0xa261c755, 0x000098, 00000000 + 0xa261c755, 0x000098 }, { 0x5579967c, 0xfa408ad0, 0xc5357895, 0x740275d6, 0xddfeafec, 0xf1567491, 0x522825f4, 0x7a5addf1, 0xf7dc3857, 0x67ea2b9c, 0xef62c48d, 0x78710b81, 0xe0a16bb4, 0xa2937585, 0x18f43e37, - 0xa7e2b356, 0x000010, 00000000 + 0xa7e2b356, 0x000010 }, { 0x286cb9f9, 0x57e92ce, 0xa59cb5cf, 0xb25300dc, 0x505849c6, 0xe209e3d3, 0xc8888015, 0xe1c66cfc, 0x30d54555, 0x6d630da1, 0xe1fdc18b, 0xe3021549, 0xe5b1bd88, 0x47b12e4b, 0x963f8920, - 0xde0b85d5, 0x0000ef, 00000000 + 0xde0b85d5, 0x0000ef } }, { @@ -41472,19 +41471,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87f14080, 0x17353492, 0x7168c17f, 0x388683c7, 0xb5c43c3f, 0xc48208de, 0x29c5c2cc, 0x9f5db420, 0xda4d31c1, 0xc42fc6c4, 0x691504ef, 0x99c5946e, 0x2dcf5f46, 0xdbb7a8a4, 0xa0c8427e, - 0x4f909e3c, 0x0001f3, 00000000 + 0x4f909e3c, 0x0001f3 }, { 0x8a779a4a, 0x1e64a7e3, 0xffc078b8, 0xb00d6c3d, 0xfb112388, 0xafb4222a, 0x822dc314, 0x38622fd0, 0x2b13e234, 0xa34d1322, 0x6652da8b, 0x83bb856e, 0xfe617b66, 0xd32e1be, 0x3c3993a9, - 0x9b25d821, 0x000023, 00000000 + 0x9b25d821, 0x000023 }, { 0xf621bc0a, 0x7e523525, 0x3fb0004b, 0xa4e16c2e, 0x86763d28, 0xce19b8dc, 0x7c9a860, 0xb4deb30b, 0x4847bcda, 0xdf8ceaa9, 0xad078424, 0x5f16344f, 0xc07e82d3, 0xb867d13d, 0x5d078e7, - 0x3b5270fd, 0x000029, 00000000 + 0x3b5270fd, 0x000029 } }, { @@ -41492,19 +41491,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7315422f, 0xa86a8005, 0xf1253aad, 0xbb0d6f5b, 0x1f642fa2, 0x61964227, 0xab06b832, 0xe35a497f, 0x4aaa5e45, 0xd1fe7cdf, 0xd0d25350, 0xc12ef3c7, 0xfcb74a3d, 0x8fa2d4e3, 0x572b3dbf, - 0x4e5d12df, 0x000126, 00000000 + 0x4e5d12df, 0x000126 }, { 0x7a3a09e3, 0x9db46b87, 0x2813c093, 0xdf2a821e, 0x14882b9d, 0xc255bcc3, 0xfe8a5d46, 0x4a80d492, 0xa739846, 0xbe6e016e, 0x617b3f04, 0x1da613f4, 0xd5affee9, 0x6b60c8df, 0x977d1b11, - 0x43f6cdae, 0x000150, 00000000 + 0x43f6cdae, 0x000150 }, { 0x9d20206e, 0xc06e5781, 0xfed8a169, 0xe68e9158, 0x7b46b8fb, 0x82dba5cc, 0x3f197a32, 0x54aa31bb, 0xfabf142b, 0xe31edc7f, 0xd4e1232a, 0x908a5d55, 0x33a70b05, 0x1c7160af, 0x6d8c93c9, - 0x5ab05e31, 0x000072, 00000000 + 0x5ab05e31, 0x000072 } }, { @@ -41512,19 +41511,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x22b19c3c, 0x941c3ea5, 0xeda34c0e, 0xb93fc63f, 0x8ce865ae, 0xb08cf17e, 0x84a9f2f5, 0xdbc40a1d, 0x57875c6e, 0xe1e4936, 0x6d3ef1b6, 0xc50910ac, 0xab78540a, 0x7a52f651, 0xfad50801, - 0xeca969b3, 0x000073, 00000000 + 0xeca969b3, 0x000073 }, { 0xdb5ff71c, 0x33c71e89, 0x5a3a421, 0x87c421e2, 0xc326197c, 0x6438c7ed, 0x11a58dd6, 0xd64ac614, 0xcb7c708e, 0x8853cf2a, 0xa6024efc, 0x4983f6d7, 0x8374195, 0x4d4ec434, 0xe08b849f, - 0x3b2f7c9f, 0x00014b, 00000000 + 0x3b2f7c9f, 0x00014b }, { 0xbe848790, 0x44eef5d, 0x68fcd976, 0xbce12379, 0xdaba9258, 0x497be6f4, 0xe0a3dc2, 0x3b3a365d, 0xf32dd403, 0xb4e453d0, 0x1e7c6aa1, 0xe0a91f32, 0xb890641a, 0x2c34fb13, 0xf0a852de, - 0x33b721f8, 0x000189, 00000000 + 0x33b721f8, 0x000189 } }, { @@ -41532,19 +41531,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x66494e43, 0x4202dcfd, 0x2d682719, 0x1aa757df, 0xfbba4f14, 0xc72efbee, 0x9cb703fb, 0xb5f585e0, 0x7e7a5139, 0x98e32b8d, 0x285647a6, 0x196bae48, 0x4257749d, 0x6e9d1aca, 0x398ce9c6, - 0xeb5d5721, 0x0001a2, 00000000 + 0xeb5d5721, 0x0001a2 }, { 0x2ba6edb5, 0x55f3c9d, 0xb7f58a2c, 0x61d11dfe, 0x959a8981, 0x2c8f23dc, 0x50d57fe3, 0x61d1cde3, 0xf4374856, 0x7b84f9e7, 0x7676b57a, 0xd3714478, 0xed86f1e8, 0xb1b3ea6a, 0x2fab0c1c, - 0x40187789, 0x00006a, 00000000 + 0x40187789, 0x00006a }, { 0x300f0a87, 0x787df4e5, 0xf20fecbf, 0x23ca6cb4, 0x3aeffd9a, 0x7567ea6f, 0x38f33748, 0x46ced8c8, 0x71d7806e, 0xe78f06c3, 0xa8055bf6, 0x903e0b, 0x24cd24f4, 0x216155cb, 0xa9915855, - 0x600c6b37, 0x000056, 00000000 + 0x600c6b37, 0x000056 } } }, @@ -41554,19 +41553,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3dd29b39, 0x31749267, 0xeb490c88, 0xc29ae275, 0x1af52383, 0xfc6df5ca, 0xa0e79094, 0xde5361ed, 0x6e8b25a0, 0xd1e19435, 0x62a2519b, 0x2aff5ddb, 0x482cb80b, 0xe51fd50c, 0x82b425b1, - 0x542bd738, 0x000153, 00000000 + 0x542bd738, 0x000153 }, { 0xcc53a6c3, 0x8a88a243, 0xc9fd5ae2, 0x3deed7c2, 0x4e5eea06, 0x5971818b, 0x89dc4ee9, 0xafd532df, 0x9bd3c8e5, 0x65ecdccd, 0xe9aa63f1, 0xbf13b477, 0x930b4d3c, 0x3818233a, 0x73c2e84a, - 0x88dcb100, 0x000046, 00000000 + 0x88dcb100, 0x000046 }, { 0xab5eda61, 0x5aa8087f, 0xde45dad7, 0x93f82d22, 0xdc9aba8e, 0xab595fd2, 0xdbba9f9f, 0x27c6f343, 0x5991bd77, 0x7a30fd4f, 0xdba36567, 0x462feb9a, 0x86658d93, 0x5e849016, 0xf0dd9002, - 0xc0de6e10, 0x0001ee, 00000000 + 0xc0de6e10, 0x0001ee } }, { @@ -41574,19 +41573,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3004eac8, 0x8a9d18fd, 0x17e5ef6c, 0x69c3326, 0x3c1ac8b, 0x2ad7ec2f, 0xada3eff, 0x87b06c25, 0x5de2401a, 0x4a518838, 0x5b65fdec, 0x1fc236dc, 0xd4e9bdf1, 0x56e3794c, 0x6cbcf668, - 0x4230ed70, 0x000192, 00000000 + 0x4230ed70, 0x000192 }, { 0xd277deaf, 0xea29762d, 0xd9334f3c, 0xf9a0f2ac, 0x5119ec59, 0x5aba8ad3, 0xb0d42c61, 0xab98cc70, 0x2b9f3170, 0xfce85218, 0x57c5a291, 0x2e4d293a, 0xd37e5abd, 0xd6c8cf66, 0x2373ef24, - 0x8bb9aa1e, 0x00008d, 00000000 + 0x8bb9aa1e, 0x00008d }, { 0xe276ceff, 0x390fd111, 0x660de467, 0x4a7c0179, 0x630a8721, 0xc1cdd9ee, 0x7768c698, 0x949bb2, 0x620d95db, 0x1368ab3d, 0xdb69ea48, 0x74c4a5d9, 0x4ee61221, 0x38e81bed, 0xbe5eef2c, - 0x5c30769d, 0x000107, 00000000 + 0x5c30769d, 0x000107 } }, { @@ -41594,19 +41593,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb9788e0f, 0xda2beba0, 0xc42600ee, 0x20364e4f, 0xb7ce11c1, 0xce862b4b, 0x3bfdea65, 0x1ebf4a76, 0xd1bbcd8d, 0xd5f7fe79, 0x2d3a29b3, 0x6c2d383b, 0xfc157ccc, 0x818616f7, 0x800afa41, - 0x5a443031, 0x000124, 00000000 + 0x5a443031, 0x000124 }, { 0x10d5865, 0x927b1bc4, 0xfcf5efd3, 0x577a39a8, 0xc068a914, 0x74556b24, 0x4d874839, 0xddeab04c, 0x1908038f, 0xc164a069, 0x49b42892, 0x77ba4661, 0x1c348748, 0xeb903f68, 0x71975b5c, - 0x9d04b7af, 0x000146, 00000000 + 0x9d04b7af, 0x000146 }, { 0xf3b61d3b, 0xdf1ba2bc, 0x9b1d3390, 0x5bbd2988, 0xa97a6c60, 0x91cf1ab3, 0x5000fc69, 0x39f46e99, 0x98bce71, 0x1a3563a5, 0xc872e022, 0xa6e68bf, 0x2cdca984, 0x786663ca, 0x63619124, - 0x5519e97d, 0x0001ad, 00000000 + 0x5519e97d, 0x0001ad } }, { @@ -41614,19 +41613,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa17a4551, 0x7db175df, 0xb8b8f419, 0x21c6efd7, 0xcee12db8, 0x40bdc8fc, 0x158fa51b, 0xc53383e2, 0x3524f82d, 0xf77dedee, 0x50857e3e, 0x2aa3f939, 0x3ae34a10, 0x8c3f472d, 0x44c689b0, - 0xbddd970c, 0x0001a8, 00000000 + 0xbddd970c, 0x0001a8 }, { 0x8501548b, 0x5f1ef53c, 0xcdbb79c3, 0xac537784, 0xf459a03b, 0x622e8fdc, 0xf16766a5, 0x7799b065, 0x52a30e13, 0xbc17f8f2, 0x6d38ee85, 0xd471d14a, 0xb95f8bc9, 0xb439cbc1, 0x8d41bbec, - 0x92303b84, 0x000011, 00000000 + 0x92303b84, 0x000011 }, { 0x49091112, 0x98a30ef2, 0x4b32c38c, 0x59984284, 0xc35abc47, 0x139b1db5, 0x5cd9af02, 0xc42d4161, 0x315e27ef, 0x1dad54c4, 0x56a9bc3d, 0xfbdd2711, 0x10f82799, 0x65eb9122, 0x2606f75a, - 0x99be0618, 0x00002b, 00000000 + 0x99be0618, 0x00002b } }, { @@ -41634,19 +41633,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26d43941, 0x6eca8c25, 0x994e8025, 0x61d2751, 0xe03d6647, 0x96c095ad, 0x7f410b67, 0x50c689db, 0x2922147d, 0x46bfa724, 0x2afe27ff, 0x280b4e60, 0xa4e11444, 0xec4fb5b1, 0x9eb243d5, - 0xbe551f0d, 0x000191, 00000000 + 0xbe551f0d, 0x000191 }, { 0xf0672116, 0x4c758416, 0x4d8b352e, 0x1d3d0764, 0x6e05a80, 0x87523309, 0xd267505b, 0x8f505f58, 0x3ff3dc67, 0x5093adcf, 0xbf7c6591, 0x95f08406, 0x1213b133, 0xd8711c91, 0x5f0f4fe8, - 0xf93035bd, 0x000006, 00000000 + 0xf93035bd, 0x000006 }, { 0x6b57cc1, 0x663666f3, 0x37ebaaf3, 0xd2940878, 0x5a3793d4, 0x49dc2f36, 0xcb2825b5, 0xca2c26ef, 0x6f56b571, 0xdbf87f5f, 0x4e92bdf9, 0x44bb5df4, 0xb86a45ac, 0xecbb7a58, 0x9b0d1b91, - 0xc7f0034, 0x0001e0, 00000000 + 0xc7f0034, 0x0001e0 } }, { @@ -41654,19 +41653,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe73068b5, 0xb144b982, 0x90b47b8f, 0xe8f9c163, 0xa52073b4, 0xe0fbbf01, 0xd94dde4f, 0xce35ffd6, 0x53005d2a, 0x3948b90f, 0xd2a2ccde, 0x2c652bcb, 0x6d0c309a, 0x7a99dac6, 0x38e864f9, - 0xd69f037d, 0x000054, 00000000 + 0xd69f037d, 0x000054 }, { 0x43ab76d, 0xad41a880, 0x82974b19, 0x5fc7be, 0xe969b9da, 0x69a3a973, 0xc61a57c, 0x41465c1e, 0x6fe3fd5d, 0x1c95d93e, 0xb603c04e, 0x5060706a, 0xbf8eefdf, 0x992f7fc2, 0x7694d729, - 0x633928a9, 0x00002f, 00000000 + 0x633928a9, 0x00002f }, { 0x2e00a16b, 0x8d985e7e, 0xe3383810, 0xc1a0141d, 0xf0e3009a, 0xfb99d9e8, 0xcd9ae463, 0x97ec2ad1, 0x55bddba5, 0xd1194131, 0xd01f3cf6, 0x58521bcd, 0xcb68c3fe, 0x1b9500cf, 0x1677e1f4, - 0xd04082ac, 0x000019, 00000000 + 0xd04082ac, 0x000019 } }, { @@ -41674,19 +41673,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3093bbd6, 0x2da7d5e, 0xa6b85810, 0x408a15ba, 0xd69d83b6, 0x6f99a28d, 0x61a211b3, 0x82affdfc, 0x7ba623b0, 0x80dfabbc, 0x56c5fe5c, 0x3ae57003, 0x5de48f94, 0xc924c000, 0xb444aec5, - 0xdeefba8b, 0x0000fc, 00000000 + 0xdeefba8b, 0x0000fc }, { 0xef7a45fd, 0x93ba9bf0, 0x86c9e734, 0x84a4d2f6, 0xba7bb9f0, 0x78551d92, 0x18c005f8, 0x6bc36e8e, 0x3836b021, 0x109c8ab3, 0x9eb0d0d8, 0xb0060ded, 0xce7152fd, 0xdccef789, 0x6c8ec823, - 0x7a956071, 0x000023, 00000000 + 0x7a956071, 0x000023 }, { 0x271c24e4, 0xdd576457, 0x29e525b2, 0xcb9fb9dd, 0x4586b86d, 0x4b9e8863, 0xe9442490, 0x724f46c0, 0xde8f11dc, 0x25bf1cfc, 0x7ce17aef, 0x55820cb2, 0x14c01761, 0x4703185b, 0xcd82c107, - 0x98dc04ed, 0x000157, 00000000 + 0x98dc04ed, 0x000157 } }, { @@ -41694,19 +41693,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a8c7b2f, 0x1fe1687, 0xc78f56a8, 0x1cc7a242, 0xdbf00583, 0x8ccf97a6, 0xe5472d44, 0x4cb6e3bb, 0x548518b3, 0xec272df6, 0x767616f9, 0x7407c262, 0x1c0ba93a, 0x96f484b8, 0x5ab8cc73, - 0x6542d106, 0x0001e9, 00000000 + 0x6542d106, 0x0001e9 }, { 0x670353da, 0x46b1fad7, 0xc13e983d, 0xb85ac03b, 0x588555a2, 0x25e54adc, 0x769ee789, 0x9db8cd8d, 0x80d7da06, 0xa5066a8, 0xdf1f01cb, 0xe07e74d0, 0x6a0d1eeb, 0x643d032e, 0x8e9ce3e2, - 0x25a2c579, 0x000019, 00000000 + 0x25a2c579, 0x000019 }, { 0xc06fa6a0, 0xc2c32cf0, 0x2a38941b, 0x4295bd3f, 0xc2db2f3f, 0x4fd0950e, 0xecd3bdf1, 0x731dbefd, 0x96000618, 0xde9246f8, 0x7af9b747, 0xd3449fb9, 0x1437abb9, 0x99f0a27a, 0xa789402a, - 0x6bf15ec8, 0x00000d, 00000000 + 0x6bf15ec8, 0x00000d } }, { @@ -41714,19 +41713,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf04dcea0, 0x7df30492, 0xd53c5850, 0x9904bd1c, 0x904c5ed7, 0x808e9f67, 0xf2fe3b8a, 0x27f1017f, 0xb85b4a4, 0x97fc1816, 0xe1e6ba5c, 0x6b34c7c1, 0x8253e613, 0xe697c8bb, 0xdb759cfd, - 0xcd6cb376, 0x000097, 00000000 + 0xcd6cb376, 0x000097 }, { 0x6eb7780d, 0x3c9fdeed, 0x4ccbc4d6, 0x457ff5a6, 0xf432b11c, 0x153c0a7c, 0xcad5f4b8, 0x9a601628, 0xc53952ee, 0x8c5cd4e3, 0xc60f5dce, 0x8f85dc3d, 0x89b28716, 0x7c43acc, 0x44c59458, - 0x95b6290f, 0x00007f, 00000000 + 0x95b6290f, 0x00007f }, { 0x88a4498d, 0x4fe066f1, 0x89b6159, 0xbb2912fc, 0xf39c5533, 0x4c18aec4, 0xffdc3840, 0xc224e2db, 0x4db3ad6d, 0x87f72e1, 0xa3c344ae, 0x46f453fb, 0x6e7ffb9f, 0x7718c42e, 0xd5150b49, - 0x6aa0a7b1, 0x0000d0, 00000000 + 0x6aa0a7b1, 0x0000d0 } }, { @@ -41734,19 +41733,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf60b3a91, 0x48fa73a2, 0x50b1fa1f, 0x156bbb, 0xb96d5963, 0xb35cbbef, 0xc78b7d10, 0x74e70db0, 0xf4fba7b6, 0xd4dd32c1, 0xaa34dce, 0x97bb1714, 0x2d288523, 0x69594288, 0xa3c9ef7d, - 0x59eb95e0, 0x0001fb, 00000000 + 0x59eb95e0, 0x0001fb }, { 0xeb7fdc0a, 0x5525500f, 0x31b575c9, 0x536ec248, 0x207067f, 0xc79f539c, 0xf0c9871a, 0xebf54a9a, 0x7d413307, 0x428dd5e5, 0xed66a969, 0x4fd44e33, 0xeed89e9b, 0xf4951829, 0x31a6124, - 0xa315415, 0x0000c4, 00000000 + 0xa315415, 0x0000c4 }, { 0x964e1329, 0x25fae562, 0xa532f578, 0x663a880f, 0x177606c, 0xa4275054, 0xe04eb6c1, 0x5c7d3a4, 0xec7e96a4, 0x9d96538c, 0x478ba451, 0x3b55cfbf, 0x1e59263a, 0xf031bbd1, 0xc285bad, - 0x718700f1, 0x0001eb, 00000000 + 0x718700f1, 0x0001eb } }, { @@ -41754,19 +41753,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5c674cc, 0x51b7641c, 0xce52f66b, 0xf2fa5158, 0xcd87b991, 0x8ca46212, 0x6c24134b, 0xbfaae3ee, 0x61cb512, 0x211fe3bb, 0xe2a7bd15, 0x126aa782, 0x2187012d, 0x23459e0e, 0x9ecb05db, - 0xbdb88398, 0x00001c, 00000000 + 0xbdb88398, 0x00001c }, { 0xed9acce7, 0x83848946, 0x80565e03, 0xe39a9d22, 0x64265656, 0xda5a5917, 0xb2c9a395, 0x88a2c6fb, 0x87030e3b, 0x6fb4f14f, 0x95b62568, 0xb5e1097c, 0x90d4301b, 0x646e3988, 0xc41b2cd5, - 0xf8b4d805, 0x0001e6, 00000000 + 0xf8b4d805, 0x0001e6 }, { 0x9024bd3a, 0x6290b854, 0x20824704, 0xc438b675, 0xe3dc3b88, 0x54074480, 0x42799994, 0x42edeff6, 0xab47ebc6, 0xcfd6ce95, 0x3fbd4499, 0x725fec53, 0x51f209a4, 0x57c44f0, 0x8b57c43b, - 0x8a4f0ebc, 0x000147, 00000000 + 0x8a4f0ebc, 0x000147 } }, { @@ -41774,19 +41773,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfc04147, 0xea96dcac, 0x5e2ffe6a, 0x9d15b3c8, 0x7c93ae3e, 0xe81b1a72, 0xeeeaef66, 0x9e8c544d, 0xdc768fa1, 0x2c56fe21, 0xc104e341, 0xda046dbb, 0x2fc6e22f, 0x5c07f710, 0xdf56c0f5, - 0x63d7a55b, 0x00010f, 00000000 + 0x63d7a55b, 0x00010f }, { 0x1fdfcc37, 0x357cca3e, 0x2ad3c5dc, 0x73cd2e90, 0xf1dffd91, 0xd0819501, 0xb8095a65, 0x931ba048, 0x1271b521, 0x7b77ead1, 0xf8fdd618, 0x3b1284d3, 0x25b43fa2, 0x96fd59c5, 0xa2873d3a, - 0x8eedb897, 0x00015b, 00000000 + 0x8eedb897, 0x00015b }, { 0xb6f024, 0x1f03dd2e, 0x8dac6968, 0x21d24726, 0xf774bfc4, 0xfa833b3f, 0xe957e90d, 0xafbfc550, 0x13a3ca5e, 0xe9da0a55, 0x5f9807aa, 0x19ad6a76, 0xb592a33c, 0xcc4a3f17, 0xd81bff, - 0x52870da8, 0x0000c3, 00000000 + 0x52870da8, 0x0000c3 } }, { @@ -41794,19 +41793,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x20881c19, 0x446e47b4, 0x86d1b997, 0x6cebbfb8, 0x3609062f, 0xcb8f514d, 0x9d5fb033, 0xcdc8fffa, 0x3b56e98c, 0xe353e0fe, 0xd7eac7a9, 0x25af9aab, 0x556f98e7, 0x2f7fd456, 0xe6524c5e, - 0xcd19cbf1, 0x0001f1, 00000000 + 0xcd19cbf1, 0x0001f1 }, { 0xd44074c3, 0xa3597ac9, 0x90f49e42, 0xf4c26de, 0xbc622b1a, 0x20db2fa, 0x3039a9b, 0xc5debc52, 0xe42da98c, 0x87ad10c0, 0xd9e72846, 0xf17ac7e7, 0x24c893a9, 0xc6e7ecb7, 0xd956b5c0, - 0x75070b2a, 0x0001de, 00000000 + 0x75070b2a, 0x0001de }, { 0xd641d655, 0x90a23aaf, 0x85407115, 0xc15300dc, 0xfe7e2936, 0xedbf734b, 0xf859bfa0, 0x92fd67c, 0x9e256518, 0xbb36f2a7, 0x3008e90b, 0xbeb98cea, 0xc916cd2, 0xb7d85c15, 0x5f3616a8, - 0xa9472c24, 0x00005f, 00000000 + 0xa9472c24, 0x00005f } }, { @@ -41814,19 +41813,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xea581277, 0xfd0609fd, 0xee447c76, 0xb94b9c7, 0x6a5e0589, 0x9c7a6fdd, 0x476d69cc, 0x1e8dcb33, 0x6538ca06, 0x76a4a07f, 0x385ab9f8, 0x5b07a11f, 0x48c1ec73, 0xc39579e5, 0x98923dbc, - 0x152de388, 0x00003d, 00000000 + 0x152de388, 0x00003d }, { 0x6ced21d1, 0x6fc533b2, 0x30dbb4b6, 0xc7b626fb, 0xccc84ada, 0xb6576d49, 0xd6dc9c4b, 0x1cb6e7a6, 0x7090bf4e, 0x5e83cce7, 0x58b61ea7, 0xef64d638, 0x699d4b5b, 0x93a96572, 0x6724301f, - 0x1ba10bb8, 0x0000e3, 00000000 + 0x1ba10bb8, 0x0000e3 }, { 0x85de39a8, 0xc3de7cf3, 0xa9b872d7, 0xf488e04c, 0x98cc6df2, 0xcd6b7c5f, 0xe919fed6, 0x552c57ca, 0x1e364778, 0x41e89a5c, 0x51735c3a, 0x96c5ed11, 0x1c2a96b8, 0x66b302cf, 0x99e245f6, - 0x706140dc, 0x00002f, 00000000 + 0x706140dc, 0x00002f } }, { @@ -41834,19 +41833,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5caad50a, 0xb87e3776, 0x308a782c, 0x3ca3f3d7, 0x36066bc1, 0xfa28445, 0x591ad0c5, 0xf322e380, 0x77e55f2f, 0xe8dba6f9, 0xe520888c, 0x3324f297, 0x50b4e014, 0x6d255abb, 0xb3e10d95, - 0x3636ab64, 0x000010, 00000000 + 0x3636ab64, 0x000010 }, { 0xcb7064a7, 0xacfa5a79, 0xd99d0c50, 0x64f87829, 0x18b3c761, 0x4b7c46be, 0x49e76a7f, 0xd9fdb857, 0x95d35fe9, 0xe7560d5e, 0x8a322a56, 0x1e4927e5, 0x8bf8296b, 0x1361fcab, 0x490c70f2, - 0xc69f6aaf, 0x0001c4, 00000000 + 0xc69f6aaf, 0x0001c4 }, { 0x5896bacb, 0x563d38a3, 0x6bdd61eb, 0xe6639e5f, 0xd345dd6f, 0xf4101017, 0x8370ac12, 0xdeae286d, 0xebe9e617, 0x5887fb6e, 0xc11727f2, 0x7dd5eb54, 0xfa9e4d88, 0xbd0258d6, 0x5c50a643, - 0x8085d8ff, 0x000043, 00000000 + 0x8085d8ff, 0x000043 } } }, @@ -41856,19 +41855,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b6d4e9b, 0xdc0da109, 0x3a5c36ec, 0x9dbff526, 0x32acd163, 0x6427e62f, 0xb3be3ebe, 0x902daec7, 0xca60243d, 0xd4af48b8, 0xc8336220, 0xb173093b, 0x9ddc9b28, 0x7e6436c7, 0x43697271, - 0xcac3be99, 0x00019d, 00000000 + 0xcac3be99, 0x00019d }, { 0x9dc53051, 0xebc96ca2, 0x10ea035a, 0xed86a518, 0x1d9dfd5b, 0xd38806fd, 0x44ece51, 0xc32d63eb, 0x916b1d42, 0x911bc803, 0xc4ac8fc5, 0x4efbc290, 0xbdb6fd05, 0xc30f9581, 0x825d415c, - 0xa156a2ec, 0x000187, 00000000 + 0xa156a2ec, 0x000187 }, { 0xf2ffa8db, 0x3c8f975, 0x66b5bea0, 0xb582742c, 0xfe438078, 0x50d75929, 0xe32c6f5a, 0xf8472bce, 0x10c7e99c, 0x42a2d1c2, 0xdfb912d1, 0x63c88e0a, 0x6c8ade19, 0xa5e16447, 0xc7aa46c1, - 0x4d346dce, 0x000136, 00000000 + 0x4d346dce, 0x000136 } }, { @@ -41876,19 +41875,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2b650d02, 0x941b0415, 0x5ddf4f48, 0x85382f36, 0xd76b6d4c, 0x72a6a65, 0x845fb0f, 0x746c7978, 0xd980f798, 0x347f1243, 0x917b3dd3, 0xd8a01852, 0x29fc452b, 0xce4b8364, 0xd2a98685, - 0xe9d7572, 0x000111, 00000000 + 0xe9d7572, 0x000111 }, { 0xd4ffdfa7, 0xcb386375, 0xc65a5642, 0x9ad833d0, 0xd65c2d7e, 0x646195e6, 0x3222d111, 0x12598451, 0x4e765824, 0xa3e88e4b, 0x3b98d89, 0xcbbed2f3, 0x818fcc9f, 0x3517a6e4, 0x8c95908e, - 0x96afbab7, 0x0000bf, 00000000 + 0x96afbab7, 0x0000bf }, { 0x547630f7, 0x276a346b, 0x654418, 0x9b1cdbc1, 0x39830e28, 0x72f9b509, 0x67b21840, 0x82310a3d, 0xbb84ff65, 0xe9c802af, 0xe7c8b9bb, 0xe3f1ed9d, 0x9a16af67, 0xbc049d9, 0x5ce344c5, - 0xf3867357, 0x00003e, 00000000 + 0xf3867357, 0x00003e } }, { @@ -41896,19 +41895,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5ccd7229, 0x7d244bb2, 0xa1b580ce, 0x32e992cb, 0x43840358, 0xc1428cd3, 0x3fc73b85, 0x95611ccb, 0x80b7e088, 0xb2b7701, 0xcb036d79, 0x14afaf83, 0x49a09079, 0xbff73af, 0x67eb7a45, - 0x730a6287, 0x000039, 00000000 + 0x730a6287, 0x000039 }, { 0xbd97f385, 0xefb9792, 0x6b1a6f28, 0x765f80a4, 0x6d977bdc, 0xba07520f, 0xe372089, 0x6e97dad1, 0x231712ea, 0x7f581e9e, 0x9e90a1d3, 0xfdbbc566, 0x2456066d, 0x11adba4a, 0x803127f9, - 0x9beb33ef, 0x00014d, 00000000 + 0x9beb33ef, 0x00014d }, { 0x2ded2ad6, 0x6cc4dcce, 0xd8b43727, 0xeec4d399, 0xf491bfb0, 0xc895381c, 0x101ef8f3, 0x82b30858, 0x39ad89c5, 0x2bf9c535, 0xdbe75ed5, 0x551beed9, 0x9189021d, 0xff659c11, 0x28cd5169, - 0x7489e44c, 0x000136, 00000000 + 0x7489e44c, 0x000136 } }, { @@ -41916,19 +41915,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd436e3b8, 0xa09babae, 0xe1ecd881, 0xd9385634, 0xe1048d62, 0x89091e17, 0xc8a770b6, 0x4c9ce498, 0x10339654, 0x365457e5, 0xd9c977f1, 0x16f8f2f4, 0x10aa91f7, 0x20d03296, 0x6694f6c3, - 0x4cfa7af4, 0x000112, 00000000 + 0x4cfa7af4, 0x000112 }, { 0x28d22d99, 0x1bbc9c0c, 0x87cf9a3a, 0xb03a2185, 0x3eddede6, 0x57fead63, 0x5b2dc055, 0x6a82a2aa, 0xe7fa22c3, 0x9cae3343, 0x83b9e5c1, 0xb5fa54e8, 0x715be510, 0x88a44f1f, 0x13c6d724, - 0xbfa5694f, 0x000072, 00000000 + 0xbfa5694f, 0x000072 }, { 0xe00ff16d, 0x9e828d94, 0x94a5b2b5, 0x4ad16cba, 0x9b60dd2c, 0x78a5d979, 0xbfcdb5aa, 0x9cd8e04, 0x63076f12, 0xb1ffe321, 0xe774fc0b, 0x7e35bfa1, 0x471814b, 0x2b2d580f, 0x120e86cb, - 0xa4b5fabd, 0x000178, 00000000 + 0xa4b5fabd, 0x000178 } }, { @@ -41936,19 +41935,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf7e03bf, 0x1c7c9c26, 0xb28aa883, 0xb5bff1d1, 0x9402fc6, 0x7caf699a, 0x6cc358ca, 0xa03d8d6c, 0x71ad237b, 0x5e2669c4, 0xc837f44d, 0x41e62268, 0x250334da, 0x4b9dd8d4, 0xd6be73b9, - 0x17c6aa64, 0x00002e, 00000000 + 0x17c6aa64, 0x00002e }, { 0x9cf97f13, 0x1c7a06a8, 0x9bce3d50, 0x863c2636, 0xc645489a, 0xfcb0835, 0x943aa71a, 0xedeeb819, 0xe421488, 0x502f5c4f, 0xcfd338d3, 0x7a5a124e, 0x5444eb2a, 0xfc7c3650, 0xb56deb54, - 0x2cff641c, 0x0001ef, 00000000 + 0x2cff641c, 0x0001ef }, { 0x9d2737db, 0xacf65d80, 0xe96a4c0d, 0xa3eecb51, 0xe2c41648, 0x4c9defb1, 0x64aa58c7, 0xa3f4fa04, 0x5e817254, 0x9eb6578, 0xa5ae9dc5, 0x4ae57f00, 0x99f08a6c, 0xd8dced1d, 0x5686343b, - 0xc992a5e5, 0x000156, 00000000 + 0xc992a5e5, 0x000156 } }, { @@ -41956,19 +41955,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x324f63af, 0x8c5a11ef, 0xe5249a5f, 0x510329f0, 0xe5e03a3d, 0xe5876ae4, 0x9cdfdcae, 0x439703ae, 0x46d1c414, 0xda97a616, 0x7a394eb4, 0xf8b1deaa, 0x952aee9, 0x9801db78, 0x32d4dbd9, - 0xad696cc4, 0x000091, 00000000 + 0xad696cc4, 0x000091 }, { 0xec5dc270, 0x26e1a54d, 0xa476d099, 0x1802cda5, 0xb244b514, 0x2fbf8e11, 0xf950b208, 0xf6a23ba5, 0x96fcdc3, 0x2c32fb21, 0xe71c3f86, 0xa57cdbad, 0xfd2ffd21, 0x734b15b4, 0xef78c825, - 0x6868f9b9, 0x000198, 00000000 + 0x6868f9b9, 0x000198 }, { 0x9b1df54a, 0x92043413, 0x1427ba42, 0xc7081586, 0xce2a52a0, 0xe77c25c, 0x569e6c6d, 0xc4a3d420, 0x9a90b868, 0xae9a2a4f, 0xcf7057c5, 0xb1875056, 0x27dc026b, 0x4a37469, 0x52488184, - 0x30a9ed61, 0x0000c1, 00000000 + 0x30a9ed61, 0x0000c1 } }, { @@ -41976,19 +41975,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd64e82b9, 0xebc14b32, 0x1c77a9ec, 0x5e2d44e7, 0x58aba8e4, 0x57a89471, 0x7ef522b5, 0x77902897, 0x7803c4cb, 0x552220a3, 0xf529b6b0, 0x6e0a1d4a, 0x240fe35f, 0x7e2d0fe3, 0xee3e2994, - 0x6885ce77, 0x0000b4, 00000000 + 0x6885ce77, 0x0000b4 }, { 0xa93cf539, 0x71bf178c, 0x40fbe417, 0xefbdb58c, 0x904c689d, 0x7fffe70c, 0xca804de6, 0x6b9b936d, 0xa0b386ea, 0x637e67bc, 0xc9a6f922, 0x5a883a3d, 0x1d875156, 0x6458ba43, 0xea81b3fb, - 0x8b55ec88, 0x000042, 00000000 + 0x8b55ec88, 0x000042 }, { 0x907025f1, 0xf33633d4, 0xa40034ae, 0xe7cde501, 0xdc8a5199, 0x339b69f6, 0xf6d6732a, 0xfe60c8f1, 0x6bc0e69a, 0xa9931297, 0xf4012a51, 0xa1c30077, 0xe413cf35, 0x20f8bb40, 0x8942a4e, - 0x85de61b8, 0x00005f, 00000000 + 0x85de61b8, 0x00005f } }, { @@ -41996,19 +41995,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x949872e8, 0xad3d861d, 0x640b047b, 0xde378523, 0x8d6910f7, 0x6ad7518, 0xbb9f0211, 0xed4fb77a, 0x22cdb7f, 0x46136961, 0x7c9c896a, 0x889bb923, 0x25c44561, 0x498c0fbe, 0xb3bd363d, - 0xb6d8d7bd, 0x00013a, 00000000 + 0xb6d8d7bd, 0x00013a }, { 0xd9f80cf1, 0x9da47460, 0xab502dd4, 0x22ff59a5, 0xeb418156, 0x4f08898c, 0xe179d5ab, 0x74b3675c, 0x5c976ccf, 0xf83289c6, 0x31dba846, 0x7193903, 0xa974d6bf, 0x707f7f59, 0xcd5403e3, - 0x76328d67, 0x000196, 00000000 + 0x76328d67, 0x000196 }, { 0x551a9c0d, 0x428060e7, 0x47cd7040, 0xcb4fc48c, 0xf77a8696, 0xc4a9b034, 0xa83b500b, 0x74fcd51f, 0xdabeb48e, 0x4cf863b5, 0x3d71c69b, 0x66f5956c, 0x1da1b081, 0x2b6dc616, 0x209f59d9, - 0xed877a2e, 0x000141, 00000000 + 0xed877a2e, 0x000141 } }, { @@ -42016,19 +42015,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaeee03ab, 0x412661fc, 0xe71bed07, 0x92375adf, 0x2f184104, 0xc275860, 0x68170346, 0xebd1ed24, 0x5088849f, 0x78088092, 0x3f7f3a03, 0x6cfe2e96, 0xfa348c8e, 0xe08e141f, 0x54b6b7f1, - 0x9dcdc3f2, 0x000024, 00000000 + 0x9dcdc3f2, 0x000024 }, { 0x9a806014, 0x92960aae, 0x29f0b8ff, 0x3212ab05, 0x36a5a29f, 0xb0de7834, 0xc53810c4, 0xb093ca1f, 0x5c3dbcd5, 0x3e0af6c1, 0x22930fcf, 0xf5b66587, 0xa3976c75, 0x535909ed, 0x67e5910e, - 0x203b1cf6, 0x000065, 00000000 + 0x203b1cf6, 0x000065 }, { 0xc6476a3c, 0x134406b7, 0x62f38a94, 0xb5e3f5a3, 0x66bcfa10, 0xd2ec904, 0x26ec74f0, 0x8d716fe7, 0x13825a5a, 0xd5d9c2ce, 0x1f0afe13, 0xb7066f32, 0xa2eb83e1, 0x979f8351, 0x1809a02d, - 0x850addf, 0x0001b1, 00000000 + 0x850addf, 0x0001b1 } }, { @@ -42036,19 +42035,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8ba1b739, 0x11cd3726, 0x77ab15bf, 0x4e67cbfd, 0x6582a1bf, 0xc238a9d8, 0x870d5b7f, 0x11f5001e, 0xc868778, 0xa77fafc2, 0xe862043d, 0xbf35d98, 0xc148c589, 0x1bb0fde3, 0x56921535, - 0x7909e9e1, 0x000187, 00000000 + 0x7909e9e1, 0x000187 }, { 0xbb3c9871, 0x821ca9ff, 0x838f18ba, 0x71e5f641, 0x9f379c33, 0xeea7c21b, 0x6815682c, 0x54e1da8f, 0xd78e908f, 0x81c1ffc4, 0x87186739, 0xe16d17c9, 0x99e3fd57, 0x6a93816a, 0x798c357e, - 0xb6d8ea3f, 0x0001f3, 00000000 + 0xb6d8ea3f, 0x0001f3 }, { 0xae73192b, 0x611dcbb6, 0x92faad76, 0xda2b8b27, 0x754ad508, 0x87358afd, 0x5ec6c09c, 0x4b758fe9, 0x1c40300c, 0x2117eb16, 0x43e6ea78, 0xf5ff259a, 0x5605e377, 0x9d6c5415, 0x62aa67a9, - 0x76be1627, 0x0001f9, 00000000 + 0x76be1627, 0x0001f9 } }, { @@ -42056,19 +42055,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6ea2a10c, 0x6153b2b2, 0x5ceca301, 0xf1fa6399, 0xe477cee4, 0xe4dc44c5, 0xbfcdc17f, 0x4457f752, 0x2213b43b, 0x8e093f31, 0x89fb870c, 0xe6135d37, 0xac4caaea, 0xeadf06fe, 0xfb7ba13a, - 0xa6da34aa, 0x0001e8, 00000000 + 0xa6da34aa, 0x0001e8 }, { 0xbe605c4f, 0x97125805, 0xc80b34d4, 0xaa871959, 0xa9167941, 0xd6b9706c, 0xeff99802, 0x59ff7261, 0x9feb56df, 0xefc83ff5, 0xb48892e1, 0x9d3adc02, 0x6fe52f01, 0x2598883f, 0xd376767d, - 0xb7e4a30a, 0x000105, 00000000 + 0xb7e4a30a, 0x000105 }, { 0x5b10bede, 0x54bfaf92, 0x43149158, 0x27e758bd, 0x60da367f, 0xe8439552, 0x29efe597, 0xc70671f0, 0x8eb24f40, 0xa0b0d4d9, 0x720db914, 0xab25d43a, 0x9301dc80, 0x88c70e76, 0xa0e25bd7, - 0x1b9add65, 0x0001e4, 00000000 + 0x1b9add65, 0x0001e4 } }, { @@ -42076,19 +42075,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a1bfdce, 0xf9988c77, 0x688892ac, 0xd28e9ceb, 0x93df2c64, 0x53b9c55d, 0x740126b4, 0xe1c4b263, 0x898f8e31, 0xa3324f5, 0xd7a87d9a, 0x6548a690, 0x1377b3a4, 0x7c935cc4, 0xe04b3423, - 0x9bde6010, 0x0000e6, 00000000 + 0x9bde6010, 0x0000e6 }, { 0x9425a397, 0x84b229b9, 0x84bcb5a, 0x82aa196d, 0x830258d6, 0x3acd7e23, 0xd2c34b65, 0x8ada6083, 0x63b726da, 0xc4611dce, 0x593e9c41, 0xd8e9826c, 0x7a754901, 0xd72e224a, 0x11158591, - 0x261013fc, 0x0000ad, 00000000 + 0x261013fc, 0x0000ad }, { 0x493a1b4b, 0x9613685c, 0x1a77712e, 0x79fe1bdf, 0xfa9dcc02, 0xee42b3ad, 0xeb002fb7, 0x374e5fb7, 0x4b0109f6, 0xcf981482, 0xfa313303, 0x1d047f71, 0xd4523b65, 0xd8376fb1, 0x69224bd3, - 0xd37397c4, 0x000050, 00000000 + 0xd37397c4, 0x000050 } }, { @@ -42096,19 +42095,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x14641930, 0xa8f9f7b3, 0x3c853255, 0x2e98ec31, 0x85352428, 0x1c87b1bc, 0x7aba89d4, 0xbee1f020, 0xc47cf364, 0xb6d78b13, 0xfb14f756, 0x15813aa4, 0x78f3f373, 0x995fd98e, 0x388baa88, - 0x4d8ed034, 0x000196, 00000000 + 0x4d8ed034, 0x000196 }, { 0x4906b249, 0xb15bb95e, 0x24f40962, 0x5f78528f, 0x896dfa1, 0x70f8212e, 0x94a7f6, 0x36f8586, 0x8705a42a, 0xe0850cf4, 0x6c49c651, 0x9153fd95, 0x12c66e1e, 0x653bb8a3, 0xaf6410d7, - 0xe87df1e1, 0x0001e9, 00000000 + 0xe87df1e1, 0x0001e9 }, { 0xdc134a44, 0x48b0b8a3, 0x7d90b1d2, 0x68290b4b, 0x8961798, 0x4fd18a59, 0x5c081061, 0x9ad1d96, 0x34886a2c, 0x1fbb3e2, 0x10b72101, 0x492350f6, 0x20b7511f, 0x3317d5b1, 0xb1fcbdad, - 0x786673ff, 0x000166, 00000000 + 0x786673ff, 0x000166 } }, { @@ -42116,19 +42115,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb88d5336, 0xca3bbefb, 0x1a3fdc48, 0x525f8fad, 0xfeeccc8d, 0x6aa77bb5, 0xf42beee6, 0x95e152e, 0xca409511, 0x1f16567e, 0xb2cd4ccc, 0xec0f432a, 0xd62165a1, 0xddebde11, 0xa7fc4f6e, - 0x92e7e0ba, 0x000138, 00000000 + 0x92e7e0ba, 0x000138 }, { 0x1ed520d, 0x7dd1931b, 0xebce0d3f, 0xe81503ef, 0x912fcdf2, 0xd6ff320d, 0xbff3ef8b, 0x76016a48, 0x9b4f4040, 0x96d6b9ea, 0xe125f5cf, 0x31ef9f15, 0x1d3934f9, 0x30e07bec, 0xff77e8fa, - 0x70e8e7bd, 0x00002e, 00000000 + 0x70e8e7bd, 0x00002e }, { 0x864ef315, 0xe24540e0, 0x428ed4a1, 0x4aa062ba, 0x8c829d6e, 0x9dd8efae, 0x834c09f, 0xc94ed26, 0x27c95bbf, 0xc6206c13, 0x6d4fb779, 0x2564d7dd, 0xc1367760, 0xb6bc399f, 0xb6ce5c82, - 0x6d20dacc, 0x0000e2, 00000000 + 0x6d20dacc, 0x0000e2 } }, { @@ -42136,19 +42135,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6cdc6a35, 0x6e8bcc27, 0x33b6513f, 0x62db043c, 0xf29e5a9b, 0x3aebadc1, 0x51030199, 0x28026abd, 0xfe76232c, 0xc89a902b, 0xdebd4500, 0xe028aeb1, 0x8b225153, 0xeb298503, 0xf48898b0, - 0xd6059fe5, 0x00006d, 00000000 + 0xd6059fe5, 0x00006d }, { 0x29a21e57, 0x988e2387, 0x50a4e1b0, 0x42bcd9ad, 0xa95c244e, 0xf28c0ca8, 0x86725a08, 0x9b14d9b3, 0x8d543989, 0x233b20ed, 0x561e5cb8, 0x89f9540c, 0x1de5ff1a, 0x2bded2c2, 0xf5794746, - 0x32db0ca7, 0x0000ec, 00000000 + 0x32db0ca7, 0x0000ec }, { 0xbdb8779c, 0x84ecd583, 0x5ef3f407, 0x106c98dd, 0xa7603fb1, 0x7522b5d7, 0xde76541c, 0xa19741da, 0x367eea74, 0x4b6bcecb, 0xeae7dc14, 0xbb7d7d3f, 0x7f51bf87, 0x8739e467, 0xa855174c, - 0x95733cd8, 0x000134, 00000000 + 0x95733cd8, 0x000134 } } }, @@ -42158,19 +42157,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3ca3577b, 0xa98e6e60, 0x7f55873, 0x73e80cec, 0x8edef446, 0x50c48dc, 0x8d3e73b0, 0x8c7addc9, 0xe0b61ff0, 0x1ec76ddd, 0xf1f33209, 0xc882f85e, 0x64895e8e, 0x396f626d, 0xf7594173, - 0x5d3e2208, 0x00001c, 00000000 + 0x5d3e2208, 0x00001c }, { 0xc63ace1, 0xc5916b6a, 0xc9ebed8c, 0x80fb0ad, 0x5f990f46, 0x8f468a03, 0xc98be277, 0x3dc476d2, 0xad7a2ee, 0x5e10a091, 0x143a32f5, 0xaa70dda3, 0xa6ea3f24, 0x2374210d, 0x6fca0600, - 0x8a80b6dc, 0x000011, 00000000 + 0x8a80b6dc, 0x000011 }, { 0xd936257, 0xdbcba84b, 0xf0407c57, 0x278612fd, 0x8d2a8a6f, 0xe9638adc, 0x99eea40, 0xa6320545, 0x92c4453, 0xf26710cf, 0x60a5e6fe, 0xd537fd81, 0x32c2c231, 0xff577a0d, 0xdb8b98e1, - 0x544ec2a5, 0x0001d6, 00000000 + 0x544ec2a5, 0x0001d6 } }, { @@ -42178,19 +42177,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4601285a, 0x202966d6, 0xb62c7b8a, 0x6b5e4711, 0xa1c50cd8, 0x11afe38c, 0x486a06b3, 0x6de9073a, 0x18697036, 0xc299bbd, 0xa095868f, 0xde121baf, 0x20ba2e57, 0x7f5c31d9, 0xfcf562ed, - 0x80c79650, 0x0001c9, 00000000 + 0x80c79650, 0x0001c9 }, { 0x7eae4713, 0x528beb7f, 0xcfeb5039, 0xf08331a6, 0x470f7836, 0xbda47311, 0xaa6d484a, 0x7685b575, 0x3efe41e3, 0x8e96a5dd, 0x215054fa, 0xca7f2c10, 0xea43b023, 0x35c96ab2, 0x57aa044b, - 0x9294d939, 0x000119, 00000000 + 0x9294d939, 0x000119 }, { 0x5a82b696, 0xd192ac3b, 0x7c05061b, 0x8edd1f4f, 0x3b23fe51, 0x4c44555c, 0xaa30d543, 0xecb6fada, 0xb0d92fe9, 0x431ace55, 0x53fb1b9f, 0x36f9cac5, 0x71fa0882, 0x788d4ece, 0x5476e3c7, - 0x845e7754, 0x0001b1, 00000000 + 0x845e7754, 0x0001b1 } }, { @@ -42198,19 +42197,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x38a0ff7, 0x36d3ebb9, 0x79feab63, 0xdcbd4a88, 0x6be14e4d, 0xbd6a573c, 0xbdb2c876, 0x509d5834, 0x43057b49, 0x856b76e, 0xa1f5036e, 0x91e48340, 0x5f58b703, 0xb78e6742, 0xe96da0ee, - 0x298ec4e8, 0x0001ff, 00000000 + 0x298ec4e8, 0x0001ff }, { 0x52f78119, 0x8a1956c5, 0xf95ffc16, 0xf03ce40e, 0xb171273f, 0x60199410, 0x7263d1f8, 0x4f5c00e1, 0x947d2715, 0x5dc63570, 0x17290a29, 0x4cdbcc04, 0xb8cd9b1c, 0x12f0c16f, 0x6b7d483, - 0xe9a66283, 0x00019c, 00000000 + 0xe9a66283, 0x00019c }, { 0xe7da2665, 0xd077578a, 0xf7ba71f9, 0x7ce8f1d6, 0xf4a8f0c4, 0x57950e11, 0xb7a2b7d9, 0x30a9ea46, 0x3bd97223, 0xf90d5c8e, 0x70319785, 0x8c801c63, 0xcf6510dc, 0xcc1f795b, 0x83859037, - 0xeec019e0, 0x0001c0, 00000000 + 0xeec019e0, 0x0001c0 } }, { @@ -42218,19 +42217,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5bdb0fc2, 0x4996fce6, 0x8a78535d, 0xea6de3f, 0x7b9cc385, 0x89b328e9, 0xb7b1474e, 0xc1e10aa0, 0xb754c7b9, 0x3d52eca, 0xb9046b86, 0x3b4be919, 0x630b4d7e, 0xf4d5c71f, 0x1d204c4c, - 0xd649427d, 0x000027, 00000000 + 0xd649427d, 0x000027 }, { 0xe64859a0, 0x3c8b8dac, 0xa6789e1b, 0xcde4d902, 0xd8fa85d2, 0xc47e96c1, 0x78a7c345, 0xc3213aa3, 0x5efdab78, 0x635504e8, 0x50a484ad, 0xe62caf52, 0x715a2e40, 0x494d3c80, 0xd3069e61, - 0xa2aa0d6f, 0x000199, 00000000 + 0xa2aa0d6f, 0x000199 }, { 0xd7621199, 0xa1694ef, 0x2b673544, 0x845c7889, 0x735886d2, 0x3c9410f5, 0x6e022f9a, 0x7042ae8d, 0xa3ddbdd3, 0x4d159f1, 0x22f79558, 0x69db6b52, 0x9bff62ca, 0x80e2dff, 0x6c9e16e9, - 0x34ee1556, 0x0001d3, 00000000 + 0x34ee1556, 0x0001d3 } }, { @@ -42238,19 +42237,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xec989bbc, 0xf2693e89, 0x43adcce8, 0xd426ae99, 0x8b70b337, 0x1d3b8b2b, 0x7e211c95, 0x56a55e7c, 0x39c63bed, 0x73fa578e, 0xf38edd12, 0x8eaeaf66, 0xa1810359, 0x46e96311, 0x9c58e8c4, - 0x966639b5, 0x0001ce, 00000000 + 0x966639b5, 0x0001ce }, { 0x8fddbec8, 0xa82a4993, 0x803ab90f, 0xa9735d4b, 0xc4e56ca7, 0xcdf44f55, 0xde769426, 0xb2268704, 0x703abf36, 0xee3567af, 0x56eeeb15, 0xea29174c, 0x640b0253, 0x5f1f4bae, 0xfa5d29ea, - 0x8006473a, 0x000192, 00000000 + 0x8006473a, 0x000192 }, { 0x70ad3b58, 0x14b3ffe7, 0x66187f2b, 0xd6a7be3d, 0x48f5c54b, 0x8069cabd, 0xd2bfc686, 0x9b578e8d, 0xb1a6086e, 0x9c8f3768, 0x9ab6c117, 0x74e0c720, 0x86910889, 0x3b653ac8, 0xca50a901, - 0xb6f4f478, 0x00012d, 00000000 + 0xb6f4f478, 0x00012d } }, { @@ -42258,19 +42257,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd5586248, 0xc73d1214, 0xa146acc5, 0x3f1ab235, 0x1e53e832, 0x7b1b3eb6, 0x881e306d, 0x4cfeffad, 0xc792cafb, 0x89fdafce, 0x12190989, 0x178f4330, 0x1955a1f0, 0xcd716c8d, 0x4682383a, - 0x794d61de, 0x000062, 00000000 + 0x794d61de, 0x000062 }, { 0x65d5cdfb, 0x92efc592, 0x7bf6fbeb, 0x337d17d3, 0x995ff42, 0xf312d3b6, 0x5596b2dc, 0x4de51ddf, 0xf63c06c6, 0x21a1d21a, 0xa3627ffe, 0xd6a41bf0, 0x5beed561, 0x614fe8ac, 0xaa44bf05, - 0x75ea49cc, 0x000143, 00000000 + 0x75ea49cc, 0x000143 }, { 0x660c6caf, 0x907470b5, 0x9ee2d326, 0x6eff5754, 0xf99ef53a, 0xd031b03b, 0x3f8f6a63, 0x31580680, 0x47d129b5, 0xeaecd95a, 0xb8445132, 0xfac8fe37, 0xe92ca583, 0x9c37a65e, 0xa6ee81f9, - 0x7ff9e03f, 0x0000e7, 00000000 + 0x7ff9e03f, 0x0000e7 } }, { @@ -42278,19 +42277,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7e60e7f, 0x6cb612b7, 0x6302e001, 0xe7c83f4f, 0xe6042122, 0xd0cc2796, 0x1abd9c13, 0x6e9c2ba9, 0x179f4053, 0x31347a17, 0xff7192d2, 0x68f7481e, 0x89bdfb81, 0x214bcdb5, 0x28c7ce37, - 0x94f63a10, 0x0000ab, 00000000 + 0x94f63a10, 0x0000ab }, { 0x5dc8cd40, 0x4f9d2773, 0xf0a59d0f, 0x1fe9f50c, 0xa84943f5, 0xb2164c27, 0xbce5e4b4, 0x82dd7a86, 0xf1be81f7, 0x793013cd, 0xd6075506, 0xb438c7da, 0xd5f67ac5, 0x97bea335, 0x16f9c213, - 0xd2ab450b, 0x000110, 00000000 + 0xd2ab450b, 0x000110 }, { 0xe1740573, 0xf19525ed, 0x337a5151, 0x4650f128, 0x647c25e7, 0xf6901a6, 0x716daa0d, 0x9fb8e856, 0xce2d2ffc, 0xf0397894, 0x96e9e193, 0xee23ea01, 0x7b76b4a0, 0x21383a63, 0xff595a70, - 0xfc3da67, 0x0000a3, 00000000 + 0xfc3da67, 0x0000a3 } }, { @@ -42298,19 +42297,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x50b4892, 0x46fcebae, 0x8fb14f99, 0xe362d5d8, 0x99d8d9e1, 0xe00d2ac, 0x3aefbbc9, 0x47ca31e5, 0x7f6538e, 0xffae7476, 0xa654784, 0x8b49095f, 0x2981576e, 0x3b30b46, 0x5f064e00, - 0x794c8aa1, 0x000064, 00000000 + 0x794c8aa1, 0x000064 }, { 0xc2c45f5b, 0xb9212693, 0x1d8c82f8, 0x67897ebb, 0x6656a6e1, 0x75511072, 0xca3582e6, 0x9e0999ff, 0xe771bd14, 0x32bed420, 0x313ff323, 0xd12f23ff, 0x35c1c551, 0x50afd7d2, 0x54a329c3, - 0x4c8b1f86, 0x000098, 00000000 + 0x4c8b1f86, 0x000098 }, { 0x76efbc07, 0x50b3e68b, 0x8166e6de, 0xc135a3b2, 0x8b45e282, 0x16848a75, 0x4839ff7c, 0x5c60d596, 0x6b749e69, 0x3c70cd08, 0x9b0e54de, 0x229174ce, 0xe084cd05, 0x2a72cba3, 0x933a1db7, - 0x8967fa99, 0x000115, 00000000 + 0x8967fa99, 0x000115 } }, { @@ -42318,19 +42317,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1c5025f, 0xd56eed09, 0xda9c9468, 0x493278e2, 0x5e4744d0, 0x4593186a, 0x8cbbb3f6, 0x94055723, 0x6b5835d4, 0x4391cb71, 0x9652e87d, 0xb1bbfc9e, 0x6c9667c2, 0x959415d7, 0xf11f991b, - 0xfe9e6a46, 0x0000e6, 00000000 + 0xfe9e6a46, 0x0000e6 }, { 0x2034ade6, 0xa6b19750, 0x2406165d, 0xff15d200, 0xe1680fa3, 0x450af594, 0xbf3fb8d6, 0x510250b7, 0xf003fb59, 0xa932f787, 0x43184d33, 0x12934457, 0x4712db1e, 0x854f3319, 0xbf820a9e, - 0xa7d57092, 0x0001b2, 00000000 + 0xa7d57092, 0x0001b2 }, { 0x19ccb6b7, 0x626c1d89, 0x35a85b13, 0x73064d5a, 0x10fcf521, 0x50641b44, 0x20bed382, 0x767f606, 0x70c8bb1f, 0x9d051de0, 0x48546aa7, 0x17e71da3, 0x864423c, 0xb81f9de2, 0x51f31420, - 0x5d900bbd, 0x000054, 00000000 + 0x5d900bbd, 0x000054 } }, { @@ -42338,19 +42337,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf2566247, 0x5e4cc776, 0x6c3d85b8, 0xefec485e, 0x2686af4f, 0xa2eb4a54, 0xdae0d8af, 0x47f5268e, 0x51545b48, 0x1725d540, 0x84dfeee4, 0xcb3a0f89, 0x778120ab, 0xf3af601c, 0x4cf53c41, - 0x81aeb4eb, 0x0000ae, 00000000 + 0x81aeb4eb, 0x0000ae }, { 0x612cf3f9, 0x3fe4a2f7, 0x37beebdc, 0x7c323609, 0xa02b58af, 0x6fef470d, 0x2a6aa701, 0xc319dff8, 0xf846fbdc, 0xe318de41, 0x293b9883, 0x457acc24, 0x4f922d8c, 0x98abe545, 0x4abf0881, - 0x54dbc9b0, 0x0001c9, 00000000 + 0x54dbc9b0, 0x0001c9 }, { 0x711a4a53, 0xb6851433, 0xa27baf15, 0x111c10f7, 0xc0f332f3, 0xcaf45fea, 0x5351a081, 0xfa9ff7c7, 0x5a80c74, 0xfa365565, 0xf6daccd3, 0xe58f742c, 0xdb5c3d7f, 0xfb33860a, 0x6850df93, - 0xa7a08b66, 0x0000cb, 00000000 + 0xa7a08b66, 0x0000cb } }, { @@ -42358,19 +42357,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa0b0b692, 0xd6754eb5, 0xb94abc97, 0x9492e5e9, 0x48ce012e, 0x71a10453, 0xefb54e05, 0x174f2a88, 0xaf89a1e3, 0xe45db408, 0x2469a2f1, 0x937b3ee9, 0xc4a1ca26, 0x3299e893, 0xf2e2cff2, - 0x181176a1, 0x00012a, 00000000 + 0x181176a1, 0x00012a }, { 0x96bc92bf, 0xb2abd57b, 0xb88f817d, 0xcc193903, 0x208f3074, 0x172636a, 0x9d95b98e, 0x987e387b, 0x8d296f10, 0xf355b8ec, 0x95410683, 0x6bef07d4, 0x497a84ba, 0xc491090f, 0x4e1bb34e, - 0x5bad4369, 0x000126, 00000000 + 0x5bad4369, 0x000126 }, { 0x4e194a7c, 0xdd812691, 0xfa72a231, 0x78d96420, 0x60cf895d, 0x1c1d8984, 0xfd45ac2e, 0xa24f7c7a, 0x2cf9cf5d, 0x8213d500, 0xb86267d7, 0x89dc3e53, 0x8417f587, 0xc996af0, 0x11432835, - 0x25a009b7, 0x0000c8, 00000000 + 0x25a009b7, 0x0000c8 } }, { @@ -42378,19 +42377,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7d3cb5c1, 0xa0f4c025, 0x2684623, 0x1872aa79, 0x3e0d4925, 0xa95d245b, 0xb560fbb9, 0x4ef0d73c, 0xffda0cc, 0x4c7edb27, 0xa96b1298, 0x58d04e6a, 0xfee0ca00, 0x18d6a705, 0x4c1ecef, - 0xad233af3, 0x00005b, 00000000 + 0xad233af3, 0x00005b }, { 0x4eadcfa7, 0xa6cbdda1, 0x5a13df65, 0xabe4be86, 0xb8fc0e4e, 0x9eb16095, 0xc22c5634, 0x22879fe7, 0x1950b2e0, 0xe36a5240, 0x1f7454fa, 0x69681b80, 0x87185123, 0xc93f71e8, 0x8c6a79b1, - 0xa4f6abdb, 0x000096, 00000000 + 0xa4f6abdb, 0x000096 }, { 0xf620074c, 0x86aac63d, 0x7fc9cd67, 0x85ca4ca6, 0x850e677d, 0x6e2f15fa, 0x219b68a5, 0xa68d34c, 0x3f1536bd, 0x16856e8, 0x538e9e10, 0xc1367af6, 0xbf8b631d, 0xb1b6c9f6, 0xc483a2c9, - 0xbaf9feea, 0x000047, 00000000 + 0xbaf9feea, 0x000047 } }, { @@ -42398,19 +42397,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x894029fa, 0x5bb616ca, 0x384767f6, 0x5f8a9bc5, 0x537e5169, 0x568d81d0, 0x29f45ec9, 0x68b3cb09, 0xfab02d34, 0xa5277d34, 0x649500ce, 0xad2bb829, 0x3650342, 0x4451c52a, 0xaf050934, - 0xb564216f, 0x000110, 00000000 + 0xb564216f, 0x000110 }, { 0x920dbf96, 0x4d24f72c, 0x1ffb3cd3, 0xfd043058, 0xa9a98392, 0x8a90310, 0x29f23ea, 0x6541853d, 0xe2931973, 0x5d907104, 0x69289154, 0xf5b40cf1, 0xe9c23a8f, 0x726056e0, 0x7a7da42e, - 0xf0d9d979, 0x000112, 00000000 + 0xf0d9d979, 0x000112 }, { 0x317a52b8, 0x7d44a847, 0x8102823e, 0x5bfd3967, 0x7ae95b6d, 0xc08f4e4f, 0x5d122ad1, 0x20e98be8, 0xd0b4d527, 0x788c052a, 0x1f18894c, 0x80906b86, 0x2966df3e, 0x3dfd78e9, 0xdbe7fd37, - 0x60c19cdf, 0x00008a, 00000000 + 0x60c19cdf, 0x00008a } }, { @@ -42418,19 +42417,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x290432ff, 0x8c523a3d, 0x7947dedf, 0x871fbac5, 0x78bd7d, 0x13cf778e, 0x33d963b6, 0x14dfe02e, 0xe4ca089a, 0xceaab8a3, 0xd25c2830, 0x8be53669, 0x1b5ce5f0, 0x9a37935a, 0xa9cd5c91, - 0x42d9dc89, 0x000030, 00000000 + 0x42d9dc89, 0x000030 }, { 0xb2ed58d0, 0x6c328bca, 0x34b0a5be, 0xfb126cbb, 0xa6192fca, 0xdf2dcefd, 0x72c62728, 0x9289132e, 0xa356071d, 0x4754b4d4, 0xbbae8d54, 0xabe365ea, 0x3ad596d0, 0x68560717, 0xb9ffd603, - 0xf23b31bb, 0x0000d5, 00000000 + 0xf23b31bb, 0x0000d5 }, { 0xd7a2e8a2, 0x5669036c, 0x8dee6c11, 0xeab10aaf, 0x9a459a42, 0x2bdde01d, 0x68db1c3c, 0x59019fd9, 0x32295014, 0xd7bdca8a, 0x38082fce, 0x9ef282c5, 0xd15f403d, 0x59815780, 0x110f2920, - 0x133330aa, 0x000125, 00000000 + 0x133330aa, 0x000125 } }, { @@ -42438,19 +42437,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x680ee295, 0x81f04b51, 0x1be78a8d, 0x143b4efd, 0xc92fdd68, 0xd87d1b0c, 0x992a92d, 0x3be8d5e9, 0x271a41a0, 0x9c20bba7, 0x1483f6b4, 0xa1ab3acc, 0xaf5ac863, 0xe5677fc1, 0xcd8b11d3, - 0x81b110c4, 0x000136, 00000000 + 0x81b110c4, 0x000136 }, { 0x1262987b, 0x59798aa5, 0x9d0bb55f, 0x87656d9a, 0xdecc25c4, 0xb4d4de02, 0xd2d26da5, 0x1702996b, 0x36ced30f, 0x29946ba7, 0x6f8d1c13, 0x862a19d2, 0xe8d3faf3, 0x44cca6e2, 0x2bcfa4b7, - 0xfd678aee, 0x000098, 00000000 + 0xfd678aee, 0x000098 }, { 0xe58a04e7, 0x29bbb42d, 0xa1fd8ab, 0xeddb420a, 0xa50c7b92, 0xead0ff2b, 0x5d7c2f19, 0x9f2ae3d6, 0x6eb65e01, 0xb765f56c, 0x675e5090, 0x18d939be, 0x28f26752, 0x205edcd6, 0x42f09cd8, - 0x5ee23aa5, 0x000127, 00000000 + 0x5ee23aa5, 0x000127 } } }, @@ -42460,19 +42459,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xce031de9, 0x73bdae91, 0x590e5b63, 0xa110610d, 0x85d7f11a, 0xc03c1730, 0x38f43d90, 0x7d154bdc, 0xc24bb3a8, 0xd36e37d4, 0xc8d3d086, 0xa80b6f33, 0xcf4c5a8f, 0x3f01f2ce, 0x77322318, - 0x5a456973, 0x0000b9, 00000000 + 0x5a456973, 0x0000b9 }, { 0xa129ba00, 0x48306ee2, 0xcb6dbebe, 0x5f3bb7ac, 0xdc1e7cf3, 0xcdcb86af, 0x4446ff2b, 0x963635a0, 0xf797d395, 0x80ba7ce0, 0xa713e2c8, 0xbb42030e, 0xf94492d6, 0x9bd29b4d, 0xdef089f1, - 0xd7a3c66b, 0x000165, 00000000 + 0xd7a3c66b, 0x000165 }, { 0x56e1c6f5, 0x8d6005ef, 0x60c65cc5, 0xa7937123, 0x869d6b5b, 0xecc014a2, 0xbe8ed7f1, 0x33f7e78c, 0xcd77d4c, 0xccc6c563, 0xc5b0b24b, 0xac95f39b, 0x9efa3a81, 0x878c5fa5, 0x806d5f34, - 0xc34d7c28, 0x000153, 00000000 + 0xc34d7c28, 0x000153 } }, { @@ -42480,19 +42479,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf7b6a10, 0x51d3e992, 0x632dc5c7, 0x4014650, 0x4ecdd4c1, 0xe42e4759, 0x42ac086e, 0x422082ed, 0xd6fca410, 0x887d1d3c, 0x36e3c64f, 0xe447b1f0, 0xa3d568f3, 0xf287e8fa, 0xe84295f, - 0xb7add4ce, 0x0000de, 00000000 + 0xb7add4ce, 0x0000de }, { 0xe5b41bbc, 0x1244cec4, 0x59249671, 0x5ee3f60f, 0xb4add445, 0x61411145, 0xe5506f43, 0x57c96065, 0x21d2fd15, 0xa6ad379a, 0x77412cfb, 0xfacec572, 0x7b459ce3, 0x6b2a4fc9, 0xf4bcf8f4, - 0xc68b3fbb, 0x00018d, 00000000 + 0xc68b3fbb, 0x00018d }, { 0xb7a61964, 0xac7dffb2, 0xc2ff5ecd, 0x65145dec, 0xf2157caa, 0xb48804a8, 0xb300d82f, 0xca4e6876, 0x69a6b647, 0x25c04a68, 0xa39bdd73, 0x10c57e3a, 0xff18d349, 0x183ffc3c, 0x80f6f1ab, - 0xb2399280, 0x000138, 00000000 + 0xb2399280, 0x000138 } }, { @@ -42500,19 +42499,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6960ec99, 0x1ceba809, 0xa9132d4d, 0x13f5b09f, 0xe47bc65a, 0x3d947421, 0xf8336b48, 0xeead1aea, 0xe5620419, 0x5e7cad72, 0xeb43ab35, 0x7f84987, 0x109578fb, 0x519cca02, 0xb5192e8b, - 0x1742b38f, 0x000155, 00000000 + 0x1742b38f, 0x000155 }, { 0xeba89bb1, 0x10161061, 0x74fa3956, 0x774fe050, 0x996ad18f, 0xf1f23553, 0x8aeaadd7, 0xd9b0aa14, 0x414e2e31, 0xfd7697a9, 0xa72c0ba1, 0xf075120c, 0x1c148e8e, 0x5ac87041, 0x44c92db3, - 0x705f3b56, 0x0001df, 00000000 + 0x705f3b56, 0x0001df }, { 0xbe52e6b, 0x601be8f3, 0xba6a5958, 0x6603eb38, 0x4f076743, 0x67f2b60b, 0xb78c8720, 0x431e0b9a, 0x369a3c4b, 0xdec48a5a, 0x9617e757, 0x99245b6a, 0xa2bfb902, 0x9ae1379, 0xdd57e8ab, - 0xc7784c33, 0x000056, 00000000 + 0xc7784c33, 0x000056 } }, { @@ -42520,19 +42519,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x35c1fea8, 0x85a96dd5, 0x9c0df6e9, 0x4073ec50, 0x3f6259e2, 0xccca7d04, 0xc8502ecf, 0x98744513, 0xb8d606f5, 0x267f78ef, 0x722a5d45, 0x13d6ed3e, 0xf5e0fe33, 0xd56261a4, 0xdb467fa2, - 0x16074c08, 0x0000c4, 00000000 + 0x16074c08, 0x0000c4 }, { 0x41d1e988, 0x361940bb, 0x1bca3e80, 0x3b07adb7, 0x76d3d795, 0xcb19cd0e, 0xa0134803, 0x36ceb129, 0x609587e3, 0x31089a9d, 0x372891b, 0x2358742b, 0x83bed3cf, 0xf08dbcda, 0xeb6948fa, - 0x9f4be73b, 0x00017c, 00000000 + 0x9f4be73b, 0x00017c }, { 0x7bf91eb4, 0xdffc90d6, 0x3ffaa38c, 0xa42f2dfb, 0x68857f7a, 0x40e42db, 0x37825fb2, 0xc1497ddc, 0xd5fefeb8, 0xb17656fd, 0xd4c7d64b, 0xf5ebbedd, 0x89f4444f, 0x7baf4c3a, 0xa70e10fd, - 0x2d6e7fb0, 0x00012a, 00000000 + 0x2d6e7fb0, 0x00012a } }, { @@ -42540,19 +42539,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5dda3278, 0xf04ed57f, 0x8c090bb6, 0x508d62be, 0x865c4838, 0xbd89533f, 0xb4913bfe, 0x4afa1309, 0x908cd646, 0xee309f90, 0x74a5f9ad, 0x9ded7322, 0x85ac95d0, 0x25bd66bf, 0xd87b59ad, - 0x3f85ed36, 0x0001db, 00000000 + 0x3f85ed36, 0x0001db }, { 0xc42db4e9, 0x78183d5f, 0x34569fdc, 0x22ad8f30, 0x43fd2ab5, 0x341a59b, 0x313d4de3, 0x5bb4591, 0x94d32467, 0xefe4dd17, 0xe28f05fe, 0x31d826be, 0x3d902732, 0xe8a5965a, 0x7d29c22b, - 0x2f085d52, 0x000020, 00000000 + 0x2f085d52, 0x000020 }, { 0x3ddd6a3b, 0x991a976d, 0xac82e84b, 0xe47512cd, 0xe717ad61, 0xd6cd0510, 0x42d54c7a, 0x503b0d25, 0x7d41737b, 0x695828c4, 0x2ad3d8d6, 0x8f55c117, 0xea034bc0, 0xc8273b12, 0x5f6a190a, - 0x302a017f, 0x00008c, 00000000 + 0x302a017f, 0x00008c } }, { @@ -42560,19 +42559,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4baca3f8, 0x833a780d, 0xb4334da4, 0x4dbe1104, 0xd564a472, 0xfc2aa80a, 0x634780d6, 0xa64dd550, 0x42d1d6cc, 0xfaded42f, 0x49385882, 0x455fccfc, 0x671c0931, 0xe289b00f, 0x686d27df, - 0x1f919776, 0x00012e, 00000000 + 0x1f919776, 0x00012e }, { 0x95798837, 0xcee699ca, 0x37c8c017, 0x221f47af, 0x4de4c292, 0x1135b5b5, 0x7718f3de, 0xeb997608, 0x24c472e8, 0x49b9df12, 0xc3993758, 0x411e0aae, 0x11abf725, 0x11338e71, 0xc33f9e72, - 0x2affce3e, 0x000088, 00000000 + 0x2affce3e, 0x000088 }, { 0xff512f22, 0x27515f27, 0xd824579, 0x50e13525, 0xa0477579, 0x9ce505f5, 0xb047296b, 0x26928a7f, 0x5703b3af, 0xc1d749ac, 0x7aa9feff, 0x3f462fa5, 0xe39b15e2, 0xa2dc2d26, 0x50a6f3a2, - 0xc59506cb, 0x0001a2, 00000000 + 0xc59506cb, 0x0001a2 } }, { @@ -42580,19 +42579,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa4131437, 0x43dbc6ae, 0xed4a6ab, 0x4f94fdd3, 0x9bb0ac7a, 0x2fb2c83d, 0xd200e88, 0x83c149b9, 0x494c8b1a, 0x72160c9c, 0xc7847f33, 0x2a2368d8, 0x1ee88da2, 0xbcd9925b, 0x11a3fa9f, - 0xdcf2b4f7, 0x0001f5, 00000000 + 0xdcf2b4f7, 0x0001f5 }, { 0xec448085, 0xf0d56923, 0xee9cc9eb, 0xff89de49, 0x6cadb82d, 0x1e0b759f, 0x6c8c843a, 0x118d54b6, 0x15f50505, 0x7ba610c1, 0x6a0bf972, 0x82a2fcd6, 0x288b095e, 0xf09ccdab, 0xc1fd1c01, - 0x3acf5aed, 0x000154, 00000000 + 0x3acf5aed, 0x000154 }, { 0x3d35fc29, 0x7946231c, 0x90836c48, 0x24301921, 0xe6118a0, 0xe15308e6, 0xf37f84a6, 0x2570ac33, 0x6dd46253, 0x257c9fc6, 0xc7764c65, 0x12b7ff27, 0xb142b1a8, 0xdb1c6681, 0x610159e3, - 0x2a661694, 0x0000ed, 00000000 + 0x2a661694, 0x0000ed } }, { @@ -42600,19 +42599,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2328cf65, 0xa79dc079, 0x3ccbec06, 0xdfe4ea29, 0x14559472, 0x731b20f0, 0x328f379c, 0x90e3dff8, 0x88ba537f, 0x314e6b3b, 0x869f4aa9, 0x8a53cd92, 0x74e4e041, 0x7846a078, 0xd9325e98, - 0x8d6dce59, 0x0001ca, 00000000 + 0x8d6dce59, 0x0001ca }, { 0xd62beb5a, 0x9ba6cf22, 0x98be215c, 0xceedc309, 0x3d6574eb, 0x3b21f30b, 0x78d4d045, 0xbb2bd973, 0xfd11c5ce, 0xf5a9ce87, 0x29b08526, 0x5f8544b9, 0xe0793493, 0x82a93ee2, 0x4f40966a, - 0x2775a6fa, 0x0000c6, 00000000 + 0x2775a6fa, 0x0000c6 }, { 0x523e643d, 0xe48af055, 0xbb61db8, 0x10b198a5, 0x36abdc2f, 0xd26319b0, 0x7eddfe6d, 0x78a0d7b2, 0x3db571f9, 0x79c1f996, 0x906eeec3, 0xe50932d3, 0xb57d67b, 0x150412e2, 0x3352cbba, - 0xd997614, 0x0001ab, 00000000 + 0xd997614, 0x0001ab } }, { @@ -42620,19 +42619,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x14b7819c, 0xdfbd05bf, 0xa152db9, 0x154ffa6, 0xcbf75be0, 0x2543e468, 0xf22a05b7, 0x6ca99057, 0xef91accc, 0x7b88e77f, 0x3be30c80, 0x1c7f51a4, 0x54443f59, 0x1dd73e21, 0xa7fd8934, - 0x10d51ec, 0x0000f4, 00000000 + 0x10d51ec, 0x0000f4 }, { 0xa591f205, 0x80e86ef5, 0xdfe42892, 0x49bbb17a, 0xffc8bd22, 0xe47add9d, 0xb8a16573, 0x3456c45d, 0x9cfe4a6b, 0x206c9dcb, 0x4aa289b2, 0xc6455f95, 0x51541e82, 0x97120e86, 0x91281f34, - 0xec8abcc1, 0x000067, 00000000 + 0xec8abcc1, 0x000067 }, { 0xa8456242, 0xeaeb1e9b, 0x56e63bed, 0x66fbad98, 0xc8e99c59, 0x68b6824b, 0xf0e7959c, 0xd4a5017, 0x378e36c7, 0xe829480, 0xb01764d7, 0x9bdfe2fc, 0x87b04702, 0x70c204e2, 0xf99fc3f3, - 0x9dd4d9ab, 0x0000bb, 00000000 + 0x9dd4d9ab, 0x0000bb } }, { @@ -42640,19 +42639,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe06cb3d3, 0x269c5c84, 0x63934956, 0x54fd3081, 0x98909af9, 0x93941727, 0xb6d2e63f, 0x42ccf75d, 0x689d9954, 0x2edd680c, 0x3c589464, 0x937f68b6, 0x85ce5e88, 0x724569d3, 0x96322f68, - 0x51227b30, 0x0001bd, 00000000 + 0x51227b30, 0x0001bd }, { 0xd4bf260b, 0xf8962ea7, 0xeb77193b, 0x93aeb2d5, 0xf2d00910, 0x3c9f7e4b, 0x6c854bf, 0xd26cb4b, 0x233e0b8d, 0x4e230969, 0x33e5ce48, 0x55368933, 0x79120098, 0x1842384, 0x9c607598, - 0x6a48e902, 0x000170, 00000000 + 0x6a48e902, 0x000170 }, { 0x37a8098e, 0xba6970bf, 0x52131444, 0x445ee5f, 0x67f6284f, 0x79750c78, 0x3dc70337, 0x2d766983, 0xfafd56a0, 0xd09108b7, 0x1d4d40c5, 0x335b80bc, 0x33ea29e, 0x95382cdd, 0xad214794, - 0xf2d1c845, 0x00005e, 00000000 + 0xf2d1c845, 0x00005e } }, { @@ -42660,19 +42659,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x232451a1, 0x682a4010, 0x2c82c165, 0xa8948beb, 0x72ed7208, 0x77d40345, 0x969313ff, 0x255fa0d0, 0x38bcedff, 0x6c5fa08b, 0x5d4cc412, 0xcf81b13a, 0xbd0db424, 0x5ec3807d, 0xffdd479d, - 0x80a99f08, 0x000175, 00000000 + 0x80a99f08, 0x000175 }, { 0x9d2f46b, 0xa935891a, 0x404b7025, 0x5285c9a0, 0x12cc7610, 0xe4500624, 0x20c0375f, 0x2daa80d5, 0x66092fca, 0x898c4088, 0x48693998, 0x451f38ad, 0x3905fc57, 0x95af252e, 0x8093c2be, - 0x68e45e4, 0x000022, 00000000 + 0x68e45e4, 0x000022 }, { 0x2cab2516, 0x48df908, 0x8b819648, 0x6923d961, 0xf95ab55b, 0xdbbda980, 0xa530920b, 0x4b1fdee5, 0x5236135e, 0x6ae63740, 0x5be07b0c, 0xf62359ba, 0xf2698c46, 0xe0917b28, 0x7fba3570, - 0x4030ea9a, 0x0001de, 00000000 + 0x4030ea9a, 0x0001de } }, { @@ -42680,19 +42679,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4c7ec5c6, 0x49835592, 0x7490b2a7, 0x877a47d6, 0x7c71d553, 0xff8c0133, 0x600507b, 0xf5ec9b68, 0xe80e3bea, 0x85d99d4e, 0xb5c6df54, 0x55b0d560, 0x4910405e, 0x5b90d987, 0x170f5895, - 0xe965cb40, 0x000172, 00000000 + 0xe965cb40, 0x000172 }, { 0x153644d5, 0x5b2f2d08, 0x4a931382, 0x4b0d95d4, 0x5b888f6a, 0xda1005b1, 0x8ed24fcf, 0xa859f444, 0xaafad231, 0x52fccdc6, 0x11a914ab, 0x9c03f102, 0x63eb63, 0xe6410d74, 0xc536d8f2, - 0x310778c3, 0x00015d, 00000000 + 0x310778c3, 0x00015d }, { 0x85f50a51, 0xb7765b12, 0x2213a6b2, 0xe7732a75, 0x9b7ba42, 0x8c317728, 0x92afe12a, 0x99c379fa, 0xb7d063bf, 0xf4c8268b, 0x84c79d0, 0xfe5966ea, 0x76bfc446, 0xe3afabd8, 0x3f2ac71c, - 0xf1f743cc, 0x000029, 00000000 + 0xf1f743cc, 0x000029 } }, { @@ -42700,19 +42699,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xca427090, 0x4701f4f, 0x4e54efed, 0xd4eb284d, 0x9963ac57, 0xfa558a1c, 0x6f5ca264, 0x5a5ee225, 0x3dca0199, 0xcac6dcb1, 0x71bae67a, 0x419890e9, 0xf23e3a32, 0xdd174ca6, 0x5e9ca322, - 0xf73a6e83, 0x00015e, 00000000 + 0xf73a6e83, 0x00015e }, { 0xf3c887b1, 0xfffe7abe, 0xdaa21444, 0xbfa5713a, 0x66bcf20, 0x1297256c, 0x381a50c9, 0x28af1eb, 0x7fdab559, 0x25ff7a3d, 0xb4c6b1e9, 0xc016fa1f, 0x2259c82, 0x2e72d378, 0xd10389d4, - 0x4f612ccf, 0x0000a2, 00000000 + 0x4f612ccf, 0x0000a2 }, { 0x2b28e138, 0x8731f664, 0xe43a3bc2, 0x60f1d054, 0x69e03b3, 0xc7ac1b6, 0xd442b35e, 0x110479ca, 0x85687f4d, 0xceee7204, 0xd083a92b, 0x59ec3a02, 0xad8ff7e5, 0xb4a519, 0x3a0e435b, - 0x244e5dd0, 0x000100, 00000000 + 0x244e5dd0, 0x000100 } }, { @@ -42720,19 +42719,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x59f54d95, 0xd23ab8ad, 0xaa07fba0, 0xc00393fd, 0xc45bce0, 0x8d4a012, 0xb3cdc75d, 0x327d6df6, 0x35fd7cbb, 0x496e3b2a, 0x16a5e23b, 0x1d38db46, 0xcd9b7aa7, 0xb214d465, 0xf4c0544b, - 0xb7c86a65, 0x000177, 00000000 + 0xb7c86a65, 0x000177 }, { 0x1e30843c, 0xb618bddd, 0x62f719bc, 0x7af8f0e8, 0x41ba89d9, 0x83f8b35f, 0x4fa1f9b6, 0x5fb8e4f6, 0xae75b0f3, 0x1c478c70, 0x28af40d6, 0x2dcd37d5, 0x4b8879f5, 0x145d8d5a, 0x94c51870, - 0xdfbcfad8, 0x0000ef, 00000000 + 0xdfbcfad8, 0x0000ef }, { 0xc8cdfda1, 0xb0b4deea, 0xe0502034, 0xa0cd768d, 0x72666d28, 0xf2c396c, 0xe47b3c72, 0xb372e2, 0xa4fd1747, 0xacd7cb9a, 0x9e2a18, 0x5359615a, 0x2995027e, 0x18807c17, 0x11e8cac8, 0x4db03ba8, - 0x00013b, 00000000 + 0x00013b } }, { @@ -42740,19 +42739,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21c92c5f, 0xf32ca39a, 0x2bd5f63e, 0xe30862a4, 0x3fd000c6, 0xc350d19f, 0xf0d0b721, 0x6423a97b, 0xb190f02e, 0xea1f1365, 0xb0621043, 0x476f41c3, 0x6c768cfe, 0xca5f2910, 0x2ad5bc92, - 0x4faa8a74, 0x00009a, 00000000 + 0x4faa8a74, 0x00009a }, { 0x9eb7a61, 0x6c48141b, 0x60e46a9d, 0x72df80eb, 0xf81cd1c1, 0x9eadd147, 0x7d565197, 0x5b38f3ae, 0x4494bff0, 0xc2ecddd9, 0x9c1f2fd3, 0x26d32e6b, 0x8dfc235d, 0x1ad410f2, 0xc4b35d57, - 0x6b42d8e9, 0x000184, 00000000 + 0x6b42d8e9, 0x000184 }, { 0xfd4e72cf, 0xacacbf6, 0x13d1c7f4, 0x667bccb8, 0xdcf5d5c4, 0x2c937218, 0x6663b5b6, 0xd5b02dc4, 0xa65ef26d, 0xd2a1c75f, 0x5272cf3f, 0x5007d122, 0xf4c98aed, 0xe5df1983, 0x54ce181e, - 0x10c303b0, 0x000143, 00000000 + 0x10c303b0, 0x000143 } } }, @@ -42762,19 +42761,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x848fc34b, 0x8b7881c2, 0xdcc7aebf, 0xf9def18c, 0x554f7981, 0xbb6c1536, 0x47e68f52, 0x15d8c6fa, 0x725601a3, 0x74a3ee28, 0xb8e06a29, 0x886950cb, 0xfc3d8aa6, 0x8054a4c0, 0xaa2dadac, - 0x6d612392, 0x00011a, 00000000 + 0x6d612392, 0x00011a }, { 0x54a10a3a, 0x5485cfc8, 0xf14f5314, 0x65de518, 0x9a270170, 0xc82d0f06, 0x768c62ed, 0xd1651d1e, 0x953c3200, 0x133aa7b9, 0x3c2d4fe5, 0x7a8091a8, 0x2d6abbfc, 0x913a42dd, 0xfcef2fe0, - 0xf522fe5f, 0x0001ca, 00000000 + 0xf522fe5f, 0x0001ca }, { 0x76ea826c, 0x637e230, 0xc1aceb6a, 0x7d1ba519, 0xa00e566a, 0xcc2c4366, 0x8b0c69a8, 0x4013adfc, 0x572629a8, 0x9b85dd0b, 0x20a7e4be, 0x26249712, 0x9d299026, 0x96521bb1, 0x4609752a, - 0x75493897, 0x00006b, 00000000 + 0x75493897, 0x00006b } }, { @@ -42782,19 +42781,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x247e25f2, 0xcd4d8fba, 0xe9e582b3, 0x9d4bd38a, 0x34ef8b11, 0x6ebdde27, 0x38b68fb8, 0x83511320, 0xa4a561db, 0xc161d95f, 0xa5a20582, 0xfc6d37d7, 0x446b00ef, 0xa9137a60, 0xf0feb3, - 0x8e25e436, 0x00011b, 00000000 + 0x8e25e436, 0x00011b }, { 0x2a891f7, 0xb88e50a9, 0x248a5760, 0x837cde18, 0xc981df01, 0xb50fb679, 0x5fcf48fc, 0xbdee379, 0x886d5423, 0x6b9aa450, 0x3552cca4, 0xa0a08865, 0x694b5f84, 0x2a58af72, 0xdf8bb5c5, - 0x14c1de64, 0x0001cc, 00000000 + 0x14c1de64, 0x0001cc }, { 0xeb2a49bc, 0xe398fd03, 0x723ba7e9, 0x7d336ae8, 0xdc95c642, 0xf1c1a79, 0xff089a82, 0xd0b39816, 0xc3991ced, 0x4a3b284e, 0xf3066b05, 0x8c2ec3a5, 0x8d95a505, 0x79592793, 0xc2b3c443, - 0x8af77e31, 0x0000f1, 00000000 + 0x8af77e31, 0x0000f1 } }, { @@ -42802,19 +42801,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xde06752e, 0x29510116, 0xe4b49da9, 0xe6913f9e, 0x20a5ea92, 0xc48b7342, 0x2de7a27d, 0xd1bfb8, 0xc8f71f6e, 0x6a806562, 0x7c7a52e7, 0x4528ee6, 0x7bb7bee, 0x8ef03ea5, 0x5c3533e1, - 0x4f48b7b5, 0x00010e, 00000000 + 0x4f48b7b5, 0x00010e }, { 0x64d0cc50, 0xed2213c2, 0x5a47bbb5, 0xb7cf0daa, 0xf54d7c2a, 0x63446740, 0xd5587f2c, 0x6e1a421a, 0xfa8dd5dc, 0x6303acc7, 0xb4a4b3c2, 0xc2669224, 0x21d28524, 0x6e6bbc28, 0x4a4fdda7, - 0xa3cb9b16, 0x0000ec, 00000000 + 0xa3cb9b16, 0x0000ec }, { 0xb1ea08ea, 0xd6f9f8d5, 0x9e0a9fe5, 0xd38e3032, 0x4d96a3fd, 0xfa623cb, 0x35abfcef, 0x18b03c2d, 0x2ec89172, 0x996f3c84, 0x630f33b1, 0x650f73aa, 0x15bdcf8d, 0xfa7078f4, 0x274bf314, - 0x11d7434e, 0x000022, 00000000 + 0x11d7434e, 0x000022 } }, { @@ -42822,19 +42821,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdc6cfd7c, 0x67aeb836, 0xed891979, 0xbccdfd88, 0xc02e131f, 0x207f709e, 0x1372a48e, 0x23f03658, 0xdef24218, 0x60d3a525, 0xe9be022c, 0x844a87a9, 0xc9b25a16, 0x8408bac7, 0x10dddcbb, - 0xd40411d6, 0x00003b, 00000000 + 0xd40411d6, 0x00003b }, { 0xb8af88ea, 0x3f359400, 0x6a2c46b8, 0x98773d2a, 0xb3386c15, 0xcb522456, 0x136b5e25, 0xb48cca91, 0x274dbd13, 0xe15341ef, 0x6927d40c, 0xff52be84, 0x97e7f08e, 0x2a5610c5, 0x9e3c328f, - 0xf1a18eae, 0x000059, 00000000 + 0xf1a18eae, 0x000059 }, { 0xe194ddec, 0xe78c279b, 0x9c2638d5, 0x8ded1fd3, 0x48de5423, 0xa3b07bcc, 0x96a5a476, 0x4ab440c, 0x56831147, 0xf2351924, 0xe1336cd7, 0xe034a023, 0xe8a6a4c3, 0xa3b8e6ae, 0xaf4f9442, - 0x9481c7c4, 0x0000f7, 00000000 + 0x9481c7c4, 0x0000f7 } }, { @@ -42842,19 +42841,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x743cdc35, 0x3f747db2, 0x6fb98b4c, 0xf530d8ad, 0x5150ad19, 0x14f9f49a, 0x91ad52df, 0xd1dd9b53, 0xc69fa454, 0x60120422, 0xeabfacfb, 0x33cae5da, 0x6332f00d, 0x1b15f3a1, 0xb974d825, - 0xf3a726bc, 0x0001ef, 00000000 + 0xf3a726bc, 0x0001ef }, { 0xbb1a6746, 0x39aa8b5d, 0x36dd8142, 0x5750048b, 0x4cc676bf, 0xffaa608b, 0xf9cdffad, 0x7cdd54a0, 0x33543311, 0xbb295fd9, 0xa8bece7f, 0xe4bf9b36, 0xf78ef3f5, 0xd9df6a6, 0x506a37bd, - 0x7ed58d95, 0x000038, 00000000 + 0x7ed58d95, 0x000038 }, { 0x379a1514, 0xaaedf2ff, 0xad68ba9d, 0xdf3965d, 0x8a8776ce, 0x489960a5, 0x5ba1bb78, 0xd5d98be3, 0x54c5b7f3, 0xf0885b3c, 0xeb4fd23a, 0xb3d03ed2, 0x31efbf2d, 0x81db11a, 0x34005e75, - 0x924edd1d, 0x0001b9, 00000000 + 0x924edd1d, 0x0001b9 } }, { @@ -42862,19 +42861,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a02193a, 0x2a3fd694, 0x9f029dc6, 0xa3736137, 0xbf66221a, 0xb861b701, 0x4c45ba05, 0x8e9d583d, 0xfefbbbc2, 0xfe9fdfcc, 0xa8135c4a, 0xc1d16cd3, 0xf0ae3096, 0x3cffee0f, 0xd9a53f78, - 0x19b83c8d, 0x0001b7, 00000000 + 0x19b83c8d, 0x0001b7 }, { 0x9be338f5, 0x79bfc575, 0xaa90e599, 0x73b2fdf3, 0x456e76d4, 0xd93bfb80, 0xeefbc059, 0xc7b5b69c, 0xefc52a2d, 0xdef36397, 0xd3c8ec49, 0x5e2e35db, 0x942829, 0x2b4a89ec, 0xd5f978b5, - 0x7875515f, 0x00019c, 00000000 + 0x7875515f, 0x00019c }, { 0x7213f279, 0xa9f3726, 0xe9fcf3f5, 0xef602a14, 0x12d5ac8c, 0xad07216d, 0xf35442e6, 0xd862100f, 0xc39f392e, 0x8c91d6db, 0x1ca32c2c, 0xc3ca4355, 0x178ea75a, 0x207a9b25, 0x597cdb47, - 0x5d0d2426, 0x000078, 00000000 + 0x5d0d2426, 0x000078 } }, { @@ -42882,19 +42881,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x310d85c3, 0x49816807, 0x7233d54e, 0x1077834e, 0x62f61503, 0x3bc68615, 0x6a57e302, 0x67ac8545, 0xd9720ed3, 0x16b16cca, 0x91237888, 0xe62a2c54, 0x629fba08, 0x96aab4aa, 0xeb7bb8b6, - 0xeaf06625, 0x0000bd, 00000000 + 0xeaf06625, 0x0000bd }, { 0xbf34ee6a, 0xa9f60940, 0xa096282d, 0x5327b18b, 0xcb0bf85b, 0x685b3410, 0x360aea32, 0xf0f10acb, 0xb96939d4, 0x2db7de55, 0x16ef4cef, 0x61467411, 0x7252b7e, 0x4cfaa469, 0x4869b45c, - 0xe31057f8, 0x0000ad, 00000000 + 0xe31057f8, 0x0000ad }, { 0x367217c3, 0xa8c10e5f, 0xbf38bf56, 0xc808ccf9, 0x108d10cb, 0x67930bd1, 0xd5fd9634, 0x96411499, 0xea4ef5da, 0x567afb46, 0xd1ead916, 0xd6ead2ef, 0x39f963b9, 0x3ed61b8f, 0x345a34e0, - 0x179e899c, 0x0001ab, 00000000 + 0x179e899c, 0x0001ab } }, { @@ -42902,19 +42901,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcfda0560, 0xf48db050, 0x1ec8c818, 0x257df18, 0xcd843292, 0xcd486ab6, 0x2aec3195, 0x94f770fc, 0xa267ef48, 0x40a26b97, 0xe22f19d7, 0x48cf4dcf, 0x966a2231, 0xc5aa7877, 0x865649bb, - 0xcccf9525, 0x000194, 00000000 + 0xcccf9525, 0x000194 }, { 0xd5db31ee, 0x33c1e3e8, 0x97aeb94d, 0xa75b574, 0x9460c109, 0xf83c648e, 0x6f1763cd, 0x9f698e41, 0x75d20ea, 0x69e8adc6, 0x63815b56, 0xcd076ccf, 0x36adebd6, 0x237ad24c, 0xb603974e, - 0x2de33aa8, 0x000194, 00000000 + 0x2de33aa8, 0x000194 }, { 0x7aef5ef5, 0x515143ef, 0x7bda7dc, 0xb2faa0e7, 0xea4b2ec1, 0x8cce1e2c, 0x3c5d4891, 0xf735fa66, 0x235b561, 0x5e731c3, 0x7a70d0c5, 0x3ad3024b, 0xc7d78288, 0x21a2533d, 0xac399a98, - 0xe829a347, 0x000191, 00000000 + 0xe829a347, 0x000191 } }, { @@ -42922,19 +42921,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x475bc6d7, 0xf777f247, 0x264e3387, 0x47028187, 0x7848c3ee, 0x60e4723f, 0x33ce145e, 0xd33ab51, 0x8d8f70f3, 0xabcb120, 0x96e4a5e6, 0x8214512c, 0x76bcf093, 0x7b106192, 0x1f9ca976, - 0xa9abe771, 0x0001c3, 00000000 + 0xa9abe771, 0x0001c3 }, { 0x54651ff3, 0x4eaa1652, 0x5d2bdd70, 0xdfae374d, 0x8abb120, 0x9c23b5ed, 0x76fc535f, 0x5a4f6e06, 0x36a2db15, 0x4ff289f7, 0xd9518483, 0xc204834, 0xa4ca9544, 0x56e664d6, 0x6c58d518, - 0x97db2d56, 0x0001f1, 00000000 + 0x97db2d56, 0x0001f1 }, { 0x60f632ee, 0x87d0dee1, 0xf87569e9, 0x34129277, 0xd309140c, 0x7a04ed21, 0x278869f8, 0x25a2b68d, 0xb69acf77, 0x42d51872, 0x31c4ec22, 0xa8dedcfc, 0x548c78a4, 0xd0c0b96c, 0xb74324aa, - 0xc50434fa, 0x00012e, 00000000 + 0xc50434fa, 0x00012e } }, { @@ -42942,19 +42941,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9a57b103, 0x3e368fcc, 0x3a996020, 0x7bca2b6f, 0xc4186957, 0x758a1a66, 0x590e7b1f, 0x9938c3f9, 0x494c7100, 0x2dcd7b89, 0x2b7baf66, 0xb78426c6, 0xc316378f, 0x92590a88, 0x464471c2, - 0x36623a87, 0x00016c, 00000000 + 0x36623a87, 0x00016c }, { 0x77b1500b, 0x5cd76443, 0x4d57738c, 0xe93b25e1, 0x6768176, 0x1d174ae3, 0x41b353bb, 0xd35e873b, 0x90c299d5, 0x2ea835c, 0x489cf8c, 0x428d0e00, 0x84857b49, 0xf02273a9, 0x323cc8f, - 0x7d9076a1, 0x000183, 00000000 + 0x7d9076a1, 0x000183 }, { 0xedd8ae13, 0xf2c039e3, 0x6c437673, 0x4cf45ac, 0xc61e462f, 0x8c3ba992, 0x86995560, 0xdfb84b1c, 0xfb4ad7c1, 0x73c0447f, 0xa7db5328, 0xbe14ad39, 0xd3422403, 0x97d8119a, 0x58d52958, - 0xfc1715fe, 0x0001cf, 00000000 + 0xfc1715fe, 0x0001cf } }, { @@ -42962,19 +42961,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe418959f, 0x3f3e34d2, 0x21ae6909, 0x697cf9ba, 0xb0459709, 0x62debc60, 0x4a44d5f1, 0xa9540847, 0x69217928, 0x5ad55ec4, 0xfa0334e4, 0xc7f2757e, 0x57aafd03, 0x500be81a, 0x79b863f9, - 0x90da7151, 0x0001dc, 00000000 + 0x90da7151, 0x0001dc }, { 0x113b522c, 0xf243e8c3, 0x7a299248, 0x1a7d8fc4, 0x6bff0087, 0x187a5e2d, 0x991eb718, 0xee70fc8, 0x1e1e231d, 0xc6006f06, 0xfb1209f0, 0x6211c382, 0x262883e5, 0x1d58afb6, 0x805d45e0, - 0x6533a5d0, 0x000144, 00000000 + 0x6533a5d0, 0x000144 }, { 0x59d9cb02, 0x2dd1ae9f, 0x58f5c3f1, 0xe4cb529, 0x8b06027d, 0x9e8b53a2, 0x9df47594, 0x8b501e3a, 0x2472063d, 0xfc9abaee, 0xccc68004, 0x88804f33, 0x3e564014, 0xf23bffc2, 0x42cb5db7, - 0x6f14448d, 0x0000e7, 00000000 + 0x6f14448d, 0x0000e7 } }, { @@ -42982,19 +42981,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcc20781a, 0xe77f54f, 0x1cc9b226, 0xd21304cb, 0xa06eb37b, 0x4bf5018b, 0x7233fc31, 0x4e976b78, 0x8362e8c8, 0xa6acbef4, 0x4e2cde00, 0x7088fa27, 0xc545a59, 0x7d0eafd8, 0xf6806d18, - 0x41846494, 0x000001, 00000000 + 0x41846494, 0x000001 }, { 0xa569261, 0x3e1c4c00, 0x42a7520, 0x520e97c5, 0xde2b5517, 0x37c9ca07, 0x1fadd898, 0x5d95bb85, 0xa90ca8a9, 0x3545f832, 0x56a06d2b, 0x49608b0a, 0x91f77b33, 0xcccf071d, 0x73473978, - 0x615d87ce, 0x000025, 00000000 + 0x615d87ce, 0x000025 }, { 0xa81f609e, 0x24ee7bb4, 0x56442ea5, 0xcdadf665, 0xbecccdc2, 0x56baac3c, 0x15052bbd, 0x3f2c0b3c, 0xc648ffc2, 0x59c6a163, 0xba700304, 0xfa2c0967, 0x36581b32, 0xd508d04b, 0xac03fe5c, - 0x6c907136, 0x0000f1, 00000000 + 0x6c907136, 0x0000f1 } }, { @@ -43002,19 +43001,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x314779a0, 0xa2a7346e, 0x7db3ba8c, 0x742a2e86, 0xa226a3b3, 0xda91ccdc, 0x29c5c0d9, 0x4e6cf8f4, 0x7f98d5f2, 0x77c21a7d, 0x75d3ff7b, 0x8281c950, 0x98d7255a, 0x98e3b273, 0xbf4dc790, - 0x2fda0bdb, 0x0001b6, 00000000 + 0x2fda0bdb, 0x0001b6 }, { 0xa2c2b153, 0x820ced8f, 0x12ac6026, 0x6ba7aaa9, 0xc9fe3994, 0x2878f181, 0xe2d5df90, 0xa1331d1c, 0x3836c4fb, 0x9d4f00d7, 0x61abe3c5, 0x9da44059, 0x4defa7c, 0x600c9388, 0x8ddb1a65, - 0x35e409d9, 0x000033, 00000000 + 0x35e409d9, 0x000033 }, { 0x4ef4c55f, 0xad67aa12, 0x95020b43, 0xf9532562, 0xb16686cc, 0x36b34220, 0x6678fde4, 0xe0c0d3b1, 0xc692bf58, 0x21bd613c, 0x120d9568, 0xf11d8b1, 0x39c207b1, 0xda733a0e, 0xb18ec29b, - 0xd5bef7b9, 0x0000fe, 00000000 + 0xd5bef7b9, 0x0000fe } }, { @@ -43022,19 +43021,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x733a156a, 0x2a8cb9ba, 0xba875051, 0xf66eb99b, 0x851a79fc, 0x7dd5ddda, 0x3e10c478, 0xd3b2b1d0, 0xeb4d44b0, 0x2279c562, 0x478910c9, 0x83007947, 0x3dc87b28, 0xbab8f79b, 0xd04a6475, - 0x5a03cecb, 0x0001c2, 00000000 + 0x5a03cecb, 0x0001c2 }, { 0x673d420b, 0x2cb86470, 0x3a26023c, 0x567b715, 0x9cb29dec, 0x76aebc92, 0x5489d5b2, 0x4c1892ee, 0x91900810, 0x30c799be, 0xc2176745, 0xd8a7691, 0xb5a12eb8, 0x4e276160, 0x182ba135, - 0x182a6ac4, 0x0000eb, 00000000 + 0x182a6ac4, 0x0000eb }, { 0xa0d7f863, 0x6c9f57d0, 0x4ca1b437, 0x45d4e031, 0xb3aee7e3, 0x49e8900d, 0xf9a797d7, 0x48f682ab, 0x808a1bcf, 0xf0700d09, 0x1f6ae1fd, 0x7de80f55, 0xa37f1ddb, 0x99cfcc1a, 0x38a71ea5, - 0x8c67562a, 0x000050, 00000000 + 0x8c67562a, 0x000050 } }, { @@ -43042,19 +43041,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb21cf19a, 0x825b1880, 0xe2d7f6cd, 0xa975f746, 0x18afae21, 0x6fa88561, 0x92ac79d0, 0x6b77eead, 0xdf7e59ce, 0xf56fc66b, 0x2f06fc5f, 0xf4e9f7e, 0x33182e2f, 0x4ff2f007, 0xbfe98e06, - 0xf5975686, 0x00011e, 00000000 + 0xf5975686, 0x00011e }, { 0xa12cbe16, 0xf7c7c648, 0xbdcbf1a6, 0x61b07e82, 0x64a91c52, 0x77fbcf8a, 0xa2e36329, 0x14260719, 0xc1022ac2, 0xe9df8091, 0x98f25ef4, 0xec535a33, 0xf354e4dd, 0x4de719a3, 0x4ec237d4, - 0xa7707a9b, 0x00001c, 00000000 + 0xa7707a9b, 0x00001c }, { 0xf600a09d, 0x3dba3a48, 0x35f2111a, 0x9911438, 0xef4ee07a, 0x608cef21, 0x9974a030, 0xd4ec6db1, 0x45a25fb1, 0xe3916bb4, 0xa769c992, 0x91153625, 0xe02c3ec3, 0xc06e5be, 0x5d5507c7, - 0x2b6326a7, 0x00010c, 00000000 + 0x2b6326a7, 0x00010c } } }, @@ -43064,19 +43063,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26539ab4, 0x52bc8699, 0x7480318, 0x875aa7ad, 0x8a72b69a, 0x968b3fda, 0x668df866, 0xe52a3c7f, 0x5ef403f9, 0x97787b73, 0x56b2eca7, 0xb1f97780, 0x88b6b50a, 0xa31ee375, 0xc375ee7b, - 0xed91062, 0x0000e6, 00000000 + 0xed91062, 0x0000e6 }, { 0x267f43d3, 0xac3a2312, 0x91bef1b7, 0x4803952b, 0x201b5e03, 0x72c23db6, 0xd0c38114, 0xff6f01b9, 0x9a73e6b6, 0x6e54891d, 0xf442b7a3, 0xed0d959c, 0x4bfb2ee1, 0xc9f0f6c9, 0xcb7d7de7, - 0xda1fa175, 0x000199, 00000000 + 0xda1fa175, 0x000199 }, { 0x9db02f97, 0xb53cecb3, 0x8e552a3e, 0x2cbbfa35, 0x40738362, 0x7e598ef9, 0xe1d421a0, 0xeb92323f, 0x66af6ad5, 0x40912449, 0x30c11e30, 0x94fce52, 0x53b18d14, 0x359ee2ed, 0xa1bd4cd7, - 0xc01cfd28, 0x0001da, 00000000 + 0xc01cfd28, 0x0001da } }, { @@ -43084,19 +43083,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4de27c9d, 0x7e3bd874, 0x3534b0d4, 0x947babc, 0xd9d76f77, 0xf0aab704, 0x14242c37, 0xff65d8fd, 0x3aac9ec4, 0x854e3f33, 0x7379bf5f, 0x6ede8323, 0x86f32a74, 0xc88ee055, 0xafee1ac1, - 0x4790da2b, 0x000165, 00000000 + 0x4790da2b, 0x000165 }, { 0xcda63008, 0xd4225cb0, 0x634c66a8, 0x5beccb5c, 0x1b3162d4, 0xb443e138, 0xd1b58277, 0xe352985e, 0x4a005b40, 0x73b00c2a, 0x55e93f22, 0xa776edf, 0xa53c4971, 0x5bb131d, 0xc34577a9, - 0x6df8a15, 0x00001b, 00000000 + 0x6df8a15, 0x00001b }, { 0x25d96ce0, 0xfdb15f1, 0x30d959d6, 0x1c54cafd, 0xff8912a2, 0x9e7b1c08, 0x99476b2, 0xe754bb08, 0x4e02142c, 0xccabab4d, 0xe960620f, 0xd37f8dc5, 0xfee19eb, 0x33e4212, 0x5d672deb, - 0xec32fe96, 0x000083, 00000000 + 0xec32fe96, 0x000083 } }, { @@ -43104,19 +43103,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6a0da1e0, 0x8e2c2693, 0x538311fc, 0x32a62ce4, 0x9c35897c, 0xbbf9489, 0xb6d1b116, 0xf5172e4b, 0xea200b8a, 0x73ef5583, 0x87523ce7, 0x7ad4785b, 0x499f7483, 0x9d00295a, 0xc6f6e269, - 0xb753e5ec, 0x000086, 00000000 + 0xb753e5ec, 0x000086 }, { 0x6637f76f, 0x6cb3cc2f, 0x4f655894, 0x470050e2, 0xe6d46bea, 0x4c8f6076, 0x7637a349, 0x4ed97d16, 0x3436184d, 0x5c95ea81, 0xa90aae67, 0x1e4dd6db, 0x3e51919e, 0xe6beb1aa, 0x9927d50d, - 0x83c81559, 0x000054, 00000000 + 0x83c81559, 0x000054 }, { 0x10fe34c8, 0x12e1a004, 0x4b012cef, 0x4ab7e6f, 0xf2fa35e3, 0x556033b7, 0xee1c1727, 0x84478d35, 0xf83fb68f, 0xe72cce26, 0x791170c5, 0xd1ce009f, 0x662b5910, 0x48a970af, 0xc976fa91, - 0x3258904f, 0x00008a, 00000000 + 0x3258904f, 0x00008a } }, { @@ -43124,19 +43123,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf0507a6, 0x323ecc08, 0xcd7730f7, 0x2df471ec, 0x43888d13, 0x64164a17, 0x8b63b530, 0xee497efb, 0xfffdbd4f, 0x71109759, 0x5c3b979a, 0xb6a980e9, 0x444c9180, 0xdb2381d4, 0x82c8a00c, - 0x5ae70bec, 0x00002a, 00000000 + 0x5ae70bec, 0x00002a }, { 0x56fee636, 0xceb7837e, 0xdda1b3e2, 0x6986101b, 0x5bf1ec27, 0xba1a6cc2, 0x8a18dd6b, 0xcb8c88e1, 0xf5600786, 0xf8df43ec, 0xfb5b8833, 0xf31c4257, 0xd0d9cbc8, 0x38eb6b3d, 0xd4452f2c, - 0x40537ad0, 0x000155, 00000000 + 0x40537ad0, 0x000155 }, { 0x9d7c1777, 0xcb15a3e, 0x1de3a840, 0xd6e47098, 0xe867b2b7, 0x95ec28de, 0x6df7eda9, 0xf72c90bc, 0xc5f26e4e, 0x41a9d5ec, 0x64f4a8db, 0xce2ee3ad, 0xd4c63a03, 0xf0862b16, 0x5e19aff5, - 0xc0c4706d, 0x0000fd, 00000000 + 0xc0c4706d, 0x0000fd } }, { @@ -43144,19 +43143,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x66859eac, 0x20b836a3, 0xcef54e82, 0x38705ac6, 0xbe0840a6, 0xdcaeb735, 0xa78008bb, 0x7a590fab, 0x374376, 0x58ec0763, 0x64ddebc, 0x44651c87, 0x6a2f8cef, 0xba67f9e3, 0x7d45006b, - 0x31a4001c, 0x0001e1, 00000000 + 0x31a4001c, 0x0001e1 }, { 0x79a29eb4, 0xf2ded656, 0x8abacc7f, 0xc7f64616, 0x76bc7b6f, 0x2a32d09, 0x5a6b3b38, 0x5dfb208d, 0x3b1b0076, 0x748a3862, 0xb117ecd0, 0x3d07ebf, 0x42c093f8, 0x8ebb09af, 0xa3718fec, - 0x7e259ddb, 0x00015a, 00000000 + 0x7e259ddb, 0x00015a }, { 0x76fc125a, 0x80a333e1, 0x5b70b437, 0x42f10f2f, 0x58ef9fc7, 0x27a88f0, 0x7962d3b4, 0xb582a0ea, 0xcff1b7b2, 0xa5bccf0f, 0xf51ebd68, 0x668a5755, 0x3d174f1c, 0x2a1f8600, 0x208bd83e, - 0xda32e841, 0x000117, 00000000 + 0xda32e841, 0x000117 } }, { @@ -43164,19 +43163,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8e0c9530, 0x6b5c344a, 0xd8af0372, 0x2fb16efb, 0xe1e5e07d, 0xb8136eb0, 0xa18cae60, 0xf96fd61a, 0x5e55a5ac, 0xa2e2b4ae, 0xf60ee113, 0x1ec811ca, 0x82240b83, 0xc2f8d0c4, 0x8b1bf80b, - 0x20a26ea9, 0x0001dc, 00000000 + 0x20a26ea9, 0x0001dc }, { 0xe5c6745d, 0xb6481b4a, 0xba212e09, 0x5a76e81b, 0x1be5f47, 0xe4d29939, 0xddce6ba6, 0xeabedadc, 0xb96744, 0x1fd9940e, 0x86daa88d, 0x229ed43a, 0xc0481e32, 0x3bde595a, 0xa50c98e2, - 0x3b824d70, 0x00002b, 00000000 + 0x3b824d70, 0x00002b }, { 0x76356cb, 0xdb455b02, 0x399bf59f, 0x9769697d, 0x8c61672c, 0xeca4370f, 0x8d1cd145, 0xb2b35b08, 0xa3ac8f4b, 0x2a5e0d14, 0xc0e1ce9c, 0xdcbb3722, 0x8c689a58, 0xa7f59298, 0x8476e9e6, - 0x47394f33, 0x0000a9, 00000000 + 0x47394f33, 0x0000a9 } }, { @@ -43184,19 +43183,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x73f147a0, 0x749685bd, 0x9c41a1c, 0x6aecf144, 0xbd64e7e7, 0xd7987db8, 0x6c89e382, 0xa93d7c1e, 0x1ddecf33, 0xc973ff0d, 0x189d7ffd, 0x20eff3e5, 0x81166d87, 0xe3fba6f6, 0xf753271c, - 0xe811da2f, 0x0000ac, 00000000 + 0xe811da2f, 0x0000ac }, { 0x40a90601, 0x80eab378, 0xccf74e46, 0xafe4ffb, 0xeb035106, 0xad902f6b, 0xffcb90a, 0xf83f052d, 0x9641287c, 0x45c1cf16, 0x2916429b, 0x64f64d2a, 0x57e93f2, 0x771fd51, 0x5fc31a1c, - 0xf0f95768, 0x00011f, 00000000 + 0xf0f95768, 0x00011f }, { 0xf475500d, 0x431d83be, 0xbc26d096, 0xcd1eece, 0x6bb5e4a8, 0xae2ba597, 0x996e73de, 0x943857fc, 0xecb123a7, 0x4e9ed9ea, 0xe41ace99, 0x49a36a43, 0xa77e9dfd, 0xf0e9c682, 0x98e10d52, - 0xaa2d23c, 0x000011, 00000000 + 0xaa2d23c, 0x000011 } }, { @@ -43204,19 +43203,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb6017fc, 0xb0086f9e, 0x31678a6e, 0x5825d71f, 0xf065e1ef, 0x19a3660a, 0x545031e6, 0x121e4f2e, 0x972d12e2, 0x2f8262e8, 0x4ce1baff, 0x4e3373f1, 0xe3489f20, 0x6646c9fa, 0x678aa8d8, - 0xf8bc2830, 0x000120, 00000000 + 0xf8bc2830, 0x000120 }, { 0x43e496e9, 0x75c5c318, 0x81dadf04, 0xe1a5a2fa, 0xeed6b3e6, 0x833ef8ae, 0x100a18d9, 0xfb564048, 0xa981a867, 0x48103da4, 0xfe06bda0, 0x7d3aa4e6, 0x3c180f99, 0x121bd633, 0x591454ab, - 0x12f35fc, 0x0001bb, 00000000 + 0x12f35fc, 0x0001bb }, { 0x6390dbdb, 0xad5f0529, 0xe6c430be, 0xfcee0422, 0xc50189c, 0x16c31fe0, 0xa323838c, 0xc34216f0, 0x42959423, 0x69a1c82e, 0x788dc03a, 0x2fc1a018, 0xf9299ab5, 0x2034eb8d, 0x9b00a804, - 0xf7810c3d, 0x00008e, 00000000 + 0xf7810c3d, 0x00008e } }, { @@ -43224,19 +43223,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x16134638, 0xbae1e31d, 0x40943df5, 0x233fa76b, 0xfdd33bdb, 0x2fa08a8, 0xc1b2413e, 0xbacbd213, 0x7931495b, 0xcd2b7eb7, 0x37ea66a1, 0x10017009, 0xa0881473, 0x8211e86a, 0xf2760371, - 0x914a1bf2, 0x0001ca, 00000000 + 0x914a1bf2, 0x0001ca }, { 0x867ea69, 0x75331b44, 0x69c49d21, 0xd5addd16, 0x5f2a005c, 0xc5e20944, 0xda0d19f8, 0x72306852, 0x270dc27, 0x5d08fc90, 0xc3eb207f, 0xae96d796, 0x87f71d04, 0xdc757548, 0xffc716cb, - 0xf76fb8a2, 0x0000a5, 00000000 + 0xf76fb8a2, 0x0000a5 }, { 0x2ac51542, 0x65e4af3f, 0xfe7b9ddf, 0x5c232ae9, 0x3edc1d29, 0x9f84b0dc, 0xb8122c5e, 0x27a1a7a1, 0x6e659e32, 0x27c52c5e, 0x150c46a8, 0x8b8cbfe3, 0xea43b8e8, 0xbe6e81e7, 0x61f7edd8, - 0x8011f5c7, 0x0001f5, 00000000 + 0x8011f5c7, 0x0001f5 } }, { @@ -43244,19 +43243,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa335ebf6, 0xe4d9ba17, 0xd22eccf7, 0xbff51b66, 0xff49cfb4, 0x8e9f24a2, 0x2b2b7543, 0xa45dafe2, 0x6dbbb321, 0xcb0cc8ae, 0x80450e4e, 0x9a016575, 0x70c6e655, 0xe63cc324, 0x369456cc, - 0x82263d37, 0x000178, 00000000 + 0x82263d37, 0x000178 }, { 0x2c858171, 0xa42c244e, 0x33862807, 0x45d120ac, 0xd7692952, 0xac705eff, 0x100faa27, 0xd8340c1, 0xcf82ac7a, 0xd1d8e9c, 0xf3aa8380, 0xe736e7db, 0xf07145e3, 0x38431b36, 0x995a4232, - 0xd0fabb07, 0x0001ae, 00000000 + 0xd0fabb07, 0x0001ae }, { 0x46b2583d, 0xa9206cdb, 0x5382f07a, 0x68f6165c, 0x4059c72f, 0x57b00cba, 0x89124f7d, 0xf93125f2, 0x38e906c8, 0xc4ef8426, 0xfaab84cd, 0x3ccd3dd, 0xa7686400, 0x7f912e9b, 0xb9d04396, - 0x98ac3ddb, 0x000136, 00000000 + 0x98ac3ddb, 0x000136 } }, { @@ -43264,19 +43263,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x53a37ee9, 0x257f3273, 0xc5535139, 0x2e802c50, 0x76da8c49, 0x6e08f711, 0x8e561348, 0x18b2853, 0x7ba4753d, 0x102a03b9, 0x2e47875a, 0xa2562a48, 0xa8aff04d, 0xe063d773, 0x3a712c2c, - 0x9a41b599, 0x00001b, 00000000 + 0x9a41b599, 0x00001b }, { 0x71486217, 0xb6235566, 0x2b27e933, 0xcc070cf5, 0x3e333b2, 0xb5b45202, 0xf5e0b4f0, 0x5bdc3f3b, 0xa69f294e, 0x25478cef, 0x491fd4f8, 0xd036bc22, 0x255b0fd4, 0xd1b8085c, 0x40c576a2, - 0xfb4ea4bd, 0x00012c, 00000000 + 0xfb4ea4bd, 0x00012c }, { 0x55554f09, 0xf5fb87e5, 0x50914629, 0xdb81f047, 0x135db7d8, 0x57e06292, 0x72d18b52, 0x1588efdd, 0x5a299e55, 0x7a3a9b52, 0xc418fa10, 0x8495bb28, 0xdd91f780, 0x8e8f083, 0x7414f0a2, - 0x8523ce5, 0x0001b7, 00000000 + 0x8523ce5, 0x0001b7 } }, { @@ -43284,19 +43283,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7ed4ccb4, 0x47536e45, 0x81e2b469, 0x5c201405, 0x59770e47, 0x2d13f8dd, 0xb52c2b9e, 0x6f41be14, 0xe33eb9a, 0xb0f40fd0, 0x45e8e2a0, 0x64b3bab4, 0xfcdc9599, 0x15ff503c, 0x9037a7d3, - 0x503cbd8b, 0x0001dd, 00000000 + 0x503cbd8b, 0x0001dd }, { 0x2c791940, 0x52b97ced, 0xe6b4ef86, 0x770f3b50, 0x9787f7cc, 0x38110133, 0xb6d150c, 0xcd58e55e, 0xd3fe081a, 0x29f834dc, 0xfe3c50b1, 0xacbe9be7, 0x535459e1, 0xce5136b5, 0xceb3a965, - 0x24c72b52, 0x0000a0, 00000000 + 0x24c72b52, 0x0000a0 }, { 0x226b2bad, 0x9b7e4be8, 0xc20dd945, 0xd0ef9f9, 0x87b42efb, 0x1bbcbd30, 0xeabd133c, 0x7f7e6b3b, 0xbbc594a, 0x6a9f3eaa, 0xbf6cdaf1, 0x654f6cc7, 0x980cf7f7, 0x2ea64e0, 0xef7d0ba8, - 0xf63233d0, 0x0001c7, 00000000 + 0xf63233d0, 0x0001c7 } }, { @@ -43304,19 +43303,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xad186bf5, 0x9f400dc2, 0x7c64575a, 0x88fedbdd, 0xf46147c9, 0xda4d1807, 0xe4aa1b85, 0x45702770, 0x9b20c963, 0x9d14c0de, 0x1ed49070, 0x68440bdd, 0xe1bc35ab, 0x56e24f4e, 0xa04db609, - 0x5ef6146c, 0x0001f9, 00000000 + 0x5ef6146c, 0x0001f9 }, { 0x39bba082, 0x6f51e8a3, 0x3e4b0ff3, 0x26ea2d09, 0x7ac011ec, 0xe3235e67, 0xb078b703, 0x0c861a, 0x2944e225, 0x670b065d, 0xed3c6313, 0x3163482d, 0x16592e5e, 0xa1c78f4d, 0x5d3a842c, - 0xa73ac913, 0x000045, 00000000 + 0xa73ac913, 0x000045 }, { 0xed2bbfaf, 0x9331e426, 0xc29fed94, 0xa1c960c4, 0x582eaeae, 0xfe93871c, 0xf2cdc70d, 0xb1ffcc47, 0xf386f416, 0x2f4aa7cd, 0xc1a07aa, 0xee65c38b, 0x60ddcf8d, 0x3b24f5a2, 0x3837c160, - 0x17cb780b, 0x0000ca, 00000000 + 0x17cb780b, 0x0000ca } }, { @@ -43324,19 +43323,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x51b304a3, 0xdec379d1, 0x67d95daa, 0xe283ca07, 0xd40e6b9a, 0xc6b7ad46, 0x709f791, 0x7398efb5, 0x511c822a, 0x86627cb0, 0xd6cde7ab, 0x4cd84497, 0xa6b8ab8, 0x1bd01663, 0x4f3d1ab2, - 0x4dd7c3, 0x0000aa, 00000000 + 0x4dd7c3, 0x0000aa }, { 0x31051c0c, 0x1acc0957, 0xdb0c967c, 0xfb342c00, 0x26db3936, 0xda8579b3, 0xbc36e159, 0xdd134a27, 0xb022b779, 0xbd5e6168, 0xefb2b238, 0x76edf3e7, 0x1f394889, 0x54c97a67, 0x30244d1e, - 0x5fbac05f, 0x0000d9, 00000000 + 0x5fbac05f, 0x0000d9 }, { 0xc4d16f32, 0xe2997c3d, 0xfedb41ca, 0x7e56eab2, 0xfedffce, 0x701c6299, 0x457ecaeb, 0x784d8c27, 0x4955cb1e, 0x168f11de, 0x545a1f53, 0x91b6b58f, 0x68a22579, 0xf52605e0, 0x8e50acb8, - 0xcd146750, 0x00001e, 00000000 + 0xcd146750, 0x00001e } }, { @@ -43344,19 +43343,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2ae525d1, 0x9ae2102e, 0x6fac4b30, 0x2b54ec4, 0x92349a21, 0x6e7cc7e4, 0x99957c40, 0xa7c6314c, 0x965ec7c5, 0x6aafd7aa, 0xb66f8669, 0x2241a9b2, 0x12b056d7, 0xac1b425f, 0x42429f4, - 0x6422e307, 0x00019b, 00000000 + 0x6422e307, 0x00019b }, { 0x1f664114, 0x126200d9, 0xdc6a3088, 0x1ab66a7e, 0x851eed08, 0x43810453, 0x6fc6b832, 0xd9f6814c, 0x12408b83, 0x9a3ac014, 0x88e2fcbf, 0x9381add5, 0xcef29f5f, 0x401817e4, 0x2a06c736, - 0x26c4312a, 0x00003b, 00000000 + 0x26c4312a, 0x00003b }, { 0xc979d59b, 0x7ebc88f3, 0x849d3754, 0x84b8809b, 0xa68edb4f, 0x17901755, 0xd3808a8c, 0xfd1bf7e2, 0x84f1197, 0xcedce09, 0xf8d01258, 0x7a631a0b, 0xebfeddd4, 0xed02c292, 0xbff64d9a, - 0x45e1a0e1, 0x0001ea, 00000000 + 0x45e1a0e1, 0x0001ea } } }, @@ -43366,19 +43365,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x17dfbb85, 0xce4d2171, 0x797e6952, 0xadb6bf83, 0x8e6f1ce7, 0xfc2aa669, 0x92c2cb26, 0x30f342dc, 0x82f5cc5c, 0xe73428d3, 0xde085986, 0x6cc7bb30, 0x6b103642, 0xf178328, 0x71aab4be, - 0x7148a4e1, 0x000148, 00000000 + 0x7148a4e1, 0x000148 }, { 0xe1ff213f, 0xa6b598a2, 0x40f0cb6, 0x4094e095, 0xaee829eb, 0x9284fd7b, 0x6ee83369, 0x3b357feb, 0xea0c822, 0x21432f68, 0xfbb08f4d, 0x91917de5, 0xa6ad0496, 0x64f0147, 0x70e9e6ec, - 0x2817b48e, 0x00007c, 00000000 + 0x2817b48e, 0x00007c }, { 0x1a1f94ac, 0x20abe4eb, 0x6d38c625, 0xbe9099cd, 0x4e18bb7f, 0x49e417c4, 0xca73e97e, 0x29c537d7, 0xc0c66827, 0xaba6b293, 0x6a8b96ee, 0xbfce66e5, 0x290196d2, 0xaaace89, 0x1216cef0, - 0x1be70ad, 0x000140, 00000000 + 0x1be70ad, 0x000140 } }, { @@ -43386,19 +43385,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x623b55d0, 0xd6995ff3, 0xa617a04b, 0x1add580b, 0x3b0dcdc0, 0x11e22370, 0xf157597c, 0xdc1ba023, 0xe10b8cc1, 0x49d458dd, 0xcf42e7, 0x605144cc, 0x923365a3, 0xc35abaa4, 0x8f337cb9, - 0x5c02c539, 0x0000aa, 00000000 + 0x5c02c539, 0x0000aa }, { 0x7d626105, 0x1a88330c, 0x681eb5d9, 0x4210a3a2, 0x6ea869b3, 0x96ba9302, 0x85511516, 0xa0bcf990, 0x705db08, 0x1d97dfc0, 0xb0f107c0, 0x740402c0, 0x79112708, 0x6e0584ec, 0x2e6b32f3, - 0xd6d526e4, 0x000051, 00000000 + 0xd6d526e4, 0x000051 }, { 0xa71e2da6, 0x4c2c50cc, 0x9ff1e5d0, 0x455247ab, 0xc40c16d9, 0x6fe323e7, 0xd6ec1c73, 0xcbb0119d, 0x7c13ad89, 0x4ca5890b, 0x25b0ef7c, 0xa78eb0ad, 0xf9851c36, 0x9d5cbdf, 0xf440da86, - 0xb12749b9, 0x0001ff, 00000000 + 0xb12749b9, 0x0001ff } }, { @@ -43406,19 +43405,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x61eeddcd, 0x1317544a, 0xe6d9c795, 0xe3337b2, 0x77c442ab, 0xeeabb539, 0x79392afd, 0xf84749dc, 0xf0ba459c, 0xd5536930, 0xf4bb69e6, 0xe7f67316, 0xa3697165, 0x3fc3f6fe, 0x4f4ff663, - 0xedd7d9e6, 0x0000f4, 00000000 + 0xedd7d9e6, 0x0000f4 }, { 0x3728ce36, 0x8aad1520, 0x43554394, 0xe503aee8, 0x414003bb, 0xa79486ee, 0xba74146b, 0x1e09a7a5, 0xb7616fc9, 0xd9aa2719, 0x790c326c, 0x4845671e, 0xd57f227c, 0x950c7499, 0xffc45434, - 0xd63819b3, 0x000107, 00000000 + 0xd63819b3, 0x000107 }, { 0xb64466a3, 0xbec67d4, 0xf8ee7911, 0x1fa52827, 0x3400bcd2, 0x394f8918, 0xba61be8c, 0x3c68ee5e, 0xfd2b4f7, 0x1a963728, 0x32742d0f, 0xbd1d6d0b, 0xc64b4d11, 0x4a1049f1, 0x240d2c16, - 0xea62ad25, 0x000046, 00000000 + 0xea62ad25, 0x000046 } }, { @@ -43426,19 +43425,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x99cd91c1, 0x1de68252, 0xa77b7e6b, 0xfa763fa8, 0x130249d0, 0x8faafa46, 0x61e574c6, 0x8d6ac347, 0xed2e5411, 0x1cbb5159, 0x27fd4c9b, 0x11539cfa, 0x185a32eb, 0xdc650090, 0x4a1c4fe3, - 0xdd6f0100, 0x000159, 00000000 + 0xdd6f0100, 0x000159 }, { 0x63c1c23a, 0xd3fe4b5, 0x7b1f4efd, 0x6229f8c, 0x36d00a9c, 0xe1c3a651, 0xaffeb06a, 0xf6ca1d5d, 0x3f20d8a4, 0x7a462bc0, 0x8502895d, 0x964bffb7, 0x8ab02bc9, 0xe959c45f, 0x21ad6668, - 0xb96a2b0c, 0x000197, 00000000 + 0xb96a2b0c, 0x000197 }, { 0xfac5c7a6, 0x4f91d346, 0x7ecc8af3, 0x65fcf471, 0xb2b21752, 0x509f610c, 0x33415be8, 0xdbce58db, 0xdefc5fb5, 0x3cf438d2, 0x986fcc63, 0xc3acae2e, 0x8e3c2d06, 0x26d9c13, 0xa47c93d6, - 0xa4e89c56, 0x000199, 00000000 + 0xa4e89c56, 0x000199 } }, { @@ -43446,19 +43445,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8525858e, 0xb0105be9, 0x7523ced7, 0xb891aa20, 0xdd2706eb, 0x82586eda, 0xa98a74fc, 0x477efe05, 0x9ceaced3, 0xa0dbd88b, 0x482eeee8, 0x1e5ddb4e, 0x6d4f2dff, 0x29bb6bfc, 0x1263eb46, - 0x52cc9166, 0x00014f, 00000000 + 0x52cc9166, 0x00014f }, { 0x3bb4b56f, 0x6db41aa8, 0x5aabf584, 0x5f86252b, 0xd72f7e30, 0xc8035ce9, 0xfe57e210, 0xf6f5d28d, 0x9b9e9a40, 0xf4231a00, 0xb891fbf1, 0x82add9c6, 0xe8abb089, 0xf483894f, 0x1f95c05d, - 0x6bbdd5b3, 0x0000a0, 00000000 + 0x6bbdd5b3, 0x0000a0 }, { 0x1db7a775, 0xddf42ae0, 0xacf526fa, 0x5794ccba, 0xd52b30a1, 0xeae41c9a, 0x729e9fc3, 0xf066b8f5, 0x4d501f47, 0x217d405d, 0x72d503d6, 0x9aff0228, 0xd1b9b20e, 0x6be7fba1, 0x81deeaba, - 0x43b88cfb, 0x00017c, 00000000 + 0x43b88cfb, 0x00017c } }, { @@ -43466,19 +43465,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1486326b, 0x8150a314, 0x794a1cd1, 0xfabcf749, 0xf676c172, 0x70eec524, 0x217cccbc, 0xd2f8a014, 0x2648e5e2, 0x57702000, 0x6f0b72d8, 0x9ba143cf, 0xd478c146, 0xc432e60, 0x4b564ec4, - 0x54e328c1, 0x000151, 00000000 + 0x54e328c1, 0x000151 }, { 0x914026eb, 0xd8ef37b9, 0x1b60a2a8, 0xe0b8dcdd, 0xe9468caf, 0x7f8a9be9, 0x4ec7650d, 0x8960756f, 0x4c715fb3, 0xfb40bd08, 0x6af11ca4, 0x9dff967f, 0x1058b56a, 0x9442eb44, 0x5ff3f2e6, - 0x14620fd5, 0x00018e, 00000000 + 0x14620fd5, 0x00018e }, { 0x8c2c3c1d, 0xc3daeb1e, 0x472af1eb, 0x34491498, 0xb5dc4dd3, 0x28fdf4f0, 0x9d3c9936, 0x32cd138e, 0x9c6e4db6, 0x4b678e7f, 0xb0098a61, 0xea101e3a, 0x6fe0749b, 0xb133aa53, 0xe43c4dcc, - 0x4431b2d0, 0x000124, 00000000 + 0x4431b2d0, 0x000124 } }, { @@ -43486,19 +43485,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb457f177, 0x1f4ed8f7, 0x25908472, 0x49a71f9, 0xab6a5f95, 0x43184686, 0x9acc4e1a, 0x897c453b, 0x3b22b07f, 0xbac54e38, 0xd3d39838, 0xc15ff694, 0x1f032cba, 0x73b1dbf1, 0xa079fd1b, - 0xa00d09f4, 0x0001b3, 00000000 + 0xa00d09f4, 0x0001b3 }, { 0x1739517b, 0xaa702047, 0xabf9c50a, 0xe6ca1635, 0x9d16dfff, 0x1fce4ea1, 0x37ada5c1, 0xe48d44ec, 0x72ff1572, 0xabe14252, 0xb4d68997, 0x4ac9430a, 0x3e1ef3fd, 0xb8f42856, 0xfa08fc3a, - 0x7ac35638, 0x00006f, 00000000 + 0x7ac35638, 0x00006f }, { 0xd848a838, 0x56af7fc1, 0x428b039, 0xfd494f23, 0xd5e553ba, 0x25375135, 0x17f49f7a, 0xa3c6a5f7, 0x59dc373b, 0x9f1037fd, 0xcd33932d, 0x7772dba5, 0x58166bd4, 0x664e8c59, 0x79741c91, - 0x287a20ce, 0x0001f0, 00000000 + 0x287a20ce, 0x0001f0 } }, { @@ -43506,19 +43505,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf349b521, 0xcdf0274e, 0x6255e78f, 0xf2cf8446, 0xf6e3491e, 0xc32455c8, 0xb00ae46b, 0x12e0775c, 0xaefc172f, 0xb7818951, 0x85457758, 0x51ad5006, 0xdacc26f1, 0x38a305fe, 0x35ab10bc, - 0x3b68c8e8, 0x0000dd, 00000000 + 0x3b68c8e8, 0x0000dd }, { 0xe7a3f2dd, 0x34ff0d4e, 0x7a069776, 0x890c206, 0x908269ae, 0x3f6ab54e, 0xe44ff688, 0xcdfb370d, 0xabb6f645, 0x121b74e5, 0x81c5378, 0xca99612d, 0xbb927e7e, 0x8fe9d97f, 0xdc6340b1, - 0x448721a1, 0x000195, 00000000 + 0x448721a1, 0x000195 }, { 0x14845062, 0xab1fa79f, 0x37eacb93, 0x454b273b, 0x6c08f1d2, 0x3b094ecc, 0xaed6c9d4, 0x6f0a43ca, 0x3539c684, 0x6b07779e, 0x36922621, 0x27471d4b, 0xd65fd34a, 0xb700edb0, 0xd44c70ab, - 0xe247b96e, 0x00003a, 00000000 + 0xe247b96e, 0x00003a } }, { @@ -43526,19 +43525,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x84051a98, 0x68a1587e, 0x2f8a09fb, 0x138b2d2f, 0x63615f1a, 0xc6882b51, 0x5ce1a6e5, 0x55accaca, 0x87da48c9, 0x8952e2d3, 0xed3d3c12, 0xb27979d1, 0xdaaef48, 0xfe56fb48, 0xcda7a17c, - 0x6a6c4cc8, 0x000170, 00000000 + 0x6a6c4cc8, 0x000170 }, { 0x5321f938, 0x6588711a, 0x84a87409, 0x2661357e, 0xc221b160, 0x88e2b3c4, 0xa73aa321, 0xf78f7be, 0xf7db112a, 0xa7e2c603, 0x7c552c0, 0xc5785fcc, 0x89307f94, 0xd42380a3, 0x6ea781d3, - 0x790b5eba, 0x000182, 00000000 + 0x790b5eba, 0x000182 }, { 0x576cb586, 0x871712b1, 0x1bae3024, 0xe60b705e, 0xeeba7093, 0x3d8ddc6a, 0x6824235e, 0xb7eea602, 0x898f4cd4, 0x109183f5, 0xd5db6a0d, 0x501ecfdd, 0x8271299d, 0x941fc3d5, 0x87c3c664, - 0x8433d3a9, 0x0000d7, 00000000 + 0x8433d3a9, 0x0000d7 } }, { @@ -43546,19 +43545,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8ef9809b, 0xf93f7cc1, 0x9479c15c, 0x97f8bff9, 0x8f88cbed, 0x287d2b6, 0x8233395e, 0x79459e28, 0xcc336674, 0x19d9bac0, 0xcdf757af, 0x8514e7d7, 0xecf65ead, 0xe82e3ba9, 0xebb625e1, - 0x672bb7b1, 0x0001f9, 00000000 + 0x672bb7b1, 0x0001f9 }, { 0x5b9e6264, 0xfee11675, 0x67f9628a, 0x48de6564, 0x5caea0ff, 0xa4981cc6, 0xb0e5e6ca, 0xba7c19e0, 0xabf94f43, 0x5fda21f1, 0x5bbbb670, 0x1e3e839f, 0x869d3d4e, 0x4ab20a27, 0xc9b70dfa, - 0x98948197, 0x00010a, 00000000 + 0x98948197, 0x00010a }, { 0xb41c49ac, 0xa8162f05, 0x687ad89e, 0x8c90809f, 0x6dc32e38, 0x704a6abb, 0xaba90a05, 0x6416e634, 0x44cbc45f, 0x753b6917, 0xdce67fb3, 0x1164424a, 0x7cf0c004, 0x89c898f1, 0x65d44b85, - 0xa6111567, 0x000086, 00000000 + 0xa6111567, 0x000086 } }, { @@ -43566,19 +43565,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xef691bc1, 0x9fef43a0, 0x3912e5aa, 0x1c7836aa, 0xda5e7747, 0x8447afd2, 0xf5cfdd94, 0x7efd44db, 0x4a2d0a9f, 0xa65deee5, 0xf13a1951, 0x35eb6b17, 0xab5d0615, 0xdb051080, 0xbc20787e, - 0x8937b632, 0x000088, 00000000 + 0x8937b632, 0x000088 }, { 0xb1aa1d98, 0x910b8b68, 0x13192724, 0xee6563f0, 0x9766a695, 0xe6cb1c29, 0xf2bb437e, 0xd92bca35, 0x90f5611a, 0x5aaf95fa, 0x72a0fb49, 0x8ef25440, 0x1e067c04, 0x6235516d, 0xe41d4314, - 0x6ce3e4d0, 0x000195, 00000000 + 0x6ce3e4d0, 0x000195 }, { 0xd1279835, 0x9d9fcb83, 0x7b422e34, 0xbf181344, 0xd2ec747e, 0x5bbf1db, 0xe46d6695, 0xecdb90f9, 0x60d09c46, 0x86470358, 0x18cfe3ce, 0x9766e4a2, 0xdff15bf6, 0xc66da54b, 0x32287ce1, - 0x374a2ada, 0x0000ca, 00000000 + 0x374a2ada, 0x0000ca } }, { @@ -43586,19 +43585,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc4d488c4, 0x3f331767, 0xe27b8312, 0x53bfcb66, 0x4eb86ee2, 0x10cca02b, 0x8d69b843, 0x3c2af422, 0xb54e76d0, 0x41482ad6, 0x7f13829d, 0x1366efaf, 0xe6130da6, 0xfcb5413f, 0x1c6a7072, - 0x56231498, 0x00007a, 00000000 + 0x56231498, 0x00007a }, { 0x3be01241, 0xef345582, 0x9dac0e36, 0xfe08c434, 0x3efb5913, 0xc903dce2, 0x5494d0e8, 0xd8684bad, 0x93eb5386, 0x4a873cef, 0x49370902, 0x6504a156, 0xb61392cb, 0x37976f59, 0xb68ce5f9, - 0xac1e65a3, 0x000086, 00000000 + 0xac1e65a3, 0x000086 }, { 0x6ec8489, 0x1bb48760, 0xd84e97d0, 0xc234aac, 0x7a581d33, 0x246286a4, 0xe96b267c, 0x7ac60d04, 0xf298ae89, 0xe341abb5, 0x5439d2d8, 0xcfc0582d, 0x192a7712, 0xaae5cb80, 0x4abf62b3, - 0xb10e7717, 0x0000ca, 00000000 + 0xb10e7717, 0x0000ca } }, { @@ -43606,19 +43605,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb2ad16c8, 0x8fc7ee50, 0x7c4707e7, 0xb970e72, 0x1d9b4ac8, 0x9114d9dc, 0x6cb6e5b6, 0xe911d0a9, 0xc3a59ab3, 0x4f226358, 0xf392fc6f, 0xc348a171, 0xd750e666, 0xaa87a57, 0xc3d475a5, - 0x8c54a43b, 0x0000e5, 00000000 + 0x8c54a43b, 0x0000e5 }, { 0x91455538, 0x382c1308, 0xf221fd7, 0x9b838668, 0x151fbb7, 0xe26e54a6, 0xe0497b98, 0x3dd45001, 0xfe9d9540, 0x232e1f3a, 0x1e177cb0, 0x83423666, 0x40608e89, 0xc3b7f858, 0xc6ecb53, - 0x17974da2, 0x000162, 00000000 + 0x17974da2, 0x000162 }, { 0xdefc9dfe, 0x24c74ad5, 0xeaf84de7, 0x2d543b3e, 0x5035cb13, 0x90a3b328, 0x574df715, 0xa7bbf487, 0x24eceab5, 0x4e89671f, 0x99d1af4b, 0xd1d14afb, 0x5f9b78be, 0x35778793, 0x5131d1b1, - 0x863afc60, 0x0001fe, 00000000 + 0x863afc60, 0x0001fe } }, { @@ -43626,19 +43625,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6463dabc, 0xd81d2a53, 0xaddd6f32, 0xfaa11add, 0xab146b1a, 0x43232801, 0xdf3fd989, 0xfe97e53f, 0x4907f498, 0x97cbcf7d, 0xdfcb8e8c, 0xbd68f8bc, 0x2b1aa036, 0xb6b8f255, 0x1f9ec4f5, - 0x2034fb27, 0x000167, 00000000 + 0x2034fb27, 0x000167 }, { 0x6886358b, 0x37987efb, 0xfaf7d22e, 0x11f71fa8, 0x1e267226, 0xc63d4514, 0x6146273, 0x37bfb8c7, 0xd476dab, 0x1d474799, 0x40870baf, 0x80671761, 0x81a970e2, 0x98b3c070, 0x515ad818, - 0x8978d3ba, 0x00004c, 00000000 + 0x8978d3ba, 0x00004c }, { 0x82376d00, 0xcb7bf692, 0xf56ee8c7, 0x27595409, 0xf6faff1b, 0x9c26f514, 0xf4a3a134, 0x1add088, 0x135683fe, 0x6cbe0eba, 0xc0cb8f8f, 0xc27c5827, 0xfe9d4de9, 0xb4afc6bf, 0x42b8a40, - 0x3f4d459c, 0x000045, 00000000 + 0x3f4d459c, 0x000045 } }, { @@ -43646,19 +43645,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa3474e36, 0x751d5658, 0x5bfc910d, 0xf7f1c6a5, 0x927ac995, 0x17584659, 0xe561555b, 0x56fdb939, 0xbe2a5f96, 0x1defecc, 0x246192c5, 0xcc32d67b, 0xd51a5e89, 0x85465a82, 0x32949315, - 0x9c63ed9, 0x0001cc, 00000000 + 0x9c63ed9, 0x0001cc }, { 0x15c9f945, 0x32f67452, 0x396cec9d, 0x57690fdc, 0xa10d4378, 0xf90a523d, 0x17373a5b, 0x19c3e564, 0xb88a7f0e, 0xff0cb2cf, 0x849e6d88, 0x195cb4a4, 0x48695130, 0x6ccd07c, 0x79321584, - 0x1cdfb583, 0x000068, 00000000 + 0x1cdfb583, 0x000068 }, { 0x2e7e81ee, 0x7b1f2e68, 0xa70adb28, 0x612be5c8, 0x295fa3e8, 0xbdd51172, 0xac6e2bc3, 0x7067e9ab, 0xcec5f832, 0x959805b5, 0xbd77563f, 0xedcd53f9, 0x9c518d1f, 0xf08bd999, 0x3ed58cd2, - 0x4137ff1d, 0x000034, 00000000 + 0x4137ff1d, 0x000034 } } }, @@ -43668,19 +43667,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4cf5df4a, 0xfc6a418f, 0x8c0c9c54, 0x2b836aa2, 0x660407b1, 0x259d62d7, 0x179bfbda, 0xe5a6de68, 0xec5d9707, 0xa9642fc8, 0x506cddb9, 0xccb37c11, 0xf74d11b5, 0xb34c68a, 0x7bfa2943, - 0x98eb9606, 0x000098, 00000000 + 0x98eb9606, 0x000098 }, { 0xe57a6087, 0x4ab25980, 0x9bd34b6e, 0x4dfa348, 0xaac116b3, 0x8440a28f, 0xe9c21fc8, 0x9a019c64, 0x7595a4ed, 0x4bcfe5b4, 0x80f7cd4f, 0x20ee3762, 0x4f10c315, 0xa7397b25, 0xdf4bf904, - 0xc20789dd, 0x000132, 00000000 + 0xc20789dd, 0x000132 }, { 0xfdb3b98, 0xd2f319c2, 0xc19320e8, 0x720eb49a, 0x33cba1fc, 0x804f3495, 0x870e33d3, 0x9ea72081, 0x4eae56f3, 0xf5fa5dbe, 0xd43be59d, 0xab550bd2, 0xe7ebcfa3, 0x84348b2d, 0x81a29127, - 0x50b84bde, 0x00010c, 00000000 + 0x50b84bde, 0x00010c } }, { @@ -43688,19 +43687,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x20031832, 0xb385f297, 0x720f3a96, 0xc31dc757, 0x194c59ff, 0x80bd5b73, 0x74a52881, 0x380374a, 0x89321436, 0x737d03c9, 0x97cd933, 0xab9f98c5, 0xb0c52dbb, 0x95c613cb, 0x44997a35, - 0xa148b0c5, 0x00014c, 00000000 + 0xa148b0c5, 0x00014c }, { 0x8ddd2359, 0xa7f069ee, 0xf661f57e, 0xd3a72a5f, 0xd8001e49, 0x6181ae5a, 0x3587c1b2, 0xf8e059b7, 0xaad3e26b, 0x3324897c, 0x1b59f6aa, 0x445df40d, 0xac2d524a, 0xe708c939, 0xd7322b77, - 0xe04b600d, 0x0000d6, 00000000 + 0xe04b600d, 0x0000d6 }, { 0x2a18996e, 0x6a54863f, 0xfb96ee13, 0xf651e618, 0x3f7aa0c3, 0x13ffc107, 0x847e769b, 0x58877ae0, 0x3ebe9377, 0x1adaf610, 0x14d1c24e, 0x522af32f, 0x6c2e6a73, 0x7653fc1c, 0xca726065, - 0xd34f9955, 0x00019e, 00000000 + 0xd34f9955, 0x00019e } }, { @@ -43708,19 +43707,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfae08cdd, 0x9856c396, 0x6ceb435f, 0x248e2596, 0xd4761c6e, 0xe3552834, 0xd4f9255d, 0x6d4b15b8, 0x14cf4b9d, 0x22cd6558, 0xf7c520a4, 0x85ccb665, 0xc5447a1e, 0x177646bb, 0x27ec393b, - 0x87ab62a3, 0x0000fd, 00000000 + 0x87ab62a3, 0x0000fd }, { 0x3c56516f, 0xe8e60750, 0xbef7ee95, 0x9069d8a6, 0x4eb3e4cf, 0x4b59c11, 0x38bbc9de, 0x92a7ea2c, 0xa589d7d2, 0x43e15633, 0x99e9e2d2, 0xb2e5fd6, 0xf5f9efb1, 0x218eef83, 0xfc0f562, - 0xa9fb4285, 0x0001b7, 00000000 + 0xa9fb4285, 0x0001b7 }, { 0xfe2cca5d, 0x28b01c31, 0x7adeb75a, 0xacfbb98, 0x8053a6ac, 0xc653f4a, 0x18fad3be, 0x7c15d3b0, 0xb9b46cae, 0xa581ac53, 0x2a6f2d23, 0xdc2e1d8c, 0xb940e34d, 0x3e96d8fa, 0x25431832, - 0x4cb99779, 0x000027, 00000000 + 0x4cb99779, 0x000027 } }, { @@ -43728,19 +43727,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xad81b43b, 0x8ad404d8, 0x2389139e, 0xd5d95dc3, 0xe22ffb9d, 0xd963edbd, 0x8bb9663c, 0x511d5a95, 0xccc38eea, 0xde070699, 0xc0cbc4af, 0xf696d988, 0x8930ca98, 0x3c4a9af6, 0x985f37b8, - 0x4998b2a6, 0x0001a8, 00000000 + 0x4998b2a6, 0x0001a8 }, { 0x70898b02, 0x9530fc9, 0xdefcab1f, 0x40fc550b, 0x4e769689, 0x7dedd4bc, 0xc49d1443, 0x33277521, 0x3e70c287, 0xbb3fcc84, 0x688f0f3e, 0x39aee8b1, 0x91ce112b, 0x74010271, 0x58d8f958, - 0xe9ec4454, 0x000178, 00000000 + 0xe9ec4454, 0x000178 }, { 0x3165879d, 0xfb9bb426, 0x15d229b7, 0xb582955f, 0xe60026d0, 0x7a42ed90, 0xbd47d937, 0xb1b834f6, 0xe55b5f44, 0xee173acf, 0xc6979e0d, 0x9cc10885, 0x60f8611, 0xd56d5f1f, 0xb3891125, - 0x593b1a81, 0x000147, 00000000 + 0x593b1a81, 0x000147 } }, { @@ -43748,19 +43747,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb8bcf7aa, 0x6e582d55, 0x796712cd, 0xfb3418a0, 0x77bf5490, 0xd69c6a51, 0xe74c3d4e, 0xa5bc42f2, 0x5f88dd59, 0xf3ec971c, 0x91037926, 0x1c440598, 0x3716e0fc, 0xc4cd3b65, 0x9988dd97, - 0x14d8865, 0x00006a, 00000000 + 0x14d8865, 0x00006a }, { 0x66e63ffd, 0x48e23229, 0xbe625c61, 0x88dbe282, 0xfbfcb26, 0xc683416, 0xb21bbc0, 0xe8eee7c1, 0x8b00efed, 0x70871416, 0x230ed27b, 0xc30568ab, 0xc3a935b3, 0xd8f9030f, 0xe9280156, - 0xc5078570, 0x000071, 00000000 + 0xc5078570, 0x000071 }, { 0xc162df5b, 0x5fbe0d61, 0xe7dc344f, 0xd158765, 0xe5a5febc, 0xa137d25, 0x2fb90171, 0xe187ea9f, 0x93b8cd9c, 0x90fbc389, 0xdd962797, 0x32c02f71, 0x20380ee9, 0xa8aaf2cd, 0xe2df72f5, - 0x7c095c67, 0x000166, 00000000 + 0x7c095c67, 0x000166 } }, { @@ -43768,19 +43767,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc7b43224, 0xe1fb3842, 0x370e3405, 0xf5c1e3c7, 0x5c86231c, 0xc4f748d3, 0x9d9f5bf2, 0x7ffd0ab2, 0xbf28ca2d, 0x59cccf0e, 0x4c4dbdf2, 0xa9864e48, 0x2da4a306, 0x4cc44092, 0x3c6796d7, - 0xe526527c, 0x0000d4, 00000000 + 0xe526527c, 0x0000d4 }, { 0x9ee0dc11, 0x5383a575, 0xb49cb094, 0xe3f5c8b4, 0x2b079c44, 0xd200ce70, 0x270a17aa, 0xd878bab4, 0xc0213574, 0x1f9281cb, 0x56ef637a, 0x487bafc4, 0xa0e9676b, 0x4e9be856, 0xc8ddbb3b, - 0xbbe91a81, 0x0000b4, 00000000 + 0xbbe91a81, 0x0000b4 }, { 0x2bb34757, 0x6c961895, 0x867e29db, 0x62361f87, 0x55a98c41, 0x97fd0560, 0x22928983, 0x89d27d79, 0xbd2e739d, 0x3dc565de, 0x847013ae, 0xef79f9f8, 0x26ef385a, 0x53686723, 0xb0f17021, - 0x4e9b22ff, 0x00016a, 00000000 + 0x4e9b22ff, 0x00016a } }, { @@ -43788,19 +43787,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe8821796, 0x9ea7a83b, 0xabb90ea1, 0xd077da78, 0x8c3568d4, 0x6b275fa9, 0x8a0f6837, 0xb769bf9f, 0x8cecbaf3, 0x13c0a3e3, 0x4b3445bb, 0x1573f33f, 0x6854e9b0, 0x9e1aede4, 0x7c69ec5b, - 0x246ce3af, 0x000077, 00000000 + 0x246ce3af, 0x000077 }, { 0x929acbb9, 0x3f8c2c25, 0x5473b41c, 0x899a58e1, 0x98740765, 0x8f242e40, 0xe665573d, 0xb7a0a62e, 0xb8c50980, 0xcf2a856a, 0x52e9da8a, 0x87bba87d, 0x4d06b341, 0xb9626be3, 0x11176631, - 0x4e1306ed, 0x000053, 00000000 + 0x4e1306ed, 0x000053 }, { 0xd6278b97, 0xebd7970e, 0xc89504c9, 0x158305d0, 0x588b86a1, 0xf01130c2, 0xac770151, 0x41c32bdd, 0xb7046b74, 0xdc97561b, 0x4708b0fe, 0x47890849, 0xd88e08eb, 0x2d38b521, 0x41f31d3b, - 0xa746012e, 0x0000d5, 00000000 + 0xa746012e, 0x0000d5 } }, { @@ -43808,19 +43807,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2b23768f, 0xdab9eddd, 0x4e649593, 0xeb22609d, 0x131ffe07, 0x9734b1bf, 0x7f8c0487, 0x349814e6, 0xbb29a4eb, 0x444e6d44, 0x764fb62d, 0xe33d2cd1, 0x3a5093e1, 0xb866fb6b, 0x9aabe0a, - 0xfa8ce495, 0x0001fc, 00000000 + 0xfa8ce495, 0x0001fc }, { 0xe25d6eeb, 0x5f0fee6, 0xcb11994b, 0xcc9ae66, 0x91ef0e4f, 0x86b55394, 0x2414953f, 0x9d2e84e9, 0x6809277f, 0x53ceec0e, 0xb27ea932, 0x9beed347, 0xd72ce3eb, 0x5049e20a, 0x46c67723, - 0x1331f548, 0x0000d3, 00000000 + 0x1331f548, 0x0000d3 }, { 0xadb453cb, 0xd1e38499, 0xb45dbb71, 0x66e8286d, 0x4674cdac, 0x39a686bd, 0xf6e97882, 0xa4d7e2f8, 0x27ffb62a, 0xa5a22140, 0xe43e2925, 0xc02916f5, 0x22ff11f3, 0xcd68366a, 0x94106fad, - 0x3cbdae3c, 0x00017e, 00000000 + 0x3cbdae3c, 0x00017e } }, { @@ -43828,19 +43827,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7f487c45, 0x47cf0110, 0xae7547ee, 0xd515ee6, 0x3c81d069, 0x28c2a59, 0x51dcd2ed, 0x94e70252, 0xda47ce44, 0xa37c41e8, 0xe3c5a6cf, 0x3f9ed89b, 0x45fcb240, 0xb9d99ed1, 0xd7dcdf5c, - 0xf0675421, 0x000194, 00000000 + 0xf0675421, 0x000194 }, { 0x6d8b947f, 0xe860e6c1, 0x9a44c5fd, 0x4c708e75, 0x3c3da114, 0xa9491be9, 0xff6bd226, 0x8d1b4f91, 0xe2f990ff, 0xc4cad8c, 0x10b9844b, 0x3ab57359, 0xe81b51cd, 0xba1eab74, 0xc9b51b85, - 0xd06a04cd, 0x000117, 00000000 + 0xd06a04cd, 0x000117 }, { 0x9ba6426f, 0x8c979004, 0xe5418914, 0xdd5b5541, 0xe8c11c55, 0x43ab142e, 0x53645ae2, 0x5c1c8442, 0x92cf3947, 0xca3c0d01, 0x773640f0, 0x8654a83, 0x3beb1e, 0x33636834, 0x3d7e9736, - 0xb6b70676, 0x0000e1, 00000000 + 0xb6b70676, 0x0000e1 } }, { @@ -43848,19 +43847,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xae5a5148, 0x6ff4a58a, 0xe21642fb, 0x71381b56, 0xed320701, 0x2922f849, 0x71faf901, 0xb8d0f221, 0xa8fc0649, 0xb243c370, 0xed55615a, 0xca811052, 0xc19ab33d, 0x4f2fc391, 0x5256a785, - 0x7edafd9d, 0x0001fd, 00000000 + 0x7edafd9d, 0x0001fd }, { 0x368c6c7b, 0x64e58f52, 0x7b56d579, 0xe084f14d, 0xeeedd342, 0xd16637ad, 0x75b60fd0, 0x88fa4055, 0x4e8e537f, 0xab9d8579, 0x8f87171b, 0xd7ca1e50, 0x19230c81, 0x50b0b855, 0xf7321f75, - 0x3efd6dbe, 0x000036, 00000000 + 0x3efd6dbe, 0x000036 }, { 0x5380aaaa, 0x2820dc3, 0x6e8fa99f, 0x1d09f9c6, 0xf1f38026, 0xb17a3d28, 0xf59f0dfc, 0x1c230771, 0x20998551, 0x9c1385ae, 0x9e5ebb1d, 0x9ef59483, 0x892a6865, 0x731aa4b, 0x46aa2d8, - 0xf4537e0e, 0x00013f, 00000000 + 0xf4537e0e, 0x00013f } }, { @@ -43868,19 +43867,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x61acd04d, 0xa557d531, 0xbdd835ed, 0x75eb6bd2, 0xeb600bdd, 0xcbaac193, 0xb6839e8a, 0x4166549d, 0x14b95d86, 0xf40503f1, 0x4d384926, 0xb5f4d197, 0x9c90433c, 0xc275a452, 0x33af9cc0, - 0x8a9fe311, 0x00009b, 00000000 + 0x8a9fe311, 0x00009b }, { 0x1352303e, 0x762779a8, 0xe174d184, 0x3906cde6, 0x664305a9, 0x1fe4bf11, 0x5549a588, 0xfd6053cf, 0x5ba4f29d, 0xcb69b1b, 0x7e861931, 0x13881376, 0xdae26bab, 0x450bc46c, 0xec3c2471, - 0xdd06ec71, 0x0001e9, 00000000 + 0xdd06ec71, 0x0001e9 }, { 0xb2757b9, 0xb3995256, 0x946b955f, 0x6be108dc, 0x220ae8df, 0x67f92e9d, 0x9c71db1, 0x4203c005, 0x5084620e, 0xafeb05cd, 0xa64cfad9, 0xc31376ff, 0xcc612ab5, 0x95078aaf, 0x544715ac, - 0xc839776, 0x000137, 00000000 + 0xc839776, 0x000137 } }, { @@ -43888,19 +43887,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfbb3efe6, 0x34d2c5ab, 0xc4685296, 0xad06beed, 0x50c50b4c, 0xbd88b967, 0x2c91c934, 0xd15ed2b3, 0xc88f17bf, 0x2facf6ba, 0x57421cd8, 0xebd67188, 0xf7e4252c, 0xc6e67519, 0xfa3acd5, - 0xe266abad, 0x0001b7, 00000000 + 0xe266abad, 0x0001b7 }, { 0xf0849edf, 0xf230343, 0xdf89162d, 0x7ad7113a, 0x707d291, 0xf3464943, 0xf6d2ea2c, 0xe37fa1ab, 0x6233c72c, 0xff9374ad, 0x162fd902, 0xea4ab10e, 0x4b3627b, 0x45f263cc, 0xe04ec88f, - 0xaf47303e, 0x0000f9, 00000000 + 0xaf47303e, 0x0000f9 }, { 0x3825fda, 0x586c7ec7, 0xedb49a99, 0xdd13154d, 0xde8805c2, 0x68b0364a, 0xa2ffa856, 0xee88c9c8, 0x90dbf3e4, 0x8ad9b273, 0x8152e5c9, 0x256ba054, 0xf7fd3d64, 0xbf1460dc, 0x12b4501d, - 0x7b65c5f7, 0x000063, 00000000 + 0x7b65c5f7, 0x000063 } }, { @@ -43908,19 +43907,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfe1b5d42, 0x132693eb, 0x81b2209c, 0x60396aee, 0x16e465e3, 0x545d9d78, 0x8ba414fc, 0xcbbc1842, 0x4640d1a6, 0x362f91fb, 0x70a4a087, 0x9dd74b7f, 0xa8cad3c7, 0xa57b42a3, 0x360f9d25, - 0x6097cb43, 0x0000b5, 00000000 + 0x6097cb43, 0x0000b5 }, { 0x95c90d32, 0x265e1ba2, 0x62e1d910, 0x9644e71, 0xb660852c, 0xff243683, 0xa7c5e6e0, 0x5066d993, 0x69693439, 0x80b3bf53, 0x25dfc4b4, 0x6f37abd2, 0xb2337c14, 0x5f77aec1, 0x909fa4b, - 0x180b1c55, 0x0001c8, 00000000 + 0x180b1c55, 0x0001c8 }, { 0xe1dae969, 0x9a60ed97, 0x7bf82c4b, 0xeb820861, 0x8b8e8c84, 0x869e98ca, 0xe154c6e4, 0x6a1bd9e9, 0x47ee459f, 0xa9246bea, 0x502a7589, 0x22d5bb77, 0xc193b041, 0x4d92b443, 0xd631bf97, - 0x7a386379, 0x0001c0, 00000000 + 0x7a386379, 0x0001c0 } }, { @@ -43928,19 +43927,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2f6e05c0, 0x6702f8d8, 0xc079deed, 0x50574442, 0xd88e6ca9, 0x5015385d, 0x15e8025, 0x4e5b87d8, 0xb880e89a, 0x7a256780, 0xe96d128a, 0xe45e27f0, 0xd1c9fe91, 0x6e430406, 0x28e0cd61, - 0xbed3d163, 0x000122, 00000000 + 0xbed3d163, 0x000122 }, { 0x87e2e56f, 0x55179b6c, 0xaf7958c2, 0xc77e2ba4, 0xd8dada61, 0x57be1613, 0xaecd162b, 0xa2d81134, 0x351cd602, 0x9c0803c5, 0x63ec611f, 0x2be55304, 0x5f2dfe, 0xe5f87356, 0x63421d59, - 0x57b2d75c, 0x000045, 00000000 + 0x57b2d75c, 0x000045 }, { 0x680417b5, 0x5ce0743c, 0xfe3f225d, 0x1ed6ca4b, 0x41c10d0c, 0xeac0d7b4, 0x9acc6470, 0xfbe83398, 0x177450b1, 0xe10fbb15, 0x625411cd, 0xd6dab8ca, 0xdecb6e02, 0x5cd616ac, 0xd75d65a5, - 0xaf6edadb, 0x00012c, 00000000 + 0xaf6edadb, 0x00012c } }, { @@ -43948,19 +43947,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcbb4ca89, 0x6fe52daa, 0xbf9116d8, 0x2a29db68, 0x8e6ef6f8, 0x6001c9f1, 0x48f9fc12, 0x928e6afc, 0xfdbcd936, 0xf4831339, 0xbbfdd20c, 0xd75c12d6, 0xa42dc833, 0x9ff3850d, 0x6b2aad68, - 0x7b5f284a, 0x000047, 00000000 + 0x7b5f284a, 0x000047 }, { 0xe5125fc3, 0xa842535, 0x3006dbd4, 0x5b2595ac, 0xeff845ea, 0xdeaa7a74, 0x2849e3a3, 0xd08ac0b2, 0x2e511aac, 0xf4138788, 0x7b1f3eaf, 0x4baffae4, 0x8e610a54, 0x270c54dd, 0x9d428619, - 0x106e650f, 0x0001a8, 00000000 + 0x106e650f, 0x0001a8 }, { 0x40ca9fd4, 0x120c9397, 0x93698474, 0xf8650b1c, 0x9591261f, 0xc2d2e0d, 0x4ea4b7b, 0xd9d24c03, 0x4688b40c, 0x15f43ce0, 0x59a846ec, 0x6b0ae7e8, 0x7ea2867d, 0x7e7c57a1, 0xaba753, - 0xf1f1f0ac, 0x00017f, 00000000 + 0xf1f1f0ac, 0x00017f } } }, @@ -43970,19 +43969,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19cf2abb, 0x1d275438, 0xd0bae438, 0xfd4b0598, 0x59422fea, 0x8283d818, 0x7c32ef9d, 0xef47c2cc, 0x834d58e4, 0x40f6df68, 0x7719b3b9, 0x8080dfa5, 0x8088089e, 0xef6eb1fb, 0x39d4de8e, - 0x3efed72b, 0x0000c5, 00000000 + 0x3efed72b, 0x0000c5 }, { 0xa8c2b73c, 0x2650e705, 0x139e9f45, 0x4806fc7, 0x10d5cdd1, 0xac257e83, 0x8969b3f5, 0xa6d2546, 0x1c9b4346, 0xa4d0df63, 0x30942393, 0x6a7b8c43, 0xb1122cd2, 0x9633ebc6, 0x6c546b6a, - 0x90629041, 0x000182, 00000000 + 0x90629041, 0x000182 }, { 0xc5a61381, 0x891cea2a, 0x9230cafa, 0x8e703c38, 0x2fd43c54, 0x43d87320, 0x5f16bb7d, 0xb41130e8, 0xd4391ee1, 0x9d5eaf41, 0xd30ba070, 0x162f1dc, 0x4228ecf2, 0x246f84d1, 0xfb3f3526, - 0xedbddf89, 0x00000a, 00000000 + 0xedbddf89, 0x00000a } }, { @@ -43990,19 +43989,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7efcf979, 0x7c929cb8, 0xe802691e, 0xadcb6f18, 0xe52044dc, 0xdec6a589, 0xa29293b4, 0x342c64f2, 0x2fbc7e28, 0x5d3e3c20, 0x621ef212, 0x4fb2dca3, 0xa48e3967, 0xf4b3a465, 0xc09ccaaf, - 0x6614f51, 0x000182, 00000000 + 0x6614f51, 0x000182 }, { 0x69fd7296, 0x8f5690fd, 0xed855c8a, 0x683b1a18, 0xfda3c7f2, 0x7f97f570, 0xd77f9f20, 0x4020d451, 0x69bd1cdc, 0x4d76813f, 0xd98b877e, 0xfd058e42, 0xcfe2366c, 0x4fa6a487, 0x876d5ce4, - 0x77182e5f, 0x00008e, 00000000 + 0x77182e5f, 0x00008e }, { 0x980893a1, 0x2f2505b1, 0xbeb28a68, 0x75fda918, 0x3ecb2583, 0x3255fffe, 0x68c16238, 0xa7c9e88a, 0xe948408, 0x1c00b316, 0x19e48fd5, 0x1fac6b7a, 0x9b0bfa5e, 0x2f882448, 0xd7048681, - 0xca41b143, 0x00007b, 00000000 + 0xca41b143, 0x00007b } }, { @@ -44010,19 +44009,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x20cfc42f, 0xb5c00584, 0x8ea7c64d, 0xcee71c72, 0x1674980f, 0x80f7e579, 0x8eb240b, 0x1dac19b4, 0xe5d45a06, 0xeca5ab18, 0xef84d6d7, 0xfcbcf0b5, 0x409421db, 0x8d4dc581, 0x70ab7a76, - 0x3d10e1e9, 0x000196, 00000000 + 0x3d10e1e9, 0x000196 }, { 0x5e18afb2, 0x38a7e526, 0xc82816fd, 0xd5cc4c96, 0xc6a2cf30, 0xac254e41, 0xa307ad3, 0x96f6e43f, 0x406d2ab2, 0xea182457, 0xe1f3d748, 0x859b38cf, 0x1157e560, 0xb962b4c9, 0x3b0c5fb, - 0x842138d0, 0x00018e, 00000000 + 0x842138d0, 0x00018e }, { 0xec01acb3, 0x21de72f2, 0xb3364930, 0x569f3737, 0xa743be77, 0x828cdc00, 0x8ba3a3a9, 0x7f24359, 0x3321e245, 0xfdaca8ba, 0x98ece6a7, 0x8cd4eae, 0xbf6fb220, 0xc292ac6c, 0x7b498bd5, - 0xe97808c4, 0x0001b7, 00000000 + 0xe97808c4, 0x0001b7 } }, { @@ -44030,19 +44029,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x872bc4c1, 0x5684b6cf, 0x7911c648, 0x85212ba8, 0xcaf25379, 0xde0174b7, 0x5f46b40f, 0x1ab22ec5, 0x98d889e8, 0x763bcd75, 0x5cc0094c, 0xd8a6ab64, 0x78d7bb81, 0x4b0e2f80, 0x9e120509, - 0xfb495762, 0x00007e, 00000000 + 0xfb495762, 0x00007e }, { 0x83fa60b5, 0xeed69c10, 0x61b11b45, 0xc55bd801, 0x2f9373c3, 0xfae26e4, 0x7c81db02, 0x39a7640b, 0x50a9f35b, 0x3f2a83b9, 0x48f43f15, 0x1ef7f730, 0x36cb9b0c, 0xb667a869, 0x34428d48, - 0x401a82c, 0x00001f, 00000000 + 0x401a82c, 0x00001f }, { 0xb86af2d9, 0xee5764cf, 0x75ef8ab5, 0xce1d1175, 0xf189c509, 0x7a1f27f, 0x658ccf78, 0x1392c280, 0x31abc8a0, 0x12d9cc08, 0xb432508b, 0x3c775c39, 0x2cacc0ad, 0xbe6d318a, 0x80ac3f48, - 0xb1f6c2fa, 0x00006d, 00000000 + 0xb1f6c2fa, 0x00006d } }, { @@ -44050,19 +44049,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x10716aca, 0x461694b4, 0xafea2317, 0x1452f821, 0x1098fd02, 0x619a3fff, 0xf123cb20, 0x8ef53cbd, 0x5112c6e9, 0x4ab928d, 0xbdcb4cb7, 0x5d1f8168, 0xa2cc0a7e, 0xc68fa5f6, 0x31679800, - 0x8cf1360, 0x0000f0, 00000000 + 0x8cf1360, 0x0000f0 }, { 0x41e8a339, 0xf077fc3, 0xbf55b644, 0xec747944, 0x8a5fed13, 0xe6a187fb, 0x141e41db, 0x79fc832d, 0xf37d8419, 0x355bde5f, 0xc1dba953, 0xc2b0ab2f, 0xa1759c80, 0x27ad1dea, 0xafd21d93, - 0xe64a2139, 0x000124, 00000000 + 0xe64a2139, 0x000124 }, { 0x16224146, 0x906f7252, 0x88a420db, 0x55c4789f, 0xe44a39b0, 0x3c1ae5fe, 0x3b64e1c0, 0x7ec5fed9, 0x39149315, 0xd27f7374, 0xc869c51a, 0x269eb3da, 0xa8f0e88a, 0x450117b0, 0x1f9cbac1, - 0xb4392fb6, 0x0000c5, 00000000 + 0xb4392fb6, 0x0000c5 } }, { @@ -44070,19 +44069,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xec32e07b, 0xd4e05857, 0x7e0c1ab8, 0xfe778fb9, 0x6f085ce9, 0xba1db3da, 0xd7d50e9c, 0xbbbd8b49, 0x21e759eb, 0xffd98eb2, 0x85f8ed30, 0xde4d0e88, 0xf3f12920, 0x3ce25e3, 0x6ccfab8, - 0xd4ad88d2, 0x00008f, 00000000 + 0xd4ad88d2, 0x00008f }, { 0x67647e35, 0xbcb64f90, 0xcddb87c9, 0x28061fba, 0xcb80df40, 0x6a5749c2, 0xe7cd07f7, 0x98661702, 0x36fd5020, 0x9747649d, 0x74e0a716, 0xc1f4afa9, 0xa265dc8c, 0xa7676ad5, 0xb509b604, - 0x416d6436, 0x00016f, 00000000 + 0x416d6436, 0x00016f }, { 0xc29f469d, 0x48872d45, 0x9caf0b5, 0xa12a1e67, 0x1e0ca936, 0x98c3b3de, 0xfc1335de, 0x42ff1040, 0xab19f079, 0x4e89315e, 0xffbec794, 0x1a53f064, 0xaac156c2, 0xd24662cc, 0x76530f45, - 0x43276b77, 0x000065, 00000000 + 0x43276b77, 0x000065 } }, { @@ -44090,19 +44089,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbdad8af9, 0xc565640d, 0x62918869, 0xfb8f9a33, 0xb4a11557, 0xa4198af3, 0xb5fc957c, 0x4fe90dc9, 0xb2e5f26, 0x2f18501e, 0x2f86db3b, 0xfff9c04, 0xc5b6db6, 0xa04e4f28, 0x17f734c, - 0x90ad0a40, 0x000175, 00000000 + 0x90ad0a40, 0x000175 }, { 0xb4d05370, 0x2602837, 0x71cc4528, 0xab0894ff, 0x78071629, 0xd84d8ea, 0x17d4277e, 0x4bbcf173, 0x9161806, 0x3e5bd57e, 0xc6696e15, 0x3f02a2b6, 0xb4ebf1d, 0x94fccb7e, 0xc68d3f32, - 0xc3256a04, 0x00001f, 00000000 + 0xc3256a04, 0x00001f }, { 0x6687dc2b, 0x3c02165e, 0xfc2833fc, 0x1e00e891, 0x5279dcee, 0x44b1f460, 0x378d7502, 0x51f5a2e6, 0x5ac83811, 0x7914e68, 0xe2c89f18, 0x8b12fd39, 0xaecd7d4a, 0x4d8d1dac, 0xd5d8886, - 0xe22ab530, 0x00014b, 00000000 + 0xe22ab530, 0x00014b } }, { @@ -44110,19 +44109,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6dc2006b, 0xbc777712, 0x5acb169a, 0x6bb5fcfc, 0x55a0dc3c, 0x2de340dc, 0x726b584f, 0xc98b2f95, 0xdcfc3b4d, 0x192a3fc2, 0xc9f50f1f, 0x13ad15b2, 0x8bd7983a, 0x204e118c, 0xe75e9337, - 0xb184637, 0x000184, 00000000 + 0xb184637, 0x000184 }, { 0xfc45005f, 0xba4f6a04, 0x8acc899b, 0xe35c5ab8, 0x7f73812e, 0x25132b04, 0x609e43a7, 0xa0a07e37, 0xa8665b02, 0xbfe300c3, 0xcb6b1453, 0xa92424a5, 0x67bb78ca, 0xd92ec830, 0xbf8fbffe, - 0x5a967566, 0x000093, 00000000 + 0x5a967566, 0x000093 }, { 0x2a7dafda, 0xa18d6646, 0xe9c1e54e, 0x83d7a445, 0x6ef95004, 0xfe4e8ca3, 0xe15602c6, 0xf3d8d5e1, 0xa035c3f0, 0x5aa9e852, 0x3c20a7a6, 0x9d429ba5, 0x5cddcf45, 0x6a510078, 0x78761fec, - 0x3f96b787, 0x00013e, 00000000 + 0x3f96b787, 0x00013e } }, { @@ -44130,19 +44129,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc966fc7a, 0x2ddd9c39, 0x16a9a077, 0x5fd9231b, 0x157ddac5, 0x8ea758fd, 0xb3ea8233, 0xbd918f13, 0x8c3e45d, 0xf9de8ada, 0x8f5b517f, 0x3fbbd5da, 0x17708992, 0x18e5fb66, 0x5d92d66, - 0xeb6268de, 0x0000eb, 00000000 + 0xeb6268de, 0x0000eb }, { 0x5fc42942, 0x9f2bb65c, 0x61b9cd93, 0xc1d9655b, 0x4ada854a, 0x9aca74fe, 0x9fe74146, 0xa7ee780, 0x3c15134, 0x9f80d1ad, 0xb2b0065b, 0x87b57de, 0x238e96d6, 0x6c242f56, 0x818fac0d, - 0x73b1ca4f, 0x000042, 00000000 + 0x73b1ca4f, 0x000042 }, { 0xf8ab2c9e, 0xfb18d1a5, 0x5dce24ca, 0xab243873, 0x2b33d528, 0xa81c76cd, 0xe7ef3d7b, 0xa0c4f608, 0x96bf6a24, 0x8248b702, 0x3131bc58, 0x6bffddb7, 0x4c6ff6ca, 0x76343b6e, 0x8db8a767, - 0x36838b35, 0x000196, 00000000 + 0x36838b35, 0x000196 } }, { @@ -44150,19 +44149,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5ac8cdd7, 0x612fefbf, 0x9464b037, 0xfddebfb0, 0x4b7bdf6a, 0x5c7181f9, 0x256b43af, 0x51f7de8e, 0xc1984efb, 0x7de03a45, 0x4e7c19b4, 0x53bb7d27, 0x3b694ab, 0xb83801e9, 0xf540b68c, - 0x42187935, 0x0001a0, 00000000 + 0x42187935, 0x0001a0 }, { 0xeac67122, 0xe60da063, 0x4cf1dc5a, 0xe1eb0776, 0xec63e7e, 0x4d3f28bf, 0x210e4831, 0x83c71fff, 0x2b40b454, 0x3f12fb2d, 0x87fcf50b, 0xcfb79f22, 0xa1a04ac7, 0xb6b7ea7d, 0x385d73a6, - 0x1fc4f6c3, 0x000168, 00000000 + 0x1fc4f6c3, 0x000168 }, { 0x40ba82d8, 0xf76c5656, 0x790c7d96, 0xb22133c5, 0x9aad3e52, 0x38fc77df, 0xf556deb0, 0x11fa4d2, 0xafede389, 0x93f382e4, 0xa5eadd6c, 0xc0f448a8, 0xbf0db88a, 0x34e66594, 0xb4e570e5, - 0xd13775c9, 0x000149, 00000000 + 0xd13775c9, 0x000149 } }, { @@ -44170,19 +44169,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8361d085, 0xc3c1961f, 0x31d42af, 0x9a789470, 0x9c902d5c, 0x886c5882, 0x1769e78, 0xc62e0717, 0xaf0cf5a6, 0x1a2e2e9, 0x2296b430, 0x6d01f84d, 0xad0e3538, 0xf3a700a4, 0x8b8934e6, - 0x3b5e5bad, 0x00014a, 00000000 + 0x3b5e5bad, 0x00014a }, { 0xf66bc87c, 0x30101334, 0xc5b38356, 0xb72daca4, 0x838e5172, 0x87dae45f, 0xd1154a18, 0xe1fbf51e, 0x8f91936e, 0xd598a75b, 0x6bae878e, 0xb2290467, 0x972e3380, 0x1e9627f2, 0xbe5bc8f, - 0x948a6236, 0x00015b, 00000000 + 0x948a6236, 0x00015b }, { 0xb1948be5, 0x38b91817, 0x22f45fe4, 0x15e40e89, 0x8da34b25, 0x15f22931, 0xc9e52f90, 0xd32c4e3d, 0x39c9d98d, 0xe4dc936c, 0xc39741b6, 0x3a955131, 0xbeed41ef, 0x2400606, 0xccc3d4f, - 0x1a503367, 0x00005d, 00000000 + 0x1a503367, 0x00005d } }, { @@ -44190,19 +44189,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xefd8646d, 0x51501c01, 0x4aa03835, 0x5be5c587, 0x907fcbdc, 0x7eac7db, 0xe10d3f74, 0x1ed2ec24, 0xbd5f69f, 0x36df5b78, 0x16311fb2, 0x977116f1, 0x4da590b, 0xe57f177f, 0xa00ebbef, - 0xb1b3618c, 0x0000af, 00000000 + 0xb1b3618c, 0x0000af }, { 0x4b412fe5, 0x2fa60b4d, 0x118b9295, 0x1a19494d, 0x11b7c69f, 0x6e06ab52, 0x19217c40, 0x25458816, 0x6b56151c, 0x1df902e6, 0xdfac024c, 0x6eb4e6cc, 0x5fcd6d38, 0xeaa394fc, 0x81338538, - 0xf87b3f1e, 0x0001a7, 00000000 + 0xf87b3f1e, 0x0001a7 }, { 0x57f50e78, 0x4b56fd7f, 0x2acfa153, 0x812ff244, 0xfc302827, 0x8f9db04d, 0x72b181f6, 0xbf262e52, 0x25be9f67, 0x855425be, 0xb6703003, 0x7c2b0ea, 0xb98a7299, 0x67f28836, 0xca3bf740, - 0xf44b874b, 0x0000ae, 00000000 + 0xf44b874b, 0x0000ae } }, { @@ -44210,19 +44209,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd718f075, 0x7ab16f5f, 0x1613c65b, 0x47e4de99, 0x72b4a72c, 0x27f5fc99, 0x50dafb2e, 0x9fda24f4, 0xdaf99b94, 0xfda12789, 0x9e7373a4, 0x36df6c5c, 0x659ae7d, 0x723bdefa, 0x71720582, - 0xc10c245, 0x000069, 00000000 + 0xc10c245, 0x000069 }, { 0x4f7fd19d, 0x9ef7b1dd, 0xc635e8d6, 0x8ee9ee6a, 0x9e40aa4f, 0xa396812c, 0x1cfc277e, 0x5f4ab1a, 0xd2c0db14, 0x9ea02c3a, 0xa866435d, 0x21365352, 0x437d7bff, 0xdf13332f, 0xcbe1deda, - 0x12bb021c, 0x0001ba, 00000000 + 0x12bb021c, 0x0001ba }, { 0xb35871f9, 0xc7680d25, 0xd084063d, 0x5c598247, 0x184ca1b3, 0xb8a1e45f, 0xef0301db, 0xde0ae4c0, 0xb9f6412d, 0x8eb7a6d7, 0x83e43795, 0x1615b128, 0x234f2123, 0x3f66edc9, 0x64924593, - 0x6e063b50, 0x00006a, 00000000 + 0x6e063b50, 0x00006a } }, { @@ -44230,19 +44229,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x80a336d9, 0xa5138669, 0x60e4ce3d, 0xfdafe0ee, 0x17226619, 0x86d573c6, 0xd44ee130, 0x2b87220, 0x9e0dfd4e, 0xeb764a0c, 0xb3c84b10, 0x1d0f1f8c, 0xa0579a92, 0x3368e25b, 0xa650cb0, - 0x438fd852, 0x0000b3, 00000000 + 0x438fd852, 0x0000b3 }, { 0x1a5b0c03, 0xf981ec25, 0x29109fe2, 0x74efed74, 0x7f8ceaaa, 0xce38568, 0x2eefb056, 0xea633d6c, 0x2b87ab80, 0xbc0c2669, 0xb4f29964, 0xb1f55f36, 0x1b9e326, 0x3334dd7, 0xc4c7425c, - 0x7edc49fb, 0x000075, 00000000 + 0x7edc49fb, 0x000075 }, { 0x4225271d, 0xbcbf2e77, 0xf1a91436, 0xaa326e32, 0x1d348851, 0xb2761a6b, 0x90000623, 0x1f6e517, 0xad9c3069, 0xf1303cbb, 0x96612800, 0x704b743d, 0xc8c2813e, 0xf43dd967, 0xbfcf471e, - 0xa2025ed7, 0x0000b4, 00000000 + 0xa2025ed7, 0x0000b4 } }, { @@ -44250,19 +44249,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x66ed08b7, 0x1f87baf1, 0xaaeb3408, 0x6b705f9f, 0xbbf8ad3c, 0xbff62c3d, 0xe3639eed, 0xbb5eda30, 0x312eccd7, 0x7d891de, 0x3b228a91, 0xe2215fa3, 0xa30d74c7, 0x7c3b8637, 0xcb53e0be, - 0x5d98f5cb, 0x000130, 00000000 + 0x5d98f5cb, 0x000130 }, { 0x35f5c0b0, 0xde327f9f, 0x7d58ee78, 0xd9a09a39, 0x5dc0f6eb, 0x91a6ee2a, 0xb180d205, 0xbf2f4c1b, 0x1168a203, 0x552871f9, 0x45233a88, 0x77002a24, 0xe45394f8, 0x2ecc2cbd, 0x74e30fc1, - 0xb065e431, 0x000045, 00000000 + 0xb065e431, 0x000045 }, { 0xba8e7a64, 0x673a7117, 0xa2d050f9, 0x4ff9c545, 0xc5898848, 0x502535a8, 0x8c90eb4f, 0x78af74e7, 0xb73dd5a4, 0xf6db81c8, 0xaafab4e, 0x84b05b94, 0xc86c05c3, 0x1ea74958, 0x39e994c5, - 0x32f9d99, 0x00009a, 00000000 + 0x32f9d99, 0x00009a } } }, @@ -44272,19 +44271,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7c9b2a2f, 0xd870ee36, 0x3c8a9445, 0xabaf4ea9, 0xfe8f83c4, 0xd222115f, 0xae4308b9, 0xea98fae0, 0x96822020, 0xf1565cc3, 0x26548760, 0xb20b817c, 0x8aa49cc1, 0xe79434b7, 0x42cb61bc, - 0xe5f6785a, 0x000029, 00000000 + 0xe5f6785a, 0x000029 }, { 0xc52e9235, 0x6a1fa8ef, 0x552ce411, 0x47c58518, 0x8ee63918, 0x61a1ff86, 0xe1be1059, 0xadd44e71, 0xd64aca8a, 0x64aba6fc, 0x53403bd4, 0xeb0e9b76, 0x4a9cd912, 0xf8cd818b, 0x55efa489, - 0x6600031d, 0x000184, 00000000 + 0x6600031d, 0x000184 }, { 0xc594b740, 0x4c658af7, 0xe72a0daa, 0xb5b2bbf6, 0x9600d3c3, 0x36234b09, 0x661a5a7d, 0x77910b63, 0x9ceffab8, 0x793ae82d, 0xb7aec1be, 0x8b2b4922, 0x3e68ee5d, 0x1edf6454, 0xe770ea9, - 0xdebcdb8b, 0x0001a5, 00000000 + 0xdebcdb8b, 0x0001a5 } }, { @@ -44292,19 +44291,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x92119275, 0xf476d35, 0x40f149f0, 0x7a09af9c, 0xce448235, 0x565440d1, 0xa232fe73, 0x30c4ec75, 0xfabac88, 0xab75f6e2, 0x1dc1cef6, 0x9419744d, 0xa4900eec, 0x42feabe6, 0xdb99c158, - 0x3ceec0ce, 0x0000d3, 00000000 + 0x3ceec0ce, 0x0000d3 }, { 0x39778aa6, 0xfcf5ee0c, 0xd1215a1c, 0x258a10ea, 0x7dd05a7e, 0xdb07e1ea, 0x7de3f81a, 0x214911bf, 0x507ff488, 0xf83fef52, 0x4afb1384, 0x9ca89139, 0xedca94bf, 0x624a5588, 0x1a6d5200, - 0x8191560c, 0x00006a, 00000000 + 0x8191560c, 0x00006a }, { 0xeb91a005, 0xd7402398, 0x72711bf5, 0x5b6a50e8, 0xb46a8109, 0x7d4545c5, 0x4eeff8f1, 0x2e3a25a5, 0x3c9a5ae1, 0x905b16b6, 0xd3aa8b8e, 0xdc9c5c2b, 0x976ec1d2, 0x508dac55, 0xb4bdab64, - 0x31364f68, 0x000188, 00000000 + 0x31364f68, 0x000188 } }, { @@ -44312,19 +44311,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1aa06646, 0xd662db00, 0xbc6b99b2, 0x48a89486, 0x59bd94d3, 0x2b9de29e, 0x81aa70ed, 0x51575151, 0x4cec9423, 0x9a8a0d8f, 0xc69bde34, 0x8f716b5c, 0x75d8a499, 0xea482035, 0x3c512313, - 0x8b9d53da, 0x00000b, 00000000 + 0x8b9d53da, 0x00000b }, { 0x29b64428, 0xc15ad63a, 0x2375770, 0x97caa07d, 0x4dda9ac7, 0x85250e82, 0xd4ca3031, 0xa3ac337c, 0xca10346c, 0x97f9da8f, 0x5df63f49, 0xfa6c4bb9, 0x1261d697, 0x84f97485, 0xbdd09f45, - 0xbb197d01, 0x00010a, 00000000 + 0xbb197d01, 0x00010a }, { 0xe38bed84, 0x2605448e, 0x26f5c048, 0x833ccc73, 0x76f95112, 0x9a41dba9, 0x87031f46, 0x29d89f67, 0x490cb6b3, 0xf35de310, 0x6972813b, 0x7de08371, 0x4a99275a, 0x9614c2b4, 0x500f4a7a, - 0x9f9ac97c, 0x000039, 00000000 + 0x9f9ac97c, 0x000039 } }, { @@ -44332,19 +44331,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21697323, 0x1f8db9ed, 0xfe810c12, 0xf07e9e16, 0xb45b1dab, 0x41682c13, 0xe24bfc92, 0x830218a6, 0x5ce9032e, 0xa2dfe692, 0xe172fa38, 0x75cc0b58, 0x4cad321e, 0x799b6385, 0x8d84f40f, - 0xfaf82172, 0x0001db, 00000000 + 0xfaf82172, 0x0001db }, { 0xb4f74d99, 0x4d8dcfb1, 0x1a482b2b, 0x898837e, 0x779a0579, 0x10d18671, 0x2769aa6c, 0xa111fe25, 0x93c4f6fc, 0x47effb23, 0x7f49a2a1, 0x83dd3da8, 0x64986628, 0xba613b56, 0xe7d1ac33, - 0x444b6f38, 0x00009a, 00000000 + 0x444b6f38, 0x00009a }, { 0x88788c90, 0x805e9c3a, 0x66f8edcb, 0x898fd49a, 0xdaa32009, 0x9f1dabab, 0xe80c451e, 0x998f396e, 0x684ad510, 0x921c23ac, 0xfb8d788b, 0x51d06a1f, 0xb7d90658, 0xcd33611a, 0x2b66674d, - 0xac6bd617, 0x0000f1, 00000000 + 0xac6bd617, 0x0000f1 } }, { @@ -44352,19 +44351,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd39b7bdd, 0xe1b8f716, 0xd881303d, 0xbd966ef1, 0xa9176890, 0xf2eae533, 0x957aa7bc, 0x6eea3f31, 0xa567e09c, 0x285f1883, 0x70904026, 0xf3329ad7, 0x8aa7c010, 0x97920e10, 0x5731d4e, - 0x96cd43cf, 0x0000fa, 00000000 + 0x96cd43cf, 0x0000fa }, { 0xfaf95b8c, 0xcb363816, 0x1e3a7977, 0xb7268583, 0x98c26930, 0xb743bf6e, 0xdc96b2eb, 0x78f90581, 0xda929ef2, 0x76aac5fc, 0xe5e2fe92, 0x3ae4cd9b, 0xcbe8df91, 0x358dfb31, 0xe4a23f46, - 0x82a5c3a9, 0x0000c0, 00000000 + 0x82a5c3a9, 0x0000c0 }, { 0xe2c1adc2, 0x3848aefb, 0x5563dcf9, 0xc4f7ec7, 0x24b41d05, 0x8dfcd626, 0x4e2a9460, 0xbf2ac5ee, 0x2672c22e, 0xbb03bae8, 0x564a12b4, 0x414dc61d, 0xe1f1a304, 0x1874266a, 0x91503d71, - 0xbbef0087, 0x0001d9, 00000000 + 0xbbef0087, 0x0001d9 } }, { @@ -44372,19 +44371,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x47259898, 0xe5194f88, 0xb17c5288, 0x285a89a3, 0xe9b01f6d, 0xc1c002bf, 0x948b1993, 0x3f10c59a, 0x788aeba9, 0xee16a4b6, 0x3755120c, 0x9c32a353, 0xd36cb291, 0x891b89e1, 0x6d7a2bc3, - 0xcf6aaf76, 0x000051, 00000000 + 0xcf6aaf76, 0x000051 }, { 0xb13ecf83, 0xb00b38b7, 0xde781854, 0x1ddf78d2, 0xd5e743fb, 0x82619588, 0x62d94605, 0xed4cac96, 0xad01799, 0xc47d4e0a, 0x8e79e6b0, 0x3806187b, 0x8381363c, 0x29e449ad, 0x96f02965, - 0x6a851329, 0x000076, 00000000 + 0x6a851329, 0x000076 }, { 0x52f2b430, 0xe08c714b, 0xcfe0b78e, 0xae1d9520, 0x3c3af29, 0x4330b41d, 0x3f89e908, 0xfce1919, 0x8d37bd05, 0x838a6f2f, 0xa25fbe1, 0x57ebd698, 0x2394084c, 0x1d68140c, 0x74f6bf01, - 0x932fc9f3, 0x000046, 00000000 + 0x932fc9f3, 0x000046 } }, { @@ -44392,19 +44391,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x45caccd0, 0xee97c47, 0x917c02df, 0x89bf0dbd, 0x5ae55f30, 0x7aa1439b, 0x79ff424a, 0x54437759, 0x4597c0e0, 0x23d8b758, 0x5950ced, 0x1aac6c78, 0x325b460a, 0x7c173f72, 0x4fd993a, - 0xadce35fc, 0x0001a0, 00000000 + 0xadce35fc, 0x0001a0 }, { 0xf538722f, 0x9394ea46, 0x6b4edeca, 0x9b5ac821, 0x9bbf087a, 0xbaee65f2, 0xe6b729b, 0x69ec8bad, 0xbf1c6f3b, 0x16156b66, 0x4f7f22f7, 0xc5892867, 0xe835094, 0x1b00ca6b, 0x19ce1e94, - 0x8d561d4e, 0x00009c, 00000000 + 0x8d561d4e, 0x00009c }, { 0xdfb76a10, 0x21ddc8b0, 0x6567b13a, 0x44fa2cb9, 0x3d302c71, 0x2ebde593, 0x290040be, 0xcdca1cda, 0x75d61866, 0x6fe86636, 0x918bf14f, 0xfc31c4d, 0x85a86abe, 0x7651572, 0x41d2190b, - 0x1e734514, 0x0000a1, 00000000 + 0x1e734514, 0x0000a1 } }, { @@ -44412,19 +44411,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x15744e47, 0x1d6b138d, 0x9e5a4bc1, 0x9df70cb5, 0xed91c30d, 0xd664f784, 0xd04b0bad, 0x8d70e3da, 0xafe629d2, 0x518f6d44, 0x47b2c7d2, 0xca38391a, 0x2c98f6d8, 0x1c398ecb, 0xea460371, - 0x66fe8289, 0x0001d0, 00000000 + 0x66fe8289, 0x0001d0 }, { 0x393663c7, 0x17ead131, 0x1e2be3eb, 0xa26891ce, 0x57df8102, 0x8d9de1f6, 0x9bbba401, 0xabab0af9, 0x7ec1410b, 0x10fd3808, 0xf7e474ae, 0x63910265, 0x13a62645, 0x5945a618, 0x620b0b4c, - 0x54a84b29, 0x000170, 00000000 + 0x54a84b29, 0x000170 }, { 0x531937c0, 0xb077ce1, 0x2aba3815, 0x8caa5786, 0xcf8c49ea, 0x34dec538, 0x497854ff, 0x272d4b19, 0x52042421, 0x4edf6681, 0xc69985cc, 0x353cc3ba, 0x75263f8a, 0x915dfd3b, 0x880721d, - 0x15e823f1, 0x000130, 00000000 + 0x15e823f1, 0x000130 } }, { @@ -44432,19 +44431,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x46740704, 0x593ccbd3, 0x9f1c56e1, 0x513df774, 0x918d8f31, 0x78359770, 0xf4699324, 0x294cc5cd, 0xa5493e69, 0x7ee66ff, 0x7e088200, 0x72d47283, 0x27ea4b1f, 0xdbf637ff, 0x4e58c736, - 0x66b78341, 0x000117, 00000000 + 0x66b78341, 0x000117 }, { 0x25b4bcb7, 0x4c7bc389, 0x12db5635, 0x4116f5ee, 0x7e5c5261, 0x2a632a6c, 0xae03fb14, 0x181e5d7b, 0x459e32a0, 0x1a3f0c8c, 0xe820c609, 0xbbb798e, 0x582d223c, 0x7fa9d9c2, 0x58516c4, - 0x98c0e381, 0x000005, 00000000 + 0x98c0e381, 0x000005 }, { 0x87d3f839, 0x2d7bb4f0, 0x9ac6106a, 0x97c98822, 0x6064c475, 0xa03df312, 0x5996a931, 0x235144b3, 0x1b7bf1a2, 0xa7cef819, 0x86c5a6d7, 0x20061331, 0x1be3d791, 0x8e913746, 0x5ce2ab8e, - 0x8161f613, 0x00005c, 00000000 + 0x8161f613, 0x00005c } }, { @@ -44452,19 +44451,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x51a01a9c, 0xd1d9f4dc, 0xe5727926, 0x97df705b, 0x30767533, 0x1b16f862, 0x21c44764, 0x29d46992, 0x93b3084c, 0x8a39c88c, 0x5163a7f9, 0x2d80906f, 0xdbe06663, 0xb136be29, 0x9ce88f1d, - 0x76f3cc17, 0x0001d4, 00000000 + 0x76f3cc17, 0x0001d4 }, { 0x5bbd5aa2, 0x3d1be58d, 0x83d58d8, 0xddc4c8e2, 0xa956a85c, 0xbba06e85, 0xb3cd2722, 0x3568615f, 0xf08863fe, 0xa1243f3e, 0x35b8dde5, 0xd5ba87f6, 0x94e671f8, 0x6da948aa, 0xa33cfbdb, - 0xc4f5f0d7, 0x000022, 00000000 + 0xc4f5f0d7, 0x000022 }, { 0x68c72ea8, 0xcf495978, 0xe5d2edf1, 0xafec9220, 0x188e251e, 0x5e320085, 0x31b7a694, 0xe76ab053, 0x30af1614, 0xb6c294ef, 0x98eb8ef2, 0x958258ac, 0x49ee0c3a, 0x75300564, 0xfe8ca61, - 0xd714e7c2, 0x0000de, 00000000 + 0xd714e7c2, 0x0000de } }, { @@ -44472,19 +44471,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc528f97b, 0xaf75a42c, 0x1537a332, 0x3b833724, 0x15aea6b7, 0x74419643, 0x3d7193e1, 0x4597ed2d, 0x5c2b5e90, 0xd0822b8c, 0x97d8ce33, 0xe490b0f3, 0xc785c57c, 0xb8bc392e, 0x305a4649, - 0xe11c598f, 0x000127, 00000000 + 0xe11c598f, 0x000127 }, { 0x53764145, 0x486206a0, 0xdccfa7bb, 0xcfc150fc, 0x39e2622c, 0x744aacf4, 0xb441310f, 0xcc6c9e2c, 0x5844980e, 0x19507560, 0xca437a98, 0x4e6cfb4a, 0x2513f1eb, 0xae622d0, 0xe00af4a6, - 0x6e169c22, 0x00016f, 00000000 + 0x6e169c22, 0x00016f }, { 0xa8c70913, 0x16c93231, 0xc01afc90, 0x883c9409, 0x1bc4356c, 0x2ba07f04, 0x7ddc4b28, 0x704442c0, 0x63d14cc2, 0x4ca0ec97, 0xef609abb, 0x67c9a9de, 0x890708c6, 0x8fa4aaa5, 0xda3cca0b, - 0x35da0c25, 0x0000ac, 00000000 + 0x35da0c25, 0x0000ac } }, { @@ -44492,19 +44491,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x421d10a5, 0x2e32e3fb, 0x202d2d46, 0x190aa3af, 0x511a7229, 0x7cb6dcff, 0x3cbda211, 0x294e03f, 0x3a0a7e5c, 0xb6f457d1, 0xfe54ea21, 0xabc9ecbf, 0x4b9ab173, 0xfdf22f2, 0x4f9f766c, - 0x7b191bf4, 0x000151, 00000000 + 0x7b191bf4, 0x000151 }, { 0x46e78fc1, 0xc3761b20, 0x495e4622, 0xecd2b887, 0x63eac941, 0xcbf14192, 0x251f68c9, 0x2d03a2bd, 0x2c22b4fd, 0xf7411a66, 0x66d35443, 0x5c7641c5, 0xd4506876, 0xffd27cc, 0x544d5134, - 0x6623a2c4, 0x0000f1, 00000000 + 0x6623a2c4, 0x0000f1 }, { 0x56cf35bf, 0x9a88f126, 0xa1ffc4dc, 0xab05ccc3, 0x116b37cb, 0x86678c41, 0x32f2ca59, 0xccf530c1, 0x99aaddf0, 0x784bbe31, 0x871a44ef, 0x83c7743f, 0x50a7e9c0, 0x7ae2751e, 0x25874e2e, - 0x111ff9b8, 0x000017, 00000000 + 0x111ff9b8, 0x000017 } }, { @@ -44512,19 +44511,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb49fd5d4, 0x6f69dfbf, 0xd90a1309, 0x56a761c3, 0xf11beecd, 0x5afaee75, 0x455c6422, 0xf7e5433a, 0x6ef58bc, 0xcb3a8796, 0xe12962fb, 0x2b8fcac9, 0xc4f79393, 0xc8b07ff0, 0x7edf44cd, - 0xc596eeb7, 0x00015c, 00000000 + 0xc596eeb7, 0x00015c }, { 0x48596f85, 0x97dce13d, 0x76921034, 0xac46b80f, 0x3b3cfaa3, 0xf83589a3, 0x3249860e, 0x90546043, 0x4092c9b5, 0xf4ca4e0f, 0xf1018aac, 0xc4f98e46, 0xa93464c8, 0x1e02b5ca, 0xfadad07c, - 0x6a19be72, 0x000078, 00000000 + 0x6a19be72, 0x000078 }, { 0xc54e7b13, 0x15b801d2, 0x8b491f90, 0x10b07e19, 0x3bbe91ce, 0x65f30083, 0xbbcfb5e7, 0xad90ec77, 0x4c1ff438, 0xfcca5b3d, 0xd19d5486, 0x8f438233, 0xb36e8ed6, 0xc38c9683, 0x42ada8cb, - 0x7d9da432, 0x000045, 00000000 + 0x7d9da432, 0x000045 } }, { @@ -44532,19 +44531,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfe141d76, 0xa273298a, 0x446942c4, 0x4f68ea30, 0xc679926a, 0x88aea278, 0x3319a729, 0x284f9eb6, 0x300defca, 0x734b62ae, 0x2c5f6339, 0x75bc959d, 0x51dbee1f, 0xe190195, 0x712d0e93, - 0xfc931caa, 0x00017b, 00000000 + 0xfc931caa, 0x00017b }, { 0xfd501003, 0xa6693db9, 0x7cd5618c, 0xa9ae1f2e, 0x227c8463, 0xedf9159e, 0xdd6e5219, 0x456401e9, 0xd828b50b, 0xbb2e8f92, 0xfdc9688, 0x397c6418, 0x2c8c1f73, 0x3cdaeadb, 0x68865a2, - 0xedb26fae, 0x0001af, 00000000 + 0xedb26fae, 0x0001af }, { 0x86b33d5a, 0x6966a6f5, 0xa38f58fe, 0xda6919db, 0x3b9aed09, 0xbd78dab4, 0x4645ac8f, 0x679037eb, 0x1456477e, 0x7e79b16b, 0x54233f7d, 0x417df36e, 0xb8297e97, 0x992500c6, 0xdd3d1ba9, - 0xd92464f2, 0x0000c2, 00000000 + 0xd92464f2, 0x0000c2 } }, { @@ -44552,19 +44551,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7bde6620, 0x9ecfbc33, 0x302a9d83, 0x38a7d561, 0xd346192, 0x6d9b4136, 0x47abdf59, 0x140dc54e, 0x1b5f5a1e, 0x662fc1f, 0x9fb100ad, 0xb9efd065, 0x6166f1ac, 0xe17cfffd, 0xbd8e4a70, - 0xc0acbbaa, 0x00000d, 00000000 + 0xc0acbbaa, 0x00000d }, { 0x415b4b06, 0xd381d2b2, 0xf9ad7c17, 0x68f75b8b, 0x5fd84ff, 0xec0b0cf5, 0xce7f1578, 0x379c6230, 0x92322555, 0x679272bf, 0xc02d7fdd, 0xf962f31d, 0x6f266596, 0xe4da38cb, 0x87a3eec3, - 0x679fdaf4, 0x0000ec, 00000000 + 0x679fdaf4, 0x0000ec }, { 0x7ac451e1, 0x523bf9cb, 0xd698c99d, 0xa9d65611, 0x25bb0295, 0x498690c2, 0xdf6bffdf, 0xe8849095, 0xfef39f1d, 0x524957cf, 0xd88e8a6e, 0xe1835abe, 0x80a3c5a7, 0x684bb668, 0x96bdf36, - 0x1168d963, 0x0001bf, 00000000 + 0x1168d963, 0x0001bf } } }, @@ -44574,19 +44573,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcea45e0a, 0x47e5bcad, 0x7f4222ed, 0x19f65f24, 0x3585feb, 0x4648c389, 0xc5a2bc42, 0xc4c99bf9, 0x7fc49cd5, 0xca20a90b, 0x5e557326, 0x42481b6e, 0x6fbb873c, 0x9ce80215, 0xfd388c83, - 0x903ae00f, 0x00007a, 00000000 + 0x903ae00f, 0x00007a }, { 0x565a3c55, 0x258051f0, 0xf46c8f96, 0xd05daf0, 0xa500b6b0, 0x778ded40, 0x8aa84d34, 0x1a5b3fa3, 0x37583c1b, 0x9806bf3d, 0xe66cfd0, 0xde0fd73c, 0x370d9db9, 0x5fbb8ea8, 0xe1159234, - 0xc655108, 0x00008c, 00000000 + 0xc655108, 0x00008c }, { 0xf48dfed7, 0x937eb8da, 0x3ee74ecf, 0x465f4e0, 0x616b88af, 0xa90b24be, 0x5235d231, 0x25858ec1, 0x6feda29b, 0xa83e3e06, 0xd81e8aaa, 0xb8ed5daf, 0xc93e0e71, 0xb7f8b9d, 0x300b7000, - 0x53b3cb5b, 0x00016d, 00000000 + 0x53b3cb5b, 0x00016d } }, { @@ -44594,19 +44593,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1283c7d3, 0x9f37a0ab, 0x5ab4d31, 0xd756a4a8, 0x84eb796f, 0x9ad50583, 0x8866032a, 0xc13c43a1, 0xd36662b2, 0x715ed887, 0xb8c3037d, 0xf9409704, 0xdf33ae75, 0xf17fda7d, 0x6e8524ee, - 0xb124ab5e, 0x000036, 00000000 + 0xb124ab5e, 0x000036 }, { 0xf14b6b99, 0x76fe3212, 0x9b2f9472, 0xb085ce66, 0x61751132, 0xe2a3605d, 0xe1b4ae7d, 0x4751d299, 0x62b83045, 0x4099aff8, 0x66843b4f, 0xe52510bd, 0x3ab4acc1, 0x132946b3, 0x338b2fa, - 0x53cbfb50, 0x000167, 00000000 + 0x53cbfb50, 0x000167 }, { 0x7192311f, 0xfe32f224, 0x55d85600, 0xb5369dcf, 0x2a6da9fa, 0xc8d832d3, 0x70e24afe, 0xe3bc2ff2, 0x675e7907, 0xc787e879, 0xdf847cc4, 0xacdfb247, 0x3d939fb4, 0xdedf071e, 0x885e8bf8, - 0xc13d9f0f, 0x000124, 00000000 + 0xc13d9f0f, 0x000124 } }, { @@ -44614,19 +44613,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd889a4ed, 0xf2c00e55, 0x1a270746, 0xbf31928, 0x883c4886, 0x7417f3bb, 0x6f97023b, 0xcc7e7620, 0xdc3cc55e, 0xcccb3bab, 0xdf151a6e, 0x5b15f111, 0xb789e46d, 0x7bc6a56f, 0xf7116d08, - 0x5934b568, 0x00019a, 00000000 + 0x5934b568, 0x00019a }, { 0xfcee3f2f, 0x9bbe81e7, 0x64bb03a8, 0x55460db4, 0xf4945d95, 0xd794ee4a, 0x32410a79, 0xc1280033, 0xb7fb76d, 0xf450e9c3, 0x6ae8d0da, 0x7c119f3e, 0xd7538c67, 0xbc063156, 0xb82610d8, - 0xbdcab394, 0x000074, 00000000 + 0xbdcab394, 0x000074 }, { 0x1cd71124, 0x3b50921a, 0xa31a2555, 0xd9433f3e, 0xd99a7daf, 0xcd9c94b7, 0xc54ca56d, 0x88e28099, 0xe317321d, 0x9b4518ff, 0x1316d2c5, 0x81ae1a90, 0x71f7e30e, 0x83c1d3e4, 0x94b714fd, - 0x811ed4da, 0x000117, 00000000 + 0x811ed4da, 0x000117 } }, { @@ -44634,19 +44633,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4154b81f, 0x3ae0bf5e, 0x5edda346, 0xfed1be4b, 0x94f98141, 0x969d3c42, 0xf2d12313, 0x80db5c49, 0x8e100b2, 0xd73cf40, 0xfbf77431, 0xbc8dbd05, 0x2a2181ea, 0x40ac8f2c, 0x2f898702, - 0x3e841098, 0x0001f9, 00000000 + 0x3e841098, 0x0001f9 }, { 0xc9027e9, 0xd7e66938, 0x6d28d88d, 0x64eeb20c, 0x38487000, 0x9f1831ab, 0x349b30e1, 0xd6985baf, 0x90e10067, 0xe909e770, 0x18292c88, 0x5e557aaf, 0x766c9a01, 0x32c35f69, 0x2714fe8d, - 0xdc9dc7c5, 0x000186, 00000000 + 0xdc9dc7c5, 0x000186 }, { 0x37ee9668, 0xa7894454, 0xdd092b0a, 0x33250fd9, 0x3413c174, 0x98f9bed3, 0x7a80243, 0xb6cc4c63, 0x6e33912d, 0x93b9b1ae, 0xdb317d3b, 0x699131b7, 0xaec0d35b, 0x803f22e5, 0x8c927670, - 0x1a94a35d, 0x0000ce, 00000000 + 0x1a94a35d, 0x0000ce } }, { @@ -44654,19 +44653,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x902e428e, 0x572fe356, 0xb7ffb338, 0xfa7b3577, 0xcbb8e1a3, 0xfd5ec53b, 0xf344322e, 0xb292fde3, 0x5e538e7f, 0xae61299f, 0x5cfc6886, 0x2993f1f1, 0x25f2fe9f, 0xf2ab461f, 0xda342f6f, - 0xbe12c647, 0x0000dc, 00000000 + 0xbe12c647, 0x0000dc }, { 0x97c94424, 0x2b24b9c6, 0x25c0c613, 0xea97c2b6, 0x2af34af8, 0xe675c8bc, 0x25f821da, 0x6f00bf53, 0xa00f9f86, 0x759264c, 0x34079969, 0x49780569, 0x5c6f352c, 0x9a00df58, 0x6fc53804, - 0x44252809, 0x000149, 00000000 + 0x44252809, 0x000149 }, { 0xfd58fe91, 0x689b2564, 0xd40197a3, 0xcfe2fd9e, 0x34170364, 0xe521603b, 0xefc0cc8f, 0xa20b1eba, 0xd18f00a1, 0x0f16ee, 0x7130c853, 0x72e9e28b, 0xb8cce862, 0xe0b984a8, 0xe946feeb, - 0xdcd7cef1, 0x000065, 00000000 + 0xdcd7cef1, 0x000065 } }, { @@ -44674,19 +44673,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xca754aba, 0xbaa68caf, 0x4d07ba7d, 0xe9fb45f, 0x1e34ec07, 0x55d5e4e4, 0x3e8af8ff, 0x39a78442, 0x93caf100, 0xbc80aa1d, 0xce9f8350, 0x1be3e88d, 0x5b456731, 0xf12f2599, 0x9b0adf38, - 0xb410115f, 0x0001b6, 00000000 + 0xb410115f, 0x0001b6 }, { 0x2ec8f23b, 0xd2faa540, 0x7d15f4e3, 0x8a7cbc1a, 0xe7631e2e, 0x94dda812, 0xda28c2bf, 0xedc23264, 0x165b454b, 0xa2d68f4c, 0x6d80dc8e, 0xb7823e83, 0xf20cfb1b, 0x5ec65424, 0xdd94363c, - 0x79c7311a, 0x000112, 00000000 + 0x79c7311a, 0x000112 }, { 0x9ee927b4, 0x50a6ef34, 0x9545c47f, 0x28bdce78, 0x3d8368c, 0x387c7d62, 0x79aac6b, 0xb7541e08, 0x18a8c6c, 0x9557e818, 0x4fcb8d39, 0x7e6f1184, 0xd36a3e85, 0x944c64f5, 0x3b2364dc, - 0xba159134, 0x000034, 00000000 + 0xba159134, 0x000034 } }, { @@ -44694,19 +44693,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x52b50af1, 0x7e2ec3e5, 0x2ce369d0, 0x2c541c77, 0x358958c4, 0x25d6552a, 0x4cb64d36, 0xed813f62, 0x2345f9a9, 0xa5bfebd3, 0xb5c383b2, 0x32911148, 0xc28e18bd, 0x506b1552, 0x413b1110, - 0x477dbb57, 0x00007c, 00000000 + 0x477dbb57, 0x00007c }, { 0xdc060987, 0xb2622930, 0xc2174f4b, 0x63aaad72, 0x20b2e5bc, 0xea5b2aba, 0xa9f523eb, 0x143959b1, 0xdd692371, 0xfae9f9e0, 0x8c5567c, 0x661f7378, 0xc9ae971c, 0x50b88212, 0x47405171, - 0x1b00c58f, 0x0000e1, 00000000 + 0x1b00c58f, 0x0000e1 }, { 0xdf9f6cf9, 0xceba7357, 0xfe93823a, 0xbe66e553, 0xf2e224b, 0x40ab7ffd, 0x4ebf21f3, 0x62339255, 0x842c7b12, 0xe75bf9c3, 0x9a0aceee, 0x93128be1, 0x6c2ee17d, 0xe0ad323d, 0xeb64be45, - 0x18236ae9, 0x00001b, 00000000 + 0x18236ae9, 0x00001b } }, { @@ -44714,19 +44713,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xac829eaf, 0x4edcb937, 0x244421a3, 0xec04a94f, 0x64695916, 0x3e9d701, 0x8ae772ee, 0x3c318467, 0x70c4be79, 0xf2897701, 0xb899c95e, 0xcefad2d6, 0x6e8e4141, 0x393b5b43, 0x6fc94323, - 0x44321995, 0x000133, 00000000 + 0x44321995, 0x000133 }, { 0x1387dfd6, 0x46ceb4bc, 0x4284c84d, 0x5ef9632c, 0x2eeb3250, 0xbfaf3107, 0x22382b40, 0x62750bc1, 0xd7c961d7, 0x9e658210, 0x99c92954, 0xc999f7e1, 0x45b0d886, 0x45f57ac1, 0x341ddac0, - 0x1db19cae, 0x000181, 00000000 + 0x1db19cae, 0x000181 }, { 0x70d32d3, 0xb5c12c2f, 0xcc0e98f4, 0xce78a486, 0x2aea769e, 0xbdb1252b, 0xc5b02ef8, 0x3ed0c099, 0xb69ebdc6, 0x5689a359, 0x60d3aa65, 0xe2502e15, 0xc0ca29cf, 0x6281ff3e, 0xe7f28aa0, - 0x940d5a57, 0x0001b6, 00000000 + 0x940d5a57, 0x0001b6 } }, { @@ -44734,19 +44733,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4688b4b0, 0x82e5b47c, 0x5b0b2e1e, 0x9a2e6543, 0xee70366c, 0x5cd9e05f, 0xfadd2eb3, 0x5cfc1a26, 0x433e761b, 0x8e463eca, 0xb4f0676c, 0x76e3c25f, 0x12f84192, 0xd0738aab, 0xd4bd9cf0, - 0xd6d679a, 0x000012, 00000000 + 0xd6d679a, 0x000012 }, { 0xb2c6c1f, 0xc1db7e45, 0x4e6c530a, 0x549b4678, 0x2ced190a, 0x1b7f4fff, 0xa4dce7cf, 0x60414f78, 0x608ab400, 0x2b28b36a, 0x2d9894a0, 0x38cedf18, 0xabe227cc, 0x5ee9d464, 0xfc71499, - 0x76d905b5, 0x000184, 00000000 + 0x76d905b5, 0x000184 }, { 0x1446eb74, 0x72c449e5, 0x1ae3ef07, 0xcd9cb60d, 0x134764e7, 0x5b3d794e, 0x81e09d37, 0xb7f4ded, 0x53473dc9, 0x6ea4308b, 0x8cef3709, 0x94d30d28, 0x2581fe7c, 0x1e4d0658, 0x2bf3894a, - 0x36815b03, 0x0001a9, 00000000 + 0x36815b03, 0x0001a9 } }, { @@ -44754,19 +44753,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb13f5aff, 0x8833952e, 0x4f393630, 0x35d774e7, 0x820126d5, 0x78ea40ad, 0xa4e2ed1f, 0x26c46d9e, 0x1b738d32, 0xc65c0602, 0x1b41eedc, 0x1e958c43, 0x4704cdcd, 0x7143f07d, 0x83eb8764, - 0x9337698, 0x000155, 00000000 + 0x9337698, 0x000155 }, { 0x1e616fac, 0xf0a5695a, 0xc004a2b3, 0x342dec6, 0xa4a56bbd, 0xc004f16b, 0x52b1aed3, 0xb52d641c, 0x8cd3206, 0x66004d7a, 0xd276fa40, 0xea49c6cb, 0xfd58758c, 0x31693d8b, 0x92414ea, - 0x2c6b617d, 0x0001b9, 00000000 + 0x2c6b617d, 0x0001b9 }, { 0x8fbac7, 0x72e85545, 0xd7c720b8, 0x1674cbf9, 0xf2f0e108, 0xc126642a, 0xa69cc6c2, 0x6ea37a6a, 0xae6e5b9c, 0x83b67593, 0x39d7cf92, 0x26217fbd, 0x51340939, 0xc411f922, 0x7d3253e9, - 0xac85e09a, 0x000091, 00000000 + 0xac85e09a, 0x000091 } }, { @@ -44774,19 +44773,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x82ebbf90, 0x3593ed04, 0xebcfcb6, 0xb1329849, 0x57b2b32c, 0xc0ca5916, 0xbb313f95, 0xaf56d1cf, 0x7454b2f8, 0xd375c678, 0xadb18382, 0x8d27a5c1, 0x457181d9, 0xc202a5bb, 0xc5114e20, - 0x499bb72d, 0x0000a3, 00000000 + 0x499bb72d, 0x0000a3 }, { 0x8f691de, 0xf230215a, 0x7824bab1, 0xe0c52365, 0xd2e9cd81, 0xa9a4b618, 0x435d25c3, 0xd59a8879, 0xb6864143, 0x14a8f46d, 0xa23cc034, 0x24d488c0, 0xd4042e30, 0x8980b46e, 0x3fc68f35, - 0x4134b14b, 0x000001, 00000000 + 0x4134b14b, 0x000001 }, { 0x7dae2a50, 0xbe601e62, 0x7776f44b, 0x7f9b48e9, 0xe38d0acc, 0x7f8c85f8, 0x3e677cfa, 0x21c4b681, 0x2ae268e0, 0x1d0fad35, 0x6cde9eca, 0xdd2c7664, 0x63f5cade, 0x30900b6c, 0x36939755, - 0x2e9e3e6, 0x000127, 00000000 + 0x2e9e3e6, 0x000127 } }, { @@ -44794,19 +44793,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x34f1be9c, 0xee09cc32, 0x66a3b1a1, 0x783c811b, 0xa496446f, 0x946a7c37, 0x3a2c79a2, 0x38a543e7, 0x48cfb193, 0x56ab85dc, 0x6c3c6092, 0xf4d0cb9e, 0x1d747d31, 0xf5142556, 0x51f2425d, - 0xa40a1bc6, 0x0000be, 00000000 + 0xa40a1bc6, 0x0000be }, { 0x19688e95, 0xc294d572, 0x548d850c, 0xd1e6c4e7, 0x85609fa, 0x988bb4a2, 0xb8e9ae14, 0xec1af604, 0x3c5dec8a, 0x4a987e77, 0x1f32eff2, 0xe331f361, 0xbb88871b, 0xad20e258, 0x2e55ff20, - 0x70d0b51c, 0x00012c, 00000000 + 0x70d0b51c, 0x00012c }, { 0x349f2f1e, 0xfc5356f0, 0x8c27f256, 0x81f35315, 0xf3b8ae1a, 0x3bce7f79, 0xe63cfad, 0x832fd6a2, 0x6d34e199, 0x1e8b2c21, 0xdb6438af, 0x2a2b3060, 0x261a8439, 0xd464d0a7, 0xa6b22c70, - 0xc2cc4fe1, 0x000085, 00000000 + 0xc2cc4fe1, 0x000085 } }, { @@ -44814,19 +44813,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x82f52d6d, 0x93b58e30, 0x8b747742, 0xe7617ec3, 0xc38c7ca6, 0x6eaae77f, 0xd56524e1, 0x50796db9, 0x2df40c40, 0x19b4d145, 0x40563379, 0xf6c9b424, 0x709fe8fd, 0xe2f3c44c, 0x41c71508, - 0xfe72062b, 0x000052, 00000000 + 0xfe72062b, 0x000052 }, { 0xf5068209, 0xdc815729, 0xf9e2bc54, 0xecf8ccad, 0x616de359, 0xe235214a, 0x76cee490, 0x6128588b, 0xdd02bdd2, 0x935f075e, 0xcb5f0f99, 0xa7821909, 0x22131d0a, 0x9e443a07, 0x6f67b411, - 0xae29d9d9, 0x0001ce, 00000000 + 0xae29d9d9, 0x0001ce }, { 0xab37815a, 0x66d5e8e3, 0x4bc52bb7, 0xe68de269, 0x4143162f, 0xb82be58b, 0x377e431e, 0xfe4e6c5d, 0x30e39d03, 0x6531ad2c, 0x900df325, 0x41893bcc, 0x87dbac22, 0x73e13b8b, 0x47d88d84, - 0x15600a7d, 0x000056, 00000000 + 0x15600a7d, 0x000056 } }, { @@ -44834,19 +44833,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19f612e0, 0x896883e6, 0x3d1d6be6, 0xd99d0ee6, 0x7f382286, 0xb275c312, 0x7e2aed79, 0xdcd8999b, 0x99d90a46, 0xc337722, 0x3062ebcf, 0xacc3cccb, 0xc65e29ad, 0x7daaff38, 0x8d723fc6, - 0xaec50900, 0x000096, 00000000 + 0xaec50900, 0x000096 }, { 0x6cb337a, 0x23148a5d, 0x4dae77eb, 0x293ff839, 0xcd6e8c1, 0x86a871d3, 0x2de12acf, 0xd77c6e22, 0x8152e359, 0xe47ee2f9, 0x79ed22b1, 0x82d5dec7, 0xfb203637, 0xe0d6d4dd, 0x4e314d33, - 0xcc9324c0, 0x0001d3, 00000000 + 0xcc9324c0, 0x0001d3 }, { 0xd575b3c, 0x2dd1bbf2, 0x3a0cc541, 0x52683d0, 0x44d0045d, 0x8ebcc68, 0x1a9c15d3, 0x17fc415, 0x87093978, 0xa1eb225, 0x2d44a2fb, 0xf584aa93, 0x334ea549, 0xfa9f3ea8, 0x67aa0775, - 0xef0f175e, 0x000110, 00000000 + 0xef0f175e, 0x000110 } }, { @@ -44854,19 +44853,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa828d19f, 0xb575232e, 0x107077b4, 0xfa506866, 0xa8b2258e, 0xb4413a08, 0x98eeb5c9, 0x1f1e6dd3, 0x750610f6, 0x3ed034a3, 0xd0d8e3d1, 0x73dbda9a, 0xf95a3c9a, 0xf5133a64, 0x32468bd3, - 0x139bf2a0, 0x000059, 00000000 + 0x139bf2a0, 0x000059 }, { 0x9b6efb0a, 0xf5eb7983, 0x559c2d6, 0xa05405e5, 0x2c2eb0ad, 0xd003c9cb, 0xf22692b9, 0x5c61b8a3, 0x3af87b3b, 0x476a4655, 0x6a26111d, 0xe66f0f17, 0x3d14cc57, 0xdedd06ee, 0x5c3876a3, - 0x75ebaf8a, 0x000134, 00000000 + 0x75ebaf8a, 0x000134 }, { 0x2d3fee22, 0x9f66f353, 0x46b5d172, 0x9193bea3, 0xdeea765f, 0xd8fcbf4f, 0x99933bc8, 0x96071792, 0xea56d872, 0xa2c7ed95, 0x9da7a388, 0x533a8c3, 0xfc2db2ff, 0xf11f7159, 0xec214bdd, - 0x8399baca, 0x000076, 00000000 + 0x8399baca, 0x000076 } } }, @@ -44876,19 +44875,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7e11ebcf, 0xa78cddc2, 0x15e084e9, 0x5acf31c9, 0xe99d1c12, 0x5b2a8a47, 0x18842d3b, 0x53e0754f, 0x82ff327e, 0x5f693a05, 0x6cb8d232, 0x539832cb, 0x9dd7faa9, 0xb2398759, 0xcfa5e0dd, - 0xd2172e22, 0x00005a, 00000000 + 0xd2172e22, 0x00005a }, { 0x4080694c, 0xba061324, 0xcb45cd85, 0xda197185, 0xfbc22ce0, 0xfd964e5c, 0xd95813e2, 0xa26138a7, 0x7f6be4e7, 0x9004de, 0xc9a984d9, 0x4c242ad0, 0x17fefa75, 0x6abe7fb9, 0xfe6d22a8, - 0xe10ba337, 0x00004e, 00000000 + 0xe10ba337, 0x00004e }, { 0xfae17256, 0x45309848, 0x9c76f14e, 0xbcfd1fef, 0x6c570535, 0xec0608e3, 0xb0510c49, 0x2dc1b75e, 0x45f4db57, 0x9c693bf4, 0x61e86428, 0xe09bb42, 0xf939aee3, 0x11906367, 0xe907a8d5, - 0x91afb986, 0x00016b, 00000000 + 0x91afb986, 0x00016b } }, { @@ -44896,19 +44895,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x77db3ae4, 0x4a09c327, 0xa6bbf52a, 0x23cde093, 0x3162f89f, 0xd00bdbf4, 0x386731a2, 0x405e89c4, 0xaf4d73ea, 0x555809b3, 0xbd764812, 0xb9e2bab8, 0xc7644c91, 0x9fc2224f, 0x3790af8, - 0x9365347f, 0x00010e, 00000000 + 0x9365347f, 0x00010e }, { 0xc2a32b39, 0xc93d2ed9, 0xcadebbcd, 0x90cc3857, 0x78a86b4f, 0x8f71c193, 0x69bd8ba, 0xf7fce8cf, 0xad9edaf2, 0xe3eaa605, 0x9df5c431, 0xf14f9940, 0xe85293d9, 0xc7d4ab8b, 0x6e1c2634, - 0x494a5154, 0x000091, 00000000 + 0x494a5154, 0x000091 }, { 0xb2c59021, 0x1729a424, 0xd6852c6c, 0x5b8da677, 0x44f8d407, 0xcf034836, 0xc4c6f00b, 0x6cbb344b, 0xf5fe2fd1, 0x14fe08b3, 0xb6c01444, 0xbb403f4f, 0x55ddd612, 0x4cff1f27, 0x60eaaa78, - 0xd90cde37, 0x000049, 00000000 + 0xd90cde37, 0x000049 } }, { @@ -44916,19 +44915,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87962ca9, 0x7c28c44d, 0x69fcc2c6, 0xbb88ed75, 0xfe61f207, 0x9640c02b, 0x9409604d, 0x1d8ab0f3, 0x46836fd7, 0x9ab9c8e4, 0x66a76977, 0x21f3d3c7, 0x6b21af92, 0x9ea2e1c0, 0x1f9ed780, - 0xeab4f31f, 0x0000bc, 00000000 + 0xeab4f31f, 0x0000bc }, { 0x1d7be798, 0x641d0042, 0xd5e9e5a9, 0xded8a750, 0x1aa1ffac, 0xd8883cd, 0x7b51835e, 0xdec8263, 0x707bd241, 0x6f19164a, 0xde7bd338, 0xcb8d481e, 0x9c0c1c7e, 0x68c8f993, 0xc1ff8baa, - 0x5fb5d339, 0x000160, 00000000 + 0x5fb5d339, 0x000160 }, { 0xad08cce8, 0x372d52f3, 0xd7ebec15, 0xe085a596, 0x40112aca, 0xa0e9f5ac, 0xc9655ed4, 0x70f9dbb3, 0x15f475b7, 0x4016267b, 0xe8f8c79b, 0xab63c5d9, 0x1c29eaab, 0x7791c815, 0xd0b99292, - 0xbeeedf05, 0x000193, 00000000 + 0xbeeedf05, 0x000193 } }, { @@ -44936,19 +44935,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8b83cadf, 0x4124b091, 0x581f206a, 0xd5afe970, 0x40dbe02, 0xd6ffe2e8, 0xb3397bc3, 0x8f521fcc, 0x1e716daf, 0xbc7551c7, 0xac343236, 0x607f9c2f, 0xb814ea40, 0x93237dae, 0x16e0ad15, - 0xee7367cc, 0x000168, 00000000 + 0xee7367cc, 0x000168 }, { 0x3d40ed06, 0xacfc6048, 0x57e575ec, 0xce1746be, 0x44ee864f, 0x7e5c46c, 0x9681af25, 0x130fe9f3, 0x91b6f67, 0xa1a9c262, 0xe579e4b3, 0xd899d6d4, 0x8048b86d, 0x8a0788c8, 0x97882025, - 0x56173fc6, 0x000052, 00000000 + 0x56173fc6, 0x000052 }, { 0x3fa5b638, 0x935df64c, 0xe65f14ea, 0xe33fd61b, 0x4e8bbcf2, 0x13f045a5, 0xca8bce91, 0x647c4975, 0x8daca01c, 0xd8884405, 0x6c3c86af, 0x9272bfc7, 0x155616d5, 0x62c77757, 0x9695c5c2, - 0x1c098f09, 0x0000c4, 00000000 + 0x1c098f09, 0x0000c4 } }, { @@ -44956,19 +44955,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4fa90fa, 0x66b59dda, 0x5d93445, 0x41b235d5, 0xed3c9d8f, 0x480eaf30, 0xb2350d15, 0x1dcc6a02, 0xb0573500, 0x30b9c409, 0xb53d2159, 0xc4e2682a, 0x3b349bf2, 0x6ba0d1d0, 0x7d1884e1, - 0xe09949e8, 0x0001f3, 00000000 + 0xe09949e8, 0x0001f3 }, { 0xac5b1ffb, 0x5799c148, 0x72cea9af, 0xd27a5d4a, 0xdd31b148, 0xae3ff354, 0x9fc87b08, 0xf2ef904b, 0xd185f88d, 0xa0f22f0, 0x82198b2e, 0x9912079b, 0xa104e039, 0x97cb1727, 0x8706324f, - 0x27f760db, 0x00004d, 00000000 + 0x27f760db, 0x00004d }, { 0x272d4106, 0xb4e48334, 0xd8023b1f, 0x6b1e7805, 0xb7ea6fd1, 0x5621430e, 0x4a7547c2, 0xe152d6e, 0xc63972c, 0xf25b0e84, 0x435d8b3d, 0xea5bf60a, 0xc06ad6c3, 0xfa516001, 0x40e9a7ea, - 0x8ba81c04, 0x00003e, 00000000 + 0x8ba81c04, 0x00003e } }, { @@ -44976,19 +44975,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8ae152fb, 0x8166b443, 0x5e85a3fa, 0x4f58abd2, 0x8cc0421d, 0x657ce724, 0x32468cb2, 0xac9b1c0b, 0x6921d095, 0xccd9e0b, 0x10d443d0, 0xccf748f8, 0x806bb0e7, 0x5e6da419, 0xdeabb0d7, - 0x83020662, 0x0001ec, 00000000 + 0x83020662, 0x0001ec }, { 0x7d9556c9, 0xa75557b6, 0x956e121d, 0x1f3c4440, 0xbb9e150f, 0xc04d31b6, 0xdae0d57d, 0x6bd75ec, 0xcc548b0d, 0xd6dc1612, 0x5bc4a39, 0x42f60b35, 0x4ca12b84, 0x33c3cf71, 0xf24e7f71, - 0xa7357c1f, 0x000110, 00000000 + 0xa7357c1f, 0x000110 }, { 0xbfa70555, 0x46b681c3, 0xd6e0d2d3, 0xda1dd034, 0xb4a12b27, 0xaeea18f4, 0x1ac0876f, 0xdb5346af, 0x56955df1, 0x8a24832a, 0x321b287, 0xdf23feb, 0xf6f1f34a, 0x134f2020, 0x82f6c7a2, - 0x5dee00ae, 0x0001d6, 00000000 + 0x5dee00ae, 0x0001d6 } }, { @@ -44996,19 +44995,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8f1a100c, 0x9de93cbf, 0xb6ba9f3a, 0x28943b10, 0x78da7105, 0x1acf95aa, 0x764973f0, 0x6c47183c, 0x5f4f7846, 0x12d0cec3, 0xc31dae24, 0x75d652ba, 0x6c41e3d8, 0xa1112bbc, 0x62212df3, - 0x14f4e8f0, 0x000145, 00000000 + 0x14f4e8f0, 0x000145 }, { 0x32949fd4, 0x5b0f8dff, 0x4647e0ca, 0xbc4444c, 0x22fcc199, 0x2492a61a, 0x79db2692, 0x9d2d5262, 0xb2b0af6, 0x2b8dbaa5, 0xb97e520, 0x6b4081e4, 0xdcd3fdc1, 0x72038de6, 0xb4180c73, - 0x1aa36152, 0x0000cc, 00000000 + 0x1aa36152, 0x0000cc }, { 0xe7d243d, 0x5951ad38, 0xcd869ca0, 0x2187c0ad, 0xe8261750, 0xdc2fd1ec, 0xf2446f79, 0xaad14847, 0xa4b28ad2, 0x3259bd8b, 0x398bff45, 0xd53ee52c, 0x4ac0bfb8, 0xb5b409a8, 0xac488f34, - 0xa1c1d98b, 0x0000b4, 00000000 + 0xa1c1d98b, 0x0000b4 } }, { @@ -45016,19 +45015,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x714deac1, 0x897025a6, 0x14fa1bfe, 0x6fe1f52d, 0xd7d91035, 0xb26874b6, 0x7d8f0001, 0xfc823d57, 0x9ee12539, 0x7e6512b8, 0xc3441e06, 0x2bdc0019, 0x5adff393, 0x97e00363, 0x7a6d9992, - 0x17927fcb, 0x0000b3, 00000000 + 0x17927fcb, 0x0000b3 }, { 0x4ae49295, 0x5ddcdde8, 0x623f3898, 0xb77770aa, 0x63f7c9a6, 0xe2b1f1a, 0xa5a91382, 0x55cd185b, 0x416b5ab8, 0x51e60dd6, 0x550a4a63, 0x1990f453, 0xcca51afb, 0x79141d66, 0x320be7e2, - 0x1e0721fd, 0x000177, 00000000 + 0x1e0721fd, 0x000177 }, { 0x2809008c, 0xaf2fa544, 0x588ee554, 0xf282a355, 0x6b36ea13, 0x920be614, 0x97cd8c2e, 0xac4962a4, 0x413e7b62, 0x5b72d7ae, 0x2eaccbf1, 0x5b4472dd, 0xdab24349, 0x73f9b072, 0xb6a00ea6, - 0xc6cf894c, 0x000175, 00000000 + 0xc6cf894c, 0x000175 } }, { @@ -45036,19 +45035,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4d2eac2d, 0x6facdfa7, 0x248b3c25, 0x1e14e4fc, 0xbc568343, 0xfd01e25a, 0xca5db9b3, 0xaf149e94, 0x8475c576, 0x29f6914b, 0x836ceec1, 0x9c375216, 0x85f2dff2, 0x6f100724, 0x5a20854d, - 0xf54ce6f8, 0x0001df, 00000000 + 0xf54ce6f8, 0x0001df }, { 0x96022eb3, 0xcbebab5f, 0x72eab7bd, 0xc7a65018, 0xbb16310f, 0x8a934ebf, 0x67e25ed1, 0xb4dcb0a8, 0xbed1d0ce, 0x3d035a2e, 0x9b7a5bdf, 0x4010b112, 0xa5722063, 0xac39fbe1, 0x9af15a2, - 0xf8b7ae6f, 0x000190, 00000000 + 0xf8b7ae6f, 0x000190 }, { 0x344d2e46, 0xbd196f71, 0x916cc00a, 0x975ea456, 0x155c7f0, 0x8cf8b978, 0xfd7ce8d3, 0x38c7db30, 0x7c00d968, 0xb003c78b, 0x799ca7b8, 0xbea03b92, 0x582d165c, 0x489bf952, 0x80819876, - 0x6a3d9e13, 0x0000c0, 00000000 + 0x6a3d9e13, 0x0000c0 } }, { @@ -45056,19 +45055,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x105bb4a, 0xec8ad743, 0xbd91b7e7, 0x4c3bbe4c, 0x6ef44fe7, 0x6a4c49e2, 0x46fb5a31, 0xe0fc0091, 0x50ad836, 0xde13bbae, 0xa0f3f669, 0x2a9a6a7c, 0xb8c7661e, 0x3f2ddc08, 0xcf8380ce, - 0x53421374, 0x00007f, 00000000 + 0x53421374, 0x00007f }, { 0xc0a9539f, 0x9326e84b, 0x98aba6bc, 0x27839558, 0x26b96931, 0xcf4ec51e, 0xc5ddae88, 0x490372d5, 0xeb06700a, 0x1ebc2a65, 0xea4bec00, 0x3788a048, 0x2ae8bd06, 0x83e88e34, 0x4f6292df, - 0x5947d1d4, 0x000175, 00000000 + 0x5947d1d4, 0x000175 }, { 0x62600074, 0x45780903, 0x37c3a4dd, 0x6660252a, 0x747f9867, 0x76aa29ee, 0xed43fca6, 0xc99274c0, 0x980cf94f, 0x9e198640, 0xe5d6b72d, 0x67dd62e5, 0x389a153b, 0xf83616f8, 0x5cec59b7, - 0xe6f84bfa, 0x000063, 00000000 + 0xe6f84bfa, 0x000063 } }, { @@ -45076,19 +45075,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2c924eff, 0x6cfde90c, 0x2ead468f, 0x4874b9ff, 0x1a6e22e5, 0x5ce0b7fa, 0x8ebcbf4f, 0x5a91aab3, 0x8a501877, 0x20a0660b, 0x651095cf, 0x5121efcb, 0x357987be, 0x2ca449e9, 0xdb32870b, - 0xf9a1754f, 0x0001cb, 00000000 + 0xf9a1754f, 0x0001cb }, { 0x4924681e, 0x59690c59, 0x26dac188, 0x7d80518f, 0x316e37eb, 0xaf481f27, 0x8c2aa412, 0xc8bfdaf7, 0xc977aea2, 0xd56aeabd, 0xb6556679, 0xec98258c, 0xc23fd838, 0xa7960935, 0xee956e10, - 0x9e117342, 0x0001ae, 00000000 + 0x9e117342, 0x0001ae }, { 0x7ddad8e8, 0xb489351b, 0xee4586b7, 0x4d923dc8, 0x3bad16c9, 0x6d889ae0, 0x416c3c18, 0x8faa0a75, 0x25348f06, 0x7a32d350, 0xca0e1512, 0x7f94422c, 0x4f57725c, 0xffc27c85, 0xa516dca7, - 0xda04889d, 0x000034, 00000000 + 0xda04889d, 0x000034 } }, { @@ -45096,19 +45095,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8713c0f2, 0xbde22aa1, 0xcfe0544d, 0x1d32796c, 0x5d422ef6, 0x407c6870, 0x9c6a3925, 0x14bdc417, 0xa23d63f7, 0xa11d1b92, 0x503e361e, 0xb6ed5955, 0xb8db29f3, 0xbbd0dfa8, 0x9736a53c, - 0x9b03949a, 0x0000a4, 00000000 + 0x9b03949a, 0x0000a4 }, { 0x56bb13d2, 0xa460d79c, 0x1d86057b, 0x10e7e4ae, 0x24965f2a, 0xb7277b4b, 0x5454662f, 0x53336abe, 0xa9a1adfa, 0xe354f33d, 0xe92e3700, 0xbe488e88, 0x77520912, 0x1011dc90, 0x3d525d77, - 0x6ebb4bfc, 0x00009e, 00000000 + 0x6ebb4bfc, 0x00009e }, { 0x6eacfb30, 0x5b9b9675, 0x911a0871, 0x398e5df4, 0x5d20dcf9, 0xac418b9b, 0x84042f53, 0x156e376, 0x475daa3d, 0x2d26920c, 0x56c0ae9f, 0x17cefeb3, 0x423fad13, 0xdb1f3f92, 0xdf151152, - 0x910f338a, 0x000141, 00000000 + 0x910f338a, 0x000141 } }, { @@ -45116,19 +45115,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc64ef30e, 0x9216feee, 0xd30290f1, 0x34832654, 0xfd20e024, 0x9f116a23, 0x760dbec3, 0xf1a08093, 0x8c455d18, 0xfb741180, 0xa3fa15c1, 0x3495cd1a, 0xce3a434d, 0xce5e755, 0x74525cd6, - 0x8a36d623, 0x0001ec, 00000000 + 0x8a36d623, 0x0001ec }, { 0x35bf5233, 0x2a2f245e, 0xe4544a, 0xc6430fee, 0x27340b28, 0xf15ec92c, 0xabf5cda8, 0xdb795b41, 0x96afa0be, 0xf805fd7, 0xd1d41592, 0xacc47cad, 0x193404c9, 0xc55824cb, 0xbcb5e010, - 0x36b7ba9b, 0x00018f, 00000000 + 0x36b7ba9b, 0x00018f }, { 0x32a72c90, 0x83fccc5f, 0x9aa0534a, 0x67ff313c, 0xe4c6da56, 0xa9893213, 0x5bc7f76e, 0xd2a414d1, 0x3fe838e9, 0x544064ae, 0x560f5a7d, 0x4e8283b1, 0xb1b89a7f, 0xc02b39ba, 0x1e64cb7f, - 0x60187216, 0x000113, 00000000 + 0x60187216, 0x000113 } }, { @@ -45136,19 +45135,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x146b5efb, 0x2f3e9926, 0x83eef292, 0x648d9ad7, 0xe0fac7ea, 0x9ab24787, 0x76570f0e, 0xc3a3100f, 0x8ea16e4e, 0xbf91aa58, 0x590dcccf, 0x25ed9c21, 0x97e1fd88, 0xd583ffb5, 0x5c08e83d, - 0x556bf0c7, 0x0001ac, 00000000 + 0x556bf0c7, 0x0001ac }, { 0xdc4bde01, 0xd18cad20, 0x1706e75a, 0xd24f5507, 0x8f75cabd, 0x5d45b696, 0x7818d0c7, 0x1635db28, 0x1fb1cd35, 0xd024f582, 0x711794ad, 0xd0969cb2, 0x17d5afdf, 0x971faa36, 0xed8bac72, - 0xcdc310c5, 0x0001d3, 00000000 + 0xcdc310c5, 0x0001d3 }, { 0x73c2dd3e, 0x565db6db, 0xf91e8fd5, 0x671de5ed, 0x9f152ce8, 0x8c0cf929, 0xb7d6ca7, 0x6c429a9d, 0xdfbe5d46, 0x478617aa, 0x832ae26f, 0x745b6a8c, 0xa4d7c0dc, 0x13c4f1e3, 0x6c3775eb, - 0xde3b22d7, 0x00009b, 00000000 + 0xde3b22d7, 0x00009b } }, { @@ -45156,19 +45155,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1ce546a2, 0xd8e22397, 0x38fdf380, 0x52747cac, 0xc286473e, 0xdd844ae7, 0x3fd209ce, 0xbac3f8f3, 0x1b0e1680, 0x38eca5fc, 0xc28db279, 0xebc5953e, 0x4770edd6, 0x8a134518, 0x3bf9a888, - 0x8eb1f591, 0x0000e6, 00000000 + 0x8eb1f591, 0x0000e6 }, { 0xcd9cbe86, 0xd98d3f8d, 0xcd1a91ca, 0x61fae159, 0x30226b7b, 0x3bfa31f6, 0x2dab4bd1, 0x1c23a5cc, 0xf7ab26a4, 0xe999ce93, 0x94d14942, 0x4952c674, 0xa5c4845e, 0xb2d2a58a, 0x15506b57, - 0x1939758, 0x000055, 00000000 + 0x1939758, 0x000055 }, { 0x50013b28, 0xb8c9da8d, 0x50cbc040, 0x5e7b3b10, 0x9cfba818, 0x2217b8e9, 0xbbdf6684, 0x5ddffb58, 0xeb98005d, 0x192b96cb, 0x9832e0bc, 0xc95b9939, 0xfeeabdae, 0xf5901b18, 0x61388338, - 0x442a9c12, 0x000028, 00000000 + 0x442a9c12, 0x000028 } } }, @@ -45178,19 +45177,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa863e1fc, 0xee557d14, 0x52100018, 0x99adc471, 0x1c4be86f, 0x3d3f2b51, 0x7a353b57, 0xaedb141d, 0x95564ccb, 0xa9c1ba8d, 0x243b139, 0x2c507d6c, 0xe50d5762, 0x7e0d4ba, 0x29cf61da, - 0x7bf3d7ea, 0x00019d, 00000000 + 0x7bf3d7ea, 0x00019d }, { 0x9277d76b, 0x2aa46970, 0x420246ce, 0xc605892a, 0xe0cedd82, 0x57b2771b, 0x2d3d89d4, 0x6b526b9e, 0x4f316c9f, 0xf83adcb3, 0x13c03673, 0x44042e54, 0x5418c60f, 0x989a3402, 0xea6eece3, - 0xc4f9bd11, 0x0000d2, 00000000 + 0xc4f9bd11, 0x0000d2 }, { 0x5f60a6f, 0xd1b7ec6a, 0x7d5a982f, 0x59dd15fe, 0x3b957e30, 0x1d8bd23b, 0x3d68d2f0, 0xd8b9dcb7, 0x7fde2d19, 0xcbb8177, 0xa824c523, 0x9e8c43df, 0xe80d4b96, 0x910632c3, 0x1ec87ee0, - 0x83dbf957, 0x0000b3, 00000000 + 0x83dbf957, 0x0000b3 } }, { @@ -45198,19 +45197,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3a9b3c3, 0xc3a8ce91, 0xb1ee1fd5, 0xb557bccc, 0x5d710bff, 0x6108a6db, 0xc6104383, 0x1e4f4b56, 0x4b923801, 0x83c19c87, 0xb0a6dd79, 0x7e418dfa, 0x962ed9b0, 0xbf121ed9, 0x96743b4d, - 0x18baa745, 0x00000f, 00000000 + 0x18baa745, 0x00000f }, { 0xb657feb5, 0x8f106365, 0xd6eb65c1, 0xf093c00c, 0x2de24b88, 0x47a0893c, 0x68d2024e, 0xf407be8e, 0x25fceff, 0x5524e021, 0xcf42921d, 0x1fa53544, 0xd5a5518e, 0x3985ba4f, 0xec97ac92, - 0x677b5a86, 0x00009d, 00000000 + 0x677b5a86, 0x00009d }, { 0xf0ca5d71, 0x82b8fc4f, 0xe920964a, 0xda54dcf8, 0xa75deb63, 0xa36aabd3, 0xb433cda2, 0x6e376091, 0x5da4f102, 0xad436123, 0xa4b111ec, 0x7e87af6a, 0xcfd8b4d5, 0x3bd80241, 0xdcc9d711, - 0xa5e7c50d, 0x000107, 00000000 + 0xa5e7c50d, 0x000107 } }, { @@ -45218,19 +45217,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb84c758b, 0x6278ce6d, 0xc18d6d55, 0x16801f32, 0x29635783, 0xbe83489b, 0x603e4d9b, 0x9d69db7c, 0x4355c443, 0x58429771, 0x1291e3c8, 0x13f5a86, 0xa371852b, 0x4b62d1a0, 0x35e28d6b, - 0xe1e5f185, 0x000136, 00000000 + 0xe1e5f185, 0x000136 }, { 0x3438c469, 0x8001fef5, 0x24090fc0, 0x49a7b86b, 0xd6df48bc, 0x4e950ea, 0x5814af30, 0xf5042b13, 0x7f5a08fb, 0xe4ef93c0, 0x6a39d5c6, 0x841f3f84, 0x415917e4, 0x99afb539, 0x6c84744b, - 0x7bf756, 0x000111, 00000000 + 0x7bf756, 0x000111 }, { 0x51809651, 0x9038e47d, 0x498bc132, 0xc4992ee6, 0x7886a275, 0x220e2785, 0xa10d70aa, 0xf10a59e7, 0xcc9e659b, 0xa52234a, 0x9024f3b3, 0x1e151a3c, 0x55339e57, 0xadb368de, 0x64d0ce59, - 0x17ec78fa, 0x00016b, 00000000 + 0x17ec78fa, 0x00016b } }, { @@ -45238,19 +45237,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4544fe90, 0xb40bab81, 0x854f4e33, 0x56c1eb3, 0x3eea5132, 0x819d8f1c, 0x7b5a6ef2, 0xb1a61dbe, 0xf749b6d9, 0x706ccd24, 0x63abec87, 0x718c9a76, 0x8e74a67b, 0x8ed7b964, 0x52e3dbec, - 0x68e876b1, 0x00018b, 00000000 + 0x68e876b1, 0x00018b }, { 0x7419da2b, 0x1f37b2fc, 0xca974912, 0x1a145af1, 0xe3a9246d, 0x63406b71, 0x7ebdcd67, 0xacd3e06b, 0xfc618b36, 0x900adf8e, 0xb5e3338a, 0x1bcf0e04, 0x86db2223, 0xaeea4446, 0x137085c3, - 0x1936eff7, 0x00005b, 00000000 + 0x1936eff7, 0x00005b }, { 0xfbb64a1a, 0x3303616d, 0x1cbdfab6, 0x2c6e8654, 0x239bcc25, 0x660ef95f, 0x6ae4944, 0xd73238ce, 0x54316e54, 0x576e74d9, 0x6fba7019, 0x8adf0fe1, 0x4c98e12d, 0x2436c7d, 0xe03e1e8, - 0x2c28694c, 0x0001a8, 00000000 + 0x2c28694c, 0x0001a8 } }, { @@ -45258,19 +45257,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d07b287, 0x345efa4c, 0x1f54af7f, 0x965bfbe1, 0xcca1954a, 0xbf2caa79, 0x70ab610e, 0x8e2b0d8a, 0xaa5f5bd1, 0x9d0f8659, 0xc852debc, 0xfdcadb23, 0xa24d739a, 0xf037e13d, 0x3930f1a0, - 0x2323dc0f, 0x00016a, 00000000 + 0x2323dc0f, 0x00016a }, { 0xa3f04fa5, 0x48ff0c9c, 0xefefba4f, 0xe246adbf, 0x131dd0de, 0xed70289, 0xcaf8c24b, 0x43792ce2, 0x9603865b, 0x1d083dcd, 0x1951fe64, 0xcdccba8c, 0x5084c7cc, 0xdd207f89, 0x3300bff0, - 0x776be717, 0x0000e8, 00000000 + 0x776be717, 0x0000e8 }, { 0x74f356e8, 0xeb16861a, 0xea534adc, 0xc5222989, 0x56c77930, 0x27cf5823, 0xb84b0023, 0x5afd6c3d, 0xd3ec0a0c, 0xdd3f560, 0x16c54781, 0x66188e38, 0x264ee163, 0xbd5cb423, 0x933075f9, - 0xec1ccae5, 0x00011b, 00000000 + 0xec1ccae5, 0x00011b } }, { @@ -45278,19 +45277,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7e33c043, 0x2abd11e6, 0x20579636, 0xbe3a66b0, 0x4e62d268, 0xd6956511, 0x4a747d2c, 0x1a104b78, 0x8b4fe8b4, 0x3dbd0f68, 0xbc40a22c, 0xd3bff081, 0x1102c200, 0x3c28d5f4, 0x34524e1, - 0xa9b2533b, 0x000124, 00000000 + 0xa9b2533b, 0x000124 }, { 0x67534526, 0x881cb9c0, 0x650ea9a1, 0xd07bd005, 0x4e884607, 0x7d731688, 0x6dcf064a, 0xa5ac3f90, 0xd00d8f04, 0xafaee74f, 0xa22236c2, 0xcc8a284b, 0x65722bd6, 0x85a31f7f, 0xb543a7f7, - 0x7b2bddec, 0x000132, 00000000 + 0x7b2bddec, 0x000132 }, { 0x52baede8, 0xa6b7ab15, 0x4d8da4df, 0xa2979a72, 0x6253f82b, 0x857e98ef, 0x173b4420, 0xd7bb3164, 0x1ca9b144, 0xc5e1decb, 0x93b35eef, 0xbec8b595, 0xf507a429, 0xaba79f43, 0xdb6c059f, - 0xfca8e3c5, 0x0001c5, 00000000 + 0xfca8e3c5, 0x0001c5 } }, { @@ -45298,19 +45297,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x277110bd, 0xc332254d, 0x23126fe9, 0xd4f4ed0b, 0x7160dff7, 0x89487b79, 0xe18037f4, 0x74705c76, 0x8a98b642, 0x2dcd67b3, 0xd0f3f738, 0xcf1c239c, 0xb6ea2081, 0x9b866a10, 0xe1d2aa8f, - 0xb267231, 0x000114, 00000000 + 0xb267231, 0x000114 }, { 0x71a0db9e, 0xcf67f2b3, 0xe21cf2fb, 0x5a32f7af, 0x72af2e1e, 0x7d0781db, 0x648cfe3b, 0x13a5aa97, 0x75cbe567, 0xb69cf517, 0xd60f969c, 0x38125d17, 0xd1adea4c, 0x9a5f7ef6, 0x57411869, - 0x7a1db649, 0x000114, 00000000 + 0x7a1db649, 0x000114 }, { 0xbe90dc53, 0xe97c98b6, 0x869a9084, 0x63a1a0ac, 0x16ddb8f7, 0x7787a23f, 0x7573b67a, 0x97fe32be, 0x1aa9baa1, 0xf81f82a4, 0xd32d0334, 0x1f70964e, 0xadf7078e, 0xb4e09a95, 0xbd94b94f, - 0x6308dfd7, 0x00011b, 00000000 + 0x6308dfd7, 0x00011b } }, { @@ -45318,19 +45317,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x591d306c, 0x4ebba0ab, 0x97e87d83, 0xc5f32340, 0x6c056110, 0x41523973, 0x7936c74b, 0xcbdeb115, 0xfd894e60, 0xb5898eec, 0x1e8f7fe6, 0x514631b5, 0x46412818, 0xc1ff56c2, 0xe5324ab2, - 0xf304cca7, 0x00016a, 00000000 + 0xf304cca7, 0x00016a }, { 0xa1d9a862, 0xc8183e82, 0x1c745fc6, 0xa118ae98, 0x17ac91cd, 0x2535e75a, 0x63dcb79, 0x88f39329, 0x3140ed2e, 0xbbf04cfe, 0x28d116cc, 0x99682702, 0x4dbc1333, 0xa713015e, 0x2d45b491, - 0x4087440b, 0x000117, 00000000 + 0x4087440b, 0x000117 }, { 0xd65e0078, 0xadf90d2c, 0x181ef170, 0xe6c9de28, 0xbd6bddf3, 0xd5ae4ffe, 0xbe6869bd, 0xea0c5f8b, 0x2b02d4e2, 0xff7ab8cf, 0x2fd9cfdf, 0x1ae2da16, 0xd76e5b46, 0x7ce9332a, 0x45e6ce4a, - 0x7ef09c0e, 0x000059, 00000000 + 0x7ef09c0e, 0x000059 } }, { @@ -45338,19 +45337,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd2fb6a7f, 0x9bc961e8, 0x9ffdf30c, 0x6bdb550d, 0x9ce00c3e, 0x50647603, 0x647f493e, 0xad89b26b, 0x5fc53ff5, 0x34c0c30d, 0xb81ec801, 0xb70814df, 0x2eda9cb3, 0xcbf15328, 0xe924bc56, - 0xb307e5f8, 0x0001e4, 00000000 + 0xb307e5f8, 0x0001e4 }, { 0x9c70fc4a, 0x6f0104c0, 0x9e0dd3c9, 0x4fec116d, 0xe743b2f6, 0x7d1a761b, 0x1b71142d, 0xb4f468ce, 0xef2b427b, 0xe77df911, 0x43f866aa, 0x363f1cfb, 0xd3ace5cc, 0x6da2a48a, 0xffeb49b5, - 0xd8921eca, 0x00009f, 00000000 + 0xd8921eca, 0x00009f }, { 0xc7b81c3e, 0x72a4131d, 0x9a182ef4, 0xa03a16cf, 0xa73c324f, 0x45e6187c, 0x93519a09, 0xc02cda61, 0x2dc6e683, 0xa152afdb, 0x9537764d, 0x10798e7e, 0x5f7136d5, 0x4a42b10a, 0x531d5dc1, - 0x208b4906, 0x00003e, 00000000 + 0x208b4906, 0x00003e } }, { @@ -45358,19 +45357,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x37eca403, 0xa4b0bcaf, 0x3651a75a, 0x4ba33076, 0xbd6ec7eb, 0x41362868, 0x78c6dbc7, 0xeb1132b0, 0xb38e29bb, 0x53e58f59, 0x12018f51, 0x3f7a16c6, 0xbc23bc0b, 0xc00213c4, 0xc0b6a229, - 0x760246d3, 0x000174, 00000000 + 0x760246d3, 0x000174 }, { 0x3bfc961e, 0x1b4b2dd4, 0xac41c89a, 0x5cda465d, 0x2f1d25c, 0x5e6e85d7, 0x43f57247, 0x1bc3e2eb, 0x20d9a898, 0x91d8ed5, 0xfb295f03, 0xf1833777, 0xfeb8c3e7, 0xcc96de5e, 0x34fa07b, - 0xe02afac, 0x000138, 00000000 + 0xe02afac, 0x000138 }, { 0xd5e901a3, 0x920f813c, 0xfe714154, 0x861ed304, 0x349ab234, 0xec647f91, 0x5dff9b2e, 0xce8a295e, 0x86a691c, 0xcb0dfa18, 0x860dba90, 0x29a24eff, 0xe1a48625, 0x8678b01f, 0xf3fbd535, - 0x8f30b031, 0x0000f0, 00000000 + 0x8f30b031, 0x0000f0 } }, { @@ -45378,19 +45377,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4772267, 0xda3a4eae, 0xeb25c3b9, 0xeed3d23a, 0xd7cb3229, 0xccc3f38d, 0x9fd690d4, 0xd8bb2687, 0x1bf0c4c3, 0x192a9984, 0x56f210ec, 0x9a72ec5c, 0xf71a0452, 0x371ce555, 0xf6b73f9f, - 0x8915ea4f, 0x00012c, 00000000 + 0x8915ea4f, 0x00012c }, { 0x22fc064b, 0xb6423316, 0x8501438f, 0xaa6483b7, 0x553102d0, 0x542387f3, 0x2063e490, 0x542a48c8, 0x714ef5f0, 0x511b41fb, 0x1199da49, 0xdd99902c, 0xeff8f826, 0x2dfd8b6d, 0x1827b1ec, - 0x7902270a, 0x000116, 00000000 + 0x7902270a, 0x000116 }, { 0xa9298bb0, 0xb50baac7, 0x38baff41, 0xabeaf5c1, 0x6b0f2a2e, 0x18b9ca6d, 0x436b99e0, 0x4b41b6ad, 0xe31e343b, 0xbcfac686, 0x79cc1b07, 0xf57159a, 0x7cf1d8a2, 0x798f284, 0xd21ff4ab, - 0x7dee6b38, 0x000062, 00000000 + 0x7dee6b38, 0x000062 } }, { @@ -45398,19 +45397,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb65d0ecc, 0x1c978ddf, 0xc10b1cac, 0x55a1a97b, 0xa5233aa, 0xf5742dfb, 0xd855e577, 0x234efac, 0xa162b049, 0x8a83df3a, 0xccc0223, 0x95c0e53d, 0xcc1bfb43, 0xd33428ee, 0xeeaf8818, - 0xb6c59f07, 0x000122, 00000000 + 0xb6c59f07, 0x000122 }, { 0xa446accb, 0xd3d698ad, 0x356becf8, 0x2746579b, 0xcf867024, 0xbf2f2c04, 0x224d33ff, 0x62ed4162, 0xf59222e6, 0xb06d54ca, 0xa8f76b29, 0x60a5207e, 0xfa9d53e9, 0xe709710d, 0x2d3ac242, - 0x269aa686, 0x00004a, 00000000 + 0x269aa686, 0x00004a }, { 0xcccaa0ec, 0xe710a644, 0xa85dd21c, 0x9ea98b5b, 0xa001659f, 0x89f15f11, 0x360210ac, 0xd342d1ea, 0x3ead37d5, 0xe7345bd0, 0x971853f4, 0x645d02a5, 0x7a878ffa, 0xe5503e8b, 0x2911ddca, - 0x259a5292, 0x0000ed, 00000000 + 0x259a5292, 0x0000ed } }, { @@ -45418,19 +45417,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x12a23dd9, 0x1c66a377, 0x74dc717, 0x94ae1091, 0x217e88f7, 0x1d5f798, 0xe08c08cf, 0x9477984c, 0x38256b3e, 0x524199f0, 0x67024178, 0x9ed5962b, 0xfccaa4fc, 0xdaa7a059, 0xf4ab167e, - 0xbd579c1f, 0x00011c, 00000000 + 0xbd579c1f, 0x00011c }, { 0xae992b29, 0x457061f4, 0x6e07c8ea, 0x2b3dff37, 0x52334668, 0x37d0f790, 0xb9084af8, 0xdf3a2dc4, 0xc9469ee6, 0xb2c2ded7, 0x3405bd7f, 0x2f372a6a, 0xed76479e, 0x62c7766, 0x47a76dbc, - 0x9b6af065, 0x0000fb, 00000000 + 0x9b6af065, 0x0000fb }, { 0x9bfc793e, 0xf14af66d, 0xa6f239c2, 0x3b7573fc, 0xcb265b2b, 0x599a8904, 0x73e93fe7, 0x715c9d5c, 0x81681742, 0x7fd06cc8, 0x313b0927, 0x1a8c9f70, 0xf81440f9, 0x7c67e93f, 0xf843fe7d, - 0xea648433, 0x000192, 00000000 + 0xea648433, 0x000192 } }, { @@ -45438,19 +45437,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1bd4f93d, 0x20459c5e, 0x9fd092b9, 0x94368aab, 0xafd9be62, 0x16b7a8b, 0xd96fff0a, 0xbdd0290, 0xb6254835, 0x755f7774, 0xb5fd3629, 0x11c343a7, 0x102dbd3c, 0x73db308d, 0xd414f943, - 0xf784ae74, 0x0000fb, 00000000 + 0xf784ae74, 0x0000fb }, { 0x8cb835c5, 0x7e6f653a, 0x95083320, 0x8d43d0f7, 0x537967bc, 0x5d472d43, 0x77195b6a, 0xd0987b7c, 0x84822f83, 0xb8235e25, 0x9cf96dd7, 0xc4ca7798, 0x983e81ae, 0x337398c0, 0xb1625365, - 0xf3bd83d6, 0x00012e, 00000000 + 0xf3bd83d6, 0x00012e }, { 0xaa9661bf, 0x514ab08c, 0x4d3a5f43, 0x3770542a, 0x3c721700, 0x24a36a10, 0xd91e0424, 0x743e4007, 0x3b08ae2c, 0x12e13adc, 0xf3617224, 0x12264059, 0xbadf5258, 0xa8b3e197, 0xe807df83, - 0x904ec291, 0x000140, 00000000 + 0x904ec291, 0x000140 } }, { @@ -45458,19 +45457,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2cae861a, 0x731c84d2, 0xa61c588c, 0x3d825172, 0xd85ca962, 0x9cafced8, 0x9fb42b6b, 0x861abcfa, 0x1d9cd80e, 0x89abb4fc, 0x19580962, 0xb2ac54e6, 0x2aaf8b0a, 0xdf63a825, 0x66ed2ed1, - 0x104d4908, 0x00004d, 00000000 + 0x104d4908, 0x00004d }, { 0x79494701, 0xc1a2425f, 0x917f8441, 0xa65e75c1, 0x570c9fca, 0xcf91fe1c, 0x9fc92f7c, 0x5f2515cd, 0x99a04bfa, 0x8393267b, 0x4316bf96, 0x4d99d3c9, 0x8e46fad5, 0x205bb30, 0x467ef623, - 0x21bbacd0, 0x00010a, 00000000 + 0x21bbacd0, 0x00010a }, { 0x3bc9aeae, 0x3d0bae30, 0x38e2a619, 0x4ffbefbc, 0x28de1fc3, 0x9d9a36b9, 0x84163a0e, 0xa1ff760, 0x70db577, 0x32ebe53e, 0x7f784bcf, 0xf96a123e, 0xc8ac8670, 0xf0da4f55, 0x598bf7f, - 0xa48b0013, 0x0001a2, 00000000 + 0xa48b0013, 0x0001a2 } } }, @@ -45480,19 +45479,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb7be1a3, 0x12649b36, 0x7993f9df, 0x9581007a, 0xe66944be, 0xed290603, 0x6fab9157, 0x4bc4c18e, 0xb11cd0a3, 0x83b8312d, 0x7c26b254, 0x63ee777b, 0xb295ff5c, 0xc5061143, 0x35885d20, - 0x9b1c925a, 0x00017e, 00000000 + 0x9b1c925a, 0x00017e }, { 0xdaf4646d, 0x49db59a0, 0xa9c819a6, 0x7ed40aa7, 0x9e567c20, 0x820499d6, 0x7c61c314, 0x371e6609, 0x10d8941c, 0x9f31138f, 0xeaabf3dc, 0x71ba17dc, 0x4751aad9, 0x55a4f77a, 0x6b12e7a0, - 0x604d57f4, 0x000055, 00000000 + 0x604d57f4, 0x000055 }, { 0x74cb24b8, 0xeb647b7d, 0x1c9f5f76, 0x53cacaa4, 0x90c6d98c, 0xb7e2d50c, 0x16c7a898, 0x7f86951a, 0x3135474a, 0x8457bfaa, 0xe5ae9189, 0x87cc2b7f, 0xd3cffddd, 0xcac57165, 0x26e983f9, - 0x9650cb19, 0x0001a4, 00000000 + 0x9650cb19, 0x0001a4 } }, { @@ -45500,19 +45499,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa60d7331, 0xc6c11220, 0x8f6e165e, 0xcfa29219, 0x7a06158d, 0x34511c0f, 0xd12a915a, 0x6bb508c5, 0x4dea6f4d, 0x9481dc1a, 0x60b9661c, 0x2706af7f, 0x67f943f, 0x9328adbe, 0x67d3f65a, - 0x2e7b9081, 0x00008d, 00000000 + 0x2e7b9081, 0x00008d }, { 0x9040cc7d, 0x395a288, 0xf636e78a, 0x867b2d2d, 0xf513545a, 0xf451e788, 0xe0ba9b15, 0xb082560f, 0x19b4d93a, 0xf15dc178, 0x256f5caa, 0x156f38b1, 0x397c2187, 0x9bf03f3c, 0xd8f7ea89, - 0x676115e7, 0x0000ee, 00000000 + 0x676115e7, 0x0000ee }, { 0xb7099c7c, 0x9d654d83, 0xe9d604a8, 0x6f811fd5, 0x101cdbc9, 0x4d5b32bb, 0x44de63cb, 0x988c014b, 0x365d3b6d, 0xe65c7bc4, 0xa5778f42, 0xcfc830a1, 0x48db01fa, 0xb57d09a9, 0x422def67, - 0x68fc7399, 0x00005a, 00000000 + 0x68fc7399, 0x00005a } }, { @@ -45520,19 +45519,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe522dac2, 0x5951b578, 0xf8cf6db8, 0xca8aff72, 0xf131ef5c, 0x4caa79c8, 0x63d1f5a2, 0x206cdd45, 0xac819924, 0x4dbad35b, 0x20a04fbd, 0x1ac109d4, 0x8b3b65a, 0xf37cb2c2, 0x73dbe113, - 0xa7f75534, 0x000070, 00000000 + 0xa7f75534, 0x000070 }, { 0x523b61f6, 0xbf1e5654, 0x26c964f5, 0xacf905dd, 0x211d932a, 0x6fb75914, 0x6d33c5f1, 0xd65469cf, 0xac8c9f2f, 0x5fe4a6d, 0xfadca839, 0x81bfdb5d, 0xb02b3808, 0x7ae3c1cb, 0xa5a100a, - 0x4d1724dd, 0x0000df, 00000000 + 0x4d1724dd, 0x0000df }, { 0xb204c0bc, 0x933a369d, 0x2c88e892, 0x9aefcd4f, 0x576d8e68, 0x5777cc15, 0x2fa63d66, 0xf22b1026, 0x172e38d0, 0x5e8f369d, 0xd724ba20, 0x654300a3, 0x6b343f4d, 0x3d29286e, 0x23f6bd74, - 0xfc21cda0, 0x000016, 00000000 + 0xfc21cda0, 0x000016 } }, { @@ -45540,19 +45539,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9e9edb0f, 0xcb350977, 0xb37ccadc, 0xd1b83ce5, 0x796212bb, 0xfd279528, 0x86229a19, 0x89041c1, 0xfd9f9dfa, 0xdab9c4b5, 0x1016ad57, 0xaf90b06e, 0xd1c24841, 0xed8d8186, 0x68509702, - 0x5aa05a44, 0x000132, 00000000 + 0x5aa05a44, 0x000132 }, { 0xe9167ae9, 0xef2b633, 0xeaf09499, 0x94a6a8aa, 0x39728e37, 0x8008b813, 0xe67bdb16, 0xe2cf5498, 0xabfb3b10, 0x3f38f505, 0xc1828491, 0x6a70607a, 0x1897b73a, 0xa56b4f42, 0xe7459829, - 0x360981e1, 0x00002e, 00000000 + 0x360981e1, 0x00002e }, { 0xf1079627, 0x467545d2, 0xaf0d3b77, 0xbdf2d983, 0x934e09a1, 0x87a90be6, 0x4a9cb5ad, 0x3e923c67, 0x6753f191, 0xdf7bfba3, 0x55b3f145, 0xce9d1280, 0x5e133b60, 0x3adb984e, 0xf1bfeff, - 0xc423caba, 0x00009a, 00000000 + 0xc423caba, 0x00009a } }, { @@ -45560,19 +45559,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x56663bce, 0x8447f9ab, 0x8e30ab5a, 0xe8f6ee10, 0x16ace2d5, 0xeb19eef9, 0xda4eac01, 0x13263a3b, 0xb5a0704e, 0xf4bb1440, 0xd896a461, 0xa44e6997, 0x118d16ec, 0xe48932c6, 0x8d7d5e7b, - 0x4de78649, 0x0001e6, 00000000 + 0x4de78649, 0x0001e6 }, { 0xbd3c586a, 0x5b405447, 0x51b56a31, 0xa89c14ab, 0xc33c5c53, 0xcf3aaadf, 0x5982f330, 0x2540300, 0x43e60cb3, 0x96f8f198, 0xda2a049f, 0x1fac7951, 0xa03cdc17, 0x68aab5c7, 0xd2696ffe, - 0x31b60454, 0x0001b8, 00000000 + 0x31b60454, 0x0001b8 }, { 0x32479831, 0x234a1ca, 0x15f7d665, 0x80d1b640, 0x36cdef1c, 0xbcfb1e0e, 0x4f2fc1a, 0xb072ae75, 0x6e4ad794, 0x57279d37, 0x7ab50e59, 0xe79ae2c7, 0x36e648e4, 0x754b8c2d, 0x601d6db6, - 0x57ea4c6f, 0x000112, 00000000 + 0x57ea4c6f, 0x000112 } }, { @@ -45580,19 +45579,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x769f99cd, 0x467fcc3c, 0xb7b7c5d4, 0x2cf5ceb9, 0xd866af93, 0x2c21fb7c, 0x330a4a19, 0x721fcd69, 0xb0afdb86, 0xbf85e335, 0xe9ebc300, 0xa4b268b5, 0x27ce1990, 0x509ea389, 0x160cad45, - 0xb4dc7898, 0x000198, 00000000 + 0xb4dc7898, 0x000198 }, { 0x954d0ad, 0x51bbb9d3, 0x7609a3fc, 0x3ea9bf, 0x653d1558, 0x570b0847, 0x155db0ac, 0x61f9f48a, 0xccdc2b37, 0xc6005016, 0xd09c091e, 0xbcbfe555, 0xc3e624f2, 0x782ddc83, 0x1341f5b1, - 0xc6b49b0b, 0x000055, 00000000 + 0xc6b49b0b, 0x000055 }, { 0xe1020716, 0xf146f455, 0x29402526, 0xbafa53a0, 0xb7929ff, 0x16ccb2e5, 0x12726328, 0x362fbb37, 0x60158fc2, 0x15a24921, 0x176e08cf, 0x5e089a81, 0x5d70827c, 0xa9ccf97e, 0x8ee3f78f, - 0x47290869, 0x000076, 00000000 + 0x47290869, 0x000076 } }, { @@ -45600,19 +45599,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xce1ae1ab, 0x1eb570de, 0x4e6c697, 0xf332270c, 0x251068ab, 0xfe9f3521, 0x13ae82b, 0x2efe2b95, 0x84e20b63, 0x8c9f14b2, 0x709ff368, 0x5dabe0c7, 0x1aab257e, 0x8559d47c, 0xfcab7b3, - 0x245980a6, 0x0001b7, 00000000 + 0x245980a6, 0x0001b7 }, { 0x3a952247, 0x4ec8a9fc, 0x77c18c44, 0x44c0fef0, 0x95add35b, 0xa02b9a0f, 0x31620941, 0x5a1c1a11, 0xc16fa618, 0xe2eada18, 0x6867cf38, 0x949da918, 0x457834f3, 0x7938a9e8, 0x2e83b4d7, - 0x68b2d0de, 0x0000c0, 00000000 + 0x68b2d0de, 0x0000c0 }, { 0xc6fb5f80, 0x1553a4f5, 0x285f802b, 0x9b000291, 0x301790b9, 0x323a1261, 0x2334ea5, 0xab996657, 0x7369f1e8, 0xbdb1c13, 0x2f384ed3, 0x39d574ec, 0xbd052f47, 0x365161bd, 0xbc40a65f, - 0x4c666590, 0x00009e, 00000000 + 0x4c666590, 0x00009e } }, { @@ -45620,19 +45619,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf9a5e902, 0x81fc4112, 0xf696990c, 0x909c5b5a, 0x2a6e484a, 0x7dd79aba, 0x56d613b, 0x38bbb50d, 0x43391de1, 0x40ec7b61, 0xec490130, 0x32313905, 0x7e3a3306, 0x639fa16f, 0xf07f5026, - 0x1a67c79e, 0x00018e, 00000000 + 0x1a67c79e, 0x00018e }, { 0xe0917843, 0x258d9e6e, 0xc1ace539, 0x43ff36c2, 0x8ed70ff7, 0x3675d9c3, 0xdfa1d986, 0xbe65de6c, 0x6a0de989, 0x15fa4cae, 0xf79aafef, 0x67f9cc70, 0x9e9cb292, 0x4617f674, 0x81141ca4, - 0x317d4b4f, 0x000140, 00000000 + 0x317d4b4f, 0x000140 }, { 0xd96c6287, 0xbf969824, 0xeff3cd2a, 0xd8ee7346, 0x66bdd5af, 0xee6adc15, 0x7a2bd2f7, 0xc988524f, 0xdf180730, 0xe4f21cb9, 0x4eaa1bee, 0xc598ffaa, 0x7560a5ba, 0x515afb2, 0x66c52b18, - 0x53e79d26, 0x0000f9, 00000000 + 0x53e79d26, 0x0000f9 } }, { @@ -45640,19 +45639,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbd95660f, 0xa27b968, 0x3d8fd577, 0xa6c970be, 0x74ca2d69, 0xaa95459d, 0x3868872c, 0xa00bbb40, 0xa5f4ccb0, 0x721d9153, 0x1660f4ad, 0x5abe2d5d, 0x1122d268, 0xb6907515, 0x3dee44cd, - 0xe61c3422, 0x0000c7, 00000000 + 0xe61c3422, 0x0000c7 }, { 0x81db2f82, 0x6f07deb4, 0xba5e5faa, 0x59b238ba, 0x4218eba1, 0x9159e5ae, 0x95d43797, 0x97b99811, 0x2379124, 0x67447b16, 0xa29d4842, 0xb01c00aa, 0xdb76bf1f, 0x6729f7f0, 0xb04554a1, - 0x56e24e81, 0x000043, 00000000 + 0x56e24e81, 0x000043 }, { 0xb08bb940, 0x3c3c78d5, 0xb4bfb805, 0x83433506, 0x713f26aa, 0x7e7225f4, 0x50519d03, 0xdf465f25, 0x89f3c1df, 0x5262b76d, 0x30553908, 0xf74e822b, 0x41653e80, 0x4354205c, 0xb3030977, - 0xf6e8e521, 0x000076, 00000000 + 0xf6e8e521, 0x000076 } }, { @@ -45660,19 +45659,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf57a6d1, 0x9db012e7, 0xa7e88151, 0x84b23e77, 0x57deeaa1, 0xf48bd84b, 0xfbd5dd23, 0x5b5698f5, 0x287312f, 0x8094f1a2, 0xd71d2383, 0x625d6f13, 0x72507d, 0x329835ba, 0x23bb7c76, - 0xadc33160, 00000000, 00000000 + 0xadc33160, 00000000 }, { 0x94eef1a2, 0x7bcc682b, 0x810ff077, 0x1ac1611a, 0x406651f8, 0xb61d86c4, 0xc7fe6736, 0x2b1c4216, 0xe996e39f, 0x36b626da, 0xeac7a4c1, 0x9b831fc5, 0x801fcdba, 0x545e6de1, 0xdd69b420, - 0xd1c89f2d, 0x00003f, 00000000 + 0xd1c89f2d, 0x00003f }, { 0x8a25869c, 0x85cf22f0, 0x1b92cea3, 0x7e725fe9, 0x9e4acb61, 0x3f17d1b4, 0x2837c38d, 0x102760, 0x79511dfe, 0x98ed770f, 0x719f3bcd, 0x84ab56a8, 0x86fe5ef2, 0x77ce83a, 0x4905e4f9, - 0xaf86d80d, 0x000023, 00000000 + 0xaf86d80d, 0x000023 } }, { @@ -45680,19 +45679,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb60d61cc, 0x78e4aa19, 0x703f2c94, 0x59fa8503, 0x686e7aec, 0x7233f2d6, 0x80e5a525, 0x1b8fb7be, 0x44924f9c, 0xaa3b2b6d, 0x55ebec0a, 0x61291c65, 0x1b8a2bf3, 0xba7abc8a, 0x2ba80820, - 0xc6593971, 0x000187, 00000000 + 0xc6593971, 0x000187 }, { 0xe9983f32, 0x6f3d1b20, 0x3e5fcdc1, 0xd18efbd2, 0x80a59510, 0xef762b13, 0xdf8f66e4, 0xb7092492, 0x7163037, 0xa883ecd3, 0x95407b2f, 0x59b369f2, 0x934bfbed, 0xdb428b2f, 0x924637f4, - 0x98129dd0, 0x000090, 00000000 + 0x98129dd0, 0x000090 }, { 0xfe4cfcb5, 0xf263f741, 0xda1460b7, 0x29e6f81d, 0xf933383e, 0xa31dd1db, 0xdf0860f1, 0xa42c29ed, 0x9c6b23d5, 0xbaf79ae9, 0xee5578d3, 0x8098c389, 0x7ea037c3, 0x808579b8, 0xb6915989, - 0x808b9092, 0x0001b2, 00000000 + 0x808b9092, 0x0001b2 } }, { @@ -45700,19 +45699,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc9c79c7d, 0xfe5f7163, 0x6e7d386b, 0xca099bd2, 0x168a18b, 0xd9d59f50, 0xda1ace4, 0xab071acc, 0xe86e5136, 0xf81897ad, 0x2f71d335, 0x71294faf, 0x7134ba01, 0x32137ac, 0x54bcdb24, - 0xc08cbdd6, 0x0001ef, 00000000 + 0xc08cbdd6, 0x0001ef }, { 0x408f368b, 0xfe257869, 0x89609c74, 0xe336731, 0xa9f0e467, 0xfa13800, 0xddb109f8, 0x2894dcc1, 0xb5fa4ff1, 0x2f713c89, 0x7717f633, 0xef73c5de, 0xa7e6441b, 0x242ee867, 0x2e3f18bd, - 0x8bb69743, 0x000135, 00000000 + 0x8bb69743, 0x000135 }, { 0x82791b2e, 0x5c1abfe2, 0xf5142bd2, 0x71c83d30, 0xd104179b, 0xf8fe9d4b, 0x14049743, 0x84c3dd15, 0x5fda9de4, 0x1a168470, 0x1c5d8b0, 0x26ecdf0b, 0xe08a458c, 0x1c5dffb, 0x63062c5e, - 0x84c6a1b4, 0x0001d9, 00000000 + 0x84c6a1b4, 0x0001d9 } }, { @@ -45720,19 +45719,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc9b80574, 0xa2aaf489, 0x10ae2175, 0x9d63e5cd, 0x8d7d1019, 0xf1f7a1ac, 0xf7aef35f, 0xebf5f1f6, 0x39168baa, 0x432d92a7, 0x6e6f62f0, 0xd832c8f8, 0x914eb46f, 0x9d9150fa, 0xe3aec865, - 0xa94545fd, 0x0000da, 00000000 + 0xa94545fd, 0x0000da }, { 0x401e19f0, 0xfd3479a, 0x3b0f2500, 0x97cabfa4, 0x1abd6362, 0x29d2ab37, 0xde855c3a, 0xd437c020, 0xbef737cd, 0x88d088ac, 0x1afc26bf, 0x166b7f1f, 0x1cf047e1, 0x91a1b8be, 0x4fd318c, - 0xf718b6ce, 0x0001a8, 00000000 + 0xf718b6ce, 0x0001a8 }, { 0xa61533a2, 0xa3410456, 0xa485af9, 0x5376186b, 0x86e495ec, 0xec534344, 0xc0ddfa85, 0xd1f9d2b5, 0x7cdf8662, 0xa22fab85, 0x9c320970, 0xa44bb846, 0x35c3fd81, 0x4a155d6e, 0x8a53ebfb, - 0x3f6ca306, 0x000084, 00000000 + 0x3f6ca306, 0x000084 } }, { @@ -45740,19 +45739,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4861c1a2, 0xfd2c2124, 0xdb98b002, 0x525722ac, 0xa48296eb, 0xf32bf6a0, 0xb2fc5762, 0xe6cb7e40, 0x7e61685f, 0x8951e4bb, 0x2067ec00, 0xaed0c0da, 0x6458c1a2, 0xc2a1ed35, 0xd824e26b, - 0x3cb308fd, 0x00017e, 00000000 + 0x3cb308fd, 0x00017e }, { 0x6a08fbe1, 0x32375733, 0x824a8f20, 0xcb6e7fc8, 0x293a2180, 0x1f684aeb, 0xbbc21fbe, 0x34f69c3f, 0x35ef1e4f, 0xd2564ea5, 0x1c980635, 0x1c565d2b, 0x7b985b74, 0x45a4a58f, 0x8de5e4c, - 0x562d546, 0x0001ab, 00000000 + 0x562d546, 0x0001ab }, { 0xdcda794a, 0x3a61f0cf, 0x706d2139, 0x35300c1b, 0xf91183a2, 0x34431924, 0xfc15fe64, 0xd11e0ea8, 0x3430eafc, 0xb85bdfa1, 0x8c825ddd, 0xed9f74cf, 0xfdd92f0d, 0xbfef9783, 0x43bf889f, - 0xf8f1f3e, 0x0000c7, 00000000 + 0xf8f1f3e, 0x0000c7 } }, { @@ -45760,19 +45759,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x71456d1a, 0x82e10a95, 0x5c1afe0c, 0xaa726148, 0xc63b08ff, 0x51dd1f73, 0x1f8c82e0, 0xda4660cb, 0x668bad35, 0x2a38beb2, 0x77ab913d, 0x45044c0c, 0x2b5dff6a, 0x62690eb8, 0x64446cbd, - 0xad357105, 0x000096, 00000000 + 0xad357105, 0x000096 }, { 0x1a1a3dd5, 0x550c999d, 0x3f51570a, 0x788711b4, 0x9a175f76, 0x868cdc45, 0xd2e332d2, 0x9d24f98f, 0x6e83c1db, 0xc3f9098c, 0x3bdd84a9, 0xb447c448, 0x25421c23, 0x35750885, 0x7c981c2b, - 0x665b0098, 0x00003a, 00000000 + 0x665b0098, 0x00003a }, { 0xe98a5f2d, 0x3628bbba, 0x3a2ea80c, 0xb6be9914, 0xb9f682c1, 0xcb7c18dd, 0xb328acc4, 0x8f55cf98, 0xec31cd3, 0xb273f982, 0x966e086e, 0xf00c91d8, 0xf22adbf7, 0xc758903, 0x7e41a976, - 0x9c994d85, 0x0001e7, 00000000 + 0x9c994d85, 0x0001e7 } } }, @@ -45782,19 +45781,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x97f522bd, 0x5a9b797f, 0x9c5bcd5d, 0x421eed03, 0xd96fe6c5, 0xe649e5, 0xa637014, 0x4d6ba911, 0xfe3b7c8, 0x16494665, 0x23c5ce44, 0x4c613d75, 0x84736b01, 0x22e8bb3e, 0x85fa9173, 0xd2212c46, - 0x000015, 00000000 + 0x000015 }, { 0x94507d41, 0xd4bd9f08, 0x8c5ff4cc, 0xbd55d1b5, 0xe90aed15, 0x9f9b788e, 0x4773274b, 0x435c9ff0, 0x5f50101b, 0x15bb508f, 0xd1cb6f0c, 0x1983e8e1, 0xfc974bf1, 0x31842730, 0x251be006, - 0x19bf8c3e, 0x00003c, 00000000 + 0x19bf8c3e, 0x00003c }, { 0x2cb20eaf, 0x3da63d63, 0x9b2da8ec, 0x937c534d, 0xc7c6d8b0, 0x302c0a40, 0x34dedc8e, 0x16523188, 0x5d963a34, 0x4855b236, 0xc8a855bc, 0x92c8dbe6, 0x19cb7bb4, 0xfaced606, 0xeb5a5ae3, - 0xa82ea9ea, 0x000172, 00000000 + 0xa82ea9ea, 0x000172 } }, { @@ -45802,19 +45801,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf1b5776, 0xbb3703eb, 0x603e44a, 0x5f5be138, 0x69587add, 0xa3f876b1, 0x20eab2da, 0x7eec5a90, 0x5294825b, 0x6b688862, 0xd36e6dd, 0xdba2977f, 0xe0c110c8, 0x5ac2010c, 0x8e50408b, - 0x340bfe2c, 0x000046, 00000000 + 0x340bfe2c, 0x000046 }, { 0x56982306, 0xe244db9, 0x6868755a, 0x2fc485f1, 0xdb1d635c, 0x1d16878f, 0xa035dee2, 0xe0fa48d0, 0x68bd8789, 0x62f17c5c, 0xbf0560a3, 0x1c027b99, 0xe16e2805, 0x3acce062, 0xb2ac75fa, - 0x48e65c72, 0x00002f, 00000000 + 0x48e65c72, 0x00002f }, { 0xe002247a, 0x863b1765, 0x8866c4dc, 0xed7febf2, 0x4b4e20e7, 0x9f8bc4b7, 0x2bde98ad, 0xa50e9de8, 0x38e8be7f, 0xe3dfbad0, 0x2ec8fff7, 0x19b640a9, 0x6d1e261d, 0x7378977e, 0x7f121d5b, - 0x24e19834, 0x000118, 00000000 + 0x24e19834, 0x000118 } }, { @@ -45822,19 +45821,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8afc6816, 0x70c4f4b6, 0xc50cb107, 0x24fd578a, 0x973bb8d, 0x67fe8930, 0x722d8ef6, 0x345d6246, 0x50b01bb8, 0x36f94f20, 0x840fd707, 0x12c8c742, 0x74186663, 0xd83b4e21, 0xbd895865, - 0x53a9c940, 0x000153, 00000000 + 0x53a9c940, 0x000153 }, { 0x380dd95e, 0x87bc4359, 0x3941a06b, 0x2105814b, 0xcdc23e26, 0x771c4247, 0x36685d7f, 0x9fc0610d, 0x92d44774, 0xd45de50, 0xafab924e, 0x78e45672, 0x7594d2c0, 0x2564f121, 0xa0f47c90, - 0xe65da9b, 0x000042, 00000000 + 0xe65da9b, 0x000042 }, { 0x52dd6e93, 0xa58c898c, 0x1dc60599, 0xc4e6fe45, 0x83c6991f, 0x85da0fac, 0x2e5a8cf5, 0x678aee3e, 0xc4e94743, 0x9e64264e, 0x5414c506, 0x2fa1c43c, 0x727e1ee9, 0x3fe57163, 0x799c025a, - 0x9600287d, 0x0001a8, 00000000 + 0x9600287d, 0x0001a8 } }, { @@ -45842,19 +45841,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfd81e6f6, 0x8419c622, 0xa39d1e17, 0x960dd0a7, 0xcede2e35, 0x683b1b2e, 0xffdf1a34, 0x23c554b4, 0x620d716b, 0x44c8f803, 0xc8f57381, 0x57d7c69b, 0x899419a3, 0x8682150a, 0xe26009b0, - 0xbb9b6d2e, 0x0000d5, 00000000 + 0xbb9b6d2e, 0x0000d5 }, { 0xdb21a5de, 0x9128536d, 0x3189da33, 0x7a4d8952, 0x7375c80e, 0x6dbe6535, 0xeeb40d17, 0xd42580d6, 0xb18a2aa9, 0x15169a76, 0x8736f147, 0x536f8e9c, 0xb48ade0, 0x2c2179fd, 0xefd0d393, - 0x3a2178c4, 0x000183, 00000000 + 0x3a2178c4, 0x000183 }, { 0xc04bb4a2, 0x94fad52f, 0x4f1dae07, 0xef533a8a, 0xa6e93a1e, 0x5b4c557c, 0xe83ebda5, 0xd85db873, 0x9e5702f4, 0xf1daadc2, 0x6cb0ff9b, 0x3bb3f2fe, 0x17dbba27, 0x6e0fb9d3, 0x9b189660, - 0x7b1f78b0, 0x000078, 00000000 + 0x7b1f78b0, 0x000078 } }, { @@ -45862,19 +45861,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x30665324, 0xb06c836, 0x670db525, 0xee7b70c2, 0x69886d50, 0x5eebd40e, 0xbef498fc, 0xda1e76f6, 0x7bf26904, 0x2388e8c3, 0xab781bc, 0x2813f336, 0xb4e4f903, 0x2b7ef465, 0xa3c371c2, - 0x1a364f2a, 0x0001aa, 00000000 + 0x1a364f2a, 0x0001aa }, { 0x67473b1c, 0x4c21a2b1, 0x1460db7, 0xece37dcd, 0x54f9854, 0x947d263d, 0x1b61d9d6, 0xd6f3105b, 0x1c3657b7, 0x72669571, 0x3eebe7b3, 0x9705c260, 0xb5e1a8b5, 0x7425d9ed, 0xdf7e1e83, - 0xaa45f699, 0x00000b, 00000000 + 0xaa45f699, 0x00000b }, { 0x54978eff, 0x27840e63, 0x2fba4dbe, 0xff2e0a18, 0xb7896003, 0x72ac95ac, 0xf86d6a74, 0x257864f0, 0xe088e9c9, 0xc0be2db4, 0x54ed6223, 0x6ba0f272, 0xcfc45037, 0xf170f9cb, 0xe615e89c, - 0x24f76a86, 0x0000e4, 00000000 + 0x24f76a86, 0x0000e4 } }, { @@ -45882,19 +45881,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbe5ffc29, 0xace09bec, 0x6c9eac49, 0xd0ae2675, 0xf1bae1fb, 0x2b432cf2, 0xfe9843fb, 0x8265d2ae, 0x7cf3a819, 0x64964586, 0xcebc8b58, 0x61782c0d, 0x2f9d5bad, 0x4e9fff78, 0x5cf7fb4f, - 0x7ff236ea, 0x000151, 00000000 + 0x7ff236ea, 0x000151 }, { 0x60305b72, 0x1e541929, 0x1033ab23, 0x32adba71, 0x661f0065, 0x924f590b, 0x58eb2cd8, 0x5388ce59, 0xcbc51ffa, 0x538d6572, 0xec43d516, 0xde3f4671, 0x95cee868, 0x54911cce, 0x29ef704e, - 0xaca0147f, 0x000133, 00000000 + 0xaca0147f, 0x000133 }, { 0x8ada1db0, 0x40f1eccb, 0x851a5643, 0x23a83d4, 0x324e8a49, 0x43d18ac0, 0x7c80339, 0xa4edaf94, 0x31b1adca, 0xd8543c02, 0xa8b92727, 0xd891f6c9, 0xb63011c1, 0xb9b1077, 0x743f977d, - 0xf9d40206, 0x000114, 00000000 + 0xf9d40206, 0x000114 } }, { @@ -45902,19 +45901,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9dedb884, 0x936f8fb0, 0xf9ec9c4f, 0xcad272c6, 0x429d9aee, 0xe5ee8e80, 0x6e24c877, 0x29be0cec, 0x9a333e2, 0xd2bb030b, 0x8d57028e, 0xc0b7942a, 0x737b2468, 0xea48e78c, 0xa19c1299, - 0x6dac0dfe, 0x00019d, 00000000 + 0x6dac0dfe, 0x00019d }, { 0x39a282a, 0xebea9d50, 0xbeef5d70, 0xea045154, 0x5da30cbe, 0x67d9a671, 0x967da3bb, 0x6b18170f, 0x7aacff10, 0x6b43c55a, 0x1615506b, 0xd3d8e430, 0x1de17073, 0x5746f4e, 0x307fe85, - 0x5a28e1ed, 0x00010b, 00000000 + 0x5a28e1ed, 0x00010b }, { 0xcdbc2e3f, 0x17d6af99, 0x1fa788d, 0xb5d2e440, 0x38f089be, 0x98ae38dc, 0xe81b7fd0, 0xdfcdab0d, 0xabf6cef8, 0x43c576c3, 0x6328ba8a, 0x3bb12a71, 0x9d4e3251, 0x956294e, 0xb1753094, - 0x2eed7cca, 0x00007b, 00000000 + 0x2eed7cca, 0x00007b } }, { @@ -45922,19 +45921,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb1aaf81d, 0xbcd5191e, 0xd75d682e, 0x1f1b932, 0xa03a607d, 0x7f2b5e53, 0xf09a7d1c, 0x198e6743, 0x527bbb94, 0xe6e9a644, 0x888f90f9, 0x60bdab53, 0xd36b9652, 0xc7651030, 0x9a48725b, - 0xf9112f22, 0x000070, 00000000 + 0xf9112f22, 0x000070 }, { 0x3422c7c2, 0xbfd774e0, 0xcf5f830d, 0xcf980011, 0xdb6e2d75, 0x321d4e38, 0x61f4927c, 0xd8fc04d9, 0xcf6a137d, 0xd188f2b1, 0x4fdd932d, 0xc753f9bd, 0x6e577d89, 0xf122c7fb, 0xb20a96cb, - 0xa9151f9f, 0x0001f0, 00000000 + 0xa9151f9f, 0x0001f0 }, { 0x3a664cf, 0xb5535ce2, 0x9a851609, 0x3f36834d, 0x28beed4d, 0x8059030f, 0x4c36dc52, 0xc7f8d328, 0xfc6c1aff, 0x85cd3cce, 0x2d3be221, 0x42513af6, 0xee56805, 0xcb4863ee, 0x2ca2254a, - 0xd199be82, 0x000143, 00000000 + 0xd199be82, 0x000143 } }, { @@ -45942,19 +45941,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x27e0e866, 0x31fbe35, 0x86ad563f, 0x9b7adf93, 0xaccd3e46, 0x1bd5a4e4, 0x374b037c, 0x13571649, 0x5236b2bd, 0x19069b96, 0xd4d8202a, 0xb7ec8791, 0x86b48eec, 0x8da0fb15, 0xa80e0816, - 0x83a0ca61, 0x0000a4, 00000000 + 0x83a0ca61, 0x0000a4 }, { 0x2dd9606d, 0xd3aee17a, 0x862cc6a, 0xcaff3052, 0xa8bd3355, 0xb88bf522, 0x6d5ab90f, 0x4b5d0e0d, 0x31d75fc6, 0x9d71da10, 0x7ae04662, 0xeba79b52, 0x61cc8aa, 0x75f0a16b, 0x4999145d, - 0x850990bd, 0x0001fd, 00000000 + 0x850990bd, 0x0001fd }, { 0xf172d30c, 0xc9a31ee8, 0xa27e198, 0xeb2a36d2, 0x40994921, 0xd0a3e006, 0x29391499, 0x6ab11e89, 0x19936918, 0x9c7c0ab0, 0x294208ed, 0x80dcbf0c, 0x78581ab0, 0x8f1dfd6, 0x16785570, - 0x9536a56c, 0x000173, 00000000 + 0x9536a56c, 0x000173 } }, { @@ -45962,19 +45961,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4bd0774a, 0xbdbc8c33, 0x14a5c34a, 0xc989f44a, 0x751d66f2, 0x93bec846, 0x4b025f13, 0xb3502e27, 0x8dc7b9a5, 0x899d1cf4, 0x8017eeac, 0xfa8997bf, 0xc625e36a, 0xc79d958, 0xc8db1e2, - 0xa709ca98, 0x00008a, 00000000 + 0xa709ca98, 0x00008a }, { 0xff678d24, 0x53f7f4bd, 0x2583b0e8, 0x64763989, 0x14932a0d, 0xfd05a78b, 0xfbdca00, 0x5bb2b033, 0x6f29779d, 0x7ea9d60, 0x7ec43158, 0x394673f8, 0xb609a885, 0x6f55505c, 0x19941edb, - 0x93154233, 0x0001f3, 00000000 + 0x93154233, 0x0001f3 }, { 0x8b341e51, 0x8b2c5fd2, 0x945feb88, 0xb469c4c0, 0x29ecf32a, 0x95969345, 0xf5b42157, 0xa632a171, 0xdbc3e932, 0x5c46ff8b, 0xa1299df5, 0xd7cea8b6, 0x958307e5, 0x78f365cf, 0xf0772ee, - 0x5399bd69, 0x000004, 00000000 + 0x5399bd69, 0x000004 } }, { @@ -45982,19 +45981,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9732ab85, 0x3311a886, 0xe9651612, 0x89bed6c5, 0x31ba0578, 0x5f9d24f5, 0xdfc92245, 0x7bba8c90, 0x2f48c1e6, 0xe6568107, 0xa748e9b6, 0xedc46a5c, 0xb61040db, 0x16af7147, 0x7f02a009, - 0x1a2961b4, 0x0001c1, 00000000 + 0x1a2961b4, 0x0001c1 }, { 0x36fc415, 0x87c7dba4, 0xc5b50e57, 0x710c52f8, 0x5edec2c2, 0xec3b68ac, 0xbba3d4b, 0xbef52ac7, 0xa2c75bb5, 0x1ddb6b79, 0x334707a7, 0x5bd5fc01, 0x83675d03, 0x6ff78114, 0x4c508324, - 0xb98c9aae, 0x000038, 00000000 + 0xb98c9aae, 0x000038 }, { 0x3ad3c7f7, 0xcfcc2adf, 0x5eea0b6e, 0x6b16d21b, 0xca7e4bf5, 0x77098b8b, 0x8c12fad7, 0x7f042c7f, 0x658b8650, 0x904a3de8, 0x27ba68bb, 0xc54c9c98, 0x1876b762, 0x6fd5c0f4, 0x2fc6c47d, - 0xecbe50d2, 0x000097, 00000000 + 0xecbe50d2, 0x000097 } }, { @@ -46002,19 +46001,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xee04c2a8, 0x5057867d, 0x238fb3a, 0xfd6e5bf7, 0xa840430, 0x7d5433af, 0x594ad4f1, 0xa915c3b1, 0x11da46b5, 0x6c2667db, 0x3443f3f, 0x16d5561a, 0x42df1d0d, 0xae532cb0, 0xf7a33185, - 0x70bcf31d, 0x00013d, 00000000 + 0x70bcf31d, 0x00013d }, { 0x43ed9a18, 0x975631e, 0xf6fbae18, 0x34c39220, 0x7310edef, 0x227202d1, 0xc8ce1ba9, 0xff43e705, 0x5e052ae1, 0x83b9e1ae, 0xa297de7a, 0x35df52e5, 0xd2aef864, 0x42a32b10, 0xcaba7f7a, - 0x388e3aac, 0x00014a, 00000000 + 0x388e3aac, 0x00014a }, { 0xfb4aecd2, 0x902eb355, 0xaab0385e, 0x74d7c5a8, 0x4980e970, 0x30b87c7, 0xe364b62a, 0xbb43cfd1, 0x50d1b896, 0x34777fb, 0xf12f84ea, 0xeebbc7cf, 0xc0eaaac7, 0xc06c5137, 0x2f198a80, - 0xd6a4c219, 0x000030, 00000000 + 0xd6a4c219, 0x000030 } }, { @@ -46022,19 +46021,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd7d7be80, 0x1db73b71, 0xf3859985, 0x426b6d10, 0x54ba6d69, 0xd7b6defc, 0x840b5a17, 0xefcc4d88, 0x3970822b, 0xa40b1e65, 0xd6dc0910, 0x99266907, 0xdb32fc38, 0xaab5ad16, 0x4c76db3c, - 0x252ae1d0, 0x000055, 00000000 + 0x252ae1d0, 0x000055 }, { 0x500b7fba, 0x3c2248e6, 0x98c4935, 0x3ca3cdb3, 0x29035a28, 0x1e56d053, 0x876529b5, 0xe909a602, 0xc677347f, 0x42cb85bf, 0x74530b4a, 0xc2694e1f, 0x854e2a03, 0x37b570b6, 0xc844ee78, - 0x2743b614, 0x000003, 00000000 + 0x2743b614, 0x000003 }, { 0xd46a5618, 0x72e07656, 0x9e92e560, 0xf7b6f479, 0x7810743e, 0xc2b27b3c, 0x2ca48e0c, 0x7950ec10, 0x9019ad44, 0xecf54a13, 0x5bc6f860, 0xb76aede3, 0x79e41092, 0xd936215e, 0xb69bc3e, - 0xe68a584c, 0x00017e, 00000000 + 0xe68a584c, 0x00017e } }, { @@ -46042,19 +46041,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x643ea123, 0xa0f97d5d, 0x4b4a959a, 0xd4cf4d47, 0x5b5204d0, 0x47fb530b, 0xa75ce822, 0x930832, 0xcdce0be6, 0xa560504a, 0x92cdfb19, 0x8cbfdd3f, 0x917f28f, 0xc6ab537d, 0x9f5f9582, - 0xae561d66, 0x00010b, 00000000 + 0xae561d66, 0x00010b }, { 0x7b876894, 0xacc80304, 0x69561cb7, 0xa5f3f92d, 0xd7591faf, 0xae82f505, 0x6b0fc70f, 0xec7f7760, 0x57a92fd6, 0x921c95b3, 0xf624c7b5, 0x37a624b7, 0x343dcb87, 0x92cee821, 0xb72bd3ff, - 0x44640aea, 0x000199, 00000000 + 0x44640aea, 0x000199 }, { 0x17d5c57, 0xbdac6646, 0x4d2a4a99, 0xa677fedd, 0x54ef63c4, 0x6693c88c, 0x2246a3d0, 0xfe8628c6, 0x35903539, 0x4f3c7909, 0x417c0b8, 0x4ca388bc, 0xb11cb5f8, 0x7953f062, 0x2a145826, - 0x182f41ef, 0x000140, 00000000 + 0x182f41ef, 0x000140 } }, { @@ -46062,19 +46061,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x913f5de, 0x5dd7ad71, 0x11ea5011, 0x9fe1ccca, 0x2d49bffa, 0x9c760235, 0x1ff91a80, 0x442e2cb9, 0x6e76ebbe, 0x296978d8, 0x741ab083, 0xb59b14e6, 0xc7108de0, 0x104e4732, 0xda251b36, - 0x4d035c4a, 0x0001e1, 00000000 + 0x4d035c4a, 0x0001e1 }, { 0x6755b4e5, 0x8c3377da, 0xb8611d48, 0xbec33c63, 0x4214f39c, 0xacb658bb, 0x1574cf4a, 0x1f53dec7, 0xc26e8c7, 0x9681eba0, 0x83789716, 0xe417b223, 0x57f5df39, 0x26ab2e40, 0x579b2e35, - 0x3c2f1cf, 0x0001ca, 00000000 + 0x3c2f1cf, 0x0001ca }, { 0x4bc617d9, 0xa66c3356, 0x7466e969, 0x6c3aac77, 0x2bf429d2, 0x722ebf65, 0x720a5a73, 0x73019dbe, 0xd69768f2, 0x1c638289, 0x322e467b, 0x6e111859, 0x71420a5c, 0xe2e72c21, 0xc65a60a8, - 0x167446ab, 0x000150, 00000000 + 0x167446ab, 0x000150 } } }, @@ -46084,19 +46083,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa0311ab0, 0x6c56cf72, 0xf15ba51b, 0x7761806c, 0xe24fc3fb, 0xaf5dfc10, 0x1f519fef, 0x5b838922, 0xf1576d66, 0xb4c6d24f, 0x339e4dd2, 0x16204549, 0x98a9ca70, 0x5a84a7a7, 0x240a2d6f, - 0x7fcf9d3a, 0x0000b1, 00000000 + 0x7fcf9d3a, 0x0000b1 }, { 0xbe859533, 0xa2b4673f, 0x16a26638, 0x5bffd8ba, 0x32d2080b, 0x445923e5, 0xb618e35e, 0x4568a089, 0x75b74797, 0x28f907d7, 0x89c27b54, 0x3450e0f5, 0x1540f425, 0x54bc6d3a, 0x1418f455, - 0x4563c04e, 0x000061, 00000000 + 0x4563c04e, 0x000061 }, { 0x2812c4bd, 0x4bf2ae9b, 0xd2db3455, 0xb02417e4, 0x51499a22, 0x217a316d, 0x48d231d0, 0xb911a758, 0x75aa0711, 0x5f3a7a13, 0x870ce6f0, 0xe1231e26, 0xef1cd08e, 0x97bea06b, 0x4e8f0afc, - 0xc6c26cfb, 0x000128, 00000000 + 0xc6c26cfb, 0x000128 } }, { @@ -46104,19 +46103,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe1070c1b, 0xe3a52aed, 0xd0c64221, 0x1a525cca, 0x58b3c905, 0x944d2c6f, 0x9052b63e, 0xd68e95de, 0x19283fa8, 0xf8bafa85, 0xc7e51f7f, 0x546ea44d, 0x81a57461, 0x4bc1ed72, 0x31adc7dc, - 0x51135339, 0x00004c, 00000000 + 0x51135339, 0x00004c }, { 0xbc3f00e3, 0xe463e09e, 0x6b50670d, 0x42442648, 0x65c6466c, 0xcabfb23e, 0x635b18a7, 0xdd8725da, 0x40f4fc61, 0x53d1c33e, 0xe49d7de5, 0x239d1a4c, 0xaac9a82e, 0x98ad343b, 0xb5a68fca, - 0xa7184e1, 0x0001a3, 00000000 + 0xa7184e1, 0x0001a3 }, { 0x748cc1a2, 0x55aaf621, 0xb34db3b1, 0xe7aa85af, 0x559c291a, 0xa415ebc7, 0x3db85def, 0x3f71b6a0, 0xeaea01e0, 0xe9328795, 0x93c3c3f, 0xf70c0cdf, 0x236cec45, 0xa611ec16, 0xdc25318f, - 0x55b1c342, 0x000019, 00000000 + 0x55b1c342, 0x000019 } }, { @@ -46124,19 +46123,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3d8bef02, 0x7f459969, 0xf0463c16, 0x87c20c4b, 0xcf370854, 0x7ab2ffa8, 0x58ed62e4, 0x65955ecd, 0xc5f3a192, 0x666d712e, 0x3e0b1ef8, 0xce228523, 0x9bd89597, 0xf214d309, 0x9856fae, - 0x99928925, 0x000083, 00000000 + 0x99928925, 0x000083 }, { 0xfee2ca5e, 0x6ba9153, 0xd1f6d6cc, 0x71310d01, 0xfa6d0193, 0x902fc32a, 0x3d587398, 0x4fe79782, 0x42b6109c, 0x285f6795, 0x6b4085e4, 0x20edfb0a, 0xd4945839, 0x56895cf6, 0x718d9e7a, - 0x74b8d885, 0x000136, 00000000 + 0x74b8d885, 0x000136 }, { 0x49bb063d, 0x4c370c4b, 0xe1a561a2, 0xe317e17f, 0xbefdbab2, 0xb7d11397, 0xe8d1ce03, 0xad92b2f3, 0x61cfb9e4, 0x941d6354, 0x5e878b2d, 0x7722bdfc, 0xac3d24e5, 0x15c9f946, 0xd76becaf, - 0x5aa32b72, 0x00003b, 00000000 + 0x5aa32b72, 0x00003b } }, { @@ -46144,19 +46143,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xabfce896, 0xf8d2ffaa, 0x39d2c551, 0x99c9b9fe, 0x21750113, 0x43388550, 0x12c4f553, 0xcd36c015, 0xe9afa89, 0x64c3c2a0, 0xb85f6748, 0x99479411, 0x44005518, 0x3e90a301, 0x7d6773c, - 0xe7f2e136, 0x00017e, 00000000 + 0xe7f2e136, 0x00017e }, { 0x60cba454, 0xfb743d87, 0x2a0e655a, 0x51bdd7fc, 0xbf34b72b, 0x1f4e8f69, 0xfa2d4e88, 0x3e18bc35, 0xc352a667, 0xc0e88b99, 0xfd9cf04e, 0x3ccc69b9, 0xbbb5ccdd, 0x6b15e50a, 0x5f4f2a74, - 0x6db9245b, 0x0001e6, 00000000 + 0x6db9245b, 0x0001e6 }, { 0x44602f5, 0xcdaecc3b, 0xea77ab4c, 0xe5819b, 0xb0111f94, 0xeaf1644a, 0xe471cfdc, 0xf6be9c2b, 0x8b073970, 0x7b68d846, 0x33852e0a, 0x1de92192, 0xe33e23b4, 0x37876359, 0x74400567, - 0xcf55f40d, 0x000010, 00000000 + 0xcf55f40d, 0x000010 } }, { @@ -46164,19 +46163,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6f17540a, 0xac4b4ef3, 0x555a677b, 0xb1bfe777, 0xed38b951, 0xae5d6d56, 0xdd7305c, 0x5c832fa0, 0xe737bdb9, 0xc5818d7b, 0xf0dcdfa0, 0xbe3b250c, 0xe95d006b, 0xa709ce02, 0xe7559cc2, - 0xb3a8df32, 0x0000ab, 00000000 + 0xb3a8df32, 0x0000ab }, { 0x6beb60e4, 0x952e769e, 0x238758f9, 0xcc2f151d, 0x577e7c93, 0x6c441b30, 0xda94a761, 0xe9d523c7, 0x259b83ec, 0xb624e117, 0x26b1c83d, 0x378b07bd, 0xc61fd38e, 0xff0eb5cd, 0x264fd733, - 0xf4c01aec, 0x0000fe, 00000000 + 0xf4c01aec, 0x0000fe }, { 0x7ec6ff4f, 0x28e83d20, 0x367e6906, 0x88424fba, 0x18963f16, 0x7b3738cd, 0x1cfa209b, 0xe3e6eb20, 0x91e79c00, 0x3e437df0, 0x16be9bb5, 0xb6d3647c, 0xb6fa23a2, 0x807a5e3d, 0xd6082634, - 0x2376c69, 0x0001c9, 00000000 + 0x2376c69, 0x0001c9 } }, { @@ -46184,19 +46183,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcaac078b, 0x28e48a38, 0x6c7d5f12, 0x7fa322fd, 0xf52db016, 0xeba7f81d, 0x8b6d817e, 0x0cb9af, 0x2ca8afa0, 0x40bfd8c, 0xfe23cd58, 0x5e8a7989, 0xac66170, 0x99f05666, 0xb1f520f8, - 0x2d048a09, 0x000182, 00000000 + 0x2d048a09, 0x000182 }, { 0x9dc651d0, 0x2e42b301, 0x90c719d7, 0x8f44b415, 0x68f0da20, 0x136a89e5, 0xfa98b3d2, 0xcf3b2f5c, 0x5df82909, 0xf9a0fcc0, 0xc4045866, 0x83f3bf88, 0xc0dd2a5e, 0x3b1d9633, 0x44d354ee, - 0xde1da014, 0x0001bb, 00000000 + 0xde1da014, 0x0001bb }, { 0x2ddce94f, 0xf4c22324, 0x752d2382, 0x600de77b, 0xf1783568, 0x95370830, 0xe31cd4b7, 0x3bc1b944, 0x9beccb43, 0x825f3510, 0xda1e5611, 0x48fe8485, 0x9ff9e234, 0x3abd91c2, 0xe919bbfc, - 0xbad0954d, 0x0000de, 00000000 + 0xbad0954d, 0x0000de } }, { @@ -46204,19 +46203,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x98df4657, 0x4572a032, 0x88f08f17, 0x30ffc399, 0x1e4da68e, 0x418c9c48, 0x1b1ca1c2, 0x5841a491, 0xf87d0ea5, 0x6042344d, 0x5d44202f, 0x905c80a5, 0x3cc9901c, 0xd3a8932f, 0x56301dfc, - 0xd1ee6066, 0x0000b8, 00000000 + 0xd1ee6066, 0x0000b8 }, { 0x42a32e44, 0xde54dad7, 0x88dab570, 0x28827092, 0xb4c9b88d, 0xa54e29a, 0xf425b70d, 0x2e925130, 0x7292ab97, 0x918135c1, 0x2a1e3ae6, 0x58d8b6a6, 0xb143f2c0, 0x271ebd60, 0xa4f2d497, - 0xeee9368, 0x0001d8, 00000000 + 0xeee9368, 0x0001d8 }, { 0x6bf6bb53, 0xdc86aa2f, 0x567a3bbd, 0xee5ad7c8, 0xea0814a3, 0xaf42e8f8, 0x70968803, 0x42533a98, 0x57aad66b, 0x58c8f0b7, 0xcac94ce0, 0xad70e298, 0xa19f96ea, 0x847f580e, 0x50f302cc, - 0x314026fa, 0x00010c, 00000000 + 0x314026fa, 0x00010c } }, { @@ -46224,19 +46223,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9d1ab727, 0xaf3ab27f, 0xa6dd6133, 0x556e43c7, 0x5f0f1b3f, 0xbdf11550, 0x951c2261, 0x9b747e8c, 0x1c3fc314, 0x7d0a6334, 0x65150864, 0x8ba46b30, 0x65c4887c, 0xa35026a8, 0xa59d4498, - 0x495b8c56, 0x0001cd, 00000000 + 0x495b8c56, 0x0001cd }, { 0x50ba6145, 0xa9b2ab74, 0xadbdb78f, 0x8123aa75, 0xeff32366, 0x91c51e12, 0xc1c5131a, 0xbd5b2898, 0xd70d3c5c, 0x1414af01, 0x9c943dcf, 0xd64953af, 0xfae0cddf, 0xfd23fca7, 0xc589a36b, - 0xf44c06f7, 0x00001c, 00000000 + 0xf44c06f7, 0x00001c }, { 0xc7803115, 0xf6a862e7, 0x91959351, 0x8c6bc2e7, 0xd9d965e9, 0x50db32f9, 0x59e99868, 0x2fe4c88e, 0x1df580d9, 0xa5b198ce, 0x3c1cb800, 0x10f20848, 0x114627f4, 0x4a5238ff, 0x168dca62, - 0x2b604586, 0x0001c2, 00000000 + 0x2b604586, 0x0001c2 } }, { @@ -46244,19 +46243,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x574ff272, 0xabe6ae28, 0x63f0e452, 0x56836c3b, 0x8bafe426, 0x9e855a6e, 0xaefe8e8e, 0x2d9fce90, 0xf79e81b1, 0xe4338f77, 0xba0e6921, 0xb046f815, 0x91db5e9e, 0x97b16b88, 0xfda36cf3, - 0xec2cd0a2, 0x00007c, 00000000 + 0xec2cd0a2, 0x00007c }, { 0x5ef77aff, 0x24b685b5, 0xcea5905c, 0x90d3533d, 0x98fb5f4, 0xf8000abd, 0x65e2912e, 0xc17c1346, 0x258fc62a, 0xceba9ee5, 0x93717a91, 0xe7ebe335, 0x1b5096bc, 0x5f4afe50, 0x11096271, - 0xa5a15c63, 0x0001a2, 00000000 + 0xa5a15c63, 0x0001a2 }, { 0xfcdba3ab, 0x94689796, 0xa2c963c0, 0xd2f1c8c5, 0x2419c6d1, 0x5276f511, 0x2b018af, 0xa2e05771, 0x4669409e, 0xad0dcaf2, 0xd3817790, 0xa6cf7038, 0xb33bb43d, 0x352e92ac, 0xf14acd21, - 0xf4fde14f, 0x00017c, 00000000 + 0xf4fde14f, 0x00017c } }, { @@ -46264,19 +46263,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3deae41, 0xc49d4a1e, 0x8887fb5, 0x83bffb11, 0x5a2795f8, 0xbb7e78a4, 0xca3e4b05, 0x8d91a004, 0xdfa1700c, 0x45b63ca9, 0xe3c9fa6c, 0x2e99259e, 0x62b016b1, 0xa94b02c8, 0xbaf97f25, - 0x81329459, 0x000119, 00000000 + 0x81329459, 0x000119 }, { 0x674571b1, 0x6291e0fe, 0x2ab860d5, 0xacf30c9, 0xd90cb2df, 0x7bf514f7, 0xcc7e9894, 0xe8fe6c16, 0xcedd45a4, 0x72cded85, 0xc5bca30c, 0x16b69de5, 0x153facde, 0xdc4559bf, 0x6cc77121, - 0xa9ba15c8, 0x000121, 00000000 + 0xa9ba15c8, 0x000121 }, { 0x8a48843b, 0xad9f4986, 0x7f1cf0e4, 0x991de4ea, 0xec1bde32, 0x29fd22b8, 0xacc2fd0a, 0xabfcc884, 0xd4bb970, 0x396c6eb6, 0x6b43833b, 0x5a105e7f, 0x78b2f7f9, 0xfc9d322c, 0xb6212890, - 0x4e1425c1, 0x0000bf, 00000000 + 0x4e1425c1, 0x0000bf } }, { @@ -46284,19 +46283,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfcb15a78, 0x9ee6a6ac, 0x8d382b51, 0xd314c7de, 0x67f933a8, 0xc5254249, 0x120d6be7, 0x9f15d9f2, 0x671b0c10, 0x9a6be86e, 0x595fe3ff, 0xe1205d3d, 0x26d8f778, 0xaf1888ef, 0x4013d1ea, - 0xfcd7e65f, 0x0001cb, 00000000 + 0xfcd7e65f, 0x0001cb }, { 0x355df43e, 0x452dcf8e, 0x18913b43, 0x2ec3d11d, 0x79735f05, 0x1ab2d08c, 0xd7c21be, 0x37fad823, 0x879bfaa9, 0x93c97b0f, 0xf129e800, 0x96b132fa, 0x6b40e72d, 0xb431c6b8, 0x5ce7b3da, - 0x320c28ed, 0x000131, 00000000 + 0x320c28ed, 0x000131 }, { 0xe667b920, 0xb4a80d5, 0xff5009e9, 0x3024365f, 0x35f402eb, 0x69610b55, 0x97e9f411, 0x1f609e29, 0x1e6bf920, 0xfe4010fd, 0x380f677c, 0xfae7ad71, 0x2b91b4fc, 0x799085f3, 0x33685ba1, - 0x23790b2b, 0x00017d, 00000000 + 0x23790b2b, 0x00017d } }, { @@ -46304,19 +46303,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdeb5440a, 0x1f0741d4, 0x82ffe30f, 0xfe414f93, 0x2a673ca1, 0xc379ce57, 0xdb2fa4d5, 0x1176ef75, 0xde832cbc, 0xaa1aaca7, 0x82838a36, 0xe9ff3097, 0xd1fd475a, 0xb64a0d97, 0x7a3d7435, - 0xa4b4701, 0x000012, 00000000 + 0xa4b4701, 0x000012 }, { 0xff5361f6, 0x6449acdd, 0xcb495e99, 0xbb9f6e91, 0x80584c30, 0xf8b61b73, 0xe504be25, 0x6b04a63, 0xd1abfb89, 0xadc941bd, 0xca9c5e77, 0x5f74f647, 0x78614867, 0x62603ba0, 0x3413784b, - 0xb0a9fd79, 0x00013b, 00000000 + 0xb0a9fd79, 0x00013b }, { 0x7c5791d6, 0x486e4561, 0x58bd6326, 0x3ac5019b, 0xab3f533d, 0xaa265d41, 0x4e59f5ad, 0x1d95e25c, 0xf026c976, 0x7b9cea6, 0xc357292b, 0x4e631bc7, 0xa176f184, 0xd97e7529, 0xc733d056, - 0xeb774f97, 0x000133, 00000000 + 0xeb774f97, 0x000133 } }, { @@ -46324,19 +46323,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x41003f1d, 0xc1d5ad61, 0xbee43ae1, 0xfe2e9666, 0x7a0c2725, 0xe4f79552, 0x11d3f9f8, 0x77d6fd6a, 0x7a1189b5, 0xbe0388f4, 0x895d046d, 0xab9847e2, 0x766fea55, 0x3fde6626, 0xc2940013, - 0x11c7bdf2, 0x0001e3, 00000000 + 0x11c7bdf2, 0x0001e3 }, { 0xdff330c1, 0x86e94081, 0x433e1dd9, 0xb6d7decb, 0x855851a8, 0x3cbf5097, 0x54d389a5, 0xf91d5677, 0x12f470b, 0x8e4aa4dd, 0x59d44886, 0x2be15a7d, 0x2444cb90, 0x5b0227df, 0x4bdfba35, - 0xba2c873, 0x000168, 00000000 + 0xba2c873, 0x000168 }, { 0xb87e28fc, 0xc0e9d20b, 0xea71c9c1, 0xd270c7b5, 0x94b33be5, 0xd262a05f, 0x996cc52f, 0x75d14cc, 0xef26b35a, 0x44b0856b, 0x7d48f15f, 0xf58c44e9, 0x59520968, 0xa98bcbc6, 0x35a6caa4, - 0x45393e6b, 0x00005c, 00000000 + 0x45393e6b, 0x00005c } }, { @@ -46344,19 +46343,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x877562d4, 0x96dabc4a, 0x5ffee9b8, 0xccfbf9c3, 0xfc543419, 0x35ccfae, 0x3fe7a4be, 0x44ffb873, 0x66048f47, 0xea0cd7a, 0x9e9124e5, 0x8f845e56, 0x6c6b0752, 0x608ca50f, 0xed6ae23, - 0xc82701f6, 0x0000b6, 00000000 + 0xc82701f6, 0x0000b6 }, { 0x51e93a48, 0xcd05aa3b, 0xc1e23543, 0x17c8d9e0, 0x318e2f61, 0x7fe6dd92, 0x59174c18, 0x5bbdc58f, 0x444fde90, 0x9ae6ddf1, 0x4fae6d73, 0xa88e288, 0xed2324aa, 0x84349b49, 0xb1c78dbf, - 0x9b3071ff, 0x00009e, 00000000 + 0x9b3071ff, 0x00009e }, { 0x5c266bce, 0x4b18e847, 0x86c6ab79, 0xec8f1052, 0xccb7ee56, 0xd9f8b580, 0x44f5d83f, 0xf6d9e63d, 0xe8cff19c, 0x62f071f0, 0x29c971df, 0xc489146f, 0x73c2297, 0x32596f5, 0xd3ef4315, - 0xab9892da, 0x00011d, 00000000 + 0xab9892da, 0x00011d } }, { @@ -46364,19 +46363,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe3f63a15, 0xff6c936a, 0x9e3d283f, 0x464796dc, 0xb8b0b6d0, 0x87611350, 0xea659aeb, 0x90b8b22f, 0x310f9829, 0xc11e19cf, 0x3643e5e, 0x4a42a04, 0x1a99a0d3, 0x72646cce, 0xc918d067, - 0xa1269a2d, 0x00001e, 00000000 + 0xa1269a2d, 0x00001e }, { 0x16dbb103, 0x4984d013, 0x2047912, 0xb755d852, 0x5353bbc8, 0x6a2cace8, 0xd01d0d6a, 0x893b1202, 0xb1c23606, 0x5204074b, 0xa3eb70cc, 0x6e819706, 0x11229a86, 0x159aa70e, 0x6b0e842c, - 0x9602e941, 0x000096, 00000000 + 0x9602e941, 0x000096 }, { 0x20fbd71f, 0x19a166c9, 0x53426323, 0x78e3d8ef, 0x456bd3f3, 0x9f4b671e, 0x63bdd1ce, 0x4e6a1b1f, 0x273633, 0xc1cb91, 0x41ec9ce9, 0xe02f7ac1, 0xb4668b31, 0x7efbe03c, 0xc04b700f, 0x18e60cff, - 0x00007b, 00000000 + 0x00007b } } }, @@ -46386,19 +46385,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x181c12e7, 0x704fc047, 0x8cf4ca46, 0xe6b7ca6, 0x334134e4, 0x7fa831d2, 0x20eaca11, 0xc5b5e3a6, 0x7006667c, 0xb00d9043, 0xd7db8abc, 0xde27b92e, 0xcc492e4e, 0x5d1a720c, 0x2fe71f54, - 0xb713477d, 0x000022, 00000000 + 0xb713477d, 0x000022 }, { 0x192955c3, 0x8637f206, 0xfca56bfa, 0x27eb1e21, 0x70d9fed5, 0xb1bbc9f5, 0x5d4825f4, 0xea5058cc, 0xf735d116, 0x1678cf36, 0x7a212b4e, 0x669180e5, 0xe820dc05, 0x5cce31b0, 0x2985654c, - 0x69fb9215, 0x0000ff, 00000000 + 0x69fb9215, 0x0000ff }, { 0x53d0271c, 0x663f68ff, 0x26e0c818, 0xd431a413, 0x221339ec, 0x50b9ed24, 0xd4c0949, 0x7cd5f651, 0x725b0c7, 0xfe33b47e, 0xa4c3ecab, 0xc352a5ac, 0x9141a3e7, 0x251beb01, 0xb375bc75, - 0xcacc6b71, 0x0001c3, 00000000 + 0xcacc6b71, 0x0001c3 } }, { @@ -46406,19 +46405,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x28d177bf, 0x2f8e97b2, 0xc039c7d3, 0xfaeeac0b, 0x65f45d58, 0x9fbf030a, 0x66f0af74, 0x212344b5, 0x7c4f2dbd, 0x7ea8105c, 0xc5caf380, 0x48f0dc72, 0xb92498ce, 0xf5da483, 0xcfd4ca7f, - 0x20dfc029, 0x0001e2, 00000000 + 0x20dfc029, 0x0001e2 }, { 0x442aa756, 0x32c90883, 0x27ccfa2, 0x69da9a00, 0x8fe00727, 0x62b1d2bc, 0x7135d07f, 0x29409875, 0xa91ee9c2, 0x6dee4bd1, 0x5d3776c0, 0xfc86cefb, 0x5bf1e697, 0xf4e5a8be, 0x22e1c125, - 0xc4780802, 0x0000f7, 00000000 + 0xc4780802, 0x0000f7 }, { 0x71391002, 0x2771f2b8, 0x5d6731af, 0xf30ee65a, 0xb1eedb05, 0xe81c4643, 0x4ea1d9e5, 0x7d6ab1b5, 0xcc611e2b, 0xc8eac7b, 0xdea68b8c, 0xc3a38b64, 0x75749b07, 0x9e66787a, 0xf833daa5, - 0xfa4479a1, 0x000194, 00000000 + 0xfa4479a1, 0x000194 } }, { @@ -46426,19 +46425,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6d58e3c, 0x454d25f5, 0xf1dda07e, 0xbe4c5226, 0x24179f54, 0x6ac4c075, 0x972fc648, 0x82636671, 0xa89488c3, 0xcde14fc7, 0x367adffc, 0x9a3377a, 0x29f909f, 0x7c8dcf2d, 0x1fd23314, - 0x40dc6a94, 0x000127, 00000000 + 0x40dc6a94, 0x000127 }, { 0x1821ade8, 0x7d7decdd, 0xab6ef320, 0x46a518c7, 0xcef176ed, 0x87689541, 0x8a761f33, 0xf677747f, 0xba3da9ae, 0x7c55ed3a, 0xdacf9def, 0xb84d1a01, 0x37d11202, 0xf3ba8897, 0xc9b25bfb, - 0x95fe12fc, 0x000017, 00000000 + 0x95fe12fc, 0x000017 }, { 0x394e9503, 0xb3bdc2d7, 0x897bb107, 0x4ef52a0f, 0x35c33880, 0xa362e31, 0xdcc8d118, 0x726463ad, 0x9197558b, 0xdf5574de, 0x9235e72c, 0x1d46c13b, 0x71e1db53, 0xf05e91a4, 0x4d49a130, - 0x5ca833cf, 0x000135, 00000000 + 0x5ca833cf, 0x000135 } }, { @@ -46446,19 +46445,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb1d36bf4, 0xf30f1ee1, 0xa22297a4, 0x112da3a4, 0x94634712, 0xee66b8c7, 0x2305b3ed, 0xe04b0f42, 0x8e4ecdd, 0x80d31ca6, 0xec2c1285, 0x8200522a, 0x4b0e4ad7, 0xf4c8633c, 0xd1d5913b, - 0xbfe2055, 0x000154, 00000000 + 0xbfe2055, 0x000154 }, { 0x324e4d7, 0xeb513022, 0x4de372fc, 0xb27d1d0, 0x121ccc88, 0xe99e3156, 0x5650dec6, 0xb7de3fba, 0x6cf42b82, 0x272d722d, 0x9030e0a7, 0xc0a109ab, 0xdd36aed8, 0xe0e407d0, 0xf3bd7b4e, - 0x3393a2f0, 0x000083, 00000000 + 0x3393a2f0, 0x000083 }, { 0x5d1fb01e, 0x8a43a5d3, 0x35b2d94d, 0x728d12e4, 0x1c221d48, 0x9107fbfd, 0xeaa7800c, 0x14d9fe0, 0x31038bac, 0xb1dd22c2, 0xcbe8b3b7, 0xa1352589, 0x4be0bde, 0xaaba6404, 0x7945013, - 0x31293eab, 0x0001e3, 00000000 + 0x31293eab, 0x0001e3 } }, { @@ -46466,19 +46465,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc322c8f2, 0xf3febccb, 0x7d253514, 0x78568707, 0x6b49c79, 0xdd63c832, 0x7ebee7ea, 0xb5b741e2, 0x9ab5eb6f, 0x5bb21552, 0x96b9a1f, 0xfd9d112e, 0x5389a4b5, 0x2d53fc69, 0xc4fd75cc, - 0x85b15be6, 0x000147, 00000000 + 0x85b15be6, 0x000147 }, { 0x4965f5d4, 0xd6512055, 0xa575e76f, 0xd7ac23c4, 0xfaad81f4, 0x2412e12, 0xd9ce0df2, 0x1710ffba, 0x7f8f11e3, 0xb60d9550, 0xcca23e0c, 0x1a4fc12b, 0xf5cfc3d7, 0x2370a7, 0x1bcd5873, - 0x3673067d, 0x000013, 00000000 + 0x3673067d, 0x000013 }, { 0x23bac280, 0xfba1c4bf, 0x137b4781, 0x391e4498, 0x916a544f, 0x7eb1d065, 0xa520344, 0x579637d, 0x2c230726, 0xf9b1e226, 0xde8c6c9e, 0x31f31c7a, 0xe45475b3, 0x4556d6f7, 0x445599a7, - 0xa5e48f64, 0x0000e4, 00000000 + 0xa5e48f64, 0x0000e4 } }, { @@ -46486,19 +46485,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf2a7300, 0xcb4137a6, 0xbeaf5f49, 0x38b232c7, 0x4de79897, 0x9b676ed9, 0x5386901, 0xfe8b0764, 0x113af9c8, 0x855ae58b, 0x9cd5b5e5, 0xebd6a136, 0x3f2e17de, 0xcc4ab73a, 0x5b412418, - 0x42800863, 0x000126, 00000000 + 0x42800863, 0x000126 }, { 0x391734e6, 0xc2b96a11, 0x49030c15, 0xb47b1cd1, 0x4aa30627, 0x6bd92d06, 0x2d392dd5, 0xcb4729e4, 0x93af2269, 0x35081572, 0xd8fb31c5, 0x49e220f2, 0x7d6ca24f, 0x1181cff4, 0x9d98c385, - 0xcdb809a8, 0x00002a, 00000000 + 0xcdb809a8, 0x00002a }, { 0xece4e7b6, 0xad4eede9, 0xa32c7b3c, 0x4741a18d, 0xf6e5e889, 0xd50274c6, 0xeffa58f0, 0xa3e7a2f6, 0xd9fca75, 0x854aed78, 0x9f85baa, 0x7b9a655a, 0xcd9d0275, 0x8e315d70, 0xbf21159b, - 0xea18ef6c, 0x0001e1, 00000000 + 0xea18ef6c, 0x0001e1 } }, { @@ -46506,19 +46505,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe257c85, 0xd59ddd51, 0x4002855c, 0xf19e03ee, 0x4cfebd49, 0xd66b40b0, 0xf4bc5f9, 0x849427aa, 0x8eb97ce8, 0xcd3ce4ff, 0x706a54a4, 0x91cd00d6, 0x4edca599, 0xa85c07fe, 0x63af1394, - 0xc66f3f53, 0x000068, 00000000 + 0xc66f3f53, 0x000068 }, { 0xf392f85d, 0x7881f48a, 0xc5f0ebda, 0xe61fd267, 0x17fbc686, 0x96b8826, 0x3dee0019, 0xd5067770, 0x6d2c717e, 0x8266ce3d, 0xbf60273b, 0xff4f8e3e, 0x76dc4914, 0x2735ffa0, 0xbc260bf4, - 0xccd38bbe, 0x00003a, 00000000 + 0xccd38bbe, 0x00003a }, { 0x5a04f932, 0x7c1ce0e, 0xd2d0fe1, 0xd9c21519, 0xa3021584, 0xdc2ddcb3, 0xbcf4409b, 0x666efb06, 0x7827d89b, 0xb4800cdd, 0x62c09fad, 0x159f35d0, 0x53c54c20, 0xa7978012, 0xe1b72543, - 0xb857b6c7, 0x000104, 00000000 + 0xb857b6c7, 0x000104 } }, { @@ -46526,19 +46525,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaf7de205, 0x47b39638, 0xe45d3d95, 0x399a6e22, 0x19e59eb0, 0x6a0b1692, 0x41bc8098, 0x1bc6d316, 0xfa0b211c, 0xb9a78d51, 0xf023786c, 0xe7bfcbb0, 0x665dd8af, 0xdf2d3643, 0x63f9701f, - 0xb11c9ac6, 0x0001de, 00000000 + 0xb11c9ac6, 0x0001de }, { 0x99bc4a5f, 0x34ae9414, 0x7bb8f96b, 0x3951dab2, 0xc3bac3e9, 0xd5204dac, 0x3ee3ee37, 0xb2b72460, 0x5fb6bdfb, 0x1ccf97a, 0x8d1b39a, 0x9facd245, 0x6ea012b4, 0xb48915b6, 0x7dd360ec, - 0xbdf7c646, 0x000107, 00000000 + 0xbdf7c646, 0x000107 }, { 0x1824ad30, 0xc4a45b02, 0xf76e905, 0x44c706be, 0x1ec38e71, 0x133779bb, 0x288178bd, 0x9a7f53d5, 0x7342ea22, 0xe8d773e7, 0x37410b62, 0x510af913, 0x71df802, 0x140c05bb, 0x92471265, - 0x2360110c, 0x0001fd, 00000000 + 0x2360110c, 0x0001fd } }, { @@ -46546,19 +46545,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8629c77, 0xd13c3fa0, 0x8643a9b7, 0xe0128c62, 0x1068d31d, 0xc7f82a50, 0xedd8f212, 0x73259eab, 0x73c9e7a2, 0xd30d6684, 0x51b4e82b, 0x23aa865, 0x61eac977, 0xea4f387d, 0x8afc56e2, - 0xd8bb7dc8, 0x000065, 00000000 + 0xd8bb7dc8, 0x000065 }, { 0x78d5abfa, 0x586824b1, 0x4563f325, 0x246ec860, 0x7816b91a, 0x641449b5, 0xab7bcb65, 0xf3e57c31, 0x11767779, 0x30c2fcd3, 0x9498d3b1, 0xacc8bf06, 0xc0071098, 0x6fa08020, 0x6e7cca95, - 0x3aa05000, 0x000130, 00000000 + 0x3aa05000, 0x000130 }, { 0xb33da3a5, 0xd255547e, 0x5df79724, 0xf51833ef, 0xa25d679b, 0xb5848aa1, 0xb36697bc, 0x1bf1fed7, 0x96f03e94, 0x51541956, 0x2705c7cc, 0x6a9108f1, 0xd6448882, 0xdffbc241, 0x488b864d, - 0xba9fbaa6, 0x000098, 00000000 + 0xba9fbaa6, 0x000098 } }, { @@ -46566,19 +46565,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5b6ce836, 0x876dc105, 0x32c3dda9, 0x67bd0432, 0x8176363b, 0x806e2d0e, 0xa7dfba78, 0xeeffb0c8, 0xd59d0f41, 0x5a32ce9e, 0x72b1278b, 0x8deef299, 0xc55a466d, 0xb10ae7f8, 0x2511f780, - 0x3e3c707a, 0x00000f, 00000000 + 0x3e3c707a, 0x00000f }, { 0x1030e509, 0x9e02bf81, 0x8f31006d, 0x9df4f8ac, 0x94bda332, 0x55af8332, 0xba7ad6ce, 0x4f6f7d32, 0xd58ddb57, 0x6b5f3da0, 0x216dea6e, 0xa5806926, 0xf3051661, 0xaf162401, 0x7f7f5a88, - 0xa5f8571, 0x00014b, 00000000 + 0xa5f8571, 0x00014b }, { 0xbf17a6b1, 0x738a7170, 0x6ff5fed2, 0x754127e3, 0x5ef8440d, 0xa01eb1f8, 0x2ba635f6, 0xf5bf4cc5, 0x4c7a637e, 0x23833d1b, 0xaf218a45, 0xa19db09d, 0x1ade41e, 0xafce6bf1, 0xee04ee9d, - 0x508dd277, 0x00004c, 00000000 + 0x508dd277, 0x00004c } }, { @@ -46586,19 +46585,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdaf0bb81, 0x4bab9a99, 0xd62c1d00, 0x1a809896, 0xb1d81e94, 0xfc15571, 0x330ff92e, 0xe71e5ad6, 0x3272c5fa, 0xe5da998f, 0x95be4121, 0x9cb6b8b8, 0xb589a56d, 0x21d07ff8, 0x734e9f11, - 0x7b929894, 0x00018d, 00000000 + 0x7b929894, 0x00018d }, { 0x79f1fdf7, 0x29007f2c, 0xbc218f8b, 0xf03fc940, 0x4c0b692f, 0xe0cd4c28, 0xac68f3a2, 0x4bb98bee, 0xcdf8d209, 0x9b240d9, 0x27e8d1fb, 0x759386f3, 0x5ea599fd, 0x2f1084e, 0xed63c9b3, - 0xd22accbe, 0x0001f1, 00000000 + 0xd22accbe, 0x0001f1 }, { 0xe6fe0603, 0x40eb2568, 0xd39b2e84, 0x926661d, 0x297b81a0, 0xcb95dbf3, 0xe67b84b2, 0xb1d8092a, 0x5968f541, 0xaec74cf7, 0xfbe22de0, 0xf5b0ee77, 0x68c1be4b, 0x4debaa27, 0xa58506fb, - 0x8e67631d, 0x000136, 00000000 + 0x8e67631d, 0x000136 } }, { @@ -46606,19 +46605,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3d38e164, 0x5e2ebe76, 0xc11f7006, 0x63b72bc3, 0xca65e4a9, 0xa14476db, 0xbfa47362, 0xdc1ae6e, 0xb5346bd4, 0xbd92be57, 0x3c4a3be, 0x602c8d17, 0xdf2978e1, 0x591ec2a, 0xbf17a6ec, - 0xe99fe630, 0x000141, 00000000 + 0xe99fe630, 0x000141 }, { 0xb27a70ff, 0xd0980dd2, 0x5cb0e911, 0xa27a98c5, 0xe4ecafa1, 0x3a141c4c, 0x3f383f3f, 0x8383ad8c, 0x65bf080d, 0x9ad1946e, 0x20402b6, 0x177b8c3a, 0x819431be, 0x3f028879, 0x1842032b, - 0xdc19d4fd, 0x0000c6, 00000000 + 0xdc19d4fd, 0x0000c6 }, { 0x1ae58dd3, 0xaa9e6bf6, 0x450342c8, 0xdff02fd1, 0x49827619, 0x4f0e82e5, 0x9cd1de57, 0x4fe44a70, 0xce45cb67, 0xdcd5edce, 0x2335f39d, 0x9f5df718, 0xf6485180, 0xb54ea7a6, 0xe7abecee, - 0x88650d1c, 0x000077, 00000000 + 0x88650d1c, 0x000077 } }, { @@ -46626,19 +46625,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6a8e62f, 0xde8dacb7, 0x88c7647b, 0x77c70ecc, 0x65e1c72e, 0xb4879b27, 0x8e58669d, 0xac01af45, 0xe25b26c9, 0x13b8ff00, 0x2f11c5f5, 0x3f2d866d, 0xb0be786, 0x4427c66c, 0xd56e3a8d, - 0xbf3fdb39, 0x00018a, 00000000 + 0xbf3fdb39, 0x00018a }, { 0x7ea5ff39, 0x97f8ea2e, 0x94d65610, 0xd0ebc8fe, 0x3e27ab42, 0xb07f9523, 0x74cf2311, 0xeebd58b0, 0xad4ea2e3, 0x2139f398, 0xb0e11199, 0xe28d1988, 0x476c39ca, 0x45502dd7, 0x9adbdc37, - 0xe1a4e7f4, 0x0000c3, 00000000 + 0xe1a4e7f4, 0x0000c3 }, { 0xfc97e1c9, 0xa940f65f, 0xdc81cdb0, 0x424b05f6, 0xa898a42c, 0x45165873, 0xb4c454d, 0x1e0aac3e, 0x37a362fc, 0x4ecf3518, 0x1e050840, 0x6306197a, 0xb1f8747f, 0xb1adf1ab, 0xd44a821d, - 0x42de5409, 0x000006, 00000000 + 0x42de5409, 0x000006 } }, { @@ -46646,19 +46645,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2c64565d, 0xcab7ba21, 0xe80bdc9a, 0x5fe568b9, 0xc6a5d723, 0x22d2d139, 0xc3273ebe, 0xccbd8987, 0x8919ec39, 0x797ea57e, 0xe270a889, 0xb146013f, 0x4b93525a, 0x58ec901a, 0xf8e55344, - 0xe0e81d04, 0x000163, 00000000 + 0xe0e81d04, 0x000163 }, { 0xc2213372, 0xadf37b62, 0xd23d5c49, 0xd98e6755, 0x2d4daefb, 0xc98ff4d5, 0x714a4518, 0xe00720ff, 0xeed89817, 0xe1a67abc, 0xd842064d, 0x3838c384, 0xfd99074b, 0xb3712433, 0xd3c942c9, - 0xab8ac6ff, 0x00015c, 00000000 + 0xab8ac6ff, 0x00015c }, { 0x43fb1083, 0x84c5a45d, 0x40377167, 0xa62f8089, 0x6f721125, 0xb539225b, 0xfdd94ccf, 0x3c2068bc, 0x69534b9, 0x2f00da24, 0x52baa0b1, 0x6b6d2226, 0x104dd804, 0xd8a573c5, 0xba9cde91, - 0x272c3805, 0x0000af, 00000000 + 0x272c3805, 0x0000af } }, { @@ -46666,19 +46665,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa331ca9d, 0xd78fed6, 0x1dd1f7e2, 0x380785c, 0xe95e9b29, 0x8f8033b9, 0x64af0f98, 0x1f703d89, 0x952486a, 0xebde5d8b, 0xbf7717bb, 0x66ed7cfb, 0x4f8a7540, 0x36ba13a2, 0x4671b0a8, - 0x1305eb9a, 0x0001e0, 00000000 + 0x1305eb9a, 0x0001e0 }, { 0x1f098e67, 0xc665e947, 0xd1f973e2, 0x7c2ba003, 0x49272270, 0xbadb1809, 0xdb56e9a9, 0xa53a6e04, 0x88b9940a, 0x951a1348, 0x885dc316, 0xd30034b3, 0x66555147, 0x40221642, 0x4168cdea, - 0x669b16ba, 0x000179, 00000000 + 0x669b16ba, 0x000179 }, { 0x667c723d, 0xdce2b60d, 0x3170e656, 0xf14a9d80, 0x8ca14188, 0xdbe682f2, 0x1b5a1c21, 0xf73b7786, 0x8a956f63, 0x3474df9a, 0xe4145c42, 0x1ee5f0c6, 0xdf7b39d2, 0xef81d52c, 0xac475f5, - 0xd098b07d, 0x0000db, 00000000 + 0xd098b07d, 0x0000db } } }, @@ -46688,19 +46687,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49ccbfd9, 0xede97331, 0x4ca2daa2, 0xc2d0ac4f, 0x3aba3887, 0x1b39a411, 0x93ecb478, 0x286e0950, 0xae15727e, 0x884b3369, 0x3c3deeb5, 0x2ff13c66, 0xbc57187b, 0x71caa235, 0x99e076d5, - 0x9a796022, 0x00017c, 00000000 + 0x9a796022, 0x00017c }, { 0xdea5ebc7, 0xe2d20d9, 0x1a0ad0bf, 0x9fd33537, 0x10ab8824, 0x739f8572, 0xa5ce4848, 0x4ead38b4, 0xfac46bbd, 0x9306df1b, 0x4b15e74d, 0xed0f3bf1, 0x8e1b48f5, 0xe234963f, 0xfb9fa0b9, - 0xac2c3706, 0x0001f6, 00000000 + 0xac2c3706, 0x0001f6 }, { 0x270ac8ad, 0x869b3b6b, 0xe54f5742, 0xa26251d, 0x2f81aa35, 0x9b8340a5, 0x40b59eaa, 0x765b031d, 0x27c1b21a, 0xefa19f0, 0x6f3c5541, 0xb00f838a, 0x1e3c1f, 0x7f1aaf7b, 0x1923f1c8, - 0x7dadd5d3, 0x000142, 00000000 + 0x7dadd5d3, 0x000142 } }, { @@ -46708,19 +46707,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbdcef6a1, 0x536cc340, 0x4332ac25, 0x4f10260d, 0x3695a0f5, 0xbf7c3e4e, 0xbe7a7e08, 0x4160e05e, 0x2475ea19, 0xd3318f4f, 0x53a1c3c8, 0x7c55a058, 0xa7e05c33, 0x1d6ef746, 0x8e6a4937, - 0x7017ea45, 0x000165, 00000000 + 0x7017ea45, 0x000165 }, { 0xec265569, 0x2ab2da17, 0x10c63323, 0xef39a44d, 0xc20af816, 0xd33a8608, 0xc1654c4a, 0xc56d8837, 0xdc0c70d4, 0x9be9b718, 0xb0e3581c, 0x1fafe9a4, 0x28368a9b, 0x56a292d6, 0xda4404bc, - 0x7db47741, 0x00009f, 00000000 + 0x7db47741, 0x00009f }, { 0x28d41065, 0x9f16f0a7, 0x88ca1bbc, 0x77339db4, 0x4d8e0ca1, 0xe810d8d2, 0x260c6ef, 0x164032b0, 0x4f634ff7, 0x33068bb5, 0xc72393d0, 0x80e92d28, 0xa03dfaa0, 0x3399e983, 0x5b878a1, - 0x3dd2d3bd, 0x00008e, 00000000 + 0x3dd2d3bd, 0x00008e } }, { @@ -46728,19 +46727,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaf82a2be, 0xa6dae73b, 0x59a25b75, 0xffef2606, 0xa85b18af, 0xcdc47bda, 0xc6dee68f, 0x187f2903, 0x2f9aabae, 0x5fb6022f, 0x406dcb2f, 0xc94a66cd, 0xdfdcb7eb, 0x383de00a, 0x59df4efb, - 0x4b968dc3, 0x0000ca, 00000000 + 0x4b968dc3, 0x0000ca }, { 0xee4d1f23, 0x240ae77d, 0xf2ab32e9, 0xc3279c0a, 0x46e22ecb, 0x43a01ba8, 0xb48cdf0d, 0x4b6a4119, 0x5d50a41b, 0x4fff094b, 0xaf90f7f6, 0x846b3364, 0xff69c9c0, 0x6e7237b9, 0xec959bfb, - 0x7c7207b7, 0x00006e, 00000000 + 0x7c7207b7, 0x00006e }, { 0xa8402da1, 0xfe81a9e6, 0x65816967, 0xdb86b6d2, 0xf40a2fd6, 0x405204c6, 0x3e078be8, 0x21f55ad6, 0x575c0af2, 0x138edf1a, 0xba9618c4, 0x71a33808, 0x67493597, 0xa4b351bc, 0x2bf0ef7c, - 0xc09ed41b, 0x0000ea, 00000000 + 0xc09ed41b, 0x0000ea } }, { @@ -46748,19 +46747,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x297be4f6, 0x5c43a017, 0xf9bef172, 0x2da773ad, 0x55d28d4a, 0xa88fb790, 0x42530b39, 0x5ca24167, 0xfefec077, 0x9cf3e988, 0xa4b6416d, 0x82dde1a8, 0x78b7eb19, 0xe8de28d5, 0x6fcd45a5, - 0x23c68359, 0x000032, 00000000 + 0x23c68359, 0x000032 }, { 0xd70d2ba5, 0x6a41fd59, 0xf828e462, 0x6a5f4b48, 0x3fb8cd2b, 0x30b435d2, 0x10c0c432, 0x6fce462a, 0xe107ead9, 0x214e2958, 0x521b16e3, 0xd914143d, 0xab061b64, 0x7e7fc32, 0x5698b6f4, - 0x2735d451, 0x0000ee, 00000000 + 0x2735d451, 0x0000ee }, { 0x4b12c1b0, 0xe13e540, 0x2184a770, 0x2932749d, 0x57dd078a, 0xef389e93, 0xa68d232b, 0xf4f84fba, 0x705c318e, 0xec4353dd, 0xb72daa81, 0xded18043, 0x6b35d991, 0x61578bf3, 0x15c6ad5, - 0x8cf61035, 0x000195, 00000000 + 0x8cf61035, 0x000195 } }, { @@ -46768,19 +46767,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x18408786, 0x888afff6, 0xbc5ff8e1, 0xe8701733, 0x48340dd3, 0xfaf45e01, 0x44c82f3, 0x631b7baf, 0xb4ea33bc, 0x30b17f9e, 0xf427dc, 0xa14246f3, 0x500ae37f, 0x42d1e9b6, 0xc08a376a, - 0xbbb05001, 0x000180, 00000000 + 0xbbb05001, 0x000180 }, { 0xe505f571, 0x97d742b7, 0xf052fb68, 0xd2ead888, 0x14fd3887, 0xe657a04b, 0x46b52b30, 0x4f7bc085, 0xbc4e9f8e, 0x843841a3, 0x2a291144, 0xb667ac9c, 0xb010f41b, 0xa4156c84, 0x93e29b72, - 0xba22f828, 0x0001f6, 00000000 + 0xba22f828, 0x0001f6 }, { 0x86791177, 0xadbbf110, 0x53353962, 0x5263de87, 0x42327905, 0x96f29202, 0xbf9d8a70, 0x882c1029, 0x88429f27, 0xd49615c, 0x31710d0d, 0x28e93a08, 0xffae7e42, 0xf24a576f, 0xf06819f2, - 0x52dce164, 0x000179, 00000000 + 0x52dce164, 0x000179 } }, { @@ -46788,19 +46787,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x83347ee9, 0xf565db8a, 0x52e375f9, 0xaec2bdad, 0x5de83203, 0x1adcae68, 0xcce64fed, 0xd893554b, 0xc33e2232, 0xe8f7658d, 0xec4543dd, 0x8ccc7f2f, 0xad8cfb3a, 0x686557fb, 0xb0fcc8fc, - 0xa3f16465, 0x000100, 00000000 + 0xa3f16465, 0x000100 }, { 0x31c4e14c, 0x7d6433c8, 0x1e0c900, 0x9df3903b, 0x4be4ee00, 0x12c8ee91, 0x6a7c4c04, 0x6c58749a, 0xac82615d, 0x923bb471, 0x7fa9d436, 0x16185465, 0xe88fe616, 0xfde097e8, 0x85bc2cda, - 0x7498f016, 0x000026, 00000000 + 0x7498f016, 0x000026 }, { 0x931adb41, 0xce6fcd6, 0xf2130e63, 0xfe39556d, 0xceb25938, 0xef768cec, 0xfb6539a5, 0xbd48708a, 0x1a53be2d, 0x5985a010, 0xb4c2bce6, 0x52c52779, 0xcd44ce79, 0x7a9e6111, 0x8fa924dd, - 0x86e5274e, 0x00018a, 00000000 + 0x86e5274e, 0x00018a } }, { @@ -46808,19 +46807,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6607a9f9, 0x112d5ae6, 0x7831137c, 0x31b572da, 0x65689fe0, 0x782eb35b, 0x6045af6f, 0x1981ef00, 0xd58cde1b, 0x6ac91b2a, 0xf35c05cb, 0x9f94f6c6, 0xd362f48a, 0x67cfabf5, 0x606c0f07, - 0x3bdcba3, 0x0000b0, 00000000 + 0x3bdcba3, 0x0000b0 }, { 0x96870afa, 0x601b7aeb, 0x49559b51, 0x87dab5ec, 0xa342c23c, 0x7bb43b24, 0xa5540cf, 0x17f7f2f7, 0xe1c7cbc6, 0xaaca463e, 0x139af1cf, 0x275bc12, 0x344afe4e, 0x504d7458, 0xc349f8fc, - 0x22d2c029, 0x0000ab, 00000000 + 0x22d2c029, 0x0000ab }, { 0x30212655, 0x59acafd4, 0x2ab5ec96, 0xb67f534d, 0x58189189, 0x99ce782b, 0xc8bd4c97, 0xaa268e76, 0x54d11cda, 0x97d7680f, 0xddbf0bf8, 0x6edc920d, 0x7f1362f7, 0x8ea8bab, 0x9745d71c, - 0x640ab1dd, 0x000017, 00000000 + 0x640ab1dd, 0x000017 } }, { @@ -46828,19 +46827,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcdef1feb, 0xdb474d94, 0x4e2176aa, 0xe7626fbb, 0xebb50d5c, 0x7cd2e1ed, 0x453a122b, 0xf847e92c, 0x24f5eb85, 0x38cf8367, 0xb686d758, 0x661d158c, 0xe7618237, 0xf2371243, 0xd21b927f, - 0xba97e76c, 0x00003b, 00000000 + 0xba97e76c, 0x00003b }, { 0x687e4c32, 0x97424b56, 0x3ddb5d8f, 0xc2071a24, 0xd060274b, 0xcf0e2a52, 0x5ecf1007, 0x9c684f98, 0x82932043, 0x2ce16825, 0xe4ee8502, 0xacbcaff0, 0x96c35b5b, 0x95de82ca, 0x61746144, - 0x5f71cac8, 0x0001b9, 00000000 + 0x5f71cac8, 0x0001b9 }, { 0x2fd84ea6, 0x2588113a, 0x7e2878d6, 0x4665136d, 0xf207043e, 0x623d1388, 0x2af72ff1, 0x8726c9b1, 0xae05646c, 0xc33c0176, 0xce7ecb31, 0x7444ca83, 0x345d174d, 0x1177643d, 0xbdb03247, - 0xeb357a78, 0x000108, 00000000 + 0xeb357a78, 0x000108 } }, { @@ -46848,19 +46847,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x351067a8, 0xeecb7691, 0xd5b8af4f, 0xdd3f2ba4, 0x68b2fa3d, 0x58b834b4, 0x21c10237, 0x66c9e10c, 0x84199d0b, 0x2816fb3, 0x1d28b6ee, 0x3f093ada, 0x7e2c7ce2, 0x87d67082, 0x94d1dddf, - 0xe24f581e, 0x00019e, 00000000 + 0xe24f581e, 0x00019e }, { 0x549347ab, 0xcd103c53, 0xa9a32bbe, 0x2459ff26, 0x8fdd915f, 0x8ea6f73d, 0x1421edff, 0xf26bbba5, 0xcbd64374, 0xb4ba29a, 0xcfaae782, 0x6cce54e9, 0xee4ed287, 0xf2d5b475, 0x5edced0e, - 0x82b832bb, 0x00006b, 00000000 + 0x82b832bb, 0x00006b }, { 0xaec0fe7d, 0x3d0c7de2, 0xdf9a39c5, 0x5f9f441a, 0x69d29779, 0x674543e, 0xfc44f41e, 0xff6bd7bd, 0x475107c3, 0x5c44d2a4, 0xb111451b, 0xd3690e1d, 0x2c8f82e3, 0x4c26d1dd, 0xc99bb18a, - 0xc178bd86, 0x000076, 00000000 + 0xc178bd86, 0x000076 } }, { @@ -46868,19 +46867,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x27d84310, 0xaabcb0a1, 0xae476cc6, 0xa56c0ae6, 0x775aa2af, 0x9171a646, 0x99765edc, 0x9bb0fa18, 0x2ede246c, 0x353e57aa, 0x1f87479a, 0xeb425854, 0xc0bceced, 0x521f4508, 0x337e351f, - 0x92d2235c, 0x000109, 00000000 + 0x92d2235c, 0x000109 }, { 0x8f5bae99, 0x2f8225ed, 0xe3f371d, 0x387f7f4a, 0x849c4c10, 0xc663e0bd, 0x9454b87, 0xf458f7e9, 0xed96f71, 0x5f249d73, 0x8f1df22e, 0xaff83791, 0xb8989314, 0x14bc00a9, 0xf5f1fa8a, - 0x82cfbbaa, 0x0001ad, 00000000 + 0x82cfbbaa, 0x0001ad }, { 0xfa2de136, 0xf231780a, 0x5c3efa39, 0x7daedb8b, 0xa23a1f93, 0x8e827d42, 0x8c1a8932, 0xf52d3c69, 0xbc267ee0, 0xff1fb771, 0x5349adcd, 0xfe08c4ff, 0x2ae5f960, 0x9c0f9201, 0x343d7b76, - 0x856ca46f, 0x000167, 00000000 + 0x856ca46f, 0x000167 } }, { @@ -46888,19 +46887,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc6ad6d1e, 0x892627e6, 0xf6158d80, 0x84eaf641, 0xcf44b2f1, 0x23238552, 0x9a604c7, 0xbfbd54d3, 0xd57ff9f9, 0x21d12901, 0xdada37b8, 0xd9bad966, 0xc81ec668, 0x823e8572, 0xbebe6f97, - 0x400825e6, 0x00004a, 00000000 + 0x400825e6, 0x00004a }, { 0x33557c1, 0x3c593432, 0xe4c7e1bb, 0xc048fefd, 0x95c68d44, 0xd22e2e1f, 0x2d44ce7d, 0xed95d42c, 0xed8f61e5, 0xc1f6e3e9, 0x8c9ff37a, 0x7ed22f6e, 0xf2040202, 0x65536513, 0x455ea53d, - 0x554f1f4c, 0x0001d8, 00000000 + 0x554f1f4c, 0x0001d8 }, { 0x23f99ee4, 0x906b07c7, 0xe5b986d6, 0xb7616fa4, 0xf7dba99, 0xc3a47f16, 0xea440a7d, 0x5e747e0f, 0xfcba7460, 0xed48d23c, 0x2dae1029, 0x4862d2d0, 0x5ba8345, 0x476cb7bf, 0xfaf3d649, - 0xd099162f, 0x0001ac, 00000000 + 0xd099162f, 0x0001ac } }, { @@ -46908,19 +46907,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb4543668, 0x9e49dacd, 0x808893c1, 0x41e97f6f, 0x80f88b02, 0xdb84db1f, 0x6e76864d, 0xc00859a2, 0xcc61a09a, 0x69fb3eb6, 0x6403de9, 0x2cb3c684, 0x419b4f09, 0xe053f0d5, 0x32827c1e, - 0x92016e26, 0x0000f1, 00000000 + 0x92016e26, 0x0000f1 }, { 0x624f48e4, 0xc1d6d2f9, 0xb5799f35, 0x62a5a830, 0x1514afc5, 0x27290cc2, 0x435a5779, 0x25601296, 0x87dcaed4, 0x7fe77d14, 0xae05a2f5, 0x3a107890, 0x87392487, 0x2e0d5e8f, 0xbac02059, - 0x4302d09, 0x000065, 00000000 + 0x4302d09, 0x000065 }, { 0xf6c6c050, 0x551097c8, 0x5c2447fd, 0x5d144f05, 0xbecfee1a, 0x69f8f6a8, 0x1f021d39, 0xdc640036, 0x309cdf70, 0x4dc039d2, 0xe45299b8, 0xf24f1fd6, 0xe6255da0, 0x9b804646, 0x1c301353, - 0x9336072c, 0x0000f6, 00000000 + 0x9336072c, 0x0000f6 } }, { @@ -46928,19 +46927,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x950bdef1, 0xe3ed6db7, 0xb0015a27, 0xd285ce4f, 0xc1e7e792, 0x5919de4a, 0x33cbb09e, 0x261845fa, 0xe52a66a2, 0x82443993, 0xf0d77f80, 0xe0fd0400, 0x43a2e160, 0x3858b40, 0x90671be9, - 0x1404ce6d, 0x00018d, 00000000 + 0x1404ce6d, 0x00018d }, { 0xb5974221, 0xab8ec9d, 0x81dcd584, 0x2c217947, 0x1e36f52d, 0x7ff35cad, 0xdcf082ee, 0xd019e4fa, 0xaa4899dc, 0x7852baa8, 0xf75c87aa, 0xe7dddc77, 0x626e6765, 0xfef6908, 0x1bae96d6, - 0x9956c4b1, 0x0001d6, 00000000 + 0x9956c4b1, 0x0001d6 }, { 0xf1a4f449, 0xc8239581, 0x15326af2, 0x87b033ec, 0xafbed3cb, 0x3071656a, 0xb2464cd6, 0x49749573, 0x4bef152e, 0x74b937c6, 0x1e696e4d, 0x2b6a9afe, 0xbece4262, 0xb96b4db4, 0xf8d2e83b, - 0xdc61a3cc, 0x00001b, 00000000 + 0xdc61a3cc, 0x00001b } }, { @@ -46948,19 +46947,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3062458e, 0xbb77f658, 0x882ed8a1, 0x991552f8, 0xc84fb215, 0x664b63f, 0x37a66913, 0xa502b32d, 0xaa6f8bbf, 0x873eba66, 0xa65cadf0, 0xd9f93158, 0x42d22788, 0x106318ab, 0x76229755, - 0x653a1949, 0x00010a, 00000000 + 0x653a1949, 0x00010a }, { 0x1773f1f8, 0xf5866195, 0x4715218e, 0xfd718c2d, 0xf3a14304, 0x957aecee, 0xfe9a0c44, 0xb25b8eb4, 0x5d8d1142, 0x29072b10, 0x69660f3c, 0xad19005c, 0xbac2af1c, 0xee1d6df7, 0x27e5ceac, - 0x57efbb10, 0x0000d4, 00000000 + 0x57efbb10, 0x0000d4 }, { 0x7ad8b7fb, 0x3b805988, 0x190a29e9, 0xf7b0759, 0x9b954420, 0x2cf86ca9, 0x7887d864, 0x79a2e7fc, 0x6d7d777, 0xbfff79dc, 0x2fb55ef3, 0xec65fb7d, 0x5d8d31bc, 0x108166c4, 0x8d734ac3, - 0xcaef636a, 0x00012d, 00000000 + 0xcaef636a, 0x00012d } }, { @@ -46968,19 +46967,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe25df3d5, 0x616c4673, 0x7a29d6a, 0xfba1ca9c, 0x1a995c9, 0xec85bb45, 0x23554cf3, 0x20010b29, 0xb7bb9340, 0x120d0995, 0xe4153076, 0xa8020b59, 0x2464a463, 0x374d4d1c, 0x7b97b8bb, - 0x8962bfdf, 0x000096, 00000000 + 0x8962bfdf, 0x000096 }, { 0xa571744f, 0x7fa769d, 0xa596523d, 0x914fdefe, 0x6e03f677, 0x2e97c930, 0x321fe548, 0x7f7f5611, 0x8bf85420, 0xd0da452c, 0x269394a2, 0xbe2e9cc8, 0x85f912c3, 0x90ad68f8, 0x6732ce3, - 0x8fe16c3e, 0x0000fa, 00000000 + 0x8fe16c3e, 0x0000fa }, { 0xee58a42b, 0xe6c93ca1, 0xae565d86, 0x3146b0cd, 0x93c377d9, 0xeb2c6c1, 0xf193b742, 0x96465c4e, 0x92343e5d, 0xab196a13, 0xa3e51d2c, 0x20d7edc7, 0x38a2095a, 0x1ad0bcb3, 0x3a7466e5, - 0xc0cd8c49, 0x0001e0, 00000000 + 0xc0cd8c49, 0x0001e0 } } }, @@ -46990,19 +46989,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9184ed6e, 0x397a1ab5, 0x96478a5, 0xc1e02b40, 0xc6ecb896, 0x401eb5c3, 0x61445eea, 0xff2b623d, 0xa7283121, 0x2a195174, 0x8976530a, 0x194caf25, 0x5c443ddc, 0x4623b2d, 0x49711806, - 0xd79c50a7, 0x0000eb, 00000000 + 0xd79c50a7, 0x0000eb }, { 0x98dc7d63, 0xf0f70c31, 0xff215e0a, 0x2594c353, 0xe18613fe, 0x2bcd3f36, 0x9532070a, 0xa97a1a41, 0x974c4155, 0x7c941117, 0x3f748f58, 0xd4ffcbdc, 0x244a8cfa, 0x26a01a, 0x3c240a5d, - 0xa0282124, 0x000088, 00000000 + 0xa0282124, 0x000088 }, { 0x6c3e165c, 0xdecad327, 0x1291f9d4, 0xdb88f43, 0x9b0e3b8, 0xbc032769, 0x5764484c, 0x92cc635b, 0x89cbc6b5, 0x12a876b0, 0x5a22ed98, 0x94dfbe21, 0x9ff1e683, 0x79965f79, 0x92c10a7a, - 0x684ea68d, 0x000134, 00000000 + 0x684ea68d, 0x000134 } }, { @@ -47010,19 +47009,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa745cde1, 0x2c73f1db, 0xce676245, 0x80250442, 0x99366bdf, 0xde9619c1, 0xc4f1c524, 0xd9a1756, 0x5e6f446f, 0x3bc1f1fc, 0xaff732ce, 0xbc860381, 0x891e89d8, 0xfb62618b, 0xc5682dd1, - 0x1349ae24, 0x000111, 00000000 + 0x1349ae24, 0x000111 }, { 0xbea2c3ce, 0xc91bc315, 0x284ead44, 0x84bbb0db, 0x204e89d0, 0x14e530ba, 0xb3fd02c8, 0xa62b93c6, 0xd13082e5, 0xff51b802, 0x1360c240, 0x68bf21e2, 0xb2ae8430, 0x6d39b504, 0x44336630, - 0xb2201e51, 0x0001c8, 00000000 + 0xb2201e51, 0x0001c8 }, { 0xc5fdbe00, 0xa8a13d9, 0x4a7b29cb, 0xcdb4059f, 0x1cee233, 0xf07376e, 0xf6f4d8d8, 0x7f43fb3d, 0xba47668, 0xecc1b6cf, 0x4d6cf11e, 0xb64c15b3, 0x7f77c92d, 0x60df0d89, 0x34679416, - 0xa8ff4a51, 0x0000d8, 00000000 + 0xa8ff4a51, 0x0000d8 } }, { @@ -47030,19 +47029,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x674880cc, 0x77e94be8, 0xd8cad52b, 0x8711ff5a, 0xcab2140b, 0x9725d069, 0xf3bf7b30, 0x446d2297, 0x5b15a722, 0x43a6b95b, 0x17fea317, 0x97042d4a, 0x21b35c36, 0x26bd7fc2, 0xaebb0abd, - 0xb1753cce, 0x000097, 00000000 + 0xb1753cce, 0x000097 }, { 0xeb836e65, 0xb94431a3, 0xd5fb3a07, 0x30bf0141, 0xaf97115f, 0x1965400b, 0x7bff3e42, 0xce6e3d4a, 0x8be67fef, 0x8477c19b, 0xbace081d, 0x685c338c, 0x2174d596, 0xe99a9770, 0xf7389343, - 0xb10865cb, 0x000025, 00000000 + 0xb10865cb, 0x000025 }, { 0x5e2d0578, 0x847e4bbb, 0xfb75077e, 0xcc344532, 0x7d6d78d1, 0x80688e64, 0xf686cde3, 0x33769bcd, 0xdffc0e10, 0xb824efe1, 0x2124fc04, 0x562188d9, 0x431c7964, 0xad71be1f, 0xd1d2f216, - 0x974acd71, 0x000002, 00000000 + 0x974acd71, 0x000002 } }, { @@ -47050,19 +47049,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x53f0dae8, 0x137e0f16, 0xc4ea3dce, 0xcb2f34c3, 0x56f7810a, 0x312a0e01, 0xb1a6ee7, 0x4e6f0888, 0x6cb0d358, 0x1e22a851, 0xa1b40def, 0x7f749b2b, 0xc8fc8e7, 0x18fb9dad, 0xb2dd663b, - 0x6cae12a0, 0x0001a1, 00000000 + 0x6cae12a0, 0x0001a1 }, { 0x4c31213, 0x25b8f85f, 0x4df4c094, 0x925c6100, 0xa4e49b18, 0x4815695e, 0x40725c4b, 0x23332f93, 0x37fc6bfb, 0x846d2b15, 0x59f503a8, 0xa6cbeeac, 0x244957c7, 0x57358831, 0x1ad9268d, - 0xbbf58bc0, 0x000181, 00000000 + 0xbbf58bc0, 0x000181 }, { 0x550d6821, 0xe919586b, 0x9e4a83f3, 0xb7766a66, 0x880c69b9, 0x8c0376ad, 0xf34810ec, 0x963de661, 0x9edbebc7, 0xba67fd3c, 0x6dcabef4, 0xb45750b1, 0x83e261a2, 0x82ce7c44, 0x75d2f866, - 0xc5ecc287, 0x000064, 00000000 + 0xc5ecc287, 0x000064 } }, { @@ -47070,19 +47069,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc46092cd, 0x90c084db, 0xb0a25752, 0x3911ddcd, 0x50b8c730, 0x316dec47, 0x77f6fffb, 0x58fe90e7, 0x63da6ab7, 0x7937b868, 0x4fd39e89, 0xa252e922, 0xbb2c04b8, 0xb626fe9f, 0xca0ae9b8, - 0x16b4eea7, 0x00004c, 00000000 + 0x16b4eea7, 0x00004c }, { 0xfedcb02c, 0x5e76f7ac, 0xc087da73, 0x147d1d1f, 0x718a24c3, 0x4d3b7a4e, 0x9229e080, 0xac8ae112, 0x5969669f, 0x9ee16a61, 0xc80776a3, 0x51ae9514, 0x491ccb41, 0x51e35e0f, 0xcf09f129, - 0x7dd609b5, 0x000075, 00000000 + 0x7dd609b5, 0x000075 }, { 0xa89da6e9, 0x27305395, 0xaa353c07, 0x5e83d5e3, 0x20928efb, 0x2b63a79e, 0x1ec5ab80, 0x50fa7a80, 0x35e3107e, 0x30ece292, 0x368dc8d, 0x4b8604a8, 0x581e09b7, 0x2246defa, 0x714de79b, - 0x19f21868, 0x0001be, 00000000 + 0x19f21868, 0x0001be } }, { @@ -47090,19 +47089,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x516fbf71, 0xdc612bb8, 0xf8559d46, 0x9fbf3853, 0x6464d746, 0x92778f4, 0xd217eee5, 0x6c450bc6, 0x8bec3f78, 0xab09127f, 0x9c5c63fb, 0xc15b3a4e, 0x5221b2b7, 0xa5d75a83, 0x68e0f69d, - 0x68ed23bb, 0x0001ea, 00000000 + 0x68ed23bb, 0x0001ea }, { 0xbbaa6bd4, 0x7aa17ffe, 0x540ce776, 0x76f2842d, 0x4a0cb59f, 0xf48e0592, 0x1fc933f3, 0xcb9286ae, 0x78246cc3, 0xb8765472, 0x554040ec, 0x195eba31, 0x1ed3c51a, 0x2d0b9563, 0x1d6e6a9, - 0x72dc511b, 0x000176, 00000000 + 0x72dc511b, 0x000176 }, { 0xb2040d26, 0x96e7ccc3, 0xcdbf6880, 0xff4e2379, 0xd45950a2, 0x2f9e8a02, 0x20b304b0, 0xd48675b5, 0x4920d0dd, 0x7caaa26f, 0xf337b888, 0x226a351a, 0xd8e42d06, 0x4a58fddb, 0x3a6bf5a3, - 0x4538592d, 0x0001d4, 00000000 + 0x4538592d, 0x0001d4 } }, { @@ -47110,19 +47109,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x906eb1a2, 0xbe0bd5c5, 0xe705aa6, 0x48ddc615, 0x6d890d50, 0xe888b736, 0x97cdfc7e, 0x75a17de, 0x970dde7, 0x8442d8e7, 0xb9e21d77, 0xa07953e7, 0xb673c33b, 0x77988754, 0xec50bf20, - 0x354f5e47, 0x0000f9, 00000000 + 0x354f5e47, 0x0000f9 }, { 0xb8b01042, 0x3cde697b, 0x4a08597e, 0x9690254f, 0x3c84c70c, 0x709e6931, 0xc55a3aa0, 0x6b67b8c5, 0xea81e8e, 0xa57c4c4b, 0xb30d4134, 0x5ab7b0d9, 0x2587d817, 0x7d5cce84, 0x26b066fe, - 0x26289373, 0x00010f, 00000000 + 0x26289373, 0x00010f }, { 0x3447189f, 0x448c0add, 0x3ebe5ee6, 0x150020cf, 0xece45122, 0xa9b5d22c, 0xed52adbc, 0x62c17661, 0xe2b4ec65, 0x37c9c873, 0x385a7b20, 0x53b28843, 0xd96b4e6, 0x26ad5cb8, 0x69ccdc46, - 0x550cc275, 0x00000f, 00000000 + 0x550cc275, 0x00000f } }, { @@ -47130,19 +47129,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1560dd55, 0x47446039, 0xdd747c1, 0x9b3bdac2, 0x51a6bc69, 0xb6725ede, 0x7b52938a, 0x366509f5, 0x6b67fbaf, 0x32156364, 0x3531257d, 0x34403285, 0x267b21e6, 0x99fb717, 0x581985f9, - 0x505e94a2, 0x0001a6, 00000000 + 0x505e94a2, 0x0001a6 }, { 0x3144647, 0xb559cbb6, 0x447c5fda, 0x9b1f6bfa, 0xf7681eb4, 0x6b63ed4c, 0x602253e9, 0x1f374bdf, 0xb2dc686d, 0xc79b449b, 0x2d82be7, 0x697d0582, 0x12596868, 0x82d0a511, 0xe2852e98, - 0x63f5a27, 0x0001be, 00000000 + 0x63f5a27, 0x0001be }, { 0xee82bcf4, 0x182a0b66, 0x73e2071a, 0x690d1002, 0xd00ddf5d, 0x59975794, 0xcdd2c819, 0xf2547d8c, 0x582dd893, 0x45184f03, 0x899e2558, 0x4ac83564, 0xc846a600, 0xecc52d97, 0x3870bdde, - 0xd62c34b8, 0x00007a, 00000000 + 0xd62c34b8, 0x00007a } }, { @@ -47150,19 +47149,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xede11c3a, 0x6aecf17b, 0xfcb78098, 0x3db0ba62, 0x598fc9d5, 0xaab058d0, 0xbb228214, 0x232a2dcc, 0x2d6e41a2, 0x4d52ee49, 0xd3d17c8b, 0x51732fab, 0x2cc83e7, 0xeaa6b1f5, 0xbce07109, - 0xf9993439, 0x00017e, 00000000 + 0xf9993439, 0x00017e }, { 0x200baacb, 0x4b76150b, 0xac2ea645, 0xb381a6d, 0x357aeb36, 0xc8b38bdd, 0x89e8b4bc, 0xbbc90d66, 0x1d34660f, 0xad5efd0d, 0xd7b7486d, 0x5ee4d752, 0x9888c90d, 0x7ded0b87, 0xda9602f6, - 0x2fe2ebd0, 0x0001eb, 00000000 + 0x2fe2ebd0, 0x0001eb }, { 0x402ba611, 0x6a03b803, 0x76556f1c, 0xac8ff146, 0x1fcf90f1, 0x4876513c, 0xb99d185b, 0xf5409eb1, 0xc6f37f12, 0xe9c1ec91, 0x6891fd8e, 0xd02b29f0, 0x769abe3a, 0xf9e4d12d, 0xd9206899, - 0x237bf239, 0x00009b, 00000000 + 0x237bf239, 0x00009b } }, { @@ -47170,19 +47169,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x64dea983, 0xc02ccc6c, 0xa366dd42, 0x4673363d, 0x776ac60f, 0x414355f3, 0x62e2c815, 0xf99863b9, 0xedfec1ae, 0x1a49fe96, 0x6c005898, 0xccbbada0, 0x56bd3523, 0x1c1d028f, 0x331d1064, - 0x462c7be3, 0x00012c, 00000000 + 0x462c7be3, 0x00012c }, { 0x7de5baee, 0xa0fa486a, 0x3ba4c5ef, 0xb184fe7c, 0x38a50d1b, 0x51dbcec2, 0x1857d9dd, 0xce3e376b, 0x9331c513, 0xa2b14857, 0xd3aab8dc, 0x36561d86, 0x52f09b5, 0x28d815bc, 0x719b1231, - 0x7967b372, 0x000099, 00000000 + 0x7967b372, 0x000099 }, { 0x722c1c58, 0xc8a056e3, 0x4082a71d, 0x560ce52a, 0xa5efd079, 0xacb86f1d, 0x47fa6ee9, 0xff14af0f, 0x364bfdf5, 0xf80aa20, 0x9ad34001, 0x31a2c9f, 0xbd0b2140, 0x3882550c, 0xd26c6a7b, - 0x9f3a296a, 0x0001c4, 00000000 + 0x9f3a296a, 0x0001c4 } }, { @@ -47190,19 +47189,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x64666620, 0x2228d56, 0x8618fa92, 0x147c68f, 0x765a3add, 0x87503b03, 0x2599f729, 0xc732f841, 0x4ad77f9f, 0x60525a93, 0x58bf21cd, 0x5cbad3f0, 0x64b0d224, 0xe3a12577, 0xf78d327e, - 0x5d0bf25b, 0x000186, 00000000 + 0x5d0bf25b, 0x000186 }, { 0xe978a3b6, 0x3f62c14f, 0x8802cf30, 0x5ad5aafc, 0x55b5d5e6, 0x342a30a6, 0x34eaa00c, 0xe46479cb, 0xdbc4d751, 0x8d52255b, 0x8a33d700, 0x199ec03e, 0x8e50ea05, 0x22304ca7, 0x65c38b47, - 0x20374ee8, 0x000160, 00000000 + 0x20374ee8, 0x000160 }, { 0xae41f41a, 0xc0bd0ab3, 0x41cdec1d, 0xaf2049c6, 0x951e5772, 0xcfbc84e2, 0x30cf248, 0x27d8e20e, 0xf93bac57, 0x299e2c25, 0xc56fd760, 0x6c3a536a, 0xc02f31b7, 0xda62bab6, 0x7c3adff9, - 0x24328204, 0x00011e, 00000000 + 0x24328204, 0x00011e } }, { @@ -47210,19 +47209,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x90c1b359, 0xc19a1e9c, 0x2641b8e8, 0xc498c782, 0xacb4c63d, 0xe6120ae2, 0x45b7914f, 0x819ff6bc, 0x65124d74, 0x2df5c2ce, 0xd02413b5, 0x533c0093, 0xad8010ba, 0x73927897, 0x4413b967, - 0x4b0e0164, 0x00011a, 00000000 + 0x4b0e0164, 0x00011a }, { 0x4a35cad7, 0x76ceb933, 0x4d2e55a, 0x3fac5ad4, 0x7ba637ef, 0x2e07e341, 0x4b525631, 0xb8f90de, 0xacd5ff7b, 0xb0f0efea, 0xeccd6931, 0x8cf34c1, 0xa3bb9101, 0x421c9888, 0xecb88e4, - 0xcb1067a2, 0x000199, 00000000 + 0xcb1067a2, 0x000199 }, { 0xa0bc74f7, 0x6551e3b6, 0xd9cc6d2e, 0x4d555612, 0xe53224da, 0x32b429e, 0xd8ddbb42, 0x1178cfba, 0xbf9f63a6, 0xbb376a3a, 0x15f7a63b, 0x78eb0cf9, 0xcccca590, 0x81c57144, 0x5ceb1367, - 0x1fe16003, 0x000069, 00000000 + 0x1fe16003, 0x000069 } }, { @@ -47230,19 +47229,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb6e981e5, 0x1afd0d47, 0x1c768a99, 0x1fbf9315, 0x2399d769, 0x4a5aeb8b, 0xa7009948, 0xe0c6e6f9, 0xdca5c356, 0x1a92bc02, 0xd3e0fa9b, 0x111f080b, 0xb8e28191, 0x750efc04, 0xcd7a953a, - 0x58f4dfdf, 0x000060, 00000000 + 0x58f4dfdf, 0x000060 }, { 0x2d5384fb, 0x767917fa, 0x5658715f, 0x21352753, 0xc27541f4, 0x9da542e1, 0xe12aa948, 0xec40acc8, 0x1dbcfe65, 0xfdd493bb, 0xf5d8e9b6, 0xb05a13b6, 0xfdade287, 0x3a272b7, 0x87be1d10, - 0xebdcda4f, 0x000094, 00000000 + 0xebdcda4f, 0x000094 }, { 0x7bc476b1, 0x6741b59d, 0x627b145b, 0x9b0f0c0b, 0xdc39eb67, 0xc9d4690f, 0x5c7faefb, 0x405e4880, 0x696044cf, 0xbf1cc218, 0x62811af6, 0x704bfeeb, 0x7d6120f2, 0x5b4525fa, 0xe21c9e4f, - 0xda2dd250, 0x0000a6, 00000000 + 0xda2dd250, 0x0000a6 } }, { @@ -47250,19 +47249,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc6478924, 0x5636b0f0, 0x59dc2ca7, 0x6f7a1f2a, 0xc8c4e4bd, 0xbc8332a8, 0x24bf92b8, 0xd74d62c8, 0xd9c6f09, 0x80883116, 0x905b202e, 0xc3845443, 0x1daa036d, 0xfde39ca2, 0x9ffc9788, - 0xf9f80b1c, 0x000128, 00000000 + 0xf9f80b1c, 0x000128 }, { 0x6fed56b2, 0x65638455, 0x49c9a83, 0x48e871b6, 0x6570650a, 0x99b2af2a, 0x9eb33d49, 0xede28f1d, 0x4c2d77c, 0xe1be3fbc, 0x577d65c7, 0xc7fe4696, 0xad6bc41e, 0x5b182706, 0x4ca7f39e, - 0x37a68369, 0x0001a8, 00000000 + 0x37a68369, 0x0001a8 }, { 0x3bd45896, 0x8b507e9a, 0xac296b67, 0xfaa8b5ce, 0x1f0c8460, 0xe4b6b4a5, 0x707b1d0a, 0x46fd318e, 0x2a783dd1, 0xa83cd3cd, 0xb4035fa, 0x1eb7eb9a, 0x45e7135e, 0x801451cd, 0x1b8d1297, - 0x2784ac98, 0x0000dc, 00000000 + 0x2784ac98, 0x0000dc } }, { @@ -47270,19 +47269,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xad5ccf6, 0x2190ef5a, 0xe5f57d3a, 0xbc3cea74, 0x7977d5be, 0xafa8c0dc, 0x72f533b1, 0x9183acb9, 0x102967f0, 0xb634160a, 0x30841978, 0x4cbfc912, 0x61e5721a, 0x46681054, 0x53ab0a6c, - 0x60283508, 0x000082, 00000000 + 0x60283508, 0x000082 }, { 0x1d3de3a8, 0xb8be8ad3, 0xd225c516, 0x1c3b92bc, 0xc01ea41f, 0xe49862b2, 0xe84f28bc, 0xd3d0a442, 0xcfcd9a2e, 0x15e8b558, 0x29b6f9f3, 0x7f440231, 0x3009cafe, 0xc17d398f, 0x51532dd6, - 0x316c7a81, 0x0001a8, 00000000 + 0x316c7a81, 0x0001a8 }, { 0x7f63e311, 0xc98fb61a, 0xfd9a6246, 0xba8d1c44, 0x6a54ff23, 0x9c6272cc, 0x3f88b37b, 0x3ab41ab5, 0x6036ea, 0x99c448cb, 0x1656f58e, 0x4509d280, 0x7f8b8746, 0xfc7a0b74, 0x87b7e9b5, - 0x32c65ee8, 0x000160, 00000000 + 0x32c65ee8, 0x000160 } } }, @@ -47292,19 +47291,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x447fbcd7, 0x79903cef, 0xd21a10d1, 0xfdb4960b, 0xfaff6e12, 0xac8b653f, 0xa94793d0, 0xec50d8e4, 0x8c3997cf, 0xb6a95429, 0x69c6a537, 0xf4a502c7, 0x78199e33, 0x24695e85, 0x24082657, - 0x21bf7990, 0x0000b4, 00000000 + 0x21bf7990, 0x0000b4 }, { 0xd061578d, 0x3ac8b5cc, 0x41fbb1ee, 0xc40ccc97, 0x2b3ec2a7, 0x48a9154e, 0x64adbaa1, 0x56df1930, 0xcc1d6a9f, 0x8d48d62e, 0xa4201da5, 0x6b94c49e, 0x8c49d80c, 0x76bc70de, 0x2779c91f, - 0x9cbb9cb1, 0x0000e6, 00000000 + 0x9cbb9cb1, 0x0000e6 }, { 0xf3f53175, 0x58eda504, 0xe4da8ce1, 0x25a313d7, 0xca5cd0e1, 0x72e3aa17, 0x5ad20e6a, 0x6d219933, 0x879165b2, 0x2ae34e0, 0xdffe4f9d, 0xd57c54ae, 0x306277b9, 0xf286487d, 0xea299a55, - 0x82d44bc5, 0x000096, 00000000 + 0x82d44bc5, 0x000096 } }, { @@ -47312,19 +47311,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x28443f36, 0x6b5ea740, 0x960debe1, 0x73a56b37, 0xb37f86e0, 0xa0ed8aa9, 0x5aad39f4, 0xfc9d4240, 0x591f6829, 0x21dbd44e, 0x39ae0408, 0x95b7d912, 0x8e015916, 0x188c6ead, 0x2652b4bf, - 0x8da24792, 0x0000e9, 00000000 + 0x8da24792, 0x0000e9 }, { 0xdfcda69e, 0x5eb72a79, 0x52ee8ec4, 0x1fcc8fab, 0x3a3275d0, 0xeec2d54f, 0x4c8d8d70, 0x2459ca6, 0x4ca2a4b0, 0xec74bb93, 0x7298fa60, 0xbabe223e, 0x5d6c8e82, 0x3f7147aa, 0xe1d2e88d, - 0x27df547b, 0x000152, 00000000 + 0x27df547b, 0x000152 }, { 0xcfeb635a, 0xae79d9db, 0xef2cb5b, 0x9f4ea6a3, 0xd3609eb6, 0x3fd0efd2, 0x63603043, 0x37c92798, 0xae550578, 0x8071d2ed, 0xc76922e0, 0x70b1c04, 0xed383a56, 0x692ac0c3, 0x3f6d7a1d, - 0xda927219, 0x000115, 00000000 + 0xda927219, 0x000115 } }, { @@ -47332,19 +47331,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6df1c018, 0x9542efa3, 0xd275c49f, 0x1787c5b3, 0xc3695c4b, 0xfe0f8714, 0xec4cd4c8, 0xce2ff586, 0xe4f68d1c, 0xa41f9b80, 0x748f98c, 0xa685ba17, 0x7abbc517, 0x4a33664a, 0x76681adf, - 0xaf53ab14, 0x000085, 00000000 + 0xaf53ab14, 0x000085 }, { 0x68f1687a, 0xd478c56d, 0xf3552281, 0xf822e6f4, 0x888f3404, 0xefe067e7, 0x75f28965, 0x67bf0752, 0x5201b7ba, 0xc3d39de0, 0x57d9f052, 0x59eabda2, 0xa48cd856, 0xa101153c, 0x589ceb1f, - 0xc5a9f0dd, 0x000143, 00000000 + 0xc5a9f0dd, 0x000143 }, { 0x362d0cc4, 0xb862f06d, 0xd80ff9a4, 0x73b363b6, 0x30d8b995, 0xe8c3e515, 0xeda321f5, 0x4ee6c1de, 0xb8947ea9, 0x77bb4830, 0xabdd8997, 0xe34e6502, 0x4975346d, 0xc34d3676, 0xc976be01, - 0xd75f80ef, 0x00004a, 00000000 + 0xd75f80ef, 0x00004a } }, { @@ -47352,19 +47351,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x553d64d2, 0xfdb78835, 0x3fe4f472, 0xe7fdf513, 0xefb18665, 0xea6290f0, 0x33a5e718, 0x3d934d32, 0x9aa2eb8f, 0x35bb661b, 0xbe65bcc3, 0x967b2520, 0xe89d11e9, 0xfbb94ed5, 0xa505c9d6, - 0xd0c5c6d0, 0x0000e5, 00000000 + 0xd0c5c6d0, 0x0000e5 }, { 0xe0dd2b84, 0x8e270159, 0x5bdfd739, 0x5c7e7c0, 0xabbf098f, 0xf337d8d, 0x4b9e3dd9, 0xf13a6433, 0x6b7acf74, 0xef19f8e2, 0xcadd20cb, 0x7d9b4e65, 0x97a6c295, 0x19cf5067, 0x69178adc, - 0x8ea115b2, 0x0001a9, 00000000 + 0x8ea115b2, 0x0001a9 }, { 0x2d3511aa, 0xa10f4565, 0x2b888921, 0xd320bf1f, 0x38175f20, 0x4f10c920, 0x74897ad1, 0x9a991a34, 0x578f9863, 0x72a7a77, 0x8b0f999, 0x67638657, 0x448217b1, 0x363e3fa1, 0x16faa8f, - 0x853ca036, 0x000065, 00000000 + 0x853ca036, 0x000065 } }, { @@ -47372,19 +47371,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa15f977, 0xe00fcade, 0xb79f26d2, 0xed5edee3, 0x4c7c2aa8, 0x7576a32e, 0xf21b720d, 0xbfbe5ada, 0x23d44d10, 0x5e4f6c19, 0xcd0cfd44, 0xa54e283a, 0x6b5ca5c7, 0x235f91dc, 0x9bb3bdb3, - 0xcd111c5f, 0x000156, 00000000 + 0xcd111c5f, 0x000156 }, { 0x297e8e30, 0x8912ce34, 0x8601c374, 0x4c74a55f, 0xc54251de, 0x5ac1d3d2, 0xa984af95, 0x54b1fd52, 0x37a2b64, 0x077c40, 0x4a5d79d6, 0xd887a468, 0x45469455, 0x83e3e45a, 0x13ff654e, - 0xfd5ea24d, 0x000180, 00000000 + 0xfd5ea24d, 0x000180 }, { 0xe9ebeccb, 0xbbccd8d, 0x9d6505c9, 0xd489237c, 0x510cac90, 0xefa16ed6, 0x9882989a, 0x80500077, 0xe12a7247, 0x3bca7af2, 0x1e63482c, 0x90b3ac6e, 0xd5db6543, 0xc9656ebe, 0x40572e5e, - 0xb4576b7e, 0x000129, 00000000 + 0xb4576b7e, 0x000129 } }, { @@ -47392,19 +47391,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x377211c6, 0xf9c99b5, 0x14299bfe, 0x39f90820, 0xd03b47f7, 0xa07c8aab, 0x900ac0fc, 0xbab1662, 0x9ca8b77e, 0xfa3fe5e1, 0x8f3e6bfc, 0x46f207c0, 0x70f602b5, 0x1b14c9d7, 0xbe001c25, - 0x4b4bd720, 0x0001a9, 00000000 + 0x4b4bd720, 0x0001a9 }, { 0x2d9cff88, 0x84479b6c, 0xf6606c2e, 0x32ff107, 0x8b1326f1, 0xe3b07205, 0x6ea8b29e, 0x21a76a44, 0x514b36f5, 0x706a8bdf, 0x3abcc279, 0x792bb0cd, 0xfc43cee8, 0x7b14a856, 0xd877fa00, - 0x9bb34409, 0x00008d, 00000000 + 0x9bb34409, 0x00008d }, { 0x306f1fd5, 0xb19c7a09, 0x71e4bcf6, 0xf0294260, 0x74c26c07, 0x1d165b35, 0x4ac23383, 0xe3239589, 0x3c753468, 0xab0ed1aa, 0x27a9d4f9, 0xe2fe7325, 0x122eaffb, 0x89f13b3a, 0x3d05cba2, - 0x2f2e874c, 0x00014a, 00000000 + 0x2f2e874c, 0x00014a } }, { @@ -47412,19 +47411,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9b2d012, 0xf1a009d4, 0x7d4c693b, 0x23f05d11, 0x657662b2, 0x8e1f619a, 0x2957ad52, 0x1e75e294, 0xaa5ded74, 0x9740a7ac, 0x50526cb9, 0x51d9ea37, 0xca4d9793, 0x87c6f4bd, 0xf10d4366, - 0x94cc188b, 0x0000bd, 00000000 + 0x94cc188b, 0x0000bd }, { 0x68e057cf, 0xed53852b, 0x189c539d, 0x7c0999e3, 0xfb57bd0, 0xd47f519d, 0xf4dbbe9, 0x58a952b9, 0x4fc245f7, 0xcac863db, 0xbb7e2a44, 0xfd56ef99, 0xe8747996, 0xdf9beb1f, 0x9347b121, - 0xc27cecee, 0x0000d9, 00000000 + 0xc27cecee, 0x0000d9 }, { 0x17c38518, 0x5417a9f5, 0x5f35e281, 0xb27d814d, 0x4ced44b4, 0x70d19dea, 0xd35953f, 0xbf8b1c2b, 0x3e2a28f6, 0x4a50e65, 0x1fdc5001, 0xc5df2914, 0x6f250c05, 0xa0ce31e8, 0x1e90f852, - 0xe590d82c, 0x000181, 00000000 + 0xe590d82c, 0x000181 } }, { @@ -47432,19 +47431,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaa1a277c, 0x407f4d6b, 0xe2ae21d0, 0xdb252460, 0x78d959ac, 0x96c05af5, 0x37572c67, 0x157592bb, 0x16f8873f, 0x94c69edf, 0x237ec73a, 0x966c5340, 0x6f289267, 0x223075b4, 0x47c2fc2b, - 0xe92d367c, 0x000166, 00000000 + 0xe92d367c, 0x000166 }, { 0x29fe60b8, 0x9ec6df00, 0xae2e82aa, 0xbc96f870, 0x185fd133, 0x17e9c9e4, 0xa8df2b91, 0x31b46d33, 0x9ec20b58, 0x5b95c97e, 0x56fbbf43, 0x5ea6c8ae, 0x2fcbea3b, 0xffe0e71d, 0x10ec966d, - 0xe9a25200, 0x0000dd, 00000000 + 0xe9a25200, 0x0000dd }, { 0xcf92661b, 0xa0b75c2, 0x903d3f9f, 0xb8bcc9ed, 0xb2dd5935, 0xc75ebab2, 0xfb2d58c0, 0x645970e1, 0x427f14ff, 0xaad8ba01, 0xaaed9e1d, 0xc18bb792, 0xe02a191b, 0x1fbf57f2, 0x6fd4b975, - 0x1565b546, 0x000110, 00000000 + 0x1565b546, 0x000110 } }, { @@ -47452,19 +47451,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8bfaede5, 0x8c61c96e, 0x22f46588, 0x12c80e93, 0xc45f33c0, 0x4a19eeeb, 0x9f2c5344, 0x200ff154, 0x6b23e8a5, 0x51d8da5b, 0x88e17050, 0x38987751, 0x179defee, 0x1b27733e, 0x16673f56, - 0x29fe87f1, 0x000076, 00000000 + 0x29fe87f1, 0x000076 }, { 0x4f7f1c13, 0xbd44ad47, 0xe3ee16f2, 0xee757607, 0x62ca3b7a, 0x609e227c, 0xc716ec63, 0x65d3bccf, 0xc06a0a24, 0x5fe40b42, 0x7e9e8941, 0x41e126d5, 0xb2074e5a, 0xf52a0b55, 0x144a9a9b, - 0x5134e2ab, 0x00006d, 00000000 + 0x5134e2ab, 0x00006d }, { 0xf5b8ccaf, 0xa1d700e8, 0x6d96fdb7, 0xa0bbdcc2, 0xf85e585c, 0x23262857, 0x4d2273d5, 0x2b4c4447, 0x68c328d9, 0x9978236f, 0x8d48f565, 0xace4319c, 0xc027935c, 0x6b08c1d6, 0xda0a13ca, - 0x871080d4, 0x00009c, 00000000 + 0x871080d4, 0x00009c } }, { @@ -47472,19 +47471,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6a3edc0, 0x86311db2, 0xd1d08ea1, 0xde5897da, 0x4371a112, 0xf69c337e, 0xd44bf1de, 0x6e34dbf8, 0xe0a2a04f, 0xda1a9808, 0xee13ab5d, 0xacd021cf, 0x1a868c24, 0x14dc9736, 0x83f94bff, - 0x620098ce, 0x000142, 00000000 + 0x620098ce, 0x000142 }, { 0x4c2ea243, 0x54c1ac6, 0x104a7bc3, 0x388caf2b, 0x76eddc58, 0x7b1f6948, 0x404f9e3, 0x8401e7aa, 0x3ad84aee, 0xf079d7a, 0xa0068a4a, 0x1bb4f66e, 0xc24b0c8f, 0x10ac9f4c, 0xa1aa02f5, - 0x1177aefc, 0x000165, 00000000 + 0x1177aefc, 0x000165 }, { 0x57d230e1, 0xd8fac938, 0x896b7255, 0x8f8942e9, 0xcf85140d, 0x9618ae80, 0x2b36d55b, 0xa314095, 0xe8968de0, 0xb6efdc45, 0x53f0073b, 0x3b4ac65, 0xf31a0b4f, 0xdb6570fe, 0xa2dee063, - 0xb24fe829, 0x000027, 00000000 + 0xb24fe829, 0x000027 } }, { @@ -47492,19 +47491,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6af6eb1f, 0x2bdd7413, 0x3cbf25b4, 0xb950c270, 0x839789cc, 0xf91407d6, 0x3b16fd0d, 0xfe314c9a, 0x3bb99ed2, 0xebece8b0, 0xff538843, 0x4799b7f5, 0x769fe6e4, 0xf02b3097, 0x155769bb, - 0x78cfa1e5, 0x000022, 00000000 + 0x78cfa1e5, 0x000022 }, { 0xfff4895b, 0xe0a3631e, 0x328a5a73, 0xe8b38dcd, 0x4f2a32fd, 0x96dfe157, 0x92801b7e, 0xe819a8ff, 0x19ec4731, 0x54a58690, 0x7a55cee8, 0x8f8602e4, 0xae67a6cf, 0x300566f5, 0x4d68b86e, - 0x956faa57, 0x00007f, 00000000 + 0x956faa57, 0x00007f }, { 0xe3965f5f, 0x7ce0d3e, 0x225c940f, 0xb22cbff7, 0x375c5b62, 0x34bf824, 0x8ec9a378, 0x581a3be9, 0xbf3fcb80, 0x34862f00, 0xb91f11e6, 0x2a867322, 0xf19f7a18, 0x4facc5ee, 0xdef0d2e9, - 0xab7b5c94, 0x0000a6, 00000000 + 0xab7b5c94, 0x0000a6 } }, { @@ -47512,19 +47511,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb973cc8, 0xfaced817, 0x99eb0b01, 0xe8f4e01f, 0x659c8439, 0x64890c87, 0xd272e060, 0x9eacc556, 0x14bc62f1, 0xb9bf4921, 0x7cfd3616, 0x9f9f9a7f, 0x47abca90, 0x44ada1b7, 0x6e54297c, - 0xb4f268, 0x0001b2, 00000000 + 0xb4f268, 0x0001b2 }, { 0xf83b6cbf, 0x1f47f19b, 0xd6b9e9b4, 0x402b30ff, 0x648b2046, 0x4f385db1, 0xb4e08d37, 0x96ed5b38, 0xd67f472a, 0x743ac5fe, 0x4f5a1f1d, 0x6a5c0327, 0x12480a50, 0x7454b13b, 0x442dc63d, - 0xcdbf098, 0x000080, 00000000 + 0xcdbf098, 0x000080 }, { 0x6a904549, 0x31229a95, 0x9f95d2fd, 0xd50b37db, 0x3c68d80b, 0xa460064b, 0xf0c8c651, 0xca861751, 0xfd7a106a, 0x443df8db, 0x1bbf061e, 0x4d8b51fe, 0x9ffa6a7a, 0xee9727a2, 0x348c26ae, - 0xff18858b, 0x00015e, 00000000 + 0xff18858b, 0x00015e } }, { @@ -47532,19 +47531,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf6e3912, 0x827b1507, 0x6318fac1, 0x4c70f516, 0x5560102b, 0x7215d4a5, 0x156e7771, 0xb5a8b8f6, 0x9b00e9d3, 0xddc0549b, 0x5b3e71b6, 0x1457066f, 0x12d90328, 0x96cb9915, 0x6c268c09, - 0xf3d57dc4, 0x0001cd, 00000000 + 0xf3d57dc4, 0x0001cd }, { 0x159017cf, 0x1453beb5, 0x1e30dd0b, 0xaa84e5e7, 0x9522d66b, 0x5d298539, 0x2fbf7f38, 0x4314966f, 0xc03536fb, 0x2c978e2, 0x338db3a9, 0x36fa5ddf, 0x5c908f17, 0x1a29ad73, 0x47876199, - 0x12a98abe, 0x0001a8, 00000000 + 0x12a98abe, 0x0001a8 }, { 0x1c7ebc8, 0x5c154015, 0xbf95efa5, 0x239fc82, 0x636964fb, 0x38373b59, 0xbc9e45b2, 0x17f9d642, 0xf111fec9, 0x89ac2a6a, 0x58869477, 0xb53f0ef0, 0x3dd58a21, 0x3187bbc4, 0x8ea403d8, - 0xa2b2f203, 0x00001f, 00000000 + 0xa2b2f203, 0x00001f } }, { @@ -47552,19 +47551,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x102b6fd5, 0xce3408da, 0x825c0764, 0xb153a8fc, 0xc0c4fb7e, 0xe5b374ed, 0x3b8a74f4, 0x19c87626, 0xa64305c2, 0x2b75a858, 0xe9cc86d, 0x55b863, 0xd701505, 0xa6cfc3da, 0x9859f790, 0x80872611, - 0x00007c, 00000000 + 0x00007c }, { 0x641b0e81, 0xe19e048d, 0x7350c10b, 0x7f2a0f2c, 0xca3d32b3, 0x1e92ff8a, 0xf0999dc2, 0xc863b4aa, 0xafd642d6, 0x42aabb7c, 0x40b58a9e, 0x4ca0ec92, 0x3b9deecb, 0x9ccb8198, 0x691b74a0, - 0xadf31903, 0x0001ac, 00000000 + 0xadf31903, 0x0001ac }, { 0xc59b429d, 0x756d97c0, 0xe5128f8a, 0xfbfc3ad5, 0x32086ee2, 0x1d276299, 0x458025d4, 0x2f857162, 0x50dce39c, 0x541c9992, 0x5382b03b, 0x62513d6f, 0x7a18666e, 0x641498d0, 0xe53e7352, - 0x7b21461f, 0x000053, 00000000 + 0x7b21461f, 0x000053 } }, { @@ -47572,19 +47571,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xad57c6d6, 0x787e3ae5, 0x313c41b8, 0x5f433abb, 0x8b7d1ef7, 0x427d9c53, 0x4e8ae10a, 0x7031d18d, 0x24f97038, 0x67ba6b2f, 0xddc97d3b, 0x419a97da, 0xa0ce2079, 0xea8e506, 0x1f62c8e2, - 0xd1e9f0cb, 0x00005a, 00000000 + 0xd1e9f0cb, 0x00005a }, { 0x4127d0bf, 0xd2728273, 0xee6c5ab7, 0x3de2f725, 0xc737fd06, 0xf28616c, 0x8a80fb95, 0xdf838c0c, 0xb0f0de22, 0x28a7d3e0, 0x42253687, 0x7b93672a, 0x3923d21b, 0xc221ec6e, 0xa9e1f3b8, - 0x7a71857a, 0x000072, 00000000 + 0x7a71857a, 0x000072 }, { 0x20d54f81, 0x3e9dea5d, 0x751b3352, 0x195abbb2, 0x830d3e19, 0x7d5c703, 0x2662e0c8, 0xbb2b6df1, 0xda7ff68e, 0x2e536e2c, 0x8049de4f, 0xb5545500, 0x3701f6b7, 0x26e47f2, 0xd70ce2e7, - 0x1a532395, 0x0001f2, 00000000 + 0x1a532395, 0x0001f2 } } }, @@ -47594,19 +47593,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x985fed0b, 0xe67e4965, 0xbc87ef78, 0xaec39094, 0xe1f40b30, 0xf851369b, 0xc2dcc09, 0x73d98e96, 0x84c70486, 0x14381cc7, 0x9d76af7a, 0x52b3058, 0x67887b1e, 0xfd87eb9e, 0x698b3db1, - 0xe1c3a020, 0x000040, 00000000 + 0xe1c3a020, 0x000040 }, { 0x7f3f7774, 0x4438e226, 0xdf523e73, 0xf5c62740, 0x398830ef, 0xb6ab1d8b, 0xb2dab3d4, 0xae7a130a, 0x1bcadcf, 0x43723dbd, 0x4dbc6e59, 0x7cd1703e, 0xb345c893, 0xabe509e, 0x3d768fc6, - 0xd53d97dd, 0x0000b0, 00000000 + 0xd53d97dd, 0x0000b0 }, { 0xa0919c45, 0xa5b02ec8, 0x8343b7d5, 0x86908897, 0x2f00d583, 0x2e7144bd, 0xcb6af9f5, 0x4ca71cc1, 0xf5849e62, 0x35310486, 0xbd34b906, 0x8e218332, 0x73427d7b, 0x626677b3, 0x986935c8, - 0xc7f8bb10, 0x000093, 00000000 + 0xc7f8bb10, 0x000093 } }, { @@ -47614,19 +47613,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9903db8a, 0x7aea6499, 0x678e23d6, 0x76bf1509, 0x24041162, 0x4f5e1b0b, 0xf36b3ced, 0xd698bda2, 0xf364321b, 0x3eab85b0, 0x10a5a9f7, 0x6941f0c4, 0x73cad58f, 0x6e49a149, 0x98f003c7, - 0x6b5bc08e, 0x000164, 00000000 + 0x6b5bc08e, 0x000164 }, { 0x9d39d75d, 0x3c3f43f7, 0xf61075c0, 0xe7cd59c2, 0x81be926b, 0x796b9c78, 0x7a28ad3e, 0x2cad0b0f, 0x2d1829e1, 0x8b2e6d84, 0x49e72158, 0xc0dc3da3, 0x660ab6cd, 0x5d0545a8, 0x286eb3ad, - 0x298d93d, 0x000180, 00000000 + 0x298d93d, 0x000180 }, { 0xf901d708, 0x796f0e95, 0x27f7a647, 0x372f484a, 0xb8ea9232, 0x97acb290, 0x7275d5dc, 0x11d8a899, 0xa794ce2e, 0xcbb4ebce, 0x8b73f5ab, 0x10fe7af3, 0x9850e958, 0x598e8ae, 0xa68cd91e, - 0x6c1ef789, 0x0001bd, 00000000 + 0x6c1ef789, 0x0001bd } }, { @@ -47634,19 +47633,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x70882ab5, 0xfa273dae, 0xc472da4d, 0x1124534d, 0x4d4c9f37, 0x285c4d7a, 0xf7ed814f, 0x12ff74b9, 0x2f2f3ce6, 0x1d60eabd, 0x800ae63, 0x18e53e72, 0x4de608c0, 0x176acb68, 0x1a225d76, - 0xc850a039, 0x0001e3, 00000000 + 0xc850a039, 0x0001e3 }, { 0xdac74d4d, 0xdee95c3, 0x917057d0, 0x29abd883, 0x5233a89f, 0xeeaf215b, 0x14e1654, 0x5645a173, 0x1f60c4ab, 0x7ea088b0, 0x14ec3762, 0xeecba184, 0x54d1b97c, 0xca3e82bc, 0xbb738f2a, - 0x1520b193, 0x000032, 00000000 + 0x1520b193, 0x000032 }, { 0x7afbb467, 0x1734d90, 0x30defa7, 0x4bfdf049, 0x29b5aae2, 0x8c1c0f93, 0xb239989d, 0x1ee9c8db, 0x575023c7, 0x594a4f7, 0x337e93b2, 0x12cada5a, 0xa54f6543, 0xc487c1f1, 0xeacb918, - 0xb991e489, 0x000090, 00000000 + 0xb991e489, 0x000090 } }, { @@ -47654,19 +47653,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8c034786, 0xc14ebbf4, 0x14730b01, 0x4339a57e, 0xbbcfa827, 0x69cb6e62, 0xe5a4554c, 0xe9ee7d73, 0xeaa9d06b, 0x566c5034, 0xa1f436cd, 0x6a398c55, 0x5a92885a, 0x862bfbb6, 0xc6463521, - 0x7cda93f4, 0x00007f, 00000000 + 0x7cda93f4, 0x00007f }, { 0x687b552a, 0x4bd50cd3, 0xd36433aa, 0xa6bf74a3, 0x242bb1f8, 0xcdf00ff, 0x48aaf6fb, 0x7ab1c1a4, 0x59a6a2e5, 0xc1255e8e, 0x9783a1d1, 0x30ee9d1d, 0x7e2d8632, 0xe9f119f1, 0xac3e46e9, - 0x39873c0d, 0x000067, 00000000 + 0x39873c0d, 0x000067 }, { 0xbd8966ae, 0xc4173334, 0x3bb2c4d1, 0x2670eed8, 0x26b7d7ce, 0xf18a0009, 0xe5d8e6ed, 0x48d2e69b, 0x2147e69, 0xd6215a96, 0x381cdf90, 0x3e5e7b45, 0xacb45b6, 0xe6172184, 0x51e9d13a, - 0xce471fa, 0x000111, 00000000 + 0xce471fa, 0x000111 } }, { @@ -47674,19 +47673,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd0eed475, 0x5b5c6500, 0x90bab2ea, 0xca8f810b, 0x29c8549f, 0x7d77601, 0xc25768d0, 0x4cba6762, 0xc7067dbd, 0x5ba84f80, 0x67b272e, 0xb01e0d3c, 0x700cfafa, 0x2af83804, 0x723f77a8, - 0x12b93805, 0x0000a2, 00000000 + 0x12b93805, 0x0000a2 }, { 0x974d98c4, 0xc81af024, 0x1b2e6dbc, 0xe404731a, 0xd3ff71a8, 0x31ea0df9, 0x627b2f0c, 0x7a32ae8d, 0xd48a6c8a, 0xdb1e29c1, 0x8c12683b, 0x831d25b7, 0xd07a5615, 0xbef09e1b, 0x6c9c44de, - 0xb2a1432e, 0x000043, 00000000 + 0xb2a1432e, 0x000043 }, { 0x69028687, 0xa63dd3e1, 0x7e8cada7, 0x15e38067, 0x526b157d, 0xc7742b32, 0x999cbcb2, 0x1bd90d90, 0xaba515c1, 0x8ae2a253, 0xd106974f, 0x729d071d, 0x568be635, 0xbeb4b33b, 0xd37256f6, - 0x3d9bda70, 0x0001a9, 00000000 + 0x3d9bda70, 0x0001a9 } }, { @@ -47694,19 +47693,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaf9ed13a, 0xa5e31474, 0x3226f851, 0x6ad0bad1, 0x19bf0237, 0x7209c8b2, 0x83ea1bc, 0x5862e93c, 0x443eed1e, 0x78a07a88, 0x65c98526, 0x7f8c2c7, 0x39c0480d, 0xb95001, 0x6a7731e8, - 0x6579e8de, 0x00004d, 00000000 + 0x6579e8de, 0x00004d }, { 0xc61a945b, 0x713ccd20, 0x70efcddc, 0xac28ec4b, 0x378e193, 0xa9688de, 0x5db7e98e, 0x5a1657a4, 0xda78f5a6, 0x1f229d73, 0xc7763736, 0xa6e45b4b, 0x53e883ca, 0xe9a3e307, 0x87f04233, - 0xfa5c4dab, 0x0001c9, 00000000 + 0xfa5c4dab, 0x0001c9 }, { 0xcb13314d, 0x6987622a, 0x25e3d850, 0x28f237af, 0xee0a4bcf, 0x9158430a, 0xec79e41, 0xd3364a0f, 0xb102f1d8, 0x5ee2f18, 0x366c4a7c, 0xb520cd3b, 0x93def2d7, 0x89853322, 0x5c472fb4, - 0xe120ece2, 0x000188, 00000000 + 0xe120ece2, 0x000188 } }, { @@ -47714,19 +47713,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa20f083f, 0x1dde0d8f, 0xd8c0edc, 0x73a7b240, 0xfed68701, 0x801c049b, 0x879d085a, 0x293b9e40, 0x3dfe1f16, 0x95259ecb, 0x55712fd6, 0xf2487e2d, 0x746b5ff7, 0xe76dcca3, 0x4b2a5c32, - 0x5b7b20e9, 0x000174, 00000000 + 0x5b7b20e9, 0x000174 }, { 0xbe4248c1, 0xf690613e, 0xb3dd64f9, 0x89e34534, 0xec68696f, 0x99bada5c, 0x96bd5b03, 0x23db3f1a, 0xe2f36078, 0xe9500f27, 0xbf1f0165, 0x46f75847, 0x6164703f, 0x9445ef68, 0x17beab3e, - 0x2cac6f34, 0x000071, 00000000 + 0x2cac6f34, 0x000071 }, { 0xee66af8b, 0x73fa3917, 0xf14b2617, 0x1e61fc98, 0xe831ae63, 0x682140bf, 0x1458f8c8, 0x5f28d5c7, 0x52ef0348, 0xc61a119, 0xb620d0d5, 0xbd147d8a, 0x78b65a54, 0xb55a27bf, 0x35f2a316, - 0x118e149b, 0x0001b7, 00000000 + 0x118e149b, 0x0001b7 } }, { @@ -47734,19 +47733,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6ae5420d, 0x32ca1a6c, 0x41a8a106, 0x90a6992, 0x4f7a3c7, 0x57e40523, 0xa14ba48a, 0xe3d50223, 0xf188f9fb, 0xc5aeb4f4, 0xc0f7d479, 0x245970ee, 0x414624a5, 0x98b097d3, 0xc7eeb92, - 0xd8341fe9, 0x000095, 00000000 + 0xd8341fe9, 0x000095 }, { 0xc8e7d19c, 0x6662ef99, 0xc0dd34fb, 0xd4a7c268, 0x63b2eb09, 0x85e68ac2, 0x7735c842, 0xb13f745a, 0x70852530, 0x4fd0c115, 0xe08d77ba, 0xd827257b, 0xea00428e, 0xc650d228, 0x813f866b, - 0x16004fd3, 0x00014d, 00000000 + 0x16004fd3, 0x00014d }, { 0x8c053d79, 0xf7c2cf3c, 0xb7c42cfd, 0xfd464726, 0x38106485, 0xef4ca37, 0xd3693e1d, 0x7768b3cd, 0x6ae1ab70, 0x69e302fd, 0xb5664559, 0x9554d960, 0x1a99913c, 0x84230054, 0x1d05a5ab, - 0x647dfa78, 0x0000f9, 00000000 + 0x647dfa78, 0x0000f9 } }, { @@ -47754,19 +47753,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xba7fcdd5, 0x2d80162, 0x66f7a4de, 0xe11e83a8, 0x4a8ef2e0, 0x424ea12, 0x57b15790, 0x373bab68, 0x7269db2e, 0x82bb5c0d, 0xd4ed979e, 0x25396634, 0x8f768059, 0x3b79121a, 0x8ab9c254, - 0xa8d85ca6, 0x000009, 00000000 + 0xa8d85ca6, 0x000009 }, { 0x5a3e26d5, 0x1d1e3e5d, 0x66d52cbe, 0x9c6a33bd, 0xb1cb2593, 0x1ad18ccb, 0xccefcd81, 0x3b2db818, 0x4a657168, 0x86dbed83, 0xb6c9a0c3, 0x12aa0f8b, 0x3e9aca36, 0x709e94b8, 0x85b78e29, - 0x453f8fe, 0x0000e1, 00000000 + 0x453f8fe, 0x0000e1 }, { 0x77ed941c, 0xcec80a5d, 0x477bf47f, 0x4ff44036, 0xb320c55c, 0xa397fb2f, 0x6bcb76f3, 0x52c84c26, 0xeef681d8, 0xbeb19ff1, 0xfff08447, 0xe199eac0, 0x7646fc75, 0x4c6087a6, 0x5ef29482, - 0xe3181f2d, 0x0000d5, 00000000 + 0xe3181f2d, 0x0000d5 } }, { @@ -47774,19 +47773,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf1fd7cb2, 0xe93fef40, 0x23ba946b, 0xd003293d, 0xab6c31f0, 0x8b713a49, 0xfbc11199, 0x2b71feba, 0x100317ee, 0x850bc56e, 0xbc9852af, 0x4a9177ee, 0xd7c991aa, 0x97c38801, 0xf65f3a02, - 0xfd65631c, 0x0000f3, 00000000 + 0xfd65631c, 0x0000f3 }, { 0x59b501b2, 0x63d86f88, 0xa1124d11, 0x7d96ad20, 0x1b2e0e96, 0xb9e009ad, 0xe627edfa, 0x2843603b, 0xbacbe423, 0xb030359a, 0xfdaeea36, 0x49ab2179, 0x35978e9a, 0xd2f77999, 0x360df045, - 0x12caaeef, 0x00003c, 00000000 + 0x12caaeef, 0x00003c }, { 0xff7ac08a, 0x45155aea, 0xba0db96d, 0xa00eaec6, 0xc7abdf45, 0x1d06e500, 0x33e805f1, 0xd81c44de, 0xa44f6696, 0x39d0213b, 0x41b80f21, 0x773152bc, 0x3df7674b, 0x57f5747, 0xd4158cb0, - 0x7c85d166, 0x000086, 00000000 + 0x7c85d166, 0x000086 } }, { @@ -47794,19 +47793,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4523c1e, 0x33757a0b, 0xce65d6e9, 0xf8a6ba05, 0xf9bb9c6d, 0x56a2e252, 0x63756766, 0xa0d600ae, 0x3f3dd508, 0x7671db17, 0xda7dafaa, 0xc2b53490, 0x919c6948, 0xfc86152e, 0xf145a93b, - 0xea17ac65, 0x00003c, 00000000 + 0xea17ac65, 0x00003c }, { 0x6b2f0030, 0x6b8ef99, 0x96c49f5b, 0x32f180ad, 0xbbcd4933, 0xcabda74, 0xec6e129, 0x300ca77c, 0x6265ae39, 0xe6c9848d, 0x7079da7b, 0x5dc23dd4, 0x3b061010, 0x115e904c, 0x8795afa2, - 0xc2225923, 0x000079, 00000000 + 0xc2225923, 0x000079 }, { 0x84a9acda, 0xdbfa7d88, 0xc0af83f9, 0x6bddeaf1, 0xfe73fbdc, 0x56b217da, 0xff08abc, 0xb5653360, 0xbff2aaa8, 0x36800e11, 0x138c375c, 0x40be5312, 0xea1dba1a, 0xaf463e3e, 0x15c5c0f7, - 0x77d7ddb0, 0x0001fd, 00000000 + 0x77d7ddb0, 0x0001fd } }, { @@ -47814,19 +47813,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfcc71ee3, 0x1daaa825, 0x1d59e212, 0x18989ecc, 0xd7676ab8, 0xd3070ca4, 0xccb77e79, 0x2afd3cb1, 0xd6d711bd, 0x1602870f, 0xd712ec43, 0xb9d30d82, 0x1008ef8a, 0xe5a13d4, 0xd4431721, - 0x5767ec5b, 0x00011b, 00000000 + 0x5767ec5b, 0x00011b }, { 0x3daa18fc, 0x5bbcbea3, 0x59e6c1f4, 0x2b268a21, 0xf1de3232, 0x59e39108, 0x7d7daca0, 0xb785fc54, 0x18357295, 0x1aec5d7f, 0x1ccf67e8, 0xeb821144, 0xccf07bea, 0x1f3e02e3, 0x4eb87d62, - 0x42467934, 0x0001b5, 00000000 + 0x42467934, 0x0001b5 }, { 0xb77418d4, 0x2ccf7bc, 0x149549ba, 0x68e5bfe3, 0xcbb36472, 0xad798837, 0x10230cc7, 0x94fedaeb, 0xf1ba2c1, 0x3207a7d7, 0xf1e91a84, 0x14e31e3f, 0xad49d0ea, 0xbd52713f, 0x7f75da99, - 0x841b3e71, 0x000125, 00000000 + 0x841b3e71, 0x000125 } }, { @@ -47834,19 +47833,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf01ff72b, 0x51888d77, 0x8b2347cd, 0x43ee3f5e, 0xb7b47264, 0xefd72da1, 0x2a526bdb, 0x2aeb204b, 0xf0d251aa, 0x55d239b1, 0x380f6269, 0xcf478bc6, 0xc7ebab44, 0x89317d3c, 0x9518941f, - 0x65e8757b, 0x00019c, 00000000 + 0x65e8757b, 0x00019c }, { 0xfe86f400, 0x16c8f7ba, 0xf77153c0, 0xa9100464, 0x385d8c3b, 0xd1e3af48, 0x61c9dc3b, 0xbfc2ca85, 0x7270c0a9, 0xfb56ff1b, 0x316a8d6c, 0xec17da31, 0xfe54e840, 0xbdddda0c, 0x34352054, - 0x83de0a94, 0x00007b, 00000000 + 0x83de0a94, 0x00007b }, { 0x785727f9, 0xfddfeb58, 0x26ffff82, 0x93f89ccf, 0x4f90c8dd, 0xe0b2e0c3, 0xde93aee6, 0x48071477, 0x31d43817, 0xe20a3e09, 0x680bef4c, 0x9c1a1c5d, 0x9fd31e57, 0xce1296aa, 0x4edd1dc, - 0x37f834ed, 0x000195, 00000000 + 0x37f834ed, 0x000195 } }, { @@ -47854,19 +47853,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbfd4e57, 0xcbc89055, 0x8eda00, 0x253fd61e, 0xa89f60d2, 0xa5c96e7e, 0xcf5bfe00, 0x54eed558, 0xeb4daa44, 0xe8f4e771, 0x85c47216, 0xc0998315, 0xac03ae17, 0xe0bf514a, 0xbe4952df, - 0xcdf9562, 0x00011e, 00000000 + 0xcdf9562, 0x00011e }, { 0x18fe7646, 0x7b53d80f, 0x3b01ba9b, 0x1324231e, 0xb5c404f4, 0x1933b9ae, 0xa3320f65, 0x4df49ec0, 0x47048166, 0x453313d4, 0xd6b107de, 0xda222fd0, 0xc2f4539e, 0xdb84349c, 0x98950344, - 0xc27aaebf, 0x000115, 00000000 + 0xc27aaebf, 0x000115 }, { 0x4187d5c2, 0x7f00d3d2, 0x214609c7, 0x791f76c8, 0x115c3919, 0xfaae8964, 0x4a584db4, 0x40826de5, 0x5d66c5e4, 0xddb13b71, 0x38d69af, 0xe89d53de, 0x10c35cef, 0xda17d6a5, 0xfdce7306, - 0x877131bf, 0x0001b8, 00000000 + 0x877131bf, 0x0001b8 } }, { @@ -47874,19 +47873,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x889bbece, 0x8c522554, 0x95be2d34, 0x47853667, 0xd0a38fa, 0x5705d4d7, 0x5d645c7f, 0xdb0e78df, 0xa52388cf, 0xcb7782cc, 0x95f81063, 0x268491fd, 0x62f442ee, 0xabd03520, 0x1aa1ad46, - 0x3ec27d82, 0x0001f1, 00000000 + 0x3ec27d82, 0x0001f1 }, { 0x3e3fd17d, 0x9d17c5be, 0x9a817133, 0x92976d8e, 0x829eba10, 0x20075109, 0xaa68ac94, 0xb3442127, 0x2f6d6346, 0x9eb21689, 0x518cd0f5, 0x24b2ff5e, 0x67eca370, 0xb61d8db6, 0x8ff044e9, - 0xe6ee2a9d, 0x000018, 00000000 + 0xe6ee2a9d, 0x000018 }, { 0x3908b96, 0x27fa13f8, 0x30ad5d28, 0x980c1e01, 0x9c5cb343, 0x1064a0b0, 0x6c4af726, 0xa453362e, 0xfd5c8cf, 0x29bb45a9, 0xe54e6d3a, 0x4a18d7f1, 0x405a6d5a, 0x28d4b453, 0x1b87bf2, - 0x207a667, 0x000128, 00000000 + 0x207a667, 0x000128 } } }, @@ -47896,19 +47895,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x13a8e1d7, 0x934856af, 0xba33b4f5, 0x71840ccc, 0x48fb3344, 0x466bf411, 0x52d97fe3, 0x94f6824c, 0x93b0e263, 0xadf56721, 0xf637e440, 0x847d0810, 0xf37f1c30, 0x9238f04e, 0xe97d19e4, - 0x984c7382, 0x0001f2, 00000000 + 0x984c7382, 0x0001f2 }, { 0xae647c01, 0xe06fd1a5, 0xdd308a4c, 0x2c940639, 0x4066179c, 0xa311932c, 0xfbc5d488, 0xfdeeec2c, 0x30b5db2d, 0x80837ad5, 0xad0b30d0, 0x8175e8d8, 0x6caa9970, 0xa2bd02b7, 0xd88a2f48, - 0x5061541, 0x00013f, 00000000 + 0x5061541, 0x00013f }, { 0x63884650, 0xd6bae3c1, 0xa556888c, 0xf6241227, 0x8440de12, 0x535a1fc8, 0x2c5d9a5e, 0xbda9b1e9, 0x9f294420, 0xe75ed0e8, 0x63d1057f, 0xce0c1853, 0x33df1f00, 0xcbc9fe1a, 0xdcd30c49, - 0x6cdc0657, 0x000035, 00000000 + 0x6cdc0657, 0x000035 } }, { @@ -47916,19 +47915,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x55b7f005, 0xe5dbf27c, 0xb63420e, 0x56dba468, 0x46f77e69, 0x6c93aac7, 0xf483c722, 0xf30785e4, 0x1c4c3ebe, 0x5ddedebe, 0xa28ddb0f, 0xa9b1a89e, 0x91bdb183, 0x620ae601, 0x5ecefa76, - 0xe2561179, 0x0000c6, 00000000 + 0xe2561179, 0x0000c6 }, { 0x159c1da9, 0x12e703c7, 0xa87878a4, 0xa8b3f270, 0xe2152b76, 0x40cba1f7, 0x992965d9, 0x27112027, 0x33ac051f, 0xb3b8f357, 0x5b6a76fe, 0x5e524c3a, 0xe64988a3, 0x32d346f4, 0x6115c938, - 0xc27a716a, 0x0000e9, 00000000 + 0xc27a716a, 0x0000e9 }, { 0x91e90383, 0xaa1556de, 0x7b09d70b, 0xe0da1bd8, 0x7d144d5, 0x2ae8ee61, 0x66d8f297, 0x7f3fed56, 0xcd413843, 0xe117bba8, 0xaf141dce, 0x56c55687, 0xb7f01153, 0x8b4eb6aa, 0xb11b0330, - 0x946df70f, 0x0000e8, 00000000 + 0x946df70f, 0x0000e8 } }, { @@ -47936,19 +47935,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc9b9bc4f, 0xb300cb34, 0x6b3c89eb, 0x8e4b3ee6, 0x68b60915, 0x1f4cb3dc, 0x2ae20a10, 0xed428452, 0xe2941cb3, 0xe9d14244, 0x3668c330, 0xa4fa24ab, 0xb1223d05, 0xa0a2a59, 0x4ca6c99e, - 0x3801330d, 0x0001a8, 00000000 + 0x3801330d, 0x0001a8 }, { 0x1ee74d22, 0xc2ee849e, 0x202f69cf, 0xb3fed74d, 0xf6a55b3a, 0x3fd2226b, 0x8ad2ebd2, 0x6f5dc19a, 0x788aeecd, 0x2976aa31, 0x3149fd62, 0x1090b058, 0x42fd1370, 0x14fe0a36, 0x484efd6e, - 0x9ce4b0ae, 0x0000a7, 00000000 + 0x9ce4b0ae, 0x0000a7 }, { 0x1d51b16d, 0xc87d6b58, 0x634ace1e, 0x4ed1bca7, 0x2003fd95, 0x2e0236cd, 0xbb7fcc3f, 0x862e35af, 0xd1d1842b, 0x5e111e1f, 0x1eae58c5, 0xb6a17cd5, 0x4ac866fa, 0xbe5e36b1, 0x864b137c, - 0x69ecba37, 0x0001f1, 00000000 + 0x69ecba37, 0x0001f1 } }, { @@ -47956,19 +47955,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf31cf41, 0xe370bc74, 0x42f95d06, 0x2188accf, 0x483cc6bb, 0xff54b4db, 0x5fdb98af, 0xc7988528, 0x252b8ffc, 0x255b833a, 0xc84de060, 0x611b531a, 0x9bf2dcf5, 0x1894f102, 0xa1e1381f, - 0x26d87a94, 0x00019d, 00000000 + 0x26d87a94, 0x00019d }, { 0xe200377e, 0x63b05bbb, 0x35739d33, 0x17705f5b, 0xa6778322, 0x8d4769d2, 0x5a4e9bba, 0x4d07e49, 0x1d25eab5, 0x9301c410, 0x3b42833, 0xe291170a, 0xf0b2dd20, 0x2fdb4498, 0x998de7f3, - 0xa1fb0a51, 0x0000bf, 00000000 + 0xa1fb0a51, 0x0000bf }, { 0xa5268bbd, 0x9f91c571, 0x6733dd6, 0x67f84093, 0x2d55036b, 0x898c1235, 0x115642db, 0x11e9187d, 0x19b387d5, 0xc35cf677, 0xc066f4fd, 0xfae054a9, 0xdccbc2b3, 0xad29fde5, 0x95012022, - 0xc9c2813c, 0x000061, 00000000 + 0xc9c2813c, 0x000061 } }, { @@ -47976,19 +47975,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x884ace40, 0x20f1cee7, 0x5ef64bff, 0x1f2e3237, 0xd9f8637d, 0xb809980c, 0xe37eecf8, 0x1a608ecb, 0xe6a24825, 0x5b94b810, 0x1e02edc3, 0xbb07095, 0xfff2a6da, 0x2d3384d4, 0x2e73a977, - 0xfa561a8f, 0x0001c4, 00000000 + 0xfa561a8f, 0x0001c4 }, { 0x6904471f, 0x2b4b34ac, 0x6b959a99, 0xc0865dc1, 0x7c7de513, 0x60599e89, 0x6551edb7, 0x539c51f6, 0xd4288043, 0x773a75a2, 0x97f1a0ec, 0x53247cc6, 0x3023415d, 0x2e703d76, 0x5308a733, - 0xfc568fd5, 0x0001ed, 00000000 + 0xfc568fd5, 0x0001ed }, { 0x2d6296fb, 0x5a650a08, 0x9bd9e0e1, 0xb27229f5, 0xcf2354ec, 0x6badfe79, 0x4417828b, 0xfb7db83b, 0xb4dbc259, 0x9aa3bd37, 0x7ccce16e, 0x7b3d88bd, 0x4c1c9f88, 0xd126f1c4, 0x3a229fe4, - 0x27404c72, 0x000031, 00000000 + 0x27404c72, 0x000031 } }, { @@ -47996,19 +47995,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x62599005, 0x8bba7ae1, 0xc5249e73, 0x1ed246d3, 0xf4ead8f1, 0xeb1a2a49, 0xbfd1001b, 0x2858adf9, 0x3dc3de46, 0xed029225, 0xb47cb116, 0xe56c044, 0x90541c35, 0x2260fc36, 0xf105204a, - 0x58907f45, 0x000191, 00000000 + 0x58907f45, 0x000191 }, { 0x75163ed5, 0x7cc58c79, 0x6f4818f6, 0xe0331012, 0x36e53eaf, 0xfa63b08e, 0xd46b4109, 0xee46d01e, 0x5dc85919, 0xafbd0521, 0x7733d5a1, 0x6814300d, 0x80904323, 0xadbf17fe, 0x6de11e97, - 0xe153bc3b, 0x00016c, 00000000 + 0xe153bc3b, 0x00016c }, { 0x1f932ca1, 0x36f21b4b, 0x560115bd, 0xd42845d5, 0xa6813e58, 0xa10796f4, 0xf727bdb6, 0x5da959df, 0x35126771, 0x6dd42cc6, 0xe641563d, 0xd9f17352, 0xa88bc536, 0x35a36df8, 0xec377b57, - 0xa27a09c8, 0x0001d7, 00000000 + 0xa27a09c8, 0x0001d7 } }, { @@ -48016,19 +48015,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcb94d9a4, 0xc0be147d, 0x6b4829b2, 0xbc612d08, 0x34a1d75b, 0x65eb2593, 0x203a2330, 0xe9a3dec6, 0x7eb7a587, 0x5671a201, 0x59cc86db, 0x66dbbd90, 0x25784e0e, 0xd1a15422, 0xdb2edf54, - 0x5c031340, 0x0001af, 00000000 + 0x5c031340, 0x0001af }, { 0x69a50665, 0xc37fe561, 0xce6f42ca, 0x77bd3a1c, 0xa530ec0b, 0xa2d5bc41, 0xb2c0d910, 0x43a2e1dd, 0xb4d3f733, 0x48975528, 0x2e139b3d, 0x22ca5fff, 0x6372c23c, 0x992b9444, 0xbce38de7, - 0x233b3807, 0x00013e, 00000000 + 0x233b3807, 0x00013e }, { 0xcf9567e7, 0x4bae5005, 0x6655105e, 0x22c9cf93, 0x885c2768, 0x6048b3c4, 0x4b9b768, 0xb9dc55d9, 0x1bd8c0e7, 0x59a8b1d9, 0x992c9e93, 0x752b775b, 0x89364bba, 0x919738ed, 0x39bde6a1, - 0xdda29162, 0x000149, 00000000 + 0xdda29162, 0x000149 } }, { @@ -48036,19 +48035,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x749e871f, 0xb02a63ff, 0xe25fd8b7, 0x79c37cd8, 0xe588386b, 0xe154e620, 0x510e3829, 0xb5b2ef83, 0x1987fe0a, 0xaf9785d2, 0xb53e2b07, 0x3bc42836, 0x70b301cc, 0x8aae407c, 0x2110e70, - 0x4af76531, 0x000108, 00000000 + 0x4af76531, 0x000108 }, { 0x4be9c9dd, 0xdaa08da8, 0x57650db3, 0xcac768ad, 0x18ddfff5, 0x3781c4ca, 0xb35c985c, 0x27add961, 0xa2822d14, 0xd6e2548f, 0x2984bf32, 0x9d1599b8, 0xbc3e1d22, 0x499941d7, 0xaf8daa92, - 0x47831e4f, 0x0000a0, 00000000 + 0x47831e4f, 0x0000a0 }, { 0x94d28578, 0x32b85d75, 0xecb08af6, 0x3b959484, 0x4508a257, 0x3f4a15c4, 0xb2ec90e4, 0x8e0a3331, 0x6b7432e1, 0x8ffbbd71, 0xfe421bb6, 0x83c30973, 0x4959d409, 0xe3736ff4, 0x1c2a1143, - 0x1b3590fd, 0x0001c3, 00000000 + 0x1b3590fd, 0x0001c3 } }, { @@ -48056,19 +48055,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9b6a5c64, 0xe4cb0d49, 0x6e8b63d4, 0xa3abc63a, 0xd72d35f6, 0xaee38b1a, 0x4be633e5, 0x8a858076, 0xc0297276, 0x1435a68e, 0x5c279ab, 0x59b5325e, 0x15c667c3, 0x94e3a124, 0x145ddf0c, - 0x39ecbe68, 0x000099, 00000000 + 0x39ecbe68, 0x000099 }, { 0x8b767df4, 0x7d75aa85, 0x8ee60113, 0x54796066, 0x72304560, 0x79b47937, 0x5adc8290, 0x8ba5d90e, 0xbbe26da2, 0x8e9f97ff, 0x7c8d62d8, 0x34dc2c30, 0x20d946da, 0xeda83fdb, 0xcd9ed181, - 0x34f858, 0x0000de, 00000000 + 0x34f858, 0x0000de }, { 0x9fba15d, 0x6147ef37, 0x92f2b57, 0xbfdf7e76, 0x76526662, 0x1c6f8be9, 0x230fd59, 0x845cf403, 0x42d7219b, 0xf587aab1, 0x4d691219, 0x7d13cac3, 0xef6f198a, 0x2deb5875, 0xd1d0441c, - 0x7d5bc66b, 0x000098, 00000000 + 0x7d5bc66b, 0x000098 } }, { @@ -48076,19 +48075,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1e7ab285, 0xc0f861ea, 0xfaece823, 0xcf3ab87d, 0xee954a25, 0xa9860aa2, 0xdc239148, 0x4c5cb197, 0xede2723, 0x2e747a6d, 0x361c8a04, 0x39cd8f3d, 0x38aafa9d, 0xf5758a5f, 0x912fab14, - 0xabd581f8, 0x0000aa, 00000000 + 0xabd581f8, 0x0000aa }, { 0x190c2414, 0x45ea1fa0, 0x5c912b89, 0xfb1086ef, 0xe2030c91, 0xdc83e404, 0xc917810, 0x29c12756, 0x1b3a181e, 0x6e0b2af8, 0xbe055126, 0x7e47435b, 0xf1baab8c, 0xb1e59373, 0x37b9be1b, - 0xb402db7e, 0x000069, 00000000 + 0xb402db7e, 0x000069 }, { 0xa3b91841, 0x155b6a0b, 0x986b55b6, 0x6149c873, 0x1c9af2b5, 0xb75884f0, 0xa4e12395, 0xbaff6ebd, 0x79d5ed5e, 0x63abbdd5, 0xe552d31b, 0x6a91ba5d, 0x1e61e984, 0x219c15f5, 0x372613f0, - 0xc4cc5578, 0x00017d, 00000000 + 0xc4cc5578, 0x00017d } }, { @@ -48096,19 +48095,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19590232, 0x527ab4e6, 0x1d8d4abe, 0xa95de2ed, 0x6b5672f6, 0xea15732, 0x54b9f82e, 0x79ce04f6, 0x371d1905, 0x90aca37e, 0x98df3cc2, 0x865bce0c, 0xe05bbae, 0x53b86fa7, 0x9cbfb082, - 0xe5cc815c, 0x0001d6, 00000000 + 0xe5cc815c, 0x0001d6 }, { 0x48204ffa, 0x71afc307, 0x1c6188c9, 0x457630a0, 0x2ceebb5d, 0xc9bdfaba, 0xd18f2a05, 0x6efa0227, 0x86781cad, 0xb619ff3f, 0x8da19677, 0xdad13724, 0xdcbf24, 0xaf77878a, 0x1c1b076e, - 0x19099b9a, 0x00019c, 00000000 + 0x19099b9a, 0x00019c }, { 0x5ffab0dd, 0x66d2f5b6, 0xa6aac58e, 0x2879fbb5, 0x24ffa696, 0x45569e7a, 0x8012f46f, 0x730ae8ad, 0x4cc51748, 0x657179fc, 0xc6f77818, 0x9db60e34, 0x664cfa95, 0x678878cd, 0xca556356, - 0x6f91bd8a, 0x000152, 00000000 + 0x6f91bd8a, 0x000152 } }, { @@ -48116,19 +48115,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7076e993, 0x94317146, 0x3cce3c6c, 0xe6338700, 0x5c669a14, 0xebae0cd4, 0x328ce31c, 0x58b24479, 0xbbea7719, 0xe96277d1, 0x88eeb31, 0x2a0d5061, 0xf1663a5e, 0xb8da09d, 0xabf7e6c, 0x4fa3f5, - 0x0001ee, 00000000 + 0x0001ee }, { 0xab4812f, 0x5c07bfa7, 0xd47f9538, 0xfa22d98a, 0xd7d20af, 0x1f08a5ff, 0x174e1989, 0xb6a34c09, 0x6c408e37, 0x59a9246b, 0x18129bb, 0xa9e6152e, 0xf3917586, 0x898fb2dc, 0x501ed26a, - 0x5c5f7171, 0x0001e0, 00000000 + 0x5c5f7171, 0x0001e0 }, { 0x3b690919, 0x8fe01c88, 0xb6e282dd, 0x89d721f8, 0xc66e7a6f, 0xfb35f311, 0xdb4b808a, 0x1ebe6b80, 0xd1e9f45, 0xcd8dc1f0, 0x76837a8e, 0xc933bea1, 0x3ac09a29, 0x5000fefe, 0x21cfb385, - 0x6ba2b09, 0x00014a, 00000000 + 0x6ba2b09, 0x00014a } }, { @@ -48136,19 +48135,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x994da5ab, 0xa5a5e95b, 0x6e56f187, 0x41f73a35, 0x2144e23a, 0xdd36cf8f, 0xc8e733ea, 0x875a1a69, 0xaf4d566d, 0x3661c01, 0x6a7fe54d, 0x42fd7b1e, 0x23a4fb3e, 0xc814e85f, 0xc0498d92, - 0x4fc33770, 0x000103, 00000000 + 0x4fc33770, 0x000103 }, { 0xdd9aa23f, 0x6f79275e, 0x6534b755, 0x24c2a0b8, 0x71e1b6b0, 0x5200f146, 0x9aba4c95, 0x47bbde40, 0xafb0efcd, 0x71810473, 0xbba3db5, 0x89d763ae, 0xf6cd688c, 0xe0b64a8f, 0x16fe586b, - 0x44bbe9a0, 0x000073, 00000000 + 0x44bbe9a0, 0x000073 }, { 0x6c88ff56, 0xf2f29a99, 0x8be39973, 0x1852bfa, 0x9d773d00, 0xb385a87a, 0x5d3ab447, 0xa25a3a33, 0xeaa0d117, 0xfd14277b, 0xc0963dfe, 0xcea9d6ea, 0x1508770b, 0x7a283369, 0xb321eece, - 0xc3168b5, 0x0001a6, 00000000 + 0xc3168b5, 0x0001a6 } }, { @@ -48156,19 +48155,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4a7b4dc3, 0xcb7c467d, 0x32cdca94, 0x439410ff, 0x6e59450, 0xb5811fc9, 0x579415d2, 0x8fc96ddf, 0x95009803, 0xe2993116, 0x20c229a9, 0x814f3ce6, 0x69d393f, 0x3fcd24be, 0x426669a8, - 0xec654f3b, 0x000050, 00000000 + 0xec654f3b, 0x000050 }, { 0x54140f9f, 0x37f00396, 0x20c364e2, 0xa48947fe, 0x67e77878, 0x22b96efa, 0x6d4f68fc, 0x7ba2c9cf, 0x7fbdee06, 0xaa3e08fc, 0xbb34d60b, 0xdae68e8f, 0xd8c83e39, 0x3a71107f, 0x8d5fe6af, - 0xcc93cce4, 0x00016c, 00000000 + 0xcc93cce4, 0x00016c }, { 0x4f1c8f93, 0x3cbaf7ce, 0x40e6bbee, 0x8ddff0bb, 0xb4b56239, 0xfaa273fb, 0xe1f62849, 0x1adbfd0, 0xe6c1ffec, 0x9dce6f29, 0xfd195643, 0xa4fbf3a9, 0x44cbf5e0, 0xb6f69113, 0xfa7eae1e, - 0xb974d0dd, 0x00015e, 00000000 + 0xb974d0dd, 0x00015e } }, { @@ -48176,19 +48175,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7638ecb, 0x9fc52d2c, 0x513e75fa, 0xe59be08, 0x4c35e0d4, 0xb2f96d66, 0xb117d613, 0x4dcdbb0a, 0x67bdcfbd, 0xc6741f4c, 0xc092d7aa, 0x3d5baa17, 0x4a279fef, 0xfd131b5e, 0xc17f9ee6, - 0x7a71b20f, 0x000089, 00000000 + 0x7a71b20f, 0x000089 }, { 0x35b9acc8, 0xdd40ce69, 0xcd95de23, 0x2a451797, 0xad912d7c, 0xf132445c, 0xe3ccd6a5, 0xd5da15fd, 0xe74d9759, 0xe6671b86, 0xca842f55, 0x6e9bdf14, 0x4fb450d6, 0x20ef1a85, 0xcec3fa1e, - 0x2aee60c3, 0x0000bc, 00000000 + 0x2aee60c3, 0x0000bc }, { 0xe1e11f1d, 0x197911f6, 0x25acf8c7, 0x180c1ca4, 0x719c0dd9, 0xc307b66c, 0x97698e4b, 0xd3912388, 0x672b88f3, 0x162078f0, 0xf728f382, 0xfc9f4540, 0x2593a199, 0xbb780c7c, 0xd28e34bd, - 0x957f682, 0x00011f, 00000000 + 0x957f682, 0x00011f } } }, @@ -48198,19 +48197,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd3ccc06c, 0xd4b90035, 0xe0708b21, 0x2dafd84, 0xf3055af2, 0x6425f671, 0x723b12cc, 0x38ffd5d5, 0x7876b956, 0x5dea77fe, 0x8d60096f, 0xab921498, 0x72bff533, 0xf3914453, 0x85a7803e, - 0x93aca0ab, 0x0000c7, 00000000 + 0x93aca0ab, 0x0000c7 }, { 0x65b3188b, 0x8e4997b4, 0x82da841c, 0xd33f6dc9, 0x9ccf69a5, 0xd5590e5e, 0xcadbeaff, 0x80c5f264, 0x9044ec61, 0xaf9a74fe, 0x4dc65d70, 0x16d3af9e, 0x241c78c5, 0x30ac406d, 0xb38c2eac, - 0x82252a9c, 0x0000c5, 00000000 + 0x82252a9c, 0x0000c5 }, { 0xfcc6df62, 0xfbad279a, 0xc3af5c30, 0x17edb47a, 0xaa10fbd6, 0x5b1041f4, 0x1d6a61f4, 0x3db2d3cf, 0xde7a5823, 0x5467559c, 0xa565b485, 0xb15f2ed3, 0x12b7336f, 0xc38c5ca7, 0xe613473e, - 0xb0a9a01f, 0x000097, 00000000 + 0xb0a9a01f, 0x000097 } }, { @@ -48218,19 +48217,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa621c5f6, 0x8bd332b6, 0xb6e17a39, 0xa3c2e44b, 0x8b9a8d16, 0x7db91dee, 0xa2bf72d3, 0x6ea84f, 0x1e1d17a2, 0x9406a674, 0x1a7e6b85, 0x4f9822ea, 0x3e8e5366, 0x1173048f, 0x619dcff1, - 0xe3158577, 0x00013e, 00000000 + 0xe3158577, 0x00013e }, { 0x3c00046c, 0xa77f442, 0xdfbcc3d7, 0x15397ff5, 0xe3ff242, 0x265e2190, 0xfc6c5c3e, 0xc9091dbd, 0x71783872, 0x9c05efe8, 0x5e94dd6d, 0x3ff1733f, 0x4f5646cb, 0xd74fe882, 0x738ffdc0, - 0x22d4a2c7, 0x0000bf, 00000000 + 0x22d4a2c7, 0x0000bf }, { 0x80befc00, 0x875b4c4f, 0xe8cc947a, 0xebe01c72, 0x419474ea, 0x66c1bbe2, 0x9ae55ff4, 0x28e79ee7, 0xff4f9512, 0x2d3fa15a, 0xa34a23b3, 0x9e60638f, 0xc20e068c, 0x8f3e98ad, 0x3ee3908d, - 0x6da323aa, 0x000169, 00000000 + 0x6da323aa, 0x000169 } }, { @@ -48238,19 +48237,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe26fce25, 0xd42e33e0, 0x654f6363, 0xe17bcd0, 0x3f48df2, 0xba3697c9, 0x65e1a545, 0xd810020f, 0x9ccac01b, 0xc3a074b3, 0xacdcade2, 0x9bcf0b95, 0x52d29daf, 0x84d21ff5, 0x8fb317c2, - 0xbee49b90, 0x0001f0, 00000000 + 0xbee49b90, 0x0001f0 }, { 0x8aef8df5, 0x41683736, 0xf1622a22, 0x663a530e, 0x8a51e496, 0xf0a69e28, 0xb204846c, 0xb56f3da, 0x5607df74, 0xb677a5a8, 0x4d243bdf, 0xdb37061d, 0x37986f5, 0x8b55c3a2, 0xc17257c3, - 0x106b1ea5, 0x000111, 00000000 + 0x106b1ea5, 0x000111 }, { 0xeeadac6d, 0xc9e0b5f7, 0xebd03976, 0x2adf5ab, 0xc8159e64, 0xe652c095, 0xc78e1559, 0x98b3a954, 0x3e3618b2, 0x725b44a8, 0x2a8d5e82, 0xdd61dfa4, 0x71f505c3, 0x7d669ad9, 0x3924db6a, - 0x5566e745, 0x000146, 00000000 + 0x5566e745, 0x000146 } }, { @@ -48258,19 +48257,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1bb52789, 0xae7d9c08, 0xbd74e026, 0x1d19a5ac, 0xc19fb1cf, 0xdf704ecd, 0xb3b5a949, 0x5cb39a95, 0xe3d86553, 0x70e7f32a, 0x8fec39da, 0x4fd3e980, 0xee7b13f5, 0x3365bafb, 0xfd2d43f3, - 0xcde2e9c3, 0x000095, 00000000 + 0xcde2e9c3, 0x000095 }, { 0xe478b377, 0xd8b5b955, 0xbf810f73, 0x9a305bc5, 0x424d2d6d, 0xe5e9c202, 0x78f77ab4, 0x8a232dd2, 0x92e4b6e0, 0xec73bd58, 0x555f19d1, 0x65f1c827, 0x1b5da94e, 0xce6a7e6b, 0x470e52cc, - 0x923b127e, 0x00017b, 00000000 + 0x923b127e, 0x00017b }, { 0xe9395997, 0x3d1aef04, 0x9deffc0e, 0x273872dd, 0x82c9af2, 0x7bd3d575, 0x5199ac43, 0xc1b9aa02, 0x1169a0ae, 0xa2155e71, 0x124abb61, 0x3077806f, 0xf239a610, 0x183113fb, 0x4fdbb559, - 0x29777c7d, 0x000127, 00000000 + 0x29777c7d, 0x000127 } }, { @@ -48278,19 +48277,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x561d2f31, 0xfcab9973, 0xaa892cf, 0x4da18e53, 0x37ea74b0, 0x53a12111, 0x961fae7e, 0xb8d0b2a9, 0x64ce33e2, 0x2b469cd7, 0xd35ba284, 0xda2f8984, 0xeeeaccbc, 0xe3bec597, 0xedc54f44, - 0x832cd578, 0x0000b9, 00000000 + 0x832cd578, 0x0000b9 }, { 0x4b13bf75, 0x56e66313, 0x8b9f86d5, 0x488f649b, 0x3c0563ce, 0x44595e5f, 0x57540ea1, 0x5ccde583, 0x74130901, 0xb01e18d8, 0x61e851f4, 0xb995e5e0, 0x37084316, 0x7d74b3b1, 0xe5ef8b31, - 0x502937fb, 0x000059, 00000000 + 0x502937fb, 0x000059 }, { 0x9f4cf9, 0x9dae45eb, 0x917fe032, 0x869e5fef, 0xf342bda5, 0xf5e42689, 0xfe69a35f, 0xbf011f31, 0x5115f23, 0x7e59b3dd, 0xccde3d34, 0x105cc27b, 0x1b0fd221, 0x24ae1b25, 0xe0c0167a, - 0x50ec7c18, 0x000025, 00000000 + 0x50ec7c18, 0x000025 } }, { @@ -48298,19 +48297,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9c5253a0, 0x41e34680, 0x7a843c86, 0xc072517, 0x4a51e00e, 0xc5660b4, 0x7304ec36, 0x18a848f9, 0xc95c01be, 0xcae1f90e, 0x6d4f9cc1, 0x344ff4d, 0xa3b0bc9, 0x6082683, 0xa959a11e, - 0x78d1976d, 0x000088, 00000000 + 0x78d1976d, 0x000088 }, { 0x79c54895, 0x88a22df, 0xc4152a54, 0xe14d93de, 0xbd23eca0, 0x45c1419f, 0xf6147c19, 0xae79f258, 0xc58fe83c, 0xd124cc40, 0x634d5aa4, 0xd9cd7f3e, 0x14b9a400, 0xc01ed85c, 0xe46b6ce5, - 0x67004e3d, 0x00000e, 00000000 + 0x67004e3d, 0x00000e }, { 0xfc710ee3, 0x66cc8a05, 0x6a3484a7, 0xb9aae12c, 0x8cf83026, 0x8a7baedd, 0x84caf079, 0x1831cbf3, 0x13607ef9, 0x7660a587, 0x579d9acb, 0x932a3210, 0x4ac1602d, 0x918fd6e9, 0xac0bc406, - 0x67d55b53, 0x0000e4, 00000000 + 0x67d55b53, 0x0000e4 } }, { @@ -48318,19 +48317,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb7965a4, 0xed0a2430, 0x59720ab6, 0x4527abb9, 0x4b07c933, 0xc85481dc, 0xe60f31de, 0xd2fb5c25, 0x44429512, 0x525731fe, 0xc5ccc49f, 0x7cadae6b, 0x7d427bd1, 0x76e879f6, 0x5ac3d313, - 0x4a6d4569, 0x000135, 00000000 + 0x4a6d4569, 0x000135 }, { 0xc4e9341f, 0x8d006366, 0x6b7cb9e8, 0xc912c079, 0xc5c04314, 0x3742ebfc, 0xb754949d, 0x1c21dd15, 0x360210a5, 0xc75d91f5, 0xf8887de5, 0x104ab43f, 0x75fef742, 0xf9d6b548, 0x3fba45d, - 0x78757bb6, 0x000066, 00000000 + 0x78757bb6, 0x000066 }, { 0xed80d88c, 0xb1362579, 0xc10d3bea, 0xa654030e, 0xd02c0c88, 0xaa3d25dd, 0xb2ffd593, 0x1c31ab03, 0x26bfd942, 0xdfae9220, 0xfbe17a46, 0xe2c0649c, 0x6b5d9a36, 0xefdc9075, 0x99191678, - 0x5efce649, 0x00018e, 00000000 + 0x5efce649, 0x00018e } }, { @@ -48338,19 +48337,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2505a5cf, 0x195ad299, 0x751783a2, 0x88e637a0, 0xae645e29, 0x2ee858eb, 0xdbc727ec, 0x744d6cf0, 0x4803d712, 0x2dc1daf4, 0x79bb1088, 0x5adbcd40, 0xed213401, 0x925f7b2, 0xf8357eda, - 0x61b39d0b, 0x000186, 00000000 + 0x61b39d0b, 0x000186 }, { 0x89a0e6e2, 0xbcc45cb, 0x85f85bc7, 0x6506699d, 0x91b8e89b, 0x3fb5ce18, 0x9314d276, 0xdd3c853e, 0x45da9eb4, 0x2629dc8d, 0x3e920bb6, 0x102166a5, 0x1b0adaff, 0x99003a1f, 0x861ba90, - 0x6538c1be, 0x0001f9, 00000000 + 0x6538c1be, 0x0001f9 }, { 0xd2b752c4, 0xacd20df1, 0xff8a7832, 0x96871c9e, 0x1854deaa, 0xca90a2e7, 0xa197361c, 0xa10abe05, 0xa9668c65, 0x155edc96, 0xfa04395f, 0x750ae7aa, 0xa691c6da, 0x342e9fd2, 0x54867ff1, - 0x4616a0b1, 0x00005b, 00000000 + 0x4616a0b1, 0x00005b } }, { @@ -48358,19 +48357,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x38ed1ae6, 0x57666ae3, 0x5e0d7b24, 0x24d3e371, 0xc8c70a93, 0x71ad589f, 0x819bd809, 0x2c5ed06a, 0x39e47144, 0xad244e7, 0xb4a83307, 0xe5394a6f, 0xbaaa1d1d, 0xbe7e1883, 0xab1a7479, - 0x185c03a0, 0x0001c0, 00000000 + 0x185c03a0, 0x0001c0 }, { 0xd8d79a0, 0x1acfeb4, 0xc103ab36, 0xbba4e62d, 0x89c1d71, 0x7ee352d8, 0x5846a3ac, 0x60ea5aec, 0x341d2dff, 0xf8bd5cce, 0xaeacc582, 0x27af6a7c, 0x922b9b78, 0x94d695c8, 0x9cb36812, - 0xcd63a1f6, 0x00014d, 00000000 + 0xcd63a1f6, 0x00014d }, { 0x3cfc4d22, 0xbfdb3d6a, 0x2314ffec, 0x9543fd3, 0x3d1b8175, 0x24895cb8, 0xc4605008, 0x2e839589, 0x97abffa5, 0xcbc1baff, 0x9254c3c7, 0xc03b600, 0xbaf07f5a, 0xc5ec87a2, 0xf2843229, - 0x5dfa3468, 0x0000cd, 00000000 + 0x5dfa3468, 0x0000cd } }, { @@ -48378,19 +48377,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xec099001, 0x717433cf, 0x2374b1f5, 0x9739e107, 0xe05f9e45, 0x3e82213c, 0x619d44a2, 0xdd330639, 0xb8b07123, 0x94d7c79, 0x2ad3bb0c, 0x29b62416, 0x8ca2f0f6, 0x489a35e, 0x2e15543, - 0xa56df23d, 0x00003b, 00000000 + 0xa56df23d, 0x00003b }, { 0x26b4bd6c, 0x63932fb2, 0xdfe1e475, 0xaffda443, 0xa1589931, 0xc2806945, 0x86a06009, 0x14f32b0e, 0xeeb51cdd, 0x5bb16eba, 0x19f07d91, 0x1a619b1d, 0xb65e8a41, 0xdaa8d386, 0x307cfb44, - 0x29489586, 0x000049, 00000000 + 0x29489586, 0x000049 }, { 0x5b07b343, 0xce419c2a, 0xaf0125ee, 0x78477aac, 0xee4b3ba9, 0x7dba1433, 0x7880d435, 0x42b235a, 0xa5136acc, 0xa0f0c2d8, 0x999f938c, 0x4c833731, 0x6e22952c, 0x37c277fb, 0x6d6ac240, - 0x718b4bb7, 0x00013c, 00000000 + 0x718b4bb7, 0x00013c } }, { @@ -48398,19 +48397,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x57281925, 0x22cc61a7, 0xe608e2ee, 0xd3fd230a, 0x7979571, 0x5084f28a, 0x6f73fe6c, 0x6b731524, 0x98e4779b, 0x9ad65645, 0xb5bad39f, 0xf58cd838, 0xab06d702, 0xe9003d48, 0x31eb26fe, - 0x3f37e406, 0x000022, 00000000 + 0x3f37e406, 0x000022 }, { 0xf56a6e11, 0xf97ccdbc, 0xcdaa3d75, 0x29d0348d, 0x1d8f8249, 0xffe901de, 0x46be1059, 0x5e4c1cdc, 0x83f41a85, 0xf981a538, 0xc5ad1c2f, 0xfc2612fe, 0x68bd3ff, 0xe63d832e, 0x195f4f8e, - 0x3f538c04, 0x00018a, 00000000 + 0x3f538c04, 0x00018a }, { 0xbf8a4df9, 0x7e721056, 0x8099389e, 0x73af0438, 0xef878c38, 0xf1274ed0, 0x159dbe51, 0x5042192f, 0xcb25491a, 0xb1bde677, 0xeb239c84, 0xc901003c, 0xabf1610, 0x54b6fce, 0xd19c8199, - 0xa21f8225, 0x0000ba, 00000000 + 0xa21f8225, 0x0000ba } }, { @@ -48418,19 +48417,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7c9aa6f7, 0xfa815a55, 0x18e53b86, 0x9dbad020, 0xeefce308, 0xae085124, 0x24d57d21, 0x96764bd8, 0x13783f5b, 0xe2f5e634, 0xb3254e54, 0x56a6b284, 0xb14f2611, 0xfa81482f, 0xf66af166, - 0x44534805, 0x000042, 00000000 + 0x44534805, 0x000042 }, { 0x48ca4d4b, 0xfb442fd5, 0xd5c97c1f, 0x4223dbd3, 0xc8d8ce29, 0x4d060e16, 0xe6850eb9, 0x3d87542d, 0xcf042cfc, 0x7bc854ff, 0x421e6165, 0x9f14076a, 0x2d009e76, 0xea969388, 0x51d96238, - 0xd0120599, 0x0000be, 00000000 + 0xd0120599, 0x0000be }, { 0x57c87d1d, 0xaf045cab, 0x37841033, 0x60c81710, 0xfe1439c6, 0xeb4dd7d4, 0x6a5e1bc, 0x32129ccd, 0x3a0b49af, 0x13aa7b1e, 0x85a0aaca, 0x4e1c40c7, 0x90f517cb, 0xcbc168dc, 0x99eb650c, - 0x5e2e901, 0x000149, 00000000 + 0x5e2e901, 0x000149 } }, { @@ -48438,19 +48437,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x33df6b30, 0xa289b80e, 0xd97149a0, 0x56692a29, 0x93128f90, 0x6bc77ef9, 0x4933898e, 0x299c74a5, 0xe84968b3, 0xde816157, 0x66628460, 0x5f9e5ed8, 0x2a5d70cb, 0x6c4d1039, 0xb4d6ce8b, - 0xa1980e28, 0x00005b, 00000000 + 0xa1980e28, 0x00005b }, { 0x29defa7, 0x711364c6, 0x61e42774, 0xd1ddccf5, 0xc4f9e873, 0xcac877fa, 0x3d9dde4d, 0xb4792a13, 0x8765d776, 0x78ac1574, 0x892aa391, 0x51ebc02b, 0xc0c6285b, 0xef8cf792, 0x3e3420d9, - 0x4956ddfd, 0x0001b6, 00000000 + 0x4956ddfd, 0x0001b6 }, { 0xb0c7fefa, 0xa25b519d, 0x7a5914, 0x350980c6, 0xf78701c6, 0x5b01777d, 0x31b145c7, 0x99c5c8ac, 0x8057db01, 0x6e4b289e, 0x8788bdfd, 0x464ac02a, 0x61b47169, 0xb679ece8, 0x1e561506, - 0x33f6660c, 0x00004a, 00000000 + 0x33f6660c, 0x00004a } }, { @@ -48458,19 +48457,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6b9a0b22, 0x62b7ed0e, 0xb336fe78, 0x58df9693, 0x8374f893, 0x1f291375, 0xa4212977, 0xcd237ae2, 0xa0abc45a, 0x2d67e983, 0x5530d1c9, 0x89ab04b8, 0xc74f9c33, 0x708e0d36, 0x99158bdd, - 0xf27af442, 0x000151, 00000000 + 0xf27af442, 0x000151 }, { 0x77c69320, 0x5f40ab37, 0x940be162, 0x69178c43, 0xa4fc1814, 0x56dc8221, 0xfc36860, 0x2759a2ae, 0xc437ceec, 0x392820a8, 0x40a1adb9, 0xf831695a, 0xc528f31a, 0x4518a601, 0x1edd586c, - 0x9eb36e0b, 0x000078, 00000000 + 0x9eb36e0b, 0x000078 }, { 0xd7ad9827, 0x33c5be74, 0xd88e92f8, 0x1ffb2448, 0x5418125a, 0x2fa991bf, 0x3352e1de, 0x8cfc2435, 0x941025b7, 0xa6666dc3, 0xd1848b82, 0x58cc6dda, 0x43076c0e, 0x1d262ae6, 0x1a0230fb, - 0xfd24d1bf, 0x00001c, 00000000 + 0xfd24d1bf, 0x00001c } }, { @@ -48478,19 +48477,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc61e8dba, 0xb7b708f5, 0x9b7a707c, 0x191b6b41, 0xb3543bc6, 0x1529709c, 0xeb278bf6, 0xe944ffa1, 0xbaf17821, 0xe45e09b8, 0x424f1ec0, 0xbb4e5d5e, 0x81a3e2d1, 0x1fe70ea5, 0x4526aa0, - 0x4eb7d2b8, 0x0001ca, 00000000 + 0x4eb7d2b8, 0x0001ca }, { 0x532fd6bc, 0xbeae5117, 0x5c879b51, 0x4b8c4c3e, 0x34fb0711, 0x67228ceb, 0x6788488e, 0x410524f4, 0x4c885a04, 0xb43a10dc, 0x77da0205, 0xa0ea7c01, 0x2d65c62f, 0x9b92a24e, 0x6ed16cd3, - 0x36442a7d, 0x000007, 00000000 + 0x36442a7d, 0x000007 }, { 0x40aa9f22, 0x60a7d3e4, 0x87e0380c, 0xc89c74f0, 0x39439e65, 0x7fa72283, 0x3c9633b7, 0xeae05d5a, 0x8cc2554e, 0x55112095, 0xd5c8a26c, 0xc3b5eae9, 0x2eeeb3c3, 0xdfa18356, 0x9e9aa923, - 0xeb6ca78b, 0x000139, 00000000 + 0xeb6ca78b, 0x000139 } } }, @@ -48500,19 +48499,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8f2448db, 0x1586cd5e, 0x3d5d5015, 0x4406a3c5, 0xd4530fce, 0x40a15158, 0x5839f145, 0x9ec81207, 0x28df1c8, 0x7acbaf92, 0x27b8a663, 0xac4cb631, 0x337307c4, 0x9c74c7c9, 0x9c92535e, - 0xe0d9c931, 0x000052, 00000000 + 0xe0d9c931, 0x000052 }, { 0xeccaa1a2, 0xca61d9e4, 0x87deab2e, 0xda51e0aa, 0x6e0f124f, 0xbf36fc90, 0x797be921, 0x76c57f66, 0x5a2dd47c, 0x5bee340c, 0x341585fd, 0xe089c638, 0xd968af0b, 0x9b4f346f, 0x5f951c92, - 0x8b9db075, 0x0001b2, 00000000 + 0x8b9db075, 0x0001b2 }, { 0x625fe54b, 0x322fde24, 0xd646e199, 0x50964ffe, 0xf1e74805, 0x122e3a81, 0xee253437, 0x7bd3103b, 0x98c03231, 0x1c2677a6, 0x50fa6ec7, 0x8b6b374c, 0x22489949, 0x52a644ea, 0xb61ee9c9, - 0xc83ea79, 0x00003c, 00000000 + 0xc83ea79, 0x00003c } }, { @@ -48520,19 +48519,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x10aec6a, 0xfbe1e483, 0x149c94f0, 0x22ecfd80, 0x8f00153a, 0x89adb3d1, 0x7ecc37b8, 0x90014d43, 0xb248ee8e, 0x9a9b0661, 0xa90fa5c4, 0xb003824c, 0x8311eeb1, 0x846305d1, 0xf77cab9, - 0x224558f3, 0x0000b2, 00000000 + 0x224558f3, 0x0000b2 }, { 0xb3449766, 0xfac492d6, 0xfb346d71, 0x775734c0, 0xb0fd47c5, 0x210e572f, 0x2bfa5e20, 0xc2fef7e7, 0x2a893662, 0x57c7305b, 0xe85893e, 0xfd87e4a3, 0x222f44b6, 0xa40e3790, 0x21d00184, - 0x9ae782f, 0x0000c2, 00000000 + 0x9ae782f, 0x0000c2 }, { 0x92411aa5, 0x94ca342f, 0x6675e03a, 0x72575474, 0x9a05acf9, 0x2985fd2a, 0xb9533409, 0xec5f355c, 0x914903f7, 0xce661f34, 0x61c25320, 0x50f83f11, 0xcf1dc6b0, 0x375803d1, 0xbb75a244, - 0x4f7c8763, 0x0001bb, 00000000 + 0x4f7c8763, 0x0001bb } }, { @@ -48540,19 +48539,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d361113, 0x16b17e9d, 0xe6f8b7f4, 0x4e277029, 0xdd531ecc, 0x270ac3fe, 0x18fada28, 0x19bd2fe2, 0x6d342bbd, 0x3376099d, 0x4bfcc4a3, 0x14992ccd, 0xa64ef6d6, 0x7ef18977, 0xf3f93856, - 0x8e5b4bba, 0x00003c, 00000000 + 0x8e5b4bba, 0x00003c }, { 0xff6f96, 0x553ae182, 0x2944ffa1, 0x4f92cfb, 0xdb590f1f, 0x3237d9f6, 0x92e4e327, 0x1ec27e53, 0xb878f83e, 0xb6ead191, 0x8b69282c, 0x719e25da, 0x6b11d8fe, 0xe02b6a91, 0xae5e2f09, - 0x515a389c, 0x00005f, 00000000 + 0x515a389c, 0x00005f }, { 0x226c0774, 0xe9b761a2, 0x646ec3f9, 0x8de74350, 0x1d7f6b1d, 0x4d6ae9b7, 0xde7f05e7, 0x3d121134, 0x27df1471, 0x803e925a, 0x6195dc9f, 0x24054420, 0x97ba7dba, 0xdd9ba563, 0x91ce5ae6, - 0x46f1a2a3, 0x0000b0, 00000000 + 0x46f1a2a3, 0x0000b0 } }, { @@ -48560,19 +48559,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x45b2fea4, 0xedb40729, 0xfe970f9a, 0x104a2481, 0xeabec3ba, 0xe7162741, 0xa6c4a5bd, 0x934e6e1d, 0xa2dae0c6, 0xb8634e12, 0x2ffa7352, 0x331948cc, 0xe6b3ee17, 0x23c810aa, 0x43e8dd71, - 0x5fc45e2, 0x00018e, 00000000 + 0x5fc45e2, 0x00018e }, { 0x89c1b845, 0x9e2a189e, 0xfcfe3f55, 0x34bcc027, 0xe25b16ce, 0x4991a142, 0xb20bf6ae, 0xea56f86, 0x43c26897, 0xdcc26594, 0xc1052e4f, 0x2a3521a, 0xfb36b350, 0x55456300, 0xa7b863dd, - 0x3a4e5388, 0x00012b, 00000000 + 0x3a4e5388, 0x00012b }, { 0x2cdb584c, 0xfbaa8d3a, 0x271de93d, 0x96b9b203, 0x9726f3b5, 0xd9885758, 0xbbd7d844, 0x4cc03bc9, 0x424b2282, 0x91b34f3b, 0xaf9ec710, 0x79b1b9ce, 0xec04ed2b, 0xeaff548d, 0x7211eb59, - 0xd415d79d, 0x000057, 00000000 + 0xd415d79d, 0x000057 } }, { @@ -48580,19 +48579,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1b559e4a, 0xd7178cba, 0xe5b153a4, 0x203d8384, 0xf75608ee, 0x65316dc2, 0xae6a9be0, 0x904c97f4, 0x17c428a4, 0x4a94a92, 0xb2bed30a, 0x44a8dee8, 0x8ffb3c91, 0x2f688720, 0x4e46e918, - 0xf3b4f813, 0x000111, 00000000 + 0xf3b4f813, 0x000111 }, { 0x766b751e, 0xa702b700, 0xf9881566, 0xdbbf6549, 0x9edc886a, 0xc77773f0, 0xb7e0cd0, 0xe4bb1e20, 0x39858822, 0x3d08b2a3, 0xe1d48351, 0xba217eb9, 0x3aed3f97, 0x4bff1cdc, 0x58e797b9, - 0x6e5e8e10, 0x000081, 00000000 + 0x6e5e8e10, 0x000081 }, { 0xd8a284ad, 0x1b8d7ec3, 0x9ffd7fd4, 0x9168c4b0, 0xb2a28030, 0x4806179f, 0xe0d32d43, 0xa2be6cf0, 0xfc867a8, 0xd70c855d, 0x6a89aab, 0xe3e3616d, 0xbd0f29e1, 0xf4fd0b5d, 0x4b46cc4, - 0x7d99e7bf, 0x000185, 00000000 + 0x7d99e7bf, 0x000185 } }, { @@ -48600,19 +48599,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcb3053ea, 0xbbb0bb08, 0xe1e1b4b9, 0x804eb11c, 0xe070de27, 0x1dbe9195, 0x1edec1e7, 0x8a80c552, 0xe904978e, 0x5f79aa0, 0x665f9d71, 0x583a1540, 0xa8d48340, 0x9455ac56, 0x504195b1, - 0xd54eb876, 0x000063, 00000000 + 0xd54eb876, 0x000063 }, { 0x8eef7b85, 0xdf4d2dba, 0x6843f7ce, 0x6894280e, 0xf5bb55b0, 0x47b84f22, 0x2f112b9, 0xcfcda395, 0x3d945037, 0x8bfdb359, 0xba39940e, 0x19a0e0f, 0x6e1f206d, 0xc3199e41, 0xcfce537b, - 0xa0289e5, 0x0001c8, 00000000 + 0xa0289e5, 0x0001c8 }, { 0x946e916e, 0xe1b96f72, 0x94b25744, 0xd09b6e1a, 0x98fff19c, 0x6ce6b050, 0x51414991, 0x48e07af0, 0xf6351a0d, 0x1fad9550, 0xb05d2ff6, 0xd0df6906, 0x84374222, 0x5c92d91b, 0x1d850257, - 0xfc47da76, 0x00004d, 00000000 + 0xfc47da76, 0x00004d } }, { @@ -48620,19 +48619,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdfff82b4, 0xdf0f2563, 0xabdcb11f, 0xd3e0d0a6, 0x1ca2a60b, 0x4a64f7dd, 0x81126121, 0xff195d84, 0x1d53e54c, 0x7ea58202, 0x37f08f30, 0x1b47dfa0, 0x6595f4d8, 0x562ec03b, 0xc73a0fa6, - 0x1c2bec5a, 0x0000b8, 00000000 + 0x1c2bec5a, 0x0000b8 }, { 0xa91c9fcf, 0x79325e0a, 0x1e092957, 0xa51a7625, 0x54a5fed7, 0x99d7991f, 0x414cd88b, 0x258eba47, 0x4002d24f, 0xd0767653, 0x9ddd883b, 0x93ba0eb2, 0x860787d6, 0x7b5ab4e, 0xda1954d, - 0xffe4fa68, 0x0001af, 00000000 + 0xffe4fa68, 0x0001af }, { 0xb0eddef9, 0xb2501e68, 0xa5b891e6, 0x56e76dec, 0x65366057, 0x3579bc9a, 0x9e009418, 0x6b549537, 0x87cf8847, 0xcb0aac5b, 0x801aa2e7, 0x3ccbdc21, 0xb1ad1982, 0xacac7c8b, 0x116dffff, - 0xb19b2fa0, 0x0000f3, 00000000 + 0xb19b2fa0, 0x0000f3 } }, { @@ -48640,19 +48639,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x94a95e34, 0x9f5a0d30, 0xd2ba3a, 0xe38a3f60, 0x5503bc62, 0xaa43ee16, 0xcf896a36, 0x2f18bee8, 0x30e11ea7, 0x1d4b3984, 0x8b326765, 0xe8e51b27, 0x4618e983, 0x994c9863, 0xf58c60da, - 0xc9f9b499, 0x0001ba, 00000000 + 0xc9f9b499, 0x0001ba }, { 0x54d8fdf9, 0x19d4d434, 0x3fb01eef, 0x6987768a, 0xa846ca9c, 0xc8aeb89f, 0xae25a48d, 0x593a6fec, 0xc09229cc, 0xf6143d8c, 0x790a46fb, 0x8a0e4cbf, 0x389108b0, 0x59bb38f0, 0x324add26, - 0x71c45946, 0x000010, 00000000 + 0x71c45946, 0x000010 }, { 0xd7f603fe, 0xb2ce23bd, 0x9ba9ec1a, 0xea7ab35a, 0x71238d74, 0xcd7a12b6, 0x39968b3c, 0xabbb4a5d, 0xc1d33551, 0xf3bfc55, 0x764223bc, 0xe229d153, 0xc85a7df4, 0x1d3f5b13, 0x3e76841d, - 0x197747ac, 0x0000b8, 00000000 + 0x197747ac, 0x0000b8 } }, { @@ -48660,19 +48659,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x48b8e393, 0xb2449ff9, 0xa80ced75, 0x1ea07e3c, 0xa1ae4089, 0x5acf9316, 0xb7d1dc03, 0x8086e643, 0x869ff341, 0x458b3e01, 0x851646c6, 0x4febb55d, 0x82d728cd, 0x58720390, 0x27695e17, - 0xa016eedb, 0x000093, 00000000 + 0xa016eedb, 0x000093 }, { 0xf9eb905e, 0x660b4f8f, 0x939c01fc, 0x2c5d1c5e, 0xfabe616d, 0xefb0194b, 0x121465de, 0xe6cf60b2, 0xc8bea047, 0xbd60115a, 0x9861fdd5, 0xb814eeff, 0x7d2283d9, 0xf7d65889, 0x8543ee1e, - 0xfe3c51f6, 0x00015e, 00000000 + 0xfe3c51f6, 0x00015e }, { 0x11fdeb23, 0x12468744, 0x37c6e19, 0x8826aa18, 0xcbe6de2e, 0x82be15bc, 0x2d177545, 0x6bc9aa2, 0x33968aed, 0xe625f125, 0x1620407a, 0x29b4c17b, 0xf4b07892, 0xfba8281b, 0xf657d167, - 0x99a4362c, 0x00001e, 00000000 + 0x99a4362c, 0x00001e } }, { @@ -48680,19 +48679,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5e492992, 0xc2adca20, 0xb9bb0998, 0x5ad98a17, 0x9a00daaf, 0x643b4b1, 0xa61d1221, 0x7f8bc142, 0xc52112c6, 0xfa263d11, 0xde67b9f8, 0xef93ff29, 0xfb8b01d5, 0xca11f821, 0x919a18e5, - 0x3e9577d6, 0x000119, 00000000 + 0x3e9577d6, 0x000119 }, { 0x8c6ddfbb, 0x626ebbac, 0x78372f, 0x38fd50c1, 0x70519f74, 0xefd6518e, 0x3e6ddf06, 0xbb377f36, 0x7b2eacf2, 0xef0419b6, 0x6a6046f7, 0xd08e2a9e, 0xbc873842, 0x13c3fdc5, 0xcd71ca04, - 0xc6717867, 0x000051, 00000000 + 0xc6717867, 0x000051 }, { 0xb1f50e98, 0x26083154, 0xa7241486, 0x224ec856, 0xc30ea90a, 0xdb1f14b3, 0x97c6c19a, 0x238d861, 0x7e070e04, 0x3f7f0ecd, 0x1a6d26a5, 0x56ccb659, 0x3262c4a5, 0x8e033c75, 0xfb872b69, - 0x522afdc8, 0x00013c, 00000000 + 0x522afdc8, 0x00013c } }, { @@ -48700,19 +48699,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf004798, 0x232b5c7a, 0xa791502e, 0xed0508cc, 0xc11a0e8b, 0xa5f8d85b, 0x336716a, 0xc58b66f7, 0x25149610, 0xfabeda15, 0xa39405b6, 0x8e2723cb, 0x46166db3, 0xf594c62a, 0x35a95824, - 0x82cb7ce3, 0x000148, 00000000 + 0x82cb7ce3, 0x000148 }, { 0x8e6373cd, 0x9a54c8e5, 0xf5f02ebc, 0xc2b4bf07, 0xc18a2eb7, 0xa9d93c9f, 0x9fd87721, 0xf8ece536, 0x6916e137, 0x2aa3ea4, 0xbc978186, 0xbd35b65, 0x86672f16, 0x35f2e891, 0xf65008b1, - 0xc6e7fed4, 0x000192, 00000000 + 0xc6e7fed4, 0x000192 }, { 0x70a332c5, 0x9b1a5cd9, 0xadd1a502, 0x18529a8a, 0x34d6ad72, 0xfb30ded4, 0x46256c24, 0xa70f3f64, 0xadc85909, 0x1c4c67c6, 0x4f1dc5cc, 0x541042e1, 0xf818fcfb, 0x8180f047, 0x6851da8f, - 0x4c2237fc, 0x000135, 00000000 + 0x4c2237fc, 0x000135 } }, { @@ -48720,19 +48719,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7f0a9eb2, 0xf923c14f, 0x83cede7e, 0xf4eae580, 0xb26565bd, 0x9837f2e2, 0x25d31884, 0xed501ea, 0xa07310e3, 0x56141d8e, 0x4ca7e7c4, 0xe9740e2a, 0x42a75021, 0xb05c6f02, 0xcb89936d, - 0xe46ddc3c, 0x000013, 00000000 + 0xe46ddc3c, 0x000013 }, { 0x49e10d09, 0xf1701d71, 0xd9ef175f, 0x3d14ab3e, 0x69f5c8dd, 0xbe9d853f, 0xbda8b3aa, 0x739418b9, 0xbf8a96a5, 0xaf0fe69b, 0x75b55af6, 0x2a093efb, 0xe53e3390, 0xa5738749, 0xdd52b6ed, - 0x8d6454b7, 0x00011e, 00000000 + 0x8d6454b7, 0x00011e }, { 0x712399b4, 0xa3407079, 0x5b9de6bb, 0x93e2b5f3, 0xa411765, 0x4bab6fd2, 0x4cdba18d, 0x3eb8dcd3, 0x8db97d8, 0xc428238c, 0x4dadbe60, 0x4b1b7fdf, 0x19c54c8f, 0xc83095fb, 0x6f6894ed, - 0xbb80a9e2, 0x0000e9, 00000000 + 0xbb80a9e2, 0x0000e9 } }, { @@ -48740,19 +48739,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x66141a66, 0x70fa6ced, 0x59069bfc, 0x549a1ce1, 0x58592709, 0x7004b103, 0xdd647822, 0x8efea40e, 0xd483209e, 0xa976733d, 0xf08c1b2c, 0xdd7e4188, 0x72fe0731, 0x2e3d3d98, 0xa4879859, - 0x6d38fc57, 0x000012, 00000000 + 0x6d38fc57, 0x000012 }, { 0x3e666d6b, 0xdd528325, 0xa54af04b, 0xa9d5f30b, 0xd6c6c4cd, 0x734252ee, 0x2e3436f0, 0xee745a6f, 0xf435121f, 0xefa7847a, 0xe4b280da, 0x3d2baa07, 0x1342d34, 0x35b2944c, 0x30f7f870, - 0xeca6dbcd, 0x0001e0, 00000000 + 0xeca6dbcd, 0x0001e0 }, { 0x664549a4, 0x8ea3410c, 0x494341c9, 0xae19efd0, 0x5567c4df, 0xc11ae533, 0xec5206c1, 0xf6de6b9b, 0xc4979bc2, 0xef62761d, 0xe24be93c, 0x4310539b, 0x754e6466, 0x83f76dc7, 0x83478dae, - 0x5e236e5f, 0x000036, 00000000 + 0x5e236e5f, 0x000036 } }, { @@ -48760,19 +48759,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb33fa786, 0x2edb11ef, 0x8da124c4, 0x18257413, 0xb52bd154, 0x98fd6426, 0x68283062, 0xf717d658, 0x1af8cf37, 0x3ac2146a, 0xd861f062, 0xca51012a, 0xd8ab2c10, 0x722aa2f5, 0x1ebe7115, - 0x65319481, 0x00018e, 00000000 + 0x65319481, 0x00018e }, { 0x89c603cf, 0x817e0ab3, 0x969bd3ea, 0x6386b354, 0xa9dc4493, 0x7f38232a, 0x522efb50, 0xe92c2936, 0xf18798d, 0x2b1d28f1, 0x87d6f6ed, 0x43eab1e4, 0x56f303e, 0x2c8a0528, 0x1be19506, - 0xee280f51, 0x0000fd, 00000000 + 0xee280f51, 0x0000fd }, { 0xd289bb6e, 0x174516ea, 0x2674a1c, 0x258c4940, 0x77517d67, 0x2f968955, 0x4378d430, 0xd92d8e50, 0x4c9b7f0f, 0x960cb09, 0xaa140f91, 0x1f5c4781, 0x5dbecff3, 0xfe93c8c1, 0x372bca80, - 0x812c8b79, 0x00014a, 00000000 + 0x812c8b79, 0x00014a } }, { @@ -48780,19 +48779,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5730e0f9, 0x2ca51f0f, 0x2a0cf71c, 0x52a17ede, 0xf703cafb, 0x766140b1, 0x745a4d2e, 0x9002527f, 0xc19e9598, 0x983f9dd2, 0x7d755a76, 0x59d75571, 0xc32d6989, 0xf17e08b0, 0x6562a46a, - 0xf3cf32a5, 0x00008f, 00000000 + 0xf3cf32a5, 0x00008f }, { 0x71d54bdc, 0x70938c4b, 0x38b36126, 0xc3e1448b, 0x7f4b3b6e, 0xcabba1f1, 0x4b23439, 0xaa9017cc, 0xc57f89bc, 0xe9cca8d5, 0xe6c536ab, 0xc03a90b7, 0xeccc6720, 0x2112cc22, 0x710ecc58, - 0xc110f52e, 0x0000ee, 00000000 + 0xc110f52e, 0x0000ee }, { 0xa0a82367, 0x8f08b996, 0xa18ece9, 0x3ef2736f, 0xc65016ba, 0x71d57900, 0x8f8b730c, 0x9e5ed573, 0xc599ecd3, 0x406f1a22, 0x13490b98, 0xc0881208, 0x17545b62, 0x8735a19f, 0x81ed62b3, - 0x94399464, 0x00003e, 00000000 + 0x94399464, 0x00003e } } }, @@ -48802,19 +48801,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc150069d, 0xdc6289c7, 0x5bbe20b5, 0xe73a7ee9, 0x5b04a1d2, 0xee2cf089, 0x9ece5ca4, 0x3a0361a5, 0xe1d5046c, 0xf1c583b9, 0x3b690963, 0x16901ea0, 0xaf634005, 0x134cb5da, 0x1bac8745, - 0xf1bd04f1, 0x0000d9, 00000000 + 0xf1bd04f1, 0x0000d9 }, { 0x72249182, 0x902d0919, 0x44703ef9, 0xe20923fa, 0x3a26b500, 0x3952fbd5, 0x45cedc49, 0x5d09509, 0x7dfc723b, 0xbb15b62e, 0x8c3333c5, 0x46a49455, 0x1e18e155, 0x7f7abaf0, 0x62065e8, - 0xcf5dffd8, 0x0001f4, 00000000 + 0xcf5dffd8, 0x0001f4 }, { 0xf6597944, 0xf2e58ec9, 0x5efb8720, 0xf9f68e9c, 0x3320729f, 0x6083fc5e, 0x39059222, 0xc7803eea, 0xc38f148b, 0x4244b6fc, 0xaf0bc855, 0x48adc2fd, 0xe7ebfa7e, 0xb9cbc021, 0x116124b8, - 0x586d821c, 0x00005c, 00000000 + 0x586d821c, 0x00005c } }, { @@ -48822,19 +48821,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xde2d5d02, 0x83646632, 0x3e4e5994, 0x6d47583d, 0x480e8f65, 0x158fe291, 0x9fb63d29, 0xffece80f, 0x264e7700, 0xead8d831, 0x3d60f821, 0xfd81d005, 0x7a7a9c6c, 0x9bbf95e2, 0xa7e7c22c, - 0x6a8aabae, 0x0000e0, 00000000 + 0x6a8aabae, 0x0000e0 }, { 0x76e2540a, 0xb179186e, 0xaa2c8ce9, 0xc99dbd32, 0x23ff1618, 0x9b3d4be8, 0x23af53ba, 0x9e28fc6c, 0xa99867e5, 0xaa818985, 0x61dce933, 0xcb873f5b, 0x472afccf, 0x1a69a245, 0x74e76889, - 0x11314a15, 0x00009a, 00000000 + 0x11314a15, 0x00009a }, { 0xb7e25a73, 0xd3e5aa28, 0x21098bab, 0xc58b0e2c, 0x4a9971b6, 0x18bf8c9b, 0xfc6eb9e, 0x9874ea36, 0x93af293, 0x7a2a1c8b, 0x51728011, 0xcf9251, 0x41f5c99c, 0x22d000ea, 0x175859c, - 0xd6045fd5, 0x000057, 00000000 + 0xd6045fd5, 0x000057 } }, { @@ -48842,19 +48841,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8412ecd8, 0x6aefa4fd, 0xdbd935c2, 0xfc5279e5, 0x4f04a580, 0xf971a47, 0xfb6c12a2, 0xe8111b13, 0xb6dacd75, 0x5968578d, 0x48afaf0, 0xf962279c, 0x95f7c850, 0xda19d397, 0x9c303401, - 0xbd4c031e, 0x000093, 00000000 + 0xbd4c031e, 0x000093 }, { 0xbeb3858a, 0xd1e3a78b, 0x17b97c50, 0x1844556a, 0xfb481e39, 0x7c816559, 0x550e8ee7, 0x40ca470d, 0x911de0a8, 0x17fc9d93, 0xe11c5b35, 0x8e51a854, 0xe91ddcb9, 0x9123ac0a, 0x4292c86a, - 0x941090e5, 0x0001b7, 00000000 + 0x941090e5, 0x0001b7 }, { 0xb1b240db, 0xab28cc82, 0xf4f35776, 0x1a579ea1, 0x5d0c9acc, 0x84772b4d, 0x8c62b5e0, 0x9f678d70, 0xac56efcd, 0x482c4d63, 0xe797f8d2, 0xf52c7ea4, 0xa2edca3e, 0x89b12177, 0x1de6c2a3, - 0x8df9c1aa, 0x000028, 00000000 + 0x8df9c1aa, 0x000028 } }, { @@ -48862,19 +48861,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x92532582, 0xb9c02ebf, 0x9e93e92f, 0x1db326a8, 0x87ac77c1, 0x7a98680a, 0x6e497a97, 0xcf9ee357, 0xf708d94e, 0xef74fc9a, 0xf4ba912a, 0xd06cff91, 0x908d2aac, 0x3233b047, 0xb146a2a1, - 0x12789569, 0x00007f, 00000000 + 0x12789569, 0x00007f }, { 0x53ac5201, 0x80edc829, 0x740f8ce6, 0xd25a8a13, 0xaab55eb, 0x38058070, 0x4342dd40, 0x96e94623, 0xc16aa890, 0x82892f15, 0x94f7d18d, 0xcdd7112, 0x6a21de26, 0xed6efc82, 0xfe1ebd1d, - 0xf86b28ed, 0x0000cc, 00000000 + 0xf86b28ed, 0x0000cc }, { 0x78930b8a, 0x35fd4c10, 0x9c08bbac, 0x6add536f, 0x5bb234d5, 0x4472179a, 0x59ab90ef, 0x9afddea7, 0xe604dfb3, 0x25059ae0, 0x2c6296c0, 0xa28d1f31, 0xe68c388e, 0x7d2c2c95, 0x2784955c, - 0xa02210f6, 0x0001e5, 00000000 + 0xa02210f6, 0x0001e5 } }, { @@ -48882,19 +48881,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87e8fbdf, 0x1bae4913, 0x6658a047, 0xb818ec2c, 0x1625c9f7, 0x59adbab3, 0x673f6f03, 0x4c6451dc, 0x11523bf, 0x4618a9e5, 0x1bf43785, 0x9df4e100, 0xec131789, 0x50fdcfd3, 0x2842b11e, - 0xc3fd8d15, 0x00004b, 00000000 + 0xc3fd8d15, 0x00004b }, { 0x576218ac, 0x43b25b72, 0x9bab47e, 0x19b0571b, 0xedff63ba, 0x78244971, 0x7e9b4fbe, 0x16252e3f, 0x407b4b34, 0x3f9ea599, 0x617e969b, 0xf82ddd6e, 0x8a62be83, 0xc23d9f72, 0x48fbc260, - 0x2b47ba92, 0x000154, 00000000 + 0x2b47ba92, 0x000154 }, { 0x25fa7474, 0x34cece65, 0xd627dd18, 0x19199947, 0x559b8bc3, 0xeb216009, 0x7d18ec3f, 0x337fe312, 0x3646f2ef, 0x1ddff601, 0xf814cebb, 0x69dbcd1d, 0xd8295d23, 0xea34f62a, 0x1d58c467, - 0x44b29c99, 0x000116, 00000000 + 0x44b29c99, 0x000116 } }, { @@ -48902,19 +48901,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7ebca201, 0x9fa08181, 0x4acde49d, 0xecdf7072, 0xa1407f46, 0x3b8f69d9, 0x121e6cd0, 0xc718605b, 0xdc7ee4c, 0x63c42a17, 0xf8e81f51, 0x5f91c898, 0xa6df88dc, 0xf5d5e6ae, 0xe6a7f83, - 0x88e67f22, 0x000126, 00000000 + 0x88e67f22, 0x000126 }, { 0xbeaba12e, 0x940d7cce, 0x827fd16e, 0x4e91c50a, 0x90074243, 0xdd6f2d53, 0x52bb4521, 0x649b584a, 0xbf2b7b8f, 0x39a00e2f, 0x6406d81f, 0x314fc0cf, 0xbd4bc83b, 0x1e3b9da7, 0x9ee30527, - 0xac21fb3a, 0x000067, 00000000 + 0xac21fb3a, 0x000067 }, { 0x57f078c7, 0x843b1072, 0x5b0c70a0, 0x2ac1c7d8, 0xd6ec7a8c, 0xf08b5e8f, 0x57558741, 0xa292b275, 0x9bc6af8d, 0xafd5ddf9, 0xd18b4dab, 0xb3c23bb8, 0x66002dff, 0x9e27c023, 0x254a6f94, - 0xef22fc45, 0x0000af, 00000000 + 0xef22fc45, 0x0000af } }, { @@ -48922,19 +48921,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4f45973f, 0x14d96ebe, 0x62499523, 0x7dc6667e, 0x8995fb35, 0x3f2894d4, 0x3ddbdee9, 0x8fcdc1a8, 0x5eb356cb, 0x8be9b455, 0x76ffe1db, 0xc81ccca3, 0x64c6f516, 0xe4f790af, 0xc815f55, - 0xa412450c, 0x00004c, 00000000 + 0xa412450c, 0x00004c }, { 0xc80cb0ce, 0xe7abf8fd, 0xd0d6485, 0xbe7103c3, 0x316f89da, 0x6d72b593, 0xa3761387, 0x26611aaf, 0x2c8f6c10, 0xfc216db9, 0xb6d60540, 0x21111c0b, 0xce76a618, 0x6a1fa310, 0x9ef3c3ac, - 0x78b436d6, 0x00013f, 00000000 + 0x78b436d6, 0x00013f }, { 0xa63ebd68, 0x4c62a833, 0x8cc033cb, 0xcc053f62, 0x34fe0947, 0x79c3f994, 0x7f4aeed5, 0xfe4e5465, 0xc2db2736, 0x6cc2e242, 0x10f286f5, 0xc46eb56c, 0xdbbff64d, 0xe0e2f9b5, 0xe554db, - 0xf62c8387, 0x00013f, 00000000 + 0xf62c8387, 0x00013f } }, { @@ -48942,19 +48941,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xba6edc8e, 0xa462bc39, 0xad90233e, 0xca1ba86d, 0xd33c4ab2, 0xc582153a, 0x3f429301, 0x5f238b46, 0x53f01613, 0xb9d22774, 0x6e894977, 0x96e8015d, 0x650d85ab, 0x1f2d2a12, 0xdf5a5548, - 0xfde5e43a, 0x000143, 00000000 + 0xfde5e43a, 0x000143 }, { 0x21ca9166, 0x350d5514, 0xf6b1c150, 0xe265107b, 0x24637e8, 0xb845058e, 0xe3aaf8cf, 0xb332fa6b, 0x1513a90f, 0xb64e3621, 0xb20e4b2e, 0xc6560a79, 0x9cb2cd6e, 0xccd66775, 0x4625ac3b, - 0xab79de67, 0x000195, 00000000 + 0xab79de67, 0x000195 }, { 0xd06d32d8, 0xd91d9f1b, 0x9978cb5a, 0xf04019d6, 0xff36e9cb, 0xacd7db2f, 0xef746d95, 0x290dc763, 0x1ca14364, 0x810ed230, 0x2a7f3daf, 0x7438162, 0x4f7d3261, 0xd9fbddf7, 0x2fca066a, - 0x15535166, 0x000085, 00000000 + 0x15535166, 0x000085 } }, { @@ -48962,19 +48961,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8af6aab5, 0x30aadfb3, 0x46b50778, 0x2b3892d0, 0x4b44e4bc, 0x3ed5e616, 0xbf29c250, 0xb46a1e9e, 0x4ae60fef, 0xcb2fe8c9, 0x87d56b2, 0x1d803b66, 0xa5e0800, 0x186e6434, 0x5c5c4fb4, - 0x945f6e83, 0x00015a, 00000000 + 0x945f6e83, 0x00015a }, { 0x8280a97c, 0xb04e481a, 0x16c39bec, 0x1b9ab62a, 0xa1fb8d22, 0x390e5344, 0x9cda612e, 0xd54bcecf, 0x399fd610, 0x9bf77e8a, 0xa6a3c236, 0xc458d3e0, 0xce5ac92, 0x5212e94, 0x984f13c, - 0xcfae7a01, 0x000190, 00000000 + 0xcfae7a01, 0x000190 }, { 0x3098e2b2, 0x5d9d4926, 0x61c085d9, 0xf7e00c6d, 0x2d9cb50a, 0xa8bf1540, 0x631e26c, 0xa0fb6945, 0xbac7c05, 0x5b822878, 0x6589e57e, 0x81db6d0f, 0x41e2796c, 0xdc4fdc52, 0xdc0a92bc, - 0xc5dd5f19, 0x0001d4, 00000000 + 0xc5dd5f19, 0x0001d4 } }, { @@ -48982,19 +48981,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x615e482f, 0x36fdecf0, 0x7909f9ad, 0xd3319c04, 0xdba4f287, 0x2faa5473, 0xe6eac01a, 0x9e25d3d8, 0x53f3cf96, 0x2d999391, 0x46d0d341, 0x237cfd4d, 0x773e3dce, 0xfb344b4f, 0x227eaff7, - 0xad75bc6, 0x0001d7, 00000000 + 0xad75bc6, 0x0001d7 }, { 0x4c5dca2e, 0x8743cfe1, 0x56fd7093, 0x9990f08a, 0x60747338, 0x3d580b1d, 0xd5af426f, 0x5fc2d171, 0x76ac5d05, 0x8f96331f, 0x37a03ffa, 0x62533932, 0xda5caece, 0x71a0f060, 0x170c31e1, - 0xdd5ee2ab, 0x00010c, 00000000 + 0xdd5ee2ab, 0x00010c }, { 0x59d519f5, 0x204d1950, 0x69ec8689, 0x621a638d, 0xe18875a1, 0xf9dc7cc2, 0xc19d5e1c, 0x16a53c2f, 0x39892347, 0x67b38b82, 0x8df855d, 0x9665d503, 0x51c432c6, 0x69d31294, 0x790a2ba6, - 0xa126c603, 0x000031, 00000000 + 0xa126c603, 0x000031 } }, { @@ -49002,19 +49001,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87e5ca82, 0x9601d250, 0x5bf8c5a9, 0xd9edd79c, 0xae232ba7, 0x811f085a, 0xb35a3dbd, 0x64d79f58, 0x73a81826, 0x602ac37e, 0x4528d34e, 0x4e5efad2, 0x3bbc52fb, 0xcd72746e, 0xd97abb94, - 0x3cb09414, 0x0000f6, 00000000 + 0x3cb09414, 0x0000f6 }, { 0x5b454db8, 0x3030183d, 0x1285da08, 0x40fe41a8, 0x55015154, 0xe7639998, 0xc2d4f0d7, 0x5861fc8a, 0xa198261f, 0xf6e42910, 0x93f4a97c, 0x7164fec6, 0x810284ff, 0x78dc58bd, 0x12fc4530, - 0x6e4bae96, 0x000008, 00000000 + 0x6e4bae96, 0x000008 }, { 0x9b01ffdd, 0xa108ac, 0xbe50298f, 0x96d5850c, 0x2fd2c78d, 0xe543bada, 0xcce61a4d, 0x43f32e6a, 0xfa1841ef, 0x92e5c287, 0x83698211, 0xd4c76ca6, 0xf9c34fe0, 0x8f1f1115, 0x732c76d2, - 0xdcfe0ca3, 0x000172, 00000000 + 0xdcfe0ca3, 0x000172 } }, { @@ -49022,19 +49021,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb72635e8, 0x37f7857e, 0xb9f97f6a, 0x256f99e7, 0x47f970f2, 0x2b3de7ef, 0xf236d6dd, 0x7955fc44, 0x2a56613, 0xd4a43dbd, 0xb9d9e505, 0xcdcf950a, 0x64811bae, 0x10751bd, 0x38b49e98, - 0x75c2519f, 0x0001db, 00000000 + 0x75c2519f, 0x0001db }, { 0xf0e99682, 0x2778e401, 0x77d04c70, 0x81d3cf7f, 0x808f4ff8, 0xc9719927, 0x197c2e5a, 0x386c1648, 0xdb587579, 0xf5c63a99, 0x6493a99d, 0xcc762cbf, 0x4105ca6, 0x8a08ccef, 0x8ffd502b, - 0x26f896c9, 0x0001a8, 00000000 + 0x26f896c9, 0x0001a8 }, { 0xc3fe45cd, 0x49b3f3d7, 0xe9a40b70, 0x31045e3, 0xb5e45680, 0x3f405a25, 0xa1e66746, 0x735fe833, 0x65eea6cf, 0x5a3b96a7, 0x41cabed3, 0x74c8dc32, 0x6a4892f6, 0xf66e27a, 0xb375b818, - 0xb4921f59, 0x0001cc, 00000000 + 0xb4921f59, 0x0001cc } }, { @@ -49042,19 +49041,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc6c412d6, 0xfd86f318, 0xecf7858e, 0x5afd1b8d, 0x9208682a, 0x5b6b4db1, 0x8163acba, 0x68e5bf57, 0x20f2005b, 0x8301fd57, 0x83028531, 0x8a17239d, 0x27472af5, 0x3d553b8b, 0x73cfe89b, - 0xa6f411d8, 0x0000e3, 00000000 + 0xa6f411d8, 0x0000e3 }, { 0x2814a923, 0x16134091, 0x9d36224b, 0xfe9d797f, 0x6208f088, 0x3f46f61f, 0x1643824d, 0x30b49f0c, 0x582f4c05, 0x91dd645a, 0x86df5331, 0xbd719aea, 0x991fbc2f, 0x453c61f2, 0xff445248, - 0xb06dfee6, 0x0000e2, 00000000 + 0xb06dfee6, 0x0000e2 }, { 0x8467f00c, 0xa9167810, 0x70d3b5ba, 0xd24eba33, 0x3b5dc491, 0xd969ff8b, 0x79ec1a51, 0xa2fed0c4, 0x4da695f4, 0x6818711d, 0x9a4b8d9, 0xae35a98d, 0xe0e44d90, 0xdf1848fc, 0xc723e1c0, - 0x7a3efc8, 0x0000ed, 00000000 + 0x7a3efc8, 0x0000ed } }, { @@ -49062,19 +49061,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4a00aa71, 0x393abf03, 0x686745c0, 0x8e3efe48, 0x4c451cd2, 0x6b181e5f, 0xa4317be, 0xca17e31e, 0x815f9648, 0xee946d0b, 0x28eb5ce7, 0xb3d84f01, 0x70e7ca04, 0x772bf09b, 0xcdbb9bae, - 0x2233beb4, 0x0001ec, 00000000 + 0x2233beb4, 0x0001ec }, { 0x7b9832c9, 0x88c131cb, 0xc37b29df, 0xb3d96d5f, 0xf09ce03c, 0xc504d281, 0xac189aca, 0xc6b40b2d, 0xc9be4a8a, 0x696eff41, 0xd6de3841, 0x4cc7d837, 0xa8f42e4e, 0x198b52c6, 0xc309b68e, - 0x3ea5597a, 0x0001fb, 00000000 + 0x3ea5597a, 0x0001fb }, { 0xb49ad3e9, 0x86f7c23c, 0xc64f37f0, 0x6674e9bd, 0xba084c49, 0x96091abc, 0xda327878, 0xbd3d6ca0, 0xca785c24, 0xf6d10294, 0x6d567980, 0xd11534dd, 0xb254023f, 0x57722ec3, 0xbe3b67d5, - 0xfedf6166, 0x00007d, 00000000 + 0xfedf6166, 0x00007d } }, { @@ -49082,19 +49081,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa6146815, 0x795be947, 0xf3c5cf22, 0x9c2c3e, 0x2045e878, 0x941f938d, 0x14cdc984, 0x701b6400, 0xec952929, 0xc133462a, 0x2c8646c9, 0xa94cc05b, 0xa6ace772, 0x21f4a2ff, 0x8da4fc2f, - 0xe84491b9, 0x0001d6, 00000000 + 0xe84491b9, 0x0001d6 }, { 0x18f013a4, 0xba45e286, 0x475efaae, 0xebc0f98e, 0x543a31cd, 0x1199c56a, 0x96bb4f3d, 0x57f61775, 0xb206148c, 0xf8268bc2, 0xfa1fffd9, 0x9870da44, 0xe48d7e7f, 0x5ddee02c, 0x7a115a51, - 0x61c29b4c, 0x000058, 00000000 + 0x61c29b4c, 0x000058 }, { 0x316c4ead, 0x69b346ab, 0x1773897c, 0x6d82a591, 0x7b6fb008, 0x3d272f99, 0xfcb10574, 0xd074286e, 0x393ff2e3, 0x19eda145, 0x80bc4465, 0xca13565, 0x9e69b668, 0x54e73fa0, 0x607a663e, - 0xb3c8ac21, 0x00000c, 00000000 + 0xb3c8ac21, 0x00000c } } }, @@ -49104,19 +49103,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x76f94c4, 0x65a8e9cd, 0x8514f4d0, 0x55deac5d, 0x55fc0ae3, 0xfed0e487, 0xaee5cd5, 0x233f5403, 0xbeaefe98, 0x83d34466, 0x130b67ed, 0xa733d3f1, 0x11025af5, 0x59573a2c, 0x61e1f0c6, - 0x648fc77d, 0x00010c, 00000000 + 0x648fc77d, 0x00010c }, { 0xffca2612, 0xf340890d, 0x6cf4f891, 0x2ec4042, 0x962cbf46, 0xb208a6fb, 0xb8ff616a, 0xa38c8bde, 0x6bb7c77a, 0xae524e59, 0x70214392, 0x57ef428f, 0x9ebf49e6, 0x57143d2c, 0xfb683c89, - 0xca54d51b, 0x0000b9, 00000000 + 0xca54d51b, 0x0000b9 }, { 0x6e5a1612, 0xd29636da, 0x1121419d, 0x244212d2, 0x75291c81, 0xc6506d, 0xcf4f0236, 0xa9fab6dd, 0x3f3270a7, 0x672fe2d, 0x46a84b79, 0x54b3b280, 0x56dd75a0, 0x858c4525, 0x367d8a44, - 0xf31ad1de, 0x0000ae, 00000000 + 0xf31ad1de, 0x0000ae } }, { @@ -49124,19 +49123,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4364d59e, 0xad7bba02, 0x2b72dc79, 0xb0b5e137, 0xedeb267d, 0xd33ede6c, 0x5b696b3, 0x50f1c436, 0x86b3583b, 0xfbb8ae48, 0x62921215, 0x18b10f73, 0x1204698c, 0x6bc25716, 0xafb52ca8, - 0xcb8425a7, 0x0001e7, 00000000 + 0xcb8425a7, 0x0001e7 }, { 0xd6271c01, 0x495aee06, 0xe3a2d72c, 0x81d62501, 0x822d9686, 0x5c3d3942, 0xeffd2b3b, 0x93577e43, 0x8c508363, 0xfdd06996, 0x4bbab67a, 0x7d4c0f3, 0x75e109a8, 0xae784687, 0x257ff0c1, - 0x916a2a, 0x0001fb, 00000000 + 0x916a2a, 0x0001fb }, { 0x87458c36, 0xcbd63382, 0x49c94961, 0xd82770da, 0x116d87a3, 0xd9b2ac3f, 0xd1e305bb, 0xcf063118, 0xe7da9e47, 0x75b63f60, 0x481ba35c, 0x24593d88, 0x5a455ce3, 0xc41d1e7, 0xe6e29962, - 0xf68c7675, 0x0000a3, 00000000 + 0xf68c7675, 0x0000a3 } }, { @@ -49144,19 +49143,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa281ca5c, 0xbdbd4180, 0xbb031e7c, 0x281c0fe6, 0xbed9d339, 0xdce1b4f3, 0xe92476c0, 0xa6d39c6f, 0x3093c86b, 0x9e662bb6, 0xdc35dd30, 0xc6d6eec8, 0xb2956380, 0x23a95e99, 0xceb4416, - 0xd7456351, 0x00011b, 00000000 + 0xd7456351, 0x00011b }, { 0xc09dabcf, 0x91de5814, 0xf118cffc, 0x200d29da, 0x2cac4659, 0xa84cbe2e, 0x729d9440, 0xdf6b123e, 0x57d677b7, 0x56e0a119, 0x2af08181, 0x7b143c6f, 0xd0185959, 0x47ffbe7a, 0xb941e976, - 0xe338d8d9, 0x00006d, 00000000 + 0xe338d8d9, 0x00006d }, { 0xb956d37d, 0xfb379468, 0xd144335, 0xbca1ba1, 0x2de004c3, 0xeb41aa0e, 0x97b66a33, 0x7bb1d8f4, 0xe281912d, 0x49054160, 0x32d0d02d, 0x15a94703, 0x6f77cc55, 0x9c037591, 0x21520b0c, - 0xccfe4b08, 0x000183, 00000000 + 0xccfe4b08, 0x000183 } }, { @@ -49164,19 +49163,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb65d27f1, 0xc2b8bde4, 0x50e10863, 0x89ce2226, 0xc65c62b2, 0x97f862be, 0x79a94917, 0xce0d4618, 0x1592f0d6, 0x9420e382, 0x57a89c38, 0xa305dff2, 0x64e86c32, 0x34dbc6f7, 0x15eeaf96, - 0x858e2fef, 0x00015c, 00000000 + 0x858e2fef, 0x00015c }, { 0x5c3c154a, 0xc9461a0b, 0x11e26afa, 0xebd7d57b, 0xe5c5bb41, 0x978d1163, 0xffba7f1f, 0xb209837e, 0x2ea09f71, 0xff811b56, 0x6cbe0e26, 0xa3e386f9, 0xf5be4a17, 0xa99ae458, 0x4705547c, - 0x50c4cbb6, 0x0001dc, 00000000 + 0x50c4cbb6, 0x0001dc }, { 0xb3e5b9df, 0xbb85be25, 0x3543254d, 0xb9366f82, 0x2ae07812, 0x72a1ebf1, 0xe9765e52, 0xb2f5f772, 0xd1ff1874, 0xf8d3a43c, 0xf82f2cf4, 0xb545cbb7, 0xe4fb797f, 0xa5488887, 0x3cbfcb44, - 0xf6e841a5, 0x0000c7, 00000000 + 0xf6e841a5, 0x0000c7 } }, { @@ -49184,19 +49183,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeefda5b2, 0x68225809, 0x6e8c0333, 0x5405e7c4, 0xf0939c90, 0xba0c37fe, 0x86b37355, 0xb671393b, 0x2fda0d49, 0x6d934fcd, 0xf20a25b0, 0xed6bb860, 0xf73bee5, 0xdb9a8fe4, 0x3482884c, - 0x4b650453, 0x000088, 00000000 + 0x4b650453, 0x000088 }, { 0x5dcbf5d2, 0xe56c81c8, 0xbb396875, 0x4ad4f5fe, 0x783fc074, 0x5a50cc8a, 0x7ccab070, 0x85595dbc, 0x8399d82, 0x9eb4be32, 0xbbebdc34, 0xb6634c14, 0x6b54cf7e, 0xf6b0e591, 0x623c80b4, - 0x9b22b6e8, 0x000026, 00000000 + 0x9b22b6e8, 0x000026 }, { 0x1eef85c0, 0x76f1ea1a, 0x64d0be4f, 0xa4bb559b, 0x5f02d672, 0x2e87afbd, 0x5309b2b2, 0x7c9f63eb, 0xad721596, 0x5e2dd41c, 0x28b0cded, 0x68fe1bd5, 0x28696871, 0x3689ace2, 0x6596c55c, - 0xc988616c, 0x00003b, 00000000 + 0xc988616c, 0x00003b } }, { @@ -49204,19 +49203,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb66b1e78, 0x37c07628, 0xb80ae8e0, 0x39f05f76, 0x3c99b686, 0xe87b5737, 0x72872fee, 0x80640cd8, 0x56281a2f, 0x9bfcf74d, 0x1c542888, 0x86d28e50, 0xdff5de00, 0xebe1c1c0, 0x6dd6ce54, - 0xea500168, 0x000130, 00000000 + 0xea500168, 0x000130 }, { 0x2915f17e, 0x68a32125, 0x700911b, 0xd38ebb8, 0x34eef8c4, 0x1fc52c87, 0xf02657b9, 0x3639954c, 0x42e26439, 0xab43aa01, 0xdb4d5ef, 0xed56ffc6, 0x7d513165, 0xa94f53c7, 0xff8ac2ac, - 0xf81974b3, 0x000120, 00000000 + 0xf81974b3, 0x000120 }, { 0xd822933e, 0x158605c4, 0xe341c57b, 0x6525de55, 0x625f662a, 0x4cfd6c78, 0x51a3cb71, 0x3f3a6b43, 0xe44481aa, 0x6320cb25, 0x2defe9b, 0x5ec6b111, 0x2272c376, 0xa056a25d, 0x280a2e9e, - 0xa80eebb5, 0x0000ad, 00000000 + 0xa80eebb5, 0x0000ad } }, { @@ -49224,19 +49223,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x60fcfa8f, 0x18548d91, 0x5016ec6b, 0x5d91283c, 0xa2fb8a3b, 0xa5b4d8e9, 0xb44be91d, 0xc6f51b4b, 0x5c7f7719, 0xb94f48bb, 0xef5ef571, 0xfc9b6ec1, 0x9f4d9756, 0x92b3da7e, 0x7aec8ccc, - 0xd1972423, 0x000195, 00000000 + 0xd1972423, 0x000195 }, { 0x618bc340, 0x98196628, 0x5cff83f, 0x9e55fa03, 0x91138c67, 0xd7c4f13d, 0x49d056ee, 0xb0aa8ce5, 0x57d8d9f9, 0xf5241252, 0x8a230aa6, 0xf069651c, 0x46725519, 0x36e9913b, 0x27e166a, - 0x1e3fd7f1, 0x0000aa, 00000000 + 0x1e3fd7f1, 0x0000aa }, { 0x81caa79b, 0xde3c09b5, 0xe8d3375d, 0xbf3e00b, 0x5443276b, 0x1e1a0bc4, 0xeaf48d56, 0x7211bacc, 0x55785858, 0xed5d936e, 0xd2f94f6f, 0xf0f5d017, 0xc4705afe, 0xd67b027c, 0xb426c50c, - 0x1f823588, 0x000186, 00000000 + 0x1f823588, 0x000186 } }, { @@ -49244,19 +49243,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1396532d, 0xf7d728c2, 0xcb5e4b4, 0x9674793f, 0x571df148, 0x4dc678b8, 0xf1cf1994, 0x576e1c35, 0xf0fa2054, 0xd38bd5a, 0x88fc396d, 0x4d924973, 0x2d84a508, 0x4ef53b0e, 0x35107019, - 0xcf1027de, 0x0001bf, 00000000 + 0xcf1027de, 0x0001bf }, { 0xf39e5737, 0xd35bd651, 0x3ec0e855, 0x74a399e7, 0x1c710561, 0xd5d65cc, 0x580639eb, 0xc035a6b4, 0x4feda65e, 0x337a55ca, 0x134530e0, 0xf54a00ee, 0x34a68370, 0x5cb8600c, 0xa66a7475, - 0x14724e1, 0x0001aa, 00000000 + 0x14724e1, 0x0001aa }, { 0x5ae808b2, 0xb6e97536, 0xdb522353, 0x215ed842, 0x2a5bc48e, 0x1a10775b, 0xfac2bd55, 0x8214c8f8, 0x3d375cc5, 0xcf2b0da7, 0x434293e8, 0x88ebd27, 0x6927b27d, 0x3bdc31fc, 0xa3925870, - 0x67fc986a, 0x0001e5, 00000000 + 0x67fc986a, 0x0001e5 } }, { @@ -49264,19 +49263,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xebba0704, 0xe70033b3, 0x20f10a3b, 0x1796c686, 0x64bbdc30, 0x5088b4c7, 0x9d5ff81a, 0x7a03dfc9, 0x830842b3, 0xb87cdecd, 0xeaef1aa, 0xc46827b0, 0x99be8057, 0x67257798, 0x55d9e633, - 0x4cf6b4ce, 0x0000e4, 00000000 + 0x4cf6b4ce, 0x0000e4 }, { 0xf7020ccb, 0xd062450e, 0xf491467f, 0x85a07f35, 0x767d5c82, 0xf85f6158, 0x31e40c9f, 0x509498b1, 0x2ff87b94, 0x6d59f606, 0xd873dde9, 0x44811e56, 0xcfc64d69, 0x1509e87, 0x29acf7a2, - 0x33575584, 0x0000c0, 00000000 + 0x33575584, 0x0000c0 }, { 0x8deeab51, 0x9bb41252, 0xd40b1e3d, 0xa309c4c6, 0xabec8046, 0x55e3d75d, 0x1b5dd8b4, 0xba0bca03, 0x402f6f5, 0x8b6b4f15, 0x56c024b1, 0x2fbba0c9, 0xf8478a63, 0xf8ad9619, 0xff4e32b9, - 0x1ae037c1, 0x00015a, 00000000 + 0x1ae037c1, 0x00015a } }, { @@ -49284,19 +49283,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7ef9039b, 0xeb3de5b6, 0x77bd842e, 0x7c10716f, 0x2a2e6303, 0xcbb4a694, 0xf50ddc6b, 0x5c2e9268, 0x81cd54f0, 0xdd7ffd64, 0x4dbde330, 0x4645e54a, 0xc3cbc3ff, 0x63e8a646, 0xd570610, - 0xb3b2f873, 0x00015a, 00000000 + 0xb3b2f873, 0x00015a }, { 0xbf144ecc, 0x514ba801, 0x4f95cb47, 0x85ae4dab, 0x8890766d, 0x2f9937c2, 0x7ee80226, 0x57298275, 0xe35d1965, 0xc4d21a92, 0x6bff8938, 0x1edb1599, 0x10404692, 0x444935bf, 0xe02a5d70, - 0x7a8a930, 0x000099, 00000000 + 0x7a8a930, 0x000099 }, { 0x6bbdbfcc, 0xb66d5c13, 0xac716e8a, 0x6dfa91e6, 0x2a045cf8, 0x59c6f54a, 0x637d4cf2, 0x340e5ae1, 0xb31132f5, 0x4b4d3283, 0xb025e664, 0xe6915352, 0x1b7bfea9, 0x9f571d31, 0xe68496e0, - 0xbef5d286, 0x0000b1, 00000000 + 0xbef5d286, 0x0000b1 } }, { @@ -49304,19 +49303,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x41a52b3f, 0xe7d2f723, 0x65afb3f2, 0x6d99c75e, 0x91542dfc, 0xb92d5b2b, 0x1bd68423, 0xdb15b078, 0x62c891bb, 0xbf5266b0, 0x4e832104, 0xa4c2af34, 0xf9b5303d, 0x1a04b042, 0x9a522eb3, - 0x85c43849, 0x000193, 00000000 + 0x85c43849, 0x000193 }, { 0x5e702c4d, 0xcc2d5a2e, 0xabc08ad6, 0x3d9c4d80, 0xf193c161, 0x54574729, 0xefd8d4c6, 0x806be8ae, 0x5be51d68, 0xaa60a5cd, 0xd6f2f124, 0xc1757392, 0x93e50615, 0x94fc1360, 0xcbadb286, - 0x4fc86ad9, 0x00013d, 00000000 + 0x4fc86ad9, 0x00013d }, { 0xddd54fb3, 0xfc7cf822, 0xe2e27291, 0xe22337a5, 0x902db934, 0xfeedbfdf, 0x186776d0, 0xf3a275be, 0xac613e5d, 0x39526943, 0x68ee46af, 0x8b337df7, 0xdd8f9045, 0x91dce7ac, 0xd534f2a7, - 0x17670c6a, 0x00006a, 00000000 + 0x17670c6a, 0x00006a } }, { @@ -49324,19 +49323,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x10b653f3, 0x38590c60, 0x91bcddb9, 0x32b74ace, 0x28073d4a, 0x5c26a000, 0x3daab253, 0xb08ebc78, 0x437b065c, 0x93e32ce0, 0x5102fa80, 0x8f051ef3, 0x39cee63e, 0xbca38114, 0x42beafba, - 0xb9464181, 0x0001be, 00000000 + 0xb9464181, 0x0001be }, { 0xe7cdef2c, 0x91b8fe59, 0x4a8a1ad4, 0x4596334a, 0x34613108, 0x13e52a79, 0x4a4433a8, 0xa565011a, 0xf4b78e17, 0xed477c4e, 0xa10d29f2, 0xd4b1f5ed, 0x16275d60, 0x156d259b, 0xd4d6445d, - 0x35d1ffc6, 0x0000b2, 00000000 + 0x35d1ffc6, 0x0000b2 }, { 0xc3a6479, 0x2ed92fea, 0x72b46107, 0x856ad0c4, 0x1092eb8d, 0xd78ad35b, 0xc0367d9a, 0x1b55ba8f, 0x9e3e2d87, 0x1fc5278b, 0x7e3dd0b8, 0xfed355e6, 0x8211e9a1, 0x9ddc8b6, 0x5dfa11ca, - 0xf801c19f, 0x000060, 00000000 + 0xf801c19f, 0x000060 } }, { @@ -49344,19 +49343,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb5ed88e2, 0xa353dcfc, 0x396d038e, 0x1975e801, 0x7436e9e4, 0x8fe158bf, 0x1a15dc87, 0x7bcc0013, 0xf7b7d99, 0x97c16900, 0xe5de2956, 0x1496a99c, 0x7da6b626, 0x882b46b3, 0xa8f8e335, - 0x858fcc3a, 0x00007a, 00000000 + 0x858fcc3a, 0x00007a }, { 0xf0f3df91, 0x400d8239, 0x72918912, 0x6c391e5d, 0x1022fddc, 0x8561c3ef, 0xca7a8fde, 0xdc84e46e, 0x1a7423db, 0x4ad7847d, 0x367fa2a3, 0xea15d9cf, 0x9e187d37, 0xbcfecbf4, 0xcd630d7d, - 0x7dc03494, 0x000070, 00000000 + 0x7dc03494, 0x000070 }, { 0xdfaca69f, 0xb4d669ed, 0x558c13f2, 0x2ba20843, 0xd5c5995b, 0x14d2fd49, 0xc93053e1, 0x8bcb644a, 0x1f9ce986, 0xc2d35c66, 0x2c702578, 0x30e9d4df, 0x11e0970, 0x4a984558, 0xbbe63c15, - 0x756e1cb5, 0x000089, 00000000 + 0x756e1cb5, 0x000089 } }, { @@ -49364,19 +49363,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x136eb90e, 0x14c49e41, 0xc4c7bc1e, 0x4ea35697, 0xe48a92af, 0x1bd07b8f, 0x515fe084, 0xc84f1081, 0xde926425, 0xffd57700, 0x88159f47, 0x1fe7f6ce, 0x1a3d429f, 0x3abe6098, 0xe4513b03, - 0x6e6e96a2, 0x00002b, 00000000 + 0x6e6e96a2, 0x00002b }, { 0xa733b001, 0xf3491168, 0x6de2f09e, 0x3118b9c8, 0x651230eb, 0x2177cfd0, 0x1d8ffbad, 0x26068a8, 0xb1ea1244, 0xb1ccd543, 0x887c4416, 0x6feed55d, 0xd996705, 0xc69e4d71, 0x6332b8f3, - 0xe7a04fda, 0x0000a1, 00000000 + 0xe7a04fda, 0x0000a1 }, { 0xa62602de, 0xe8f660d9, 0xe976a7d0, 0x2305cebc, 0x6f6a7413, 0xd39e4b66, 0x8678881, 0x873fc632, 0xc8563081, 0x66810bca, 0x1419462c, 0x6c563316, 0x52f8dcc0, 0x17bff0c6, 0x7d717cbf, - 0x967dc74f, 0x0000c6, 00000000 + 0x967dc74f, 0x0000c6 } }, { @@ -49384,19 +49383,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa6f4d16c, 0x4864d3d4, 0xf0a5cfed, 0x9e9d86aa, 0x660d2891, 0x886407f1, 0x93fb32b0, 0x571225b9, 0x4acd973f, 0xba8b0be4, 0x3b6a5d6a, 0x4726640b, 0x775ff1dc, 0xd00efcc8, 0xdc59e023, - 0x9fc614a7, 0x00003e, 00000000 + 0x9fc614a7, 0x00003e }, { 0x4aba1bad, 0x17eb430b, 0x63d0b1d4, 0xa3c84813, 0x7752f61, 0x3220804d, 0xf75e2518, 0xecccffa8, 0x9b5a9927, 0xe2d123f0, 0x304ee6a8, 0x995b9d54, 0x77be0237, 0x50faf670, 0xb93f1be2, - 0x4661a1d8, 0x00015f, 00000000 + 0x4661a1d8, 0x00015f }, { 0x6803f594, 0xffb160ef, 0xbcf9635a, 0x60469190, 0x320217f2, 0x52616780, 0xe6ffc1a9, 0xdeeca85f, 0x2ebb1b99, 0xbf4654b1, 0x99d42f78, 0x2cd2fc70, 0x41d2ade2, 0x9cc2c02a, 0x64b566d8, - 0xd7ba035c, 0x0001cd, 00000000 + 0xd7ba035c, 0x0001cd } } }, @@ -49406,19 +49405,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4e1140b, 0x293708be, 0x71c7c35, 0x45d4c534, 0xe3c99d99, 0x106ec5a0, 0xbd4c2f33, 0xb78a3a56, 0xad419fd5, 0x39dabb28, 0x4d56e9c7, 0x4c0f8745, 0xaeb06717, 0x46ccdba3, 0x9dd06858, - 0x49bc0134, 0x0000a0, 00000000 + 0x49bc0134, 0x0000a0 }, { 0x125b9a92, 0xfb3e8600, 0xa8ae882e, 0x88698118, 0xc9e95fec, 0x972f4abd, 0xcf13d940, 0xaa429bb3, 0x5b230520, 0x8866c1ff, 0x70e55c07, 0xda993ebc, 0x211bbf7c, 0xa9500784, 0xe81ebb2, - 0x5067cbd4, 0x00013d, 00000000 + 0x5067cbd4, 0x00013d }, { 0xcaa6c44, 0x8e7480dd, 0x71503ae8, 0x493c0da0, 0xc52d5280, 0x29f922f2, 0x3486fd67, 0x997ba102, 0x81f8280a, 0x2fe9a088, 0x27919f97, 0xd68c0606, 0x6ab5d3ca, 0xbe07a46c, 0xaf89abb6, - 0x64dbe3dc, 0x000028, 00000000 + 0x64dbe3dc, 0x000028 } }, { @@ -49426,19 +49425,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x85e95d3f, 0x90b02667, 0x1427275c, 0x9c274e33, 0xb3807900, 0x65a95e92, 0x5c1fa09e, 0x8f5594b0, 0x56b646fd, 0x8bc5c75, 0xcab4f8ec, 0x64754f13, 0xdef9e922, 0x7aa56805, 0x78241df2, - 0xfa261ac9, 0x00012a, 00000000 + 0xfa261ac9, 0x00012a }, { 0xdb122ba6, 0x20eb390e, 0x448d8432, 0x633affb7, 0x54ad8a0, 0x8a0b2691, 0x5fd168de, 0x9942806f, 0xf82fd97b, 0x7d726176, 0xfd073c30, 0x44debbad, 0xd2ed32, 0x95c21d7, 0x88f7d734, - 0x552d5248, 0x000052, 00000000 + 0x552d5248, 0x000052 }, { 0x38b9df0e, 0x8ee02ce0, 0x69d58626, 0x6d544bd8, 0x7c1cf818, 0x93e227f2, 0xc09d267c, 0x358319c1, 0x413470a, 0x51958f94, 0x1345f02e, 0xeae36f0, 0xeb05dcd0, 0xd0b3df53, 0xfb604955, - 0x6e8e12c3, 0x00018e, 00000000 + 0x6e8e12c3, 0x00018e } }, { @@ -49446,19 +49445,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd942e804, 0x8f8db6ef, 0xc464cb68, 0x9ef08277, 0x9077e219, 0xda4f8812, 0x32a898e1, 0xc2c3296, 0x19b24174, 0x1c80fa90, 0xe32d243f, 0x335b406b, 0x1ea15dc9, 0xdbed4e3e, 0xa09b8fc9, - 0x8a0e58e2, 0x000061, 00000000 + 0x8a0e58e2, 0x000061 }, { 0x2e405475, 0x363a6196, 0xa6b670c9, 0xfcec76c5, 0xc8665679, 0xdc08a76f, 0x8518b834, 0xb4d9a07, 0x424df30a, 0xf1384bbc, 0xa8f93b0a, 0xbea4a610, 0xb5d92d5a, 0x777f2cb0, 0x105eb1c, - 0x64bb4c6f, 0x000023, 00000000 + 0x64bb4c6f, 0x000023 }, { 0x406d4752, 0xf528f671, 0x56bf5cbf, 0xb18c8765, 0x7cafcd22, 0xcb6f71ad, 0x81e2655f, 0x4e8009af, 0x19c42ff7, 0xc09b574b, 0xce80e2df, 0xd7b32a93, 0xf5a8ebb8, 0x99525d46, 0x91789268, - 0x4f916902, 0x000193, 00000000 + 0x4f916902, 0x000193 } }, { @@ -49466,19 +49465,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4b142ddf, 0x9b440a12, 0x3531657, 0x318acce8, 0x9df606f7, 0x72887324, 0x5dab065c, 0x47cd0b89, 0x25ec546b, 0xc365ba56, 0xa85b745c, 0xb0960965, 0x1c4613a3, 0x9c60869f, 0x1daf62be, - 0x87c1b3e7, 0x00006f, 00000000 + 0x87c1b3e7, 0x00006f }, { 0x868aa6b0, 0xf9c62a8f, 0xc156c0ee, 0x95a5cd26, 0xb9674c0c, 0x9955182b, 0xacc1c0cb, 0x672b6b8, 0x5ccd4eed, 0xb9204ce0, 0x2ca892b8, 0xb9b51ad8, 0xa4f5c94d, 0xf1e402, 0xc4fe12f5, - 0x99651361, 0x000161, 00000000 + 0x99651361, 0x000161 }, { 0x6dbdaf49, 0x8ee14398, 0x5dc61494, 0x5d84b5a, 0x2ffe35eb, 0x23def25f, 0xa008f1b, 0x4ed5909c, 0x3ac0eabe, 0xd6bbfcc9, 0xbccbdefc, 0x8ea330e1, 0x4f3572a0, 0xe3038e5c, 0x5f4d8a59, - 0x929a1062, 0x0001f8, 00000000 + 0x929a1062, 0x0001f8 } }, { @@ -49486,19 +49485,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xca353d8e, 0x35877027, 0x794848df, 0xee9347f7, 0x7a3f0835, 0x2551d2ae, 0x7ce7f3b8, 0x3710956d, 0x42b13d07, 0x2c19107f, 0x2400c6f0, 0x9d2143ba, 0x8d1bf539, 0xc5f9d0e7, 0x3b76d8ce, - 0xf12c5558, 0x0001da, 00000000 + 0xf12c5558, 0x0001da }, { 0x6f7e4b59, 0x7754b0cc, 0x921ae16a, 0xc3c6931, 0x4f652b66, 0xdcccba57, 0xc5c9d374, 0x5bae8a7b, 0x3e096b13, 0x533f27d2, 0xdc3ae26f, 0xcef0a803, 0xbbc85d4f, 0x55398881, 0x9882dbdb, - 0x6e8f667c, 0x0000d4, 00000000 + 0x6e8f667c, 0x0000d4 }, { 0xb2fd9048, 0x1bad9567, 0xbe1e047b, 0x16df7b16, 0x2d47b153, 0x3a1bd292, 0x2d3f7251, 0x2c524932, 0x6dcea5c7, 0x3961e5fa, 0x51ddc8fc, 0x620df604, 0x4a3cb4ae, 0x70d04965, 0xeacb9fad, - 0xd9d4ec92, 0x0000d2, 00000000 + 0xd9d4ec92, 0x0000d2 } }, { @@ -49506,19 +49505,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x61c90e30, 0x7dbc6647, 0xc21f8fd8, 0x509bce7e, 0x53f836b9, 0xf6909217, 0x6d66268e, 0x6fe28e5f, 0x5386168c, 0x647dc94a, 0x6acf98b0, 0xf4edaf87, 0xfcb1322d, 0x9b1964a9, 0xb914f17e, - 0x18294370, 0x00005d, 00000000 + 0x18294370, 0x00005d }, { 0xa9fcaf56, 0x95a4ecfa, 0x3ec6241b, 0xbfd442a8, 0x5cf0d156, 0x3c481082, 0xa6886999, 0xbef8471b, 0x143349ca, 0xa468a265, 0x901cc206, 0xd4745233, 0x244508b0, 0x5e3a145b, 0xdae9dce7, - 0x68d60cb9, 0x000058, 00000000 + 0x68d60cb9, 0x000058 }, { 0x4937bcee, 0x2a24edb5, 0x756188a5, 0x85e7ff84, 0x2bfb36df, 0x543eca5c, 0xe63cb059, 0x63717be5, 0x356046ae, 0x9a78e63f, 0x76058dea, 0x2acc920c, 0xf42f0bd2, 0x1fa15ee0, 0x22857cbd, - 0xf4f505e9, 0x000075, 00000000 + 0xf4f505e9, 0x000075 } }, { @@ -49526,19 +49525,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x94d71cb6, 0x70fd3ea, 0x1d556661, 0x2da4a65f, 0xb6876179, 0x1f80b582, 0x38e92264, 0x9a4703a6, 0xd1d0645b, 0xc6072bd9, 0xff76b9f7, 0xa431b917, 0xb88a1f1b, 0x7348f28d, 0x25e93d46, - 0x9a2634a1, 0x0001e5, 00000000 + 0x9a2634a1, 0x0001e5 }, { 0xc88ff8c8, 0xd76c430a, 0x1e82c619, 0xa54da048, 0x7256d41f, 0x4ba30f13, 0x11c7687b, 0x58cf7b92, 0x53819d07, 0xc842353a, 0x810effe7, 0x3d6dc862, 0x28f4545f, 0xe42452af, 0xf829a4fa, - 0x3436904b, 0x00009a, 00000000 + 0x3436904b, 0x00009a }, { 0xf777fbac, 0x6692c69e, 0x44a0a1ca, 0xb05108db, 0x22b92dad, 0x8a172f6a, 0x4b7627ba, 0xa49c18b1, 0x96e9bac0, 0xe487e974, 0x132464f3, 0x738089ed, 0xe7405fcf, 0xbf518d9c, 0x3f9d87d, - 0xb674ae1b, 0x0000cd, 00000000 + 0xb674ae1b, 0x0000cd } }, { @@ -49546,19 +49545,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x98d59e4c, 0xcc6fcc83, 0xcad6f7bb, 0xdbea211a, 0x17c3445a, 0x563e160d, 0xe3052685, 0x78599a38, 0xd68ce9b9, 0x5f12002c, 0x19e74706, 0xeea57e4d, 0x7b19fff3, 0x4ae14d1e, 0x9437b84c, - 0xe288c389, 0x000104, 00000000 + 0xe288c389, 0x000104 }, { 0x20d16667, 0xd22d99cf, 0x8e3b6d18, 0x9ecd841, 0x860783f2, 0x8aec421a, 0x2753169d, 0xc571b529, 0x46290236, 0xcacdcf82, 0x400993e1, 0xe29e02ba, 0xac2879f8, 0x599fd405, 0x443a6efd, - 0x6c95c393, 0x0000ea, 00000000 + 0x6c95c393, 0x0000ea }, { 0x9841c4b0, 0x33bd67bd, 0xad26aa7d, 0xce63649, 0x54227022, 0x7ca43142, 0x424e593e, 0xfeaaf30c, 0x8a3ff1a1, 0xaffaf5ea, 0xfdf61075, 0xb3ea9a04, 0x15e173bc, 0xea5bb2b4, 0xce9a6052, - 0xb086ad0, 0x00019f, 00000000 + 0xb086ad0, 0x00019f } }, { @@ -49566,19 +49565,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x50a6db9f, 0x724cce05, 0x3d402a0, 0x7fe83336, 0xc6d6bc52, 0x5755c813, 0x79590b67, 0x842b8d49, 0x7a9c32a4, 0x6d38f7b8, 0x8d865e4c, 0xb4c01e61, 0x912f7062, 0xd6d50bb6, 0x1a3fb2f5, - 0x94f8010e, 0x000106, 00000000 + 0x94f8010e, 0x000106 }, { 0x1c59933a, 0x3022e3a7, 0xc9e90dc, 0x5dcb9f3c, 0x739538a9, 0x8e626ee7, 0xf4f01958, 0x1b18276e, 0x7e09e1a1, 0xe339e317, 0x27318e02, 0x564765d2, 0xe6c4ce47, 0xa5669bda, 0xa73a04c0, - 0x9fa784a5, 0x000099, 00000000 + 0x9fa784a5, 0x000099 }, { 0x9a2bd000, 0x15943a40, 0x55e95f5e, 0xe1078409, 0x5a0e0c17, 0x720c32ff, 0xe6c36452, 0x4aa2bc73, 0x38dab04d, 0xef167f19, 0x9fea5930, 0x516f3137, 0x8d5d1861, 0x66423624, 0x822e984c, - 0xa1e47114, 0x0001c5, 00000000 + 0xa1e47114, 0x0001c5 } }, { @@ -49586,19 +49585,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa4f4ce0c, 0x4de0e3dc, 0x81e537c0, 0xbab2a5e2, 0x9756eb58, 0x2aa7e946, 0x8e507a85, 0x6fba6fb2, 0x6e1db677, 0x961117e2, 0x96ee0a97, 0x8ebc014b, 0x30752e6a, 0xbea67cf6, 0x925ca277, - 0x3d8e26ca, 0x000043, 00000000 + 0x3d8e26ca, 0x000043 }, { 0xa5d0be2b, 0xbad08ac5, 0xfd79ebd7, 0x592db787, 0xba0d8042, 0x9d068799, 0xcb41aca6, 0xb6429d10, 0x4833f1cf, 0xf989c359, 0x973baad6, 0xf3fd6de5, 0x62afb702, 0xa6676579, 0xcf9a8539, - 0x82f11eb5, 0x0000bd, 00000000 + 0x82f11eb5, 0x0000bd }, { 0x8045131a, 0x638f195, 0xf9182bd, 0xe9beca00, 0x6fd1f598, 0xd7b207c, 0x98a3bf4c, 0xcda0e57a, 0x2d2eb695, 0xe70d7343, 0x4f7bcdde, 0x9ba0da75, 0x23005ac9, 0x400d3d0b, 0xe6ee3a90, - 0xd71b5646, 0x00005e, 00000000 + 0xd71b5646, 0x00005e } }, { @@ -49606,19 +49605,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeff7fd44, 0xe49c4ec3, 0x85b9dcd0, 0xfcc2c654, 0xaaaf8fa0, 0x3cec0e46, 0x5d27771d, 0x36f3e6f7, 0xd678d0ed, 0xfedb0e59, 0xf635c0f3, 0xcfa0c217, 0xfe63abe7, 0x2f7908d8, 0xd4352f78, - 0xbda7199f, 0x000033, 00000000 + 0xbda7199f, 0x000033 }, { 0x69adb9c4, 0x1727438c, 0xbc257d05, 0xa8ec7f2e, 0xe0d318f4, 0x9bdbb31b, 0xb2014ead, 0xd0b023f5, 0x12838491, 0x78a30827, 0xd7ed2f6d, 0x8902ae49, 0x71842ae3, 0xb39cc0bf, 0x7ae07d2e, - 0x3da5cde5, 0x000003, 00000000 + 0x3da5cde5, 0x000003 }, { 0xc3fe3d36, 0x7ada8c4b, 0x1ce737b5, 0x12378ccd, 0xd6cf856b, 0xeeacf50c, 0xd951776b, 0x9ecdbf09, 0x55a6c9eb, 0x67e11d7, 0x2e4c0fb0, 0xaa507938, 0x9390c1f1, 0x7b0b1cd8, 0x349f6842, - 0x1e598164, 0x000163, 00000000 + 0x1e598164, 0x000163 } }, { @@ -49626,19 +49625,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8ce8895, 0xca70fec9, 0x81f7292b, 0xe33dbafa, 0x7345eff, 0xe7d2e80f, 0xd7acb518, 0x1c88aef1, 0xdb1b5bc0, 0x767fcbab, 0xcd845cf, 0xd5022760, 0xd449c0f4, 0x5d539998, 0xfe78eb48, - 0xc9333602, 0x0001e9, 00000000 + 0xc9333602, 0x0001e9 }, { 0x9d705704, 0x49b48cf2, 0x4416b5bd, 0xcebc2141, 0xd594afa, 0xeb9d62d6, 0x507be5e3, 0x589b45eb, 0x2f41373f, 0x3f34fd57, 0x942989c9, 0xd99112b2, 0xa5aa3726, 0x3029e7f9, 0x80a8884e, - 0x9a60d663, 0x0000b5, 00000000 + 0x9a60d663, 0x0000b5 }, { 0x7df98949, 0x42e4e404, 0xf6ec1dc3, 0x3d4d3098, 0x3c4c771e, 0x849de4e1, 0xff1bb421, 0xd215b6ea, 0xaefc28e, 0x3955638c, 0xdc0e472c, 0xc6097946, 0x47768956, 0x40fb1a95, 0x1b74eacf, - 0xaca0403c, 0x0000c9, 00000000 + 0xaca0403c, 0x0000c9 } }, { @@ -49646,19 +49645,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6ddb2fab, 0xc46d4e1b, 0xb05a5552, 0xeed467b7, 0xf84151dd, 0xcea0fbcd, 0xb4f763c8, 0xd9be0515, 0x9ed9f021, 0xda121001, 0xc201f971, 0x77ba9d13, 0x802de793, 0xd158ce0c, 0x8253fe9e, - 0xe70dad, 0x0001e9, 00000000 + 0xe70dad, 0x0001e9 }, { 0xf75567ab, 0x528c232b, 0x18eb2500, 0xdd69cbb8, 0x39e73914, 0x89005cba, 0x149574ff, 0xcfed3053, 0xd995527b, 0xb55fef07, 0x58d264fa, 0xaef48821, 0x8d12951c, 0x9bbb06e0, 0xa7ede990, - 0x4e07be06, 0x00015b, 00000000 + 0x4e07be06, 0x00015b }, { 0x181aebfc, 0x1942e22a, 0x973aa7b3, 0x8e58692d, 0xfaa1c119, 0x9458396a, 0x9e6b6c9c, 0x74076384, 0x6a6977de, 0xf690c2dc, 0x50d2cd2b, 0x29e86afe, 0xb9ff377c, 0x3c6afa26, 0xfbcfec88, - 0x489eba57, 0x0001c1, 00000000 + 0x489eba57, 0x0001c1 } }, { @@ -49666,19 +49665,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x74cc58c8, 0x2b326a21, 0x46ae2276, 0x3ac79dfa, 0xae5ccf4, 0x9f11bd6a, 0xf31a208f, 0xd9b5f31e, 0x3658f406, 0xe0dccc0, 0xb2db4e26, 0xbd4d4694, 0x88732fb3, 0xfc5dd027, 0x35926280, - 0xc0273aa, 0x00014a, 00000000 + 0xc0273aa, 0x00014a }, { 0x41ce7649, 0x2e9f6d31, 0x12b762c2, 0x2a9d32a1, 0xbf2896ce, 0x7c401146, 0x17d250a2, 0xb0bb8a1, 0x4c136273, 0x5bb5849d, 0xcfe605fa, 0x503a905d, 0x2b252a10, 0x929bf754, 0x6d56428c, - 0x7d73ca9d, 0x000107, 00000000 + 0x7d73ca9d, 0x000107 }, { 0xe169563b, 0xaa7588cd, 0x8c885aaf, 0xb97cb6ac, 0x624baf1c, 0xe08e2eb7, 0xd53f5059, 0x75bc2f9c, 0x742722c8, 0x5e6724cd, 0x4a5f118b, 0xa0645081, 0x329140b8, 0x8c184c98, 0xcfc7c504, - 0x6e6cf71a, 0x000089, 00000000 + 0x6e6cf71a, 0x000089 } }, { @@ -49686,19 +49685,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x874f64ac, 0x54f77325, 0x808b2874, 0x9b594985, 0xc0dc72, 0x7d3734fb, 0x379f6db0, 0x1ae4ee64, 0x76ae714c, 0x30e2979, 0x5890bd89, 0xa23a927, 0x11befb90, 0xe0772b87, 0x457dac23, - 0x587fbc88, 0x0001ff, 00000000 + 0x587fbc88, 0x0001ff }, { 0xe29405a2, 0xb64086b7, 0x513933ee, 0x8cfb69b1, 0x30ed33ef, 0x1b3d5f91, 0x16dbca39, 0xada70a28, 0x6d87866a, 0x37d1857d, 0x85956df1, 0x47bfc7e5, 0x707cda12, 0xe21ecaf, 0x4ac5244a, - 0x8e8f3123, 0x000016, 00000000 + 0x8e8f3123, 0x000016 }, { 0xb47163cc, 0xd3e2c3a6, 0x9fb6e19a, 0xbe1ce0bd, 0x44eb19db, 0xbb847ffa, 0xcca7ee16, 0xd4b5741b, 0x98ca1a59, 0x4372ac9a, 0xdb24ef88, 0xc7359cfa, 0xd5b318a7, 0x31888d42, 0x9013ac1f, - 0x6ec4811f, 0x0001ee, 00000000 + 0x6ec4811f, 0x0001ee } } }, @@ -49708,19 +49707,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdc45a48f, 0x42ec1f39, 0x91bd8d1b, 0x81d3c7dd, 0xb4cf0b1a, 0x6806c9d4, 0xf29700dc, 0x60772b26, 0xa1ca05b0, 0x36c63ac5, 0xb86e15b0, 0xbd95a456, 0x4c8e6df2, 0xe20fa436, 0xebfa5ac, - 0xf73182d9, 0x000097, 00000000 + 0xf73182d9, 0x000097 }, { 0x61bdead, 0x81ec3361, 0x9721e077, 0xd9c1cc31, 0x83e5c3fa, 0x439536d8, 0xaec6a4fc, 0x1cf59070, 0xb1fca274, 0x798017da, 0xba4af94c, 0x17a29beb, 0x9663e199, 0x92e68436, 0xf86e8c3c, - 0xb743a1e, 0x0001fd, 00000000 + 0xb743a1e, 0x0001fd }, { 0xa31da73b, 0xe8298eb5, 0xff893b1d, 0x80f15358, 0xf67b19ad, 0xc7d5092a, 0x11975415, 0x5831667a, 0xfeabc6b7, 0xad6762fc, 0x77451eb, 0xf336f626, 0x9b2f252f, 0xb8d5254a, 0xc676d6ab, - 0xd667e8fc, 0x000013, 00000000 + 0xd667e8fc, 0x000013 } }, { @@ -49728,19 +49727,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x83851928, 0x8db9b4f0, 0x9339082a, 0xfc6a137e, 0x2c081bf9, 0xf40690a4, 0xaa03186, 0x81536d29, 0xbe5b0495, 0x29c4f047, 0x488b6c65, 0x3d34a0c7, 0xe36755e8, 0x7a531632, 0x139753a8, - 0x5f3e0662, 0x000033, 00000000 + 0x5f3e0662, 0x000033 }, { 0xd97f3452, 0xdb03899b, 0x319c6d1f, 0xc6e071d6, 0x76be460, 0x84f472c6, 0xc935dbec, 0x680e0c0d, 0xb7b92164, 0x1bd67c23, 0xfbbfe96a, 0x28acfb4a, 0x93eb0d7, 0xd6080a36, 0x85c7ff2a, - 0x3a1f0ae6, 0x00007c, 00000000 + 0x3a1f0ae6, 0x00007c }, { 0x9c16908d, 0xa157f3c6, 0x1e4d9717, 0x897002b8, 0xa3c167dd, 0x9f40388f, 0xe1d5d1e6, 0xf7821dcd, 0xd9860945, 0xba3825a2, 0xb7e4b0fb, 0x5f7a67ae, 0x9da81f5d, 0xaacfe050, 0xa32e3c23, - 0x7ced72d9, 0x000045, 00000000 + 0x7ced72d9, 0x000045 } }, { @@ -49748,19 +49747,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdbe2541f, 0x66ca93c7, 0x1fa4b402, 0x964e8716, 0xe7b75a2d, 0x1f6af80c, 0x17c48d66, 0xb3f599a5, 0xca6e1929, 0x10fe4205, 0xfe96bb26, 0x12c2c3df, 0x556d00d9, 0xe86c1717, 0x5f629911, - 0xd97d9f0e, 0x000027, 00000000 + 0xd97d9f0e, 0x000027 }, { 0xa7a9bd2b, 0x72175ef3, 0x1b5c294e, 0x61946a1d, 0xd7a2e394, 0xa79b51ad, 0x702d9a94, 0xdb6a6cf, 0x354b57af, 0x18856054, 0x88596798, 0x905df220, 0xd92d66e6, 0xb4064f5a, 0x3bbe5520, - 0x2acd0849, 0x000074, 00000000 + 0x2acd0849, 0x000074 }, { 0xe9f8a77d, 0x1faa1810, 0x8b76f8e8, 0x770d9346, 0x433e2d22, 0x94ce1d4d, 0xfa7dae39, 0x49d50044, 0x319f416a, 0xdb238b24, 0x7c96a51, 0x9667f748, 0x87f54ce1, 0xd685d759, 0x5ca71404, - 0x6aa8af61, 0x0000aa, 00000000 + 0x6aa8af61, 0x0000aa } }, { @@ -49768,19 +49767,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3ab3c2a9, 0x5bccd4d5, 0x1b218229, 0x59b6bc5c, 0xc3955895, 0xc3619ee5, 0xa9c878db, 0xda657008, 0xff21db14, 0xfc9d4900, 0x45102ce8, 0xa41806, 0x1fc9a84, 0x6a1f519e, 0x2d2a5d76, - 0x2b3be684, 0x0001a3, 00000000 + 0x2b3be684, 0x0001a3 }, { 0x7898ed49, 0xebe08bf8, 0x8f7370bb, 0xa3af8df1, 0xe5578fbf, 0x793cf07, 0xbc6eec, 0x555da6e0, 0xdad55d4a, 0x274c71cb, 0xef5828ef, 0x6de87871, 0xe482dbd9, 0x4f28586d, 0xf00a36f9, - 0x49faefb6, 0x0000b8, 00000000 + 0x49faefb6, 0x0000b8 }, { 0xd39ccdb8, 0xa21d8584, 0x2b06ced5, 0x6dd8371b, 0x1c5e39c, 0x505bca0a, 0x1579cc2b, 0x7e91f5b8, 0xc5f2335d, 0x7cd258a8, 0x2eed6515, 0x66cf4f5a, 0xb79e9b3c, 0x3e03a322, 0x488cb0f, - 0x8a3fb316, 0x000097, 00000000 + 0x8a3fb316, 0x000097 } }, { @@ -49788,19 +49787,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf4632039, 0x12a71350, 0xd921da30, 0xb96c97e0, 0xeee6616d, 0xab01b9f5, 0x7d64d969, 0xf97eebbb, 0x216a6fa2, 0x992e76e2, 0x264f7bae, 0xc89e521c, 0xc1598eba, 0x840ce640, 0x1b8586d8, - 0x96049d8f, 0x0000be, 00000000 + 0x96049d8f, 0x0000be }, { 0xee499444, 0x2d5c5294, 0x288e0d5c, 0x5490caf6, 0x32907fe3, 0xe90c3772, 0xa33c6e2a, 0xfd3bdb3a, 0xabb7b12, 0xcec86ca8, 0xd4b57889, 0xb246cec2, 0x901b2abc, 0xc30bcf1d, 0x7965d953, - 0xed3b3500, 0x000100, 00000000 + 0xed3b3500, 0x000100 }, { 0x5b9daa0, 0x65f45dec, 0xae5b46d5, 0x6616c4c5, 0x29469719, 0x861020c7, 0x7db3d689, 0xefd1ed5e, 0x355237cf, 0xeeeab49, 0xd45630b9, 0xafd8540c, 0xa0f89dd1, 0xe89b0d0d, 0x818001b4, - 0xeba184ca, 0x0000d9, 00000000 + 0xeba184ca, 0x0000d9 } }, { @@ -49808,19 +49807,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x32ff5017, 0x9c48e48c, 0xcc74e5ee, 0x8c122186, 0x5f8e74ff, 0xe4bd1fcd, 0x30986415, 0x6d1d781d, 0x1ab4b374, 0xc8fcedf4, 0x560e50e1, 0x90765093, 0xaea36189, 0xe2e9dbdd, 0x4cd745ea, - 0x64138a0d, 0x000072, 00000000 + 0x64138a0d, 0x000072 }, { 0xe167d5cd, 0x43b63067, 0x20a7723, 0xb80fc96f, 0x67bee1b6, 0xa948c4dd, 0x7a19be45, 0xfc454262, 0x538c675b, 0x997c8d07, 0xaea6af95, 0xe3d79858, 0xe2383498, 0xb9335803, 0x4331c89, - 0x8e2bcf7d, 0x00004b, 00000000 + 0x8e2bcf7d, 0x00004b }, { 0x176c4e36, 0xc0a30955, 0xabb30d4a, 0x884d7bc2, 0xc3700cff, 0xb03b53c0, 0x168355b0, 0x7b4dcd7f, 0xf340f77b, 0xaffc18ab, 0xec465374, 0xfd1f8684, 0xb5fc5a29, 0xec2f1214, 0x3d0474ce, - 0x61914dc4, 0x0001a4, 00000000 + 0x61914dc4, 0x0001a4 } }, { @@ -49828,19 +49827,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa539cecc, 0x2f5ab4a7, 0x930cb028, 0xa8e973ba, 0xc49bc241, 0x32274b4d, 0x61d100f5, 0x8835229e, 0xdabd5d8a, 0x1a892ed, 0xdd10f629, 0xa1412972, 0xadf0d461, 0x631ffef1, 0x6e2ba9c, - 0xc374812a, 0x0001f2, 00000000 + 0xc374812a, 0x0001f2 }, { 0x8b45acf5, 0x9aea954d, 0xaee551c9, 0x9341e1e8, 0x957aa727, 0x99f1f3b3, 0xdae12435, 0x6921f83e, 0x3bb0ebcd, 0xe76403ad, 0x949d1c8d, 0x15926d53, 0x3745544e, 0x577ae46c, 0x4c033dea, - 0x496ca734, 0x000049, 00000000 + 0x496ca734, 0x000049 }, { 0xb4229d0f, 0x8bdb615, 0x7e44d195, 0xe471d3a, 0x6408290f, 0xdff1d6ec, 0x19f33e39, 0xff17f42a, 0xa429ba34, 0x5a329f52, 0x397c6a61, 0x3a13b67e, 0x57008f67, 0xaa4bd9c4, 0x3ca428b7, - 0xd6c5e82, 0x0001d5, 00000000 + 0xd6c5e82, 0x0001d5 } }, { @@ -49848,19 +49847,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a984d89, 0xadae03cd, 0x77a6de85, 0x34adcfdd, 0x45e5d913, 0x2551cfb7, 0x8f7a82e6, 0x117743ca, 0xa4f8576b, 0xdab56bbf, 0xd752e792, 0x2fd2fd83, 0xe3525432, 0x52fc9d9f, 0x184eb7a2, - 0xa5eb1fd2, 0x000099, 00000000 + 0xa5eb1fd2, 0x000099 }, { 0x3d7ece3e, 0xe020d21, 0x336af913, 0x726e8124, 0x72660b70, 0x25952ea2, 0x8b61ac4d, 0xbbcc3aae, 0xd4ba3216, 0xe7725cfe, 0x9ff1c775, 0x4c3e34f, 0x352da272, 0x2476f727, 0x56b3bce6, - 0xef53862b, 0x000038, 00000000 + 0xef53862b, 0x000038 }, { 0xe64c7186, 0xf0d4a8c1, 0x133eee8a, 0x9be0dad0, 0x26c44d4f, 0x401395cc, 0x8c1baf9b, 0xd98a6c82, 0x45f5e32b, 0x69f3cdb2, 0x52889c5f, 0xabe5ed99, 0xd6f14d10, 0x9da784a, 0x1080c03e, - 0xaece5f6e, 0x0000f4, 00000000 + 0xaece5f6e, 0x0000f4 } }, { @@ -49868,19 +49867,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc54e755f, 0x288d8db0, 0xe7e055f2, 0x784e26f3, 0xfa6cedda, 0x25834683, 0xefac5323, 0x6d5a559a, 0x3d912e85, 0x4d215565, 0x400ee00b, 0x859f583f, 0x30307bb2, 0xe7475f73, 0x6dc582ad, - 0xc33f5438, 0x0000a5, 00000000 + 0xc33f5438, 0x0000a5 }, { 0xcfeac834, 0x63079657, 0xce874aeb, 0x16640f0f, 0x37d05b00, 0xb8548234, 0x38be73cc, 0x6b2f02c1, 0x3573d403, 0xd0519a14, 0xd958cef, 0x47608580, 0x4574ab32, 0x16f5f54b, 0x64f7c383, - 0xaa63b4c2, 0x0000a6, 00000000 + 0xaa63b4c2, 0x0000a6 }, { 0xba8a9822, 0x5bf28232, 0x877bd664, 0xfad1d988, 0xeff2d0bc, 0x46db24df, 0x369d564f, 0x7a73869e, 0xa05316aa, 0x5a0849fd, 0xa6b58208, 0x26945222, 0xd3d93be4, 0xc40f1fe7, 0xb6f6aaa8, - 0xb6cfd157, 0x000167, 00000000 + 0xb6cfd157, 0x000167 } }, { @@ -49888,19 +49887,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x523132d7, 0x740337dd, 0x1ac17056, 0x679490d8, 0x2105cb2a, 0xc31a2c30, 0xc6fdf549, 0xa539a171, 0x1f075f5a, 0x7f686eff, 0xe2ef5189, 0x2fc4b2db, 0xe4f702ff, 0xb940c3c4, 0xc5630a3d, - 0xb4ef249, 0x00002c, 00000000 + 0xb4ef249, 0x00002c }, { 0x85540d2c, 0x7ed90f9b, 0xb2594051, 0x5db0efa5, 0x5e421777, 0xed6d377, 0xbaafa967, 0x41b95866, 0xa94e1876, 0x2f256e81, 0x3cd4e29d, 0xe5e5c4a2, 0xa66094bf, 0xd2012eb5, 0x5ae56b99, - 0xbf803d72, 0x000070, 00000000 + 0xbf803d72, 0x000070 }, { 0xdca6c21c, 0xe8686f8d, 0xe26f04a7, 0x2867142f, 0x703df749, 0xeb82d006, 0xf2bc44b6, 0x291a535f, 0x980b1b23, 0xff6e564e, 0xddfed88e, 0x85d0db74, 0x5020a83e, 0xace7d11f, 0x5b959214, - 0x38045ce3, 0x00002c, 00000000 + 0x38045ce3, 0x00002c } }, { @@ -49908,19 +49907,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfcb9fa1b, 0xc7613c14, 0x78e79e89, 0xcf799d89, 0x8084fd24, 0x4537eb05, 0xa5db2331, 0xf33dd146, 0xd1c3cc73, 0x51f39856, 0x9da7beb, 0xeeefed42, 0xeaa739e9, 0x60a8f5eb, 0x815d4df0, - 0x31909c64, 0x000168, 00000000 + 0x31909c64, 0x000168 }, { 0x5de3b75d, 0x51559674, 0xffa9ceeb, 0xc0147f3a, 0x89b74830, 0x9637597c, 0x6d09c382, 0x4b81d315, 0x98c9fa6, 0xe5f6d8b, 0x605d3ca9, 0xea43496c, 0x6f33b6c0, 0x931ff575, 0x4c6e7b23, - 0x175b43d7, 0x00016d, 00000000 + 0x175b43d7, 0x00016d }, { 0xeb31a410, 0xbe3d16a7, 0xd9aa9e98, 0x669c99e9, 0x73a0a44c, 0x4d4c0529, 0xec36a6ca, 0x9785413c, 0xd474604e, 0x9d197417, 0xf1f181dc, 0xaba185c2, 0x25250bf8, 0x4510243, 0xe174ea6a, - 0xcf7a82f1, 0x000196, 00000000 + 0xcf7a82f1, 0x000196 } }, { @@ -49928,19 +49927,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xec56f63, 0x489753da, 0x4233a1bc, 0xd9e67a7f, 0x4b160e81, 0xeb97cb32, 0x9e06b0df, 0xb9ced0ec, 0xaaaf84c, 0x548a83d1, 0x1c318464, 0xcf4e9e39, 0xa509233c, 0x8bf9e87e, 0x231541ad, - 0xf9430f95, 0x0001b3, 00000000 + 0xf9430f95, 0x0001b3 }, { 0xdec33aed, 0x84747880, 0xed837043, 0x5af440ce, 0xeb39b51a, 0x1e43f630, 0x6541f2a7, 0xff93323e, 0xaa6c89b1, 0xa154b860, 0x609d1e24, 0xfd714683, 0xd0e2fd83, 0x53123774, 0xc62f18d6, - 0x25164ec7, 0x0000eb, 00000000 + 0x25164ec7, 0x0000eb }, { 0xffef4d31, 0x543b2379, 0x3fc08e88, 0xcaead462, 0xa450747a, 0xba78e70a, 0x6e04eac5, 0x590a9456, 0xb3cd9907, 0xde2b04e6, 0xdd197bca, 0xfde656c3, 0x59ba5d69, 0xd9c0eb10, 0x918be214, - 0x1995129b, 0x000053, 00000000 + 0x1995129b, 0x000053 } }, { @@ -49948,19 +49947,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2969c55d, 0x63e8bd97, 0x4051b15c, 0x720c81a9, 0x314a22fb, 0x5b3ec9b1, 0x573f2ad5, 0xdbd2d259, 0xc52b7c55, 0x9ab34306, 0x7a80653a, 0x31aa87f7, 0x71e88c33, 0x62ebfecd, 0xe311f7c6, - 0x30c21ce9, 0x0000ce, 00000000 + 0x30c21ce9, 0x0000ce }, { 0x28f5df10, 0xedf95f9a, 0xc302b489, 0xe83cd1b8, 0x7989e626, 0x398ccdd7, 0x29f4b8d9, 0x670c8c54, 0xa659caa0, 0x7a62dac4, 0xca5f5057, 0x70711049, 0x70822713, 0x3d550244, 0xe243c13c, - 0x62216a3b, 0x00010a, 00000000 + 0x62216a3b, 0x00010a }, { 0x2e94776f, 0x5e09bef, 0x916a3b92, 0xe1db7922, 0x4b1a98e1, 0xa487f80a, 0x5e0ee5dd, 0xaddb8be2, 0x4f8ed63d, 0x8ab9aa87, 0x36820426, 0x2fc3613e, 0x26ee7108, 0x21e700ff, 0x2dcb2155, - 0x15329f1f, 0x0001cc, 00000000 + 0x15329f1f, 0x0001cc } }, { @@ -49968,19 +49967,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa56b5ea4, 0x89f003e6, 0xc9e2add1, 0x2974d60a, 0xa9b7edea, 0xd374521b, 0x795f7eec, 0x338595be, 0xbfcbfe6c, 0xe25f428d, 0xc3659c06, 0xaeb11468, 0x25e84e48, 0xf218a7cc, 0xfe6ed494, - 0x7f44a714, 0x000080, 00000000 + 0x7f44a714, 0x000080 }, { 0x6d5f0fc, 0xa245bf6a, 0x8eaaaffa, 0x60ccf91f, 0xe7651806, 0xcdf4808f, 0xb76f92bd, 0x7d59f167, 0x5ffc31ad, 0x6cfd8615, 0xe3049e2d, 0xe556b42d, 0x5de60990, 0x585ba559, 0xdddfa477, - 0xe53f56bd, 0x00004d, 00000000 + 0xe53f56bd, 0x00004d }, { 0x6a5693b1, 0xf9bf85b6, 0xc2f0b7c6, 0x5645c0be, 0x9ae954f5, 0x42f46fe5, 0x5c775f4c, 0xcdc275f5, 0xfe6f5978, 0xf876ae11, 0x5d338ce9, 0x702a3f1a, 0x7ca55275, 0x993e3012, 0x9408e0ca, - 0xb38e82d9, 0x00012b, 00000000 + 0xb38e82d9, 0x00012b } }, { @@ -49988,19 +49987,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbd59f947, 0x8b43f4f7, 0x16440834, 0xa4962971, 0x16238be, 0x8b10ce3c, 0xcd87d26c, 0xc3f2ba7a, 0x26eb740d, 0xf4b438ed, 0x64846b84, 0xcebae15a, 0x891ccf40, 0x6f645a7d, 0x91c9bcde, - 0x52b6dfcf, 0x0000e7, 00000000 + 0x52b6dfcf, 0x0000e7 }, { 0xbdbc4b05, 0x8ad3bec2, 0x97af1806, 0x5a86e61e, 0x1e3b1e81, 0x26b129d9, 0x36e04653, 0xd4a7e4cc, 0xce9aa1e8, 0x181befe6, 0x59200091, 0xec8dde42, 0x3548e865, 0x1a221af4, 0x6e0f4b7e, - 0xb1a03427, 0x0000ae, 00000000 + 0xb1a03427, 0x0000ae }, { 0xe04f2ed3, 0x810aefcb, 0xbbd61c1c, 0x3127758, 0x485c5737, 0xed4212f1, 0x18fadc70, 0x56b00243, 0x5182f6b7, 0xac002f21, 0x3d58336e, 0x7e9e0a0f, 0x1cb19221, 0xed6d8963, 0x788f80bd, - 0xfe0072e7, 0x00007e, 00000000 + 0xfe0072e7, 0x00007e } } }, @@ -50010,19 +50009,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9b68bdb7, 0xaa10119f, 0xd5030848, 0xf602b99b, 0x80a2277, 0x30c74ba8, 0xdc74f2d1, 0x86d85826, 0xcf502e6f, 0x8e746064, 0x3ceb2224, 0x48ed9488, 0x6896c1ad, 0x66c04993, 0x3ba6b21f, - 0x2d4bcc3c, 0x000064, 00000000 + 0x2d4bcc3c, 0x000064 }, { 0xeb1bb6e0, 0x98b8d664, 0xb651fd65, 0xa3d9f27b, 0x152e9765, 0xd6290ac, 0x59f1a91b, 0x644c51c6, 0xb848aec, 0xdace713b, 0x2cd29dd3, 0xba66f7da, 0x894ace2b, 0x72bda762, 0xe9cec96a, - 0x67e774d5, 0x000094, 00000000 + 0x67e774d5, 0x000094 }, { 0x6d788a5c, 0x676c63d5, 0xaf15c0f4, 0xae44ef75, 0x1dec279d, 0xf3b094db, 0xdb90dcd2, 0xf64c1c57, 0x1c637736, 0x4df6ee4, 0x1b59b9fb, 0x875ea3b9, 0xb81e1dfd, 0x9e47cda4, 0xb703cedc, - 0xb0797f34, 0x00009a, 00000000 + 0xb0797f34, 0x00009a } }, { @@ -50030,19 +50029,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b2a4505, 0x59346e9a, 0xdd49450d, 0x965ef32e, 0x909836bf, 0xf410840f, 0x4b0fd374, 0x59884673, 0xabbd0d3c, 0x3a54bf93, 0xf56604c3, 0x2b8ee703, 0xce47d9af, 0x45ac5525, 0xdbdc77ed, - 0xda5c0c74, 0x00014a, 00000000 + 0xda5c0c74, 0x00014a }, { 0x3349d05f, 0xea7e2d1a, 0x12cf929c, 0xf498e30f, 0x70759edf, 0x962f7d20, 0xc4b86fa2, 0x8b6a2850, 0xccdd4957, 0x5a4dd30a, 0x347d5cca, 0x77b80ecc, 0x2a25123f, 0xc81fc0b3, 0xf545d03f, - 0xaaf49a34, 0x0000c9, 00000000 + 0xaaf49a34, 0x0000c9 }, { 0x575475ea, 0x43702865, 0xdc7465ca, 0xa0fcccc3, 0x61bea8d, 0xa7f9e562, 0x1206b3b7, 0xc474cbc7, 0x17334179, 0x34967232, 0x13deb1bc, 0x4b8ffac7, 0x37bdc2dd, 0x1f9b869, 0xd61fed02, - 0xf16c190d, 0x000013, 00000000 + 0xf16c190d, 0x000013 } }, { @@ -50050,19 +50049,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd15a8e95, 0xddddc64d, 0x2e28b519, 0xd91dfc21, 0x41bb4850, 0x186367f2, 0xb19fc867, 0xedaeeb09, 0x44aeceda, 0x3f7526d0, 0xf3b819e9, 0x68fdd99, 0x45c0c0c1, 0x2202e1d9, 0x9c9a7fa8, - 0xf618e8b8, 0x00008c, 00000000 + 0xf618e8b8, 0x00008c }, { 0x36aac756, 0x7ac0bffb, 0xa5b08f1d, 0xe419789, 0xb3696dea, 0x2f7122f7, 0xa5bc44fc, 0xbcea4e97, 0x624d40d5, 0x323c1542, 0x9876613e, 0xa866757d, 0x7a9371bb, 0x73f1ac98, 0x32af10ed, - 0x420ff59, 0x00015c, 00000000 + 0x420ff59, 0x00015c }, { 0xc0c72c8b, 0x1a406d5c, 0xd131498d, 0xd69b9c22, 0x4f7dcce3, 0x7a2b473, 0x734887ec, 0xd66449d7, 0xd7fa2d30, 0x9aae9f27, 0x3922e9b1, 0xc7fc96f6, 0x7f7bb507, 0xd22df4d, 0xda914517, - 0xa7693f6, 0x0000d7, 00000000 + 0xa7693f6, 0x0000d7 } }, { @@ -50070,19 +50069,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xff56935c, 0x122b58ed, 0x92e9577d, 0x17cfac62, 0x3681f21e, 0x9851514e, 0x3c0ca1c9, 0xa15cad3b, 0xdc00650f, 0x38b4c0c2, 0xa9227c36, 0xb0e11c41, 0xb05b4507, 0x8e9867c6, 0xa501103d, - 0xa4ef5895, 0x000191, 00000000 + 0xa4ef5895, 0x000191 }, { 0xc984ea05, 0xd612fcd9, 0xede5e1b5, 0x41ccdfb6, 0xc3cb91c3, 0x19449692, 0xdc4e07de, 0x1e08e2c7, 0x48793821, 0x59bcc80e, 0xf2b7e9ca, 0xd86fd950, 0x19f9aca4, 0x2fe86ecb, 0xd2aa0702, - 0xab4499ab, 0x0000cc, 00000000 + 0xab4499ab, 0x0000cc }, { 0xfa90c47, 0x6f32fadc, 0xc5c6ca08, 0x3e0483b4, 0x911f9fa3, 0x1055e4aa, 0x5fe8256b, 0xcb1bba75, 0x6e3d164e, 0x47a080b8, 0xc0495570, 0x9bf1e20f, 0x90bcb927, 0x5fa73a17, 0x727fb853, - 0x33e08357, 0x00012b, 00000000 + 0x33e08357, 0x00012b } }, { @@ -50090,19 +50089,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x82732074, 0x2e21c889, 0x1887e006, 0x13af75a6, 0xc7907340, 0x2cc9f348, 0x4afc8077, 0x255070f1, 0x5c865f3f, 0xdd6cbeb, 0x96507751, 0xb13f583e, 0x49750d40, 0x6523e621, 0x426babbf, - 0x2c97508f, 0x0001e3, 00000000 + 0x2c97508f, 0x0001e3 }, { 0x3b4b915e, 0x826725aa, 0xc66ab4fe, 0xbad2aca9, 0xcbc416a7, 0xb2bb4c08, 0x5648a376, 0xcafb852b, 0x5b9246a7, 0x4133fb9f, 0xdfccca03, 0xb340390f, 0xad2dc471, 0xace2f0fd, 0xce801f67, - 0x48bdd020, 0x000141, 00000000 + 0x48bdd020, 0x000141 }, { 0xefdfc72b, 0x5b39257c, 0xa96ecc87, 0x5d19775a, 0x6b06f3a, 0xde106009, 0x940e6a34, 0xe4c2399a, 0x73018271, 0xdd8b863a, 0x14bee01e, 0xda39d343, 0xea415d0d, 0xbad687c0, 0xd2750a7e, - 0x39c06ac, 0x000023, 00000000 + 0x39c06ac, 0x000023 } }, { @@ -50110,19 +50109,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5727dd3e, 0xdb59da5f, 0xcc5d1798, 0x8f9656e7, 0xfba11b7a, 0x864c7109, 0x81fdbe72, 0xff80681, 0xf8d3df0f, 0x470668a1, 0xdfbe8a1c, 0x5ae06860, 0x4c0e6fef, 0x37688bc5, 0xc8958f20, - 0x2c75b99b, 0x00019a, 00000000 + 0x2c75b99b, 0x00019a }, { 0x8595575d, 0xd380e96d, 0xe2e8ecaa, 0xc1093c7a, 0xded6ea7c, 0xd25ad11f, 0x19f4f6e9, 0xed26ac1a, 0xfd8c8aec, 0x4af8f55c, 0x34e914, 0x66bc59aa, 0x8cb93382, 0xc9496c53, 0xa999e20e, - 0xf49a43d1, 0x000132, 00000000 + 0xf49a43d1, 0x000132 }, { 0xc856eb55, 0xee14e9de, 0xa40415ff, 0xce20b970, 0xd10558b, 0x59e25aca, 0x6f89f904, 0x373e3496, 0xf3b485d5, 0x57a268b2, 0x46025845, 0x7f579a04, 0x7efef2c8, 0xb89fa3cb, 0x7f7c03d5, - 0x8cc56708, 0x000016, 00000000 + 0x8cc56708, 0x000016 } }, { @@ -50130,19 +50129,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1fd2b94e, 0x30d2b414, 0x818fb6ab, 0x5679ed8a, 0x3fc49d6b, 0x89795893, 0x5e705c6c, 0x1a6c5ede, 0x3e77327e, 0xd240c7f3, 0xc7730088, 0xa42d7d61, 0x7c44b10f, 0xd5b1e692, 0x11ff3595, - 0x6fd68baf, 0x0000cc, 00000000 + 0x6fd68baf, 0x0000cc }, { 0xa89e1ef3, 0x346138, 0xdd5c4d93, 0x8f4b3354, 0xd56dad86, 0xa3cd4a2f, 0x2d397bdc, 0x6e1bc169, 0xa2986927, 0x8c64309b, 0x57f644d3, 0x45ea7c51, 0x4ca5db70, 0xd9d6bd6a, 0xf0531c5b, - 0x8401eba7, 0x000006, 00000000 + 0x8401eba7, 0x000006 }, { 0xf0b5853c, 0xe3dd9634, 0x5f94b657, 0x9ae93be0, 0x6e1f2a2e, 0xd243a30c, 0x21094f, 0xead9d940, 0x8f88b423, 0xa24cffde, 0x3b20447a, 0xa563f1cb, 0x63f0e442, 0xeb932dbe, 0xdadd06dc, - 0xe8ca4d64, 0x00010b, 00000000 + 0xe8ca4d64, 0x00010b } }, { @@ -50150,19 +50149,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x67f4d30a, 0x229cb0f5, 0x923109f5, 0xe3c4de7d, 0xee7d9866, 0xdf577e4f, 0x6ba57407, 0x2da25ab6, 0x5948b54b, 0xe6f81d50, 0x5d8a6b71, 0x9fbc812f, 0x68c45439, 0x724c10ea, 0xca39ac52, - 0xa7384387, 0x000147, 00000000 + 0xa7384387, 0x000147 }, { 0x5e67b059, 0xc1a0c843, 0x2ddf0da5, 0xa92316ed, 0xd6ff82db, 0x823ff149, 0x4f4f8344, 0x1a041418, 0x3205b169, 0x1e90e510, 0x8b9bab9e, 0xd12a6771, 0xcaac1172, 0xd7b5bdf8, 0x99a854c2, - 0xb8196aaa, 0x0000f7, 00000000 + 0xb8196aaa, 0x0000f7 }, { 0x62b6eca3, 0xf58932fc, 0x76cd66d7, 0x96be153a, 0xc7f54f03, 0x1f099053, 0x51aa37e1, 0x8d54c0a, 0x798883ab, 0xd38b2d57, 0xe0628195, 0xf8865b83, 0xb9a48eee, 0x85978652, 0x3eee5fcc, - 0x361560f4, 0x0001be, 00000000 + 0x361560f4, 0x0001be } }, { @@ -50170,19 +50169,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xffad994, 0xcec25412, 0x44b27dba, 0x5e41229a, 0xfa59bc93, 0x579e95d, 0x360cba22, 0xb7086b54, 0x5c9daa42, 0x5031dc45, 0x283ad05e, 0xeb0c425c, 0x22e19024, 0x898b599b, 0x9126c141, - 0x35a45435, 0x000121, 00000000 + 0x35a45435, 0x000121 }, { 0xa6ce93a4, 0xd783fce9, 0xb4f2056b, 0x76a42048, 0x19a19611, 0xf25ad23d, 0xad31d92, 0x65c283f2, 0x97346104, 0xe29c04e5, 0x5036eccb, 0x84ec96c0, 0xc19066c5, 0xcb038127, 0xa69cd81, - 0x18023186, 0x00016a, 00000000 + 0x18023186, 0x00016a }, { 0xedc287c3, 0xb62a3f40, 0xc69db628, 0xbdbd0577, 0x18098233, 0xb145870e, 0x15df418, 0x5aba06a2, 0xa59558fe, 0x1a236274, 0x4ff17d72, 0xe5548948, 0x80911b1d, 0x1bbd1a8b, 0x70a04dd4, - 0xe0b423f7, 0x0001c3, 00000000 + 0xe0b423f7, 0x0001c3 } }, { @@ -50190,19 +50189,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a445c7c, 0x85884ac8, 0x58d17522, 0xbe2401b7, 0xe23239a1, 0xf491150, 0x753c5ac3, 0x6c6155a2, 0xdbae6d95, 0x4a4331e6, 0xcbf6e437, 0xf627fd6d, 0x1b81fac, 0xd4ebcea9, 0xa9098d0e, - 0x68c7110e, 0x000079, 00000000 + 0x68c7110e, 0x000079 }, { 0xc71690fa, 0x29acae1a, 0xce6381f0, 0xdb6e0c85, 0x2ff83fd1, 0x93c4bb9c, 0x60a12d00, 0x83168708, 0x2ab4b735, 0xc64dddf3, 0x3a5db93a, 0x3adca16d, 0x439922d1, 0x7247d196, 0x9666a54c, - 0x8fc5639e, 0x000039, 00000000 + 0x8fc5639e, 0x000039 }, { 0xe6035733, 0x6061b50c, 0x2aaa8f90, 0xd3a3d1c6, 0xb2d2dd3c, 0x2caffbaf, 0xef267433, 0x7393453d, 0x589750c2, 0x8b416324, 0x14870e86, 0x548dc59e, 0xb7d38d34, 0x740c8b55, 0x71af0ab3, - 0xb78b071b, 0x00010d, 00000000 + 0xb78b071b, 0x00010d } }, { @@ -50210,19 +50209,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9c1e1cc2, 0x5fd50cd6, 0x8d34328f, 0x35cf51df, 0xf3afb7f9, 0xbe6ff620, 0x98edd24, 0x72377d11, 0x5f8c772, 0xde40f748, 0xb4ee32ef, 0xe276d894, 0xdfff3b0f, 0x230cdecb, 0xfaf24684, - 0x3d684abe, 0x0000aa, 00000000 + 0x3d684abe, 0x0000aa }, { 0x234d3873, 0xbec3e6c9, 0xc6251c65, 0x8c9b0140, 0x3fdcd3ba, 0x8ff63899, 0xfd7fa4d3, 0xab395a39, 0xc95b6f8c, 0x1b231c5b, 0xecabfa48, 0x2d0e1a8d, 0xaa78499f, 0x94d1358a, 0x2e67d9cf, - 0x4c4fd2c5, 0x0001d2, 00000000 + 0x4c4fd2c5, 0x0001d2 }, { 0x269b5575, 0xdb0d0eb1, 0x1c5c14d, 0xecdd875c, 0x38b4fb42, 0xc9206ca5, 0x20b5fbf7, 0x103e0001, 0x87643e0, 0x640e24d0, 0xd5ed7ecd, 0xedbc25ff, 0x9fa92c55, 0xf0a309c4, 0x69f9d8bc, - 0x7dc80618, 0x000073, 00000000 + 0x7dc80618, 0x000073 } }, { @@ -50230,19 +50229,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7681c847, 0x487e8a86, 0xcd5fd2eb, 0x4a51617, 0xab375b99, 0x43e3edd7, 0xb930b1a6, 0xc46c1614, 0x5b8a8fed, 0xc184b1ba, 0xb913d8ab, 0x2649368e, 0xca6f1690, 0x1136e754, 0xbdfc1699, - 0x6e73dd9d, 0x000069, 00000000 + 0x6e73dd9d, 0x000069 }, { 0x68d71483, 0xf40e9a3d, 0x5ea92adb, 0xb8bbf7d9, 0x5519e7a5, 0x64092e34, 0x70b42fa4, 0xda80293e, 0xfa700fba, 0x24242274, 0xeca10d87, 0x1f265dbf, 0xfb5ea386, 0xa40d3a6d, 0xded932f9, - 0x807630b7, 0x0000c3, 00000000 + 0x807630b7, 0x0000c3 }, { 0xa8c4313b, 0x32c151f4, 0x3c5b10f6, 0xfa0f9b91, 0x625f4d88, 0x79ee9443, 0xf0694b82, 0x94b40a23, 0x5308f9bb, 0xc1a9ae6, 0x16efe7d6, 0x8e020734, 0x943db76a, 0xf63f4924, 0x1467170f, - 0x772a242d, 0x0000e8, 00000000 + 0x772a242d, 0x0000e8 } }, { @@ -50250,19 +50249,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7af4b74b, 0x7f6f9ede, 0xb96e527e, 0xffe7030d, 0xfb2c977c, 0x6ff617db, 0xdc522a37, 0x550b4984, 0x8729cd25, 0xab4563ca, 0x9cceb175, 0xe0e1daaa, 0x818ba2ca, 0x4ddab350, 0xe5b5138d, - 0x64fd1697, 0x0001f6, 00000000 + 0x64fd1697, 0x0001f6 }, { 0xd216779a, 0x8aa0609d, 0x8429976a, 0x15701625, 0xcfe8bb69, 0x1bf82c2a, 0x9954f4b6, 0xa961d00, 0xbc71c481, 0x805c765c, 0xc93bf845, 0xd63491be, 0xcc550724, 0x854a8d32, 0xb69f13e5, - 0xd2f82a96, 0x0001bc, 00000000 + 0xd2f82a96, 0x0001bc }, { 0x41a03dda, 0xa8503ae9, 0x20d0316a, 0x425e6dab, 0x63d1719f, 0x6ffb60d1, 0x4d31ccb8, 0x2ae73df6, 0x83aab05, 0xe14ad3ba, 0x3b9d53f5, 0x46b2cc82, 0xa5e3394b, 0x16ac3558, 0x8125544e, - 0x58c0fb66, 0x0000e1, 00000000 + 0x58c0fb66, 0x0000e1 } }, { @@ -50270,19 +50269,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49c4bc28, 0x65e7de9a, 0xf784b8ba, 0xf2faae05, 0x980a3d76, 0x58ffbf58, 0xaf656611, 0xa555ecf8, 0x8ca8a3c, 0x574fb637, 0x3e6f154e, 0x34558fa, 0xcf91cec4, 0x45203910, 0xc5c8351c, - 0xd771d481, 0x0001ae, 00000000 + 0xd771d481, 0x0001ae }, { 0x924696a9, 0xe15700c9, 0x476169ca, 0xedca2287, 0xf0818fcb, 0x78f7fa53, 0xe534729c, 0x3f8f474c, 0x982b0906, 0x144ee6eb, 0x9f1380de, 0x1e71953c, 0xd42bda93, 0x24adfe6f, 0x707f1a93, - 0x616f0afc, 0x0000de, 00000000 + 0x616f0afc, 0x0000de }, { 0xcb6e8de3, 0x26b0a5e3, 0x82a3af75, 0xfdc588f0, 0x9a0b9e8e, 0xfce64f84, 0xd613c3bf, 0x6300ec39, 0xd9f8ba34, 0x77036633, 0x327e16c7, 0x984407d0, 0x64f7e1ec, 0x85a68a36, 0x3f5a5f35, - 0x6041c60b, 0x0001c7, 00000000 + 0x6041c60b, 0x0001c7 } }, { @@ -50290,19 +50289,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf7c5d2ea, 0x82eee10f, 0xe7ddb5a5, 0xbc6e7478, 0xd85d6f1e, 0x1ec688ab, 0x7348a8ca, 0x1a559f9, 0x9988b447, 0x98cf477b, 0xd06b671c, 0x22820422, 0xafab57cd, 0x486fd34f, 0xc4d5eed7, - 0x1a4fe7ba, 0x000188, 00000000 + 0x1a4fe7ba, 0x000188 }, { 0xd1e31c04, 0xcf3efa22, 0x13b2a8bc, 0xf2d3070c, 0xd0a46063, 0x707b55ef, 0x213d7c5, 0x5d81b651, 0xd8ab7331, 0x50b48dd2, 0xc627256f, 0x188a3ae0, 0x30acc316, 0x6eccd677, 0x74eafe15, - 0xf3db01fd, 0x000061, 00000000 + 0xf3db01fd, 0x000061 }, { 0xb12b674, 0xab58c5b8, 0xdf4f8b32, 0x976028cd, 0xa9fa7618, 0xbf266317, 0xb08811eb, 0xfb2e4117, 0xeb9af1f9, 0x781af4ef, 0x3a4b74f6, 0x6ea4aeee, 0xf09d9c9c, 0xc3d6407a, 0x97a64c13, - 0x6b4e19da, 0x0000ec, 00000000 + 0x6b4e19da, 0x0000ec } } }, @@ -50312,19 +50311,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdc7a45a0, 0x5873fa02, 0xee778cb2, 0x5752b006, 0x23c8c32d, 0x4735bdba, 0xe7ea7e, 0xc5f1cba3, 0xf9854ed1, 0x244d0ac1, 0x8094e890, 0xad99a158, 0x2f95f2a4, 0x58bdea45, 0x72960db0, - 0x87fd22d9, 0x0000ec, 00000000 + 0x87fd22d9, 0x0000ec }, { 0x45a1dba5, 0xc4da5a60, 0xd12acd5d, 0x388b2b93, 0xca512b76, 0xc385cb5f, 0xd0febb6a, 0x9139ae5d, 0x87344e62, 0x19d42506, 0x937c70a3, 0x57d8a835, 0x94885578, 0xa0350b38, 0xdf116297, - 0xac6a7049, 0x00011c, 00000000 + 0xac6a7049, 0x00011c }, { 0xe7f92090, 0xf4100482, 0x96d23958, 0xad90e69e, 0xccbeac12, 0x8566f327, 0x642733e5, 0xb8ee1e90, 0x7b6b70e7, 0x843fa70d, 0xe47f3c33, 0xf47a0ad3, 0xa6f55126, 0xacc64006, 0xfa626da5, - 0x5457de87, 0x00016b, 00000000 + 0x5457de87, 0x00016b } }, { @@ -50332,19 +50331,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe5fd3d7, 0xa78b8f94, 0x50362184, 0xb9cc4d66, 0x29f7b363, 0xde2c958d, 0xefdbc60b, 0xa8705396, 0xecb6bdd6, 0x770bf287, 0x47bdfb0a, 0x6385da6c, 0x3aac121b, 0xaf5b9ea1, 0x7465bca3, - 0xc98503a2, 0x0000fd, 00000000 + 0xc98503a2, 0x0000fd }, { 0x6b9a59e2, 0xaa894788, 0xfd3f17d0, 0x4edc2c1a, 0x4fcead96, 0xd59c3216, 0x428824ff, 0xb360f4da, 0x296c1540, 0xf6d21649, 0x57f7b9bb, 0xde688349, 0x20e17fc1, 0x8a18bc9a, 0x487feab6, - 0x1af7688b, 0x0000a1, 00000000 + 0x1af7688b, 0x0000a1 }, { 0x77348d62, 0xa8920de3, 0x4465b808, 0x183a9c85, 0x275661b7, 0x3ce2918a, 0x9a09c5f, 0x7d024189, 0x9f749fc, 0x42753f00, 0x2e694738, 0x134049c4, 0x972f1407, 0x2d730f7a, 0x889d5bb4, - 0xbf2a1c7e, 0x0001ab, 00000000 + 0xbf2a1c7e, 0x0001ab } }, { @@ -50352,19 +50351,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3336f231, 0x4a451870, 0xae693f99, 0x98c53dc7, 0xdc125cc8, 0x90c1c3ee, 0xc31925d5, 0x8b743f18, 0x5cd219ca, 0x48c7d3a3, 0x69237624, 0x8a9f738c, 0x668d1f0d, 0x4d29821d, 0xbae7435b, - 0xf50fa93a, 0x0001e2, 00000000 + 0xf50fa93a, 0x0001e2 }, { 0xac7e1232, 0x2704c99d, 0x6e6cf2f0, 0x34e59b86, 0xc9e50c29, 0x49b3ddae, 0x263fa2a8, 0xf7f8dfa5, 0x2e3d82bc, 0xf0a60619, 0x38d35dc8, 0xf09a331b, 0x7da4356a, 0x9ed40f3, 0x160d850a, - 0x10d036da, 0x0000f3, 00000000 + 0x10d036da, 0x0000f3 }, { 0x3c3d893e, 0xee2fa9ad, 0x9eb9a386, 0xe85cada1, 0xd053a3ad, 0x832b7040, 0xb4d4f650, 0xa3b83cf3, 0xf255fe28, 0x8fffa63b, 0x754f1058, 0x3fe83efb, 0x69ff5648, 0x63667971, 0xb213f6c2, - 0x610948c7, 0x000122, 00000000 + 0x610948c7, 0x000122 } }, { @@ -50372,19 +50371,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xef6a88af, 0xead0de7a, 0xe0925df, 0xba7d470b, 0xd80330a2, 0x98793048, 0xa2aaf111, 0x60418f1d, 0xe3fbcbdc, 0x9414bb4b, 0xbc9c22, 0x279719b1, 0x6998939, 0xb2159706, 0xc9fabb, 0xa36f5fdf, - 0x00015b, 00000000 + 0x00015b }, { 0xb30d4031, 0x83b69147, 0x214a4f33, 0xf1411ee1, 0x4e48a2b6, 0xb03090be, 0xbbc2c148, 0x41ec58db, 0x763825e, 0x6aef8e31, 0x670e68f5, 0x30c3bab1, 0x4b759662, 0xbd33500a, 0xa4fca253, - 0x47ea7967, 0x000036, 00000000 + 0x47ea7967, 0x000036 }, { 0xd411f2b1, 0xffd5b395, 0xccf2916c, 0x17e9dc5d, 0x982ee9b3, 0x86f043da, 0x460fd46a, 0x5632db77, 0x2fccaa71, 0xd5cf90df, 0x5a22a3c8, 0x5bab0db5, 0xcb34873a, 0x41bd6fca, 0xd1fa3790, - 0xc61b9308, 0x000180, 00000000 + 0xc61b9308, 0x000180 } }, { @@ -50392,19 +50391,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa957bcc7, 0x920bbc62, 0x2215c15a, 0x44f8975b, 0x58630817, 0x34a14253, 0x684f8e7, 0x8c404ead, 0xa03926ab, 0x95cb6b5, 0x1d53d5a4, 0x1a50ebb4, 0x17087d90, 0x5e11ba7b, 0x3f8e3cbf, - 0x48427fd1, 0x00013b, 00000000 + 0x48427fd1, 0x00013b }, { 0x236cadb6, 0xdf17f4d, 0xf3687131, 0x1bd90cf0, 0xd72c38b2, 0x7b9f6e52, 0xcfa07333, 0xf3f3c26b, 0xc466d4f0, 0xe228e61a, 0x270b5f6f, 0xccbd18bb, 0x6bed5db8, 0x26e36c5b, 0x897b2d2, - 0x10f5b472, 0x000065, 00000000 + 0x10f5b472, 0x000065 }, { 0x7a199b15, 0x523a0ba6, 0x81e94ea2, 0xf11d3924, 0x42aa4744, 0x982ddaa4, 0x5721ac20, 0xb2f9839, 0x9e99b7ef, 0xffb8b468, 0x1ab795d, 0xbb73a19, 0x47b07603, 0x20089e33, 0x4a0d25c6, - 0x1cb2a38, 0x000094, 00000000 + 0x1cb2a38, 0x000094 } }, { @@ -50412,19 +50411,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x28fa9fb0, 0x9f48326a, 0xb74a175e, 0x5fbba563, 0x58717e4, 0x1f37d47f, 0xf987cfe6, 0x7270c4e7, 0x54675f85, 0xdf948685, 0x74066df6, 0x204269e1, 0x783f2959, 0x6a30d625, 0xf4070c41, - 0x45cc15c0, 0x0001db, 00000000 + 0x45cc15c0, 0x0001db }, { 0x2415a520, 0x61d0bcc, 0x20600379, 0xed05cc9d, 0x3e58755e, 0xe0e261d6, 0x6bf8551b, 0x6a1758b1, 0x2a36f84f, 0x97910d7, 0xf753b7e5, 0x469afdc, 0x1de5ad44, 0xb052ed2c, 0xfa5b184a, - 0x780c10e0, 0x0001f8, 00000000 + 0x780c10e0, 0x0001f8 }, { 0x5152cc31, 0xc68fa323, 0xec933ca5, 0x3d4c88ea, 0xdfc0bad, 0xb67c3143, 0xed6c2e8a, 0x20536a93, 0xca3da496, 0xe7ead1ea, 0x98a5eebf, 0xb87a412, 0xf09e13bf, 0x84843da8, 0xdb537b05, - 0xed61f8c3, 0x000040, 00000000 + 0xed61f8c3, 0x000040 } }, { @@ -50432,19 +50431,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb4495e57, 0x739c40dc, 0x370a023b, 0xaef61eb1, 0x61bd7bac, 0xe22e31e1, 0x3189d50e, 0x13aae1a7, 0x49bad601, 0x14634435, 0x8558c991, 0x614734c3, 0x91b9d5c3, 0x93a5d550, 0xb2749614, - 0xe7f8a25d, 0x0000fb, 00000000 + 0xe7f8a25d, 0x0000fb }, { 0x61b1dbf6, 0xfe37b60, 0x90405b5f, 0xa9703c2c, 0xdaf99758, 0x18b80f2f, 0xb77d8df9, 0xd9d34105, 0x5c4592a2, 0x216352c9, 0xeb5262cf, 0x1a14dbe5, 0x8cfaf58a, 0x17fae9b2, 0xb4100c75, - 0x6ec3bbe3, 0x000056, 00000000 + 0x6ec3bbe3, 0x000056 }, { 0x66390938, 0xf4bbaf21, 0xf578b79c, 0x1f22873a, 0x238e4133, 0x31b7c499, 0xc5f36cd4, 0xfd9bc308, 0x337427a3, 0xa0060fa9, 0x7e1ced2f, 0xf52a538f, 0x571e5bae, 0x92787d2d, 0x44d7f850, - 0xd015403d, 0x000158, 00000000 + 0xd015403d, 0x000158 } }, { @@ -50452,19 +50451,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc14f0c63, 0x6dd5eb89, 0x589eb545, 0x351c3c37, 0x69bc6774, 0x3607ff74, 0xd31821ab, 0xc60c21c6, 0x78c6965d, 0xaed5ff61, 0x2d335704, 0x454246cd, 0x774617fa, 0x6c049d3a, 0xe2e34230, - 0xab3b0f39, 0x00001c, 00000000 + 0xab3b0f39, 0x00001c }, { 0x79192044, 0xc71d0470, 0x197d1e35, 0x7c0c9b88, 0x62b5706f, 0x167c5458, 0xcfe6a081, 0x1cdc641c, 0x820d8b1, 0xacfda078, 0xd95f7942, 0x7d2e7354, 0xd1ebdb22, 0x5387aec, 0xbe68ef55, - 0x9cd369bd, 0x00006f, 00000000 + 0x9cd369bd, 0x00006f }, { 0x12244bb2, 0xa93319e9, 0x41200c25, 0x8fe98135, 0x2804073b, 0x45536bb, 0xb1486b15, 0x904e6ddb, 0x1034fc24, 0x2cbac891, 0x313d740f, 0x46bdaa40, 0x2f1bb19, 0x81aad3eb, 0xd456605d, - 0x6f7dc8de, 0x00012f, 00000000 + 0x6f7dc8de, 0x00012f } }, { @@ -50472,19 +50471,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1757c659, 0x913825a9, 0xa4465140, 0xb765aa44, 0xa702fdc7, 0xa5fe4253, 0x60231d22, 0x607cdf76, 0xae4ba3bf, 0xb2e02a32, 0xb3458bed, 0xc32a7fe4, 0xea5f1a42, 0x2c460663, 0x18efcc2, - 0x7b81efe3, 0x00009b, 00000000 + 0x7b81efe3, 0x00009b }, { 0xf205224, 0xf1e13032, 0x84d8529a, 0xccfe768f, 0x6c319bef, 0x4d001778, 0x8a9c192a, 0xd371aae6, 0x4302211e, 0xb57c5a66, 0xabbba79c, 0x985c40c4, 0xcf056c55, 0x2b8450ae, 0xafbe5802, - 0x89686b0e, 0x000102, 00000000 + 0x89686b0e, 0x000102 }, { 0xb3ae2b20, 0xf68fea54, 0x58391755, 0xb9a53941, 0x9104f127, 0xba5e33de, 0xf4b854c1, 0x2a5f21d3, 0x6dbb5e19, 0x1a072fe1, 0x82237ced, 0x9d661f76, 0x488fc453, 0xdb48966b, 0xcf250af8, - 0x2d2ba3ba, 0x000106, 00000000 + 0x2d2ba3ba, 0x000106 } }, { @@ -50492,19 +50491,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x76acb822, 0xc5e7adfb, 0x1265cddf, 0x3bf2517, 0xfdc1d4d7, 0xcd5501d6, 0x3417023a, 0xf3139dbd, 0xd1fadca1, 0x539e5837, 0x6b7aabca, 0x8568df35, 0xf898ca8b, 0xe7a796ec, 0x5be48e56, - 0x39a9c595, 0x000062, 00000000 + 0x39a9c595, 0x000062 }, { 0xe1d5f11c, 0xc98491d0, 0xac86ed4, 0xaab30035, 0xd9948915, 0xb9567266, 0x357ff1a3, 0xc640b8a5, 0xf0008dc3, 0xc461a3a9, 0x3a7bafa4, 0x9091e348, 0x1355d4fc, 0x5858306, 0xddab89c1, - 0xd65726b4, 0x0001ce, 00000000 + 0xd65726b4, 0x0001ce }, { 0x287bb04d, 0x84c9bdee, 0xf459fc0d, 0xf5fafec2, 0x842519f2, 0x71dfc818, 0x4dc3fdcb, 0xcac15f3b, 0x40eefe16, 0xfc63e983, 0x59704334, 0x9773cd2e, 0x58f05139, 0xb1661ee8, 0xf21009a7, - 0xe4b0d0ab, 0x0001c5, 00000000 + 0xe4b0d0ab, 0x0001c5 } }, { @@ -50512,19 +50511,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x67f92b85, 0xf714c300, 0xd6efa965, 0xc16d1f14, 0xef2fc0f8, 0xa7db825c, 0xf72af3b2, 0x9d6c5d0b, 0xa337212c, 0xc120c40f, 0xd83245d6, 0x993bee73, 0xdc0f60b, 0xc1e66f27, 0x285e0474, - 0xded1d35b, 0x000122, 00000000 + 0xded1d35b, 0x000122 }, { 0x5906d0d4, 0x6505381b, 0x3b23a82d, 0x67183e0e, 0x8070f1, 0xe9442d8b, 0x541216e1, 0xf860bf1f, 0xf730145c, 0x6c6e1f71, 0x4f39ebe4, 0x972a15c0, 0x434a4b79, 0xb2d6eeda, 0x5b245264, - 0x7a690390, 0x000149, 00000000 + 0x7a690390, 0x000149 }, { 0xdf308cd7, 0xce21e0b8, 0x1da066e9, 0x7e5797b5, 0x474df6d2, 0xedcc898c, 0xf05549bf, 0xc8d4a8f6, 0xa29eba51, 0xa8cfc8b2, 0x8253936b, 0xc9bd7fd, 0xd68c0e91, 0xd7e6a014, 0xd5e6ac42, - 0xde6a5ea, 0x0000e1, 00000000 + 0xde6a5ea, 0x0000e1 } }, { @@ -50532,19 +50531,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc1aefc6d, 0x22f57a93, 0x172a5ae7, 0x3ab4ddf0, 0x24e6863f, 0xc8c7ab11, 0x659c074b, 0xc0f518dc, 0xb94841d2, 0x5952974e, 0x9c99de37, 0x1ee7f17e, 0xf5e05463, 0xb6fe0d64, 0x55a181af, - 0xf8bd47f3, 0x0000bc, 00000000 + 0xf8bd47f3, 0x0000bc }, { 0xb0fe8106, 0xaf44342b, 0xd7b0e7b5, 0xfaa8f352, 0x35d5ab92, 0x7c9fe5ae, 0xcb0d787e, 0xffd7b441, 0xe426e1fc, 0xbd11b624, 0xd7628ce9, 0x5265cf74, 0x2286c0ea, 0x6d7a4015, 0x21798462, - 0x91cd2096, 0x000159, 00000000 + 0x91cd2096, 0x000159 }, { 0x274c7b7e, 0xd40b8170, 0x647b9f2f, 0xbba97b9d, 0x6a1fe6a, 0xa2ec67c, 0xb6003bb0, 0x186ba2d7, 0x4098a79d, 0x52f469bf, 0xd7a5a178, 0xa2c2d008, 0x7b01f58e, 0x67f344, 0x14c02ca3, - 0x9e1770a0, 0x000091, 00000000 + 0x9e1770a0, 0x000091 } }, { @@ -50552,19 +50551,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x444c9c1, 0x9e612549, 0xcd9adcd5, 0xfdaf017e, 0xa16529ae, 0x217c3416, 0xad2f3312, 0xc36070b2, 0x7c94c2d6, 0x916d0cf1, 0xe5b5c63c, 0xb41f2bf1, 0xd7549f2a, 0x8874d5ba, 0xe30a7b8a, - 0x6b3ea15e, 0x000067, 00000000 + 0x6b3ea15e, 0x000067 }, { 0xd890bbe, 0x2d9505a2, 0xe57a2ee8, 0x41a0488b, 0x64b9bab5, 0x5168e7dc, 0x63dd40b6, 0x37a42db6, 0x8ddcc63b, 0xa8af1b91, 0x73bb7565, 0xb87706bb, 0xbcee4fbf, 0x41e8c67, 0x464d9cef, - 0x2cdb7222, 0x000110, 00000000 + 0x2cdb7222, 0x000110 }, { 0xb8ab9001, 0xa6c0b4b9, 0x21a560b4, 0x6e9c13bd, 0xc26e5cfc, 0x49796d61, 0x7a0dab0c, 0x43f5b1e0, 0xcd953708, 0xd7886f47, 0xbe5677d0, 0x51ec3e97, 0x90660b27, 0xad89b3ac, 0xe3a0e7a2, - 0x4daffe2d, 0x000049, 00000000 + 0x4daffe2d, 0x000049 } }, { @@ -50572,19 +50571,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1216ee1, 0x56c3c83, 0x8c8392fe, 0x70f8d768, 0xddb7299a, 0x207a73cc, 0x890de51d, 0xae337947, 0x82caa7f4, 0x484cf2b8, 0x18281e38, 0xa9846e6, 0xcd79a910, 0xd9089000, 0xc54889f7, - 0xbe41e166, 0x0001ee, 00000000 + 0xbe41e166, 0x0001ee }, { 0xbaa1faeb, 0xf27abbc0, 0xc61f37fc, 0xc0ca5146, 0x34deaa1b, 0xe4c80764, 0x97ffd97, 0x543c0449, 0x8778fb43, 0x3466efe6, 0x57a21969, 0x5e674fbd, 0x8db5f831, 0x338e58c0, 0xcafeca79, - 0xe9ac2b24, 0x00006e, 00000000 + 0xe9ac2b24, 0x00006e }, { 0x5b55362e, 0xf7209916, 0x84ecb812, 0xa25656b4, 0x77c58e44, 0x25ed88a0, 0x12cbf459, 0x95b4a615, 0x99117a0b, 0x9859dfee, 0xf32b81ba, 0xc890d7d9, 0x53e16c7d, 0xc8cdf66f, 0x173ff0bf, - 0x3f092dd1, 0x000026, 00000000 + 0x3f092dd1, 0x000026 } }, { @@ -50592,19 +50591,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb0b9a443, 0xd4888107, 0x23ea142, 0x34049a20, 0xc5c0d119, 0x76150708, 0x4344347d, 0x1efd7460, 0xafd7a321, 0x3b5c1bf5, 0x3befdd1, 0xbe44f293, 0x692b8bdc, 0x4c3076db, 0x6f22bd61, - 0xee18ccbe, 0x0001bb, 00000000 + 0xee18ccbe, 0x0001bb }, { 0x9c680773, 0x63c9d447, 0x64bf6fca, 0x5e745a75, 0x9f96b7ef, 0x1231a793, 0xa0aa1671, 0x2a687d19, 0xe494dea4, 0x5e9be726, 0xbf482b44, 0x98e9146c, 0x395e8257, 0xd37074cf, 0xd1aeca62, - 0x1c146e3b, 0x00010c, 00000000 + 0x1c146e3b, 0x00010c }, { 0x5c6d8645, 0x3460ce7e, 0xc6e4d4e2, 0x69fbcb4c, 0x29eb40d7, 0xda53bb0f, 0x515d6b0e, 0x86cbeecd, 0xda4f04bc, 0xce056de4, 0xdbd8461e, 0xc4acc735, 0x4fa4e250, 0x98b5b79e, 0x4c513783, - 0xdb56a562, 0x0001cf, 00000000 + 0xdb56a562, 0x0001cf } } }, @@ -50614,19 +50613,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6d62314a, 0x6fbeedea, 0xf57903ad, 0x37cc36e5, 0x26a04afc, 0x2187cf7e, 0xae075be2, 0xaceff391, 0x22d273a7, 0xca36e40c, 0xb481ff96, 0xa356dd3b, 0x3caa088c, 0x25d796ca, 0x3b4dc12b, - 0xacf74d4c, 0x000039, 00000000 + 0xacf74d4c, 0x000039 }, { 0x8b9cb632, 0x7327f221, 0xabadb281, 0xaed2ede, 0x4897c34e, 0xf9530bfa, 0xc8f153a8, 0x6ab93c14, 0x4783ad11, 0x3133878d, 0x37ffb05c, 0x2226f396, 0x8ebf04b3, 0xf9dfa342, 0x652c7aa9, - 0x6ef174d3, 0x0001e7, 00000000 + 0x6ef174d3, 0x0001e7 }, { 0x681abe05, 0x34462a74, 0x74197999, 0x992a02da, 0xd1ba137c, 0xbf418480, 0x40ec35e7, 0xf7b0f59a, 0x4fb5f35, 0x562c2b7b, 0x3bf4a67c, 0x18455315, 0xbfa325a0, 0x90b014c6, 0x85d8b0f9, - 0xcab90b14, 0x000001, 00000000 + 0xcab90b14, 0x000001 } }, { @@ -50634,19 +50633,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x37053323, 0xdea756b9, 0x35199000, 0xd33f8fb5, 0x27c5fbf2, 0xe15f00f7, 0x66daea1b, 0x9d7d44fe, 0x1832e16, 0x489b1495, 0xaba22be5, 0xff7b2fe, 0xaa554556, 0xdaf96ce6, 0xa2e145ba, - 0xde637a77, 0x00011c, 00000000 + 0xde637a77, 0x00011c }, { 0xa50ab08b, 0x1ead6698, 0xafc63066, 0xeecfdd78, 0x8e152a13, 0x39079d16, 0xb089d688, 0x7082b656, 0xad0172af, 0x4917ef1f, 0x2f56b462, 0xa4e46827, 0xa8248d2d, 0x3e2ed2cc, 0x615ff13d, - 0x4daae950, 0x0000b7, 00000000 + 0x4daae950, 0x0000b7 }, { 0xc14a9a17, 0xa81484da, 0x8279e578, 0x4446f638, 0xe667f767, 0x8853f470, 0x1a2db16, 0x702dc294, 0x97219219, 0x4c225660, 0xb16f7f1e, 0x653004c8, 0xcc2ff1d8, 0x177d94fd, 0x54bdc2f9, - 0xf5ac1c5b, 0x000168, 00000000 + 0xf5ac1c5b, 0x000168 } }, { @@ -50654,19 +50653,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf01f1baa, 0x7213e236, 0xff727f80, 0xf7a9393e, 0x104531d1, 0xba6d1e69, 0xe2084941, 0xdc69618d, 0x24d5da96, 0xa16d9b6b, 0x8a422a1f, 0x3ae1a63e, 0x45f7ed, 0x59b924e6, 0x1153c613, - 0x6c1a8f23, 0x0000d7, 00000000 + 0x6c1a8f23, 0x0000d7 }, { 0x8e7b09bc, 0xf0b26200, 0xa5ae7025, 0x794c35fd, 0x9cab96eb, 0xdb342086, 0x2c489aa3, 0x3f4aa7c8, 0xb3c4bf90, 0x7822e6b9, 0xf0c7dabf, 0xe35dd8be, 0xfc77485b, 0xbf8b2238, 0x62d3d89f, - 0xe898a3f0, 0x000122, 00000000 + 0xe898a3f0, 0x000122 }, { 0x9bf11c77, 0x59ba2da6, 0x88d74e40, 0x2e29bff8, 0x63925fd4, 0x809bcfbe, 0xf6400d1c, 0x3ec0ed14, 0xf8ec3668, 0x8089ed89, 0x153bfe7b, 0x71e7e8fe, 0xb6c8be3e, 0xbf903bd9, 0x6ff75816, - 0x95f0ca0e, 0x00012b, 00000000 + 0x95f0ca0e, 0x00012b } }, { @@ -50674,19 +50673,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc410df30, 0x68695156, 0xa444d29e, 0xdbdabc4f, 0x4c4cb1c6, 0x8c4ddbf6, 0xe568a8b7, 0xdf409643, 0xaf646859, 0x56f8235b, 0x76db357b, 0xf3a5dac0, 0x1b496e04, 0x49e619b2, 0xef891cdc, - 0xb624e4af, 0x0000fc, 00000000 + 0xb624e4af, 0x0000fc }, { 0xdd665440, 0xf02e0aa6, 0x77669efe, 0xf2d4e11b, 0xfc340393, 0xe2c8e6d9, 0x53d98300, 0x45477135, 0xa2677b0a, 0xb1b047e7, 0x947c22f6, 0x57e0e0b0, 0x2c801d2c, 0x53121701, 0x39cce466, - 0xdf9a70fc, 0x000149, 00000000 + 0xdf9a70fc, 0x000149 }, { 0x2fce37d3, 0xc62f6d09, 0x36fb5d38, 0x4497b302, 0xe12b4306, 0xa7b036dd, 0xc2921fb0, 0x6adac8fe, 0x6510a7b5, 0xe4454863, 0x74746a8c, 0xdf2cf995, 0xf28a68dc, 0x5c666bc7, 0x15e35a68, - 0x7146c6e0, 0x0001d5, 00000000 + 0x7146c6e0, 0x0001d5 } }, { @@ -50694,19 +50693,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7c0f6318, 0xce2b9587, 0xe1a9a4b7, 0x8e6970c8, 0x5a4b9d1c, 0x7539c4e0, 0x2b6e1fec, 0xb7be1797, 0xa2a59385, 0x47023644, 0x8d11f57a, 0x95498437, 0x2174ceb0, 0xb5ccb3cf, 0x64bbdb19, - 0xa0ab883a, 0x0001b9, 00000000 + 0xa0ab883a, 0x0001b9 }, { 0x9fd587a, 0x5be2c729, 0x6b271ce0, 0xc93472ea, 0x43831ca5, 0x85d4854c, 0xba850051, 0x2ee52840, 0x2f1ea468, 0x8ab6c2af, 0xba2028c8, 0xad33294f, 0xcb94b580, 0xaefddda1, 0xb35158e2, - 0x7860e56e, 0x00004a, 00000000 + 0x7860e56e, 0x00004a }, { 0x59c4fef0, 0xf35f4919, 0xcaaff548, 0x8fcb5648, 0xce6f6608, 0x50e8a5fb, 0x32feb4cd, 0xaf38b663, 0x90d4304f, 0xbc9909a, 0x3404b697, 0xb9e64529, 0x415722e8, 0xe637ef74, 0xa16fbc7a, - 0xf8b93d4d, 0x0000a8, 00000000 + 0xf8b93d4d, 0x0000a8 } }, { @@ -50714,19 +50713,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36e8012f, 0x9a856643, 0x1099490d, 0x65f22e59, 0xcff5c340, 0xeda435f3, 0x451cd204, 0xb42b75a, 0x706b5e5a, 0xa2da65ea, 0xf985e818, 0x602c880c, 0x8ddc9a65, 0xedbd96e, 0x4035693a, - 0x924d7dc5, 0x0001a5, 00000000 + 0x924d7dc5, 0x0001a5 }, { 0xefb5a81, 0x2b0c40f0, 0xd21f3493, 0x27badcc7, 0xb598ec79, 0x2f03d7e9, 0x4a0c331, 0x98e2ea53, 0x3bcfb0b6, 0xe973801, 0xe6a68ee1, 0x73ef7485, 0x94e364c5, 0x1f445ff7, 0x786570d2, - 0xe5752126, 0x000038, 00000000 + 0xe5752126, 0x000038 }, { 0xf833e6c2, 0x69a13805, 0x1277276c, 0x97479732, 0xd02d8c70, 0x17656d1c, 0xa69b3fec, 0x892d148c, 0x4582b367, 0xff0cc7ea, 0x6bb73b21, 0x3cca0213, 0x3e69e5aa, 0xaa3d4aac, 0xa4ec55e3, - 0x4885994e, 0x000032, 00000000 + 0x4885994e, 0x000032 } }, { @@ -50734,19 +50733,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe0caa5b6, 0xcf15b19d, 0xbdbccd8d, 0x4e2b4e23, 0xca7b1ec, 0x821075e2, 0x101eb0b2, 0xb1ff4be3, 0x15d67d01, 0x71f1cddf, 0xef2ef933, 0xc6d6eaa9, 0xcef22d0d, 0xbf77e8e0, 0xe6e3de49, - 0x1e8fb611, 0x000138, 00000000 + 0x1e8fb611, 0x000138 }, { 0x9f941ca7, 0xd59e2e, 0x8fa7cb6d, 0x3e855bce, 0x7a323fdf, 0xd443b997, 0xe9c88c2e, 0x898d51a6, 0x787ca07d, 0x817fe881, 0xc4627809, 0x5fbd408d, 0x78c73b0a, 0xdf15ee0a, 0xfb1aa5dc, - 0xfd6d3a5b, 0x0000b5, 00000000 + 0xfd6d3a5b, 0x0000b5 }, { 0xe367ae09, 0x950addc, 0x4ca1b1ce, 0x5c0f2dd2, 0x2632d681, 0x94c5fdc5, 0xc63f82d7, 0xae8f19b9, 0x36c3150d, 0xece2b5e5, 0xb291d272, 0x43efb0a4, 0x45fd4edc, 0x9eaffe6b, 0x3dd14882, - 0xf5b44cfa, 0x000066, 00000000 + 0xf5b44cfa, 0x000066 } }, { @@ -50754,19 +50753,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd8457e20, 0x7aed8652, 0x2aa3166c, 0x3add2c44, 0x637e7c6, 0x6b1acc4e, 0x4dc149a8, 0x1a8170b0, 0x7840b1f4, 0x62d54d78, 0xa244c10b, 0x2a349800, 0x74fd2490, 0x6266f111, 0xa2a7e45f, - 0xe09570d7, 0x0001ee, 00000000 + 0xe09570d7, 0x0001ee }, { 0xad2803fc, 0xa07f5591, 0x1b2d5bec, 0x4b89f05e, 0x9d7d0aa7, 0x58d8c480, 0x8ded74b9, 0x36d7b4d3, 0x596f4457, 0x637b8685, 0xf8433c80, 0xda2683a1, 0xc89fc9d4, 0x38c679c7, 0xddc668db, - 0xc749f84b, 0x00006b, 00000000 + 0xc749f84b, 0x00006b }, { 0x95584e81, 0x6b8f7e45, 0xf1f7844, 0xc728de2c, 0xba5d6c89, 0x8610c951, 0x3cee9202, 0xaa3da03e, 0xdc3bc20b, 0x5fa53ace, 0x3a5b4da0, 0x997dd4c6, 0x8ed7f4bc, 0x457836e8, 0x388ee11b, - 0xc4519742, 0x000089, 00000000 + 0xc4519742, 0x000089 } }, { @@ -50774,19 +50773,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9206e569, 0xbd008ecf, 0xf26836db, 0xd6766f6e, 0xc795ccec, 0xa25c5be4, 0x7f1e9b92, 0x17e8d9a3, 0xe3e9e93a, 0xec5e3ea, 0x22782f47, 0xb55f4e97, 0xcf6aa0ec, 0xc362612e, 0x34dc3e28, - 0x20f8f730, 0x000131, 00000000 + 0x20f8f730, 0x000131 }, { 0xe6b02d16, 0x92bf30e7, 0x1ef53539, 0xa3859e73, 0xb37f0f45, 0xf36b412f, 0xe8d8c379, 0x8f0b3fc3, 0x1806c2db, 0x3b1eefbf, 0xdf0c4276, 0x38e7e2ff, 0xcaa262c8, 0xec8d4ca3, 0xd64f1f77, - 0xfbb4c04c, 0x000028, 00000000 + 0xfbb4c04c, 0x000028 }, { 0xb4dd7172, 0x44ef72cb, 0x2b228851, 0x6cc0a87e, 0x7c5c7e78, 0x456cd3b5, 0x9c7c51c1, 0x7cdafeba, 0x35fce686, 0x23b20e7d, 0x2611ad3e, 0x38095e2f, 0xf06b91db, 0x1656f71, 0x262cdc33, - 0x8b3ea823, 0x000074, 00000000 + 0x8b3ea823, 0x000074 } }, { @@ -50794,19 +50793,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb7454bf3, 0xf012747b, 0x4ad53a5, 0xb4cdfcf4, 0x233c06be, 0x2835dfe0, 0x1ea8bb67, 0xf7cd359d, 0x75bb7a10, 0x886fee24, 0x56fc82ab, 0xe85c8e38, 0x62fe0445, 0x4b5d7537, 0x62d12006, - 0x3c8f586, 0x00010f, 00000000 + 0x3c8f586, 0x00010f }, { 0x241175d9, 0x8d68504b, 0x98b21e, 0x1bba4afa, 0x96d3792a, 0x94fbc34d, 0xd26f9ec2, 0x24e26991, 0xef97494a, 0xeefe6d82, 0x19ef18c2, 0x80b7ef2a, 0x916cfb8f, 0xb70d0b7d, 0xcdeb94d7, - 0xf3f610c9, 0x0001eb, 00000000 + 0xf3f610c9, 0x0001eb }, { 0x6620a0e5, 0xe9cc10e3, 0x6526180e, 0xd92016f4, 0xcf1316f5, 0x3a17a694, 0xd74650f8, 0xd2a02eb4, 0xc5597526, 0xb2f6e750, 0x68a03c8a, 0x2606d81c, 0x53535bc7, 0x2e97e42b, 0x848baae3, - 0xe0de2974, 0x000126, 00000000 + 0xe0de2974, 0x000126 } }, { @@ -50814,19 +50813,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa6ce77ed, 0x76df6e9, 0x8e4501a, 0x6a2bf6b1, 0x8c987a64, 0x5ab8b1d5, 0x575a3a15, 0xceeaf55a, 0x6a284870, 0x5b263a62, 0x6ef1f7e, 0x7aaa2dde, 0x9a5bb162, 0x84f98641, 0x8151499a, - 0xf1ac2a4a, 0x0000c5, 00000000 + 0xf1ac2a4a, 0x0000c5 }, { 0x8aa731c1, 0x44b2cff9, 0x19b2907b, 0xa54f71, 0xcb85580a, 0x17d53219, 0x30d6747e, 0xaa41b46c, 0x90c7b361, 0x5b2beba7, 0xe6f86881, 0x5c70ecca, 0x825037c2, 0x81b0d3bb, 0xb23411bc, - 0x6a8ee06e, 0x0001bc, 00000000 + 0x6a8ee06e, 0x0001bc }, { 0xe4a801f8, 0xbbb34cc, 0x2208ece0, 0x24e95807, 0x5265237e, 0x71f2e128, 0xe94226eb, 0x12818a64, 0x7ab4ccd2, 0xdd18ea65, 0x5893b28e, 0x2472bd41, 0x56e597a0, 0x29024aa5, 0xc5d1be88, - 0x3f317969, 0x0000a7, 00000000 + 0x3f317969, 0x0000a7 } }, { @@ -50834,19 +50833,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x574c286c, 0x201e0b43, 0xe0d463a9, 0x68e7cc88, 0xf980d881, 0x786ba7c6, 0x963cbcd1, 0x52bd5157, 0x4ab8f940, 0xd2525f23, 0xfc76336f, 0x56658ff4, 0xf937b80c, 0x8bcd0624, 0x20f2e699, - 0x9621d780, 0x000056, 00000000 + 0x9621d780, 0x000056 }, { 0x39a98885, 0x836ab67d, 0xeadb722d, 0x82fc7edf, 0xa8ea8db1, 0xb92719a1, 0xfa56a7f0, 0xf2589509, 0x780cb111, 0x7e978fc1, 0x8d4e79e0, 0x85af913f, 0xd236047c, 0xf4cb1d98, 0xf51265a8, - 0xc5f497d5, 0x0000c3, 00000000 + 0xc5f497d5, 0x0000c3 }, { 0x3738221e, 0x6257b359, 0x7afa35d6, 0xc276129d, 0x11b5b8d6, 0xe9a8bbc1, 0xed8678b6, 0x7abe95c, 0xd66b5f2d, 0xe3bd5d6e, 0xd87faadc, 0xc227c210, 0x54cbb9bf, 0x51f7045e, 0x902311d6, - 0x75c6a5d0, 0x00016b, 00000000 + 0x75c6a5d0, 0x00016b } }, { @@ -50854,19 +50853,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfeafa2d2, 0xf3642ee9, 0x8d614920, 0x78c89014, 0x7f95926, 0xabf501f8, 0x90d22b65, 0xde2c14bf, 0x5986f06f, 0xca2d458e, 0xb7e1fb93, 0xd83cf56b, 0xca2097d5, 0xff6e81d4, 0x506baa81, - 0xa520a53e, 0x0000e2, 00000000 + 0xa520a53e, 0x0000e2 }, { 0xab70d45, 0x5e8c4d69, 0x2e30801f, 0x74edd2e1, 0xe32c9017, 0x6bf22646, 0x350d7f3d, 0xf1e5f82d, 0x6a552f7b, 0x41bd16ef, 0xab0a91ff, 0x3bd78a42, 0xe1a488fc, 0x66f4cb59, 0x43a071f0, - 0x7d032ef2, 0x0001b1, 00000000 + 0x7d032ef2, 0x0001b1 }, { 0xc4195fa3, 0xf0ff5e61, 0x1870c109, 0xc7e7e0fe, 0xfc70693f, 0x8026e631, 0xa5175222, 0x3fefd44a, 0x54d0836, 0x1d527256, 0x5aa9bd77, 0xf2d0cca6, 0xe3470328, 0xb8fa6438, 0xba8d4a0e, - 0x73a9c411, 0x00004b, 00000000 + 0x73a9c411, 0x00004b } }, { @@ -50874,19 +50873,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc82e2b7e, 0x2e59755e, 0x9f7b1b08, 0xa837059c, 0xa0de782d, 0xf8ccc756, 0xe9b676c6, 0xc84325e8, 0xb50ff54b, 0xe156a0ac, 0xb44e50fc, 0x4a56f954, 0xa3cbd5d, 0x97cb1409, 0xee6b66a0, - 0xd14c1aeb, 0x0000b2, 00000000 + 0xd14c1aeb, 0x0000b2 }, { 0x54672d2c, 0x26ebc906, 0xd16ca47e, 0xe611daf8, 0x1b1c22f3, 0x366dc307, 0x70b6e790, 0x40bec28a, 0xd12cd577, 0xbc5ce641, 0xbd011a8c, 0xa1192ce9, 0x11ceaf7e, 0x91536443, 0x1f5cd09b, - 0x711ae4fc, 0x0000f6, 00000000 + 0x711ae4fc, 0x0000f6 }, { 0xab0843c3, 0x92f613d9, 0x46c3abdf, 0x31b3a2c8, 0x5c4c4026, 0x8adfc6cd, 0xc50d102a, 0x42168dfd, 0xb6628c31, 0xb6c301f1, 0x17cf6c4a, 0x7df43d09, 0xa989de13, 0x4008d860, 0x99f7a9df, - 0x1e08a2a7, 0x0001e3, 00000000 + 0x1e08a2a7, 0x0001e3 } }, { @@ -50894,19 +50893,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x912f4fb1, 0x6ca111b, 0xb9162dec, 0xf546bea2, 0x16354019, 0x14c2979d, 0x5f4d2744, 0xdbe9e5b6, 0x5adea8b5, 0xd41a5e80, 0x3a516af2, 0x903ddfa3, 0x6911cc46, 0x5dc95bae, 0x78567dca, - 0x67f0e60, 0x000133, 00000000 + 0x67f0e60, 0x000133 }, { 0xc624fb81, 0x6376278b, 0x49cb76a8, 0xd2e40a9a, 0x21b6a773, 0xe474fede, 0x392502c7, 0xd217d66, 0x400481bb, 0x924d3fca, 0x10e6ab12, 0xb10a6a45, 0x675d185b, 0x70a54215, 0xbe8f37f8, - 0xaeb34b11, 0x0000c0, 00000000 + 0xaeb34b11, 0x0000c0 }, { 0x4c2c6527, 0x9284d5a3, 0xc012561a, 0x5eec8c8e, 0xd705a118, 0x951e00e5, 0xd63135b6, 0xcc6b971a, 0xe72680d2, 0x3b66770f, 0x3ab4d8b5, 0x6f3b53d9, 0x2b1f16e1, 0x8cf19396, 0x2ecd0aa8, - 0x184a1afd, 0x0000e0, 00000000 + 0x184a1afd, 0x0000e0 } } }, @@ -50916,19 +50915,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe427c7b7, 0x8ec05ce2, 0x50e546ac, 0xff07b79f, 0xedbacdc7, 0xed0350d0, 0xe41d450a, 0xa07ecaea, 0x4b179564, 0x5d7d8044, 0x965058bb, 0xd3b5627c, 0x4f69b8a, 0x8ff3af84, 0x1fa0536d, - 0xfcf4c07e, 0x000172, 00000000 + 0xfcf4c07e, 0x000172 }, { 0xd28bd2cb, 0x6e72172, 0x19caa93b, 0xb8a2dbb8, 0x64efffac, 0xbce12e0d, 0x699fcd05, 0x883897e4, 0x224464fd, 0xf12c64c6, 0x6401a920, 0x7a4394f5, 0xab01de24, 0x12ec206, 0xe5f1948a, - 0xd2256a13, 0x000080, 00000000 + 0xd2256a13, 0x000080 }, { 0x68528db, 0x72394696, 0x7160158c, 0xb88f032, 0xc18a442b, 0x6a22777b, 0xaf83d695, 0x852ea1ad, 0xbb051529, 0x7e515c50, 0x4d3cb2bd, 0x99e6263f, 0xdc853e01, 0x8d8d86de, 0x68ed57c, - 0xdce43d8d, 0x0001da, 00000000 + 0xdce43d8d, 0x0001da } }, { @@ -50936,19 +50935,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd3c45d9c, 0xc6c8345e, 0x8c09674e, 0xf671eee9, 0x200c5276, 0xc7fcf312, 0x10489b4d, 0x33bb4204, 0xc634b77f, 0x60d4ce52, 0x598aee28, 0x39d425f6, 0x770f138b, 0x12bbb809, 0x98e268a, - 0x69e6dfdd, 0x0000a0, 00000000 + 0x69e6dfdd, 0x0000a0 }, { 0xd399e41b, 0xb542fe9e, 0x9e3e2ab8, 0x70a9d14f, 0xe3a78cd, 0x8f8b1c7a, 0x9235df4d, 0x30ac780f, 0xae9e8a89, 0xb83d2ad8, 0x69dd469f, 0x8e7f4168, 0x5961f36e, 0x3b2c20ec, 0x471f9d89, - 0xf3e5878e, 0x000069, 00000000 + 0xf3e5878e, 0x000069 }, { 0x151359cf, 0x97f8234b, 0x821112ce, 0xb16c1fd1, 0xd26ce45f, 0x13990ac8, 0x8f8dfbc8, 0xe9443d0b, 0xb9b76d91, 0xe2de9be, 0xcd13e27b, 0x301dbf16, 0x1ab09183, 0x81299acc, 0x7a2c0369, - 0x860ee543, 0x0000f7, 00000000 + 0x860ee543, 0x0000f7 } }, { @@ -50956,19 +50955,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb02d458, 0xb2b8885, 0xd42de7f, 0xa7880112, 0x8774c57d, 0xfa78c481, 0x2d35ccf6, 0x7d2a2f92, 0x279aa0f7, 0x136f3bee, 0xfece0aa5, 0x958d5043, 0xec2c86e3, 0x78aaff30, 0x8f6ad85c, - 0x4742bda6, 0x0000c3, 00000000 + 0x4742bda6, 0x0000c3 }, { 0xe94d8db6, 0xf0f488fc, 0xfd9a255a, 0xbd7daff9, 0xe7eb4f9c, 0x12d9b760, 0xa34f3766, 0xee968f29, 0x5483547f, 0x145652c9, 0x66da0ea5, 0xe7fd81d, 0x471b6775, 0x2c5a43ff, 0x335b859, - 0xee68f020, 0x0001fc, 00000000 + 0xee68f020, 0x0001fc }, { 0x8d9d2613, 0x3bb6a69, 0x37a6feb1, 0x3d43a722, 0x35748890, 0x4482af7a, 0xbf3b2fc0, 0x83c43e6c, 0x52a55b3a, 0x16a26b34, 0x7dc7cacf, 0xaed4d776, 0x67359caf, 0x7d1d94e7, 0x8e5a53aa, - 0x3bc514db, 0x000085, 00000000 + 0x3bc514db, 0x000085 } }, { @@ -50976,19 +50975,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd2ff5763, 0x87aa4892, 0x448a1a7f, 0x225cf6ac, 0x1b18a24e, 0x4d74a454, 0x6b3ffb5d, 0x8de6fa24, 0xd528ea5f, 0x60dacec4, 0xc206dc07, 0x244b7844, 0xc4d511a3, 0xfbad7805, 0x8e9479aa, - 0xd4794c85, 0x0001a3, 00000000 + 0xd4794c85, 0x0001a3 }, { 0x1a7753cf, 0xf3fe3258, 0x2edce476, 0x5a3342e7, 0xb873b662, 0xea2869fa, 0x89d48286, 0x6d089061, 0xd3721e1b, 0x89b1be12, 0x26119082, 0x64177871, 0x1c5e67b, 0xb84aa420, 0xa10676d0, - 0x76e3dbbd, 0x0001b6, 00000000 + 0x76e3dbbd, 0x0001b6 }, { 0x83e7dd16, 0xb6808c6, 0xf78992d2, 0x5277e3b8, 0xafdeb84f, 0xe215b32, 0x4fa8a7ba, 0x79d6f058, 0x4f828a17, 0x10e9fdbb, 0x587c164c, 0xee54a991, 0x4a011f51, 0x49b0982b, 0x1190f637, - 0x7dca7824, 0x000199, 00000000 + 0x7dca7824, 0x000199 } }, { @@ -50996,19 +50995,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1fa3d8b9, 0xb243933a, 0xd6833046, 0xa2af4cbf, 0xf6242585, 0xddc19916, 0xaf1cc17, 0x6a9a018c, 0x97f9322b, 0xef177aee, 0xe4a82ed7, 0x7bac103c, 0xf7e98c7, 0x9321e5e0, 0x719e6d13, - 0x731ca720, 0x0001b2, 00000000 + 0x731ca720, 0x0001b2 }, { 0x4b441f62, 0x331e95d6, 0xdc31bbbc, 0xe7b1f0e4, 0xdf692de6, 0xddb0d7ad, 0xa734299a, 0xc393734b, 0x4cb7e85, 0x280a431c, 0x1518cebe, 0xc3c16a42, 0x3b3563c9, 0x9ef9d214, 0xa71aac1f, - 0xc181688f, 0x000080, 00000000 + 0xc181688f, 0x000080 }, { 0xd1a20146, 0x60c107dc, 0x32952b1, 0x426df8ef, 0xce39dccd, 0x98cfad4a, 0xb66e7c44, 0xa44b8d1d, 0xf3370b65, 0x8e760f24, 0x53d92a8e, 0x6e10e8d1, 0xb9607e56, 0xf54357c0, 0x7986a18, - 0x5a75abc7, 0x000070, 00000000 + 0x5a75abc7, 0x000070 } }, { @@ -51016,19 +51015,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd096ba9c, 0x7410a959, 0x35cbacbd, 0xd7210170, 0x2a9d5b9a, 0xf11520fe, 0xb0e0b111, 0xd202e0a7, 0x7dc6ea4a, 0xb65a6a1c, 0xda54affe, 0x20efd735, 0x6789e514, 0x3941166a, 0x3fd05bd7, - 0x935c0786, 0x0000b2, 00000000 + 0x935c0786, 0x0000b2 }, { 0x44512053, 0xd5339f1a, 0xb1e6a9d0, 0xda1f59ab, 0xe93986c7, 0x61b6081e, 0xea6220cd, 0xf71bf11a, 0xd40246dc, 0xe361535, 0x2563dd94, 0x4a69002a, 0x6c4936ea, 0xf6f98b12, 0x700e094d, - 0x397d6396, 0x000023, 00000000 + 0x397d6396, 0x000023 }, { 0x1c3a858d, 0x891eee9d, 0x68b31dbf, 0x45111cd6, 0x7910dc, 0xaf19ab60, 0x2c1665b1, 0xac1f0130, 0xf9ad03b3, 0x8b04fb28, 0xa4b44f97, 0x1c8ad30, 0xd7bb3ae1, 0x38d2df32, 0xd85d6804, - 0x13ea7ff1, 0x000065, 00000000 + 0x13ea7ff1, 0x000065 } }, { @@ -51036,19 +51035,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x448e6b5d, 0x74eaebf2, 0xee0a91b6, 0xa9c3b313, 0x227a6909, 0xacbc14aa, 0x43252f95, 0xb120611a, 0x5c7eb603, 0xbf1d1cd, 0x484d6e01, 0xd74c5e7e, 0xde09dae, 0x178cb6ec, 0x5a1015c1, - 0xa218e663, 0x00012e, 00000000 + 0xa218e663, 0x00012e }, { 0x2a8d677f, 0xb4e5d705, 0x237276e9, 0xe0c59add, 0xb131656e, 0xf3a5e78c, 0x91bb341a, 0xcdde014e, 0x1957c1c3, 0xb661d6e9, 0xd0dd07ea, 0x45165eb0, 0x9c166ec6, 0xc184981b, 0x19005427, - 0xd84f297c, 0x0000d7, 00000000 + 0xd84f297c, 0x0000d7 }, { 0x4254143e, 0x3e367b81, 0xcf3e1579, 0x73981e9, 0x31171c5e, 0x578ed1b8, 0x2246ee6, 0x8bbcd1e9, 0xdf7c7cd6, 0x2a7057ee, 0x84ed5a9c, 0x5a270978, 0xc015584d, 0xeecba02a, 0x2b05743b, - 0xb47d2b3, 0x0000df, 00000000 + 0xb47d2b3, 0x0000df } }, { @@ -51056,19 +51055,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x475fbbad, 0x82ce0ebd, 0xca7afe22, 0x6976b006, 0xe3e15e5e, 0x56205ed3, 0xd13eeba5, 0x8524cc05, 0x92b5d8fc, 0x7a4c70fe, 0x6d48ca7c, 0xf8d5d910, 0x5ed676b5, 0xe7ea67a1, 0x12ed8f3d, - 0xa4bded14, 0x0001f5, 00000000 + 0xa4bded14, 0x0001f5 }, { 0x62639242, 0x1912c6f4, 0xb656291b, 0x39daff94, 0x21604baf, 0x71d687ee, 0xfc0ff7e4, 0x7f743711, 0x1a697f35, 0xad8cf54e, 0x833e5a27, 0x2aa6b5fe, 0xebcbe2b6, 0x6ad608fa, 0xfc263938, - 0xdca93e72, 0x00004e, 00000000 + 0xdca93e72, 0x00004e }, { 0xf7dc8cbd, 0x89f027a3, 0x6a1460b8, 0x2fff3cd7, 0xfefd8165, 0xcaf39832, 0x43a5d6f6, 0x3f546c2b, 0xf66ab1ac, 0x8d97e56f, 0x4548f917, 0x82d0e622, 0xcafd514c, 0xbec2f819, 0x3066e176, - 0x6fe0af25, 0x0001dc, 00000000 + 0x6fe0af25, 0x0001dc } }, { @@ -51076,19 +51075,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8c11dc50, 0x67d24f9a, 0x5a2aa351, 0xe591bcdc, 0x6b0ab309, 0x5e39edfe, 0xe3fa752b, 0x791b24f3, 0x48982f30, 0x265d8ae7, 0x8106cd81, 0x5e8a1a34, 0xe7b46c1f, 0x663816f7, 0xe81704d8, - 0x476e2eca, 0x0000a1, 00000000 + 0x476e2eca, 0x0000a1 }, { 0x533ca461, 0x82b6eaaa, 0x35173e3c, 0xe117878a, 0x8967902d, 0x3b1a5b33, 0xe7b9fff8, 0x7efeccbf, 0xcf185e9e, 0x4b6c60de, 0x7b118aa9, 0xe29b0b66, 0x4802e15f, 0x6edbd4d9, 0x6eff20f1, - 0x7fc8ede2, 0x000081, 00000000 + 0x7fc8ede2, 0x000081 }, { 0xe26a3dca, 0xa584a1ab, 0xcccf1d06, 0x2079645b, 0x8b3f7a, 0xaf9633bf, 0x1b068149, 0xbac4db20, 0x5e7c1427, 0xfb5680d1, 0x8b4fccc7, 0xd64d57df, 0xba8c400f, 0x5e0c75e2, 0x9b5288b8, - 0xe2e57707, 0x0001d5, 00000000 + 0xe2e57707, 0x0001d5 } }, { @@ -51096,19 +51095,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x64a14372, 0xef349a20, 0x27882161, 0xbbf2451c, 0xf36bd006, 0x7464f810, 0xddf21dc, 0x4ef3a81f, 0x6c16fb6f, 0x2f0c649c, 0xcd16513e, 0xa1687ba0, 0x1fc21385, 0xf4ec2b3d, 0xcf077751, - 0x2e5d0079, 0x000139, 00000000 + 0x2e5d0079, 0x000139 }, { 0x68735838, 0x9169b273, 0x6a7f6b9a, 0xb7cbbba9, 0xd3f8aef8, 0xaa896135, 0x6c8d73b4, 0x6bb371c, 0x1dbacf02, 0x4f98a72c, 0xbbbd99, 0x42301d04, 0x4a2d1f35, 0x98a19b57, 0xc9fd78e6, - 0xfd15e532, 0x00000b, 00000000 + 0xfd15e532, 0x00000b }, { 0x99466dda, 0xc8fdd5b2, 0xb8103237, 0xb54a294b, 0x96f3f5cc, 0x4c27e94a, 0xf4ffe1c8, 0xca6d6f50, 0x151b8db1, 0xc0fa0a24, 0x552f80ab, 0xad45ee90, 0x8b41e7a6, 0x51ada84, 0x5acfec7f, - 0x132e53b2, 00000000, 00000000 + 0x132e53b2, 00000000 } }, { @@ -51116,19 +51115,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8530c705, 0xed848cf1, 0x619e073e, 0x3e35571e, 0x6c540027, 0xe38428a3, 0x572754aa, 0xb2021b9b, 0x6c4d4f54, 0xc1c73fad, 0xb2230bdb, 0xde4ff0b6, 0xc054f197, 0x5a5b2206, 0x77109302, - 0xe249a092, 0x000128, 00000000 + 0xe249a092, 0x000128 }, { 0x2638f8cf, 0x2ce85a9d, 0xcfbab0a5, 0xc330bc94, 0x398386b8, 0xda2b43e1, 0x10113951, 0x795b8ede, 0x25ef066, 0x48c57ef0, 0x8d738569, 0xf6d58df4, 0xb63bce12, 0xd59c5107, 0x2f4f4dfe, - 0x942fce4b, 0x0001d8, 00000000 + 0x942fce4b, 0x0001d8 }, { 0x9b0ab832, 0x56ffe067, 0x2e127406, 0x3d7f3ce4, 0x9dae6fd6, 0x8bac0dad, 0x7d639205, 0x159a031d, 0x15fb29a6, 0xad1149f7, 0xefc5fcfd, 0xa47ce849, 0xe5a08914, 0x4fd49cf6, 0x6c1341e1, - 0xe21e1414, 0x000027, 00000000 + 0xe21e1414, 0x000027 } }, { @@ -51136,19 +51135,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x904b984, 0x37db326c, 0xc2d80d2, 0x2213ef57, 0xa5bd5710, 0xd61e1389, 0x46189c1a, 0x6fe796b, 0xe076b026, 0x7e585239, 0xa9388d41, 0x19d709e, 0xb8cb8fc9, 0xaf25ba51, 0xdb8aa4aa, - 0xeaa89316, 0x0000d5, 00000000 + 0xeaa89316, 0x0000d5 }, { 0x2efd8922, 0xe0ee7caf, 0xa8c9cd5f, 0xadfff6a3, 0xe64d612, 0x412c69dd, 0x1e7762c8, 0x92e5362b, 0x730292ae, 0x1fe845d9, 0xe4630890, 0xba1041f5, 0x94840ae4, 0xb49f5263, 0x9235d1b4, - 0x6b8c2aa3, 0x000081, 00000000 + 0x6b8c2aa3, 0x000081 }, { 0x2bb1488d, 0xfe573616, 0x479a6b1, 0x8d30c617, 0x5ebc73e, 0xa16249d0, 0x37118605, 0xeaddd937, 0xeba38002, 0x73b851c6, 0x20f23503, 0x4191a8ea, 0x134b50d4, 0xbefbe0d5, 0x2de6ee18, - 0xe53d33e, 0x00010d, 00000000 + 0xe53d33e, 0x00010d } }, { @@ -51156,19 +51155,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x28516f0d, 0x1ed14f7c, 0x8a637834, 0x5c18a4ec, 0xf9115332, 0x246e6779, 0xa0194f7c, 0xfe75d37, 0x10858768, 0xd431da24, 0x468cdae8, 0xe3ff7d8, 0xc99c6061, 0x4599df90, 0x3e57d989, - 0x33d95cde, 0x0000f9, 00000000 + 0x33d95cde, 0x0000f9 }, { 0x940449d7, 0x25b81c50, 0xc32beef8, 0x69b3953e, 0xf88d3eaf, 0xc4d3c93a, 0xd95f1d4f, 0xd2af5ff6, 0xc86d3fc8, 0x3ef2adf7, 0xbf3e2e4c, 0xc77d663f, 0x4d413e4d, 0xaa9285e8, 0x8cc32f8, - 0x20635221, 0x0001b2, 00000000 + 0x20635221, 0x0001b2 }, { 0x7907e0f0, 0x695f4e4c, 0x28f9d570, 0xc8da03e3, 0xe2022c74, 0xa943136, 0x299ae7ab, 0x4c3f399e, 0xcb90a482, 0x645eccbe, 0xcbf45f01, 0xb419df7f, 0xcc7caef3, 0xff47638d, 0x4f287b84, - 0xe7f8ebcc, 0x000016, 00000000 + 0xe7f8ebcc, 0x000016 } }, { @@ -51176,19 +51175,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2528bb7f, 0x9fec7fc1, 0x767656e0, 0x80ed2698, 0x731af171, 0x27a90615, 0xc5f48956, 0x89a6d4c3, 0xb5f1d4d4, 0xff41034f, 0x4d252157, 0x9641e956, 0x24f11c5b, 0x54602fd0, 0x62c42285, - 0xd4ae115f, 0x0000c6, 00000000 + 0xd4ae115f, 0x0000c6 }, { 0xe42655fb, 0x330ceef9, 0xbffd5801, 0xff760b04, 0xc34e1ece, 0x6c703667, 0xfcec8e0c, 0xeb97e2f, 0x8512afbc, 0x75a6e72f, 0xe5f24a1f, 0xcea67457, 0xc37e3eff, 0xda549772, 0xe3e1821c, - 0x5671fe4, 0x0000c4, 00000000 + 0x5671fe4, 0x0000c4 }, { 0xe7ce5f1b, 0x42fc4fca, 0xbef9808a, 0xc71363a, 0x805fb2d8, 0x2b2921bb, 0x3fc94c77, 0x81e9a4d, 0xe3663214, 0x33ff3aac, 0x5d787f0b, 0xcd79a90a, 0x71716b5f, 0x5fbab951, 0xc01414f2, - 0x693cc57b, 0x0000d0, 00000000 + 0x693cc57b, 0x0000d0 } }, { @@ -51196,19 +51195,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a74e18a, 0x86eb89f8, 0x71146082, 0x34ce415e, 0x8996627d, 0x147209c7, 0x250e1b86, 0x63cf8ace, 0x35a1655d, 0x4ee210e2, 0xeeb68720, 0xf379a13b, 0x1dd6c5cb, 0x6e187537, 0x227ee008, - 0xa53c5e02, 0x00004d, 00000000 + 0xa53c5e02, 0x00004d }, { 0x52e23845, 0xde53012e, 0x889f866d, 0x849b803e, 0x2864331, 0x2fd07586, 0xabcca587, 0xc02797ff, 0x8632c775, 0x442fb990, 0x7e0f812d, 0xc194bfac, 0xb9701cee, 0xfe3b523d, 0x644ddc1e, - 0x737e9c2f, 0x00010b, 00000000 + 0x737e9c2f, 0x00010b }, { 0xaf3a7564, 0xedc0343, 0x1c93f696, 0x37a7ede6, 0xee4579d1, 0xadefee35, 0xe32be824, 0xa8f5f539, 0x1f4e117c, 0xc4fc0248, 0x13d9862f, 0xdab7c277, 0xc8f29179, 0x17d37ab7, 0x5ec4e9a9, - 0x3c04cf9f, 0x0001b1, 00000000 + 0x3c04cf9f, 0x0001b1 } } }, @@ -51218,19 +51217,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x32caa392, 0xebce6858, 0x1e3631c6, 0xb8e13e51, 0x1eb10756, 0xeb2c27d3, 0x7e6f7b01, 0x5f2a8eef, 0xc09953dc, 0x47d611ea, 0x27459ffc, 0xdc02d55c, 0x4a7beb2c, 0x5966fe5e, 0x8b73604, - 0x92087895, 0x00000a, 00000000 + 0x92087895, 0x00000a }, { 0x29407f79, 0x76bcb3a2, 0xa5ea0070, 0xdafb0433, 0xf2f6672d, 0x9df4c981, 0xe85ce7d2, 0x8f76188f, 0xb535d6c5, 0x7bdbc210, 0x9b27b21f, 0xaecf3c2f, 0xc8ee058, 0x2786bee2, 0x6dfc3e39, - 0x1ff02df2, 0x0001cb, 00000000 + 0x1ff02df2, 0x0001cb }, { 0x5ad78775, 0xe6b0958f, 0x7b7e7dd1, 0x6c238f5d, 0x838c971d, 0x95b6484a, 0xf155bca1, 0xdbf27b66, 0x603b2b10, 0xcfb97796, 0x2ae32f37, 0xc31ef467, 0xae68c3fe, 0x86af43b0, 0x884678d8, - 0x630e4865, 0x0000bb, 00000000 + 0x630e4865, 0x0000bb } }, { @@ -51238,19 +51237,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9dd44273, 0x2b81d7cb, 0xfa1ef328, 0x9b46d7ae, 0x5a1b378d, 0x1d41c8d7, 0xd399d4c3, 0x961ee405, 0x27432379, 0x8fb405bc, 0x5860e3c8, 0xc191757f, 0x31bff651, 0xcc98fe75, 0xbac40c40, - 0x97f64625, 0x000017, 00000000 + 0x97f64625, 0x000017 }, { 0x6cc83d5d, 0x24350d5a, 0x9082e21f, 0xda619a07, 0x5bf6fb39, 0x79248b29, 0xec8587f3, 0xdf0414af, 0xc6d47756, 0xc24785e3, 0xc1f34111, 0xed593858, 0xb6920fd1, 0x4b31dc9, 0xcd5c74fa, - 0xc5beb24e, 0x0001fb, 00000000 + 0xc5beb24e, 0x0001fb }, { 0xd733eb1e, 0x95d66811, 0x1168d8a1, 0x2c43184b, 0x4cfa5778, 0x7d8b93ba, 0x9040156f, 0x550510fd, 0xbe9c2035, 0xae7fc1d1, 0xe2f763e6, 0xbfd8a6be, 0x57dfea02, 0x702aee20, 0xd662e164, - 0xf05c8ac9, 0x0000b3, 00000000 + 0xf05c8ac9, 0x0000b3 } }, { @@ -51258,19 +51257,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa2136dd2, 0xe25bac3b, 0x4faecbc2, 0xf01049ae, 0xa014310, 0x98eb70a8, 0xe59f28e9, 0xebf79c09, 0xbb3f8623, 0x984e273d, 0xa39954a2, 0xffe6dfca, 0x9d8f3cf7, 0x2ef625fc, 0x28513171, - 0xe009fe06, 0x0000d4, 00000000 + 0xe009fe06, 0x0000d4 }, { 0x70f559da, 0x694d107e, 0xc08d776a, 0xc088b945, 0x90f2d09c, 0x91b25b95, 0x6630d45e, 0xa0475407, 0xf09b67d5, 0x4866bf57, 0x55e9f05f, 0x2b6dbcc3, 0xb17b1030, 0xe7b25cf7, 0x902782e2, - 0xde047864, 0x000087, 00000000 + 0xde047864, 0x000087 }, { 0x75ca9ee1, 0x72ec4985, 0xe232bf98, 0x676299dc, 0xe611427c, 0xebc0d295, 0xf6ac4be2, 0x5b1d567e, 0x551d6b7f, 0xf353306b, 0x1cade12f, 0xb0a90c43, 0xbed34137, 0x4b8b8657, 0x90ee45aa, - 0x632d097b, 0x000053, 00000000 + 0x632d097b, 0x000053 } }, { @@ -51278,19 +51277,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc00f9df3, 0xc7837785, 0xe70a786, 0x9f689ea2, 0xd8b4a3ab, 0x6f26545d, 0x7648b1fc, 0xa6a837cc, 0xa9aff4a4, 0x187bce81, 0x7c52c51b, 0x7a4f3c30, 0x2893563f, 0x6ba0077d, 0x4bd30d78, - 0x32e6640d, 0x0001c7, 00000000 + 0x32e6640d, 0x0001c7 }, { 0x8bdc821b, 0xaf818125, 0xec45f3b9, 0x39debbca, 0xdc0c57c6, 0x83573dbf, 0x5cbe1fb2, 0x5169387a, 0xcc10a7c3, 0x6857ddab, 0xc0ef2b57, 0x513671b6, 0xe706bc18, 0xed3011db, 0x94a6467a, - 0xac15a92b, 0x00012b, 00000000 + 0xac15a92b, 0x00012b }, { 0xe4bebb36, 0x40bd2bf3, 0x58cbf30e, 0x2666f508, 0x43210ce4, 0x82d80527, 0x9c7739d7, 0xf9414e5, 0x53fe90b1, 0x5fd7da40, 0xd0fdef55, 0x4ff362f1, 0x58e64f5c, 0x8dcac32f, 0x3461d2fb, - 0x4acbb8be, 0x000141, 00000000 + 0x4acbb8be, 0x000141 } }, { @@ -51298,19 +51297,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd6af8c1, 0xfaf744ed, 0xfd1abfec, 0xc82954d0, 0x9bb71aa8, 0x852da1c2, 0x557e9578, 0xa1e3263, 0x52ef5707, 0x98b4403f, 0x156f8c8f, 0xaf3480d8, 0x3f0597c8, 0xd801f05f, 0x2457ac24, - 0x27b5b04f, 0x0001be, 00000000 + 0x27b5b04f, 0x0001be }, { 0xd8b0ead9, 0xa770c445, 0x9323a0de, 0x38ef088a, 0x6555dab3, 0xaf68e635, 0x155c0a2d, 0xff932be0, 0x6f8fc8e0, 0xbb03b48f, 0xb567016b, 0x28db46d0, 0x3d13e02f, 0xc5287857, 0x5839ebf, - 0x66f1d769, 0x000079, 00000000 + 0x66f1d769, 0x000079 }, { 0x98a7c327, 0x1cbf1811, 0x5099d9fc, 0xeeeec0ed, 0x9a5bb9ec, 0xf41f6b2c, 0xb51aaa5b, 0x2f4104c9, 0x99c8262a, 0xb9fac7a1, 0x6f5ea05e, 0x93a3e20e, 0xa8eb66cf, 0x55db2326, 0x25218d04, - 0x5a06fa0f, 0x00006e, 00000000 + 0x5a06fa0f, 0x00006e } }, { @@ -51318,19 +51317,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7462bcda, 0x19e5bb21, 0x73fcbc0f, 0x9a3445ac, 0x1238b5d4, 0x4550d096, 0xe463968d, 0xc34af65, 0x94b344bc, 0x8baaebb5, 0x1650151c, 0x1e4903fd, 0xc8199de5, 0x5a240263, 0x29f8b252, - 0x1be676a, 0x000186, 00000000 + 0x1be676a, 0x000186 }, { 0x109d8ea8, 0xf7a59d20, 0x960e5c26, 0x6d72c59f, 0xbb5be8a1, 0x5973a7e6, 0x86b307, 0x130023f2, 0xd2ef8f1f, 0xeb48ff0b, 0x8b05dd2a, 0x8360e1a4, 0xc1ea636b, 0xd9ea8618, 0x29d0af55, - 0x42876ae3, 0x0001ae, 00000000 + 0x42876ae3, 0x0001ae }, { 0x659d3e82, 0x64950935, 0x88d9fe45, 0xf5533f5b, 0xd26ad38d, 0xc33e398, 0xce21dab9, 0xb73868d7, 0xf1e0326c, 0xf2d7240, 0x92f5a7ab, 0xf5ebb411, 0x40256572, 0x8abfbf4d, 0x51c000f8, - 0x1d09d9b7, 0x000115, 00000000 + 0x1d09d9b7, 0x000115 } }, { @@ -51338,19 +51337,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xba0308e, 0xc10aa83, 0xe5d8fe35, 0x9d243b47, 0x529a5377, 0xb280eb35, 0xa6737372, 0x5344665c, 0xae4863f2, 0xbfaecc67, 0xd3c9819, 0x8632c626, 0xb76e3110, 0xb2173e4e, 0x411005bc, - 0x2a70d5a7, 0x000016, 00000000 + 0x2a70d5a7, 0x000016 }, { 0xbeb0118f, 0x8edfd64, 0x16c4d487, 0x9b017de3, 0x46ee8b8d, 0xfc0295c1, 0x97053f53, 0xb34ac725, 0xf75bf57a, 0x20d1caa5, 0x4fb93628, 0x5eb86bb, 0x628db795, 0x97b39c61, 0x2702f359, - 0xc60821c0, 0x000100, 00000000 + 0xc60821c0, 0x000100 }, { 0xc214cf03, 0xdc3f90eb, 0xdf4259ed, 0xc4652b3a, 0xf7ff6543, 0x726e496d, 0xe9abb117, 0xe7a8c157, 0x80d02146, 0x9b16a62e, 0x1ef30d2a, 0x132b376d, 0xeefb5bee, 0x9ccdaedb, 0x2dba08fc, - 0xac8451d7, 0x000002, 00000000 + 0xac8451d7, 0x000002 } }, { @@ -51358,19 +51357,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf37e98f2, 0x10739fbf, 0x6960712e, 0x4d50a83c, 0x5b1b042d, 0xc451c21, 0x2564e48, 0x23b1925, 0x768408bd, 0x49dfe51c, 0xaf38463e, 0xc909e716, 0x999ef7f7, 0xc4f7a7d, 0xb94b32cd, - 0xd9e188d1, 0x0001cc, 00000000 + 0xd9e188d1, 0x0001cc }, { 0x1398b7e0, 0x1fb173f6, 0xa1c9ff31, 0xcb704f35, 0xc889cdb0, 0xf86f1a81, 0xdae1def9, 0x5fdd4f0f, 0x4dada872, 0xfb163144, 0x6de54514, 0x253f059d, 0x4ef47ae2, 0xa1006968, 0xcf6c3cc2, - 0x82957530, 0x00016c, 00000000 + 0x82957530, 0x00016c }, { 0xa8778740, 0x7dc257e8, 0x668414ec, 0x3e05aa51, 0x9011bb17, 0x83278c55, 0x5e92729c, 0x9ea5cae1, 0xfb6dca89, 0x9c0eec01, 0x6523623e, 0x1b958e69, 0xa3895ea0, 0x7f80c5c7, 0x4c773336, - 0x38cd0694, 0x00015f, 00000000 + 0x38cd0694, 0x00015f } }, { @@ -51378,19 +51377,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0840a3a, 0x784a399, 0x3631159, 0xe1847337, 0xd67c5779, 0x1673bebe, 0xecb30704, 0xd33ff138, 0x58f37132, 0x5452eb6a, 0x836a53b3, 0xba88d11c, 0xacea4b22, 0xe31295fc, 0x2f865920, - 0xc14d4040, 0x0000ea, 00000000 + 0xc14d4040, 0x0000ea }, { 0xf63ce190, 0x8bb0a657, 0x2972da14, 0xe3fe2962, 0xf8009f03, 0xe9caf35a, 0xa77717ff, 0x970deb03, 0x2f3592bf, 0x54c19ead, 0x545843f6, 0x23e97ff1, 0xd934c85b, 0xd68f6903, 0x72badd0e, - 0xcd7d53a8, 0x000128, 00000000 + 0xcd7d53a8, 0x000128 }, { 0x2e4a2b86, 0xeb8cc640, 0xbd242d2, 0x998865a7, 0x54228705, 0xad89682a, 0xe9f77ab, 0x670886ec, 0x2a244d69, 0xad3ae307, 0xeea90937, 0x48c45eb7, 0x1219079d, 0x9c0292ba, 0xff070ed0, - 0x161ed8f1, 0x000036, 00000000 + 0x161ed8f1, 0x000036 } }, { @@ -51398,19 +51397,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a3e625a, 0xb40a6955, 0x4987ff4c, 0xefc81777, 0x580490eb, 0xcf735470, 0xa5f80eb4, 0xf04810f6, 0x943be2c2, 0x86a25cae, 0x8de68289, 0xea9aca0a, 0x8c118960, 0xf7d65c67, 0x700cc194, - 0x76221f07, 0x000003, 00000000 + 0x76221f07, 0x000003 }, { 0xd6c74c71, 0xee3ae877, 0x48207dd3, 0x39b85edc, 0x753f7f, 0xf870cf0e, 0x750d8ca2, 0x281923b3, 0x7e234d5, 0x85ef872d, 0x853c585, 0x4f962516, 0x59039120, 0xe186a4b, 0xa46eae25, - 0x50ebb734, 0x000190, 00000000 + 0x50ebb734, 0x000190 }, { 0xfcc280c3, 0x3bdfd446, 0x8d5ff9e, 0xe436566, 0xc822e7b0, 0xe10c37d, 0x5e8af31e, 0xb32aace4, 0xdf3181f2, 0x39b0ecca, 0x26684951, 0x98c1e293, 0x7b21177e, 0x6a52737b, 0xaec370fb, - 0x61916e56, 0x00013b, 00000000 + 0x61916e56, 0x00013b } }, { @@ -51418,19 +51417,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfec9ea07, 0xe5785990, 0xe78cb383, 0xe598d642, 0x4fd02f1a, 0x1d41e586, 0x14c3341e, 0x584d5c35, 0x60e802fa, 0xe4dc7a64, 0xcbc3d255, 0x46c7bef8, 0x1ad0c4c8, 0xce1011cc, 0x374a33d8, - 0xadc41a1, 0x0000e6, 00000000 + 0xadc41a1, 0x0000e6 }, { 0x33cf208a, 0xb41e720e, 0x562d7ad2, 0x242b285c, 0x1dc60451, 0x23e9297b, 0x9f1beff7, 0x4c7cb2f8, 0xec9674b2, 0x5cf0f151, 0x4a037c, 0x9b596704, 0xbb206d0e, 0xa6e87b9e, 0x6c5147fe, - 0xcfd88e7d, 0x0001e8, 00000000 + 0xcfd88e7d, 0x0001e8 }, { 0xba138f9b, 0xbc315d69, 0x4e3a3e12, 0xf10ee169, 0xac7712e3, 0xecdde860, 0x9c54b968, 0x81d4fc82, 0x93342ed, 0xb2cf1be3, 0x7d963c22, 0x45c5a6f6, 0xcaab5785, 0x25e244f4, 0x8de5d9e0, - 0x50697164, 0x00019c, 00000000 + 0x50697164, 0x00019c } }, { @@ -51438,19 +51437,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9f5d79d5, 0x6337ba7c, 0xcf5c3abd, 0x5e813094, 0xb2ac9e8, 0x8f2578aa, 0x3b549a2e, 0x2b150f3a, 0xe53b32e4, 0xad5ee56b, 0x54c26054, 0x5f24bdd, 0xbd84718c, 0x9dc76f5f, 0x8c55fa01, - 0xa8c12f2b, 0x00002d, 00000000 + 0xa8c12f2b, 0x00002d }, { 0xeeba141f, 0x10f1c392, 0x76e7935f, 0xd871cb5e, 0x7fa7300e, 0xcf1e6537, 0xcc5a82a3, 0xfddf62ea, 0x8870ffe9, 0xd17a18af, 0xa7d23ee5, 0x9453fd2a, 0x1880fea7, 0xa13137b7, 0xf9869c8, - 0xb7a8c73a, 0x000099, 00000000 + 0xb7a8c73a, 0x000099 }, { 0x256ac783, 0x2fe461c3, 0xecaf654c, 0xe49523b5, 0x162f5724, 0x1011d530, 0x8c0158e9, 0xf84f0e76, 0x466c37e, 0x35a43621, 0xaec25276, 0x2a468792, 0x28c5edd8, 0xccff4193, 0x279d875f, - 0x331d8177, 0x0000a7, 00000000 + 0x331d8177, 0x0000a7 } }, { @@ -51458,19 +51457,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x927d2135, 0x38a4087a, 0x897223a7, 0x1781adb6, 0xdf7f9562, 0xb779d575, 0x176ae895, 0xfdef082a, 0xa0e3c56f, 0x677eacf2, 0x182c0fb, 0x6b2c4245, 0xae82bef1, 0x8f37e8ab, 0x5437f867, - 0x39f6a162, 0x00012b, 00000000 + 0x39f6a162, 0x00012b }, { 0x72d16160, 0x95234603, 0xa787917f, 0xc7093ce3, 0xc1994d4a, 0x114e0426, 0x605c1ce2, 0x1a328c8f, 0x1d06c7ea, 0x68475d1c, 0xf4799efc, 0xe3de6125, 0xf67813e2, 0x48b55734, 0x53053239, - 0xf6ac923f, 0x00018e, 00000000 + 0xf6ac923f, 0x00018e }, { 0xbeefa59e, 0x36e42b97, 0xabb05b8a, 0xa0eec145, 0x4bff3490, 0x7ca57b19, 0xd3d9b53a, 0x9b69a039, 0x91139b07, 0x18808d02, 0xc42b7be4, 0x8c20a20f, 0x520f968c, 0x4fcb1e66, 0xebbf4495, - 0xe614e19b, 0x000066, 00000000 + 0xe614e19b, 0x000066 } }, { @@ -51478,19 +51477,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8549e620, 0xa48e41bd, 0x5cda3ee, 0x405d9c17, 0x9c473618, 0x1facc6e1, 0xac81ac7c, 0x4703311f, 0x88f06a8, 0x58543cd, 0x9d9d293c, 0xbc901efd, 0x8f73a00, 0x7fd3f347, 0x48b48f93, - 0xbde33b9f, 0x0000df, 00000000 + 0xbde33b9f, 0x0000df }, { 0x98360f8c, 0x6b8bef21, 0x991c9268, 0x6cf1731c, 0x5261cd3, 0xeb6ef75b, 0x284876a3, 0x3aea9e3e, 0x790babe, 0x44a7ce94, 0x9589b5be, 0xb6c354cb, 0x15c20b7c, 0x97263048, 0x7a4ed477, - 0x426bee4d, 0x000112, 00000000 + 0x426bee4d, 0x000112 }, { 0xddb07dd9, 0x27d98e61, 0x2bb43e05, 0xddee3ce7, 0xb466afcb, 0xbc56687e, 0x129461cd, 0x4b054ee, 0xead10f6a, 0xca486e32, 0x2eefbd81, 0xa1913c3a, 0x64e7ec0e, 0x46df3a6, 0x76d3a3c8, - 0x1c3d04d8, 0x00008d, 00000000 + 0x1c3d04d8, 0x00008d } }, { @@ -51498,19 +51497,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x109d09b2, 0x67414b0c, 0x30148969, 0x54c3ce3a, 0xc5067993, 0xba16128b, 0x4f0eb97d, 0x194f70f3, 0xbabd64b0, 0xf7e58ac, 0xec8f4dae, 0x80d1a310, 0x9195a5b1, 0x287d2af9, 0x686a87e8, - 0xa6889b78, 0x00007e, 00000000 + 0xa6889b78, 0x00007e }, { 0x826756ee, 0xce4356fe, 0xe92b7620, 0xea23da5b, 0x2200b6b8, 0xf297a3cc, 0x38c4c7f8, 0xa858527, 0xd26789b8, 0x7209f256, 0x80e068ba, 0x1eb3af95, 0x80276532, 0xa9fc6f97, 0xad119c22, - 0x1b1ff07d, 0x00013b, 00000000 + 0x1b1ff07d, 0x00013b }, { 0x90c342a2, 0xcff7f8bc, 0xed932fd4, 0xc103ed31, 0x4335f9eb, 0x4b2533da, 0x7206ac1b, 0xda2b1c98, 0x56b6cf2b, 0x910ad375, 0x3b9f4b52, 0x8a6e2db1, 0x51e2896f, 0x92c54d03, 0x4fb06f41, - 0x7b03de30, 0x0000b7, 00000000 + 0x7b03de30, 0x0000b7 } } }, @@ -51520,19 +51519,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xff3f197f, 0x399cc51b, 0x511a8f72, 0x90909445, 0x36857e85, 0xdd064900, 0x100b93c9, 0xee12c994, 0x48def161, 0xf977e200, 0xa521977e, 0x9baa0d15, 0xd73ac778, 0xf51bf1ca, 0x9a3a91bb, - 0x5de897bc, 0x000017, 00000000 + 0x5de897bc, 0x000017 }, { 0xbb01a521, 0x4b405408, 0xaba8a329, 0x3394dc96, 0x3666bfb1, 0x1439bb18, 0x991d60d4, 0x8af5d341, 0x7b995bbb, 0x1136e266, 0x7686c3ee, 0xcf662d78, 0xb873dff9, 0xb90dc7bd, 0x68bdda25, - 0x41f693a5, 0x00003f, 00000000 + 0x41f693a5, 0x00003f }, { 0x26ca34a1, 0xd9471356, 0xdff43f77, 0xeff8b045, 0xd4fa6761, 0xc5794cbc, 0xe3d59b7a, 0x7294b0a5, 0x17b41586, 0xdfd586a4, 0x3ffe752a, 0x7210d6c2, 0xb3540d87, 0x7eb48b62, 0x88c0d965, - 0x85cad80a, 0x00019c, 00000000 + 0x85cad80a, 0x00019c } }, { @@ -51540,19 +51539,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d6f9958, 0x7123fe0e, 0x85002a4b, 0xcabe0e8, 0x83a24867, 0xf258caa2, 0xcfe9e836, 0x2d068bea, 0xdfc47312, 0x415b3c83, 0x4a9f60db, 0xce71a322, 0x8878c54e, 0x6ff0081c, 0x7c049793, - 0xf840968a, 0x000030, 00000000 + 0xf840968a, 0x000030 }, { 0x59b9e22f, 0xa51199ef, 0x950e03f8, 0xb53dda9, 0x6fdac703, 0xd2ebc462, 0xba8cfbdb, 0x23b9bf1c, 0xfe1ee421, 0x8152d23c, 0x4a6fe621, 0x7c6b8d15, 0xd773f33a, 0xd6e9e377, 0x1297faf3, - 0x5b6220b6, 0x000106, 00000000 + 0x5b6220b6, 0x000106 }, { 0x7d66709d, 0x362dd445, 0xf7af66ea, 0x33718cf2, 0x22ff7c20, 0x50cee826, 0x2fa432cd, 0xc2087a54, 0x8ee9e7b4, 0x362217dd, 0xc2ee419c, 0xb896fe2f, 0x37a3814e, 0x33371c3b, 0x64fd3511, - 0x95f18700, 0x00011d, 00000000 + 0x95f18700, 0x00011d } }, { @@ -51560,19 +51559,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaf7e00b2, 0x9350e47d, 0xe5aad21, 0xe2bf7c0a, 0xc5ad56f8, 0xca421b3a, 0x83ab4370, 0x5b565689, 0xf86fc514, 0x6e29a93e, 0x65a0fa3, 0x325ab1fb, 0xd69033ca, 0x6aa7f429, 0x73c3767f, - 0xc0876e30, 0x00008a, 00000000 + 0xc0876e30, 0x00008a }, { 0xd776194a, 0x5ce1dfcf, 0x92aba99d, 0x8ad459b5, 0xa71fe0b8, 0x91dbde3f, 0xa2cf340, 0x9c20eb4a, 0x6a8ec57f, 0xe1f05f05, 0x906448dc, 0x1d9ef849, 0xa4f03f45, 0xef6fb11e, 0xbdc03135, - 0xdcab6eef, 0x0001af, 00000000 + 0xdcab6eef, 0x0001af }, { 0xec061459, 0x273e1df3, 0xa73198b, 0xd907d963, 0x4a1013d, 0xb34fcfce, 0xc7912e9a, 0xbaa1320e, 0x2e036ab7, 0x42a35e07, 0xe1cab5e5, 0x52c15b33, 0x560ac9a1, 0xe7965aba, 0x95280dfc, - 0x9cb4457f, 0x0001e2, 00000000 + 0x9cb4457f, 0x0001e2 } }, { @@ -51580,19 +51579,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6471298a, 0x55a3359b, 0xbec23269, 0x253df813, 0x28de2970, 0x8baf311a, 0x5d7d1c9e, 0x7508633b, 0x29428715, 0xbdf6bf24, 0xfb1cbb0, 0xa7fab6d1, 0x93595aa9, 0x286109c8, 0x18b0c53b, - 0x31f1bb17, 0x0001bc, 00000000 + 0x31f1bb17, 0x0001bc }, { 0xfcbe6836, 0xaabe3d5a, 0x7e4c7173, 0xe838e78a, 0xf8ff8211, 0xb1b40249, 0x2fa34490, 0xec4a7f15, 0xa0952b36, 0xd0f291f0, 0x6b6cff1, 0x6c0c9634, 0x80d846b, 0x2cf18234, 0xf04b94a5, - 0x9ff2697c, 0x0001db, 00000000 + 0x9ff2697c, 0x0001db }, { 0x912279b3, 0xc8dd4935, 0x4514c00a, 0x274d450d, 0xcd4925b8, 0x19efe005, 0xccbf896d, 0xe3d431d1, 0x69b22c8a, 0xa8178c22, 0x7f1062a7, 0x8de7e967, 0xe4cd95d7, 0xc5d90683, 0xeabe68a1, - 0x8c52bba1, 0x000101, 00000000 + 0x8c52bba1, 0x000101 } }, { @@ -51600,19 +51599,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x98ac37e1, 0xf7773a57, 0x2e71bdb2, 0xfb8b2fd1, 0xfbf1215e, 0x49aa892e, 0x7ba67e4, 0x5d3cb901, 0x368bb023, 0xcc6ba7b, 0xe6661e72, 0xaba99dd2, 0xccb23a23, 0x26506490, 0xfb11e960, - 0xa07030e2, 0x0000bf, 00000000 + 0xa07030e2, 0x0000bf }, { 0x787f2f3b, 0x1a8a04d8, 0x9b645e4f, 0x8ee615a, 0x499444f3, 0x1c00d34b, 0x4a4166fb, 0x6732d6fa, 0xfe19e69e, 0x3f2d2e19, 0xce4f59c4, 0xe0086f77, 0x4bec91f5, 0xc6fe93e6, 0x797d3d06, - 0x5ebbd8ac, 0x0001ef, 00000000 + 0x5ebbd8ac, 0x0001ef }, { 0xf29e8008, 0xa9b454e2, 0x1ec9fb2a, 0x89d1b306, 0xf968656f, 0x1104b183, 0x66462c86, 0xe6fe451d, 0xae6cf6ed, 0x6957aae5, 0xe5e24ffc, 0x5a4d4396, 0xb8fb247b, 0x6aee0a1b, 0xcd91d016, - 0xfb9328cf, 0x0000d0, 00000000 + 0xfb9328cf, 0x0000d0 } }, { @@ -51620,19 +51619,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x399d1148, 0xa1168022, 0x1f368f01, 0xdd8009be, 0x427ad5cc, 0x34f9cca5, 0x64ec3541, 0x791975c1, 0x7a275e5, 0xe3af68d, 0x782d4b4d, 0x32537ade, 0x833795d0, 0xba824324, 0x827dc4de, - 0xcc3562bc, 0x000072, 00000000 + 0xcc3562bc, 0x000072 }, { 0x9650b0da, 0xea539a4d, 0x18d5e441, 0xddc73bfe, 0xde7dc583, 0x872e5aaa, 0xf39535c9, 0x832c77d7, 0x7ab86fd3, 0xb342651a, 0x13a1845c, 0xb85f6b50, 0x9dccfa08, 0x91b316b7, 0x33df2e5a, - 0x4146372d, 0x00009c, 00000000 + 0x4146372d, 0x00009c }, { 0xc10762ed, 0xa8c44749, 0xeaa4d498, 0x89881995, 0x8eaa267b, 0xe2b73b54, 0x8c5e00d2, 0x9defc711, 0xd7323025, 0x630dc7ca, 0x6e3d3bdc, 0x1a089762, 0x93e027d3, 0xc7a6b6bc, 0x32781d83, - 0x77022736, 0x000049, 00000000 + 0x77022736, 0x000049 } }, { @@ -51640,19 +51639,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf124f34, 0xcf04f041, 0x1d6fd7af, 0x6cc74c01, 0x781cf5e6, 0xc2213017, 0xb9b70b0d, 0x2d323fd6, 0x26870a7e, 0xa6ccc2b0, 0x3cbfaf6e, 0x9f4172b4, 0x52edea7a, 0x3d1ca24d, 0x18cf6fa4, - 0x3e108ced, 0x000140, 00000000 + 0x3e108ced, 0x000140 }, { 0xf153a940, 0xe3ea100a, 0xeec218d5, 0x29ab77da, 0x2d84f564, 0x929c30f2, 0x327f6b71, 0xe1011a40, 0x2f1e69c7, 0x4fbf70cd, 0x7fbc92d3, 0xa4c912f7, 0x9670fee1, 0x54f0895, 0xd46b8cc1, - 0x39464329, 0x0000ef, 00000000 + 0x39464329, 0x0000ef }, { 0x38bb4220, 0x5b616e4b, 0xdbef9d06, 0x50f89d1b, 0x1fb9988c, 0x8f8bf2d, 0x848eb988, 0xf74d0d01, 0xb7a18834, 0xe8b0cc6d, 0xa6aa043b, 0xa3506415, 0xf987a96a, 0x9f7b249f, 0x7834e22a, - 0xcdac70b3, 0x0001be, 00000000 + 0xcdac70b3, 0x0001be } }, { @@ -51660,19 +51659,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x54714f20, 0xec7d31c8, 0xeaf2d782, 0xbc4a06cd, 0xdb916d52, 0x8032cd62, 0xd241983d, 0x60951c0c, 0x7e795e99, 0x11cb5507, 0x99dbbead, 0xb58a1cf5, 0x3659cff6, 0xd9f36439, 0x4db59d20, - 0x6627f0b0, 0x00013f, 00000000 + 0x6627f0b0, 0x00013f }, { 0x39f9fb46, 0x61f7e52e, 0x69750b68, 0x9a06c3bf, 0x5497b24c, 0xadc0cef8, 0xc3cdb8b2, 0xe45ccc23, 0x23bae232, 0x7c8770ab, 0xb7e93db9, 0xbc99133a, 0xf329b76, 0x58b39299, 0xece5a14c, - 0x54af69c4, 0x00015b, 00000000 + 0x54af69c4, 0x00015b }, { 0x60fb957d, 0x44e73143, 0x7bc99b8e, 0x309b00d0, 0xc5e3bf92, 0x83bfbb13, 0x929f29c0, 0x39ed3ca6, 0xf6fcc257, 0xc590cd31, 0xa9729898, 0x836bfe37, 0xb650a8c2, 0x924a2d74, 0x69ac5c57, - 0x6e8b24fe, 0x000002, 00000000 + 0x6e8b24fe, 0x000002 } }, { @@ -51680,19 +51679,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa6d4f1c7, 0x4e138396, 0x73b9355, 0x15372ae7, 0x4f54ff1b, 0x435eda4a, 0x261f4391, 0xa159e525, 0xf4cc42e8, 0x861292fc, 0x597820, 0x2ab72305, 0xd0c7fb69, 0x2f2490eb, 0x42782e2c, - 0x3ec6c93, 0x000101, 00000000 + 0x3ec6c93, 0x000101 }, { 0xf1b88309, 0x5bfc9f91, 0xb2526d1f, 0x864d10a4, 0x8c494a9c, 0x21f96612, 0x3eec73a5, 0x71c42f20, 0xc9dc3a70, 0x342d9127, 0x4eaead82, 0x122ca902, 0x42651393, 0x9db40661, 0x626a0b9e, - 0x3d5d938e, 0x0000ba, 00000000 + 0x3d5d938e, 0x0000ba }, { 0x60ac4653, 0x8cd899d6, 0xb89cc1ca, 0x9e62766, 0x2589d54d, 0x46d770f7, 0x738bd6fd, 0x9da9a38f, 0xe8751190, 0x8dc71706, 0x62a808e, 0x15335fca, 0xcd98d6e8, 0xafb69022, 0xd4122800, - 0x48cd62d4, 0x000079, 00000000 + 0x48cd62d4, 0x000079 } }, { @@ -51700,19 +51699,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x98c8ed4a, 0x1eb9e15b, 0xb2986fff, 0x3f28158f, 0x3da3e493, 0x33e016b4, 0x9eef1f93, 0x437a1b3a, 0xd1b6495f, 0x7bcb89e1, 0xbfeb0b71, 0x81e3a9fe, 0xdd3901f0, 0x63c4e358, 0x49935e90, - 0xc25a1b08, 0x000022, 00000000 + 0xc25a1b08, 0x000022 }, { 0x492b3a14, 0x527b5fcd, 0x1c464ccd, 0xebbb892, 0xb06f7d29, 0xd4ea2367, 0x5ffe18a3, 0x84fce8ad, 0x5b7222a2, 0x5c52cdc0, 0x913ebe04, 0x655c0611, 0x8c43a0f5, 0x8780ccc4, 0xb3be5114, - 0xeba6ebaa, 0x0001fa, 00000000 + 0xeba6ebaa, 0x0001fa }, { 0xbb3f8293, 0x8dc18242, 0xa6d6438d, 0x5e0d949b, 0x8532cc8e, 0x89a4bbaa, 0xa03eee0, 0x3ec7166, 0x765f0753, 0x4041f7d8, 0x1c8253a9, 0xed3e8c81, 0x9c2e3172, 0xbefec600, 0xb0eafcb9, - 0x7abb6ea1, 0x00003e, 00000000 + 0x7abb6ea1, 0x00003e } }, { @@ -51720,19 +51719,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5a74f827, 0xc08de6de, 0x92c572a7, 0xa6ea70c3, 0xc556bfce, 0x7c5819d9, 0xa75bd7cb, 0xc12dd1e7, 0x3547fea7, 0x8186e956, 0x2e715d64, 0x9cacf690, 0xc82d485f, 0x4ecfd6c5, 0xf6935ae2, - 0x4324d5eb, 0x0000f6, 00000000 + 0x4324d5eb, 0x0000f6 }, { 0x33c06dcc, 0x4d0d9308, 0x9d8a1e8, 0x7cc0d4a6, 0xb1a8de38, 0x6f639f88, 0xd996d379, 0xc2885922, 0x8feab11e, 0x3477f81a, 0x2416aaf9, 0x3feacf7c, 0xf4b13a2e, 0xbc2849c, 0xd9df2709, - 0xf9489a41, 0x0000aa, 00000000 + 0xf9489a41, 0x0000aa }, { 0x6f20ee58, 0xe5dffe90, 0xede58a2b, 0xf5587a2, 0x413c613d, 0x1f8bbfec, 0x67a8d872, 0xb80a4adc, 0x89f986d4, 0xa92530c2, 0xe09e9840, 0x4594acac, 0x18cdbe84, 0x33659fe1, 0x2be72e0f, - 0x1bac2041, 0x00005f, 00000000 + 0x1bac2041, 0x00005f } }, { @@ -51740,19 +51739,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf98a33, 0xd4d9caa5, 0xc7714875, 0x2f220135, 0x39ad4bb3, 0x58183eca, 0x9f7264aa, 0xa5429c3, 0xf3806ee7, 0x9392450, 0x4d3ea2f0, 0x982c92f7, 0x82177ef5, 0xf99039ac, 0xc4b81729, - 0xef459f73, 0x000190, 00000000 + 0xef459f73, 0x000190 }, { 0xdbde8ce2, 0xa4df2b27, 0xa57d5a2a, 0xf38fe2ae, 0xa1543a73, 0xcc2af977, 0x8d53f1cc, 0x9dca40dc, 0xab792f6, 0x65eeb066, 0x615a9c0f, 0x925d8699, 0xfe65f007, 0x4b55b2f2, 0xd9b282e, - 0x633a430e, 0x0000fe, 00000000 + 0x633a430e, 0x0000fe }, { 0xc489888f, 0x1a5ea9a4, 0x918916fa, 0x1501d520, 0xa7d048df, 0xde8a93da, 0xfe21a842, 0xd294a133, 0x28ebf82d, 0x81382a84, 0xec3bda9d, 0x9000211d, 0xf9a09868, 0x1dcbb878, 0x7940b6c6, - 0xe0726fb4, 0x0000ff, 00000000 + 0xe0726fb4, 0x0000ff } }, { @@ -51760,19 +51759,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x74553f03, 0x6550708a, 0xbac87aa2, 0xae4436b2, 0x2c71e6a6, 0x50e0cf9a, 0xae967fce, 0x6f9e0586, 0x2fc029f5, 0xe6873232, 0x7840812c, 0xfb081a2d, 0x1f2d2a18, 0x1b7c241c, 0x31708e25, - 0xa2a3601, 0x000042, 00000000 + 0xa2a3601, 0x000042 }, { 0xf08fb95c, 0xdb900436, 0x57107dfa, 0xdadc6c65, 0x4ba34b02, 0x75a05cc6, 0xbe63e46c, 0xc0f586d7, 0x167450cc, 0x98109015, 0x19d56c1a, 0x99e272f8, 0x7a4bdc04, 0x91521403, 0x56c3772a, - 0x5a8f8c42, 0x000063, 00000000 + 0x5a8f8c42, 0x000063 }, { 0x29b98018, 0x90c39d24, 0xd6875d1, 0x9549c3e8, 0xa3d8266d, 0x7c263b45, 0xb412ca75, 0x13c7b82e, 0x4e2d2c37, 0xd56ba737, 0x53ea853f, 0x6c3231b2, 0x82baa38e, 0x39bf67d3, 0xb4467dfe, - 0x8d5ceb49, 0x0001e8, 00000000 + 0x8d5ceb49, 0x0001e8 } }, { @@ -51780,19 +51779,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7e71f428, 0x54c82b07, 0x3b008c1f, 0xe6d83328, 0x50852887, 0xe164ab11, 0xd87324a6, 0x6de8ced0, 0x301e9529, 0x5141d2c3, 0xbdb1f23e, 0x76b39470, 0x16665d2c, 0xb0f11abd, 0xcc8eea18, - 0x2d88c89f, 0x00011d, 00000000 + 0x2d88c89f, 0x00011d }, { 0x9ff09e8a, 0x68568e92, 0xf97f863e, 0x539a41b8, 0x7ef494b3, 0xe7b2cc66, 0x1652b166, 0x7a3c9045, 0x52d12a94, 0x2332074, 0xb61a2f79, 0x1de824c1, 0xaa9ae11f, 0x31e838d3, 0x8c6b20c1, - 0x6e0ef3, 0x0000d7, 00000000 + 0x6e0ef3, 0x0000d7 }, { 0x757d8db4, 0xe6f279e, 0x4ab715cf, 0x676ef726, 0x275d7a81, 0x557efeb7, 0x41b3e586, 0xc21f98ad, 0x22b82eba, 0x7f6d6b8c, 0x7244a8e7, 0xa3e90cf, 0x4d9c6490, 0xe802a36, 0x677ad787, - 0xced0d3af, 0x000037, 00000000 + 0xced0d3af, 0x000037 } }, { @@ -51800,19 +51799,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36c4d20e, 0x8a574df0, 0x2c01d7b7, 0x3cf499a, 0x8ba04267, 0x5a1a037b, 0xcb2ef96d, 0x5d35fb81, 0xd5131fff, 0xe926ac23, 0x7f672891, 0x9dfbc8e, 0x3536e89, 0xed608b73, 0x741f1bdd, - 0x9f3c6f04, 0x0001e3, 00000000 + 0x9f3c6f04, 0x0001e3 }, { 0x3179bdd3, 0x1e47834, 0x4b35679c, 0x270ec57c, 0x83e8bbc6, 0x73f9921f, 0x48c559ea, 0xec515752, 0x4a12276, 0x301783da, 0xb0b537df, 0x58e0e19e, 0x7040c121, 0x76ee1cda, 0xcdc16fa3, - 0xde700bae, 0x0000b0, 00000000 + 0xde700bae, 0x0000b0 }, { 0xf12b27fc, 0xc7c33dde, 0xede7e3d2, 0x3329a21e, 0x9356f3d5, 0xf70317f, 0xf29c8f4b, 0xd7223f09, 0x3727bc9, 0x4491161c, 0xf3c16082, 0x8e00e200, 0x638f51a5, 0x7d62f81b, 0x8359ca44, - 0xb39eb7e5, 0x0001c4, 00000000 + 0xb39eb7e5, 0x0001c4 } } }, @@ -51822,19 +51821,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa5390ef9, 0xdda044, 0x5df09cbb, 0xb49b286f, 0x51ed15af, 0x56f61312, 0xca72ad77, 0x74e9f749, 0xb7b8f584, 0x45f33ada, 0xc3abaf1f, 0xb3210f11, 0x55b6735c, 0x7ae63a06, 0xfb91fb27, - 0x7cb0d5a, 0x000012, 00000000 + 0x7cb0d5a, 0x000012 }, { 0xe01a808b, 0xf9c75c4c, 0xe8543860, 0xce0a3913, 0x6a3a25fa, 0x6fa217aa, 0x134a8a43, 0xf02f4d08, 0xb028a99d, 0x8e70dec2, 0xbbc04a5a, 0x7b39beaa, 0xf8c8f869, 0xaae6ae1b, 0x8a77db91, - 0x1452a104, 0x0000fe, 00000000 + 0x1452a104, 0x0000fe }, { 0xf4812bbf, 0xed6c3b19, 0x531aff32, 0x9ed31e51, 0xc8d98245, 0xf7fa329e, 0x20d0e255, 0xde4c029d, 0x88abedd9, 0x77f06bd5, 0x1470f618, 0x8da65887, 0xcb38da9d, 0xf24f9479, 0xb647d59d, - 0xf07d1acf, 0x0000e9, 00000000 + 0xf07d1acf, 0x0000e9 } }, { @@ -51842,19 +51841,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x80752b3a, 0xbc8637c0, 0x251656fe, 0x5d5974ed, 0x2332ffd2, 0x718736df, 0xdad3be62, 0xfb855213, 0xec39093e, 0xabb57738, 0x3535ee49, 0x9c0d76f, 0x23ebe17, 0xb89e67d6, 0x54b55763, - 0xb8e9341a, 0x0001b7, 00000000 + 0xb8e9341a, 0x0001b7 }, { 0x69c9dd31, 0x3b4923f3, 0xe0bcfbd7, 0x7117a2f6, 0xc50a03d7, 0xc3c0162e, 0xf35cab0d, 0xa9da22e3, 0x24021523, 0x9af08662, 0xe16fa3bf, 0xf01b3dfd, 0x4e954a1a, 0xb5632252, 0x9a7f537a, - 0xb23faaf, 0x0001d7, 00000000 + 0xb23faaf, 0x0001d7 }, { 0x85a9df9e, 0x63dd4e26, 0xb60246c1, 0x20797efd, 0x511818a1, 0x58289fc6, 0x9c445508, 0xcc8a1347, 0x21b70f31, 0x3b1787b3, 0x8076c653, 0x30d6ccbb, 0xbc173b3a, 0xa14a29ad, 0xb22be14d, - 0x5d7dee95, 0x000192, 00000000 + 0x5d7dee95, 0x000192 } }, { @@ -51862,19 +51861,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6376f2e4, 0x89a16514, 0x573b1fef, 0xbdaa345, 0xdcfcad2c, 0xbc507af2, 0xb5b37188, 0xc09bc904, 0x8048bee8, 0x5eb14a41, 0x8e2db165, 0x28f8704e, 0xa2ae77f6, 0x2e94ff71, 0xe763bc21, - 0xd4fcb680, 0x0000e0, 00000000 + 0xd4fcb680, 0x0000e0 }, { 0x68c9c161, 0xaa9abee9, 0x45eef8a2, 0xf88f07d6, 0x408a9299, 0xa62cacde, 0xf61f49c4, 0x63702ad0, 0x62bea82f, 0xb2fceba6, 0x96254abf, 0xf1ae9641, 0xb02da44d, 0xf853f87a, 0x45a5f9ae, - 0x3ba72706, 0x00011d, 00000000 + 0x3ba72706, 0x00011d }, { 0x17f7dfca, 0xcb7be65b, 0x713f1400, 0xf9bf0405, 0xf4ccf242, 0xfa3e65bd, 0xe988f683, 0xedfbcca2, 0xc27da81, 0xd2794385, 0x9a0be51, 0x7a496a53, 0x50dd0455, 0xedaf1bf, 0xc0feb0ee, - 0xcd7454d9, 0x0000ff, 00000000 + 0xcd7454d9, 0x0000ff } }, { @@ -51882,19 +51881,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x67aeb7ce, 0x3bd46368, 0x3e0babae, 0x806de736, 0xf99b5960, 0xd1d00946, 0xdda8bc9e, 0x4c2dd552, 0x7a8dfa6b, 0xd73bc25b, 0x48181aa6, 0x341d5e36, 0xb3ad732b, 0xf5c175eb, 0x1c1b2d1e, - 0x22959339, 0x00003d, 00000000 + 0x22959339, 0x00003d }, { 0x9bff202c, 0xb76a1512, 0xcb9d5859, 0xd519c2be, 0x6b66bbf0, 0x20b667fb, 0x8e02ac39, 0x1a50265e, 0x7313688b, 0x9c5ce72d, 0x8a62800a, 0xa5c65867, 0xf81b7943, 0xa669e376, 0x306b739e, - 0x24fa6a17, 0x00003b, 00000000 + 0x24fa6a17, 0x00003b }, { 0x4ea5c65b, 0xafa55260, 0xfa8a9817, 0xaf2f0c39, 0x5ecb35a9, 0xf8835078, 0x85ab2e88, 0xff7eea3e, 0xdad82337, 0x8b172b2c, 0xb5b2425e, 0x43ed1488, 0x818ba70f, 0xfd6acca, 0x43554b8a, - 0x86cede60, 0x0000ac, 00000000 + 0x86cede60, 0x0000ac } }, { @@ -51902,19 +51901,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf081ff9, 0xe99662e5, 0xf6deac45, 0xee7b736e, 0x2ff5bd4e, 0x62eb6f9d, 0xc4759109, 0x2ffd264a, 0x4b5da43b, 0x582b18f6, 0xe62a8f0b, 0x68b8c353, 0x2dd7f830, 0x741eca8f, 0x2521e994, - 0x6b06ad4f, 0x000038, 00000000 + 0x6b06ad4f, 0x000038 }, { 0x83d5c77b, 0x1083f4b8, 0xb0bfc8f, 0x49d556d, 0x35e6cbf3, 0xe14d91e9, 0x406dd734, 0x531ece32, 0x5b9d138, 0x8b48f22e, 0x6ff3a7de, 0x6b3e4ca3, 0x6cc2c2ec, 0x803d8cb8, 0x90c74c6a, - 0xc10e647e, 0x000010, 00000000 + 0xc10e647e, 0x000010 }, { 0xdb51c0c0, 0x7ed7e62c, 0xd9517ce4, 0x41218aa6, 0x4c0c6422, 0x449c84ce, 0xc951767f, 0x82258546, 0xa06c257a, 0x5581d3b6, 0x1cea6e18, 0x26feb9e0, 0xb6d28a17, 0x700990dd, 0x1412642e, - 0xf2effaf7, 0x00008d, 00000000 + 0xf2effaf7, 0x00008d } }, { @@ -51922,19 +51921,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4734d169, 0xd55195c4, 0x1affbb13, 0x646ab7ac, 0x90465d54, 0xef04e39f, 0xe1d5d0b3, 0x52c05dfd, 0xabfca6a8, 0x784a1114, 0xf134154f, 0x3ffe758a, 0xa45df3bb, 0x73ab7736, 0xfa2d7bcf, - 0x7cd37560, 0x0000c1, 00000000 + 0x7cd37560, 0x0000c1 }, { 0xc9696fb, 0x1ce95027, 0x2bc9b2b5, 0x298ad643, 0x6d738ef, 0xf6cbc8ba, 0x9aa5c3a1, 0x750cd85, 0xdf74d9b1, 0x269dd964, 0x2f9deb25, 0x912f4559, 0xce0f562d, 0x72a9a5eb, 0x952dbee8, - 0x402aee75, 0x0001be, 00000000 + 0x402aee75, 0x0001be }, { 0x8d3b8110, 0x11146cdb, 0x76ab3cd9, 0x64715502, 0x8c45328f, 0x652d8025, 0xfd3c16bc, 0x457d237f, 0xdef9b89d, 0x9d17d960, 0x1ac7a489, 0x7572ef93, 0xc9cc19fd, 0xb02ab52f, 0x71233743, - 0x3a5f968e, 0x000007, 00000000 + 0x3a5f968e, 0x000007 } }, { @@ -51942,19 +51941,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa4b0276b, 0xa269627e, 0x10599fa2, 0x26f94a6a, 0xededeccd, 0x31e326d8, 0x7e2795fb, 0xd996219b, 0x68f8f417, 0x5984157e, 0xa71558db, 0x5d399389, 0xbae37888, 0xc9523894, 0xc7bb8c41, - 0x8df7192b, 0x00001a, 00000000 + 0x8df7192b, 0x00001a }, { 0x347f7ec8, 0xac89d517, 0xcd33df60, 0x1f31f926, 0xac2a3088, 0x12902a1f, 0x12692976, 0xe95cfc92, 0xf0ca8801, 0x553dcc60, 0x5ed121b, 0xcfb232a4, 0xf324662a, 0xbf2b3273, 0x17bd8d6e, - 0xd8adcef9, 0x0001b8, 00000000 + 0xd8adcef9, 0x0001b8 }, { 0x43e42e9f, 0xe8ef792d, 0x999c27b4, 0x50724e6a, 0xd8b4342, 0x39fb04e6, 0x2a81e8e7, 0x4ef9be23, 0x26a263cd, 0x8721ffd4, 0x75b6f955, 0x785b5572, 0x3033698a, 0xa50d82bb, 0xaa14074b, - 0x59cde654, 0x00004a, 00000000 + 0x59cde654, 0x00004a } }, { @@ -51962,19 +51961,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x472aeb07, 0x2e3a902b, 0x9f2cd972, 0xe3337e76, 0xaed24648, 0xd3ec9bb8, 0xb4d4c360, 0xcb6711c, 0xaee32c94, 0x73a8d4c5, 0xb676f8c3, 0x91c0a273, 0xfaf3d930, 0x2c3dc802, 0x96d1230, - 0x99107fa8, 0x0000f1, 00000000 + 0x99107fa8, 0x0000f1 }, { 0x6f35bc07, 0x17c0df6f, 0x1dcb1d79, 0x985089a3, 0xaa730f36, 0x835ee709, 0xf575f540, 0x12841d65, 0x30c6f59b, 0xc682488c, 0xbdc99ed, 0xaba297a8, 0x42b933e2, 0xa4ce368c, 0x2589e054, - 0x246b8fe0, 0x00006b, 00000000 + 0x246b8fe0, 0x00006b }, { 0x2267ff1f, 0x109d6776, 0x59be9e48, 0x76790b4d, 0x9e680558, 0xafe48101, 0x64e93ef5, 0xcd7171a7, 0xdd0ff6a7, 0xc4864bb, 0xf4c9d270, 0xc5dcd23e, 0xa0a9bc0, 0x8b0cdf58, 0xbbf95074, - 0x42596f8a, 0x000010, 00000000 + 0x42596f8a, 0x000010 } }, { @@ -51982,19 +51981,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3c63a757, 0x4bace2cc, 0x55a51034, 0xcff9719, 0xe94605de, 0xaca17e0b, 0x62e2c3a6, 0xf538e274, 0xec6d523, 0x9298d13c, 0x9cbf8f60, 0x66e9fe76, 0x6da5e6ef, 0x66f6bb9d, 0x90c1ac5b, - 0x3b2ca664, 0x000024, 00000000 + 0x3b2ca664, 0x000024 }, { 0xe34ec2a2, 0x6a3c0cf4, 0x2e1862d0, 0x3d0d32ee, 0xbea4def6, 0x972cffd5, 0x8e7fcfe8, 0x6603e3a7, 0x9bd8b78a, 0x21786055, 0xb838bff3, 0xbebafb4f, 0x36f9b155, 0x75aa712d, 0x38c37514, - 0xd9b10107, 0x0000e0, 00000000 + 0xd9b10107, 0x0000e0 }, { 0xccf75d67, 0x817a2741, 0x54228ace, 0x14b9955, 0x70c58a6c, 0x8a1b8d21, 0x7a73a207, 0xc68c918d, 0x5c60397e, 0x84bf04a8, 0x5dfdbf43, 0xcdfad17, 0x71d2077f, 0x10f6a366, 0xc926698, - 0x1634abad, 0x000095, 00000000 + 0x1634abad, 0x000095 } }, { @@ -52002,19 +52001,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3146c37c, 0xbe80ba20, 0x8d621718, 0xde591f13, 0x2335754d, 0x3d92e3f7, 0x8dcb5339, 0x95a108b8, 0x3ebefe95, 0x7f010d65, 0x80e8ae08, 0x82cd15ba, 0xe4f6e3dd, 0xdeddde9d, 0x22b8d72b, - 0x9eae6e00, 0x0001c4, 00000000 + 0x9eae6e00, 0x0001c4 }, { 0xeea0bcf1, 0xa2e7012b, 0x98d93129, 0x5607ee27, 0x9ef2e409, 0xd15930a9, 0x5873901f, 0x5eab01a6, 0xcca23fef, 0x88b8da6f, 0x8936ca98, 0x1a59e2bd, 0x8594a729, 0xb62ae52, 0xecbbad65, - 0xfb6ebb97, 0x00010a, 00000000 + 0xfb6ebb97, 0x00010a }, { 0xbc5007f0, 0xb12b1c5d, 0xe79e5974, 0x592310a0, 0x52f0e16d, 0x36b22aa7, 0xefe57245, 0x2688e73c, 0x3ca6dab0, 0x37140353, 0x4476c73, 0x1c05bdcc, 0x57f04016, 0x82c380df, 0x2101f15d, - 0x161c1bc6, 0x000197, 00000000 + 0x161c1bc6, 0x000197 } }, { @@ -52022,19 +52021,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa2e0f719, 0xfec880e7, 0x42a921a3, 0x6f93a8c5, 0x8af789ae, 0xe9ce82f7, 0xfb1055d7, 0x1d12493d, 0x89dff046, 0x24982bf0, 0x6eeaf29f, 0x7018b180, 0x6e9b3f9e, 0xef351dcb, 0x44685df2, - 0xfd88b303, 0x00015b, 00000000 + 0xfd88b303, 0x00015b }, { 0x9413e5c4, 0x26889cbb, 0x66268747, 0xfaa56dc2, 0xc08a9637, 0xd61ca41, 0xa01fd639, 0xad239cf9, 0xc2ee0c4a, 0x2625030f, 0x1b1ece03, 0xfe542943, 0x79b5f5f8, 0xf869fa19, 0x9134af66, - 0x8d3d96c8, 0x00018f, 00000000 + 0x8d3d96c8, 0x00018f }, { 0x55c59bb3, 0xa11855f2, 0xa70d876b, 0xe6587e38, 0xa36adc3e, 0x9fa1602, 0x3143e54, 0x2b8a319e, 0x2af8af6, 0x26b9d791, 0xb4ec608d, 0xca994ccf, 0x3f59211c, 0xe9fb0d3e, 0xd9f24f63, - 0x639a5525, 0x00010e, 00000000 + 0x639a5525, 0x00010e } }, { @@ -52042,19 +52041,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd0b1cfae, 0xbdb8ed5b, 0xe7271ff0, 0xf6c19ddd, 0x25094bda, 0x21016db8, 0xace2029c, 0x60ca59f2, 0x68f37821, 0x44e7c0e6, 0xf4e0175f, 0x7f8f4056, 0x656dd705, 0x142abdca, 0xd83e2cb2, - 0x8a63acd7, 0x0000cf, 00000000 + 0x8a63acd7, 0x0000cf }, { 0x2be4e7e5, 0xd64f75f, 0x266bbc9b, 0xf3f6d476, 0xdf17502a, 0x52b6f8c5, 0x4b9ea7ec, 0x8f9f4b00, 0x98ceccbc, 0x3e42e31b, 0xdf33821d, 0xa4a3252b, 0x14ad205f, 0x10d15f5e, 0x6ae552ec, - 0x726cff9c, 0x00003b, 00000000 + 0x726cff9c, 0x00003b }, { 0xff29152b, 0x53943e62, 0x5b354974, 0x63288eb7, 0x90bc4841, 0x822aa7df, 0xb7f1df19, 0xbd92a68b, 0x5ebcaf3f, 0x78b53fd4, 0xb9017660, 0x4f54247d, 0xdb05ce54, 0x6bc86caa, 0x73aa8282, - 0x3a27560c, 0x0001c0, 00000000 + 0x3a27560c, 0x0001c0 } }, { @@ -52062,19 +52061,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xedc98761, 0x6223e970, 0xea7376ba, 0xdd438a98, 0x223ba456, 0x9654ff49, 0xb908289c, 0x1fb22af1, 0x8ad6da57, 0x3a5cb295, 0xf27a063c, 0xc215eff9, 0x70c74aa5, 0x11c3aac9, 0x4fdc9dac, - 0x26a0a593, 0x000172, 00000000 + 0x26a0a593, 0x000172 }, { 0x8450e7b9, 0x97c309f, 0xfad0759b, 0xafa228e8, 0xcd54d5c6, 0x477ba6fb, 0xd0022e69, 0x64a426ce, 0x414fb80e, 0x6257026, 0x7d23dae4, 0x1fb08732, 0x51016233, 0xb77cb8bb, 0x2f01c589, - 0x2e9dbc6d, 0x0001a8, 00000000 + 0x2e9dbc6d, 0x0001a8 }, { 0xa588baea, 0x21142fbc, 0xda81475, 0xd921a498, 0xdc8a5563, 0xb382227d, 0xc8bc14da, 0xb80db2ee, 0x4446f2b0, 0xd39bb68e, 0xeb4e7ffc, 0x4785e007, 0x55b930ce, 0xd9b19201, 0x28f88039, - 0x5dc7d87e, 0x00012a, 00000000 + 0x5dc7d87e, 0x00012a } }, { @@ -52082,19 +52081,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe30c1944, 0x82bae949, 0xf71145d4, 0xac38d408, 0x632d5b0e, 0x8cb8fd8c, 0xba6b3c99, 0x9f4c0870, 0xee2aadae, 0x5517f535, 0x4eff5cac, 0x122af885, 0xaa1b9066, 0xf365ee22, 0xb0914241, - 0xcaed79cf, 0x0001f0, 00000000 + 0xcaed79cf, 0x0001f0 }, { 0x1a256169, 0x92818c9e, 0xd7bee5, 0x8d947b4a, 0x76c8264, 0xff089038, 0xf84f23a5, 0x4ce21f6c, 0xecc41a0a, 0xe9f9d8d5, 0x29794523, 0x5bbaa2d8, 0x4ce23680, 0x935a9c65, 0xd1e60cb8, - 0x28726fea, 0x00008e, 00000000 + 0x28726fea, 0x00008e }, { 0x41734473, 0x737cf13, 0x26478f55, 0xb109a090, 0x61456c02, 0xd8766783, 0x57c041d0, 0x46058e50, 0x79fb14cb, 0x118db501, 0xadc1c10, 0xa250959e, 0x936ee7, 0x525e4a8, 0x6d368985, 0x64e97469, - 0x000118, 00000000 + 0x000118 } }, { @@ -52102,19 +52101,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6539144a, 0x5bd19b64, 0xc40c087a, 0x6c32eb06, 0x87261ffa, 0x4a95a977, 0x6ea4e3c9, 0x3c6a2620, 0x84ac77, 0x1bd78a4, 0xc1ef9705, 0x20f8e4c4, 0xd5f1d71, 0xd5bffbcd, 0x5dc118c2, - 0x33919264, 0x0000de, 00000000 + 0x33919264, 0x0000de }, { 0x4f519b71, 0x8b7d6949, 0xafd2012, 0xf0d41529, 0x2df0e610, 0xd24614b1, 0x53cc07, 0xad81f0a6, 0x98bf2bb1, 0x7a793cb8, 0xa1da3107, 0xdbe7e771, 0xc7ef678f, 0xe9a6ccea, 0x7a9d7573, - 0x54d8cd8, 0x00010f, 00000000 + 0x54d8cd8, 0x00010f }, { 0x977f5557, 0xd74aaf2e, 0x847baefb, 0xa7de3b38, 0x3e45ebc9, 0x84a4ee95, 0x8bacb279, 0xd8a13b11, 0x7986a361, 0x72a42674, 0x8f18f444, 0x9d7da966, 0xe12e947, 0xd3c37c9f, 0xd2349504, - 0x6db6dfd1, 0x000169, 00000000 + 0x6db6dfd1, 0x000169 } } }, @@ -52124,19 +52123,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x79c71129, 0xc8fe1eba, 0xf2e597ca, 0x80f1e191, 0x34e06424, 0xa9c698b4, 0xc5a71590, 0x57a8a955, 0x39072712, 0x7548cfb8, 0x262b7e90, 0xe795591d, 0x264c11bf, 0xb49f7529, 0xbe980f39, - 0x2fd45bd, 0x000065, 00000000 + 0x2fd45bd, 0x000065 }, { 0x809359dc, 0x354e5f7a, 0xa4920ec1, 0x9c0dae47, 0xe5229bf4, 0xc8b4ac08, 0x9fe810b4, 0xb882d0da, 0xd3b853b8, 0xe8f420a4, 0xf3cc632e, 0xe607e097, 0x562a3b49, 0x7db9587f, 0x217524ed, - 0x81cef18a, 0x000006, 00000000 + 0x81cef18a, 0x000006 }, { 0x3b4d7d46, 0x4d362942, 0x397aec14, 0xf3db6920, 0xa90b6560, 0x34eef48b, 0xbb0b963e, 0x14f304f9, 0x737f9b63, 0x96f9ca, 0x271b6b62, 0xde671d9d, 0x82347228, 0xb116c8f1, 0x25fc1bf6, - 0xd4a6fc7a, 0x000087, 00000000 + 0xd4a6fc7a, 0x000087 } }, { @@ -52144,19 +52143,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x54f436c8, 0x4b0d8f38, 0x5d86c835, 0x487e6b34, 0xf41716b5, 0xc2ee6fbd, 0xe486cd23, 0x1a99ce49, 0x4b39e7fd, 0x84e4826f, 0x97a21084, 0x17d1f7b5, 0x7581f8e7, 0x7ba52e8d, 0x7b5b4419, - 0xbc583dc, 0x00017c, 00000000 + 0xbc583dc, 0x00017c }, { 0x2ece3a71, 0xb058f047, 0xa5039545, 0x73400a7c, 0x6dc9ba60, 0x9fa54754, 0x34848a87, 0xd08cddfc, 0xa5290447, 0xd14b8ed5, 0x99fbaa80, 0x48f0b7ac, 0xc3614dd2, 0x8b6beab0, 0xd86acae6, - 0x6e2ddcb3, 0x00002e, 00000000 + 0x6e2ddcb3, 0x00002e }, { 0x4b2ff761, 0x102491e1, 0xfc540b64, 0xa95081cb, 0xb2b4285a, 0xacbc9fb8, 0x392fe0ad, 0x202a6fa5, 0x386ec860, 0x19ec9dde, 0x8fa097e3, 0x4312a558, 0x2f01ea9, 0x4b8ca443, 0x5560d064, - 0x6b97d329, 0x00014a, 00000000 + 0x6b97d329, 0x00014a } }, { @@ -52164,19 +52163,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1e5c71ee, 0xd50cceee, 0xa7498de5, 0x6a1e11b7, 0xfcbce20e, 0xa1aca70e, 0xe58b04a3, 0xae7d2f49, 0xefde730f, 0x6a26e4ef, 0x28142d97, 0x9e9f861d, 0x19559503, 0xd33b8212, 0x26973ed0, - 0x34da9814, 0x0001bc, 00000000 + 0x34da9814, 0x0001bc }, { 0x9a5c1962, 0xd59f408c, 0x538db432, 0xad9755f5, 0x2b2ff7b1, 0xde97cdb5, 0x7cd94928, 0xd3436eb5, 0x7339e9e1, 0x444ccdb9, 0x684a1f7, 0x49c6852f, 0x7754d20e, 0x40dfe79f, 0x2e79baf9, - 0x9ec19985, 0x0000d8, 00000000 + 0x9ec19985, 0x0000d8 }, { 0xdda1f637, 0x8da56a41, 0xedcabffe, 0x29f0d8ef, 0xd5c47b7d, 0x74f0e73b, 0xc81fa7a, 0xd6a1001f, 0xa9b4fbca, 0x8eb34331, 0x8642f10a, 0x4dd27c93, 0xc57fcb70, 0x9fc71d57, 0x6b4dedfc, - 0x2647f8b9, 0x0001d1, 00000000 + 0x2647f8b9, 0x0001d1 } }, { @@ -52184,19 +52183,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa680e15e, 0x93d184e6, 0x2db81d8f, 0xfca3b577, 0xfbb7f821, 0x6cdda225, 0x494cc38d, 0xaf567565, 0x3056b2c6, 0x8fd99301, 0xa1ebcf9d, 0xaf743826, 0xccadf81e, 0x7d8d5e4e, 0xc82f80e, - 0x1cba1d3f, 0x0000bf, 00000000 + 0x1cba1d3f, 0x0000bf }, { 0xdfbcd7d4, 0x36de2c4a, 0xe24c3ee6, 0x5136d7fb, 0xad5e6a5, 0x4128838a, 0xb4f25680, 0x642df0e0, 0x1ad276cb, 0xf26e5e11, 0x6e2f401d, 0x53e533fa, 0x515a7c08, 0xb38d36ef, 0x8fc2ed9e, - 0xb17e6f24, 0x00016d, 00000000 + 0xb17e6f24, 0x00016d }, { 0x3a55962a, 0xa00d808a, 0x6e868057, 0x6d9ef6d6, 0x76b9f57f, 0x2eef8c0, 0x50d7f13a, 0xbec6c52e, 0xa30a7f8e, 0xfe3100ab, 0xb5a03e1a, 0x3eb66d6d, 0xd4b57fb1, 0x70a05793, 0xbcfabc0e, - 0x1a5f0eb6, 0x00010f, 00000000 + 0x1a5f0eb6, 0x00010f } }, { @@ -52204,19 +52203,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdce8b129, 0xdbcbf306, 0x4a6e6645, 0x63531aa2, 0xb9d6c04d, 0x18001aa7, 0x6c23d690, 0xa3e930b6, 0x9bd56876, 0xf34610a0, 0x64e62201, 0x7d5cb86f, 0x6db03da, 0x6319342b, 0xc16f209, - 0x10fe5b69, 0x0001f1, 00000000 + 0x10fe5b69, 0x0001f1 }, { 0x96171934, 0x900abab1, 0x9cc1899d, 0xf600fed3, 0x6a559cf2, 0x168cdeae, 0x7cff4b2b, 0xb061e8e4, 0x71f66b2, 0xecd1bb5d, 0x74a36d68, 0xd2304df4, 0x639b97f9, 0x1afad346, 0xb316f19f, - 0xc994e43f, 0x000127, 00000000 + 0xc994e43f, 0x000127 }, { 0x37cce982, 0xa046c4bf, 0xf0266fd0, 0x6a148bf4, 0xacc0aaf3, 0x8fc9fb55, 0x1aeac254, 0xce44b41f, 0xa6909060, 0xdd5ec97b, 0x7467cd44, 0x655f5db5, 0x8884323b, 0x52d557ae, 0x100a4d85, - 0xde91c7d6, 0x00014a, 00000000 + 0xde91c7d6, 0x00014a } }, { @@ -52224,19 +52223,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1eb053fe, 0xa1ddf743, 0xc20aef8, 0x974a1f1e, 0xfc65bd21, 0x643d1de3, 0xd1d01481, 0x217d0a21, 0xf9f2974d, 0xc8a043c3, 0xabee2952, 0xaa031758, 0x8bc7e9cc, 0xb12e787, 0x405353c5, - 0xc5bb0fc9, 0x000055, 00000000 + 0xc5bb0fc9, 0x000055 }, { 0xa9f1a923, 0xa48ade98, 0x2eacd1a9, 0x22c98789, 0xd2f31d2e, 0x78ecb6b0, 0x5fe3a963, 0xb2f6263e, 0x75cc8c29, 0xbd2644b1, 0xd1645ba2, 0xf1cb6b80, 0xf0a956ff, 0xc3e00de4, 0x91f6be78, - 0x2712c192, 0x000056, 00000000 + 0x2712c192, 0x000056 }, { 0x1c2b4cb, 0x379ea170, 0x7df64e89, 0x46ed4235, 0x478f74e3, 0x6abc8b44, 0xae9bcd17, 0x72b3ed21, 0xa7abaf00, 0x51ab4ad9, 0xff23c647, 0x4eedb9db, 0x88c8924d, 0x5bb272a2, 0x8e8eef38, - 0x32af9cdf, 0x0001e2, 00000000 + 0x32af9cdf, 0x0001e2 } }, { @@ -52244,19 +52243,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc68a9893, 0xeb54b374, 0x55caa977, 0xa9fc713f, 0xecc649b3, 0xb97b61e2, 0x52885b51, 0x998c03e3, 0xae491b1a, 0xa3e1c308, 0xd12e107d, 0xbe59ba, 0xa43370e5, 0xab68183f, 0x9b7ede0e, - 0x19179a06, 0x00019d, 00000000 + 0x19179a06, 0x00019d }, { 0xde99f6db, 0x1a6e8f33, 0x6007c764, 0xaf225442, 0xeb7064b4, 0xc96837f1, 0x339725ec, 0x928ecf7, 0x186fde6f, 0x5889da5a, 0x98aea0ed, 0x7d6416fa, 0xe4aa8816, 0x6c27854e, 0x14bd572d, - 0x929cc5a5, 0x0000b2, 00000000 + 0x929cc5a5, 0x0000b2 }, { 0xeea5a382, 0xbc07a7a8, 0x95c07d3a, 0xc4ca159f, 0x3c0b488d, 0xaa25c79b, 0x90488ed3, 0xe00f3eaf, 0x6b584606, 0xe79de786, 0x57521e21, 0x5a3417e9, 0x755cbf5c, 0x63b9d645, 0xc13ce139, - 0x39f1ef1d, 0x000198, 00000000 + 0x39f1ef1d, 0x000198 } }, { @@ -52264,19 +52263,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6f19340d, 0x6ae95bc2, 0x6efa090c, 0x870cb6, 0xde7a706c, 0x4348a990, 0xf84f2c24, 0xb627932, 0x5c575e66, 0x3203891e, 0xd8bfacb7, 0x80408bf6, 0xb925225a, 0xf27a69fc, 0xbaf8ce9a, - 0x810fb098, 0x0001d5, 00000000 + 0x810fb098, 0x0001d5 }, { 0x775831ba, 0x649895b0, 0x8bc71b61, 0xe2304a47, 0x485260e9, 0x147ec049, 0xa6225b07, 0x66517d6, 0x8a9fb3c5, 0xff04abfc, 0x70a5c029, 0x5bdaadbc, 0x4039c218, 0x3216464d, 0xb32b5b11, - 0x9a039c98, 0x000081, 00000000 + 0x9a039c98, 0x000081 }, { 0x94a380b3, 0x6fd1f284, 0x763c04d2, 0xd6b4f00e, 0xea3fab98, 0x3af7b657, 0x3622b993, 0x28aabb98, 0xbe958e26, 0x28c8f0b2, 0x8aab9676, 0x70ff3fe2, 0x673d2a84, 0x86cac198, 0xa8709393, - 0x4745a6f9, 0x0001b0, 00000000 + 0x4745a6f9, 0x0001b0 } }, { @@ -52284,19 +52283,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x955bd312, 0xa67468a4, 0x284fa4d8, 0xc1a56185, 0xe6cb1941, 0x78b98da6, 0x8040a657, 0xc61fa12b, 0x21148c22, 0x42b5e294, 0xcf6a4b26, 0xc38ee974, 0x7f0f1b7f, 0x3386374a, 0xe11b252c, - 0x2e98e6e2, 0x000181, 00000000 + 0x2e98e6e2, 0x000181 }, { 0x58421e10, 0xfc98f575, 0xe8770442, 0x9961bb31, 0x74b45c09, 0x130ac2ab, 0x67f5bb12, 0x31ea3733, 0x49d98a99, 0x251056aa, 0xfdb72afb, 0xfa6347b0, 0x2f5b9646, 0xa6a2e0de, 0xfa19a7cc, - 0xbd2912e4, 0x0001d9, 00000000 + 0xbd2912e4, 0x0001d9 }, { 0x229d3a0, 0xe3677eeb, 0xbb93441a, 0x803a0353, 0x6e9226eb, 0x3033c24a, 0xe033b983, 0xaeb245e4, 0x54a745e6, 0x56d5a257, 0x44d672d5, 0x8863b256, 0xc298a81f, 0x9f85c9da, 0x8636c48e, - 0x191be20e, 0x0001cb, 00000000 + 0x191be20e, 0x0001cb } }, { @@ -52304,19 +52303,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b141ae2, 0xc425100a, 0xc28f1fb1, 0xb672c3f2, 0x85200742, 0x1be24538, 0x48b3749a, 0x543fbdb4, 0x3cb07dd4, 0xed1648df, 0xc0f0621c, 0x2bfaa609, 0xa4ae375f, 0xb0078edc, 0x2a27a56f, - 0x70d05bd4, 0x0001ba, 00000000 + 0x70d05bd4, 0x0001ba }, { 0x973a9cf5, 0xc7928c22, 0xc0a0fa58, 0x39a4ace, 0x982c20ac, 0x4ca4ca6d, 0x954e5653, 0xa6610b6, 0x87a24fb3, 0xdda7db60, 0x6672db2e, 0x80c1d4d1, 0xd883e665, 0x44f473d9, 0x1abf89a, - 0x88372e51, 0x000180, 00000000 + 0x88372e51, 0x000180 }, { 0xa2e77de6, 0xea60ad5a, 0xb4a6d125, 0x367b8374, 0x42d3013, 0xc58458a, 0x7f26bc34, 0xd30bb34f, 0xb819eb11, 0x47478abe, 0x93989327, 0xa6a7bfa, 0xb0bcdfa, 0xb8d6577a, 0xc2f7d89d, - 0x447c5884, 0x0000dc, 00000000 + 0x447c5884, 0x0000dc } }, { @@ -52324,19 +52323,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa72278b1, 0x22352d0a, 0x295c7ed1, 0xbb72f971, 0x756de885, 0xe6679df9, 0xf9aa7601, 0x7fea60fe, 0x20a39087, 0x359750d6, 0x4524d295, 0xebb3d86d, 0x5230666e, 0x22fb4414, 0xe4aa9706, - 0x58752273, 0x00017f, 00000000 + 0x58752273, 0x00017f }, { 0x49525d65, 0x234b141f, 0xe0e78795, 0x5330d796, 0xcec1169f, 0xa7aa6c69, 0x6ba7652c, 0x34a8d16c, 0x267dbb26, 0xcc9c13e0, 0x4cc0605e, 0x14675104, 0x293229e3, 0x298721d8, 0xd7b49e90, - 0x9278e539, 0x000087, 00000000 + 0x9278e539, 0x000087 }, { 0x815d7792, 0xa024b8f5, 0xfbd3ffee, 0xc0b8437b, 0xabd07c10, 0xdf07a760, 0x661a80cf, 0x80b792a6, 0xce577c6, 0x69e8b504, 0x3e2f383d, 0xbea44fa5, 0x54fbd3ea, 0x3141e63, 0xe29fbbd8, - 0x3b1fedf4, 0x00008d, 00000000 + 0x3b1fedf4, 0x00008d } }, { @@ -52344,19 +52343,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a15972f, 0x58e4f97f, 0x8474a2ea, 0x8a16026c, 0xc8393c11, 0xd85e4ea8, 0x46ee8f36, 0x390eabbd, 0x1a309878, 0x55522da0, 0xf75bfc16, 0xb4f3df8b, 0xff1f1b49, 0x5915a86c, 0x8ab941db, - 0xeeef274f, 0x000048, 00000000 + 0xeeef274f, 0x000048 }, { 0x9192e67b, 0x81c1e2ed, 0x4d4b31fa, 0x22ef9796, 0x731d9e1e, 0x5b4aaf59, 0x5cc874c8, 0x3c30172f, 0x36726ac2, 0xdfd902ae, 0x90c79acc, 0x5b5b1f5c, 0x3a789fc3, 0x960fceb5, 0xc87bcf39, - 0xfe81f032, 0x000158, 00000000 + 0xfe81f032, 0x000158 }, { 0x9e14367, 0xc0f55d45, 0xcfaefe9b, 0xc150b010, 0x62911c24, 0x2f09546, 0xaefa21fa, 0xdad11ecc, 0x6076848e, 0x151cd92f, 0xbd631f8e, 0x7a0c9a9f, 0xab047842, 0x55d6a23d, 0x56e4d309, - 0x7a698922, 0x0000f5, 00000000 + 0x7a698922, 0x0000f5 } }, { @@ -52364,19 +52363,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5530f25b, 0xd46f0b40, 0x13adeef6, 0x7e36fb77, 0x61177a69, 0x19d452d7, 0x8b91518c, 0xbd72f811, 0x7fd760da, 0xd743c2d7, 0xb97dae4a, 0xfcd809f7, 0xacabd881, 0xa27db596, 0x6bbd3bd3, - 0x40b5b308, 0x000112, 00000000 + 0x40b5b308, 0x000112 }, { 0x22acc3f1, 0x24dc1091, 0xaf94cc33, 0xb4f29d46, 0x1a28fac5, 0x6dc4d306, 0x34b73498, 0x252ff00f, 0xaa25b780, 0x64fa1975, 0xf2eaa205, 0xc50d32ba, 0x5fa00f9d, 0x1946f09b, 0xac395b2d, - 0x1d42f67e, 0x0001ec, 00000000 + 0x1d42f67e, 0x0001ec }, { 0x5ec9d63f, 0x14bf618, 0xf862b954, 0xf58e3716, 0x94fb698d, 0xd803ed83, 0x566570b4, 0xcdfe2a0e, 0xdde655ca, 0x82d64e0b, 0xb0f290b9, 0x42d789a1, 0x178aa984, 0xcec03eca, 0x8261a08a, - 0x5b8b7fc1, 0x000124, 00000000 + 0x5b8b7fc1, 0x000124 } }, { @@ -52384,19 +52383,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0b0cf21, 0x5392a95f, 0xbf51ff1e, 0x71af27d2, 0x6c7e3316, 0xcdd77bcd, 0xe7dfd24f, 0x99a2f121, 0x24935e48, 0x2acaa78f, 0xd854ce9e, 0xf46621e5, 0x58e3ddf0, 0x94379202, 0x7687f75a, - 0x5d135e1c, 0x000023, 00000000 + 0x5d135e1c, 0x000023 }, { 0x4e94a4f8, 0xd6966afc, 0xe175e2b3, 0xdaacf065, 0x1e4fae1e, 0x77f3fd90, 0x9aa75463, 0xbf7fdf3c, 0x75d523e6, 0x85fabcb4, 0x5ff3d038, 0xbc677519, 0xcf4eb8b2, 0x65f1b059, 0x4ba2d263, - 0x42979c6b, 0x00011f, 00000000 + 0x42979c6b, 0x00011f }, { 0xb25b7dfe, 0x25e36bf8, 0x6c96c60d, 0xfe20aef9, 0xbae498ca, 0x920fa616, 0xd60d7828, 0x602cd363, 0x240ac70b, 0x9e4d05b8, 0xe7e23fb1, 0xaf693153, 0xdfb14bc, 0x3fe65714, 0xedc6df88, - 0xab03c76b, 0x0000bb, 00000000 + 0xab03c76b, 0x0000bb } }, { @@ -52404,19 +52403,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6ab9d946, 0xf372ca3b, 0xc35def9a, 0xa3a91af9, 0x99996f4b, 0x735f8220, 0xbcb552ea, 0xd38abcf0, 0x1ca7334a, 0x1bc72391, 0x88254a88, 0x7cdf120f, 0x7d4715de, 0xf692a67a, 0xf5940f3f, - 0x6955e977, 0x0001b1, 00000000 + 0x6955e977, 0x0001b1 }, { 0xebf47a57, 0x1013ef04, 0xa26edfe3, 0x207204b, 0xc13b6419, 0xdfefa613, 0xf367d879, 0x1f08b65f, 0xf5db9df4, 0xf069ae72, 0x67a62755, 0xb6b5f020, 0x3715bed2, 0x8bb2b1f3, 0x352e9650, - 0xd6faabda, 0x000133, 00000000 + 0xd6faabda, 0x000133 }, { 0x16f5d7e5, 0x7923b0f7, 0xea467905, 0x67845695, 0x33a4f9dc, 0xde4254ea, 0xa3a5c114, 0xea703202, 0x5bc4e372, 0xaf192cb6, 0x3769a1a4, 0xb7901ce7, 0x8ace13d4, 0xef9b44d7, 0xb3eeb9fa, - 0x14fb247a, 0x000067, 00000000 + 0x14fb247a, 0x000067 } } }, @@ -52426,19 +52425,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x17e94844, 0xdaded329, 0x4bc32ba, 0x4ffabc6d, 0x9eed4bbe, 0xd8ad69e3, 0x68943c28, 0x5b8122a, 0x15a85cde, 0xcfb2b458, 0x84b3bea0, 0x1e4c00e9, 0x1b9500d5, 0x531387d1, 0x174e31ca, - 0x20d60f44, 0x000161, 00000000 + 0x20d60f44, 0x000161 }, { 0xc244d2c2, 0x27488ae7, 0x1779e39e, 0x76ecb419, 0x17dd2dd6, 0x61a3c021, 0xc0c72f81, 0x48ce8467, 0xa9de82b2, 0xd34cdfc2, 0x6400c194, 0xb3eff416, 0xc9de1012, 0xdb9c7f62, 0x10c8edf1, - 0x835f2e87, 0x000112, 00000000 + 0x835f2e87, 0x000112 }, { 0xcacf2b7, 0xc7fd983b, 0x314cb4c7, 0x8661dfc2, 0x6d7041c, 0xc8ff6656, 0x8e877830, 0x83714b40, 0xec05464a, 0x7f1bfaa, 0xc362ea72, 0xc71f6523, 0xaff45d7f, 0xc7f0cef5, 0xb42d1138, - 0xda90b0dd, 0x00003f, 00000000 + 0xda90b0dd, 0x00003f } }, { @@ -52446,19 +52445,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa697a65c, 0xa1473b2f, 0x6889efdc, 0x8bed5abd, 0x5174d34d, 0xf1dcab6f, 0xda606101, 0x40079cd, 0xdfe5c227, 0x9e3698d6, 0x8a68632, 0xc4e1394f, 0x42e1efb6, 0x3e49d620, 0x4640ba2a, - 0xf5d9d1c9, 0x00014a, 00000000 + 0xf5d9d1c9, 0x00014a }, { 0xc34db270, 0x16c63bdf, 0x999b9348, 0x1e24719, 0xa449cc1d, 0x2e753827, 0x56dd8050, 0xedfc3561, 0x2d4213a5, 0x785fc10d, 0x5c97013b, 0xe60dd50a, 0x92350f1a, 0x9b6c36ca, 0x363b2283, - 0x79ae1b28, 0x0000d2, 00000000 + 0x79ae1b28, 0x0000d2 }, { 0x2ef30062, 0xe5418537, 0x96264ee9, 0x887a8e83, 0x71a70c0, 0x948e4caa, 0xb3cc8e6, 0xdeccf9f9, 0x603cfe16, 0xa026a9df, 0x3338710c, 0x9f857bbe, 0x4bd91986, 0xc349cc64, 0xabf59230, - 0xfa405a25, 0x0001bf, 00000000 + 0xfa405a25, 0x0001bf } }, { @@ -52466,19 +52465,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9b7a21f6, 0xcd9dcdec, 0xea400868, 0x34b5c05b, 0x38ebea41, 0xb1fe945, 0x27f77f29, 0x4f174214, 0xaf7510ca, 0xa93c988, 0x83cd0e58, 0x822d8fd6, 0x31988d0e, 0x10fb358e, 0xb4621497, - 0x6a2d6c8e, 0x000185, 00000000 + 0x6a2d6c8e, 0x000185 }, { 0xda70e899, 0x351f9fb8, 0xc5004b33, 0x65af26e7, 0x4180735a, 0x2b83fe89, 0x7d6ead0, 0x53ea33c7, 0x660d24cb, 0xcc4890b2, 0x120a40c3, 0xd42f5aaf, 0x1b1ee5c8, 0x65c24e12, 0x6f940bf3, - 0xd2b561dd, 0x00012c, 00000000 + 0xd2b561dd, 0x00012c }, { 0x3d890654, 0x638f3555, 0x45f261bd, 0x2279a474, 0xbb1deee, 0x5cf898b1, 0x8b024e9d, 0xed138828, 0x434d4b6e, 0xcee66434, 0x955c2c73, 0xd78d5725, 0x23e56e79, 0xd083414, 0xe9335a32, - 0xfd830fd8, 0x0000dc, 00000000 + 0xfd830fd8, 0x0000dc } }, { @@ -52486,19 +52485,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2fec1451, 0x3e8208aa, 0x50c649e, 0x7ec0b716, 0x5449b1f7, 0x56bfef29, 0xcb62bf58, 0x7a432f6e, 0x86a2d37a, 0x9797053a, 0xcfa3721a, 0x5a544189, 0x66d78724, 0xbef0e626, 0x438af838, - 0x9e230662, 0x0001f9, 00000000 + 0x9e230662, 0x0001f9 }, { 0x8fe792e1, 0xfa919fad, 0x41402cb, 0xe9be6198, 0xd28e73ae, 0xeedefa1e, 0x6132dd88, 0xe7e510a6, 0x6e48b4fe, 0xde521772, 0x67bffa16, 0x8c8ac5fd, 0x96e88a7d, 0x81a170df, 0xb3c9af90, - 0xff6920ef, 0x00011c, 00000000 + 0xff6920ef, 0x00011c }, { 0x50e10e96, 0x9c76b819, 0x2b644312, 0x759d60bf, 0xd8d0f102, 0xacd5fecd, 0xb25d5e72, 0x98a109d, 0x1e0c44cb, 0xd6183ee4, 0xc5173390, 0xd947a24d, 0x6eaeb2d9, 0x3ae06260, 0xbac7756, - 0x9e07fc39, 0x0001d3, 00000000 + 0x9e07fc39, 0x0001d3 } }, { @@ -52506,19 +52505,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe39d79a3, 0xcc4347f9, 0xc880a976, 0x6274c46, 0xc9d976b3, 0xba77c4b5, 0xbe78949, 0xd343ca83, 0x81acffa3, 0x134bc709, 0x9233fe5a, 0xa92c9161, 0x7150d15a, 0x96a13726, 0x3912b08f, - 0x7a4dd2d4, 0x00006d, 00000000 + 0x7a4dd2d4, 0x00006d }, { 0x13cae34e, 0x82ee690e, 0x47dcbf96, 0xf0992047, 0xfc39416f, 0xa3371649, 0x8b558039, 0x5980ec41, 0x9b0e1ae2, 0xc757a62a, 0x4c5e5328, 0x522d0955, 0x8f97c6a5, 0x7d0fab4c, 0x8a3bdcb4, - 0x82a7a58c, 0x00005e, 00000000 + 0x82a7a58c, 0x00005e }, { 0x6081dadc, 0xd653d6a7, 0x60acee41, 0xca9dc996, 0xc5367e1d, 0x6707a624, 0xcd66e2c1, 0x2bba3cf7, 0x89203fe4, 0x24bbfc82, 0x7810ae67, 0x1d0da994, 0x967865b0, 0x4ad91a05, 0x648ac8ba, - 0xb3d7b2bc, 0x000103, 00000000 + 0xb3d7b2bc, 0x000103 } }, { @@ -52526,19 +52525,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x42cadc80, 0x85a1973f, 0x34db6da8, 0x856cd824, 0xafbc8536, 0x134dae97, 0xca412729, 0xf04c2ca1, 0x5578e497, 0x71e782ba, 0xa8cfb502, 0x4f87f36c, 0x9f84a44, 0xa197f014, 0x19fa27f6, - 0x62c8e15f, 0x000199, 00000000 + 0x62c8e15f, 0x000199 }, { 0x70fe926, 0x30215271, 0x78a0a2a2, 0xc37590ec, 0x82d371c2, 0x3b66ee3f, 0x524371d6, 0x9c9a8baf, 0xe4424c89, 0x43564352, 0x3fea2fcc, 0x91a053dc, 0x38bd6b46, 0x9b42134b, 0x9bafba2d, - 0x773e18dc, 0x0001ca, 00000000 + 0x773e18dc, 0x0001ca }, { 0x9d007def, 0xa3a3c04e, 0x8187d9df, 0x65f6ce63, 0xcf7075b9, 0xcf62d3c3, 0x424c7e90, 0x1a575ae8, 0x14ff936f, 0x5430ac41, 0x30ed00bf, 0x299571bd, 0xd7465643, 0x6314e2ef, 0xcf9b82b8, - 0x96021037, 0x000196, 00000000 + 0x96021037, 0x000196 } }, { @@ -52546,19 +52545,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7cad34ca, 0x294829b5, 0xbbbb0ed1, 0x1128d836, 0xd6dd43d1, 0x503448bb, 0x8c45b32c, 0xbecb0169, 0x6b10ffa7, 0xca85c588, 0xc0b696e, 0x81d0461c, 0x1a886f7d, 0x2cef0aaf, 0x5604c2ec, - 0xa5f51fb, 0x0001de, 00000000 + 0xa5f51fb, 0x0001de }, { 0x62f221f0, 0xb72908fd, 0x68c54834, 0x8ff8da4d, 0x80323a6f, 0xd68d4ff, 0xb778b36b, 0xe54d1ade, 0x637f31ce, 0xd41c07e9, 0x8f804b18, 0x26c53d10, 0x8ef95925, 0xf8e66f8b, 0x499ac485, - 0xdf06e280, 0x0000b6, 00000000 + 0xdf06e280, 0x0000b6 }, { 0x8b801bd9, 0x629ee6e6, 0xb9637906, 0xd0840eda, 0x355bd7bb, 0xfd168e96, 0x3f5f31ae, 0x8de078cb, 0x80ab3304, 0xa762e9bd, 0x9d449b2e, 0xd7d4f24, 0xabe19f4b, 0xbf204f48, 0x1e199056, - 0xd5474924, 0x00010d, 00000000 + 0xd5474924, 0x00010d } }, { @@ -52566,19 +52565,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x12dcc0dd, 0x46e07d0c, 0x4766a296, 0xd4ab60d3, 0xd528bc01, 0xef046331, 0xdd18cff8, 0xab121441, 0x2a5a0f, 0x2212aba5, 0xb8cfd0b6, 0x73aed15, 0x9fd5370c, 0x85a08541, 0x889974c2, - 0x7b894d84, 0x000170, 00000000 + 0x7b894d84, 0x000170 }, { 0x583f0c2b, 0xe5e8df7e, 0x11b04218, 0x5f6df6b9, 0x4b96512, 0xd9afc830, 0x8a59c6e5, 0x3332d07a, 0x33a0025d, 0x208e0d67, 0xd88564d, 0xab40bfe0, 0xe7d8ac8c, 0x2305c364, 0x9f2ad24f, - 0x90752523, 0x0001d1, 00000000 + 0x90752523, 0x0001d1 }, { 0xe90332f0, 0xc95cf704, 0x32ec854f, 0xe0fd1ff4, 0x227b5e3e, 0x25ded176, 0xb6be6790, 0x82af12d7, 0xf9008f6b, 0x28fa1993, 0xbfbe520c, 0x3b124664, 0xec487888, 0xe722eb88, 0x8e22f11f, - 0xc47f8741, 0x000002, 00000000 + 0xc47f8741, 0x000002 } }, { @@ -52586,19 +52585,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd1f4f800, 0x638c5a15, 0xcd53d126, 0x9f1e73bd, 0xdcb705ac, 0x4caf658, 0x2b3babf, 0x8e932423, 0x98254765, 0x2248bdc1, 0xd8a2664e, 0x7ff11377, 0xed2b1cf1, 0xb759420e, 0x68dc3f1f, - 0xfb3d5d8, 0x000188, 00000000 + 0xfb3d5d8, 0x000188 }, { 0xf6c7876b, 0x98e8592a, 0x794717b2, 0xa001aa79, 0x7e61662d, 0xbd1e0b9, 0xd3d230b5, 0xe7ce0aa1, 0x7e276109, 0xe702c56e, 0xff521238, 0x188d4380, 0xec023018, 0xcbeb6f48, 0xb8087069, - 0xd4420cd, 0x0000f3, 00000000 + 0xd4420cd, 0x0000f3 }, { 0x7def838b, 0xcf41c210, 0x57f0d34a, 0x379b83ab, 0xcde7ec3f, 0x4d761bbc, 0xfe7888e, 0x49e7c912, 0x4eb1d7f5, 0x1b832d48, 0x1ec2c04e, 0xb0284fbc, 0x79c5267f, 0xfa3b8aa2, 0xc56e8e0d, - 0x75ebab1, 0x000035, 00000000 + 0x75ebab1, 0x000035 } }, { @@ -52606,19 +52605,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b3ed69a, 0x9c7fe33e, 0x472a83d8, 0xed24ecd1, 0xad5c62d, 0xefc06df3, 0xb031a115, 0xa4142ec2, 0x8c7cf3a2, 0x262ff6d0, 0xeca3e2a6, 0x1cd76562, 0x912c719a, 0xfc8d9370, 0x4415016f, - 0xfaa515a, 0x000030, 00000000 + 0xfaa515a, 0x000030 }, { 0x804073ea, 0x5cc19ef3, 0x687d6547, 0x99b63ea, 0x9f887f4c, 0x2ca8bde9, 0x7fc4d169, 0x52f10ef, 0xd011d6a9, 0x28d8884d, 0x34e7adbd, 0x33cd4c78, 0x2714fde6, 0x21c41535, 0xe3680028, - 0xd6ecec67, 0x00007d, 00000000 + 0xd6ecec67, 0x00007d }, { 0x88523f9, 0x39fad8be, 0xb0fa3129, 0x32e34b9e, 0x11cf7ef9, 0xd2b8a54e, 0x27f45f23, 0x1db0fb42, 0x673256f1, 0xb7aab92a, 0xf21d9373, 0xd95c65c3, 0x34d75a63, 0x33307d61, 0x64ee9a05, - 0x4574966, 0x000136, 00000000 + 0x4574966, 0x000136 } }, { @@ -52626,19 +52625,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x716cbab7, 0xd657a8a, 0xa8b0e3f7, 0x43579707, 0xc24677bd, 0x2e5d4304, 0x4351a866, 0x4416e69d, 0x96cff670, 0x6ad0a3ff, 0x3044e32, 0x9b8b079a, 0x65ca37f, 0x6627822e, 0x50dd4d64, - 0x7c1f4dea, 0x0001a0, 00000000 + 0x7c1f4dea, 0x0001a0 }, { 0xc4c01aa0, 0x57b20fbb, 0x18808d60, 0x91a4529e, 0x35b5417a, 0x553b3ab5, 0x29afd2aa, 0xa1ea96ee, 0x67c84b17, 0x148ec765, 0x6934b28a, 0x4fdbf4e8, 0x1e1cfd01, 0x2d30269a, 0xaea9f730, - 0xae81ce08, 0x00014b, 00000000 + 0xae81ce08, 0x00014b }, { 0x9e527af, 0x6aca3ae4, 0x1fd79248, 0x190035d6, 0xbf2d33db, 0xd4dc8ffd, 0xb57761e2, 0x4baf8577, 0x79bf3031, 0x602a419b, 0xe194e15b, 0x316099f2, 0x26acdd3e, 0xd2038a7a, 0xef6f97dd, - 0x912c669c, 0x00005d, 00000000 + 0x912c669c, 0x00005d } }, { @@ -52646,19 +52645,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x82a6d584, 0x8389d947, 0xaa517d2, 0x57cd3025, 0xd8a3dcab, 0x379cf22, 0xb14e8d4e, 0x344210c4, 0x335bae95, 0x6d58b59c, 0xd39eab8d, 0x1df11f82, 0x54aee5f0, 0x3d382453, 0x284f6a5, - 0x8159952f, 0x0000e3, 00000000 + 0x8159952f, 0x0000e3 }, { 0x6626b41e, 0xf5ab71d3, 0x2e0ddfa, 0x54b6875d, 0xca6b4091, 0x83287502, 0x34898be, 0xf9985b6, 0x409fdd9e, 0x3110ed54, 0xce828539, 0xba06a5ef, 0xa35a2a37, 0xd16f69a8, 0x4ce6c0f1, - 0xda05f835, 0x0000f6, 00000000 + 0xda05f835, 0x0000f6 }, { 0xc143dcf9, 0x8b3ce285, 0xd122c341, 0x633d1237, 0x1dd64f91, 0xe7b8a5d1, 0x61583bd9, 0x632ddb4, 0xfad5160d, 0x27acc2f6, 0x238af17c, 0x6b4666e2, 0x88558c28, 0xa66cde9b, 0x78d4e7e1, - 0x39a764ee, 0x0000a5, 00000000 + 0x39a764ee, 0x0000a5 } }, { @@ -52666,19 +52665,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaf9850a3, 0xccbb3d44, 0x22780d0, 0x37218a31, 0x2bf28a7b, 0x9ea9674, 0x51102931, 0xca215e03, 0x8fbc0656, 0x4b7dd0e2, 0xd0d87f7, 0x16376571, 0x18a74c69, 0x2f882129, 0xe191c1ab, - 0xbd877ec1, 0x000159, 00000000 + 0xbd877ec1, 0x000159 }, { 0x11ae40d9, 0xce246b5b, 0xe41c2bcb, 0x8734b1ac, 0x3b1090ba, 0xdfc70e43, 0xd16d6812, 0xdab04440, 0xaf2caacc, 0x2a9deea2, 0x15c05e47, 0x4bd12c08, 0x511b87ca, 0x689703ec, 0xfb9a7dec, - 0xc7c046b9, 0x0001ea, 00000000 + 0xc7c046b9, 0x0001ea }, { 0x13a3967f, 0xd1bfb5e5, 0x4b0861da, 0x4a8088f6, 0xb67c940f, 0x3eac3c10, 0x755eb0c5, 0x8ad2ca44, 0x868a5369, 0x82b9558b, 0xedd1bf8b, 0xa8b27e28, 0x11114a95, 0xdcaf85ad, 0x8478fa4e, - 0x47ce0db4, 0x00015b, 00000000 + 0x47ce0db4, 0x00015b } }, { @@ -52686,19 +52685,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x30424fd1, 0x2c546400, 0x6388f42c, 0xa8a3685, 0x46fb6e2f, 0xf19f9e46, 0x6d052f45, 0x1147fad4, 0xc68b5fc5, 0x6da7c66e, 0x428a5cca, 0x8411f599, 0x7fad58fd, 0x60a872cf, 0x6e06e9ca, - 0xe7d4cc79, 0x000072, 00000000 + 0xe7d4cc79, 0x000072 }, { 0x53a1a6e1, 0x250313ff, 0x9fe38e42, 0xb38fa700, 0x575a148c, 0x225f8988, 0x328f1bdc, 0x843d827c, 0x56fafb42, 0x16d6aab4, 0xb5182464, 0x8b601be1, 0x8d1c2461, 0x2b1ae29a, 0x33631a83, - 0x2eaf3fa9, 0x0001b3, 00000000 + 0x2eaf3fa9, 0x0001b3 }, { 0xe5a05e4d, 0x4c5fed56, 0xcfa25430, 0xce7926a9, 0x824825aa, 0xc514fb1b, 0xc0b90e86, 0x395397bd, 0x54297bb2, 0xf51a19ca, 0x3d60309e, 0x898b54f9, 0x497aac2, 0x8a1d610a, 0xcc3c6f68, - 0x9261556f, 0x000075, 00000000 + 0x9261556f, 0x000075 } }, { @@ -52706,19 +52705,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc61dd1db, 0x9cf1c6c3, 0x72fdfc39, 0xb72c9c56, 0xb47bca0e, 0x5d56a809, 0xd5dd9bca, 0x878fc295, 0x62426152, 0x78bada0c, 0xaf06e790, 0xb0d9d3b9, 0x69b746c8, 0x7e00ec82, 0xd03a7e12, - 0x511cc179, 0x0000e7, 00000000 + 0x511cc179, 0x0000e7 }, { 0xa1971c69, 0x8b34a731, 0x8a362307, 0xf5bb6929, 0xaa3f84fb, 0x27c11546, 0x408e85fb, 0x60366438, 0x92b1f5aa, 0x34dc90e1, 0x8de7d012, 0xfa848a5a, 0xa954c5d6, 0xd6d8e5d8, 0xdcd28473, - 0x6e5d67e4, 0x0001ca, 00000000 + 0x6e5d67e4, 0x0001ca }, { 0xa4ad347f, 0x1458bccb, 0x9d30b357, 0x960f4f64, 0x91306f21, 0xfbc04987, 0x15fa9f6e, 0xe641a975, 0xe064769, 0xd13fce5a, 0x264e9f77, 0x3b6f71e8, 0xf9eb7d6a, 0x609a24ba, 0x6033dd88, - 0x413a1b47, 0x000034, 00000000 + 0x413a1b47, 0x000034 } } }, @@ -52728,19 +52727,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x339395e2, 0xff1cf5bc, 0x5792b379, 0xdac1fb7, 0xf7194e01, 0x1a7d3d70, 0x9e585f7d, 0x66e31042, 0x6c424fb7, 0x5b94a708, 0xdf6df655, 0xb5ae72e9, 0xa0444f11, 0xfa3559d0, 0x5c3ccd9, - 0xa497cfb, 0x000106, 00000000 + 0xa497cfb, 0x000106 }, { 0x3465c7bd, 0xbfc24989, 0xd1446e1f, 0xf2d915ab, 0x7968286d, 0x18341f14, 0x1cc97e8c, 0xa86c1c52, 0xa064c770, 0x897b920d, 0x3b50d403, 0x67f9fa93, 0x60f73af7, 0xcc258a8a, 0x4cbfd0f7, - 0x9d804726, 0x00017c, 00000000 + 0x9d804726, 0x00017c }, { 0x7c34f200, 0x3e2a3109, 0x13f72d7, 0xdfb6b05a, 0xed8cee2e, 0xadd8e500, 0xd5e3654, 0x11d9bfa3, 0xbb25d893, 0x35c3e6eb, 0xbfcf2203, 0xde54986f, 0x69514316, 0xc77eb8fc, 0x4aaf6c92, - 0x4c57b9cb, 0x00010b, 00000000 + 0x4c57b9cb, 0x00010b } }, { @@ -52748,19 +52747,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7cc8fa13, 0xf68e105d, 0xa4dbe154, 0xb8b95f75, 0x80de4fcc, 0x78ff01d6, 0x7998defd, 0x539a3ca3, 0xf3a7cb05, 0x9acde7f9, 0xd205017e, 0x7368d5, 0x5026de42, 0xd2b9b0f7, 0xe1fd2aed, - 0x3f90d55f, 0x0000b8, 00000000 + 0x3f90d55f, 0x0000b8 }, { 0x982338a7, 0xd2d1253e, 0xbe6f86fa, 0xc4ffa240, 0x7d7c77da, 0xa64f67fe, 0x79cd827a, 0xb28d450, 0xe8c36727, 0x73c52db8, 0x757e3948, 0xb1616af0, 0x62c737ab, 0x90df8df4, 0x13ff6de4, - 0x366e6edc, 0x000041, 00000000 + 0x366e6edc, 0x000041 }, { 0x5202fc36, 0x687257ec, 0xdd0c0e5c, 0xd48888d6, 0x6961a754, 0x6500508d, 0xedc8283d, 0x97608493, 0x673e169, 0x93e53eb5, 0x319da879, 0x465b632e, 0xd0042bef, 0x685c4ce, 0xfd81b551, - 0x380b2d87, 0x0000ff, 00000000 + 0x380b2d87, 0x0000ff } }, { @@ -52768,19 +52767,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc0984134, 0x147481c9, 0xb4a9a49a, 0xf9b657ca, 0x446f45b8, 0xc71659fd, 0xbb025c55, 0x9f783a65, 0x8e71fd27, 0x3b8a4cb7, 0x28a8421c, 0x829c22fd, 0x65a1f0eb, 0x5a90e073, 0x5b0e4296, - 0x172192cf, 0x000061, 00000000 + 0x172192cf, 0x000061 }, { 0xa9266a71, 0xe479389a, 0xc8885df3, 0x615ddbb9, 0x8843c445, 0xc3f2066f, 0xbd526b67, 0xe0dd9d93, 0x43fd8b25, 0xc11b2472, 0x8996a416, 0xaeea1813, 0x5d263c0e, 0xa82bbc2e, 0xcc5f064, - 0x897e12f9, 0x00009f, 00000000 + 0x897e12f9, 0x00009f }, { 0x73608e6b, 0xa15acd59, 0x514b3deb, 0x38c06a0b, 0x748ccea7, 0xef0de347, 0xe3ef0a5d, 0x2db5470e, 0xbd312343, 0x91b13a7a, 0x36fc3344, 0xebcbc918, 0x4799e0b4, 0xbb4bdb53, 0x30883a28, - 0xe14da109, 0x0001e4, 00000000 + 0xe14da109, 0x0001e4 } }, { @@ -52788,19 +52787,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xee5ba178, 0xe4ae92d8, 0xafd52934, 0x1bdc7f7, 0x4840c13c, 0xbec576b9, 0xcc9f7d47, 0x47259e2a, 0x2cfd81f2, 0xc075761d, 0xfab4abe, 0x6d54cf4f, 0xb34f9d81, 0x511427cc, 0x23044a11, - 0xb7fbfdd7, 0x000084, 00000000 + 0xb7fbfdd7, 0x000084 }, { 0x8c70e31e, 0x7f67fb32, 0xed009f0, 0x793ed467, 0xa1663414, 0xe21c9893, 0x47f7e46b, 0xd3021043, 0xe2480d1c, 0xcaec415d, 0xa967a084, 0x4651f9a6, 0x2f28cfaf, 0x8bcae7d4, 0xe6b981d4, - 0xbc1f1611, 0x00009f, 00000000 + 0xbc1f1611, 0x00009f }, { 0x3373bf8c, 0x581f5fd1, 0xf3f2ac00, 0x960a6cb9, 0x94a8fd62, 0x1140a5f5, 0xf209b57e, 0xe717f52f, 0x54007524, 0x59fa88da, 0x8a281101, 0x95b52aa8, 0x71f38fbf, 0x3748a32c, 0x6cf328eb, - 0xc4b3c969, 0x0000f0, 00000000 + 0xc4b3c969, 0x0000f0 } }, { @@ -52808,19 +52807,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xba80629d, 0x2cd0078c, 0xdb198f37, 0xf5488da2, 0x46f14c6a, 0x540ba50e, 0xdc601301, 0x1f1695ee, 0xf30791f9, 0xec2b93d1, 0x61606364, 0x88086a12, 0x52dba38d, 0x38cbb72c, 0x7b4f0bf0, - 0xb69351ee, 0x00009a, 00000000 + 0xb69351ee, 0x00009a }, { 0x6b5b332b, 0x4e6dcc6, 0x50aa79ea, 0xfcccb365, 0x7d602772, 0xe985152f, 0xbc1780b4, 0x6d7684c7, 0x6dd95712, 0xb77117fc, 0x4783c716, 0x51a5d0c9, 0x84912094, 0xe76adf9, 0x968a3eef, - 0xf54ce574, 0x00017c, 00000000 + 0xf54ce574, 0x00017c }, { 0xcbe712d2, 0x1e4afe81, 0x1de6604e, 0x1a078a2c, 0x201a1daa, 0x142f0f6, 0xc802e1b0, 0x7d614a58, 0xf7d78c1d, 0xef4e0d69, 0xb0342d20, 0x53fa092d, 0x1c969df3, 0x4796b4ab, 0xc77ff6d, - 0xde97bfda, 0x0001cc, 00000000 + 0xde97bfda, 0x0001cc } }, { @@ -52828,19 +52827,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x29e13360, 0x656fe1a6, 0xa0408d5f, 0x894f70be, 0x4a0aac70, 0x9b129f06, 0xd88b0670, 0x70d28523, 0x56bc1158, 0xc4dc47c7, 0x478718cb, 0x23b31556, 0x69f34cbd, 0xefb5c2a, 0xa05a348d, - 0x82071cb9, 0x00018c, 00000000 + 0x82071cb9, 0x00018c }, { 0x1f1f873b, 0x4d75109e, 0x69f4258, 0x7960b082, 0x5c525459, 0x451f1b1b, 0x895888f2, 0x5daa346b, 0x4f55977d, 0xf33e91a7, 0x38578304, 0x37d8aa52, 0xd404e0d6, 0x38b581ab, 0xb823d463, - 0xe8ff06e3, 0x00009a, 00000000 + 0xe8ff06e3, 0x00009a }, { 0xc9b1e867, 0xb5b2d946, 0xb9b5d4a2, 0x6897ebef, 0xf3c2466b, 0x9f3fdf21, 0x7dcee359, 0x7c4929c6, 0xcf5ddcd1, 0x64dea5f5, 0xcd624d1b, 0x58491582, 0x95e0258f, 0x73acd95f, 0x56235207, - 0xf200cabd, 0x0000ec, 00000000 + 0xf200cabd, 0x0000ec } }, { @@ -52848,19 +52847,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8249ec85, 0x77da49ac, 0x2161e5d4, 0x7e61a075, 0x81e1e8cc, 0x6cc7efd7, 0x34716730, 0xa91bb9ed, 0x31e43ac6, 0x47855539, 0x7676fe33, 0x6d3841f7, 0x9f9b70a, 0x7f67c391, 0xfebca27, - 0xbe629f8d, 0x00017a, 00000000 + 0xbe629f8d, 0x00017a }, { 0xd294659b, 0x47f0254, 0x55714410, 0x51a496ee, 0x38374f51, 0xf4fec4b7, 0x5f230519, 0xc7d8d079, 0x31d5d3e0, 0xcd5a74b6, 0xc221a212, 0xff6a1787, 0x531a9703, 0x2a6a3af8, 0x4ab3463d, - 0xfe7d4b53, 0x00015e, 00000000 + 0xfe7d4b53, 0x00015e }, { 0x221c85da, 0xa666778b, 0xee494252, 0x5f7b9871, 0xb195ba44, 0x8bf95e18, 0x232ab587, 0xfa3bb285, 0x46fecca1, 0xe2b572e, 0x4fad6232, 0x348f1663, 0x5ff90de1, 0xec57ff5d, 0x370306d8, - 0xb9630e13, 0x00014d, 00000000 + 0xb9630e13, 0x00014d } }, { @@ -52868,19 +52867,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe807ac40, 0xa31c7bc1, 0xc37b0534, 0xd17c7d9e, 0x4ea56891, 0xbbb8eca3, 0x6390f447, 0x1a82de44, 0x63136711, 0xce36f0d1, 0x768f0b87, 0xcfc723b, 0x42d48437, 0xd5e1d50b, 0xd7b0dc91, - 0xb9d8a0b2, 0x0001be, 00000000 + 0xb9d8a0b2, 0x0001be }, { 0xa61c0d4e, 0x47906507, 0xbbc73d34, 0x59a064a0, 0x6ea2b0af, 0x25d87603, 0x57e054a3, 0xc051a917, 0x3a13bcb0, 0xa52a8268, 0x894d658b, 0x1a37bbba, 0xbf32309e, 0xa96d8d3d, 0xbb3c3cf, - 0xd5079dce, 0x00015f, 00000000 + 0xd5079dce, 0x00015f }, { 0x1ceba3a9, 0xe6c9f372, 0x7a0557f, 0xeb519958, 0xf6bfcefd, 0xc4fa78ff, 0x2a8c2ea, 0x545cd53d, 0x57175f16, 0xfd7e524a, 0x15677500, 0x16f99b40, 0x7851825c, 0x2924c1f2, 0xf66cb8b0, - 0x4d1b426f, 0x0000ce, 00000000 + 0x4d1b426f, 0x0000ce } }, { @@ -52888,19 +52887,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7d282b8b, 0xf7f71028, 0x8fc93fe5, 0xc3bf4508, 0xe808acbb, 0x1b137967, 0xb168dcc2, 0xb8eee291, 0xcbf9f327, 0x5840a1bd, 0xcc560df4, 0x388e897a, 0x1087a29d, 0x16a3752f, 0xb6a2b695, - 0x3497a980, 0x0000e0, 00000000 + 0x3497a980, 0x0000e0 }, { 0xde40eaff, 0xf08b3c39, 0x4f2f6882, 0x726a06a6, 0x4d67da28, 0x2d0315b6, 0x32fbf795, 0xc6e9029d, 0x57c51294, 0x2d39888d, 0x8ff3d94a, 0x2fb667ec, 0x86c26d98, 0x14452c68, 0xe7de56bd, - 0xcecec54f, 0x000112, 00000000 + 0xcecec54f, 0x000112 }, { 0xdafce4cc, 0xca0d2974, 0x588d2fd6, 0xdaca56d6, 0xf4f37450, 0x67c8a2d9, 0x7d7ab0b2, 0x8358d49e, 0xa5cd79be, 0x5a521ef8, 0xfeb03dbf, 0xabc9f448, 0x610cd160, 0x35f8dd9e, 0x4d66aaf7, - 0x5922030, 0x000095, 00000000 + 0x5922030, 0x000095 } }, { @@ -52908,19 +52907,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf7ed1edb, 0x7a3d5b04, 0x3b3e48a, 0xcfd3ee58, 0x4d8cc529, 0x43d1d2f9, 0x72d3dabf, 0xc4511e3e, 0x8b8f25a1, 0xde30a194, 0x8d415f15, 0x5921b600, 0xf77fdf1a, 0xc5ffcbb3, 0x4a818ef7, - 0xe5f85983, 0x00000d, 00000000 + 0xe5f85983, 0x00000d }, { 0xf206ac70, 0xda355adc, 0x76c6fd5d, 0xa90ba76a, 0x58b87863, 0x637790f3, 0x744f37c7, 0x56715bd2, 0xd863fb49, 0x7e962844, 0xe165092e, 0xb660d14c, 0xc8d16c42, 0xc199adff, 0x66d7c9f0, - 0xef587a69, 0x000107, 00000000 + 0xef587a69, 0x000107 }, { 0xfc15dcf4, 0x61c7b3c8, 0x556dfbc, 0xd92c9fa4, 0xf37d927c, 0x7ae82394, 0xb57935fc, 0xf546de3a, 0x982469b6, 0x748ac4f4, 0xff598599, 0x278d5aa8, 0xa762c2fb, 0xdba52653, 0x4b2836ff, - 0xf02b33da, 0x000176, 00000000 + 0xf02b33da, 0x000176 } }, { @@ -52928,19 +52927,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a4bd45b, 0xc24f54d1, 0xd961f535, 0xa5114381, 0xca257923, 0x48384c32, 0xf2c18edb, 0x4280abc4, 0xb8948c1b, 0x14b647d, 0xda41bc27, 0x25770afa, 0xb51d104d, 0x6d3ecc99, 0xd48075e, - 0xe5664758, 0x000034, 00000000 + 0xe5664758, 0x000034 }, { 0x47780c1d, 0x62719e4f, 0x209a0e71, 0x5d563d28, 0xe5d64910, 0xb69f89ed, 0x5dd2e9a, 0xfceab0aa, 0x58881a76, 0xc6ffb494, 0xc9b58413, 0x56882ddf, 0x21478f01, 0xd87d8383, 0xae4eb4c8, - 0xcc81689f, 0x0001f4, 00000000 + 0xcc81689f, 0x0001f4 }, { 0xdb45e4fc, 0xf29a0582, 0x692480be, 0x60348c4, 0xb5b0eff0, 0xf0a6bc57, 0x4126f0d8, 0x3de022e1, 0xe9eda4e6, 0xbf7ce924, 0xd7dae05f, 0xf227af44, 0x2b6566d5, 0x7d146ec1, 0x2aee92b5, - 0x3e74215d, 0x0001cf, 00000000 + 0x3e74215d, 0x0001cf } }, { @@ -52948,19 +52947,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9700c031, 0x631f0b75, 0x1981d91c, 0x6d7ed84c, 0x5ce58305, 0xa0c37f7d, 0x945081fd, 0x97034dd9, 0xfaa82e25, 0x2141b192, 0xc39736e2, 0xd1abdfea, 0x9e340751, 0x2fbcaa14, 0x858b6bc4, - 0xc0e542d3, 0x0001a6, 00000000 + 0xc0e542d3, 0x0001a6 }, { 0xd19a12ff, 0x879ed9f5, 0xf3d118d3, 0xac47653d, 0x59d325be, 0xb021dd9f, 0x697ead50, 0x6a79f42a, 0xc20d016a, 0xcae38aed, 0x7d75b9c6, 0x3d7f5d50, 0xb8164ced, 0x68657a2d, 0xb54cf1a3, - 0xd8bbfdb6, 0x000008, 00000000 + 0xd8bbfdb6, 0x000008 }, { 0x9d8a98c5, 0x2582b55a, 0xf0251bf4, 0x4f871893, 0xf8c8ea47, 0x8e921af9, 0x191e3df1, 0xebbc3197, 0x582263d, 0xa5aacca6, 0xe2d4d1a7, 0x3a89cc1b, 0x423d5a6, 0xadfa89eb, 0x58f836f7, - 0xa4e1c354, 0x00019b, 00000000 + 0xa4e1c354, 0x00019b } }, { @@ -52968,19 +52967,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x52c45315, 0x61569cbe, 0xf1e7103a, 0x62ff032d, 0x81bd469, 0x2c3f7b21, 0x6ea83d69, 0x21779f65, 0xeede75f0, 0x8b3462ac, 0xc7e7bb4c, 0x7eb3ddbe, 0xe9bbd954, 0x2717cd19, 0x2300c965, - 0x471ca23a, 0x00015f, 00000000 + 0x471ca23a, 0x00015f }, { 0xdd3ddf89, 0xb6247993, 0xa463a2d3, 0x5b4132c5, 0x8a0961a5, 0x239d71ff, 0x5a181c5a, 0x7321794c, 0x51177bf8, 0xf18da907, 0x2965b0c3, 0xbcd81a88, 0x5017605b, 0xa2f52139, 0x40a924cd, - 0x5881913b, 0x0001d3, 00000000 + 0x5881913b, 0x0001d3 }, { 0xe2fd3a0b, 0x9c46a403, 0xf7fde87b, 0x68a1c7b, 0x41a2dd01, 0x4191fedd, 0x78fa684, 0x7efeb847, 0x4888158b, 0xc57c4527, 0xd8358a68, 0x5b14ee36, 0x3f48ce1b, 0x480ab37e, 0xf76f6042, - 0x6a053872, 0x000077, 00000000 + 0x6a053872, 0x000077 } }, { @@ -52988,19 +52987,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9c293020, 0x404eede9, 0xe793247e, 0x5d3ee9b8, 0x42239f49, 0xc59af37, 0x5b97fcb9, 0xc0a88a33, 0xba80ed10, 0xf05f0844, 0xd97a3970, 0x78acd00b, 0x8df5ad7c, 0xb9f5a277, 0x11c7b8ca, - 0xb8529878, 0x000069, 00000000 + 0xb8529878, 0x000069 }, { 0xc75dfac7, 0xdb00c41d, 0x4e93f26a, 0xe295bfe6, 0xb0c23100, 0x6afc1fad, 0x2ec4cca6, 0xcbef2e1, 0x8defadb8, 0xbbc8d074, 0x3345d692, 0x52b5d329, 0xcbce0e16, 0x1cfcf549, 0x4a7cd732, - 0x8a32a1e6, 0x0001b8, 00000000 + 0x8a32a1e6, 0x0001b8 }, { 0x62e9a572, 0x444e6ee8, 0xe02abb05, 0xb8219031, 0x2be887ff, 0x8f88383d, 0x55bc3147, 0x4da02414, 0x1dc03635, 0x38c94675, 0xdc0f34d0, 0xbe70a593, 0x57ad4d1b, 0xfae45fb7, 0x6ef3ee77, - 0xb6230b7d, 0x0000fc, 00000000 + 0xb6230b7d, 0x0000fc } }, { @@ -53008,19 +53007,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9d412869, 0xa40523e2, 0xc9f27af4, 0x1f2dde9f, 0x59746002, 0xb270e38d, 0xd835e130, 0x8a7faef3, 0xf20a2034, 0xa7d53ddd, 0xb8432e30, 0xb3cb0e2a, 0x392093e2, 0x4dbc877f, 0x20d2c413, - 0x5b86b0c, 0x000112, 00000000 + 0x5b86b0c, 0x000112 }, { 0xfea07505, 0x196530d0, 0xb8311c31, 0x4282c245, 0x5c6f77e5, 0x75cbf6d2, 0x7831fdd3, 0x3fd875, 0x4e9cd577, 0x1ebe25aa, 0xce1052e2, 0x3fb24200, 0xbbe44dea, 0x9bdc9f5d, 0x278270eb, - 0x3739746b, 0x0001df, 00000000 + 0x3739746b, 0x0001df }, { 0x7da8c8c7, 0x7f21a017, 0x21e82bbd, 0x654e667, 0xedad4bfb, 0xa0d81467, 0x7025ca8d, 0x3a61ed22, 0x4f1de6f7, 0x7d525538, 0x2950b1c6, 0x1ae9c281, 0x287d526a, 0x54bca0b7, 0x4518d8b7, - 0x17a8f172, 0x00008f, 00000000 + 0x17a8f172, 0x00008f } } }, @@ -53030,19 +53029,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa30786a1, 0xdaa2164b, 0x59ec5ba4, 0x26f42f0a, 0xa145341f, 0x917008ca, 0x46240d01, 0x8a277736, 0xfeb89884, 0x764f4f00, 0x168e04bb, 0x8f460893, 0x798e3a67, 0x27990c0a, 0x8a77214d, - 0x985a57a6, 0x00002b, 00000000 + 0x985a57a6, 0x00002b }, { 0x13a482c, 0xdece625c, 0xf621c29a, 0xcdd511f0, 0xdd967153, 0x1cabd016, 0xdda7b3c5, 0x57e2fca2, 0x99b71dec, 0xb78c1f61, 0xd0e8a64e, 0xfcce08ab, 0xebce41f, 0xf973768, 0x853ee699, - 0x50767336, 0x000106, 00000000 + 0x50767336, 0x000106 }, { 0x3fa2dd1e, 0x26b70c64, 0xb75d2665, 0x5dfa88bf, 0xc21782e6, 0x2edd09e9, 0x5eed22ae, 0x2f389ddf, 0x31401fd3, 0x242735d2, 0x59bcb904, 0x8de84c78, 0x5f4b9f4d, 0x285a9920, 0x9ec5b391, - 0xfd2e9905, 0x000141, 00000000 + 0xfd2e9905, 0x000141 } }, { @@ -53050,19 +53049,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xadcb7980, 0xc3b1eca4, 0xa8548a83, 0x99eccc09, 0x9e3bc589, 0xead01ab7, 0xf4579b72, 0xb2522d09, 0x26716a2a, 0xd4a9244e, 0x3d06a16, 0xe7a15092, 0xe0c1174, 0xb373de1e, 0x9e285e3d, - 0x84314f1c, 0x0001cf, 00000000 + 0x84314f1c, 0x0001cf }, { 0x3b7f04c7, 0x891ab0f5, 0x3f8f7bf8, 0x37314073, 0xc7c8f5fb, 0x8d71d354, 0x8d3855e8, 0x17434ac3, 0x5325501, 0x159aec95, 0x5700233a, 0xc90c3374, 0xdc816cc1, 0xc56f3103, 0xa2d6f922, - 0x1a844bb7, 0x000144, 00000000 + 0x1a844bb7, 0x000144 }, { 0x88e3817e, 0x3c368515, 0xa02eefc5, 0x9efbec63, 0x86b4772c, 0x3a7e823a, 0xf90a3b5e, 0xee753549, 0xc67d97df, 0xea799154, 0x6260fda9, 0x19af315c, 0x3b5f48ab, 0xac84a9bc, 0xeb4ca001, - 0x4967a417, 0x0000bc, 00000000 + 0x4967a417, 0x0000bc } }, { @@ -53070,19 +53069,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x37b31b60, 0xe6d38353, 0x2881faa5, 0x583df516, 0x88833fb, 0xd67ff743, 0xaa5bed06, 0x96842247, 0x627ba246, 0xc1d783a7, 0xbc9962f1, 0x1181bb54, 0xcf983058, 0xaf1d8e92, 0x9c55b2de, - 0xa2578d0, 0x000177, 00000000 + 0xa2578d0, 0x000177 }, { 0x906bd0ed, 0x1a73927, 0xa42ea4d4, 0x92301d1b, 0x4bf64b55, 0xff7cae96, 0xa60b7c3c, 0xfb926bb5, 0xe22e011c, 0x6d04e77b, 0x88b56075, 0xcbc60836, 0x1a13597, 0xdb2bd280, 0xe3df3bc3, - 0x3caf64e7, 0x000136, 00000000 + 0x3caf64e7, 0x000136 }, { 0x5af33afd, 0xa3e68ed4, 0x5a5ffd70, 0x86cec3e0, 0x8d69503a, 0x55578604, 0x9fb28e26, 0x39cfad0, 0xad220bc5, 0xed75c9e5, 0x7e8ede5, 0x25266c77, 0xc3133fb6, 0x46151816, 0x617b2452, - 0xaa5ae4c4, 0x00018b, 00000000 + 0xaa5ae4c4, 0x00018b } }, { @@ -53090,19 +53089,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb00e078, 0xbaa9add0, 0x34188884, 0xfc168c67, 0x39ae5b8a, 0xbeb5e595, 0x7abf3874, 0xbe9d151, 0x1309e4e1, 0x3729de8d, 0xaedccafd, 0x117b0e66, 0xf8d5e12a, 0xc64654d1, 0x1a106751, - 0x121177c5, 0x0001c0, 00000000 + 0x121177c5, 0x0001c0 }, { 0x35f42cb9, 0x3b3a395e, 0x1e1f0dcf, 0x3c6d1c7c, 0xdef9079f, 0x18d6dea0, 0x59052e21, 0xa2922231, 0xd9805bac, 0xa63042f7, 0x30a5b9e3, 0x6422c31f, 0x23873360, 0x16e2be57, 0x5642ff63, - 0xb97abdc9, 0x0000a3, 00000000 + 0xb97abdc9, 0x0000a3 }, { 0x8fe51223, 0xeed9c1e4, 0x705ff11b, 0x75e12a3e, 0xe8d3cbdc, 0x6c9275a4, 0xcb4019dd, 0xd46822b5, 0xc2895d11, 0x4553a5ff, 0xe0e7c5af, 0xc786010e, 0x57e10e0f, 0xf8065dec, 0xfbeef8d0, - 0x5ccae402, 0x0001aa, 00000000 + 0x5ccae402, 0x0001aa } }, { @@ -53110,19 +53109,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7aef7eb4, 0x1a16163d, 0x97be8482, 0x52231925, 0xe6c9063f, 0x5a5cbc62, 0xd67abc43, 0xe81f5006, 0x959af467, 0x5cb1e12d, 0x28ea8afb, 0x9ab9c0d3, 0x4044b3af, 0x26cc112b, 0xba96ba88, - 0x2a2be9e5, 0x000128, 00000000 + 0x2a2be9e5, 0x000128 }, { 0x367c1f46, 0xa4e1af5e, 0xd0f84a30, 0x9dee6d16, 0x3ff23a7a, 0xbe274633, 0xa9496b8d, 0x37c002a7, 0x7e98721e, 0xd39d5d02, 0x5aa94bc3, 0xbc24059e, 0xbd97b2ec, 0x927f744, 0xc661aa35, - 0x67808c97, 0x00000d, 00000000 + 0x67808c97, 0x00000d }, { 0xaae5c6c6, 0x9afec279, 0x66ca314d, 0xe08cda57, 0x118ef53b, 0xc8d48269, 0xa4914bf6, 0x5ff156ce, 0x72e29f7e, 0xa6e9c477, 0x31a32471, 0x7397a6e3, 0x349f32e9, 0xc7d0d3d, 0x7e5a57b1, - 0xdcbe336c, 0x00013a, 00000000 + 0xdcbe336c, 0x00013a } }, { @@ -53130,19 +53129,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x421d61eb, 0x4290f5bf, 0xa754d110, 0xe0e311e7, 0x1b0cacdc, 0xb425ee88, 0xe5d2efee, 0xdd8a4ed1, 0x69860cc4, 0xb086a665, 0xa208b24b, 0xaedf0c70, 0xf52af377, 0xe3b1f6a6, 0x5e22271c, - 0xa33f6891, 0x000186, 00000000 + 0xa33f6891, 0x000186 }, { 0x19c961dd, 0x4aaf751a, 0xa0493ff, 0x6059f718, 0xb1ef249d, 0x88f00509, 0x7ea6da73, 0x6391cb74, 0xa037c028, 0xa8bd8882, 0xd2cb8fa6, 0xc6880e06, 0x1b5307ba, 0xebee526e, 0x96c75097, - 0x3a8314a5, 0x000129, 00000000 + 0x3a8314a5, 0x000129 }, { 0x61468437, 0xae6b93dd, 0x8e617642, 0x3485dea5, 0xba98f102, 0x9054a10f, 0x89bea160, 0xd11e5897, 0xabd78c11, 0x6317fa68, 0x6a77e825, 0x15147cce, 0x9340bcb4, 0x31eca12, 0x1bb98fdc, - 0x2e871768, 0x000188, 00000000 + 0x2e871768, 0x000188 } }, { @@ -53150,19 +53149,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a022dc1, 0x7806b56c, 0xa24f6a42, 0xc64f5d85, 0xaf56fbc1, 0xf3e0e61d, 0x9d3a0ec9, 0x6b96891c, 0x83dd90c0, 0xa4937d9, 0xa40c2254, 0x3a848cad, 0xb28cb0af, 0x111ed23c, 0xda39383c, - 0x990a851f, 0x00006e, 00000000 + 0x990a851f, 0x00006e }, { 0x87d064ee, 0xca5d5c0f, 0x2d3bf84a, 0xf5dfe62e, 0xe04fb513, 0x9d9df747, 0xf316164c, 0x5585bbe, 0x48d568ef, 0xebf74f2b, 0xa9771099, 0x9eaf8f18, 0xaf3a2bc8, 0xef4d1fe3, 0x667706f3, - 0x94437480, 0x0000ec, 00000000 + 0x94437480, 0x0000ec }, { 0xe51c5879, 0x73d13d60, 0x2658770f, 0x29134b31, 0x30eb93be, 0xf9200eee, 0xc1af6952, 0xbda49a73, 0xfaf1d0d1, 0x954f9cbf, 0x7a17f8f0, 0x1a27d761, 0x63723078, 0x7bd98cce, 0x32f9186a, - 0x4701b8f5, 0x000095, 00000000 + 0x4701b8f5, 0x000095 } }, { @@ -53170,19 +53169,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x18e8df01, 0xf603d23b, 0xa6c16025, 0xe505349, 0x5979373d, 0x7869ca3f, 0x9ee3e35d, 0x75e7931f, 0x3d2a4473, 0x376d5f7e, 0x833da5a8, 0x1cc2741c, 0x32227630, 0x7cea65dd, 0xeda3544e, - 0xa1013630, 0x0000bf, 00000000 + 0xa1013630, 0x0000bf }, { 0x88373a60, 0xb577956d, 0x8807bb6e, 0x794c42fc, 0xe9968865, 0x8d48fc3f, 0x98e8f4e1, 0xf778313b, 0x288fae6f, 0xe1ca8891, 0xdc99501f, 0xf2f3907d, 0x91b3c131, 0x45e29e85, 0xc077f8a3, - 0x945ecc65, 0x0001ff, 00000000 + 0x945ecc65, 0x0001ff }, { 0xeb9ddffa, 0xd959c133, 0x9ef4e770, 0x9036a961, 0x992f01bf, 0x2746db0a, 0x77c72243, 0x4c960e23, 0x497c6d51, 0x66211081, 0xd58c1609, 0x146bcde7, 0x67981aa8, 0x4866eb43, 0x89dc04dd, - 0x297423cd, 0x00008f, 00000000 + 0x297423cd, 0x00008f } }, { @@ -53190,19 +53189,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3a66eade, 0xe691bfc2, 0xa319ddfe, 0x8cdd96d5, 0xb52826ad, 0xd2747b72, 0x2f92d99f, 0x49bef4f0, 0xd270be97, 0xf81a3c52, 0xd6f92b1d, 0x4107081f, 0x347d4155, 0x212ad096, 0x553f0508, - 0x93d647da, 0x000153, 00000000 + 0x93d647da, 0x000153 }, { 0x66d74f92, 0xfb93973, 0x1edc27f, 0x7be22f1c, 0xe07536c0, 0x70e3e287, 0x22092fdb, 0x844024af, 0xb64b47c4, 0x123ec899, 0xb525059, 0x8252b27f, 0x5d2b2818, 0x5680fe9, 0xe06a075, - 0xa0c418a8, 0x00012f, 00000000 + 0xa0c418a8, 0x00012f }, { 0x2e60aa9f, 0xac7ba55a, 0xf2c456b, 0x59628711, 0x5ed80d88, 0xf12a396c, 0x5939f3d1, 0x83123a22, 0x6538cbd3, 0xae5ea695, 0xb5cf5e15, 0xb123723e, 0x14cd9843, 0x136e0af3, 0xc799a595, - 0x3e461efd, 0x0000ce, 00000000 + 0x3e461efd, 0x0000ce } }, { @@ -53210,19 +53209,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49794680, 0xe267f473, 0xcde965cb, 0x1b4420bc, 0xb9ccdd12, 0xe8b61641, 0xfe641299, 0xe91c22fc, 0x6106a935, 0xc9a5d38d, 0x883841f6, 0xb8c68b9a, 0xf477f004, 0x1c4ca0bb, 0x7e176fc2, - 0x26aeb371, 0x000011, 00000000 + 0x26aeb371, 0x000011 }, { 0xa65f76ae, 0x2edf0690, 0x6bdbd354, 0x81a2348, 0x8105514d, 0x99cc7108, 0x7fab37b6, 0x63cd44dc, 0x78638438, 0x9bca5876, 0x6db2cc85, 0x8ab84d9f, 0x85960231, 0x87654ddb, 0x32377bfa, - 0x44bbe49, 0x00003c, 00000000 + 0x44bbe49, 0x00003c }, { 0x46c69b9b, 0x8f69d194, 0x49ccd27c, 0x7c2feb1f, 0x770094b6, 0x9ee9f22, 0x9cb72e18, 0x13231d78, 0xa36cbcf5, 0xcfe0894a, 0x73f67de, 0xc1672854, 0x672bc598, 0xe812345b, 0x9083a8ee, - 0x59ec429e, 0x0001ac, 00000000 + 0x59ec429e, 0x0001ac } }, { @@ -53230,19 +53229,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7605561c, 0xccfe5db, 0x2d080a99, 0xb45a1b8d, 0x37a9a188, 0xff87b111, 0xd576aa03, 0x647cf07f, 0xf3c4d929, 0x98eb3f3a, 0x27852f22, 0xd5ee0446, 0xd1eee99f, 0x1741d1c, 0x90a31af1, - 0x2ec93c79, 0x0001ed, 00000000 + 0x2ec93c79, 0x0001ed }, { 0x78eb2c9d, 0x344e1a62, 0x27aeee00, 0x9272f483, 0x3e9a360d, 0xca9e5d26, 0xcd3e750f, 0xb15b24c6, 0x824ec4ec, 0x7a818e6b, 0xd39ac92e, 0xcb3871e2, 0x28a28a35, 0x9131c9c0, 0x89278d8b, - 0x1cafe930, 0x000137, 00000000 + 0x1cafe930, 0x000137 }, { 0xe499f496, 0x6e817dbb, 0x8c2b616e, 0x5c2297c0, 0x8b068a2b, 0x8eecd226, 0x39492e9b, 0x66317e27, 0x10eeaf70, 0x7f3b4081, 0x56d245d2, 0xd8472266, 0x7af09dd0, 0x6c4d45fb, 0xddb093c2, - 0x28ca2f76, 0x000035, 00000000 + 0x28ca2f76, 0x000035 } }, { @@ -53250,19 +53249,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x89eff1c4, 0x2e36faba, 0xbe17b09e, 0x94e8d356, 0xdeae19c6, 0xaaf541f8, 0xa7639f81, 0x95d379dc, 0xc4fc505a, 0x5ab19d0a, 0x4b38bf72, 0x203478a3, 0x4b98545d, 0xd463a7ec, 0x2f4b4157, - 0x8e5d12b2, 0x000074, 00000000 + 0x8e5d12b2, 0x000074 }, { 0x122428de, 0x9a0216db, 0x10bebb4b, 0x902391df, 0x6157a118, 0x736370c3, 0xe2767a77, 0xe3be43dd, 0xb26df18, 0x80f2a5ce, 0xe15dbc80, 0x1e9758f3, 0x9d28aace, 0xc984fdce, 0xab08e101, - 0xf9ff15a3, 0x000057, 00000000 + 0xf9ff15a3, 0x000057 }, { 0x547afe64, 0x9523c2b3, 0x79e96c73, 0x57c13c50, 0x831461a2, 0x7a066d90, 0x54553f5e, 0xe85627f9, 0x7c6024f8, 0xeb48d307, 0xee0bc2e7, 0x9940aaef, 0x144fc414, 0x27192cd, 0x72a372af, - 0x9218b71e, 0x00014d, 00000000 + 0x9218b71e, 0x00014d } }, { @@ -53270,19 +53269,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x81a7e939, 0x8b7a2d25, 0x46077d17, 0x169b5da9, 0xe3fc3f23, 0x263d7498, 0x26d17fa7, 0x7c079781, 0x9724c225, 0xb24ea912, 0xe80e1d8d, 0xd38ce4b9, 0x3fe3501b, 0x3c9343bf, 0xfcc2eb1, - 0xd4b5b3bf, 0x0000b8, 00000000 + 0xd4b5b3bf, 0x0000b8 }, { 0x24bbc36b, 0x8ac269e7, 0x703f83af, 0xc7efa77e, 0x8b15ad2d, 0xf71caddc, 0xcf91bd99, 0x2210629e, 0x4cf96357, 0x1a1d534f, 0xba045674, 0xe6056e45, 0x8ac18f4, 0x447c8cf4, 0x6ed57101, - 0x351423b1, 0x0000ab, 00000000 + 0x351423b1, 0x0000ab }, { 0x4bf6f90b, 0x812e4fe2, 0xd9bb37a5, 0xe6928800, 0x96461dd0, 0x9ed9f930, 0xfaf27262, 0x8ab11b95, 0x5cafa5df, 0x3527746d, 0x40b622d1, 0x2a8ae812, 0x9841ffd0, 0xf2462e1f, 0xd6f078b0, - 0x2d9f0ed, 0x0000f6, 00000000 + 0x2d9f0ed, 0x0000f6 } }, { @@ -53290,19 +53289,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8726ac6a, 0x5efbbf39, 0x3633c461, 0x19b350a3, 0xf93dab1a, 0x15a4c1e7, 0x8e9cf77e, 0x8f0aa5df, 0x4af1f0f0, 0xef49f06f, 0xc21d9e6d, 0xbdf11e5c, 0x62487e16, 0xb632692d, 0x24ac6f02, - 0xcedd1aec, 0x000069, 00000000 + 0xcedd1aec, 0x000069 }, { 0xe583cc6a, 0x1c022866, 0x457e32ed, 0xf88651f2, 0x6dc4f834, 0x6526b5ff, 0xed73333b, 0x392ed465, 0xb19937b6, 0x111f58a1, 0x5cc4b1a9, 0xb6aa33a7, 0x8a146d52, 0x4d2d5ed4, 0x15d9083c, - 0x6a9c6233, 0x00007c, 00000000 + 0x6a9c6233, 0x00007c }, { 0x49fb7bb9, 0x5db6b3be, 0x1dbf31d5, 0xeaeab048, 0xb9ae57b4, 0x74ec7233, 0x7d395a16, 0x3f2854cf, 0x7fb06c80, 0x983dc18, 0xb185be9d, 0xc39c6d46, 0xe33878b3, 0x372fabb3, 0x36532277, - 0x19e9a666, 0x0000ba, 00000000 + 0x19e9a666, 0x0000ba } }, { @@ -53310,19 +53309,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x32c03516, 0xea4db7a8, 0xb0537e79, 0x8b44b2a, 0x4bfaa3a6, 0x83660908, 0xe74ab0f, 0x34e82f7b, 0xa0f1c6d1, 0x2355282d, 0xd6f8dd54, 0xb02cc19c, 0xa7e55ffa, 0x437b8608, 0xdec20079, - 0x2abd4b35, 0x0000bd, 00000000 + 0x2abd4b35, 0x0000bd }, { 0xa2c2a29e, 0x3c6ac8f4, 0x9a3068b9, 0xb9f11deb, 0xaebe8d39, 0x32b7ecc1, 0xf20aadb5, 0xa25b7710, 0x3e4cb23b, 0x656debf7, 0xe1ccd513, 0x145f8a0b, 0xde7a494a, 0x8db1dba3, 0x38a11390, - 0x807ea470, 0x0001e7, 00000000 + 0x807ea470, 0x0001e7 }, { 0x35e81761, 0x923113f3, 0x6d7aea29, 0xa1b8ff20, 0xa6e9a903, 0x4cde4343, 0x8430643a, 0x6a2caf6e, 0x6ced5818, 0x45fff85e, 0x1cf13cc6, 0x8e68dbdb, 0x1883d307, 0xb6c32e09, 0xb3a80ad9, - 0x34cba490, 0x000085, 00000000 + 0x34cba490, 0x000085 } } }, @@ -53332,19 +53331,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7c1f22fd, 0x1ab67d51, 0x4f66dfb9, 0x72dff3e1, 0x453817cc, 0xdeaea1d, 0xcbacef16, 0xdf6759ca, 0x9d124a38, 0x54dbcc54, 0x2f89095b, 0xa6b8c9, 0x34b61b10, 0x87a90afb, 0xe7d66fd3, - 0x12e4e249, 0x0001bb, 00000000 + 0x12e4e249, 0x0001bb }, { 0x86f5ee2e, 0x5d0f915a, 0x59bf3928, 0x1472ab18, 0x8178e097, 0xe9475e55, 0x11f90413, 0x74a04db1, 0x5e8d4343, 0x7d87826c, 0x5fa8d757, 0x696e1588, 0xf5142001, 0x2a7bff64, 0xac8debb5, - 0x7623e08b, 0x0001a6, 00000000 + 0x7623e08b, 0x0001a6 }, { 0xaacd3ad2, 0x4aec0892, 0xc2f1e1b, 0xa71f45fb, 0x238a5adc, 0x1dc77bf5, 0x5fa8dd5, 0x713e5829, 0xa1b20250, 0xa7db743c, 0x561ffe0f, 0xf4e97c64, 0xb2a8f827, 0x3ffdfad6, 0x73f4b07d, - 0x9e55c0b9, 0x0000b3, 00000000 + 0x9e55c0b9, 0x0000b3 } }, { @@ -53352,19 +53351,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8d4b5d21, 0xf4b4d7f0, 0x98e3d669, 0x47e66700, 0xf663ad39, 0x848100ef, 0xa78f797b, 0x2e6592be, 0x1d8473bf, 0x777deb8, 0xcbbf4da4, 0xabac56b4, 0x3c934937, 0x75e4d763, 0x98b25473, - 0xc54921d4, 0x0001d3, 00000000 + 0xc54921d4, 0x0001d3 }, { 0xbf04942, 0x7afda9b9, 0xcb2d5763, 0x1ca2493b, 0x7c362cb0, 0x72a56737, 0x5b988310, 0x45dd12d6, 0x7a0ef10c, 0x7b5b6a39, 0x50b03c8f, 0xa2a16989, 0x7509f08d, 0xaa4c3c51, 0x9db5ff1, - 0xe3fb7750, 0x0000f1, 00000000 + 0xe3fb7750, 0x0000f1 }, { 0x3ad2b851, 0x2653bbd6, 0xbfdbcc3c, 0x328a3d4e, 0xa0e6b13c, 0xfba54d79, 0xdd5411ba, 0xa23e0ab9, 0x2b6d32e6, 0x4c3b40c0, 0x851a1ff0, 0x6f3413ca, 0x273b36eb, 0x31758f49, 0x34416dfb, - 0xc6c6fe4, 0x00003c, 00000000 + 0xc6c6fe4, 0x00003c } }, { @@ -53372,19 +53371,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa19e4102, 0x8df33d48, 0x2911b9a6, 0x72535224, 0x6775ae86, 0x6688cf6, 0x4cd9028a, 0xfd2b18b2, 0xfa6217d, 0x2cdb19b0, 0xc57e09a0, 0x4c5b61d1, 0xa36abd1f, 0x26bf8885, 0xd1a5ef86, - 0x15b447ab, 0x000035, 00000000 + 0x15b447ab, 0x000035 }, { 0xbbba2398, 0x8b2465b8, 0xa5757a04, 0xa9051e0c, 0xc1ce2e7a, 0x3226a8e4, 0x1a80bf74, 0xb8163bd9, 0xbef56002, 0xbf2e9d73, 0xa3c62881, 0xb712095a, 0x16824d7b, 0xb89776fb, 0xad542da8, - 0x86320715, 0x000055, 00000000 + 0x86320715, 0x000055 }, { 0xd26a5840, 0xb6ae3b37, 0x9578475c, 0xfd35cf4e, 0xe23ff5b5, 0x25b16110, 0x6a417800, 0x6c40f3bc, 0x557de703, 0x48ccaa7c, 0x4f81a67e, 0x6962584e, 0x7f3ab628, 0x256819d8, 0x72b33f61, - 0x5081b104, 0x000021, 00000000 + 0x5081b104, 0x000021 } }, { @@ -53392,19 +53391,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x52e25945, 0xc44248a9, 0x4a56f3bb, 0x902b9a91, 0xd5188c38, 0xe705d602, 0xead7b11a, 0x966ea12, 0x6360999c, 0x31d0b28, 0xd2c8c263, 0xf132215b, 0x3f3de596, 0xac0fd98b, 0x91a787be, - 0xa887db55, 0x0000a7, 00000000 + 0xa887db55, 0x0000a7 }, { 0x26847057, 0x8e3da0bc, 0x1a1c88b2, 0x58f2676d, 0xe4dec0b6, 0x813a938f, 0x980098a, 0x9cf7741, 0xd401835b, 0x30192337, 0xec16e19e, 0xc738f0a8, 0xcbe6e83c, 0x7de22bbb, 0x7b7d2458, - 0x30efbd8f, 0x0001dc, 00000000 + 0x30efbd8f, 0x0001dc }, { 0x753ac15c, 0xe821dbde, 0x3753bef7, 0x4c93d6d2, 0x8fa3419d, 0xbe931380, 0xe77a758d, 0x4532f448, 0x3454844e, 0xd39e279d, 0x27527145, 0xfd5b775e, 0x71f71791, 0x92b1b224, 0xef4ca0be, - 0x156825ee, 0x000178, 00000000 + 0x156825ee, 0x000178 } }, { @@ -53412,19 +53411,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd5d4b4b6, 0xc59d9e2c, 0x84aa862f, 0x48a5d31b, 0x67c3f55b, 0xde46c670, 0xd392cb50, 0x4af9ada8, 0xc244aad5, 0x5a8e9ed, 0x6f0317b0, 0x394f962e, 0x964e642, 0xf016467, 0x8ea98c1a, - 0xdb562fef, 0x00008b, 00000000 + 0xdb562fef, 0x00008b }, { 0xad64785c, 0x13ab5e3e, 0xc9f6ebed, 0x9415c223, 0x44ae16e, 0x5e3f0161, 0xeb6bb73a, 0xd62eb282, 0xc943ca37, 0xc0da8f2c, 0xec41fb98, 0x8d392c69, 0x46a9b0c2, 0x3c1ea97b, 0x997521c3, - 0x761155f6, 0x00009e, 00000000 + 0x761155f6, 0x00009e }, { 0x24c40c8c, 0x5d29cf98, 0x9f4202cf, 0x6ade1e5d, 0xfdef8c67, 0x22010012, 0x5a0c1b4c, 0xea907ed1, 0xaf64a22d, 0xed737dd4, 0xcedb7512, 0x83dad82f, 0x4ef530ae, 0xba68ccc3, 0x4603f03b, - 0x2ae75d90, 0x0001e3, 00000000 + 0x2ae75d90, 0x0001e3 } }, { @@ -53432,19 +53431,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x250b1f1d, 0x15fc9262, 0x361104a4, 0x9f5bbd92, 0x2eaeb8c5, 0x52a51fcd, 0x18db1bd1, 0x80e843f0, 0x5a5034a9, 0xbbd040ba, 0xb62ec492, 0xf4f6259, 0x173dd4ea, 0x84a1369f, 0xe7b43537, - 0x3001bede, 0x000171, 00000000 + 0x3001bede, 0x000171 }, { 0x7be40023, 0xb21b7457, 0x4597190d, 0x2b01766c, 0x2be813e0, 0x247f5a92, 0x75ac0fc, 0x1f2bba15, 0xe8e90b37, 0x4a6c84ae, 0xe4b3d7da, 0x7c9957be, 0xf38b7d23, 0xdeb73148, 0x5b1ed2fd, - 0x382c913, 0x000172, 00000000 + 0x382c913, 0x000172 }, { 0xa7d86c6, 0x50d16616, 0x9014e186, 0x8a5f6dcf, 0x27be3ed6, 0xa81583c4, 0x319bad73, 0xe0069514, 0x1542116c, 0xa42afcf7, 0x91812789, 0x71f2bba7, 0x3bcd0af5, 0xbb39175, 0x5bcf7ccb, - 0xf6c1ab6, 0x0000df, 00000000 + 0xf6c1ab6, 0x0000df } }, { @@ -53452,19 +53451,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x160e2ce2, 0xb6734245, 0xb2ad25df, 0xe2af653d, 0x16254e01, 0xb123cf30, 0xbe75a7c, 0x78d39bd4, 0x870dd88b, 0x190636d8, 0x1e72ab6d, 0x8c9dd6c8, 0x29558ab7, 0xb31831ba, 0xce01f47e, - 0x767a7e00, 0x0001dd, 00000000 + 0x767a7e00, 0x0001dd }, { 0x1d22e280, 0xab0bba51, 0x3121f31c, 0x8066046, 0xa0ef5375, 0xad3ed357, 0xc266dc0e, 0xcc243e22, 0x2113c308, 0xe5c4ad41, 0x4c77d041, 0x3e112bf1, 0x8d78ba76, 0xf078a7a1, 0xe77b0d05, - 0xb9ca4b36, 0x00017c, 00000000 + 0xb9ca4b36, 0x00017c }, { 0x5372056a, 0x931d92da, 0xfe7b211c, 0x47202ec1, 0x3fd1dc77, 0xf59590e1, 0x979342c4, 0x3780d429, 0xbb5d7718, 0xb9e47816, 0xa4356e07, 0x3996f17b, 0xb2db035b, 0xdce226e9, 0xa8d58ef5, - 0x5e925920, 0x0000ef, 00000000 + 0x5e925920, 0x0000ef } }, { @@ -53472,19 +53471,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d8fc943, 0x9290c925, 0xaf5398d4, 0x8a02f573, 0x57083d9c, 0xe722e1d7, 0xda4629d6, 0x6e18f0d0, 0x33265f9b, 0xa6753c9c, 0xa23a12bf, 0x4178fa43, 0xad47499a, 0x94d91a01, 0x542d6977, - 0x83989ca7, 0x0001fd, 00000000 + 0x83989ca7, 0x0001fd }, { 0x63d70367, 0xd73282fe, 0xbc19e206, 0xcebcd6c3, 0xedc982f2, 0x97721d89, 0x8444d2f4, 0x4148f918, 0x4d4f1ef5, 0xaeee0721, 0xd8e6624b, 0x481bd2ea, 0x9ef1e700, 0xbb1022b9, 0x2a2bab19, - 0x194d4a0a, 0x000010, 00000000 + 0x194d4a0a, 0x000010 }, { 0xa7351c98, 0xad4743e3, 0x7ce51326, 0x3e9f46ce, 0x21f78e6f, 0x1f1cce73, 0x4696e438, 0x1dd7b897, 0x5f2b1895, 0xf371876c, 0x1e471217, 0x962892f8, 0xc898f3cf, 0xc8bbf7f3, 0xab8e7ecf, - 0x5d59203a, 0x0000ea, 00000000 + 0x5d59203a, 0x0000ea } }, { @@ -53492,19 +53491,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x52b29280, 0x484f6be4, 0xab2ff8ef, 0xe6d31748, 0x6f70dea, 0x16381e1e, 0xd67fc838, 0x248ba7d8, 0x6151a445, 0x180fd5e4, 0xf517c445, 0xe03bb634, 0x91fbcb63, 0x23612fe4, 0x8d99c242, - 0xaa9d44d2, 0x000156, 00000000 + 0xaa9d44d2, 0x000156 }, { 0x932e3491, 0x9ac75cde, 0x6b308106, 0x84cff362, 0x5ba6f30e, 0x8341107f, 0x89779972, 0xca196a46, 0x9160a0ef, 0x4db295e6, 0x1e3197f2, 0x3c61d9c5, 0xb1afaec6, 0x426c8dca, 0x65a29f5b, - 0xc74d636b, 0x0000e5, 00000000 + 0xc74d636b, 0x0000e5 }, { 0xef623229, 0x1d265aa0, 0x2eb9e8b4, 0xcaa51f88, 0x139cdcab, 0x3beef61d, 0xf920baa5, 0xb2d288d4, 0xbc075b2, 0x69813202, 0x4b19115f, 0x38de15fb, 0x228b6dba, 0x42889f8c, 0xadce7b2, - 0x3f5eca57, 0x00004f, 00000000 + 0x3f5eca57, 0x00004f } }, { @@ -53512,19 +53511,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd5ccf9cf, 0xb287ed11, 0xcf2635ed, 0x29f0311, 0xdc181e43, 0x76355d70, 0xf0a9daac, 0xc635cb82, 0xfcf2dc93, 0x2b952fe3, 0x4ac1880b, 0xeeb38f5b, 0x88dcd6db, 0x58c4260f, 0xc7780150, - 0xd647d70d, 0x00015c, 00000000 + 0xd647d70d, 0x00015c }, { 0x43150d3a, 0x8dc104ca, 0x25833e2b, 0x47e9277c, 0x50ff6f62, 0xf23efca4, 0x2329f3f6, 0xea7d7fe, 0x468277b8, 0x8c50c3df, 0xba188a82, 0xc94b1937, 0x5c08d9d, 0xdec59e97, 0x279e70a5, - 0x8597ceec, 0x00017a, 00000000 + 0x8597ceec, 0x00017a }, { 0x20f43f86, 0xe69b1889, 0x53332971, 0xa78f7e5e, 0x5d495ac3, 0xbc81b32, 0xda376637, 0x9b6e957d, 0x4916fc8c, 0x49179e21, 0x8eebce09, 0xd9d64428, 0x5238ef79, 0xa0b238cc, 0xf86817b1, - 0xc2b7cc2c, 0x00019e, 00000000 + 0xc2b7cc2c, 0x00019e } }, { @@ -53532,19 +53531,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb48abeb7, 0xd006feb7, 0xb601a49c, 0xe408a535, 0x7328a8b8, 0xd685f916, 0x93ca59e5, 0x459ca6a5, 0x9f5d7f5a, 0xf4f5b50d, 0x10ada4c7, 0x2efcdebb, 0x73bc73b, 0xf87365ff, 0x9a528425, - 0xccfc1718, 0x000022, 00000000 + 0xccfc1718, 0x000022 }, { 0x265ab334, 0xb306a233, 0x4576fcd0, 0x26a7225, 0xbde3c2dd, 0x102855dd, 0xc19be26c, 0x919d0b4c, 0x6b029962, 0x4c905d2d, 0x4917d3dc, 0xdeac6597, 0x160e4fc, 0xaecffbcc, 0xcfc15bac, - 0x7a88a95f, 0x000117, 00000000 + 0x7a88a95f, 0x000117 }, { 0xd8560fbb, 0xbe985ca8, 0x9f9ee114, 0xb0c53634, 0xff43c30d, 0x1677868b, 0x79cf9c1d, 0x655e6db5, 0x7c7fdb6a, 0x500fd5b, 0x15aabffd, 0x1ec3c547, 0xd19f6196, 0x4cc6ef1d, 0x35d3d4d7, - 0xf1d2e7da, 0x00007b, 00000000 + 0xf1d2e7da, 0x00007b } }, { @@ -53552,19 +53551,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe901a275, 0x84a72cb, 0x344b7c50, 0x4223eae3, 0x6a0b112e, 0xa971e7ee, 0x73a6460b, 0x2b9e393f, 0xd43c3653, 0x7d6eeb61, 0x230a1fce, 0x8699c3dd, 0xdbf0bac5, 0x26dd2eda, 0xa4e9eee5, - 0x11ffe0e6, 0x0000ad, 00000000 + 0x11ffe0e6, 0x0000ad }, { 0x4410ffb1, 0x41a4d279, 0xc5fc37b, 0xe25a68c1, 0x400c0bc6, 0xa317fc5a, 0xacfdd9d6, 0x5358c456, 0x493d6381, 0x31454b24, 0x6d7e105a, 0x6ea25663, 0xbf7eb734, 0x7383bc07, 0x79715582, - 0x42f7afd7, 0x0001c6, 00000000 + 0x42f7afd7, 0x0001c6 }, { 0xa68e1a31, 0xdfa249e0, 0x82fe9e8c, 0xa522becf, 0xfd151c71, 0xb9c85519, 0x16235ad6, 0x20e31d27, 0xed00ead1, 0x5076a0e0, 0x578a89fc, 0x267f0c93, 0xa0f18829, 0x8840d810, 0x5f34585b, - 0xf13f806e, 0x0001a9, 00000000 + 0xf13f806e, 0x0001a9 } }, { @@ -53572,19 +53571,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc18da77c, 0x59cad4e8, 0xf5586767, 0xaaedd034, 0x317e95f5, 0xa3b3d072, 0x70125141, 0xceb2528e, 0xed160fe0, 0x673545f0, 0xbe87d9a9, 0xcda65a55, 0xa8b71b42, 0xbbad95c4, 0x2169b8f7, - 0x173621a2, 0x00018c, 00000000 + 0x173621a2, 0x00018c }, { 0x7a54bd0c, 0x7b2a9fa, 0x17fa3241, 0xf34903d0, 0x2c36ddd1, 0xb1f12f28, 0x50124072, 0xe436a576, 0x57c5a485, 0x526900e7, 0xe923ff78, 0xfc96804e, 0x8898c65, 0x6d839cc7, 0x884f2960, - 0x3f095a70, 0x0001aa, 00000000 + 0x3f095a70, 0x0001aa }, { 0xf8990a1f, 0x1ece7fe8, 0xbb2599e6, 0x671490ee, 0xe3735dad, 0x37423125, 0xf6a3d423, 0x356efc6d, 0xe00ab704, 0x8db31b96, 0x9f01fb9c, 0x45eab0f, 0x35903177, 0x134b51fd, 0xcb236e36, - 0xdbdadf9a, 0x000001, 00000000 + 0xdbdadf9a, 0x000001 } }, { @@ -53592,19 +53591,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbcf35904, 0xc49f33, 0x3882777, 0x8d8f40c5, 0xe1661c2a, 0xd5c95012, 0x569d1d71, 0x351434e9, 0x35d66fdc, 0x7de77d75, 0x7e4b5881, 0x2f408b8d, 0x12920b99, 0xea3fb15c, 0x1d984c1, - 0xb1837d30, 0x000111, 00000000 + 0xb1837d30, 0x000111 }, { 0xc6adb6c2, 0x97620ebd, 0xc85063f1, 0x85c04502, 0x5c7357fd, 0xf430b247, 0x936a6b12, 0x740fdb33, 0x9e96f3cd, 0xc0c53e67, 0xccbc4919, 0x841dba3e, 0x74bec738, 0xe12bf91e, 0x77444587, - 0x661d0fe4, 0x0001d1, 00000000 + 0x661d0fe4, 0x0001d1 }, { 0xaaea728d, 0x6d4a0bc0, 0x5d15c6b9, 0x98dc434e, 0x31fbf413, 0x6daea51e, 0xa7c09b0b, 0xb6c6ffe6, 0x26e01866, 0xa7af4ff, 0xdcb3e121, 0xb68b5f39, 0xefff5f64, 0x3b2778ac, 0xc4f4f163, - 0xd07b370f, 0x0000ee, 00000000 + 0xd07b370f, 0x0000ee } }, { @@ -53612,19 +53611,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x14520202, 0xbd76bb7e, 0x2cfdf672, 0xb9b970a6, 0x68a62564, 0x7b8a8160, 0x3a9b956, 0x756a7df8, 0xf46ada75, 0xd74772a9, 0x6a7bbc5d, 0xd5e0ce1c, 0x682e6e4f, 0x57782605, 0x13fd3867, - 0xc711cd2d, 0x000026, 00000000 + 0xc711cd2d, 0x000026 }, { 0x60b6a81b, 0x7f711175, 0x681c4887, 0xc5557f4e, 0x82711fba, 0x9df9dfd6, 0x25e89fa3, 0xc7089170, 0xeeb5e254, 0x8b75e824, 0xf415b484, 0x47f2596b, 0xfe397c54, 0x711ef584, 0xc67f4f5b, - 0xa286247, 0x000119, 00000000 + 0xa286247, 0x000119 }, { 0x46a964ad, 0x35df11b6, 0x7aa4d511, 0x8cbb6a7a, 0xa0811a1d, 0xa728bb0, 0xc956b503, 0xbfbb4d58, 0x82d0a98f, 0x11f6ed0f, 0x35cc3e8b, 0x97677a81, 0x6d402fcb, 0xf0d5ab50, 0x689658ba, - 0x330e089b, 0x00007f, 00000000 + 0x330e089b, 0x00007f } } }, @@ -53634,19 +53633,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x449ca822, 0xbc13071e, 0x4507cdf5, 0xa11f987c, 0xe94fe8a5, 0x8f7618f1, 0x5240148, 0x736f50b5, 0x3bd620d2, 0xbf1c323a, 0xb8d96719, 0x9238f33a, 0xc34a9af0, 0xecc4e6bb, 0xf4946156, - 0x5cdc96, 0x000004, 00000000 + 0x5cdc96, 0x000004 }, { 0x8a29c9a7, 0x8c21fa97, 0xc7283443, 0xc3ae98e6, 0x24d2d48f, 0x3b57902, 0x347e4773, 0x30d75457, 0x4255a90, 0xe714f03b, 0xc3409bb6, 0xfbc0f8fc, 0x1f2e7d0c, 0x8e5b5a1f, 0xf5267753, - 0x61384743, 0x0000d6, 00000000 + 0x61384743, 0x0000d6 }, { 0x34b1afb2, 0x11e5209, 0xa3c3579a, 0x35c3fbe4, 0xc0a06999, 0xe27b63e8, 0x38b87242, 0xef6ab054, 0x5f58d6a, 0x49decf6b, 0x480aa1fc, 0x5a6380b6, 0x115c2a5e, 0x7d8d0ed6, 0x54bc6857, - 0x1433058c, 0x000174, 00000000 + 0x1433058c, 0x000174 } }, { @@ -53654,19 +53653,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x79c040f0, 0x41e9b462, 0x792e4ad1, 0xb011c9f3, 0x45335854, 0x5b5eaec9, 0xfe3485a2, 0xcb29da79, 0xe18f8c1c, 0x58962290, 0x9e8e717, 0x39dba430, 0x6673440f, 0xf9dd0911, 0x1acfe547, - 0x82040637, 0x0001e1, 00000000 + 0x82040637, 0x0001e1 }, { 0xb72724ff, 0xdf637a96, 0x1c4f6568, 0x164b2643, 0x1f5da199, 0x4f7ca7f2, 0xb017b2f8, 0x30b5c1a6, 0xb3141945, 0x2a8c0ec8, 0x792ec2d8, 0x3f6541e8, 0x52ee6abd, 0xeed5a1e8, 0xe21ef33c, - 0x1129f120, 0x00014d, 00000000 + 0x1129f120, 0x00014d }, { 0xfc0d52c8, 0xed3f71a8, 0x28903c2a, 0x3c45f501, 0xed87fa73, 0x6c6acaf, 0xeec0916c, 0xc38d2297, 0xa0057fb8, 0xc95b923b, 0x6b790059, 0xe351776b, 0xf0151153, 0x16db2fba, 0x9a6a4312, - 0xe5297fa6, 0x0001e0, 00000000 + 0xe5297fa6, 0x0001e0 } }, { @@ -53674,19 +53673,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2e7e6d72, 0x81df4266, 0x2045cf90, 0x13a0c400, 0x46facda3, 0x166c7f7c, 0x48d974a8, 0x5e4677e8, 0x69fd4025, 0x4c715d98, 0xa02e711, 0x101f3f4a, 0x681d36b7, 0x1c28dc37, 0x64256601, - 0xf97f8788, 0x0000c7, 00000000 + 0xf97f8788, 0x0000c7 }, { 0xf6dbbb4b, 0x2f4c9116, 0x4495f29e, 0xa0988d1, 0xeb1e283c, 0x6f5d915a, 0x103c3c60, 0xb3d160b4, 0xa44c28ed, 0x81706bbc, 0x6b9a2c81, 0x8323c7c0, 0xf761bf0c, 0x3fe20e59, 0x400a0117, - 0x9ee299db, 0x000046, 00000000 + 0x9ee299db, 0x000046 }, { 0x4e00771, 0x2c5f20d4, 0xce092974, 0x736fe8dd, 0x5f3c593a, 0xe7f69ae, 0x93f7d72e, 0x79d5acf9, 0x76dd91f3, 0x4826a9dd, 0xdada06fc, 0x8b23e521, 0x7740acb3, 0x2d9d8553, 0x9e9fc600, - 0x776be77, 0x000171, 00000000 + 0x776be77, 0x000171 } }, { @@ -53694,19 +53693,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2868c4dd, 0xee393484, 0x20d06f1a, 0xbf564c58, 0x3d8cf8fb, 0xd420786, 0x282ba32f, 0x752b1d88, 0x74c67e91, 0xc0e4e719, 0x3390e67, 0x5ae33fd5, 0x2b05fdc1, 0xca7386e3, 0xba0591e9, - 0x3642f309, 0x00000a, 00000000 + 0x3642f309, 0x00000a }, { 0xe99551d3, 0xe189c28b, 0xb1a1755a, 0xb59e3a85, 0x796175eb, 0xfee7ffa5, 0xdc42c02, 0xb5fdb194, 0x5a186a94, 0xdd0f8d3a, 0x1167bc11, 0xa7e7a27f, 0xed0a3f11, 0x6fe922d7, 0x36070de2, - 0x3653d85a, 0x0001fb, 00000000 + 0x3653d85a, 0x0001fb }, { 0x96c42301, 0x4a229aca, 0x64f4c37c, 0x66eb9f0, 0x32252bca, 0xb0bd8bf2, 0x1d3171de, 0x273438f, 0xe0b722e6, 0x6fb34dfd, 0x9dcff8be, 0x8d5685f3, 0x7dc49dd, 0xe1a102d1, 0x84764946, - 0xaafde041, 0x0000e5, 00000000 + 0xaafde041, 0x0000e5 } }, { @@ -53714,19 +53713,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc3ccdb7d, 0xeb7274bc, 0xff72aead, 0xf667c1e1, 0x41d6e4fe, 0xab1af807, 0x375fb7d2, 0xe7c3b0b8, 0xe51cd9a6, 0x4c5fc0a5, 0x94e00c8b, 0x6ca4ee58, 0x9d098f29, 0xd674400f, 0x80016115, - 0x53f0e0ce, 0x000152, 00000000 + 0x53f0e0ce, 0x000152 }, { 0xf363adf9, 0xa01ccd72, 0xbe628d5a, 0xde8b900d, 0x9f5e0f84, 0x105696ba, 0x1a2729bf, 0xb0a51de0, 0xf780d2d8, 0xa846c591, 0xcfe1a80e, 0xcb6034af, 0x9cef45fb, 0x93ba40c9, 0xeae0de92, - 0x33edddd9, 0x0001bb, 00000000 + 0x33edddd9, 0x0001bb }, { 0x483a9e3b, 0xd63cac4, 0xd14144b9, 0x6e0976e1, 0x3d97f1e6, 0xf5061fca, 0xce077a49, 0x94c3c61a, 0x8c7bf9c8, 0x40befcac, 0xfd351bfd, 0x1c8538b6, 0x7d41eb44, 0x7e9b690b, 0x928ee7e2, - 0xb3954641, 0x0000e8, 00000000 + 0xb3954641, 0x0000e8 } }, { @@ -53734,19 +53733,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9834186c, 0x86490dd4, 0x6e638eec, 0x34ebbcea, 0x2d1f2003, 0x424e76fd, 0xf60a1624, 0x49bcf975, 0xa562811e, 0xe9a1221, 0xa988e6d7, 0xc4aa6661, 0x5ac8c541, 0xdd8104d4, 0xb973828, - 0x96b84ebf, 0x000147, 00000000 + 0x96b84ebf, 0x000147 }, { 0x88739466, 0xe8be3153, 0xacbc1af, 0x1d05b6b6, 0xf23f8c7a, 0xa1911a06, 0x4f813622, 0x5cfa8c2f, 0x3ca49106, 0xd9be3678, 0x11dd0246, 0xa0d2834f, 0xd4340b3a, 0xca84dcaf, 0x1a30702e, - 0xedfe4f7b, 0x0000a9, 00000000 + 0xedfe4f7b, 0x0000a9 }, { 0x4aec413e, 0xb04e569c, 0x77013f79, 0x9cf8fad, 0x6ef9bf3b, 0x7d75c39b, 0x41744746, 0x1e1fd11f, 0x92bae951, 0x28760ae0, 0x2e7b3571, 0x48f54c9e, 0x15b9ffa, 0x8ff3625c, 0xb473dbbb, - 0xc960439c, 0x0001ad, 00000000 + 0xc960439c, 0x0001ad } }, { @@ -53754,19 +53753,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb5211beb, 0x21f54d61, 0x30516e71, 0xcabd4740, 0x7e397d6a, 0xdaf0b999, 0xefbe653, 0x89d7c069, 0xabe7e915, 0x1455aa09, 0x9a4ffad, 0xbd85199e, 0x4b65ac8d, 0xf4f0b4bb, 0xaeb18ad5, - 0x4773d20, 0x0001bc, 00000000 + 0x4773d20, 0x0001bc }, { 0x7d40dfd9, 0xbcfca435, 0xa54f3827, 0x9ec72d89, 0x1f081045, 0x42d64fc, 0xb35fa56b, 0x4e7b389a, 0x561ac606, 0xff65e37b, 0x58bcb1f0, 0x30ceedf2, 0x1d677514, 0xcba410a6, 0x48ce23cd, - 0xbed48e5c, 0x0000a3, 00000000 + 0xbed48e5c, 0x0000a3 }, { 0xf823cc54, 0x782de96c, 0xf4664aa5, 0x28df5bf7, 0x228c86d8, 0x2f52900d, 0xb565cfdc, 0xda2f22ae, 0x48e744c8, 0x22b4e906, 0x4ba43038, 0x37f5f0ef, 0x71e4291a, 0x11c88603, 0x12938a45, - 0x40a4ebd5, 0x000058, 00000000 + 0x40a4ebd5, 0x000058 } }, { @@ -53774,19 +53773,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbcf35a33, 0x7ecd2279, 0x4503a1d0, 0xbc4c60a6, 0x669688a4, 0xc4e3e5d0, 0xb9c44260, 0xa7d3f61c, 0x5f260649, 0xcbe8bb68, 0xa0772b25, 0xa8898103, 0xefa205cb, 0x9b19b4e7, 0x8e5bcd16, - 0xc3ba5b7e, 0x00002e, 00000000 + 0xc3ba5b7e, 0x00002e }, { 0xb13d00fd, 0xb4bbbac9, 0x85b28c2b, 0x2d9d55fd, 0x8ef0146b, 0x31e18e2a, 0xbcdf59a6, 0x90f740f3, 0xa8f809d2, 0xb565a1f, 0x34530c88, 0xd94e18a9, 0x5858153f, 0xe17bc97d, 0xab6b2986, - 0xa40f3515, 0x0000df, 00000000 + 0xa40f3515, 0x0000df }, { 0x5dc79e1b, 0x266d598, 0xd149a9d8, 0x44d22fb2, 0x64322408, 0x2ec22ae2, 0xf7f0923, 0x94f42202, 0xef274be9, 0xc9382d58, 0x2f32a328, 0xf1413470, 0xabbfb6f6, 0x74d20166, 0x76fa2cc4, - 0x6a07b4e9, 0x0001dd, 00000000 + 0x6a07b4e9, 0x0001dd } }, { @@ -53794,19 +53793,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf74b935, 0x5a499a1b, 0x143daffb, 0x771f8d83, 0xb83e0116, 0x8cc39a7b, 0xa481e238, 0x2df1b478, 0xd3af3488, 0xd641385a, 0x56f43793, 0x1fb1eb35, 0x363b9d4, 0xd6a23b0c, 0x4a743c55, - 0xd6590342, 0x0000f8, 00000000 + 0xd6590342, 0x0000f8 }, { 0x78c61ad, 0x439e0c20, 0xfba7f31a, 0xc4c404d2, 0xbd90e1de, 0xdab40f02, 0x1f5c6b1a, 0xacec4855, 0xa5418512, 0x39a4106c, 0x61e5b102, 0x60d3482c, 0xf64bade8, 0x99ea6eff, 0xdf77446f, - 0xd945d40f, 0x000123, 00000000 + 0xd945d40f, 0x000123 }, { 0x69369197, 0x449e04de, 0xcd2254e4, 0xae5f62da, 0xf47b8fc0, 0x8fc4059, 0xc9c44d74, 0xb2ce79d0, 0xbf393776, 0xbedb7bdb, 0x5a2d4385, 0xacefa6a1, 0xf5cd46c2, 0x373502e, 0xc02a9a8a, - 0x4a823f7e, 0x0000bf, 00000000 + 0x4a823f7e, 0x0000bf } }, { @@ -53814,19 +53813,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49be3c3, 0x6e7b7bb8, 0x4640a401, 0x2dab740d, 0xef4cf9e4, 0xbb8f58a7, 0x11392804, 0x61b215b6, 0x7f691722, 0xb07b70b1, 0xbc674e27, 0x9988f490, 0xef236463, 0x86413b87, 0x14aa898f, - 0x5e46dd86, 0x0000c6, 00000000 + 0x5e46dd86, 0x0000c6 }, { 0x569eedf5, 0xaa645dc4, 0xa2e607, 0xdbe1d943, 0xa548b46e, 0x48528d00, 0x7fb2b763, 0x31221cfd, 0x8f462e2e, 0x1bf9de92, 0x8e60d409, 0xa54d44aa, 0xbbbfbf52, 0xd77af883, 0x73b92957, - 0xb6206614, 0x0000a9, 00000000 + 0xb6206614, 0x0000a9 }, { 0x3f2ed66a, 0xad1fd820, 0x2618b33f, 0xfe3540b1, 0xd4e1eb1a, 0x89c1f16b, 0x718b384c, 0x9aa51eab, 0x4e002d04, 0x4f3bf9b8, 0xa31d2f8a, 0x55750628, 0xeb8a3e0a, 0xd330a000, 0x41266736, - 0xc7cdd3e8, 0x00013f, 00000000 + 0xc7cdd3e8, 0x00013f } }, { @@ -53834,19 +53833,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa7f794fb, 0xee03f2c2, 0xf9c28d74, 0x76ba9066, 0x45c25d94, 0x9e22e2d4, 0xdfe79fc, 0x1d660a16, 0x5d053b10, 0x65023805, 0xc0a87f7, 0xffbdeb34, 0xa7ac1e06, 0x2bfc4d3c, 0xa03ca1b3, - 0x91796b92, 0x0000cc, 00000000 + 0x91796b92, 0x0000cc }, { 0xa5ab9ca0, 0xf361108b, 0xe790d53e, 0x426caadf, 0x23ee63a9, 0xc9da3a1, 0x7e4651df, 0x7fbaabd2, 0xbad50fe2, 0x245fd419, 0x7aa9587, 0xca006810, 0xcf34d3d0, 0x7e2940fd, 0x2013da8e, - 0x1f7fcfd5, 0x00015d, 00000000 + 0x1f7fcfd5, 0x00015d }, { 0xd2999acc, 0xa67d6ff4, 0xe12bd2cf, 0xaa236d62, 0x15102a75, 0xca954fdc, 0xae7b8396, 0xe7178a7, 0xab39f285, 0x4d477b50, 0x67c621b1, 0xa8be03a3, 0x8d7b8407, 0xa2ea1a1c, 0x9883703d, - 0xcb012ced, 0x000039, 00000000 + 0xcb012ced, 0x000039 } }, { @@ -53854,19 +53853,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21680ff8, 0x681994ed, 0x7ca569f5, 0x9e107c5b, 0x67e369e9, 0xb3670655, 0xa242542d, 0x242ec959, 0x1837cbe2, 0xf80c2076, 0xca8c7c6a, 0xb1931189, 0xa12d8233, 0xe845e8b5, 0xfdf338a4, - 0xf81dd1d9, 0x00006e, 00000000 + 0xf81dd1d9, 0x00006e }, { 0x8e291105, 0x6958673, 0xf1d06872, 0x72c815f4, 0x8e4857d0, 0xaf817472, 0x2c3980bf, 0x45d974ea, 0x21fbd914, 0x7820c0a, 0x2f59ddeb, 0x6b259d33, 0xb10d0de0, 0xae13a0b7, 0x2c309d2c, - 0x8bb9cc5a, 0x0001a3, 00000000 + 0x8bb9cc5a, 0x0001a3 }, { 0x36e40b82, 0xc53d404f, 0xb1dec101, 0x4ad65a9f, 0x8abb1c96, 0x3e03c421, 0xf7e264c9, 0x6d39f46d, 0x4d271754, 0x8b2b87b9, 0x3affa63, 0x36ef437d, 0xb57bf849, 0xc4a58620, 0x1b2a9fd7, - 0x52a03f87, 0x000046, 00000000 + 0x52a03f87, 0x000046 } }, { @@ -53874,19 +53873,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc51edb85, 0x7ebe8140, 0x7035cc2, 0x92af1994, 0xd9679317, 0xf7e8aa6f, 0x32818a40, 0x4f50a174, 0x58e2bdc8, 0xac885d42, 0xaf99b33, 0x91b0f147, 0xe18d98c4, 0x693b140d, 0xa55f047c, - 0x87ac04b8, 0x0000bb, 00000000 + 0x87ac04b8, 0x0000bb }, { 0x3ecaefa4, 0x56cacf6f, 0x2b2acf90, 0xf7c3324a, 0x7df5f193, 0x637f59d9, 0x3d7251fc, 0x72330f14, 0x53706dd4, 0xcabea4b, 0xdee1c9df, 0x8adc3523, 0x2c74be6f, 0x6c254502, 0xe5e5ddbe, - 0xddbcca9c, 0x000003, 00000000 + 0xddbcca9c, 0x000003 }, { 0x8378b1ef, 0x280a8205, 0x35effbbb, 0x67c42726, 0xd748e5e1, 0xa851c52e, 0xee0bb20f, 0xbe9fcedf, 0x9de6d79c, 0x43ab1bc9, 0x2cffb9ee, 0x6952bb6b, 0x80bd1f94, 0x55eba6fa, 0x50bcfa2e, - 0xf7e211d5, 0x000170, 00000000 + 0xf7e211d5, 0x000170 } }, { @@ -53894,19 +53893,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe92ef281, 0xa57e6f3c, 0xfae7c05c, 0x257f66c4, 0x58db1c8b, 0x9cf766b1, 0xb2f558e8, 0x3b1ef334, 0x764f6d61, 0xab63bf76, 0xbb980346, 0xa84a0e99, 0x458107b4, 0x2e334e69, 0xbe273b0e, - 0x8324591e, 0x000003, 00000000 + 0x8324591e, 0x000003 }, { 0x1847859e, 0x4024cd95, 0x199f89ed, 0x778c846, 0xd5fc2e60, 0x1a7c52fa, 0x3133bb21, 0x1d1aabd2, 0x5f09d09e, 0xeef44f54, 0xde1e458, 0x298beab5, 0x23f7f191, 0x7a50919e, 0x8e510eca, - 0x32d604a, 0x00010b, 00000000 + 0x32d604a, 0x00010b }, { 0xb476b98f, 0x1e1f640c, 0x6386ae77, 0x9d1d20db, 0xb4e9e24b, 0xc07ec984, 0x1446a031, 0x79cdfcc2, 0x43591143, 0x25264077, 0x17cf0773, 0x41511f6e, 0x89aba3e3, 0x6ac5b203, 0x5d8ce900, - 0x6d4d579b, 0x00005a, 00000000 + 0x6d4d579b, 0x00005a } }, { @@ -53914,19 +53913,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfb813fc4, 0xfa0cf8f4, 0xfd24a19f, 0x6623000, 0xe6bbc1bf, 0x99f559a0, 0x986b41ca, 0xc2b38757, 0xd0c8e722, 0xe457c5dc, 0xf250c5b3, 0xeb94ae0b, 0xad33a838, 0x70d725ca, 0x4ac0270b, - 0x38d9336a, 0x0001c0, 00000000 + 0x38d9336a, 0x0001c0 }, { 0x3d08f0ee, 0x115c3d25, 0x1d451373, 0xedb5ade8, 0x8bca969e, 0x2db982d5, 0xa7d905b, 0xfb49875a, 0x8434b02e, 0x93268181, 0x5f11a19a, 0x37ba8496, 0xaaeb7c64, 0xd52285ce, 0xcf6aecad, - 0xc76aa001, 0x0000cc, 00000000 + 0xc76aa001, 0x0000cc }, { 0xf00b4a5d, 0xcda814cf, 0x51e6a22e, 0xe366b068, 0x770e4809, 0xa3bb394b, 0x1365840b, 0x36324c18, 0x40b99514, 0x4b76f3ab, 0xcd868f65, 0x58125217, 0xf75344bc, 0x23bab256, 0xb7bb158, - 0x754e7e92, 0x0000da, 00000000 + 0x754e7e92, 0x0000da } } }, @@ -53936,19 +53935,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfbd68440, 0x49e8cddf, 0x4bc232e6, 0x5c24491c, 0xabd7020b, 0xe8063eed, 0xb0ffaf4c, 0x323b15c8, 0x4f15b740, 0x75d03761, 0x48728d, 0x86340825, 0x72be43c, 0xc2cb30be, 0xdb5945e3, - 0x5e5e1977, 0x000078, 00000000 + 0x5e5e1977, 0x000078 }, { 0x7a68644f, 0xb68a8db4, 0xf863c525, 0x1ddac08d, 0x497cc0a7, 0x16a8265c, 0x28f7d232, 0x509d17c0, 0xe9144fdc, 0xec46bfa3, 0x79afce48, 0xedbbc1d2, 0xe03da226, 0x5d482271, 0x461c66ff, - 0x133b1e3f, 0x00017c, 00000000 + 0x133b1e3f, 0x00017c }, { 0x26dc1b51, 0x370950d6, 0xe6a7b663, 0x68af26d5, 0x8335699c, 0xc8c39265, 0xa0b63d03, 0x927849fe, 0x72e28a3f, 0x312a1967, 0x34f8bbe5, 0x1fe8f639, 0xa7d32ff0, 0xe15fccf1, 0x3ec61545, - 0x34a36dd6, 0x000142, 00000000 + 0x34a36dd6, 0x000142 } }, { @@ -53956,19 +53955,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcebf863b, 0xe354b943, 0x6b4bf771, 0xa53958de, 0xef3dfa57, 0xb71f7937, 0xa459f1fe, 0x74388dfc, 0xbc8a676a, 0xa05a6e32, 0xcc6ebe8d, 0xf8762b78, 0x2cc5a65d, 0x46d64862, 0xcb4ec609, - 0x507b50c6, 0x000141, 00000000 + 0x507b50c6, 0x000141 }, { 0xe40b20df, 0x735d3b19, 0x5ec00334, 0x9837a156, 0x8f6a5586, 0xf846dc26, 0x5634fa4b, 0x5c341b84, 0x7c321705, 0x45afc060, 0x4413f898, 0xbd4f84a1, 0x281d80ef, 0x75437e3f, 0xa2e4bdfd, - 0x2334cd8a, 0x00005d, 00000000 + 0x2334cd8a, 0x00005d }, { 0x7b15924a, 0xc6a6174, 0x66edacd9, 0x4e9b150e, 0xfb1dbd9c, 0x907b4588, 0x1bd0b249, 0xf9c02469, 0x9b83e0c9, 0xe68429f4, 0x8b5f14f7, 0x6a867a7e, 0xb073693f, 0x27550a32, 0x6770fdf2, - 0x10468693, 0x000043, 00000000 + 0x10468693, 0x000043 } }, { @@ -53976,19 +53975,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdcbf0cd6, 0xbb89ebf4, 0x18406455, 0x19af14f6, 0x22ef0124, 0x3ebc7fbf, 0x44e31572, 0xf411e98e, 0xa46ac736, 0xdcdf79de, 0x79bf467b, 0xf33c076e, 0xe9fefc1, 0x21fbb56a, 0xd28fb194, - 0x1ec6c493, 0x000082, 00000000 + 0x1ec6c493, 0x000082 }, { 0x9b90c01f, 0x9a67dc10, 0x7a733e9f, 0x9df854ea, 0x9118ce72, 0xa8544580, 0x7349bc6e, 0x6ed1e64d, 0x364b7dc1, 0xa3a9e1f4, 0xd406256c, 0xfb6e469f, 0x210698fa, 0x5be77aa9, 0x8c298a0d, - 0x446140a9, 0x000019, 00000000 + 0x446140a9, 0x000019 }, { 0xdc158ffd, 0x7fe41b92, 0x15c9e229, 0xf367d650, 0x3c1103c8, 0xbac0e005, 0x5dcc267f, 0x621ed953, 0xa069d62b, 0x572d6c2, 0x8359d3d0, 0x5565bafd, 0xc9292e73, 0x5f13955a, 0xe7d95a89, - 0xaef8378f, 0x0000f2, 00000000 + 0xaef8378f, 0x0000f2 } }, { @@ -53996,19 +53995,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbe1e4214, 0x4a733a89, 0x2556d81e, 0xbd267687, 0xa49343aa, 0xbb6f6afa, 0x843b6b6a, 0x9ef2141b, 0xa27c5bb3, 0xad476054, 0x8910031a, 0xd1804845, 0xc6bfcd73, 0x9ec08492, 0xcb4b492e, - 0xd551f4ee, 0x000095, 00000000 + 0xd551f4ee, 0x000095 }, { 0x1b5adede, 0x25f88672, 0x27be7725, 0x432a7dca, 0xe7cfb10c, 0xd16dbc21, 0xd8eccbd1, 0x991b87d4, 0xa7c648eb, 0x73dcfa76, 0x239321c9, 0xbd5deda1, 0xbf2347f0, 0x9e14d8fe, 0x62c19b35, - 0x33a4db11, 0x0000a8, 00000000 + 0x33a4db11, 0x0000a8 }, { 0x4ecdef4a, 0x5afa7e64, 0xe59ca7b9, 0x607ad808, 0x3a16aa1f, 0xf30bb776, 0xb9a4bc25, 0x418aaafa, 0x5af21655, 0x4c0c9e61, 0x8a029532, 0x2bcc388d, 0xe4ba5f8e, 0xb5cee56b, 0xdddd25a9, - 0xa11607f, 0x0001d8, 00000000 + 0xa11607f, 0x0001d8 } }, { @@ -54016,19 +54015,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a90d73e, 0x1d1e37bd, 0xcc77c142, 0x48caebcf, 0x900f2534, 0x6a127ced, 0xe6bfeddb, 0xa78d51ba, 0x1624e67f, 0x9580379e, 0x88106229, 0x4d0a0d0e, 0xac7fe17a, 0xa091052a, 0x54fcb577, - 0x8d1cc230, 0x00004a, 00000000 + 0x8d1cc230, 0x00004a }, { 0xace37d68, 0x2708a59d, 0xaf16c295, 0xece89db2, 0x33a32a0a, 0xc76a89a6, 0x4fc62dfd, 0x3f5669a6, 0x6fe4de94, 0xa1e5525f, 0xe4a723ea, 0x6ef87da8, 0x4cc6d2b4, 0x62bb70be, 0xd0eb9f61, - 0x20ca8867, 0x000091, 00000000 + 0x20ca8867, 0x000091 }, { 0xa4bf4913, 0x9e1cea38, 0xece42e38, 0x16a05e80, 0x3b87b3a7, 0x2580bbfe, 0x292a6466, 0x3dc3e5fb, 0x6c85790d, 0x2ab42a2f, 0x5e99ac8e, 0x811963f, 0x18dc91d4, 0x653f1894, 0xb6a59930, - 0xde10b471, 0x00006e, 00000000 + 0xde10b471, 0x00006e } }, { @@ -54036,19 +54035,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcc40f642, 0x6108a5b1, 0x9221ba99, 0x220b3c32, 0x187032bb, 0xf99f25e6, 0x5615a61f, 0x66675207, 0x3c279d40, 0x59cede6, 0xf3bb4a6e, 0x41bf3d09, 0x5acb057a, 0x8eb1c8bf, 0xe9a7a955, - 0xa4a817bb, 0x000001, 00000000 + 0xa4a817bb, 0x000001 }, { 0x6af1d55f, 0xb8aea64c, 0x9f44d48c, 0x3aefbd5b, 0x149d8a48, 0x8d8b09bd, 0xd44cd78d, 0xbdd7d466, 0xff35c58a, 0x35fb552b, 0x6bb088df, 0xc3b06fe1, 0xe9949f7d, 0x55282424, 0x9cfe5c0d, - 0x58a7b873, 0x00000c, 00000000 + 0x58a7b873, 0x00000c }, { 0x3c484e9e, 0x12f65872, 0x74f02ad9, 0x5afd8c3c, 0xe1b1ca86, 0xbedb1fe4, 0x3ee6564e, 0x647f6135, 0x64d63c6f, 0x67c75458, 0x4e151908, 0xf157539, 0x57d95074, 0xaf49ace, 0x9e7f669d, - 0x2ab3c297, 0x0000e9, 00000000 + 0x2ab3c297, 0x0000e9 } }, { @@ -54056,19 +54055,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe255300c, 0xe4a2d02f, 0xef136e99, 0x1349eddd, 0x2e3c5636, 0x4c91e8ef, 0x775195a1, 0x3b4fd994, 0x44e50a61, 0xab8a8377, 0xcb63098c, 0x140e245c, 0x929e9a09, 0x51c03b65, 0x9a47ff66, - 0x3f71bdd, 0x00009e, 00000000 + 0x3f71bdd, 0x00009e }, { 0x72b5832c, 0x31e3a0e5, 0xa8d26630, 0xea61fb63, 0xf0e9f302, 0x726b6771, 0xe9533949, 0xad1807ca, 0xc6b729c9, 0xd8913888, 0x515dcc2, 0xefaf9f33, 0x8b2c4f52, 0xbd19081f, 0x1f71a0aa, - 0xa1de875f, 0x0001ec, 00000000 + 0xa1de875f, 0x0001ec }, { 0xaeda5936, 0x82152d77, 0xadc1d67d, 0xdf19244b, 0x4a5bc19f, 0x7f484aa9, 0x2f1a3f68, 0x745b9b98, 0x1e587fe3, 0xfafe3ea2, 0x182e76b6, 0xee214a75, 0x24a38815, 0x58d40a43, 0xf494b311, - 0xd0a5eb71, 0x0001ac, 00000000 + 0xd0a5eb71, 0x0001ac } }, { @@ -54076,19 +54075,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe9cab256, 0xb5237816, 0x8d4d39ea, 0x9aa65bd6, 0x3c62cd93, 0x4b5b07a3, 0x3f8fc824, 0xeee66336, 0x8ac4c549, 0xc70ca804, 0x5473d7c9, 0x18d33ec1, 0x1cb655a2, 0x90ea4acb, 0xcae5c1dd, - 0x60951e17, 0x000137, 00000000 + 0x60951e17, 0x000137 }, { 0xbfdd47e7, 0x64b01a93, 0xf8e4a109, 0x988d8df, 0x2956c0cc, 0x1ca30660, 0x5c1d23e0, 0x8b3a4dae, 0xeb65ff82, 0x4a804fe9, 0x8f607f16, 0x8b663129, 0x30ad2e04, 0x8f29eda2, 0x47521be5, - 0x76c1d487, 0x0001a6, 00000000 + 0x76c1d487, 0x0001a6 }, { 0x12ad44db, 0x9b0b5320, 0xe01e1fd9, 0x507f34c, 0x2de87fbf, 0x43a5c01d, 0x9e1dfbf, 0x51c576e6, 0x47103be3, 0x740dcd89, 0xc43ad22d, 0xfd5c141a, 0xad06074a, 0x6960295f, 0xf20d73c6, - 0x4632206f, 0x0000c6, 00000000 + 0x4632206f, 0x0000c6 } }, { @@ -54096,19 +54095,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd0c9e4b4, 0xb7c5d10d, 0xda11bf9b, 0x7cda9988, 0x24c88762, 0x2f8a84a, 0x49b88b94, 0x8a25d744, 0x396c58e5, 0x5bd09abe, 0xb50fe191, 0x91e5fc, 0xe4a7ed72, 0xd67a0d66, 0x71d794d4, - 0x17262f95, 0x0001e3, 00000000 + 0x17262f95, 0x0001e3 }, { 0xc269a0db, 0x772f12b7, 0x57b12b3a, 0x368d4c7e, 0x9a14bb3f, 0xc9d47c7a, 0xc274f066, 0xbdfb382a, 0x35d1f862, 0x7147685d, 0x477d9e1f, 0x701db82a, 0x7c0370d5, 0xa0fe6cfb, 0x930a6596, - 0xfe9c33e, 0x0001ae, 00000000 + 0xfe9c33e, 0x0001ae }, { 0x1c2beec, 0x820ce63e, 0x682f3432, 0xe6132485, 0xd3c3dab2, 0x777ab727, 0x146d66b6, 0xf839b0dd, 0xd73480fd, 0xb5a1a597, 0x21dfd309, 0x6a9aeb11, 0x8e5fd2c2, 0xe4f40a1f, 0xbc96cd05, - 0x5de8bd2, 0x000188, 00000000 + 0x5de8bd2, 0x000188 } }, { @@ -54116,19 +54115,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xab114dbd, 0x7582299b, 0xaafc7cfe, 0xe8347f7, 0x683deec8, 0x2fe74515, 0x8cb6b3c5, 0x6d898e0b, 0x92e91e33, 0x35a9df39, 0xd107046a, 0xd8e4812c, 0xdbfcf47d, 0xe8558383, 0x765d6caf, - 0x9c19d0ef, 0x00017f, 00000000 + 0x9c19d0ef, 0x00017f }, { 0x9d74281f, 0xa81a6957, 0xb4d18508, 0x41f6762, 0xfe3095c4, 0x7910a8f5, 0x106c2b5d, 0x9a5b7986, 0xf1a925bc, 0xd80ac91a, 0x5ee73854, 0x4bbe36f5, 0x5e05751c, 0xbb989df6, 0xcee4cff5, - 0x4121a86d, 0x00005a, 00000000 + 0x4121a86d, 0x00005a }, { 0x985a7bfd, 0x7d959af6, 0x57d30a66, 0xcf9daebc, 0x7fd2e8ce, 0xccb7cee6, 0xd4fe1745, 0xba0f1feb, 0x8b962a52, 0x7239f68d, 0x165a0863, 0x6c67d60b, 0xd08721c, 0xba58bb0, 0xb35aed83, - 0xe11900bb, 0x0001b1, 00000000 + 0xe11900bb, 0x0001b1 } }, { @@ -54136,19 +54135,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe26e857c, 0x98742a0a, 0xae1d31a9, 0x85b89e48, 0x3c5516a6, 0xbbe1e08c, 0x76fe8962, 0x58f7987e, 0x4d4bb9a1, 0x6724911d, 0x942d2ba6, 0x120d4e88, 0x72861177, 0xa7052338, 0x82e4740c, - 0x556e7bd5, 0x00003c, 00000000 + 0x556e7bd5, 0x00003c }, { 0x15239304, 0xb6a3b12b, 0xa08dbde0, 0x7055d689, 0x96daba74, 0xf7fe0092, 0xd82b363a, 0xcd7c4cf0, 0x9f5632c8, 0xdc18c596, 0x47e6ea24, 0x2042bf25, 0xe13bf8d3, 0xc445b244, 0xe6f2beae, - 0xb409c565, 0x0000d4, 00000000 + 0xb409c565, 0x0000d4 }, { 0x4206d239, 0x108fd40b, 0x36b4724c, 0x4398310d, 0x36540c21, 0x68f0ba51, 0x966d4004, 0x6bd54a7f, 0x328a9176, 0x66ac2d72, 0xa0011081, 0xe3788c19, 0xfb4ae5d5, 0x52f49d63, 0x249de693, - 0xf3094df1, 0x000112, 00000000 + 0xf3094df1, 0x000112 } }, { @@ -54156,19 +54155,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36407941, 0xcf6964a6, 0xde994348, 0x7639cf0d, 0x298426d5, 0xc3e3813b, 0xf0ef27c2, 0xf2031a89, 0xd4b54877, 0xa426def2, 0xe849c7cd, 0xd944c9de, 0x68bb2193, 0xdc9c7772, 0xbf683794, - 0x83aee0ad, 0x000199, 00000000 + 0x83aee0ad, 0x000199 }, { 0xb9bdf3b2, 0x310ed6b5, 0xeab883c2, 0x8f358f1b, 0x25087eda, 0xb4a33e61, 0x2b52af4, 0x9706025b, 0xca6a2c56, 0x40d5bd9e, 0x22c8742c, 0x22504b73, 0x14a2176e, 0xaffb453d, 0x39d443aa, - 0x7e52803a, 0x0001d6, 00000000 + 0x7e52803a, 0x0001d6 }, { 0x7e6fe16c, 0x8be96c7a, 0x798e1c4b, 0xb82856c7, 0xe942913b, 0x38bacf7, 0x4c275e7d, 0x642db57, 0xa5a534a8, 0x8bcd36b9, 0xa5b521d7, 0x593d1e74, 0x5b371420, 0x8d5ac33e, 0x2e62082f, - 0x18dee877, 0x0000ca, 00000000 + 0x18dee877, 0x0000ca } }, { @@ -54176,19 +54175,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x715e3470, 0xfa6c799b, 0x3d0a8798, 0xab7b3870, 0x30c75300, 0x9f48f410, 0x5b80bc92, 0x6df71d98, 0xb251974a, 0x36147cae, 0x32211222, 0xc7eb4912, 0xf2c27190, 0xc047f764, 0xe715445c, - 0x1f75c634, 0x000112, 00000000 + 0x1f75c634, 0x000112 }, { 0x7f228260, 0x31464527, 0xab471f51, 0x364a48c5, 0xd4739761, 0xad46f096, 0x38c2cd6e, 0x32519412, 0xe4722d9d, 0x3dc2493c, 0x7d06f8de, 0xc5803783, 0xc422243a, 0x651bd2d9, 0x71aa716c, - 0xd30dffa, 0x00009f, 00000000 + 0xd30dffa, 0x00009f }, { 0x58f6988c, 0x5e653cd3, 0xeed42757, 0xbd219620, 0xccbbf056, 0x70913694, 0x704b5350, 0x6ff5884b, 0x7c9e0fbe, 0xc78d9368, 0x37f7c994, 0xc9226bf1, 0xb5b0a8dc, 0x42599c2, 0x30dc474c, - 0x1bd120a5, 0x00019f, 00000000 + 0x1bd120a5, 0x00019f } }, { @@ -54196,19 +54195,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x998213e0, 0x4efb405, 0x7b52e562, 0x1dd5e819, 0xa128134f, 0xce8dee44, 0x6fac79b8, 0xeec031cb, 0x3e6cd51c, 0x16869663, 0xa95bde19, 0x6652c47a, 0x42167975, 0x79741484, 0xb9c71f00, - 0x98de6269, 0x00000b, 00000000 + 0x98de6269, 0x00000b }, { 0xe0be81a8, 0x9f3e407a, 0xb1b9567c, 0x3a834742, 0xfcc7b5a7, 0xf09c2755, 0xf4674343, 0x6da8278e, 0x1a7d92fd, 0x560415be, 0x1d424d35, 0xc0375ec7, 0x35166639, 0x3c9c3a7e, 0x7e93c4f4, - 0x18bb3e09, 0x0000d0, 00000000 + 0x18bb3e09, 0x0000d0 }, { 0x98d854ae, 0x41cc83aa, 0x1d77c0db, 0x2e3eb7af, 0x7a4c4af4, 0xe3a03bc9, 0x47bf2e90, 0x9f9b08a2, 0x8c2ba62c, 0x4b498d89, 0x925e0231, 0xf2c344a1, 0xdcb1ab9d, 0xfe4333a8, 0x1afa539b, - 0x52e01c02, 0x0001d8, 00000000 + 0x52e01c02, 0x0001d8 } }, { @@ -54216,19 +54215,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf85beca, 0xe5ffc0ba, 0xa35dc513, 0x7ce0f086, 0x515218c9, 0x1910019b, 0xcfa8f39d, 0x3e69bac, 0x4345996, 0x2adb9e39, 0x8a2ab02b, 0xd4b4befc, 0xbfd543d0, 0x50a2e879, 0x8d698928, - 0xb11e5dc4, 0x000073, 00000000 + 0xb11e5dc4, 0x000073 }, { 0x3fbf6a32, 0x76c03226, 0x54f99be5, 0xb14c4bfc, 0x72f64437, 0x3ad3d27f, 0x7f1faa78, 0xe9f8b6be, 0x73c13118, 0x413ff7c6, 0xf4956268, 0xd3777086, 0x6c10f4d0, 0xfea46f8f, 0x3de33438, - 0x45b488ca, 0x000038, 00000000 + 0x45b488ca, 0x000038 }, { 0x41a0db8f, 0xefaeb785, 0xd375d6d0, 0xf010e765, 0x708cec1b, 0x4be481ca, 0xf60e33f, 0xf1725162, 0x6073287e, 0xd6de189c, 0xd4defb42, 0xb3f8d88e, 0xcf591dc4, 0xda647150, 0xe0609e, - 0x1d85878a, 0x000001, 00000000 + 0x1d85878a, 0x000001 } } }, @@ -54238,19 +54237,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1c38b73c, 0xef762b27, 0xe3f0092e, 0xa6c58ed0, 0xfa313291, 0x77d79bad, 0xa832e248, 0xd3e1b6d9, 0x3582be07, 0x6f7d3534, 0xb378f38f, 0x50717189, 0x85f9cc9a, 0x6c2e604f, 0xcf00936f, - 0xbfaa469a, 0x0001f5, 00000000 + 0xbfaa469a, 0x0001f5 }, { 0xd47acd07, 0x37f10a87, 0x81e291dc, 0x3e52cac6, 0x4fb6e770, 0xab0f556c, 0xe2104020, 0xb7f22113, 0x1df23ab3, 0x5c3170e2, 0xe78cde72, 0x44d997dd, 0xf6bf6c87, 0xe13c5873, 0x3d658100, - 0x91ba1fec, 0x00004c, 00000000 + 0x91ba1fec, 0x00004c }, { 0xc10b264b, 0x9496e07d, 0x69be2a13, 0x3f63933, 0xb2c0b159, 0xc4420d4b, 0x4c2bc24b, 0xb35bbdab, 0x10edc881, 0xde93b5b6, 0x99515f9, 0x773eb05a, 0x4ef8690b, 0xcb29b8c6, 0xd2e28dfe, - 0xdb70da0b, 0x00018f, 00000000 + 0xdb70da0b, 0x00018f } }, { @@ -54258,19 +54257,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa1c7e963, 0x6e620aee, 0x2542ba73, 0xcf4e3b9b, 0x268e3752, 0x123c7b7c, 0x6298e3cb, 0x6c3c5221, 0x95c637bd, 0x7c4fbcba, 0x818ddaef, 0xb8281668, 0xd00707cd, 0x1aa2039c, 0xbc0a940, - 0xe31e69af, 0x00007a, 00000000 + 0xe31e69af, 0x00007a }, { 0x5a341f62, 0xc6fc697d, 0xd1ea62ca, 0x88908a86, 0x645894c5, 0xf827d6e2, 0x50fa2dcf, 0x74f11d8f, 0xa8b96064, 0xda54d9a5, 0x4d455222, 0xa756efe, 0x8f86e4e5, 0xd4d5402f, 0xf5055bf0, - 0xdc00f62e, 0x000116, 00000000 + 0xdc00f62e, 0x000116 }, { 0x9eacf7a7, 0xb2df5414, 0xb0154348, 0x5f13eed7, 0x88a4ff, 0x5941f03f, 0x5fac6c98, 0xaadbb431, 0xb9e1db79, 0x84491d04, 0x68101788, 0xd5cf7947, 0xe26a3982, 0xfcbc1b6c, 0x5e77335b, - 0xbc8674c2, 0x0001c8, 00000000 + 0xbc8674c2, 0x0001c8 } }, { @@ -54278,19 +54277,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb52f9eb7, 0xe4641b5d, 0x137609f5, 0x443b54d7, 0x322970b3, 0x55718430, 0xb986d75f, 0x5dc53b2e, 0xe18a00e7, 0x3447e19f, 0xb28626, 0xe458748b, 0x11a5b8e8, 0xc60cef43, 0x63cf2dd8, - 0xe18ead8f, 0x000027, 00000000 + 0xe18ead8f, 0x000027 }, { 0x33fd80e0, 0xb6490484, 0x16484157, 0x1dd46294, 0xca5a46ee, 0x57a1d400, 0x2a18aebc, 0xee3a099a, 0x598bee0b, 0x82dee990, 0x23bf4738, 0xf7551521, 0xe5f6ab86, 0x3ee71bd0, 0x31894add, - 0x427d4010, 0x000135, 00000000 + 0x427d4010, 0x000135 }, { 0xefeda02a, 0xef13611f, 0x9d9d8c0a, 0x39de55ec, 0x6c1daeca, 0xe84f70e3, 0x29f863cf, 0x59407e59, 0xc2d6195b, 0x98f0b264, 0x936d50d5, 0x22c0f197, 0x1a21ef2f, 0x53b36088, 0x44d413ac, - 0x133e7be9, 0x000070, 00000000 + 0x133e7be9, 0x000070 } }, { @@ -54298,19 +54297,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x60c8e4c9, 0x137ac977, 0xeacfa8ea, 0x41a24e99, 0xa109993d, 0x5ec1cf3b, 0x3aabdd33, 0x33abad2c, 0x8a3d9a0c, 0xc8567a8b, 0xdb521e83, 0x41da72f4, 0x997d42cf, 0x3006c460, 0x309daa7d, - 0xb53a9a6a, 0x000098, 00000000 + 0xb53a9a6a, 0x000098 }, { 0x8f123441, 0x19d7a8df, 0x4750e3ca, 0x7152a871, 0xc0f580b2, 0x72d4a838, 0x1021e434, 0xfe21636f, 0x7df829c1, 0x333a59d4, 0x3c2c381f, 0xf62269b8, 0xe84d9dc9, 0xe9475385, 0x9a6b9eeb, - 0xd9b7c1a4, 0x0000ab, 00000000 + 0xd9b7c1a4, 0x0000ab }, { 0x61b12c93, 0xac7fa04e, 0x3b2f3c0b, 0x796c3170, 0xb8e1e8b7, 0x92a89f82, 0xfe774760, 0xe2d2794a, 0xd62658b2, 0x261d28dc, 0xe025d1ef, 0xd847658e, 0x6135d9c5, 0xb3de34bb, 0xd3a38e32, - 0x9225e68d, 0x0000e5, 00000000 + 0x9225e68d, 0x0000e5 } }, { @@ -54318,19 +54317,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40d84ada, 0x557fe54d, 0xfc129b73, 0xd208db1, 0x4f8885d6, 0x627256ba, 0xac19f583, 0x7948720f, 0xe1636130, 0xdd553d2d, 0x38a59e56, 0xbc63daaa, 0xad6d72b1, 0x64d44139, 0x8b5579d0, - 0xd4d44ba3, 0x0001c0, 00000000 + 0xd4d44ba3, 0x0001c0 }, { 0x338e5bb3, 0x124d0168, 0x19f5f41, 0x22a544e3, 0x825ce6c5, 0xf17c9fee, 0xa74358b4, 0x3c181a4, 0xc4ef7771, 0x6c622879, 0x36ff4453, 0xb57a210, 0xf1c27004, 0xfb055fdb, 0xccfadc0e, - 0xca8fbb22, 0x000029, 00000000 + 0xca8fbb22, 0x000029 }, { 0xabe54c87, 0x339741b7, 0x45234f91, 0xf9ccf3bd, 0x87f4f53c, 0xdbeb774c, 0xb6c93b86, 0xd8d14616, 0x47475848, 0xf8233d1c, 0x6a60dfcf, 0xbc7dfe1a, 0xabb14d33, 0x74aaab43, 0x9cea4688, - 0x8ec955b1, 0x000157, 00000000 + 0x8ec955b1, 0x000157 } }, { @@ -54338,19 +54337,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x60be3d17, 0xc0072e0, 0xce989a63, 0x519618e3, 0x4f0d29ea, 0xc87c064f, 0xffc4fc02, 0x7b7a8d2f, 0x66504078, 0xa7a3a704, 0xfc6b0f24, 0x8c9b44f2, 0x55896f23, 0x5ea62637, 0xc2b7e1c8, - 0x9fc3d768, 0x0001d9, 00000000 + 0x9fc3d768, 0x0001d9 }, { 0xa6108771, 0xe6a41526, 0x686da9e0, 0x7fe877ba, 0x482763dc, 0x35503cf3, 0x39647b54, 0x9441089d, 0x222718ac, 0x1614fd41, 0x4cb6b0bb, 0x79e79a1c, 0xf595b647, 0xabea4b48, 0x6352d894, - 0xf5aa9582, 0x0001fe, 00000000 + 0xf5aa9582, 0x0001fe }, { 0xfc75cc3c, 0x4f07b335, 0xa6ded8b9, 0xd7999195, 0xd909fc7b, 0x8e2357e, 0x367d0c01, 0x84eae749, 0x3a895461, 0x1343c675, 0x919f409f, 0x49530fc8, 0x9f69c5a1, 0xfe0bd615, 0xc01800ab, - 0xe62d9676, 0x0001e4, 00000000 + 0xe62d9676, 0x0001e4 } }, { @@ -54358,19 +54357,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6ec308a, 0x52ab63ce, 0x2966f822, 0xdd0ea489, 0x12b283ca, 0x6f1a81d4, 0x8eb4ec99, 0xcac74e7, 0x73296814, 0xf0a639c5, 0xf18da29a, 0x4b8e4da3, 0xc0174653, 0x294e4887, 0xbb6f5e50, - 0x4637eaa2, 0x00008b, 00000000 + 0x4637eaa2, 0x00008b }, { 0x8a879f6b, 0x15a6138c, 0xb7679f19, 0x3d30f0ce, 0x2f23b2, 0x17f86bf2, 0x3436a0e0, 0x98a12a1c, 0xdd57587, 0x378b9e6d, 0x22bc7460, 0x2143f9af, 0x31e2350c, 0x34a5424c, 0xc7d20e1e, - 0xf9c6a0b, 0x0001e3, 00000000 + 0xf9c6a0b, 0x0001e3 }, { 0x7f7fb23a, 0x971173b8, 0xbcf5b65d, 0x6d02026e, 0xa7b2eae5, 0xfef188f8, 0x11bb3d32, 0x247a219c, 0x79a06a89, 0xe5ab695f, 0xd2252e92, 0xb3069d20, 0x1206310, 0xc6e6deff, 0x4ede0cd5, - 0x6a1de487, 0x000022, 00000000 + 0x6a1de487, 0x000022 } }, { @@ -54378,19 +54377,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe68d167c, 0x51a8061a, 0x6d0be692, 0xa08d7608, 0x558e45d5, 0xeb50cf9f, 0xe8d221ca, 0xb24f3d30, 0x463eb643, 0x75c010c5, 0xb9e08d3e, 0x42c3c32b, 0x9f616580, 0x5e4658e7, 0xa154cff7, - 0xd635c1fa, 0x00008a, 00000000 + 0xd635c1fa, 0x00008a }, { 0xae0589bc, 0x65718982, 0x62b697d0, 0xe9ba559c, 0xa65cf511, 0xf01ad42d, 0x8ed45907, 0x7b517e6a, 0x67de67e1, 0xdd971ce5, 0x81279bf6, 0x7ce2427, 0x94f9842f, 0x640a0956, 0xe325bf24, - 0x8e9548e2, 0x000101, 00000000 + 0x8e9548e2, 0x000101 }, { 0x9a76f7a2, 0x2a1023ed, 0x45e3006e, 0x92445ea1, 0x9d44bcc4, 0x73157f5a, 0xd3b2824a, 0x74644aa3, 0xa7414284, 0xbdfdb75e, 0xe781c034, 0x78061100, 0x70adffe, 0x70d4e26f, 0x2f9a4564, - 0x3434ac43, 0x00013a, 00000000 + 0x3434ac43, 0x00013a } }, { @@ -54398,19 +54397,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xac04ec6b, 0xfa138fac, 0x60bffdd8, 0x847c00ae, 0x10bece71, 0xd17cfc33, 0xf60083d9, 0xcb48faa, 0xe943fdb6, 0x3bd2ef1f, 0xf93593e6, 0x6529b20b, 0x8169fb87, 0xc8e14f65, 0xc0ec3118, - 0x90ff47eb, 0x000106, 00000000 + 0x90ff47eb, 0x000106 }, { 0x4d656553, 0xac91a2c7, 0x8ccf826d, 0x83165ea0, 0xe7653b14, 0xd7902839, 0x5d459231, 0x7c33d6cd, 0xc49b64b, 0x9dc96d35, 0x1a9f54f7, 0xe5bf33c7, 0xddf66016, 0x48387261, 0xf9414c80, - 0xaf47637f, 0x000046, 00000000 + 0xaf47637f, 0x000046 }, { 0x82cdea6a, 0xcfc3a0b8, 0xe498d21c, 0x87e829e5, 0xa4397c6d, 0xe11fbbd, 0xbf0734ab, 0xdf4bdb7f, 0xd92ee0e3, 0x3287a1bc, 0x18f8e6c4, 0x3754ad85, 0x72c2e20a, 0x31e64431, 0xa32fd99e, - 0x2cccabab, 0x000168, 00000000 + 0x2cccabab, 0x000168 } }, { @@ -54418,19 +54417,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb96b3403, 0xdcc44f03, 0xcb686724, 0xf92d696b, 0x8b662947, 0x18e0d8d7, 0xcb28c29c, 0x6e77780, 0xd3fb90e7, 0xe95a6861, 0x1469e3d0, 0x37284cbb, 0x9cce5131, 0x163f6c5b, 0x1e5db217, - 0xb0f1071e, 0x0000b5, 00000000 + 0xb0f1071e, 0x0000b5 }, { 0x68f809fa, 0xd4be38fe, 0xcfa43ad9, 0x8db06b60, 0xfc05ce5a, 0xf638aa6d, 0x57874359, 0x7d30b4f3, 0xc379f767, 0x74f78cc, 0xca77f326, 0x3f2e60ea, 0x8a8cae34, 0xc778a5c, 0xc87479db, - 0x1fc0c14d, 0x000033, 00000000 + 0x1fc0c14d, 0x000033 }, { 0x9ea1dc73, 0xeeec2288, 0xdcc4524a, 0xa5a69e2f, 0x26aa83d2, 0xdd105b5e, 0x84c7f075, 0x5545843b, 0x13b8f487, 0xdaebe97f, 0x1e153c7f, 0x3c8f74af, 0x7e062708, 0x2cdde17b, 0xbeff926e, - 0x4df3a076, 0x000006, 00000000 + 0x4df3a076, 0x000006 } }, { @@ -54438,19 +54437,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd1c70d06, 0x8259b6bd, 0xf122565b, 0xa4d92f14, 0x48668d37, 0x31b60aa2, 0x62ccfa86, 0xcd3e1502, 0x2e6f9303, 0x242ee722, 0x7cbd7487, 0x3c014dcf, 0x986b6e57, 0xf790d57, 0x9c7e24b, - 0xe32f7525, 0x0001e4, 00000000 + 0xe32f7525, 0x0001e4 }, { 0x1f25051f, 0x51bc015e, 0x230f7fed, 0xa6647b53, 0xcc7e4a5e, 0xb0f55f26, 0xda0e9253, 0x3ff85072, 0xa73d4b71, 0xd7b04c15, 0x777bd29b, 0x75621332, 0x19a2370e, 0xe3be1c6b, 0xd4fab14e, - 0x1cc44d68, 0x0000bc, 00000000 + 0x1cc44d68, 0x0000bc }, { 0xc8de77bf, 0x8f0ad595, 0xb6541ddd, 0xe5f51079, 0xb757ec31, 0xa0dec3eb, 0x53366d5c, 0x108cf658, 0x59187724, 0xb07cde75, 0x47a9baa6, 0xaab45031, 0x54354242, 0x708c2393, 0xcdf1a3ce, - 0xd892f395, 0x00007b, 00000000 + 0xd892f395, 0x00007b } }, { @@ -54458,19 +54457,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x50214e59, 0xbffed3ec, 0xc9233745, 0x4a229a93, 0x218adbbf, 0x6ddaaeb5, 0x2b55df1b, 0x3623edf0, 0x444a569, 0xeb44ee81, 0x12d141c8, 0xbf866802, 0x93d80b4a, 0xd868ffcb, 0x8479ee8, - 0x2a4ef17, 0x00016c, 00000000 + 0x2a4ef17, 0x00016c }, { 0x78027237, 0x55b0dca1, 0x891ba9fb, 0x5fe446d5, 0xef13a213, 0x26b485a3, 0xceac2285, 0x9621c749, 0x344c4dbf, 0x81fcf8f3, 0x4dfdcf93, 0x6f694ec9, 0x396e6a89, 0x5a09c4a7, 0x821a8cf9, - 0x2d69bbe2, 0x000168, 00000000 + 0x2d69bbe2, 0x000168 }, { 0x5313be47, 0x22c05df, 0xb8a80ceb, 0x6b1ceb25, 0xa3c79eb8, 0x26506623, 0x642ae49e, 0x59d9a8a1, 0xff56a2b6, 0x92ca0455, 0x15ca9b2, 0x61106d85, 0x652635aa, 0x60d43230, 0x2bfb2b45, - 0xfa191e19, 0x000125, 00000000 + 0xfa191e19, 0x000125 } }, { @@ -54478,19 +54477,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6c7211b, 0xb95931e0, 0xd039b9fb, 0xd8b8e6c0, 0xa2ec4f7d, 0xafc731e1, 0x2381d41b, 0xd95e759d, 0xa1c01d2c, 0xb0f2a70f, 0x1b5f3036, 0xebf83f6e, 0xfde72812, 0xf1dd416e, 0x65cc1945, - 0x4ab53f8f, 0x00001d, 00000000 + 0x4ab53f8f, 0x00001d }, { 0x3c45735c, 0xcd8605e2, 0x5406d3b4, 0xe7f03a4b, 0xbb586a05, 0x89043607, 0x5cecb3b9, 0xaede1d94, 0xc749037e, 0x7112cb61, 0xb6ae66bc, 0x76a7e061, 0xba2e0571, 0x821d8f62, 0xb256d62f, - 0x41f6c16a, 0x000151, 00000000 + 0x41f6c16a, 0x000151 }, { 0x60d2f092, 0x29df9314, 0x1d363bfc, 0x54f7aa34, 0xfcb2f56e, 0xa9069f0e, 0x8a81b5e3, 0x186c8439, 0x91c69e90, 0x444937a2, 0x5b233937, 0x9ce0958f, 0x7fef2879, 0x678e63fc, 0xb4abc4f6, - 0xe8e22966, 0x000012, 00000000 + 0xe8e22966, 0x000012 } }, { @@ -54498,19 +54497,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa188c15c, 0x3a5869ed, 0xffb320cc, 0xa3c45169, 0xb53c0f6d, 0x40c2c4c4, 0x4d7f6a55, 0x9b1bd1cb, 0xa8006a96, 0xc01c635d, 0xc1b04414, 0x161383ed, 0xe208298, 0x84ba223f, 0x8c75ca97, - 0xd8bb96b9, 0x0001a4, 00000000 + 0xd8bb96b9, 0x0001a4 }, { 0xfe6113a1, 0xc758be51, 0xb8df0190, 0x801c4619, 0x1bf4060a, 0xbeef7960, 0x9808332a, 0x6ac3e20a, 0x2931205c, 0x2d2d2f01, 0xb5a38dd8, 0x820ae4a0, 0x15910614, 0x1dac569f, 0xf692a253, - 0x68bf0ab1, 0x0000c6, 00000000 + 0x68bf0ab1, 0x0000c6 }, { 0xd141cdec, 0xb05d13ad, 0xc924e6df, 0x7c97918e, 0x6c76fdac, 0xbb4def98, 0xefb375d9, 0xe2b81f11, 0xaf787086, 0xdc86e9d0, 0x5365d485, 0x9b26e181, 0x7253be26, 0x1e1d8579, 0x91a32551, - 0xfc7f1664, 0x000070, 00000000 + 0xfc7f1664, 0x000070 } }, { @@ -54518,19 +54517,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa098eaab, 0x8d553ce5, 0x211bb35d, 0xa818fbcb, 0x570e8908, 0xedd84913, 0xfeef3701, 0xb816f27a, 0x1680c16b, 0xc7ff36ae, 0xf2dc69e2, 0x4d7183f9, 0x914b196e, 0xcdad0f02, 0xcec96587, - 0x146c150a, 0x00001b, 00000000 + 0x146c150a, 0x00001b }, { 0x2cd0a65e, 0x7807e1c9, 0x3ae9167e, 0x97bd7f7c, 0x4b780fa1, 0x9081bee9, 0x72fa5ec9, 0xeb05c4f8, 0x6a5c0f9e, 0x4d9f3815, 0x54ac9b7c, 0x81ccb7b5, 0xec472d8d, 0xc0e108b4, 0x1946e5db, - 0xa9d05ccd, 0x0001fc, 00000000 + 0xa9d05ccd, 0x0001fc }, { 0xb9d9c380, 0x55bc87a4, 0x3f6ddf4, 0xd43e8f66, 0x79284a03, 0x50d04083, 0xf9316da3, 0x8221a8d1, 0x7662998e, 0x3797f798, 0x419b1ae9, 0x718693bd, 0xff50453, 0x4cc498e3, 0x501ed5ff, - 0x58c1b57a, 0x000117, 00000000 + 0x58c1b57a, 0x000117 } } }, @@ -54540,19 +54539,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b45893b, 0xdb599f48, 0x2d141bab, 0x7bbee8df, 0xbf921749, 0x84ecebfb, 0x1116c449, 0x928464c6, 0xfbf2edf8, 0xdd30c067, 0x6fac1b21, 0x7135279a, 0x3219d333, 0x6ae247dd, 0x9242872a, - 0x290e7141, 0x000065, 00000000 + 0x290e7141, 0x000065 }, { 0xf8ecb3d3, 0x4982698, 0xc45fb8d2, 0xca596f6b, 0xfbc89bdb, 0xaef85b1e, 0x9c15bb9, 0x228f42fe, 0xbdfb5b5d, 0x80f6cb30, 0xcedf6291, 0x27cf6074, 0xf93140d2, 0xe812231f, 0xd983679, - 0xfb9d068b, 0x000005, 00000000 + 0xfb9d068b, 0x000005 }, { 0x1f68d23b, 0xbe065684, 0xb45dce52, 0x8df59b0f, 0x7e3839d2, 0x2f2b0052, 0xac2ee976, 0xe24fe9c, 0xd7684cb, 0x720417c, 0x91ea4ab2, 0x21bd04f7, 0x60888eb2, 0xf6c99a3e, 0x24cc3c21, - 0xe400e02c, 0x000056, 00000000 + 0xe400e02c, 0x000056 } }, { @@ -54560,19 +54559,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a7720df, 0xb0c7124, 0x8e61b05e, 0x84d682b0, 0xcaa772a7, 0x6b7e288b, 0x2c067fa, 0xbd494ec5, 0xd50e79e4, 0xbec915b1, 0x4af2967e, 0xa415b29a, 0xb38660bc, 0x70ebac53, 0x3a63f22, - 0xc5a6f58d, 0x0000b9, 00000000 + 0xc5a6f58d, 0x0000b9 }, { 0x3e8438d9, 0x4160cdc5, 0xb0f50604, 0x38f58148, 0xcf8c12fa, 0x5ea9723e, 0x765a4230, 0xe4fcb956, 0x43583519, 0x78307a06, 0x4782855b, 0xe421a457, 0x39e1f310, 0xa97cdc7d, 0x8c28c641, - 0x78149673, 0x0001b4, 00000000 + 0x78149673, 0x0001b4 }, { 0x5a293298, 0x8c07a106, 0x413a3355, 0x86022782, 0xf18f4730, 0xdb4dc7f0, 0x72abf8de, 0x9f7ab97, 0xb90fb6b2, 0x42a3c6f1, 0xf3e7afe4, 0x1faa82a0, 0xa504896c, 0x3e1b514, 0xcf0cf9dd, - 0xbb5de5e7, 0x000035, 00000000 + 0xbb5de5e7, 0x000035 } }, { @@ -54580,19 +54579,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x38042946, 0x559613e3, 0x7ab662b1, 0x8efffe42, 0xed45246b, 0xb7553c5, 0xf5305f69, 0x973fcdf2, 0xd6fe9b00, 0x96e163e1, 0xe2443a47, 0xe6903190, 0x6580fdc6, 0x1d6f5592, 0xcd78af7e, - 0xec688484, 0x0000b0, 00000000 + 0xec688484, 0x0000b0 }, { 0x44f6a2b0, 0x69f6ee82, 0x3844192d, 0x68665cfc, 0x71bd32c1, 0x20e9c657, 0xc7e8915b, 0xca4ed6b5, 0x823a2511, 0x7c775d17, 0x8fc01250, 0x3c351bc7, 0x7ee16dd3, 0xed828718, 0xfcfbfcf5, - 0x892104fa, 0x00015b, 00000000 + 0x892104fa, 0x00015b }, { 0x5703af18, 0xc057460d, 0xd5f17804, 0x24698e64, 0x44bba39b, 0xd392b575, 0x49df5132, 0x7a2b00c3, 0xd54177c, 0x6a2030a5, 0x9b03ac4f, 0xf602cf9, 0x50da4196, 0x71feacd1, 0xfaa27396, - 0x8f8a5392, 0x00002f, 00000000 + 0x8f8a5392, 0x00002f } }, { @@ -54600,19 +54599,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x467f0946, 0x33d3a3cb, 0xdd825861, 0x4efe61c8, 0x33400115, 0xf955a502, 0xbcc1bc99, 0xadbb8b31, 0x9b98c35a, 0x7c073867, 0xc55c1670, 0x9ae6f261, 0x18e15a49, 0x1a8847ae, 0xbefa9155, - 0x6d5d553e, 0x000102, 00000000 + 0x6d5d553e, 0x000102 }, { 0x86ed9eff, 0x7cae2e6f, 0xfa0675a, 0xc2f5455e, 0xd0551547, 0x51ef0547, 0x50f92ad8, 0xa1bbf420, 0x918eda05, 0x5fe1a0d0, 0x3bf68aca, 0x7253c804, 0x815fc551, 0xd0df002, 0x5da645f0, - 0xc4872b0b, 0x0001b2, 00000000 + 0xc4872b0b, 0x0001b2 }, { 0x75466f89, 0x6689fe79, 0x394a5959, 0x8ac886af, 0x89bbda4b, 0x1745f21d, 0xc0aaa4c4, 0xfb654292, 0x522c2a77, 0xfce31bc7, 0x5d8eaba, 0x646e7588, 0x4dc40730, 0x211935e5, 0x70a59248, - 0x90e718c4, 0x000006, 00000000 + 0x90e718c4, 0x000006 } }, { @@ -54620,19 +54619,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xec79f0b2, 0xaba394b1, 0x2b1076c6, 0x1fb08a32, 0x9a554f3e, 0xba6db75a, 0x49bd8bc6, 0x7fe38d3a, 0xb51adb36, 0x6c571d44, 0x51c34888, 0xc0b8f79d, 0x8a2c37bd, 0xf616efa5, 0x61ba2710, - 0xb72b6645, 0x000133, 00000000 + 0xb72b6645, 0x000133 }, { 0xda69ae67, 0x7b427ab9, 0x3374c3a4, 0xb53ba23a, 0xbc22ff0, 0x923d939f, 0x6ea06b54, 0x50c097d8, 0x2e10064, 0xffa5f9c9, 0x929a9cc2, 0xd40bc8e3, 0xc136eadf, 0xf961f27a, 0x137fbc18, - 0x73c08ab8, 0x0000f3, 00000000 + 0x73c08ab8, 0x0000f3 }, { 0x8fcef29, 0x33704b1d, 0x1bfdb47b, 0xe2a2e269, 0x2be9305, 0xf0942cbb, 0x424a198a, 0x5f72b8b6, 0xd93c45f9, 0x900e4bbf, 0xf0f035be, 0xc1af4bce, 0x2627ff13, 0x90ae763, 0xdc4f3f25, - 0x90883881, 0x00005e, 00000000 + 0x90883881, 0x00005e } }, { @@ -54640,19 +54639,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x69cf174f, 0xd9c7926b, 0x558a6ed8, 0x3321d5f4, 0xb816043f, 0x31db2c9c, 0x198bc8ff, 0xe66cabd5, 0xbd4d5bc1, 0x8d5e827e, 0x23decc3a, 0x5106b331, 0x42baf103, 0x9c982c53, 0xabbdf8f6, - 0xa554d000, 0x00002d, 00000000 + 0xa554d000, 0x00002d }, { 0x3f48b6b7, 0xf9742949, 0xf8672aa4, 0x302197de, 0x5df3dadb, 0x70785299, 0x9dd53cc4, 0x668f3f4a, 0xcbcff4c7, 0x427989d5, 0xb397aae4, 0xdc759ef1, 0x666fd921, 0xfc12cb3d, 0x80a6f77e, - 0x98fceadb, 0x00018f, 00000000 + 0x98fceadb, 0x00018f }, { 0x8ef60c63, 0x3739e706, 0xf52a2ea6, 0xa10d2fee, 0xa63532d4, 0x596584e, 0x60396d4c, 0x4663345f, 0x177ffaf7, 0x2c304607, 0xb7d3ec28, 0xd671994f, 0x60d346b, 0xc292ce01, 0xf867de9b, - 0x5b2d2bbe, 0x00003e, 00000000 + 0x5b2d2bbe, 0x00003e } }, { @@ -54660,19 +54659,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbc774be3, 0x78eef295, 0xb5f20a08, 0xdbd222f2, 0xbff5707c, 0xcafb3d41, 0x72b31765, 0xc607ee0a, 0x1cf0bf18, 0x339dfcc8, 0xd4204937, 0x578d8d19, 0x69e99d19, 0x25ff9881, 0xda695e34, - 0x3e797d5a, 0x0000a8, 00000000 + 0x3e797d5a, 0x0000a8 }, { 0x6a1eda3a, 0xcda93433, 0x9d79b35d, 0x39b7d37a, 0xf06f42c2, 0x87ebb4dd, 0xf48c8651, 0x5a4beca9, 0x42d3abbd, 0xba832cdf, 0xe1fdcd9f, 0xe8103921, 0xae1ddd5c, 0x54fd441f, 0xc5b9c704, - 0xa214796b, 0x000100, 00000000 + 0xa214796b, 0x000100 }, { 0xa09d77ff, 0x16ce901, 0xd69e4393, 0x54f0610b, 0xbbf7fcde, 0x75249ad1, 0x87568784, 0x415538c6, 0x270d01c, 0x4b154a0f, 0xd1b098be, 0x97de6e0b, 0x7be0d49, 0xc034fa81, 0x86c20581, - 0x991465f6, 0x000097, 00000000 + 0x991465f6, 0x000097 } }, { @@ -54680,19 +54679,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf9bad538, 0x4a1032c4, 0x4607f54, 0xb6c45dd3, 0xad5e6649, 0x6beacc8c, 0x86554c2, 0xb3e89bf3, 0x9c3ebdca, 0x6bac01a, 0x868d3740, 0x626658aa, 0xee7fa0a7, 0xf4638f58, 0xc4d18290, - 0xdd522e74, 0x000079, 00000000 + 0xdd522e74, 0x000079 }, { 0x91598b52, 0x249c5890, 0xe470f331, 0x921abeb7, 0xbe6830cd, 0x69fcdf6d, 0x8a7b91f, 0x91f3eb43, 0xd1125e87, 0xf2e2b001, 0x77a5ee60, 0x2878e322, 0xa3d0e344, 0x910f7346, 0xb32862e3, - 0xb9d8dfba, 0x0000a3, 00000000 + 0xb9d8dfba, 0x0000a3 }, { 0x5978f9ae, 0x9350e90e, 0x3355ec7f, 0xee8f51, 0x2132171a, 0x5231869b, 0xb2c45273, 0x267d5a15, 0xf37ac355, 0xcba74ace, 0x6f287036, 0xfe2b1b73, 0x7eb1520d, 0x535dd72f, 0xb836055a, - 0xbc44ccf, 0x0000aa, 00000000 + 0xbc44ccf, 0x0000aa } }, { @@ -54700,19 +54699,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5372c265, 0x57ccd009, 0x6a3da99d, 0x9949c3c1, 0xff90d40f, 0xf47fea92, 0x3fb15f4d, 0x9534b8c4, 0xcf4494f2, 0x7f0987a2, 0x7a98933, 0x261748f9, 0x3046813b, 0x7127937b, 0x4377c96b, - 0xdc1ef2dd, 0x0000b7, 00000000 + 0xdc1ef2dd, 0x0000b7 }, { 0xd2d521c3, 0x57c6bf9b, 0xed6aacde, 0x61f735a5, 0x8428d27e, 0xae4329fc, 0x26ee935d, 0x87c5b6ea, 0xcc65a2f7, 0xaa3fc68c, 0xd3954aa1, 0x7fdc9e9c, 0x165a2300, 0xdbb0ee24, 0xae52de6b, - 0x2351a9fb, 0x0000a3, 00000000 + 0x2351a9fb, 0x0000a3 }, { 0x1eacd0e8, 0xbca4e656, 0x7bfae8d, 0x5584df8b, 0x2bec615e, 0x8adb9b33, 0x98a16e76, 0xdf9d54e1, 0x86956d82, 0x30cd6a09, 0xe769bd88, 0x9f77f4d3, 0xe87b3124, 0x99908b90, 0xf579a7f7, - 0x1b1a1fad, 0x00010d, 00000000 + 0x1b1a1fad, 0x00010d } }, { @@ -54720,19 +54719,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x35d9c904, 0xd6d8f32c, 0x382cca5b, 0xa3fff66c, 0xfb0629a5, 0x64139c47, 0xcd298c0, 0x681ad388, 0xe0f102d, 0x232189e3, 0xafbd0602, 0x994d438c, 0xf0147e0f, 0x8aa488c7, 0x301ea8d4, - 0xd489bf99, 0x0001ea, 00000000 + 0xd489bf99, 0x0001ea }, { 0x3355b6c7, 0x65c67d9c, 0x281b7d9f, 0xf9c0850e, 0x2172f466, 0xecd6b730, 0x351c7214, 0x5fbe5bc6, 0x48a0c343, 0x861c762b, 0x8e37a007, 0x94c0a305, 0x660d814e, 0x59a97bae, 0x99096f40, - 0x75564525, 0x000101, 00000000 + 0x75564525, 0x000101 }, { 0x267fc426, 0x2b6b9a06, 0x91c3d8e6, 0x6fbb1068, 0x2d8bbb2b, 0xfc422f12, 0x827aaf4a, 0x3c641f21, 0x2aafee78, 0x28b44cf0, 0x79145e5d, 0xacd2c4b4, 0x41b8511a, 0xb6fcaf1c, 0x5e5df4c9, - 0x198a2af7, 0x00011c, 00000000 + 0x198a2af7, 0x00011c } }, { @@ -54740,19 +54739,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc8412887, 0x52257df8, 0xe2b52837, 0xd35289ab, 0xdffdd8fc, 0xbfdaf05, 0xa8194e75, 0x8f5526ac, 0xdf3d24bf, 0xf4e44bc5, 0x8f8207f9, 0xe1cf6162, 0xbdddcef1, 0x3a21c2d7, 0x68e67623, - 0xa28a1379, 0x00015c, 00000000 + 0xa28a1379, 0x00015c }, { 0xba2db16, 0x6ef7064a, 0xb263bfb1, 0xd5fb961f, 0x8c13a5bb, 0x2f09f672, 0xa4afd3d2, 0xfa2055a5, 0x36acb63e, 0xfbc56c7c, 0x610b0b56, 0xc6b1fb08, 0xe2b240bb, 0x1ce5c2ca, 0x48acaa98, - 0x6e712769, 0x000148, 00000000 + 0x6e712769, 0x000148 }, { 0xc7ab52a7, 0xca91eb82, 0xef6f49ec, 0xb2396c65, 0xa8bb24c7, 0xc4472b8e, 0xada6a32, 0x72880d30, 0x94a40b51, 0x61232180, 0x13977e4e, 0xddfbdb23, 0xe9ce361e, 0xe5d5b07e, 0x9f29c85, - 0xefa98ac9, 0x000068, 00000000 + 0xefa98ac9, 0x000068 } }, { @@ -54760,19 +54759,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4af806d2, 0x74c2065c, 0x37e95f2a, 0x50d636cf, 0xf3df5dd0, 0x7c62b062, 0x4f32d06d, 0x2de373f9, 0xfa1684e9, 0xe9225814, 0x20bceedd, 0x6bc8bd6e, 0x498134c9, 0x9075dc54, 0x77a04d9b, - 0xb50bbe96, 0x000113, 00000000 + 0xb50bbe96, 0x000113 }, { 0xd0ec9836, 0x880d03a1, 0xa93d5fa3, 0xdd1f9e09, 0x1a18157c, 0x13e7e0a0, 0x56a56653, 0xfb7f0106, 0xda2d6114, 0x66028432, 0x641c7d99, 0xc590495e, 0xfe8a2c9e, 0xc6da03, 0x59cd1752, - 0x162c4ee5, 0x000151, 00000000 + 0x162c4ee5, 0x000151 }, { 0xc15b97c6, 0xf1e9ffcf, 0x735f55f5, 0x676f67c7, 0xed7894b8, 0xe4c730f, 0x12f06f40, 0x554430b3, 0x146bc41e, 0x76be018b, 0x23a831cc, 0x39f10ea9, 0x5eabaa6, 0x32a1dff7, 0x22298f06, - 0x35c97e02, 0x000149, 00000000 + 0x35c97e02, 0x000149 } }, { @@ -54780,19 +54779,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb98973e5, 0x9ee3f83f, 0x1fb67a90, 0x709865bd, 0x1ae8a139, 0x5f8d40ae, 0x8ec77041, 0xab7699e7, 0x734cb662, 0xb6c1b1b1, 0xe01d2d00, 0x7c86b03c, 0xca8f5e00, 0x223454f9, 0x69226970, - 0x67b36df6, 0x0001b9, 00000000 + 0x67b36df6, 0x0001b9 }, { 0xb1be7453, 0xebaf928, 0x2b591363, 0xb35465b3, 0x2ea6717, 0x5b37a03, 0x7b5a1d33, 0x94c51ddf, 0x40785358, 0xb6623d8e, 0x8e94323c, 0x975ac3af, 0x9662dcca, 0x15381d99, 0x8bda1348, - 0xbc876ed5, 0x000107, 00000000 + 0xbc876ed5, 0x000107 }, { 0x4197165, 0xcd8b1282, 0x3a179abc, 0x97a3b08c, 0x56fd42e2, 0xd6302ce7, 0xe11153cc, 0xf0b35966, 0xd2ca4495, 0xab8208f9, 0xfa09251a, 0x2337a7a5, 0xe080664f, 0x3204ab77, 0x106e63e9, - 0xf144914e, 0x00010d, 00000000 + 0xf144914e, 0x00010d } }, { @@ -54800,19 +54799,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf7162d95, 0x412eeedb, 0x9a0292d, 0x90ba4322, 0xbb21e2aa, 0xac477c44, 0xd48535c2, 0x851a8159, 0x8c585c70, 0x13eae0a5, 0x13471ac5, 0x3c89ac83, 0xc12ecb0, 0xcb81cea0, 0x7597a169, - 0x5311e0ed, 0x0000ad, 00000000 + 0x5311e0ed, 0x0000ad }, { 0x42c8f40d, 0x9334c42d, 0xdf4e8bbe, 0xaa94b5a0, 0x47ddb0b5, 0x4d5e3cf3, 0x938cb3b6, 0x3a0e4b4b, 0xf3630254, 0xce80db00, 0x5ab2b632, 0x2a79a7f9, 0xbfcaa4a7, 0xd16afdb3, 0xba2057f8, - 0x47f0f3d4, 0x000113, 00000000 + 0x47f0f3d4, 0x000113 }, { 0x456335d8, 0x5093a500, 0x9a365db3, 0x3cf39e7d, 0xd891ec08, 0xacf84aed, 0x86c177dc, 0xcf355aea, 0x7fbbd59, 0xb0219ede, 0x266673f1, 0xcd582e47, 0x75e2a94a, 0x99e206ae, 0x52e0cff6, - 0x78cbf77c, 0x000125, 00000000 + 0x78cbf77c, 0x000125 } }, { @@ -54820,19 +54819,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19bb3384, 0x98df858, 0xe380ce34, 0x4632dcd1, 0xd7506dd4, 0xc1a86df1, 0x95e6d893, 0x479bcd4e, 0x6583c59e, 0x8d6f116a, 0x139b6ad3, 0xc9bdd317, 0x5f025338, 0xc61bf739, 0xa7af219, - 0x9f99908d, 0x0000e6, 00000000 + 0x9f99908d, 0x0000e6 }, { 0x760080b4, 0xd46b9286, 0x639321ee, 0xaca462af, 0x75714b48, 0xccb41622, 0x952fd1e8, 0xf3c301db, 0x32a0d34d, 0x84fcf71f, 0x152a8956, 0x57e14a5b, 0xbeb2ef0c, 0x670fa7e7, 0x1c962d05, - 0xb3218086, 0x000008, 00000000 + 0xb3218086, 0x000008 }, { 0x5fc155d7, 0xba5dd7d9, 0x69f2dadb, 0x2b5b4c8, 0x8faa1427, 0x6cbd6ce7, 0xeae09047, 0x464b0562, 0x187303c5, 0xff451663, 0x9d00f85f, 0x8b565483, 0xeddc00f9, 0x2a69fe16, 0xaffb7876, - 0x1b77a153, 0x000027, 00000000 + 0x1b77a153, 0x000027 } } }, @@ -54842,19 +54841,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf8c65ae0, 0x294334a3, 0xf058a8eb, 0x7d6bfc78, 0x5aa0238b, 0x772a958a, 0xd8e9994b, 0x4f4ff82b, 0x8969a9e7, 0xec3cb5da, 0x9f357841, 0xdd3249e1, 0x78e75ff6, 0x8249efd9, 0x54d2d851, - 0xbbdaf2cb, 0x00003d, 00000000 + 0xbbdaf2cb, 0x00003d }, { 0xaa4cdae, 0x7927f5d3, 0x5e4a966f, 0xffc501fb, 0xf7f99282, 0x3d555165, 0x623cf515, 0x6731b63f, 0xbf87dfd4, 0x1ed00a16, 0x8ab0e8ac, 0xcf0eb7db, 0x12873b82, 0xb369e1c1, 0xe89127db, - 0x837dba3b, 0x000178, 00000000 + 0x837dba3b, 0x000178 }, { 0x75074226, 0x8a2d6f1b, 0xd4e0c4c8, 0xb928ed66, 0x8abfa4f, 0x36e6547, 0xea395a1d, 0x196ecbd0, 0x7f523c51, 0x67b0e80b, 0x5980b792, 0xd067ec2a, 0x8babc44d, 0xd6bac1b3, 0x83452d31, - 0xc52cd273, 0x0000ff, 00000000 + 0xc52cd273, 0x0000ff } }, { @@ -54862,19 +54861,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xea4d9253, 0x60a6fe68, 0x8c6ab069, 0x346c0dda, 0x5fcd06fd, 0x18d49d09, 0x6158a140, 0xa0664454, 0xf6ae480b, 0xcedcf687, 0xde6d0351, 0x8f0599e, 0x309c1732, 0xd0785cb7, 0x5eb2a6e0, - 0xc1c09700, 0x0000cf, 00000000 + 0xc1c09700, 0x0000cf }, { 0xdca1401b, 0x43c0ae70, 0x7159e7bb, 0xcd9dcd2f, 0x642f65dc, 0xdfee0e80, 0xb46b15be, 0xd8223ad3, 0x9762d9f1, 0xbf2cb4c, 0x8f8d0c4d, 0xbf2b74f7, 0x28fdaf8, 0xdca416af, 0xf2086518, - 0xfd9a137d, 0x000184, 00000000 + 0xfd9a137d, 0x000184 }, { 0x608d3d64, 0xd5df82fd, 0xfe505c4, 0x65209613, 0x88a80144, 0x333c2d3a, 0xccd4cdc5, 0x627e8378, 0x2df4023, 0xb5599a62, 0xf040322c, 0x5503274b, 0x3d5fa49f, 0xe904368, 0x8d18499d, - 0x82181dcb, 0x000119, 00000000 + 0x82181dcb, 0x000119 } }, { @@ -54882,19 +54881,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8ff30913, 0x9d767507, 0xf2724c20, 0x9c91d8d6, 0xf461c1a2, 0xf913da91, 0x8d6fe6f3, 0xd88ddb18, 0xbf5a591f, 0x9531ea52, 0xd270268f, 0xd053967b, 0xebfeebf2, 0xf0a39983, 0x14fed9d0, - 0x26f580d9, 0x0001af, 00000000 + 0x26f580d9, 0x0001af }, { 0x1022fbed, 0xdc40f35f, 0x1d4dad5c, 0x9797cc8, 0x57b004d5, 0xcf501a5e, 0xd9f8099f, 0x2df1a84, 0x518dfbda, 0xb8d850b2, 0xcd0ca4a7, 0xab90ee3b, 0xbc59ef53, 0x14cef0c, 0xd6f38a28, - 0x14721ffb, 0x00019b, 00000000 + 0x14721ffb, 0x00019b }, { 0x7596ca7, 0x3b57000c, 0x461c11aa, 0xae012108, 0x38367288, 0x817b91ce, 0x6ccb7769, 0xc094c680, 0x3980b8fa, 0x4a448241, 0x16366296, 0x35704888, 0x857cae88, 0x2e5401fd, 0x57e55be2, - 0x571b906, 0x0001ad, 00000000 + 0x571b906, 0x0001ad } }, { @@ -54902,19 +54901,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x63eb0bd8, 0x36fc2ac, 0x92eacaba, 0x49001a8e, 0xfe8d33da, 0x63d0b765, 0x8db8c57, 0x83a5531d, 0x59a9a877, 0xec2a00fb, 0x3d5aeaab, 0x33586415, 0x6309dcf7, 0x4f50f3f5, 0x31c4caa4, - 0x12ce5c2, 0x0000e0, 00000000 + 0x12ce5c2, 0x0000e0 }, { 0x5fb0334f, 0x27dab73f, 0x511aa84a, 0x70631b29, 0xa0b6a494, 0x42209c44, 0xfe2fba05, 0x34369af, 0x59754f6e, 0xf91c4a4a, 0xae745a97, 0xba3eb84e, 0xa5f0bed0, 0x9dc841a4, 0x34d62e7a, - 0x858e7440, 0x000090, 00000000 + 0x858e7440, 0x000090 }, { 0x2d4c1194, 0xfcabdf2e, 0xb7772bfd, 0x39cae2c6, 0xd0619570, 0x4a6b99cb, 0xa75361ee, 0x48f35327, 0xd8e1695, 0xf5430f27, 0x57d83d5, 0x639cc541, 0xcaa72b23, 0xd3f434f2, 0xcf4e20da, - 0xe2b9337e, 0x000155, 00000000 + 0xe2b9337e, 0x000155 } }, { @@ -54922,19 +54921,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1143427c, 0x960a9654, 0x243d5fc7, 0xba5cb087, 0x5b916052, 0xa0c1f4d5, 0x851ff7bb, 0x9ff03fa7, 0x5198aab5, 0x7d71717f, 0x6da40bd1, 0x81e0c907, 0x6078bdff, 0x9a62b1d5, 0xe984b597, - 0x29de3179, 0x00004c, 00000000 + 0x29de3179, 0x00004c }, { 0x4fd3fbb8, 0xecd37fb4, 0x9d513669, 0x192ee016, 0xc7e11637, 0xa5792118, 0xbc43c91f, 0x4ddb17f6, 0xfe33bebf, 0xba032d89, 0x87e79389, 0x38816631, 0x8177daa5, 0xa11b803c, 0xa7ef1cd7, - 0x9d44a429, 0x0000ff, 00000000 + 0x9d44a429, 0x0000ff }, { 0xc56e41ea, 0x671aec2, 0x91f96a3, 0x2effb42b, 0xfe4e8d60, 0x5f059b01, 0xcf8f0bb1, 0x9f40d506, 0x2ea76c92, 0xed773a0a, 0x76a80a7c, 0x847c5c0e, 0xae840b2f, 0xaacb5a2b, 0x53c46c07, - 0x6c688b89, 0x00010d, 00000000 + 0x6c688b89, 0x00010d } }, { @@ -54942,19 +54941,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4f6340e0, 0xb98bdfb3, 0x4c6ed6e5, 0xf1def780, 0xa0cd555b, 0xc996ecbc, 0x2b83c607, 0x6c0c7414, 0x6fecaf26, 0x49bd9653, 0x55ded443, 0xf1f1578, 0xb304c7a8, 0xcb0cda44, 0x36cc3ab5, - 0xbc9fc0d2, 0x000145, 00000000 + 0xbc9fc0d2, 0x000145 }, { 0x8843dfd6, 0x5966e4a, 0x96de9984, 0xf99eb0f3, 0x4623e545, 0x13de76fc, 0x81d61ff3, 0x3e0df70, 0xd8fd8934, 0x3a11f0ce, 0xc8c7a2f9, 0x431ee2b7, 0x389630d7, 0xee4a20dd, 0xdaa07e39, - 0xecdbc0, 0x00006a, 00000000 + 0xecdbc0, 0x00006a }, { 0x6004b76d, 0xae860b1b, 0xd870cfdb, 0x9741e55a, 0x1da252b0, 0x303cc0c4, 0xcda7e26e, 0x35d78276, 0xf16c499, 0x14894eb2, 0x9b797dc6, 0x29aaaa23, 0x99c4b2c3, 0x4447c327, 0xf1542d53, - 0x17482cdb, 0x0000f4, 00000000 + 0x17482cdb, 0x0000f4 } }, { @@ -54962,19 +54961,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8491b626, 0xf3fe5c8a, 0x596bc1d1, 0x4415b83d, 0xc616248f, 0x96e71ba2, 0xf9f39ef4, 0x9deef461, 0x4d91ab6a, 0xfa5919c5, 0x2eab03a1, 0xe7d21d95, 0x5e39cc52, 0x4867d16b, 0xd7b5642, - 0xc2424188, 0x000190, 00000000 + 0xc2424188, 0x000190 }, { 0xffaee7dd, 0x884b6296, 0x58b2b3c3, 0xf0da1363, 0x18783432, 0xedc5a971, 0x6767fea1, 0xc8d6f66f, 0xc5f648e9, 0x550ac263, 0x3f6512ae, 0x45d387a4, 0x5809f287, 0x809fb622, 0x1b373bdd, - 0x1d818bca, 0x00017a, 00000000 + 0x1d818bca, 0x00017a }, { 0x60af3718, 0x6e139f4a, 0xb19a07fc, 0x5c5d3e4, 0xfdfb0666, 0x3a6a20c9, 0x73735fb, 0x97697473, 0xafaa9d8e, 0x2c5e3af6, 0xc671306e, 0xf794f458, 0x286e1e6b, 0x4d6c8a55, 0xf04ef078, - 0x6db8c663, 0x000053, 00000000 + 0x6db8c663, 0x000053 } }, { @@ -54982,19 +54981,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6f433730, 0x234541df, 0x8db8e286, 0x5ba04f7a, 0x6f60f8e5, 0xc336e2f1, 0x51903363, 0x869728b9, 0x205d18a, 0xeca2a8be, 0xb422b4ba, 0x6287a6eb, 0x91553c64, 0xd7a684ae, 0x57325403, - 0x4f0ebc74, 0x000024, 00000000 + 0x4f0ebc74, 0x000024 }, { 0xa179cbf6, 0x7cd4eb4a, 0xbd52878a, 0x89191c00, 0xcdca553d, 0xa6c4652a, 0x7da8da0c, 0x3d40a1a4, 0xcb0602a5, 0x58faf5aa, 0x376600d8, 0xe5bdfcb9, 0xb2444a14, 0x3f7d92ef, 0x275d9022, - 0xd8dfdd81, 0x000006, 00000000 + 0xd8dfdd81, 0x000006 }, { 0x945c54ce, 0x5b8dbb16, 0x38ec9625, 0x2b8ae91a, 0xeec8632, 0x91beb760, 0x64accffe, 0xca320a15, 0x53c5bf4a, 0x2e1d7ff9, 0x9b07b3e8, 0xa4444b3, 0x9468393a, 0xe751a7aa, 0xb0d6848a, - 0x7eaeb9a3, 0x0000f4, 00000000 + 0x7eaeb9a3, 0x0000f4 } }, { @@ -55002,19 +55001,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb8d9aacf, 0x30b04a92, 0x3d5642cb, 0x3d315b84, 0x6b7e4da8, 0x8b8001f3, 0xe95750fb, 0x35d55090, 0x40d65543, 0x57d5e2c7, 0xe644d9b9, 0x5f914197, 0xd98f3b45, 0x9f29245f, 0xd0cd6c0, - 0x711bf308, 0x000076, 00000000 + 0x711bf308, 0x000076 }, { 0x9741ab18, 0x30fc9001, 0x8374e5cc, 0xc06932c, 0x68db4189, 0x2d829b08, 0xf63e7c69, 0xd3c58ddf, 0x3eccdb92, 0xfeb231f1, 0xe3f03da1, 0x5b1e4d4e, 0x780011cb, 0x63d513e3, 0x6cbd1c44, - 0xfd152c76, 0x0000bd, 00000000 + 0xfd152c76, 0x0000bd }, { 0xf71f36fc, 0xd42383d2, 0xc9aa8676, 0x6867aca7, 0xa4748877, 0x766c6ce1, 0xe0a25a2f, 0xb5f278f5, 0x7a67fdf4, 0xec94fc37, 0xf8369074, 0xc79912b6, 0xe880f89a, 0xd1278f37, 0xa42bd332, - 0xe4987704, 0x000064, 00000000 + 0xe4987704, 0x000064 } }, { @@ -55022,19 +55021,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x60debf3c, 0x969266c4, 0x735fd8a6, 0x5d5831af, 0x250e251a, 0xdffe8021, 0x38e4a725, 0xe341f9d7, 0xd36b0120, 0x8bfa83ce, 0x463a7f01, 0x84a6f40f, 0xfe929c7, 0x57282253, 0x2be506d8, - 0xe1eb4fc, 0x00009f, 00000000 + 0xe1eb4fc, 0x00009f }, { 0x84ebcf09, 0xc6e54ebb, 0xf44457b, 0xb539d41f, 0xd74cdaa9, 0x25722f0f, 0x46e64196, 0xac995a2a, 0xea11ab79, 0x6daaf8a7, 0x9419c5d6, 0xb9425045, 0x7c8db09c, 0xa84ce059, 0xd5303de7, - 0x848baeda, 0x0001e2, 00000000 + 0x848baeda, 0x0001e2 }, { 0xe93cdda2, 0x2409b511, 0x5754df53, 0x1eeecdde, 0x74d64910, 0x65865ce7, 0x5b94335e, 0x2a626fc1, 0x92174095, 0x425db9fc, 0x21f6ec2f, 0xa3359ccd, 0x2b71f6f6, 0x29db99d4, 0x7c2d6607, - 0x4f88350b, 0x000153, 00000000 + 0x4f88350b, 0x000153 } }, { @@ -55042,19 +55041,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x17ad46fb, 0xff12bce2, 0xb053d1a6, 0x7c3a4090, 0xd9e7259d, 0xa4b68625, 0x546f57b3, 0xf456593f, 0xb7862ad, 0xf93b8b2e, 0x823eec84, 0xa80f4b1f, 0x57d7c04e, 0x52115fe8, 0x43c94d6, - 0x7e37a4f1, 0x000074, 00000000 + 0x7e37a4f1, 0x000074 }, { 0x379449ca, 0x6936caeb, 0xcb4f5124, 0x86bbc8f, 0x77a760da, 0xebcecc7a, 0x62002967, 0xa332f265, 0x23fb0eee, 0x1a4058ee, 0x5b2378b5, 0xccd8fdb1, 0x506722f9, 0x8f665f54, 0xeea4005b, - 0x212d5de3, 0x000163, 00000000 + 0x212d5de3, 0x000163 }, { 0x264919f8, 0x6a878d99, 0x8b256204, 0xadeafe0c, 0x5030b04a, 0x2fab833f, 0x28e0b92e, 0x628a1b22, 0x5b0c3c3a, 0x2f83f6b6, 0xf6e279ce, 0x58b948fe, 0x1534c2a2, 0x3b38bf1c, 0x43f245b3, - 0x2c6cec3d, 0x0000f8, 00000000 + 0x2c6cec3d, 0x0000f8 } }, { @@ -55062,19 +55061,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe8779653, 0xd6d3ed1c, 0xa8be36c3, 0x823726ca, 0x9d10f17a, 0x23c21646, 0x1c5d5895, 0xfff7d033, 0xee922c5e, 0x59077213, 0xa2c09baf, 0x8fad545c, 0xb9956a7e, 0xc55deb9b, 0x15a63407, - 0x10867323, 0x000033, 00000000 + 0x10867323, 0x000033 }, { 0x58be4900, 0x86a80952, 0x9ae64de0, 0xb7cdde80, 0x5a224636, 0x826e5a19, 0x38b80a48, 0x51667e41, 0x638cfaa, 0xb59f44df, 0xf054347c, 0x3bb9c248, 0x408d3f07, 0x93e41c35, 0xf7b0daef, - 0xc16f46fa, 0x000106, 00000000 + 0xc16f46fa, 0x000106 }, { 0x3362fc7a, 0xdd0d03fb, 0x5a0fa518, 0x248a919f, 0x9f6cdc8, 0x8fa4f0c6, 0xd9a79059, 0x954d7386, 0x1adc9f9a, 0x480f2310, 0x96382102, 0xcf6cfd13, 0x114d8120, 0x1d6ec518, 0xbf4809af, - 0xb31e2d82, 0x000184, 00000000 + 0xb31e2d82, 0x000184 } }, { @@ -55082,19 +55081,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xca069d51, 0x8a47f301, 0xcdf6c394, 0xbc472a99, 0x1625bb75, 0xdec4493d, 0xc6108097, 0xf1cef1ae, 0x8466832c, 0xeb5df1ef, 0xbae3c7fa, 0x8880df47, 0x917830ac, 0xebe97ef4, 0x681c961f, - 0xa469fe8a, 0x00003e, 00000000 + 0xa469fe8a, 0x00003e }, { 0x171581e3, 0xf9373c90, 0xe1ca0167, 0x93a4d2db, 0x72185104, 0xe2d04876, 0xdc1c0215, 0x3e7acfdc, 0x47f040ff, 0x227c2067, 0xf05c6289, 0x42eefc49, 0xabd6bdd2, 0xf46819a9, 0xd3a80122, - 0x9df2c3d1, 0x0001f7, 00000000 + 0x9df2c3d1, 0x0001f7 }, { 0x49ee040a, 0x9554a6ba, 0xd40c7471, 0x18f00ef4, 0x27c608f9, 0x3a1af67b, 0xfe55041, 0x6cb61b28, 0xdf3f1326, 0x2a7d83ec, 0xb368d5f8, 0x7aba832e, 0xe88ddf52, 0xe0e892f1, 0xc27ecf56, - 0xadb61c3a, 0x000019, 00000000 + 0xadb61c3a, 0x000019 } }, { @@ -55102,19 +55101,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc9798cd2, 0x8ca11a27, 0x32133009, 0x195fe6c5, 0xb8f3c7d4, 0xc65f3fe2, 0xa9d2cdd3, 0x5cc3fa0a, 0x5f1820e9, 0x6efdc8d1, 0x22f121ff, 0x9af59344, 0xec283cb7, 0x81a97df0, 0x5877633d, - 0x4abc1e90, 0x0000af, 00000000 + 0x4abc1e90, 0x0000af }, { 0xf1b6f633, 0x2c0e7658, 0x3d39a8c7, 0x36addf1c, 0x758a4270, 0x89ad6eda, 0xcbccf318, 0x4cc6e6b2, 0xa2f3843e, 0x741c0958, 0x77a31b29, 0x5775c0ab, 0x43d2d4bc, 0x93d629e4, 0x3e0ae7c5, - 0x264588c1, 0x000131, 00000000 + 0x264588c1, 0x000131 }, { 0xa1976d4b, 0x13cb72a9, 0xb5836e53, 0x9e659ecb, 0xb710f770, 0xa89e29b8, 0x344a1d2a, 0xf7c7bfe2, 0xefc6659c, 0xcffdfdf0, 0x7a2f7333, 0x9c90e8bd, 0x8125bc9b, 0x738404f8, 0x5ff0a377, - 0x56cdb56f, 0x00002e, 00000000 + 0x56cdb56f, 0x00002e } }, { @@ -55122,19 +55121,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4ccb2188, 0xb76cad62, 0xeff1958e, 0x4456a4d8, 0xf82c595a, 0x811e0be0, 0xa94d0382, 0x4022cdd, 0x517f702b, 0x62ce8cec, 0xde21fd2, 0x4a382432, 0xe235fc26, 0xe550e7b4, 0x244369c8, - 0xd93b1ad, 0x000054, 00000000 + 0xd93b1ad, 0x000054 }, { 0x8a3ec73c, 0x9358d935, 0x3831e82, 0x8c4e430d, 0xc642cfab, 0xc7b072e4, 0x2fecf3f2, 0xf3e30b6f, 0x31e4b37a, 0x6366b52e, 0x9385b5d0, 0x97523d2c, 0x1cceeaaa, 0xc6dca4ec, 0xb7b4ea34, - 0x323d21cf, 0x000141, 00000000 + 0x323d21cf, 0x000141 }, { 0x5b55b23f, 0x7b103510, 0x87881a18, 0x1fa605fe, 0x4b63c7ba, 0x3af669e9, 0xcdccd2a1, 0xd62fbd39, 0xb2334ad6, 0x70d14e3f, 0xc8350799, 0x44b1c2a0, 0x905566e8, 0xa68c6e0b, 0x55a711ea, - 0x5574a44f, 0x0001c9, 00000000 + 0x5574a44f, 0x0001c9 } } }, @@ -55144,19 +55143,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x550f8e7e, 0xb2a73c7a, 0xda10a470, 0xa47c3a0f, 0xa8da03bd, 0x1c758ab9, 0x16c9feca, 0x7e4bcb2f, 0x8379bf6f, 0xac34a279, 0xee0a7ac8, 0xe558b2fd, 0x2be7663, 0x6cfedffb, 0xc11b0b4d, - 0xbf9e4137, 0x000167, 00000000 + 0xbf9e4137, 0x000167 }, { 0xa54836da, 0xa387a3c5, 0xb46538c0, 0xfa6ea2ef, 0x78645949, 0x4c8bd380, 0x31e67471, 0xa4b8e0e3, 0x4baef7c2, 0xd0768f43, 0x634736c3, 0xd6709952, 0x7169d03c, 0x38dc8413, 0x5ba9912f, - 0x9dc4972f, 0x0000af, 00000000 + 0x9dc4972f, 0x0000af }, { 0x13e8ab, 0x39be5320, 0xffc8a3e2, 0x98b3f1ae, 0x2f6b4fbc, 0xef7a7562, 0x38cdeda2, 0x7ac1578e, 0x115afb7b, 0x9963bfc2, 0x89859b79, 0x26199792, 0x4f0af683, 0x1f26cf23, 0x8a74a117, - 0x374ae7a0, 0x000041, 00000000 + 0x374ae7a0, 0x000041 } }, { @@ -55164,19 +55163,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x83dc8fa9, 0xa484df19, 0x7a6b3775, 0x7d156369, 0x5721a3cb, 0x181945ff, 0xd2167462, 0x870c20b2, 0x4389063e, 0xcb6015c3, 0x5c4ba0f0, 0xd23d5d87, 0xde2f8e63, 0x1978d88, 0x5c9de88b, - 0x484f23d1, 0x000137, 00000000 + 0x484f23d1, 0x000137 }, { 0x1439994b, 0x4c4e1064, 0x1bd69199, 0x9c78d95b, 0xd9927198, 0x8ddb6f6d, 0xf26eead5, 0xe809e062, 0x92495917, 0xaaa22a2b, 0xd9ab721a, 0xc5d2f7ab, 0xde38d33e, 0xbcbaff0e, 0x597c0237, - 0xf76fa905, 0x00010f, 00000000 + 0xf76fa905, 0x00010f }, { 0xe7c80f9c, 0x4c73725b, 0x9a9fc3ad, 0x71f2d584, 0xc77abab8, 0x89986bac, 0xe02106fc, 0x63ffb03b, 0x9dcb47fd, 0x265affee, 0xc4150239, 0xfceb21cb, 0xb4193183, 0x5a246235, 0x5186edee, - 0xbc23b303, 0x00012f, 00000000 + 0xbc23b303, 0x00012f } }, { @@ -55184,19 +55183,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9e95ffda, 0xa7df485f, 0xba4ae8d6, 0x82113eed, 0xf2786db5, 0x65f1cfd0, 0xd1367a86, 0x500a2db9, 0x55477775, 0x2ba49ffa, 0x2d6e0cc9, 0x8ae11e64, 0x4a0daa30, 0x51e3a63b, 0xb7e29549, - 0x18ea07d4, 0x0000d4, 00000000 + 0x18ea07d4, 0x0000d4 }, { 0x3f49aebe, 0x54e01b3a, 0xa11d0f3a, 0x81d49064, 0xee0d2f62, 0xc45759f1, 0x1aee429, 0x6acf7bfb, 0x20e506e4, 0x90408c31, 0xe04a08b, 0xb0073042, 0x70111f9a, 0x733d2278, 0x917dc8, - 0xafe9b48e, 0x0001c0, 00000000 + 0xafe9b48e, 0x0001c0 }, { 0x4a04aa87, 0x16914d84, 0xc31563f3, 0xf4dc5300, 0x45ede7fa, 0xb4a48632, 0x2674a586, 0x73afa3d9, 0x72718cc5, 0x7c44fb58, 0x7358cfd1, 0xb9ea25b0, 0x32f9bcbe, 0xe0f854ba, 0xbf52a3da, - 0xe1b6e44d, 0x000082, 00000000 + 0xe1b6e44d, 0x000082 } }, { @@ -55204,19 +55203,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x28d6f9dd, 0x29e0a666, 0x1b799d0a, 0x9fbe43de, 0x9ec58b2a, 0xcfcfaa1e, 0x41d4b943, 0xb208599, 0x6b3cf00b, 0x25abfb57, 0x693d3864, 0xedb87e3c, 0x31d1340b, 0xaa286f06, 0xfa8a1397, - 0xef3ef3b6, 0x000135, 00000000 + 0xef3ef3b6, 0x000135 }, { 0x979e5a53, 0x80d6efdf, 0x3605d452, 0x6026a841, 0xe4214c0, 0xb0bd64fe, 0x2dcd7c94, 0x809f413e, 0xc8623151, 0x59f771c5, 0x95491f2f, 0xe0c2650a, 0xdac30709, 0x85eac1b, 0x17b18cd, - 0xffe24f0d, 0x0001c1, 00000000 + 0xffe24f0d, 0x0001c1 }, { 0xf76c1552, 0x94e254f6, 0x935ad5bc, 0x17fa7ada, 0xfcc08998, 0x199ceece, 0x2fabe60d, 0xbec2250b, 0x468f495c, 0xe30cb3e1, 0xe3d0f13c, 0xfa5f48d7, 0xbb87da4f, 0x5857e296, 0x45fb79ba, - 0x4134e93, 0x000002, 00000000 + 0x4134e93, 0x000002 } }, { @@ -55224,19 +55223,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4b1158e6, 0x75edb755, 0x88e0e824, 0xa0b9313a, 0x6966ae7c, 0xe3658e99, 0x11a719e5, 0x166cddc6, 0xcca018c3, 0xfea35a98, 0x6490c921, 0xf059edba, 0xe130b902, 0x2a1315ae, 0x95b44ee5, - 0xea7a795b, 0x000119, 00000000 + 0xea7a795b, 0x000119 }, { 0xb3c4ff4a, 0x3458e2e, 0xfc234acc, 0x46655259, 0x9b006b11, 0x7645792b, 0xae5f50ca, 0x86b71957, 0xca939901, 0xd7ccd3af, 0xbd7703a9, 0x1955e90f, 0x4ca8b614, 0x3007e158, 0xe8f98919, - 0x8fa097ca, 0x0001e4, 00000000 + 0x8fa097ca, 0x0001e4 }, { 0xd92722f5, 0xdf484e07, 0x314ee625, 0x78e9722c, 0xdb3be36a, 0xb83d8e58, 0xe94decc8, 0x28beadf9, 0x153b672d, 0x532c925, 0x901b8fef, 0x94c7ecc4, 0x6203880c, 0x5d3fcbbc, 0xdb8ea522, - 0x9098bf62, 0x0000ab, 00000000 + 0x9098bf62, 0x0000ab } }, { @@ -55244,19 +55243,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf1710c57, 0x20b989d4, 0xa300cf4b, 0xb145df71, 0xa7520258, 0x63788bb9, 0x88ffbe10, 0xbbf1dcbf, 0xc6a3d4b1, 0x717a72bb, 0xc0e9f51c, 0x6fbf8fb4, 0x3c6ed8ca, 0xe75566de, 0x47bc4ea8, - 0xb83151ab, 0x0000e1, 00000000 + 0xb83151ab, 0x0000e1 }, { 0xb6029869, 0x19bed616, 0x99797698, 0x8fc6ebc6, 0xe2a37a67, 0xf09232c9, 0x8ffba6af, 0xebe6a90f, 0xbf13a07b, 0xc81e449f, 0x7e4f03ee, 0x1e0acfbb, 0x66470050, 0x3f8c1c8f, 0x2bcf5660, - 0x780b2a17, 0x00016f, 00000000 + 0x780b2a17, 0x00016f }, { 0x16dbbc2e, 0x79b64c1, 0x8fb17e50, 0x31884171, 0x3ec85bdf, 0x20b002a4, 0x327c9589, 0x6ce9bdff, 0xfb7f92c2, 0xf3c5d8de, 0x8ceccdd9, 0x8834efec, 0xc381f56f, 0xe113496c, 0x3febf719, - 0x67e5b16a, 0x000184, 00000000 + 0x67e5b16a, 0x000184 } }, { @@ -55264,19 +55263,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8527d281, 0x2da1fb92, 0xf6aff840, 0x2743f8b1, 0x91dced37, 0x39ac277f, 0x42652ade, 0x5bb568f1, 0x2195c423, 0xa83bccd4, 0x9987fe91, 0x878b096a, 0xd6074dea, 0xfea3c15e, 0xdbb40209, - 0xd6bdf60, 0x0001ec, 00000000 + 0xd6bdf60, 0x0001ec }, { 0xfe0a958f, 0x4cb6bfed, 0xe450c4f8, 0xc55d63f3, 0x9d9a59e8, 0xbe4fe962, 0x3ecf0268, 0x688f82d8, 0xbeea5b45, 0xd0d0f1dd, 0x55f286f7, 0x8b216ec4, 0xb6840eb3, 0x901d0eec, 0xf048fb75, - 0x15fdb883, 0x00007b, 00000000 + 0x15fdb883, 0x00007b }, { 0x81c010e6, 0x2976bcf2, 0x72608edf, 0x6c1c9f15, 0x2480497, 0x964f5a6a, 0xbee4a2c7, 0x68702445, 0x1e8e05bc, 0x2b69595c, 0xb1c8fddc, 0xb802b3f2, 0x8537e5fa, 0x1e6c8e47, 0xfec760de, - 0xa7f1e5de, 0x0001a0, 00000000 + 0xa7f1e5de, 0x0001a0 } }, { @@ -55284,19 +55283,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4cde05cc, 0x8cec594e, 0x1a1d9a56, 0x44823bfd, 0xc789f2df, 0x1019dcd4, 0xa254eb30, 0xbe7a98fc, 0xf590abc0, 0x4e38b5a6, 0xb08f2ce9, 0xac790862, 0xc598911, 0xf656383f, 0x42d3d367, - 0x762f12cf, 0x0000d6, 00000000 + 0x762f12cf, 0x0000d6 }, { 0xc126f846, 0x8a4eb99, 0x6000dc5e, 0xbd1d53b6, 0x2db9332, 0x7bbebd84, 0x56245ed4, 0x9cf329b5, 0xe69b6f05, 0xc2260fc7, 0x256ddfc9, 0xd4c5eea5, 0x97093981, 0x4d9417c5, 0x7bff6edf, - 0x8719d6d9, 0x0000c9, 00000000 + 0x8719d6d9, 0x0000c9 }, { 0x25daab09, 0x650aac8e, 0xd7ae6da, 0x184ed9a0, 0xdad8dcb2, 0xd1bc36eb, 0xda476b41, 0x2102652e, 0x4393516f, 0xad017e5d, 0x67e2e726, 0x9769e018, 0x3aabfec8, 0x967f422b, 0x18cc9fc, - 0xcd2621ae, 0x000005, 00000000 + 0xcd2621ae, 0x000005 } }, { @@ -55304,19 +55303,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdee26cd5, 0xf1446f09, 0x64dc2468, 0x269b8bde, 0x3909a4b4, 0xd639abcc, 0x94e92a87, 0xd800b44a, 0x291de1e7, 0x7aee0b95, 0x90cee6ff, 0xf4ba9135, 0xa55d2279, 0x623e0e28, 0x8500d0df, - 0xdcc4b1e4, 0x000098, 00000000 + 0xdcc4b1e4, 0x000098 }, { 0x22233da2, 0x692f1589, 0x100a1871, 0xebf123ce, 0x11df5df6, 0x41558af4, 0x936509e1, 0x121f595b, 0xa40c65a1, 0xac9bb687, 0x47ffb557, 0x98b7cfb3, 0x254e102a, 0x8d791aae, 0x15359a60, - 0xcbd10f3e, 0x0001b2, 00000000 + 0xcbd10f3e, 0x0001b2 }, { 0x6cc9b9c5, 0xca6a8503, 0xd74b8af2, 0x1b571010, 0x722f7408, 0xed30ce9d, 0x1c22bee5, 0xe9977d3d, 0x13fa7750, 0x1d1967a6, 0xc647e94d, 0x7aa10d6d, 0x8de6bc7d, 0x1d55957c, 0x1e27cfea, - 0x7d42bfab, 0x0001ae, 00000000 + 0x7d42bfab, 0x0001ae } }, { @@ -55324,19 +55323,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d56f455, 0x6c0bb733, 0xd7d62100, 0x8f0dff7, 0x9ac89833, 0xc32ec45, 0xa0ea4ce, 0x93941544, 0x546f6a9f, 0x927177a4, 0x4510ddbd, 0x3f1fc526, 0x4691ccba, 0x9288e50f, 0xf16aaa7e, - 0x70aba901, 0x000109, 00000000 + 0x70aba901, 0x000109 }, { 0xb1440d51, 0x3e6458f0, 0x1c7c2846, 0x153d88ed, 0xbaee94ff, 0xf1062644, 0x891b68a5, 0xeeece6e8, 0xf0250c74, 0x75ba663, 0xdf7d703e, 0x1ee092b0, 0xdaa8961b, 0x67e8d3bb, 0x27ef8c6b, - 0xd2e2ae25, 0x000021, 00000000 + 0xd2e2ae25, 0x000021 }, { 0xabc9efc5, 0xc483b828, 0xc6cf7fc1, 0xa4ad2667, 0x84571467, 0xa2ea4f64, 0xc47a281, 0x78cbffd4, 0x48437a19, 0x3c3e3f7c, 0xc150d846, 0x997c0f06, 0x9b1d7cf5, 0x721384d0, 0xc553c21d, - 0x9d50c5b8, 0x000171, 00000000 + 0x9d50c5b8, 0x000171 } }, { @@ -55344,19 +55343,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x11824e24, 0x93711b0d, 0x5f9a840e, 0x88b1d8e6, 0xa350645c, 0x827ce466, 0xbbe6e31b, 0x6839de39, 0x89bebc3f, 0xd1828840, 0xc3a9dbd0, 0x3e62a6b1, 0x2147802c, 0x26808edb, 0x8b41f817, - 0xc3774fad, 0x000192, 00000000 + 0xc3774fad, 0x000192 }, { 0xe05331a1, 0x1f9d140b, 0x85e9a46, 0x93a4a64e, 0xa9303475, 0xb960f76a, 0x2aae76e9, 0x6475e236, 0xbaca122c, 0xddd7c113, 0xdaff98c, 0x49376a75, 0x4a70eb6e, 0x8b2d1ded, 0x8f2ef8a9, - 0x19923873, 0x000025, 00000000 + 0x19923873, 0x000025 }, { 0x41ba89f7, 0x3a73b432, 0x17f1ee6b, 0xf873933c, 0x58319c23, 0xe7e625c7, 0xb4f09e62, 0x24b04dba, 0xcd965c39, 0xe11548d7, 0x4454712c, 0xb0826ba8, 0x4283abae, 0x5ad5242b, 0x41467cce, - 0xda50003a, 0x000002, 00000000 + 0xda50003a, 0x000002 } }, { @@ -55364,19 +55363,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x45efe57, 0xf6671f5b, 0x577df1a6, 0x72e80624, 0xc954bce4, 0x1581489b, 0xaa9c4aab, 0x296288ae, 0x5f4ed138, 0xf18b466b, 0x6c64a1ae, 0xbfb643d, 0x34ba2c7, 0x77734df4, 0x30d06e04, - 0x9e9697ef, 0x0000f6, 00000000 + 0x9e9697ef, 0x0000f6 }, { 0x64c44736, 0xba1f5f65, 0x2a13f1e2, 0x5840f79d, 0x150e724, 0x35f6ead2, 0xa1912c8b, 0x84f544d6, 0x8b64acd8, 0x1963030a, 0x2e8843ec, 0x96784163, 0x40657bc9, 0xa5e80091, 0x96e7f1d, - 0x8b59951d, 0x000117, 00000000 + 0x8b59951d, 0x000117 }, { 0xf0f12212, 0x16a2ddf5, 0x4f12c91, 0x239ee3b2, 0x631b086a, 0x2435c1a3, 0x82302d5c, 0xef3a6031, 0xc464ad70, 0x8114f7f6, 0x9fceec40, 0xea9f2222, 0x81cbac5f, 0x7599c94c, 0x9dce1b4b, - 0xdde7d017, 0x0001d0, 00000000 + 0xdde7d017, 0x0001d0 } }, { @@ -55384,19 +55383,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1cda626a, 0x7c73e4a5, 0x7f4fbf70, 0x2621637f, 0xef6bb5e6, 0x8f734ff2, 0xfbd5a4fd, 0x5db2bebf, 0xc8eee127, 0x23f243ca, 0x4ab4b8f3, 0x8752bee0, 0xbf0689eb, 0x6a8e8579, 0xd22c5302, - 0xda127f8a, 0x00003f, 00000000 + 0xda127f8a, 0x00003f }, { 0xd6e311a9, 0xf2a37449, 0x8c6f58ff, 0xaa952fa2, 0x2e9a4f6a, 0x73f36f4d, 0x1415ecbc, 0x34226bf7, 0xd8946d75, 0xc87f6846, 0xcb7b1823, 0x7384ffd1, 0x15a1a067, 0xd61f73c, 0xdca567d4, - 0xff5fd27a, 0x000119, 00000000 + 0xff5fd27a, 0x000119 }, { 0x4f087921, 0x347dca5, 0xcf7630e9, 0xf924f583, 0x848a65a5, 0x12427f3b, 0x75aaf6e9, 0x2d91ce84, 0xed523a9a, 0x9d47efae, 0x79ba415c, 0x3da0ec36, 0xe597acc0, 0xcb40cb33, 0xb098d1c4, - 0xf7f13a38, 0x000114, 00000000 + 0xf7f13a38, 0x000114 } }, { @@ -55404,19 +55403,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfdda98d, 0xa5150fc, 0x4eb65755, 0x762e166d, 0xc432454f, 0xfc7d96f8, 0x9d823417, 0xc080f9c0, 0xd9585901, 0xa67b495f, 0x48b9ae, 0xed81ffd1, 0x4b44a6ee, 0xea6f98e7, 0x4442682, - 0x3fdd7bbe, 0x000102, 00000000 + 0x3fdd7bbe, 0x000102 }, { 0x99975798, 0x3d1bf252, 0x95af72c2, 0x95510417, 0x645e11ba, 0x17b5cc87, 0xb5c0e9d9, 0x4dc9f136, 0x45d9119c, 0xdeaf966d, 0xe7f20b, 0x3c47f547, 0xa622be8a, 0x207ddce, 0x1eb0ee1, 0x535a725d, - 0x000117, 00000000 + 0x000117 }, { 0xe975e3db, 0xe70ad0e9, 0xa8272723, 0xcc008294, 0x1b0fd869, 0xfd0a5fc0, 0x85b34a73, 0x5f046bdf, 0xd471e9e2, 0x80881313, 0xf88fe286, 0x4e55b472, 0x10b871bb, 0x24083d3d, 0x3db2f313, - 0xc5bd1350, 0x0001cd, 00000000 + 0xc5bd1350, 0x0001cd } }, { @@ -55424,19 +55423,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9dff1931, 0xb017370a, 0xffa1d625, 0x19ed1dc8, 0xf326beff, 0x19d47b9b, 0x14e59982, 0x5f89a1c4, 0x2c3c56b9, 0x38f12993, 0xf4658937, 0xd5a564f5, 0xdf769212, 0x231aebf, 0x5ea10469, - 0xd099e7f1, 0x0000f3, 00000000 + 0xd099e7f1, 0x0000f3 }, { 0x5e3cba51, 0xf25dd1da, 0x45ff95b4, 0xbb31b8b3, 0x94c88569, 0xe699f283, 0x53e4a76d, 0x67cdf20, 0x184fc79f, 0x6ab796dc, 0xb1a2a9fd, 0x16bb7846, 0xf0274ad1, 0x5c94e278, 0xddb0ce18, - 0x38411636, 0x0001e9, 00000000 + 0x38411636, 0x0001e9 }, { 0x1d06a72f, 0xb6a52d1f, 0x2b14b59e, 0x4bed83c9, 0x15d12fe1, 0x6bccdd13, 0xccea128d, 0xce301b52, 0xada8ba61, 0x1f1796f7, 0x396b8d9d, 0xe09b19ca, 0x68824472, 0x9012f0ba, 0xd875e818, - 0x3cd3b46b, 0x000054, 00000000 + 0x3cd3b46b, 0x000054 } } }, @@ -55446,19 +55445,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd337b2a7, 0xa5465d39, 0x18bd4fd6, 0x40ec64de, 0x4c365f60, 0x739f6d8b, 0xfe19c3bb, 0xd4114433, 0xb9bc5e62, 0xb7e0f9de, 0xd0cb3d72, 0xc757399a, 0x4d08c4b2, 0x1b8fe3f0, 0x169a5318, - 0x797b75a0, 0x0000f8, 00000000 + 0x797b75a0, 0x0000f8 }, { 0x3e70459f, 0x5d164ec9, 0x1451fa78, 0xd982828c, 0x75bd2919, 0xdc8bd15b, 0x4ed89866, 0xa0827a89, 0xd061b25d, 0x7d0a5209, 0x49f7464f, 0xc12a4885, 0x309f0b13, 0x8a7b2819, 0xbf509d4e, - 0x379ebe08, 0x0000b8, 00000000 + 0x379ebe08, 0x0000b8 }, { 0x79c6e19b, 0xbb339a7c, 0xe1f32c49, 0x74340f11, 0xfcd13691, 0x3e754ab7, 0x3684fbf0, 0x9400bbf6, 0x11f6731d, 0x6f06b25d, 0xa4ab5cf, 0x88f9973e, 0x18d6526e, 0x5da3ef90, 0x1bc7ad41, - 0x97f55bdc, 0x0000e4, 00000000 + 0x97f55bdc, 0x0000e4 } }, { @@ -55466,19 +55465,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4a46237b, 0x2d1e40e, 0x18fcb056, 0x6bc70cc8, 0x9ab4814b, 0xee384e00, 0x445f324d, 0x1afc1e13, 0x93518602, 0xcc93dd8e, 0x649478ef, 0x498a8032, 0xb600a2d2, 0xb3fb2066, 0x2a46975, - 0xd33769cb, 0x0000af, 00000000 + 0xd33769cb, 0x0000af }, { 0xb9925fad, 0x1c4bb0bd, 0x7c65decc, 0x3f287fa0, 0x80acb444, 0xba6ebe72, 0xf6a214f2, 0xbf0788d0, 0x6a9da7f9, 0x1b1f4b99, 0x677314f2, 0x4519bc85, 0x774daea7, 0x7b9a5374, 0x28abc049, - 0x558ae6b4, 0x0001a8, 00000000 + 0x558ae6b4, 0x0001a8 }, { 0x6f5a89cb, 0xd4c2bcba, 0x20da4536, 0xf4b9cd34, 0x6d35be07, 0x24167a87, 0x3b1c3f24, 0x16b15e1e, 0x4ae07f2f, 0xc953373b, 0xef58080d, 0x30eb465c, 0x7bd3d12f, 0xee25723, 0x36fa27ee, - 0x41084c9, 0x000006, 00000000 + 0x41084c9, 0x000006 } }, { @@ -55486,19 +55485,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x931d765e, 0x59a2c909, 0x70b06814, 0xf4527c02, 0xdb3e2a04, 0x4772ea0, 0xddc5b8a6, 0x8d6c46d, 0xeed35bc0, 0x6b47686a, 0x3960e094, 0x4927458a, 0xa7365b65, 0xd05b7518, 0x1d3f4226, - 0xb798f8e, 0x00000e, 00000000 + 0xb798f8e, 0x00000e }, { 0x9d57bedd, 0xc5aef910, 0xa9f44663, 0x8b3c82cf, 0x8e1ffc75, 0x4d4ea110, 0x6adc533d, 0x70855534, 0xe635dc37, 0xa28c116, 0xaaa3aad4, 0x596ff49a, 0xe007cfdc, 0xc6af2049, 0x4d722b50, - 0x10606f84, 0x00008e, 00000000 + 0x10606f84, 0x00008e }, { 0x64254ef1, 0xbfe53dbe, 0x379a80bc, 0xf07ce58f, 0xce60d8b4, 0x102f5a21, 0xf41c4528, 0xed4001ef, 0x5ebe40fc, 0x2bd31489, 0x34d88f5b, 0x3db98bb0, 0x7c9fca46, 0xbfe42718, 0x66446d11, - 0xb693742c, 0x00012f, 00000000 + 0xb693742c, 0x00012f } }, { @@ -55506,19 +55505,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8cbe71d5, 0x23e10ea3, 0x5bcd9e2a, 0x8be64675, 0x1ac97bc, 0x4d3d608e, 0x908578f4, 0x587b459d, 0x74f5af84, 0xc33495de, 0x59a63387, 0xfed845c5, 0xe85413b1, 0x4096f804, 0x57331f47, - 0xf908880d, 0x00011a, 00000000 + 0xf908880d, 0x00011a }, { 0x17f79de5, 0x210ac50c, 0x98125ee0, 0xe1665119, 0x121b4b23, 0x4e253171, 0x72d7e806, 0x5b3b599f, 0x156184ab, 0x8a311b80, 0x524fa33f, 0xa057c85f, 0x9c0d0c49, 0xcdaf4b6c, 0xea13f109, - 0x49c60dd1, 0x0001ce, 00000000 + 0x49c60dd1, 0x0001ce }, { 0x40625034, 0x22838d6e, 0xb69c3336, 0x300cd5f2, 0x337cd2d4, 0x8c1c1b74, 0x6b02e812, 0x386898f4, 0xa1422882, 0xf1c5c188, 0x6ce56eeb, 0x1682766b, 0xaa8fc563, 0x9fcc02dd, 0x47c94e77, - 0x8d1d751e, 0x000085, 00000000 + 0x8d1d751e, 0x000085 } }, { @@ -55526,19 +55525,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1c89ab85, 0x8a514ff3, 0xf74ba2ca, 0x6ec16577, 0xd11acde6, 0x531ecc27, 0x297d7593, 0x1be002e6, 0x9d60a790, 0xe3a2f75, 0xa726ae1d, 0xe4c4153b, 0x7b301caa, 0xb4ae21f, 0xd8d032d8, - 0x5567e17f, 0x00015e, 00000000 + 0x5567e17f, 0x00015e }, { 0xe32a772e, 0x272cae23, 0x6d11d3a1, 0x883a451a, 0x530fdf26, 0x8f6720b9, 0xca8d0f1c, 0xc1236c76, 0x6283f83, 0x2443d1ae, 0x6c75d123, 0x2047cf1b, 0xd7ab2e86, 0x969469e8, 0x3231d5be, - 0xdb02c617, 0x000135, 00000000 + 0xdb02c617, 0x000135 }, { 0x40fa18ca, 0xbe329cb2, 0x4bc8f534, 0xbad6e9b5, 0xdf0d17cd, 0x2c809573, 0x3e498f34, 0x19f1d84f, 0xc6dc3e04, 0x5b1c22b, 0x5c80d7ed, 0xd81427e1, 0x7db49f76, 0xf581588e, 0x50e9558b, - 0xa1b8ccd5, 0x00009e, 00000000 + 0xa1b8ccd5, 0x00009e } }, { @@ -55546,19 +55545,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x386fe952, 0x610b309a, 0xac5a1135, 0x913e0dbf, 0xfc189545, 0xcab5415, 0x580907c, 0x9b866fc4, 0x48748585, 0xce8607fe, 0xda5a6d38, 0x62de4f5, 0x4d44b8d9, 0x69d89708, 0x748a2656, - 0xc816daef, 0x00018c, 00000000 + 0xc816daef, 0x00018c }, { 0x6f38e2b8, 0x64bb6fa5, 0x32dd3694, 0x585f5c14, 0xb289745a, 0xd02e6b73, 0x91777625, 0x474733f9, 0xf4daf2fe, 0x3411e0b2, 0x910fb516, 0x63dc48b0, 0xebaf9cd1, 0x7b6ba2bb, 0xf28cec55, - 0x736e97f8, 0x000173, 00000000 + 0x736e97f8, 0x000173 }, { 0xe57b42b1, 0x356c73d7, 0xa04c8f98, 0x15abc91d, 0x1538cc7a, 0x99a2acce, 0xc556a8c9, 0x247882a3, 0xf0293b95, 0x60f2071f, 0x12f5e148, 0xf2a7c7fb, 0x86a3f69a, 0xf8b49ab6, 0x1dce593, - 0x758d533e, 0x000177, 00000000 + 0x758d533e, 0x000177 } }, { @@ -55566,19 +55565,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7b44366a, 0x9077566b, 0xa2f5554f, 0xd4990ed2, 0x1577d024, 0xc637721b, 0xe52152a2, 0x5df295b8, 0xa21aa294, 0x6f9a512f, 0x3100f0f4, 0xcaa40bf3, 0xe0e86620, 0xcce6a776, 0x342e365d, - 0xfee618e7, 0x000058, 00000000 + 0xfee618e7, 0x000058 }, { 0x525b08bc, 0x988ab677, 0xc81c8158, 0x707acd5b, 0x89b47d93, 0x91543d2, 0x5ef17e6d, 0x45d9c8a1, 0xfcc8cbbc, 0x65acd305, 0xde5e80d4, 0x8e484fd9, 0xf39ddc88, 0xd4cbe1cd, 0x77bc401d, - 0x23cb202d, 0x0000f1, 00000000 + 0x23cb202d, 0x0000f1 }, { 0x2e4169d4, 0xb695da6c, 0x5585bbd7, 0x7f8c2491, 0x18865050, 0xed664b74, 0x3040c71c, 0x925c0486, 0x7c2cea29, 0x3cf11b55, 0x4d4d19d5, 0xd83d9203, 0xba4951b3, 0xa449c8c6, 0xf35441cc, - 0x2c619ca4, 0x0000ac, 00000000 + 0x2c619ca4, 0x0000ac } }, { @@ -55586,19 +55585,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8fc47d36, 0x154832bd, 0xb9f054ab, 0xddd307ce, 0xa14fef20, 0xaa1a5ad8, 0x5fc40ae5, 0x52695b20, 0xc1ced829, 0xeda6bc12, 0xf149efaf, 0x526895ce, 0xf6be7636, 0x883a185f, 0x4052c8a8, - 0x8773961f, 0x0000fe, 00000000 + 0x8773961f, 0x0000fe }, { 0xf36f80c3, 0x2aa8ee4b, 0xd7bfeeba, 0x5fbba468, 0xb90e925, 0x670b4d4b, 0x56e64a07, 0x394ee506, 0x9b5fe81f, 0x49c6d362, 0x71599ba3, 0xeee13b40, 0x68461110, 0x17fef6c5, 0x6d54f054, - 0x5b40c246, 0x0001bd, 00000000 + 0x5b40c246, 0x0001bd }, { 0x6d051db6, 0x95714a3b, 0x398cd546, 0x66ccb175, 0xb10e78df, 0xeb17dad4, 0x4359e075, 0x55b9aaa, 0x2e9a71a5, 0xd79462f6, 0xae27b51f, 0xa23d665d, 0xee6f9090, 0x9a2cdee0, 0x8569bb18, - 0x7bcfe62d, 0x000050, 00000000 + 0x7bcfe62d, 0x000050 } }, { @@ -55606,19 +55605,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x148ccc78, 0x621e6d71, 0xf7e3165a, 0x1c40b57e, 0xda71daa5, 0x26c61e0d, 0x34fc9df2, 0x8e0e4b96, 0x57e3ec6f, 0xe05cd082, 0xd8cae402, 0xf47a481c, 0x7ee68d0, 0x3b7c9904, 0x447be527, - 0x1916f95e, 0x00005c, 00000000 + 0x1916f95e, 0x00005c }, { 0xf257dfd1, 0x97bd0ce6, 0x3ade04ad, 0x14ab844a, 0x6bfc584d, 0x37f65c2, 0x386037e4, 0x48eb4045, 0xeef12418, 0xb8b3b14d, 0xce3c3d78, 0x3b58dad7, 0xb3e96035, 0x9154e708, 0x950482f5, - 0xab4e5775, 0x0000e9, 00000000 + 0xab4e5775, 0x0000e9 }, { 0x83c958aa, 0xcfc91869, 0x8046ac96, 0x6ac60fc5, 0xa2609df8, 0x2917dcb1, 0xf61fac61, 0xe2d4f899, 0xd4b6b957, 0x482dcaad, 0x512e1337, 0x45a4d6c1, 0x3d271741, 0xbc01460e, 0x43645ba1, - 0x4850ee03, 0x00016a, 00000000 + 0x4850ee03, 0x00016a } }, { @@ -55626,19 +55625,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe509c494, 0xdfc38582, 0x57ece5f4, 0xecf01fcb, 0x48df1eda, 0x2fec4e49, 0xa5da942a, 0x25756ed, 0xbbaa1106, 0x121ef7e, 0xe2183e7, 0x6ccc3a3f, 0xa76b7ac4, 0x59605bf5, 0xa8cc628a, - 0xab152bf3, 0x000117, 00000000 + 0xab152bf3, 0x000117 }, { 0x3e6bec9b, 0xfe8539b7, 0x81aea5a6, 0xf8f473c9, 0xec50aa93, 0xc6ecc6b1, 0x10254c2e, 0x614ffb88, 0xd817c30a, 0xdc1c2acc, 0x846f6a5d, 0x39f6dd5b, 0x12e78ac4, 0x2db349de, 0x80e159fe, - 0x709aa55c, 0x0001e4, 00000000 + 0x709aa55c, 0x0001e4 }, { 0xa6924485, 0x932bffb2, 0x62a2e63, 0x5adffe48, 0x22d258dd, 0xf4659539, 0x170f03f2, 0xb533f004, 0x3329316e, 0x17751ac5, 0x325c2fbe, 0xefecd1c0, 0x1c5ebd94, 0x726f4c18, 0x74d34aa7, - 0xd61c5e45, 0x00015a, 00000000 + 0xd61c5e45, 0x00015a } }, { @@ -55646,19 +55645,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb28a7c42, 0xf2d7a8e8, 0xe0cc2b16, 0xab8eb516, 0x5406afb0, 0x733d81e0, 0xb68fdd1a, 0xa4d94c3d, 0x5273460b, 0x841158f, 0xf8545cc2, 0x784fd5b2, 0x2882aaa2, 0x3b406d9d, 0x1699e287, - 0xf5d14ca2, 0x000059, 00000000 + 0xf5d14ca2, 0x000059 }, { 0xcded10ab, 0xa5f341d7, 0x6d0b3ec1, 0xf8ac5680, 0xe3bc1855, 0x16a16b34, 0x18633565, 0x48467b99, 0x6a715524, 0xf202c018, 0x9313124a, 0xaeef0d69, 0x622cad3d, 0x849fffa5, 0xcd4a9de3, - 0xfcd04625, 0x0000e5, 00000000 + 0xfcd04625, 0x0000e5 }, { 0xeaa23878, 0x16accb78, 0x80f07cd4, 0xf3baaf88, 0x832b9047, 0xa30b98e9, 0x45c45d31, 0xbd19a41b, 0x31ee9cc1, 0xf3519c5c, 0xd560ad58, 0x8aa2f82a, 0x712fd7a2, 0xabe6b8e7, 0xa7307533, - 0x2e2917d8, 0x0001d5, 00000000 + 0x2e2917d8, 0x0001d5 } }, { @@ -55666,19 +55665,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6d05b98b, 0x5b4115db, 0xa43f4175, 0xdbbe2ce6, 0xf77dff09, 0xd88b7226, 0x7269231, 0xa7f14737, 0xa98ea310, 0xeb8cd646, 0xc9cb1fe9, 0xc8ef27f7, 0x5b8c4fe6, 0x17998a4e, 0x9b9116b6, - 0xf59d9447, 0x0001cf, 00000000 + 0xf59d9447, 0x0001cf }, { 0xf3c0b4b0, 0x65b8ee82, 0xea50fb04, 0x9bd81242, 0x2c075cf6, 0x13df3fc9, 0x382e957a, 0x75b4b189, 0xd4f80e95, 0xeba5fe0e, 0x5b28026e, 0xc63faca4, 0x622431b5, 0xafdfd4a1, 0x876f74d3, - 0xff715f4, 0x00013e, 00000000 + 0xff715f4, 0x00013e }, { 0x54542e2, 0x47828b9, 0x96144046, 0xfffaa6b6, 0xbf26bf07, 0x3cc86414, 0x44ae185c, 0xf5f89c14, 0x304f9ea8, 0x57345364, 0xd9871b70, 0x4291f146, 0xc4be7bfd, 0xe2ca7edf, 0xe797377b, - 0xf6b82499, 0x00017b, 00000000 + 0xf6b82499, 0x00017b } }, { @@ -55686,19 +55685,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x189262d8, 0x3d11c717, 0xc05bdba7, 0xc2572cda, 0xdcf81e7a, 0xd032dc7f, 0x54f6b3fc, 0xb0d134f7, 0x43738587, 0x632d03e7, 0x9513124b, 0x3118151, 0x76b3393f, 0xdae1ad42, 0x4fdd8662, - 0x9f143d1c, 0x0000e8, 00000000 + 0x9f143d1c, 0x0000e8 }, { 0xba996eb, 0x92fe9cf3, 0x46139a9b, 0x7d6f59f9, 0x8245e5fb, 0x19d0db41, 0x34691ac7, 0xfb6fb22f, 0x2826e6c6, 0x9bba686b, 0x8b899bc7, 0x35d61866, 0x1026aae5, 0xe40ff86c, 0x1e46ac23, - 0xf070ab17, 0x000107, 00000000 + 0xf070ab17, 0x000107 }, { 0x6009c532, 0x1dfd1912, 0x8ae36642, 0x37971614, 0x4aa8a033, 0x7e1521b0, 0x78a0227a, 0x8f02d78, 0x7bec00f1, 0xeb4eef85, 0x402c3bc7, 0x926093a, 0x43b7e107, 0x26783adc, 0x31659b09, - 0xebb03e35, 0x00005c, 00000000 + 0xebb03e35, 0x00005c } }, { @@ -55706,19 +55705,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf627b965, 0x93b3ed92, 0x60a84791, 0xc8fabe9, 0x4bd352b0, 0x72a482c0, 0xbec52b02, 0xb8b26a94, 0xf465c33e, 0x509039fd, 0xb7e673ba, 0xed7a4dff, 0x720ba395, 0xd0c5708a, 0x16b20343, - 0x16278b23, 0x000005, 00000000 + 0x16278b23, 0x000005 }, { 0x804ee581, 0x463000e9, 0xac1111f, 0x21bd7a80, 0xf6dc099, 0x15f44f21, 0xd577e172, 0x8983e469, 0x1866ead2, 0xafcee7c1, 0xe3f80c36, 0x9d2212a0, 0x622de978, 0x37ed5d53, 0x822dd5b3, - 0xf80ea362, 0x000171, 00000000 + 0xf80ea362, 0x000171 }, { 0xf7c3d055, 0x60b84649, 0x5dd48aef, 0xee6202d0, 0x2b0a2a57, 0x8ae9d50c, 0xb2f3c068, 0x5a4d6b8c, 0x7c2123b3, 0xb3db3d2b, 0x87c912bd, 0xe9b3c37f, 0x7000950, 0xb27d5520, 0x8643272d, - 0xe5ef98ea, 0x00008f, 00000000 + 0xe5ef98ea, 0x00008f } }, { @@ -55726,19 +55725,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x57156e2, 0x806848a2, 0xf0eaba8d, 0xea23a835, 0xcdf261b6, 0xb4c3ab0c, 0xe6b4c3ce, 0x97ea242f, 0x627950cd, 0x21c4e8a7, 0x4e19cf1a, 0x63c2f9e2, 0xfcb143b8, 0x45807c51, 0x9354a86b, - 0xf2cce34, 0x000178, 00000000 + 0xf2cce34, 0x000178 }, { 0x8fd5ddf7, 0x70191c2, 0x4dbc7c6c, 0xd74bd26a, 0xa863fac3, 0xac8058e0, 0xc50673c6, 0x2f6e2c5b, 0x7ce3e762, 0x84f66570, 0x789df6ed, 0xa292f210, 0x2d548664, 0x43b04f3a, 0x583f199c, - 0x5450aebf, 0x0001e0, 00000000 + 0x5450aebf, 0x0001e0 }, { 0xd5046d4e, 0xa40d172d, 0x5f69ca24, 0xec8e1206, 0x69523d71, 0xc4267bd4, 0x8baa3af1, 0xb31457ca, 0x7ad84660, 0x4560bfb, 0x5a59888e, 0x2cef63f2, 0x632e5dc6, 0xb8f50f73, 0x4bf2cc77, - 0xf3d4e181, 0x00012d, 00000000 + 0xf3d4e181, 0x00012d } } }, @@ -55748,19 +55747,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x51033c13, 0x296b90f2, 0x3ac352c2, 0x2aa790bc, 0x1e04e071, 0x91e3119e, 0xca485514, 0xe6dfa4c8, 0x88c23bae, 0x582d3c5a, 0x64b5a9e2, 0x494371b5, 0xf0c88ede, 0xa920af34, 0x15292ad2, - 0x4a86f35f, 0x0001fd, 00000000 + 0x4a86f35f, 0x0001fd }, { 0xcd669bb4, 0xe57b376b, 0xb21804c3, 0xf0239c73, 0x33826007, 0xfc547066, 0x37cd2d7b, 0x4e5b3a92, 0xc17d639a, 0xaef244ae, 0xada5d45a, 0x1031122d, 0x3b6340fd, 0x5205cb33, 0xa3867dfa, - 0xd8d6da3a, 0x000020, 00000000 + 0xd8d6da3a, 0x000020 }, { 0xf4794875, 0x4511ed4c, 0x44c14cf0, 0x2823d2bc, 0xc645edbe, 0x724d5480, 0xf413281f, 0x3af8fe47, 0xc6d1b2f3, 0x60e5b0f1, 0xb4b9fc7f, 0x488ecfb2, 0xc25c74b, 0xa7f9c7b4, 0x979e11ee, - 0x5047b135, 0x000028, 00000000 + 0x5047b135, 0x000028 } }, { @@ -55768,19 +55767,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe8248d4c, 0xf04215b0, 0x299113fd, 0xd6930a40, 0xe4109924, 0xacfa797, 0x1961e981, 0xd25bd6ff, 0x32b25ac7, 0x904adc03, 0xc4b56b2d, 0x708e0f5d, 0xde945006, 0xad3d2f68, 0x989f2412, - 0xfeddf6f7, 0x00019a, 00000000 + 0xfeddf6f7, 0x00019a }, { 0xf0ef351e, 0x57ee78b9, 0x9afd6c2e, 0xb4b17938, 0xee4e071b, 0xd8f657ef, 0x712f5c3e, 0xf3deec3, 0xfca26ae9, 0xbc794f76, 0x1a543a6b, 0x5f8b1d14, 0x236585f1, 0xb8a716dc, 0x44c0fe43, - 0x152b17fe, 0x000170, 00000000 + 0x152b17fe, 0x000170 }, { 0xc93dc3ae, 0xcd78b7bf, 0xc73f9e96, 0x467a743e, 0x8fed41c, 0x1f0466bc, 0xe8fbeb28, 0x176bc390, 0xba937955, 0x4e064220, 0x74eaf8a5, 0x837970c2, 0x21ab948, 0x35889af9, 0xcf980a25, - 0x409995be, 0x0001fd, 00000000 + 0x409995be, 0x0001fd } }, { @@ -55788,19 +55787,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2fa27f7, 0xcb370033, 0x2842015b, 0xedc3e022, 0x1c45e710, 0x671bee66, 0x24c59226, 0xf0fb3fb4, 0x3018382d, 0x1cb357b0, 0xad11f744, 0xdd059fe2, 0x65fc74a1, 0x6b23b454, 0x555d2e04, - 0xfc3951c2, 0x0001ec, 00000000 + 0xfc3951c2, 0x0001ec }, { 0xb9436767, 0xd9f61de6, 0xe3ac9a34, 0x1635f8be, 0x38bd8fbf, 0x886e15c6, 0xc5ee8c5d, 0xdc192b22, 0x9221f130, 0x4df7ad4, 0x8f636a21, 0x731cf5fa, 0x866c1bea, 0x5e7f5074, 0x2e0f0deb, - 0xd501672a, 0x000040, 00000000 + 0xd501672a, 0x000040 }, { 0x9932d6d2, 0xe41fae16, 0x72b85f81, 0xe09f09c4, 0x975092ef, 0xa7002e84, 0x2d329eb, 0xb97baaf0, 0x2c195b0d, 0xcc15d7d1, 0xe14b1fe, 0xc44a943e, 0xe7e7f916, 0x92d00244, 0x4a87bf05, - 0x6492ba5a, 0x000065, 00000000 + 0x6492ba5a, 0x000065 } }, { @@ -55808,19 +55807,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x992ed987, 0xe3b9f7d9, 0xcd18d726, 0x8f96ccb4, 0x6b059264, 0xec82f475, 0x87bd7088, 0x8f12c5bd, 0x87b099bd, 0x6bf444da, 0xc7227d63, 0xc2bc5129, 0x6749ea87, 0xd5bd59ce, 0xca6dd3d6, - 0x1f07b5d3, 0x0001e4, 00000000 + 0x1f07b5d3, 0x0001e4 }, { 0xbe9a8d20, 0xd5c0d54a, 0xc64c482e, 0x6af7037c, 0xb403af2f, 0xdc5a9ed8, 0x1a2f9c5a, 0x21263087, 0x25c3c0f2, 0x8a15a656, 0xd66fb7d8, 0x6d605ee2, 0x94c0f3d5, 0x44c5bc09, 0x70d50d79, - 0xd96be3b0, 0x0001ba, 00000000 + 0xd96be3b0, 0x0001ba }, { 0x4af659ee, 0x952db0f6, 0xa07bb828, 0x19787913, 0x97f98646, 0x4eb5de8c, 0x2f88c76b, 0x34c3313f, 0xc36d705b, 0x787be339, 0x67ebc686, 0x3049b7db, 0x1251fddf, 0xc14be2f1, 0x94377cbc, - 0x823065c9, 0x0001bc, 00000000 + 0x823065c9, 0x0001bc } }, { @@ -55828,19 +55827,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa9e23406, 0xf0b1c0d0, 0xbb849b2e, 0x212cc4a9, 0xa0f372b6, 0x1cabaad4, 0xf034d9d9, 0xba55f0e8, 0x66ceca05, 0xb85b43af, 0xd4f37126, 0x3f5b28bb, 0x23160de1, 0x73bdab39, 0x4579ead0, - 0x77d4ac26, 0x0001ed, 00000000 + 0x77d4ac26, 0x0001ed }, { 0x27d22db5, 0x35abe4c6, 0x1978e865, 0xc072d695, 0xdf2f2bcd, 0x88d2bbf9, 0x4627660a, 0x3319847d, 0x654d2ff, 0x1b100a5f, 0xdc72d624, 0x2052779f, 0xa5c32d3a, 0x43e6f304, 0x9c1a37f3, - 0xdced0d7f, 0x00008d, 00000000 + 0xdced0d7f, 0x00008d }, { 0xfbc08c4, 0xe7cc4621, 0xbc58ad8d, 0x572ab32e, 0x63c22b3f, 0x93a4f714, 0xfe655309, 0xffedbcdf, 0x89ab7d14, 0x40358c9a, 0x15460978, 0x7e19d677, 0xdf83f70c, 0xd3f7652f, 0xdef80f63, - 0x52c421a9, 0x00007d, 00000000 + 0x52c421a9, 0x00007d } }, { @@ -55848,19 +55847,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d2cbe94, 0x577d43f4, 0x23f3c3ed, 0x905662d7, 0x167ec1bf, 0x531d9306, 0x72864b4a, 0x686e1b0b, 0xe20b0862, 0x897cdbf5, 0xb738d730, 0xd2d98929, 0x754f6074, 0xd6733ba8, 0x30bb263d, - 0xd5334112, 0x00016a, 00000000 + 0xd5334112, 0x00016a }, { 0xdede9187, 0x9922101, 0xd974291a, 0x7b3b5299, 0x2d855f7f, 0x66bdf25e, 0xbd17dcfa, 0xffffc662, 0xcf7b5f6, 0x1846954, 0x7c35736c, 0x15e14ec8, 0xf3cd979, 0xf3368a2d, 0xc572b2d2, - 0x296710b9, 0x00015a, 00000000 + 0x296710b9, 0x00015a }, { 0xa710df3c, 0x99aba2d7, 0xc3d31434, 0xc5e2a1a, 0x7de81603, 0xa2719c69, 0x67bb4109, 0x53ce644d, 0x90b96edd, 0xd905ee3f, 0x214d54c6, 0xb4ebbddb, 0x3fd4db63, 0xdcfbd9d7, 0x8d7c97a4, - 0x419f780b, 0x0001d0, 00000000 + 0x419f780b, 0x0001d0 } }, { @@ -55868,19 +55867,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaf170510, 0xe92a9eac, 0xdb71dd48, 0x2d1af0ba, 0x67f03bf5, 0xea46552a, 0x488c7b3a, 0xf8d1a3a1, 0x2311335b, 0xe656fd0f, 0x50273cbb, 0x72ab2f15, 0x9efc2bf2, 0xf07940b7, 0x9ff1d8ea, - 0xb393fd98, 0x000070, 00000000 + 0xb393fd98, 0x000070 }, { 0xc1fce72, 0x37dee8d1, 0x4d55ecd4, 0xfdc9da81, 0x5ce60c32, 0x63034b7f, 0x7615c2, 0xe6ecbd21, 0xcb8ec1b4, 0xf64383cb, 0x713808e0, 0x315427d7, 0xa408f172, 0xfd96734e, 0x7ae8f78c, - 0x308fdb02, 0x0001db, 00000000 + 0x308fdb02, 0x0001db }, { 0xa70c8a51, 0xca5c5687, 0x60c2ba6b, 0xdd72b5c3, 0x383212fb, 0x1d40c88d, 0xaea8befc, 0xfbecfde7, 0x94c9d1c8, 0x6ac3ee7d, 0x87a37b0, 0x7656a199, 0x30f331c1, 0x8ab07253, 0x614e21da, - 0x2112f33a, 0x000071, 00000000 + 0x2112f33a, 0x000071 } }, { @@ -55888,19 +55887,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x90a7114f, 0x522c8ffd, 0xb6e1466e, 0xeb654a27, 0x8177b72a, 0x9e09ef51, 0xc2c7d671, 0x478b8d24, 0xd782085, 0xc8fd65e0, 0xc49c2955, 0x3e9ec83c, 0xdc6293c0, 0xe76c9e59, 0xdcbeac4f, - 0x1be9cf73, 0x0001e0, 00000000 + 0x1be9cf73, 0x0001e0 }, { 0x7910a24a, 0x68cfed3e, 0x9b429986, 0x4b595948, 0x6a76f7c, 0x589d8d7a, 0x173e8bea, 0x8abe39b7, 0xf2da110c, 0x80868b52, 0xff2a26d6, 0xa4240b14, 0x1d720fd7, 0xa3f16771, 0xf398052c, - 0x260cd9c3, 0x000156, 00000000 + 0x260cd9c3, 0x000156 }, { 0x683367c0, 0x9ce37cc6, 0xe1aeef32, 0x89508545, 0x7a4e2f1, 0x7e4f84e0, 0xba4441b8, 0x4ba9cb7a, 0xe84733bc, 0x2d49f749, 0x9c02442a, 0x885595ae, 0xeb132ca5, 0xbccd7db, 0x283f0e9a, - 0x4158b848, 0x000084, 00000000 + 0x4158b848, 0x000084 } }, { @@ -55908,19 +55907,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x82925461, 0x8fdbe157, 0x47bb8104, 0x2c48907a, 0x37eaee65, 0x72fe4c98, 0xe0f386a2, 0x870c145f, 0x4d5227b1, 0xcf2fe67e, 0xa90d96fd, 0xe72a00cc, 0x651cf214, 0x8d1ebe0f, 0xed1f3554, - 0x2772e1c8, 0x000112, 00000000 + 0x2772e1c8, 0x000112 }, { 0xe5bf2337, 0x44ad216, 0xb9987ca2, 0xee13aa49, 0xfc9b412a, 0xcd4e6d5b, 0x183b78cc, 0x4fcd42a3, 0x24e038d2, 0xcbd64582, 0x95661e75, 0x453153ff, 0x3b24728b, 0x410fe6bc, 0xf6d64197, - 0x4e94553b, 0x000118, 00000000 + 0x4e94553b, 0x000118 }, { 0x710e07, 0x607971ed, 0x1ef207b2, 0xf670dcba, 0xf8c7a324, 0x50c6bf5f, 0xef080424, 0x9e838d8a, 0x34dcc2af, 0x432d103d, 0x2fb4cbcf, 0xf33d0730, 0xec86dea7, 0x7ea6e203, 0xfe6718bc, - 0x5ffbf5fe, 0x000019, 00000000 + 0x5ffbf5fe, 0x000019 } }, { @@ -55928,19 +55927,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x862a7abe, 0x55ba662a, 0xd088c89b, 0x5d3fa698, 0xfced76d4, 0xea7fb192, 0xf32a76b4, 0x58995310, 0xb512c027, 0x3705d840, 0x87284529, 0xd7cd85bd, 0x3549b037, 0x6e979bdd, 0xaa3e667f, - 0x61f16f0d, 0x000112, 00000000 + 0x61f16f0d, 0x000112 }, { 0xfe8951aa, 0xc7a927d0, 0x168dd6bc, 0x8facf5f5, 0xc7fcd834, 0xe0940334, 0x3cbe107b, 0xa2afae7d, 0xdfa1b247, 0xb8c723e, 0xa373299a, 0xf536d4d6, 0x1562656b, 0x2a433e3e, 0x620c9875, - 0xaddf0e40, 0x00000d, 00000000 + 0xaddf0e40, 0x00000d }, { 0xe537d487, 0x9ce8e00c, 0xbfd7a184, 0xdefb2b30, 0xd1d1f4a2, 0x819aa641, 0x7c24f0e8, 0x9e8b9e5f, 0x6ea3fdd1, 0xcc1a9937, 0x2e0f687f, 0xf2834b82, 0xb8e40bbc, 0x151ab93b, 0xa948ea69, - 0x74f3e2dd, 0x000183, 00000000 + 0x74f3e2dd, 0x000183 } }, { @@ -55948,19 +55947,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xab3ca4fe, 0x631fad57, 0xd371f1a6, 0x774aeba9, 0x4e35d09f, 0xd3ef1e22, 0x4ff83977, 0xf05c677b, 0x11a0f4e3, 0x3623c86e, 0xf6bdb42a, 0x9d5487c9, 0x702e65ed, 0x50fd3790, 0xb7bc83e6, - 0x6e06dc47, 0x0001f5, 00000000 + 0x6e06dc47, 0x0001f5 }, { 0x4aab6901, 0x5af42036, 0x71cec283, 0xe79062c0, 0xeb3dcb8a, 0xfea244d6, 0x4bac71a4, 0x22ed295c, 0x51873254, 0x624df7ab, 0x254d9077, 0xfbbbd57e, 0x4856346d, 0x5470ac79, 0x7bc2c880, - 0xd7273236, 0x00004b, 00000000 + 0xd7273236, 0x00004b }, { 0x6f4484d9, 0x9437d1cb, 0x7a9c9502, 0x2acf6838, 0x82abbd6b, 0x531a0a9f, 0xdea007c4, 0x4259e736, 0xe76b184b, 0x64624d6c, 0xf93461e3, 0xf37e76c9, 0xb45e4342, 0x7abd2fdf, 0x43cb2bf7, - 0x24311750, 0x000045, 00000000 + 0x24311750, 0x000045 } }, { @@ -55968,19 +55967,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xba2fa97, 0x915214eb, 0x32e08684, 0xcd73f3db, 0x2c520542, 0xaed23427, 0xe897337, 0xd362074d, 0xa94ef85b, 0xf5668bd2, 0x22c6a5bc, 0xb247341e, 0xb7d53f17, 0xafb5facd, 0x8c41b756, - 0x2d49c76, 0x000005, 00000000 + 0x2d49c76, 0x000005 }, { 0xb1438b83, 0xfd662fa6, 0x640d3ab9, 0xa0028a09, 0x78cf065e, 0x5d78020f, 0x97cab2e2, 0x2b164a4a, 0xcf36171d, 0x22c5bdc9, 0xea1dc839, 0x978a4793, 0x96647c63, 0x262ed2e5, 0xac964c6f, - 0x8b2217b4, 0x00018a, 00000000 + 0x8b2217b4, 0x00018a }, { 0xa45f33c6, 0x2aff63de, 0x72e1e8e3, 0x1f994af0, 0xc6ee0fe3, 0xa2e7deea, 0x6e2aa678, 0x4336a9c6, 0x4a2e4d37, 0x7d75a91c, 0xbbd52b10, 0xc2dc55ed, 0x643e123b, 0x1b09ccda, 0x81e952ad, - 0x1afb2938, 0x0001d7, 00000000 + 0x1afb2938, 0x0001d7 } }, { @@ -55988,19 +55987,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5fadbd16, 0xcb7b4a18, 0xb750050, 0x13670b11, 0x38718ca1, 0xa861f94b, 0xfb2d5136, 0x88d8156, 0x212153c9, 0x327e522d, 0x5014c2, 0x8fc328f6, 0xe9453806, 0x45f48352, 0x2e74f247, 0x774062, - 0x0001ff, 00000000 + 0x0001ff }, { 0xac56d359, 0xf35d0188, 0x1cf05edf, 0x1e3989ac, 0xfbf9c3d4, 0xc79a8cb8, 0x893dca11, 0x422574c4, 0xd80ba963, 0xd6eed480, 0x3dac78b, 0xf6bd7803, 0x8283eff0, 0x23e72cb9, 0xf6debb33, - 0xfb75dfd8, 0x000184, 00000000 + 0xfb75dfd8, 0x000184 }, { 0xe8c0e4f8, 0xc6ad6e7c, 0x8f7cd61b, 0xf365c66a, 0x2b7c9f0d, 0x8b50c5ea, 0x6e9376af, 0x3978b5b0, 0x399726aa, 0x527e129a, 0xa05d39e5, 0x2a93324d, 0xebef582f, 0x3b47e443, 0x227b2c08, - 0xbbbd15cc, 0x0001da, 00000000 + 0xbbbd15cc, 0x0001da } }, { @@ -56008,19 +56007,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb249bd60, 0x36ab1e87, 0xc639dbf, 0xdc0f90a3, 0xd33444d0, 0xf66a47e5, 0xedba1397, 0x57a3c58e, 0xf8f2e8b9, 0xeffc2533, 0x8e93e134, 0x63b0eea3, 0xcf8a61bb, 0xaa4854b3, 0x63b23be8, - 0x3fe7f8d8, 0x00001e, 00000000 + 0x3fe7f8d8, 0x00001e }, { 0x9e066948, 0x6c33ec4d, 0x98b84885, 0xffad7848, 0x5e12842e, 0xa426c8cf, 0x9ca2bcd5, 0x435b4577, 0x80e158d1, 0x11e3f94a, 0x8f89e277, 0xdc6be08, 0x7d775e0, 0x57c92678, 0xed29e6cf, - 0x5ca09ecc, 0x0000b9, 00000000 + 0x5ca09ecc, 0x0000b9 }, { 0x1cfa10a6, 0xbac593b, 0xb763b85e, 0x9b32f14f, 0xb409bf3e, 0xd15803dc, 0xc48144d1, 0xbe22a755, 0xa34af0e7, 0xd171c3d, 0xa0b43d62, 0x5222bd24, 0xdd993a1, 0xda1c1f6a, 0xbe200730, - 0x2304c157, 0x000113, 00000000 + 0x2304c157, 0x000113 } }, { @@ -56028,19 +56027,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d18a1c, 0xa5d2d502, 0xdf16f53d, 0xce9126b6, 0xfc338765, 0x2718357e, 0xe039314c, 0x9a835293, 0xb05e12a2, 0x426efb88, 0xd12eafbb, 0xbc805069, 0x9a3b5080, 0xd82e1d51, 0x7d6e2b8b, - 0x87b5d032, 0x00010d, 00000000 + 0x87b5d032, 0x00010d }, { 0x23796050, 0x306e733b, 0xe7d15c64, 0x34a4ba4a, 0xf159b2aa, 0xd4680bc3, 0xc2e3001a, 0x739e9c2f, 0xf5495575, 0x5aa9c614, 0xcd52b1fa, 0xa80522a2, 0xf45c26d4, 0x46035935, 0x751ce2df, - 0x7b30966b, 0x000159, 00000000 + 0x7b30966b, 0x000159 }, { 0xe998991a, 0xb2633d91, 0xfcf36285, 0x1067c0e1, 0xadbf2e7a, 0x8bf2d2dc, 0x409a5e23, 0xccb546a6, 0xf1c79b08, 0x282d3b73, 0x7f764189, 0xa7ccb392, 0x8c2390f5, 0x3cc97226, 0x7e22f338, - 0xf6a76e30, 0x000064, 00000000 + 0xf6a76e30, 0x000064 } } }, @@ -56050,19 +56049,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe430d8f7, 0x43f1f9fe, 0x244a1ab8, 0x888e58c0, 0xbe3358e5, 0x19ebfea7, 0x6cb8902, 0x989996c3, 0x57abec2e, 0x358933b5, 0x421b80ac, 0xd5ddb91f, 0x5b152ed, 0x7cf5577c, 0x4151dd02, - 0x30ae2e7f, 0x0001bd, 00000000 + 0x30ae2e7f, 0x0001bd }, { 0x5f508602, 0xf062350d, 0xf3ccebbc, 0x4cd7b69a, 0xcfeb8a75, 0x5245b3cd, 0x5a499b38, 0xce376a68, 0x6388ac4d, 0x2f485f9b, 0x90321285, 0x1aa95bce, 0xd643dade, 0x3ac55733, 0xc8ce26f8, - 0x995e76e1, 0x00018b, 00000000 + 0x995e76e1, 0x00018b }, { 0xc17cca77, 0x5a48fecd, 0x17d154aa, 0xcebc05c3, 0xc7a59f1b, 0x6b226a8, 0x18a4768, 0xebb881c3, 0xb513994, 0xafead0ea, 0xddfaf8b3, 0xcb14b5fb, 0x89ad80b9, 0xdcc92bf9, 0x39a1d6c9, - 0x7c5b1f11, 0x00009b, 00000000 + 0x7c5b1f11, 0x00009b } }, { @@ -56070,19 +56069,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3f21d06, 0x281ad2db, 0x166cb0d3, 0xed4d29a5, 0xe1e5908c, 0x9b145ac8, 0x8cdbc483, 0x643cc64b, 0xf816638, 0x7e2ad007, 0x31a7da21, 0x83c92332, 0xde7cc57c, 0x731d6af0, 0xbd9a7124, - 0x1ac15d6b, 0x00010d, 00000000 + 0x1ac15d6b, 0x00010d }, { 0x13c1fc1d, 0x3017ddf9, 0x9156a352, 0x901b5bc6, 0xbbd392a9, 0xcdbf1434, 0x4868b25d, 0x42af611, 0x94fd101e, 0x3c1da08b, 0x6378f16c, 0xadc3f430, 0x787a4271, 0x4a864881, 0xc111a2b7, - 0x968030a2, 0x000144, 00000000 + 0x968030a2, 0x000144 }, { 0xa1e22374, 0x33d2de5a, 0xebb23aca, 0xd4526ec1, 0xf9126303, 0xd01752a1, 0xd26fd8a3, 0xc2ae741, 0x6900f60a, 0x112dc6c, 0xe7bb657d, 0x78e0c32d, 0x16a756f3, 0x28599205, 0x832b2ecb, - 0xafd7a545, 0x00011e, 00000000 + 0xafd7a545, 0x00011e } }, { @@ -56090,19 +56089,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xde8b4dd3, 0xc690b2b4, 0x210234a6, 0xf937b857, 0xf529db69, 0xfe959cc9, 0x850ebb91, 0xfa24c6ba, 0x3500dd1c, 0x525f76b7, 0xd4689840, 0xfabf0f9b, 0x71594286, 0xd454f021, 0x1b5107c8, - 0x423a4daf, 0x000074, 00000000 + 0x423a4daf, 0x000074 }, { 0xc3a676d7, 0xaf9b0e2a, 0x399a4a1f, 0x326f4a5d, 0xe614f7f2, 0xb5fb31d2, 0x2afc897b, 0x3eb952e4, 0xddc4b2e7, 0x4182bc6e, 0x528bc5da, 0x8dc35269, 0x84f228e2, 0xa920214a, 0x106c13c7, - 0x42ab0339, 0x000058, 00000000 + 0x42ab0339, 0x000058 }, { 0x26add644, 0x58d2574f, 0xd1b40868, 0xbc446532, 0xecdbada8, 0x93fa612a, 0xc22ff322, 0xcf002ff4, 0xb2a1dbdf, 0x493757b, 0x53173829, 0xc0e907e4, 0x7f6e8144, 0xb0abd31d, 0x42e72898, - 0xc64b0e03, 0x00007c, 00000000 + 0xc64b0e03, 0x00007c } }, { @@ -56110,19 +56109,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcc0b48a5, 0x2e29a6a3, 0xa223df75, 0x6cbaccf5, 0x9be39866, 0x1f8d723c, 0x2ba0d3e, 0x7ef1fb4b, 0x316aa3b1, 0x479f86b4, 0xa4c774ba, 0x32085134, 0xbfecea3c, 0x787c2385, 0xfae58713, - 0x3e5b2ed0, 0x00006a, 00000000 + 0x3e5b2ed0, 0x00006a }, { 0x7c2dd3, 0xa36cb4cd, 0xc5e48278, 0x4f8329fd, 0xee0e9010, 0x18ead61c, 0xfa15360, 0x2d3783b8, 0xb2519066, 0x958adb33, 0xb687d5a8, 0x87907e6d, 0x813f58db, 0xecbfd888, 0x2fa421d8, - 0xf37fc6cb, 0x000131, 00000000 + 0xf37fc6cb, 0x000131 }, { 0x71a7838c, 0x8625158, 0xc5148487, 0x8472c4bb, 0x39ceab58, 0xc8a3b025, 0x44aef328, 0x3f08060f, 0xb1db365b, 0x33cf0def, 0xdfe0ea01, 0x2a703e5a, 0x4b155a9c, 0x2ad224a0, 0x3801644c, - 0x24f0e501, 0x0001d2, 00000000 + 0x24f0e501, 0x0001d2 } }, { @@ -56130,19 +56129,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x50eeac48, 0x91aea6ef, 0x266cf175, 0x4c8302e1, 0x9f800545, 0x227e28e9, 0x31d7866d, 0xe92e02da, 0xafbd9d02, 0xc9d093f8, 0xd0f29ccf, 0xf190a022, 0xd26a667b, 0xeb37fd0a, 0xebffa952, - 0x97b606ba, 0x00004a, 00000000 + 0x97b606ba, 0x00004a }, { 0xe3e334c4, 0xe066f655, 0x810f10a6, 0x99058652, 0x93935ead, 0x79b3a75b, 0xf52dab99, 0x746d2f55, 0x8233d3a0, 0xac8dcd4c, 0x273526a3, 0x1115fffc, 0x852026c, 0xb5c83a0b, 0x3d814e35, - 0x4848624d, 0x0000f9, 00000000 + 0x4848624d, 0x0000f9 }, { 0xb9f1a30e, 0xeedf8b5d, 0xafd660da, 0x9c413901, 0xeb426aad, 0x2934f054, 0xa283c926, 0x7f700816, 0x250275b4, 0xc4e718b3, 0x979d7327, 0x2be9bfb4, 0xfe481ba5, 0xca6df31b, 0x22d6cd1, - 0x346cd5d8, 0x000116, 00000000 + 0x346cd5d8, 0x000116 } }, { @@ -56150,19 +56149,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8977cf8f, 0x74ea3408, 0x5b920b13, 0x4d87d9d6, 0xf50c74dc, 0x2b1c216c, 0xaa078eea, 0x22444172, 0xf3177e29, 0xfc53fc4a, 0x95375b60, 0x82ed30c0, 0x5cc1fbf4, 0x1100174, 0x7b0b76bd, - 0xcd89c350, 0x000158, 00000000 + 0xcd89c350, 0x000158 }, { 0x738e43c5, 0x29fe2e87, 0x1c78a652, 0x5ebdc655, 0x248366e, 0x7fc3a774, 0x62bbc2ba, 0xf859f532, 0xb9b89e99, 0x204152c8, 0x8a525165, 0x32cfc25d, 0x97b4d831, 0xdce385dc, 0x529d1241, - 0x7ce4f81c, 0x0000d6, 00000000 + 0x7ce4f81c, 0x0000d6 }, { 0x42163c50, 0xc5e2d61c, 0xadbe8592, 0x26fdfc0a, 0xb82da7a8, 0x991e66e8, 0xbf4de880, 0x4980c2bc, 0x9b7f957f, 0xd559a37f, 0x53ee6782, 0xdfe99091, 0xb70b3c4f, 0xdd575740, 0x59316398, - 0x2dae0dea, 0x0001d7, 00000000 + 0x2dae0dea, 0x0001d7 } }, { @@ -56170,19 +56169,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd571d3b8, 0x97934069, 0x49fdd830, 0x361f9b9f, 0x353dcf6b, 0x220aa9fe, 0xc18893c2, 0xd2ccbfac, 0x4e7cb118, 0x50172808, 0x6ec9e9e4, 0x315d1e38, 0x123a67c1, 0x88d34784, 0xa22d3896, - 0x61efe67d, 0x0000c3, 00000000 + 0x61efe67d, 0x0000c3 }, { 0x51c13a9b, 0x39a2c89b, 0x7822358e, 0x4c9b1eb1, 0x7efb5cbc, 0x64f21827, 0x4f12a0e1, 0x8d565223, 0x6cce1437, 0x2b72fe0c, 0xd4bc7889, 0x204b209a, 0x6410ba8a, 0xfd3e9405, 0xc5360e71, - 0xb4c2d974, 0x0000ac, 00000000 + 0xb4c2d974, 0x0000ac }, { 0x94430ea5, 0xe005ad3e, 0xe355c973, 0xc36d9d4a, 0xc008c8c7, 0x4f6f81d6, 0x1b4e0b62, 0x31d5de7c, 0x7717e4ab, 0x9ba0c90e, 0xaeacdb59, 0x385a83cd, 0x674b1083, 0x73047666, 0x7ed1aa6c, - 0xa4a141cd, 0x0000bb, 00000000 + 0xa4a141cd, 0x0000bb } }, { @@ -56190,19 +56189,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd01c2954, 0xf2bbbec0, 0x1c5b97d4, 0xd129cfe1, 0xd1c5c80, 0x5ec1e058, 0x6f7790fe, 0xe6ac3b8, 0xa36d26f5, 0x9603afc3, 0x18310452, 0xf033f6, 0x66767f35, 0x6644d437, 0x3e7c8ff8, - 0x219d1d51, 0x00002c, 00000000 + 0x219d1d51, 0x00002c }, { 0x725e72ce, 0x75f36dab, 0xc1a9dcb0, 0x14f1771a, 0x1c2d77fd, 0x1a7d132a, 0xbb71b369, 0x731529a1, 0x1d20fff4, 0xbd9b2c29, 0x89336531, 0xb00b2f19, 0x905d4d26, 0xdd746947, 0x71e10267, - 0x3e0f87ba, 0x000066, 00000000 + 0x3e0f87ba, 0x000066 }, { 0xb4abef39, 0x808609db, 0xd6b1d5c7, 0x7ad818a9, 0x9a62939b, 0x54bee2fa, 0x5784473e, 0x278f303b, 0x83fef79, 0x7372171, 0x755006b6, 0x854e0675, 0x2c997111, 0xbbedffa, 0x25e173c5, - 0x7b9cc46c, 0x00016f, 00000000 + 0x7b9cc46c, 0x00016f } }, { @@ -56210,19 +56209,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xef3a8539, 0x44b60cd2, 0x2af9cf28, 0xe4ff86b0, 0x34eb5a7e, 0x4170c473, 0x457b563e, 0x8c0c535e, 0x3eb3c60f, 0xaf335deb, 0xd77653ae, 0xe58401a0, 0x43d9d161, 0x3da1153a, 0x66c7377a, - 0x70a1ea99, 0x000145, 00000000 + 0x70a1ea99, 0x000145 }, { 0x8f53087a, 0x9a70a205, 0x7b52f2fa, 0x9755480b, 0x8951bcd3, 0x732271c4, 0xf3c7c58a, 0xff740728, 0x661922, 0xf0024914, 0x303bf8f3, 0xc8432795, 0x8aca1d3d, 0x4f66cceb, 0xd3e2359b, - 0x7900a6ab, 0x0000b6, 00000000 + 0x7900a6ab, 0x0000b6 }, { 0x7fc6cad, 0xca068fef, 0x68a421e7, 0x67b40453, 0x5c994085, 0xb97c32e4, 0x12d94f88, 0xafb98b6d, 0x5bf71a19, 0xa95c4b74, 0xfd8619e4, 0x62198055, 0xa6f6ac14, 0x60be3903, 0x54077d61, - 0xd8faf5b5, 0x00003b, 00000000 + 0xd8faf5b5, 0x00003b } }, { @@ -56230,19 +56229,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xde2e03eb, 0x234b46fe, 0xba58df29, 0xd183ebbf, 0xbc677ebc, 0xa1c9845d, 0xe92886c, 0x17a4dea9, 0x75d8ff15, 0x115ccd07, 0x458eb331, 0xbcac0967, 0x9e41b12b, 0x375798b3, 0xb0573bce, - 0xfe7abac0, 0x000160, 00000000 + 0xfe7abac0, 0x000160 }, { 0xc0969b91, 0xa1f2db17, 0x61e35f88, 0x72af6c6f, 0x2dca4d17, 0xc0a96443, 0x2c44fe12, 0xcbdf418c, 0x81d8f027, 0x9a237779, 0x2d851c87, 0x2b8fba76, 0xcaf8b6e6, 0xd49ed1bc, 0xdd918558, - 0xcf44eceb, 0x0000ba, 00000000 + 0xcf44eceb, 0x0000ba }, { 0x68de145f, 0x65433dd, 0xbaf5b923, 0x6761c98, 0xd23720ad, 0xa381be0c, 0xb452015f, 0x3827ba49, 0x279837cf, 0x71d6aadb, 0x774433e8, 0x317058d6, 0x7619d66a, 0x24bf232b, 0xd0d7a14b, - 0xb7443dd0, 0x000157, 00000000 + 0xb7443dd0, 0x000157 } }, { @@ -56250,19 +56249,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xae9cd86, 0xfc32ca7b, 0xf724c000, 0x35fc83f7, 0xb0b18408, 0x89ae0c0f, 0xa8236ce0, 0xa4828174, 0x19559537, 0xe438337e, 0xb9635fba, 0xb9108bb4, 0x11b153d5, 0x69464d89, 0x451f5b1, - 0x2e1fc4e7, 0x000159, 00000000 + 0x2e1fc4e7, 0x000159 }, { 0xe16b123d, 0xc6e8ddfa, 0x934ea6b9, 0xdf589cbc, 0x65f53bc9, 0x83ba421f, 0x2cbc6e81, 0x3fde41e8, 0xe3c736a9, 0xe01d63c5, 0xfb794b08, 0x2d3e5a25, 0x7c37f1ac, 0x4b5c59a2, 0xde1ac0ff, - 0x8338dab7, 0x000093, 00000000 + 0x8338dab7, 0x000093 }, { 0xef5ce752, 0x55c5289d, 0x42a4af51, 0xd20bff6c, 0x16c54a28, 0x3f84cdeb, 0x4cab4c33, 0x13e136e0, 0xc82b0e35, 0x8a088e8c, 0x47732522, 0xb5743a7f, 0x6e15c5a3, 0xc752fb6c, 0xc5fe2ee1, - 0xce84f55a, 0x0000a8, 00000000 + 0xce84f55a, 0x0000a8 } }, { @@ -56270,19 +56269,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2bd206ed, 0x16232bc5, 0x2abd5a5a, 0x942c8935, 0xa9928e7d, 0xedcbad33, 0x45dc3014, 0xa39f8a3f, 0x558ebffb, 0xe05b0a62, 0x52a552fe, 0x20c87601, 0x4925a9d5, 0xcf8ed13b, 0x9a076df, - 0x73096507, 0x000199, 00000000 + 0x73096507, 0x000199 }, { 0x9456b45a, 0x6a180f5b, 0xd1b58755, 0x8f761f7b, 0x5280a784, 0xd4b82125, 0x45cbb26b, 0x36851def, 0x724887bf, 0x90b22a1, 0x5c32c963, 0xd596f8be, 0xbb9427e6, 0xd8938ddc, 0x18eaa19a, - 0xa4c7cb22, 0x0000e7, 00000000 + 0xa4c7cb22, 0x0000e7 }, { 0x985902f7, 0x87cd5d4c, 0xb39360b6, 0x435a04fd, 0x284f4971, 0x10c11c8d, 0x260d3d4f, 0x3adc6fea, 0x5c41d6d7, 0xfd438314, 0x58e60d1d, 0x12b3f6bb, 0x4fe22eeb, 0x3ec4d80a, 0x13b013ec, - 0x43424fdd, 0x000113, 00000000 + 0x43424fdd, 0x000113 } }, { @@ -56290,19 +56289,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc2ac23fa, 0x53f99918, 0x6085482f, 0xd80079cb, 0xc4d5bd4f, 0x73d4e946, 0xaa017afa, 0x8a3abfe3, 0xd9158a4a, 0xc31f019c, 0x5d684fd3, 0xcab70e6e, 0xcb660fc1, 0xcf8ec3c8, 0x23b0a16c, - 0xa55ae181, 0x0000b0, 00000000 + 0xa55ae181, 0x0000b0 }, { 0x7269477, 0xb3f2db29, 0xbbf47bf6, 0x769e068e, 0x6f52937, 0x53e12f09, 0xe7c29e3c, 0x9b39fac, 0xb155a81e, 0x90314145, 0x20961188, 0x231174ec, 0x384a3b1d, 0x97eebda8, 0xa02f953b, - 0x805d9057, 0x000001, 00000000 + 0x805d9057, 0x000001 }, { 0xd9c262e2, 0xc26d0c7, 0x90254e1, 0xfb4ea458, 0xc4b29d6e, 0x39403397, 0x48aaaa0a, 0xd9649b0f, 0x1eb00607, 0xb8423584, 0xf5e00b82, 0xd48c51d7, 0xd17fc2cc, 0xbb42a17b, 0x4cffdeac, - 0x9a70a1ed, 0x00001c, 00000000 + 0x9a70a1ed, 0x00001c } }, { @@ -56310,19 +56309,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x61a112bb, 0x39d6fb99, 0x7d7ea723, 0xd3f190ac, 0xe64246cd, 0x9a87a7f3, 0x72131264, 0xa62f310c, 0x93da62bb, 0xaa8fa94e, 0x291ae15, 0x13f27c65, 0x7e4539d1, 0x262e0ff6, 0x2b271baa, - 0x79ad3c03, 0x000150, 00000000 + 0x79ad3c03, 0x000150 }, { 0x3904a788, 0xe4050cbf, 0xe0a8e5f9, 0x8c657550, 0x6dad102, 0xae9fd8bb, 0x8a5d8d1, 0xea33fcd, 0x4d85baf1, 0x27b8e92f, 0xa04075f8, 0x22ece6c6, 0xede3b747, 0xbefad520, 0x9b1616e0, - 0xa0489d41, 0x0000b3, 00000000 + 0xa0489d41, 0x0000b3 }, { 0xf766ff7, 0xdb143bfe, 0xc3b246a3, 0x1cbe8e13, 0x76f2dc3f, 0xce7ba5e7, 0x1db98dc7, 0xb53eab2e, 0x33e8bdb5, 0x53d43494, 0x96592933, 0x967913b2, 0xf30a1dd4, 0xd2d3d56e, 0x20c9b944, - 0x88fa70e9, 0x00000c, 00000000 + 0x88fa70e9, 0x00000c } }, { @@ -56330,19 +56329,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf5fb92d, 0x8765668d, 0xdda60322, 0x10bbdb8e, 0x893e1408, 0xdeb3c9b3, 0x2aeb2228, 0x14782be8, 0x3b75802c, 0xf71dd0b3, 0x9a5e084b, 0x26cb0183, 0x1fb876be, 0xdd4683db, 0x5ffde090, - 0x3037da93, 0x000050, 00000000 + 0x3037da93, 0x000050 }, { 0x570af932, 0x37357b19, 0x8f2d4cd0, 0x25bece8, 0x74f1d9e8, 0x9cae8fea, 0x5946f480, 0x5aa5da22, 0xc7518136, 0xe6dac99b, 0xc7ad9fb5, 0x59fa1240, 0xefddaa6e, 0xf6dd78c9, 0xd3ebbc5e, - 0x187d137c, 0x000128, 00000000 + 0x187d137c, 0x000128 }, { 0xe42c2500, 0xd0552ceb, 0xdbfeaac5, 0xa70e6317, 0x8c20bd7f, 0x8defd154, 0xcd8b080e, 0xc3576ac3, 0x6ce994ee, 0xcbea9df4, 0xf2e9f671, 0x426609e9, 0x1c07d33a, 0x248ae38a, 0x24e67494, - 0xda10c8d0, 0x00007c, 00000000 + 0xda10c8d0, 0x00007c } } }, @@ -56352,19 +56351,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7e63a812, 0xaa3f2b3, 0x463b06b2, 0x9805d792, 0xee6640d7, 0x47a94d30, 0x9aaf3ffe, 0x7120fbbd, 0x93e03555, 0x68d6c89d, 0x69918b19, 0x20a8ca8a, 0x6c513388, 0x6fd2ece4, 0x887a1cd, - 0xf0e67d51, 0x0001ed, 00000000 + 0xf0e67d51, 0x0001ed }, { 0x793d4aa5, 0x2b9ee08d, 0xd15f5388, 0xd4d297f7, 0x7ab98b02, 0x7861460a, 0x2154b039, 0x5dbe4e7b, 0xd9c41c89, 0xe404984b, 0x96977815, 0xbefaa0cd, 0xea824702, 0xf67f5f1f, 0xd7b51984, - 0xf6d344e7, 0x000029, 00000000 + 0xf6d344e7, 0x000029 }, { 0x114a47d, 0x653cee72, 0xc6c9b29c, 0xcf0c3bd1, 0xf9d556be, 0xda6e62d6, 0xa0fca469, 0xbd2e8c8b, 0xf1a20596, 0x3f011fea, 0x2a08cba8, 0xd591d319, 0xa87a42b2, 0x8837ceee, 0x2fd80e5e, - 0x3b8b3624, 0x000064, 00000000 + 0x3b8b3624, 0x000064 } }, { @@ -56372,19 +56371,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6021bee, 0xe0722795, 0x1aa1adf, 0xb09b3557, 0xe2140769, 0x1b96427c, 0xdb7f4277, 0x12a16db6, 0x4a3fca1, 0xe3c15195, 0x540b9ecb, 0x93b130bb, 0x6e042098, 0xe1eadd9b, 0x6e2e42fb, - 0x5c6dc113, 0x00000e, 00000000 + 0x5c6dc113, 0x00000e }, { 0x7eca2918, 0xbec2d733, 0xe625da48, 0xa18f71f6, 0x2654f805, 0x4ada81d4, 0xbc9e4427, 0xa29d2a08, 0x3b148aa9, 0x7ea365f6, 0xbf1a7777, 0x53fe2a0a, 0x928f2697, 0xe7b3096a, 0xc02f0704, - 0x888f1fc8, 0x000175, 00000000 + 0x888f1fc8, 0x000175 }, { 0xf3da33d5, 0x470f2e97, 0x39b778c6, 0x57dea08a, 0x39f5cb93, 0x74fdf91, 0x99ce9e22, 0x58d562db, 0xd46621ae, 0xc541483, 0x4fbc2cc0, 0xd13d4cc0, 0xb6db54ee, 0x846e334, 0x99abc209, - 0x7d3b6e90, 0x0000bc, 00000000 + 0x7d3b6e90, 0x0000bc } }, { @@ -56392,19 +56391,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3a4429f1, 0xdb6ad0da, 0xf0c8b11d, 0xb57ea8, 0xa5f9007d, 0xd79e0838, 0x74bd84d, 0xca2f36b3, 0xf2abec73, 0xe8af10b7, 0xce9a3ab, 0x428e0dca, 0xf2806b3f, 0xbe2ac0a1, 0xb53899c8, - 0xea313ca3, 0x00006d, 00000000 + 0xea313ca3, 0x00006d }, { 0x54abbce9, 0x327b3987, 0x7352a244, 0x62197af7, 0x5dabd899, 0x799daca3, 0x1c91d2c2, 0x5302f5fd, 0xb09f0a68, 0x978e1e81, 0x58bba423, 0x22f70bab, 0xaef5e84f, 0x8dbc6c57, 0xcc1210ae, - 0xee19438d, 0x0001e8, 00000000 + 0xee19438d, 0x0001e8 }, { 0xc0f75f17, 0x348ba602, 0xbec7c22a, 0xd4b1321, 0x9c9c1679, 0x4916f40a, 0x6db0ccf6, 0x66e9eaf9, 0x3c5e23b7, 0xad326395, 0x41b1a4bc, 0xdc88adf1, 0x1011cb19, 0x73b24c21, 0x63281b0a, - 0x86d68fb8, 0x000068, 00000000 + 0x86d68fb8, 0x000068 } }, { @@ -56412,19 +56411,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xba3ce7e2, 0xfac51bdc, 0x96a9a387, 0x611ecc8a, 0xc72bcc6e, 0xe9e6de62, 0x4c1182eb, 0x66f32faf, 0x3beb9524, 0xbf8145f7, 0xa93be303, 0xf692ba81, 0xd5a64516, 0x1a773022, 0xe107568a, - 0x6a026de8, 0x000090, 00000000 + 0x6a026de8, 0x000090 }, { 0xac09aab5, 0x4c38b289, 0xc394c7fa, 0x8bd39329, 0x5bc73bee, 0x3bd01088, 0x60aa8135, 0x7ee21f75, 0xe451eb54, 0x4b9a9ec5, 0x5bd8027d, 0x9dc9f425, 0xafa386f4, 0xce35f015, 0xa507ee5e, - 0x4c02da02, 0x000110, 00000000 + 0x4c02da02, 0x000110 }, { 0xcab59477, 0xf89629d, 0xc115ab52, 0xb49a5d79, 0xb13f4604, 0xc2b8f834, 0xfc4ae7da, 0x7c392e71, 0x7aec95bd, 0xfee2bab8, 0xd306d565, 0x362566e1, 0x6d10c30b, 0xe3295099, 0x404e45e8, - 0x389027c1, 0x0000e4, 00000000 + 0x389027c1, 0x0000e4 } }, { @@ -56432,19 +56431,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb1893a80, 0x896538eb, 0x2c89be15, 0xb6d2d5be, 0xa5d58eed, 0x2555a572, 0x889c215b, 0xd5809cf0, 0x834c9df0, 0xe331b082, 0x7a9c699f, 0x739b287d, 0x64bdb326, 0x5edc1e25, 0x7979a228, - 0x9220eaf6, 0x0001c4, 00000000 + 0x9220eaf6, 0x0001c4 }, { 0xa5b40ccb, 0x15f451ac, 0xd1d3d49c, 0x8816e22e, 0xe844f699, 0xed5aa6a8, 0x64c255ec, 0xab2ee894, 0xe29405e9, 0x2b3b4f7b, 0xbb1f464a, 0x2e69336b, 0x5606ce40, 0xaec8f17b, 0x3efa8efc, - 0xf47fbe38, 0x0001b9, 00000000 + 0xf47fbe38, 0x0001b9 }, { 0x3991caa6, 0x64130235, 0xd5945e28, 0xe78d2837, 0x70aa3580, 0xf5bccd1b, 0x909dab4d, 0xb9fb9040, 0x439e59a8, 0x9e33829e, 0x7e3d0a93, 0xd9542a20, 0x629359d2, 0x82806635, 0xb21bd32f, - 0x9ea97880, 0x00006b, 00000000 + 0x9ea97880, 0x00006b } }, { @@ -56452,19 +56451,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc1589d06, 0x89cb334f, 0xa5c0cb3d, 0x2468e32b, 0x52977070, 0x4a690347, 0x17d46cea, 0xd4124fe, 0x168a37d4, 0xfd7704fa, 0xa7323747, 0xc893dbf4, 0x6f314fff, 0xac53723f, 0xdd94b001, - 0x831e76b9, 0x000118, 00000000 + 0x831e76b9, 0x000118 }, { 0xd90fa47b, 0x4042ad8b, 0x8cdc24a5, 0xb8d668ee, 0x54cef7f3, 0xc8c81e0a, 0x6e8147be, 0xc4446dc2, 0x31a68bdc, 0x356f1fc7, 0xeac9b6de, 0x664d1d9e, 0x4c298667, 0x93b6f0b3, 0x59eec63b, - 0x2aba5bac, 0x0001de, 00000000 + 0x2aba5bac, 0x0001de }, { 0x661d0960, 0xcd1ed136, 0x8542e863, 0x920b7a54, 0x1733df88, 0x4e0b1212, 0x72a93b40, 0xac9cb37a, 0x452dcadb, 0x7096f47b, 0xb8051353, 0xac646ec4, 0xcb683c8a, 0x68e71e70, 0x49dcb25e, - 0xb3b16803, 0x000160, 00000000 + 0xb3b16803, 0x000160 } }, { @@ -56472,19 +56471,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x14b1d3b8, 0xb85947e8, 0x1b415376, 0x9a433d7b, 0x4521dc63, 0xc144dba7, 0xda6ed1f4, 0xb9997b07, 0x20c449e9, 0x18bd8d89, 0x6af8c658, 0xe04a2ff3, 0xd1abd4b2, 0xc300671e, 0x7afee7c4, - 0x97dcca8b, 0x0001b1, 00000000 + 0x97dcca8b, 0x0001b1 }, { 0x91fa7210, 0xc858d786, 0xb7877be, 0xae7bd1f3, 0x80023d4a, 0x83d948de, 0x96b33d0c, 0x9563ad60, 0xfe0594f5, 0x178d7e6c, 0xc6626b39, 0xe0261144, 0x3981a235, 0xf2aeba88, 0xa9cfaba1, - 0x5eeff31, 0x0001cb, 00000000 + 0x5eeff31, 0x0001cb }, { 0xcd0b3634, 0xfbbbea0f, 0x6fc229a5, 0xc20f83b1, 0xa5685965, 0xdc2a9b7a, 0xb52adde7, 0xec442d68, 0x35891d8c, 0xcd2ca6d6, 0x5330a2b8, 0x27ecc9bb, 0x45183376, 0x745665a8, 0x8a62495f, - 0xc43888d3, 0x0000dd, 00000000 + 0xc43888d3, 0x0000dd } }, { @@ -56492,19 +56491,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc83f4667, 0xaea4aa59, 0x45deabe8, 0xe9b1e6ec, 0xdd916cb0, 0xa26ea552, 0xb51c18fc, 0x13158ea5, 0x99a18162, 0x91e7bfed, 0xc25505a0, 0xdf69c99, 0x54fbdf24, 0xa4ae7443, 0xb6aa07a4, - 0x320ab266, 0x0000a9, 00000000 + 0x320ab266, 0x0000a9 }, { 0x6b73eb5f, 0xfbd0e9e0, 0xc781da2a, 0x734aebe0, 0x44ee3fd6, 0x2b1fdab3, 0x8f26807b, 0xdefe1439, 0xcff6e00a, 0xd073307f, 0x36f449fc, 0x727420f7, 0xdabb8b7b, 0x3e47c0c, 0x19f498de, - 0x26cd1caa, 0x00002b, 00000000 + 0x26cd1caa, 0x00002b }, { 0xbb4dda7a, 0x258b2ab8, 0x29c212fe, 0x6f47e51c, 0xb34170ac, 0x9452a3e4, 0x3b36cd77, 0xd5f28e5c, 0xf2b1c63, 0x15454380, 0x9848cc0d, 0x61caa9c8, 0x2c419aba, 0xa025a0b3, 0x1b18cdb1, - 0x958fa32f, 0x000015, 00000000 + 0x958fa32f, 0x000015 } }, { @@ -56512,19 +56511,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9285cfbd, 0x9932645b, 0x51f213cb, 0xe1707dfb, 0xecb5c29c, 0x9c3fd22, 0x6bb6b476, 0x1888764e, 0x3f067699, 0xe70cf1a3, 0x9b3b2c37, 0xec3f883d, 0x7230fad6, 0xb51eaf87, 0xe62e9c0d, - 0x91564ae6, 0x0001ae, 00000000 + 0x91564ae6, 0x0001ae }, { 0xc3f87a7c, 0x45c0eb76, 0xd02c98e0, 0xe0e40417, 0x5b5bf9c5, 0x4faa93ef, 0x4f38d5e0, 0xf4b8e3cf, 0x23511382, 0x791ef9e6, 0x24e0102c, 0xecc57518, 0x95f31fb0, 0x9fdc2759, 0x52ee3625, - 0x44d5a79b, 0x000075, 00000000 + 0x44d5a79b, 0x000075 }, { 0xf3f3a9aa, 0x8651cc50, 0xb3046468, 0xcdac1c43, 0x1949a1d3, 0xdc0d741d, 0x80b2300d, 0x408912ff, 0x817fc6c6, 0xc2d8fc0, 0x4051af7c, 0x956015c4, 0xe14ff977, 0xb459d8ba, 0x34e60d7, - 0x2acf55ad, 0x0001f7, 00000000 + 0x2acf55ad, 0x0001f7 } }, { @@ -56532,19 +56531,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8949d215, 0x530dcae0, 0x5194049d, 0xe4cbd9b9, 0xc613f287, 0xf81b069e, 0x1668a2d9, 0x67951557, 0xb64c4455, 0xf1520a84, 0x24fb2838, 0x6473dd40, 0x24945c90, 0xa3dddfb1, 0x379f7bb5, - 0x2dca1bc4, 0x0000a2, 00000000 + 0x2dca1bc4, 0x0000a2 }, { 0x450a7412, 0x70c9ca54, 0x8c6c0b08, 0x8b4ea5d2, 0xf4c02364, 0x3fa0d8bd, 0x6a960c46, 0x78f0d5ee, 0xe4663f4a, 0x282d5764, 0xecba7c59, 0x8b108d38, 0x61be0c7b, 0x62dc73d9, 0x1218a8d5, - 0x7420fa33, 0x0001b3, 00000000 + 0x7420fa33, 0x0001b3 }, { 0x6b7fa1b3, 0x7857b108, 0xe42e1ab8, 0x46ef16c, 0x9e5bb5cd, 0x5ed70631, 0x1b97bd7c, 0xacb0846d, 0x2274bdbd, 0x70003765, 0x1de35cd5, 0x8c9abea3, 0xf3f7a256, 0xefabfd6c, 0xa0910033, - 0x782ebae0, 0x000011, 00000000 + 0x782ebae0, 0x000011 } }, { @@ -56552,19 +56551,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5c89d8d5, 0xe6ba0d79, 0x1c097715, 0x956103d9, 0xaf39f65a, 0x2cac4b16, 0x2490a852, 0x21b2db70, 0x3754b223, 0x11d4247d, 0xd5b09ce6, 0x944098e8, 0x457d18db, 0xdb9499a1, 0x77141fc4, - 0x6d8198b4, 0x000177, 00000000 + 0x6d8198b4, 0x000177 }, { 0x6d4b699, 0x59caee9c, 0x358e2b27, 0xf57a1a47, 0x84db2329, 0x7575ef56, 0xb9b422e, 0xb1cb65a8, 0x9338b8bb, 0xe0b1ea1d, 0xffffddc7, 0xc627ab70, 0x926637fc, 0x9ab1de58, 0x1a7b1e06, - 0xa5570b9, 0x000090, 00000000 + 0xa5570b9, 0x000090 }, { 0xb22dada3, 0x6a787b57, 0x22cbc52d, 0x40b7cdf2, 0xbc768ded, 0x5d3abbe9, 0x4e4ef7e, 0x50a53aa4, 0xf7f66a9b, 0xd9d69efb, 0xb6fd27f2, 0x39c1acb6, 0xc9a65eb7, 0xac746bc4, 0x2e03d918, - 0xec0449bf, 0x0000c8, 00000000 + 0xec0449bf, 0x0000c8 } }, { @@ -56572,19 +56571,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb35c9d9d, 0xe79e8c9c, 0x2df393b, 0x7ca6a10d, 0xb8c9203, 0xd4e3d4d2, 0x370dc391, 0x9ec99df3, 0x9b8b5519, 0x5bb71e23, 0xb6d8f429, 0xa695cd57, 0x80e53ad9, 0xb5561fa5, 0xd7b3ea12, - 0x93600bf4, 0x0001ca, 00000000 + 0x93600bf4, 0x0001ca }, { 0xfd0ba26c, 0x9994471f, 0x4f5e719e, 0xa26b26fa, 0xfdc97ed9, 0xf4f61399, 0x14db1e2d, 0x4d42dc87, 0x20b50710, 0x28023127, 0x3e763db5, 0x800866dc, 0xf01e5d86, 0x45c377ae, 0xd8ddf1b6, - 0x3c8100a, 0x00005e, 00000000 + 0x3c8100a, 0x00005e }, { 0x46ae4b46, 0x1ce2ee5d, 0xd414ed23, 0x7c6e230f, 0x255cb3f3, 0x967d09c6, 0xa75f2336, 0x902d6708, 0x405f202f, 0xbce6c757, 0xf47e8b23, 0x32fa2b93, 0xb38c8d69, 0xb1844a8c, 0x9a8fb462, - 0x534312f5, 0x0000de, 00000000 + 0x534312f5, 0x0000de } }, { @@ -56592,19 +56591,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcad8ecb2, 0x7185e93, 0xa7f80160, 0xb3a313be, 0xf05e8da7, 0xa2c1bb90, 0xf4126497, 0xbd6f152d, 0x40cef562, 0xb5dda791, 0x6d23f061, 0x2cbbacca, 0x7665969a, 0xd32d2832, 0x40a67d4a, - 0xc15a0a43, 0x00007e, 00000000 + 0xc15a0a43, 0x00007e }, { 0x35c8ef38, 0x5e059748, 0xc6ee843a, 0x99ad384b, 0x148edbf, 0xe9ea3b2b, 0xfa9c576e, 0xf36f4dc0, 0x35438e36, 0x82056bd2, 0xe4b491bc, 0x572cffea, 0x4e0c08fa, 0x94af20c5, 0x3882e734, - 0x90ecb9ae, 0x00007a, 00000000 + 0x90ecb9ae, 0x00007a }, { 0x90719ce9, 0xc200d1c0, 0x373a1a44, 0xc6cc11b7, 0x1ccc7c42, 0xebcc154d, 0x90167abf, 0x18e5ecb9, 0x39b471d0, 0x79b1a1a6, 0xb63bfc14, 0x50f7d8b3, 0xdd264b84, 0x29b7a61e, 0xe68988ff, - 0xa490eb1e, 0x000120, 00000000 + 0xa490eb1e, 0x000120 } }, { @@ -56612,19 +56611,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x372ab336, 0x9a904c9a, 0xc3657cd3, 0x80328af0, 0x25df8c90, 0x38460f4d, 0x734ad153, 0xe7f8b246, 0x6cc4984e, 0x977f0cba, 0x81f2b852, 0x4b5360b0, 0x99ec9e5a, 0xd5db8da0, 0x6b3dba68, - 0xbc027bcc, 0x0000d3, 00000000 + 0xbc027bcc, 0x0000d3 }, { 0xda08204e, 0x9e596250, 0x7c754a55, 0xf3ad28, 0xb894ebb5, 0x2d21afad, 0xf288ae84, 0x20686c24, 0x12f3af52, 0x780234f5, 0x54b75a2, 0xb483ee66, 0x48834cf3, 0xa80d6844, 0x5c0ad0c3, - 0x93b4756b, 0x0001a6, 00000000 + 0x93b4756b, 0x0001a6 }, { 0xfae3bedd, 0x72f5a07b, 0x3dc5f5aa, 0x4bc58f2, 0xc7daf448, 0xf3b953b3, 0x89bafbff, 0x790681ce, 0x874cd673, 0x13cc3d2d, 0x9fcfb9ae, 0x5c3b1e18, 0x7acfa5d8, 0x4fea7e3e, 0x634a0156, - 0x71ce6ecc, 0x000079, 00000000 + 0x71ce6ecc, 0x000079 } }, { @@ -56632,19 +56631,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2ceaec56, 0xc9e735a6, 0x9da38795, 0xc33ee0de, 0x9fef4e17, 0xd2f3d1e9, 0x98f3605a, 0xf3a7083, 0x712a2d7a, 0xd4d0c255, 0x9178c319, 0xf1c54452, 0x2b0f55c1, 0x1a33c450, 0xa5d00b13, - 0x8e05f546, 0x0000c1, 00000000 + 0x8e05f546, 0x0000c1 }, { 0xaf5a646f, 0xd260246c, 0x8e54c68c, 0x42d0e90d, 0x9a1005c, 0x7ac0d443, 0xeaf6262e, 0x1f40196, 0xd4f9bb1f, 0xf84b0073, 0xe4e3c26, 0xbda500f1, 0x73a4ced5, 0x25f01b93, 0x79933979, - 0x48465d01, 0x000046, 00000000 + 0x48465d01, 0x000046 }, { 0x9b7c695d, 0xa700bc77, 0x9c85f4fb, 0xd9d9d89, 0x304777e5, 0xdd6521a1, 0xb90ad008, 0x3c2b7647, 0x6534020a, 0xeb714916, 0xd01df953, 0x99c1025f, 0x96d5d2f1, 0x154873ba, 0xbac026fe, - 0xc6c3379e, 0x000142, 00000000 + 0xc6c3379e, 0x000142 } } }, @@ -56654,19 +56653,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x13ac8d68, 0x99c18a3d, 0xbc62c92d, 0x2f7bb2ca, 0xeb6be73c, 0x4ed76414, 0x43bc7d7b, 0x489b2ac3, 0x4b473661, 0xc9743edf, 0x56f66e7, 0x4fa32fea, 0x2f9880a6, 0x12f99238, 0x70e17a10, - 0xdc476319, 0x0001f2, 00000000 + 0xdc476319, 0x0001f2 }, { 0x38ced451, 0xc630b111, 0x68bb5790, 0xdf5ebabd, 0x80470a61, 0xb21b5be, 0x4e84461b, 0xeb2ccda7, 0x505cb782, 0xf9fb6919, 0xf18bc077, 0xbfbc74b7, 0x3a33679d, 0xb3f86e8f, 0x2dfc4c73, - 0xeab85cf2, 0x0000e1, 00000000 + 0xeab85cf2, 0x0000e1 }, { 0xcf330174, 0x8ffe5c03, 0xf8052db1, 0xddb97757, 0x24d606a2, 0x496f6681, 0x5ab37bcf, 0xd28fd212, 0x9cdc02fe, 0x215092e1, 0x1f1524e, 0xe6d2b333, 0xb9b54327, 0x2e318dd7, 0x1847b29a, - 0xd110bf4b, 0x00019e, 00000000 + 0xd110bf4b, 0x00019e } }, { @@ -56674,19 +56673,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5b5c1a90, 0x83bf2e94, 0x69c38c86, 0x8dd0de75, 0xb8412c6e, 0xecf779ce, 0x504f11f, 0xaf54bcb5, 0x4d7573a8, 0xb09918b1, 0xb774e30f, 0xf64deffe, 0x83b5b10e, 0xd4d515cf, 0x835f773, - 0x73dac49c, 0x000029, 00000000 + 0x73dac49c, 0x000029 }, { 0xc77d8c64, 0x3995c716, 0x30674f87, 0xe9342333, 0xa3401cc2, 0x24c5bd4b, 0x58ee8bb3, 0xaf40343e, 0xd26d7a3d, 0x47cb2376, 0x8c610a, 0xc06067b3, 0xbc21bceb, 0x33fbd785, 0x6b3e35e8, - 0x9f3f9346, 0x000075, 00000000 + 0x9f3f9346, 0x000075 }, { 0x71f4ac3c, 0xca2f7c63, 0x4262e03d, 0x398dadd3, 0x4836dd78, 0x2c27c5ad, 0xd17636f6, 0x1d67b7b2, 0x866715d5, 0x937cde00, 0x9f728619, 0xfc80bff6, 0x3fc089d9, 0x2d944b96, 0xca856b32, - 0xcff561ce, 0x00011c, 00000000 + 0xcff561ce, 0x00011c } }, { @@ -56694,19 +56693,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xff5f990b, 0xe5fa87b6, 0x71f701ca, 0x7cb4d570, 0x1a87d278, 0xb6254a02, 0x8b18131, 0xf3c4e368, 0x1beb2641, 0xb1d17a96, 0x8eb9a53f, 0x3809c43b, 0xeb8191d0, 0xdb96009b, 0x6d9d54bc, - 0xb4a1f4c8, 0x000044, 00000000 + 0xb4a1f4c8, 0x000044 }, { 0x54f59f87, 0xd706ffa0, 0x500398e1, 0x9024eff9, 0x39a7531e, 0x8a833df2, 0x881d172c, 0xf8ba8047, 0xa9762024, 0x88a0086b, 0x60fde5b4, 0x8fd33f87, 0x1ce16881, 0xd9b9779a, 0x6234773e, - 0x269da1a5, 0x000191, 00000000 + 0x269da1a5, 0x000191 }, { 0xc88ca5d9, 0xafec6062, 0x42bbfd45, 0xdf04dbe3, 0xc53e2926, 0xc556c63a, 0xe734e058, 0x60347fcb, 0xd0a5f807, 0x2c43e2b3, 0xc25f69dd, 0xe1038f94, 0xb6df2b6f, 0x18a66b5f, 0x45b83bde, - 0xb93b21ba, 0x0000e4, 00000000 + 0xb93b21ba, 0x0000e4 } }, { @@ -56714,19 +56713,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7d06042b, 0xdfdc7a0e, 0x79665b07, 0x776eba7, 0x50ab313, 0x7fd0b7f6, 0xca23bfbd, 0xb41b7f4c, 0x4ede0a4a, 0x1467bdaa, 0x1df2f556, 0x841e807, 0x70a017bf, 0x6789475a, 0x78434a1, - 0xca22db09, 0x0001e8, 00000000 + 0xca22db09, 0x0001e8 }, { 0x72406d92, 0x6ea31344, 0xfe1b573f, 0x10ebcd19, 0xeaa70860, 0xe980a8ff, 0xf7d3aaa7, 0x86da511f, 0xf695631f, 0x1c46888d, 0xdea8918a, 0xb168f40, 0xc3b9aa12, 0xcca7348a, 0xb45d429d, - 0x64ea0e96, 0x000133, 00000000 + 0x64ea0e96, 0x000133 }, { 0xb732a0bd, 0x3ca8c6a0, 0x71993e4d, 0x94c33d45, 0xd4fd69d2, 0x364d7283, 0x8a6a0886, 0x794f5127, 0x4ac27b61, 0x8b3bcd04, 0xe01d0bd8, 0x8aa56ce, 0x6a342051, 0xda5171ef, 0x164648c7, - 0x780fc2ab, 0x000192, 00000000 + 0x780fc2ab, 0x000192 } }, { @@ -56734,19 +56733,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x98a87069, 0xf8c681e2, 0xa57e304f, 0xace2b612, 0x6f37a9bf, 0x612ce4b3, 0xf5f239e7, 0x6ee909bf, 0x79776ef6, 0xfe3f340c, 0xff654634, 0x8d0325d8, 0x48b66767, 0x709ce044, 0x8e35604c, - 0x8852bd40, 0x0000de, 00000000 + 0x8852bd40, 0x0000de }, { 0xb2581118, 0xedccbfee, 0x397def7f, 0xf0abca42, 0xd45ab965, 0x77516824, 0x70147739, 0x62271e1f, 0x5f7c1285, 0x103f3fff, 0x88813b56, 0x19443a90, 0xe16a90a8, 0xebce9b91, 0x15dc7c7, - 0xd3cb7873, 0x000090, 00000000 + 0xd3cb7873, 0x000090 }, { 0x22c68d24, 0x18bd7d28, 0x25ead27c, 0xf212139f, 0x4488906e, 0x3be805, 0x8d88ddba, 0xf298d5dd, 0x30f7e92c, 0x443f659, 0xa2b5efa, 0x78c93fbc, 0x954d30e7, 0xfb1f8b00, 0x8f8e1d32, 0x3ed61027, - 0x00014f, 00000000 + 0x00014f } }, { @@ -56754,19 +56753,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x448b2d80, 0x5fad7151, 0x8f663846, 0x7d2cd02f, 0x34a2a097, 0x1ab9f008, 0x4c8889f3, 0x1097ed70, 0x3c1510c8, 0xa35fe984, 0x512fc1bb, 0x4f25af4b, 0x417e773, 0xc8b5563, 0xafca20de, - 0xdfdff826, 0x000190, 00000000 + 0xdfdff826, 0x000190 }, { 0x6162c1d6, 0x7b38422d, 0x89915585, 0x15d6bc60, 0x411809a3, 0xc65ae8f1, 0x3ae9c1fe, 0x638f53a8, 0x27ae43a5, 0x3382a54e, 0x28e780b0, 0xc1442243, 0xbe351d14, 0xd69ddafd, 0x86c1591c, - 0x742a4a6b, 0x0001ae, 00000000 + 0x742a4a6b, 0x0001ae }, { 0x6c9abc51, 0x838b4267, 0x668fd55b, 0x732eb4fd, 0xbea76d88, 0x5abf35e6, 0xbc0b0e0, 0xfae06499, 0x298a53e7, 0xb304fb91, 0x77831b16, 0x1eccec04, 0x8f3e2364, 0xb214660d, 0x4749dd06, - 0x4a0c8523, 0x000010, 00000000 + 0x4a0c8523, 0x000010 } }, { @@ -56774,19 +56773,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa33f7c0e, 0xd4985d5a, 0xd3040ae9, 0xe0eed19b, 0x2e1e4a55, 0xd98cb09e, 0xab5b5352, 0x4fea4ba4, 0x844ddd5, 0xae28686d, 0x625ba3de, 0xf5fb615c, 0x44dc0084, 0xb23a5233, 0x26886c2b, - 0x855307a8, 0x0001ff, 00000000 + 0x855307a8, 0x0001ff }, { 0x7aeecd29, 0x907acfae, 0x2ec36ebb, 0xd05e0f6b, 0x7814589c, 0x6510089, 0x2ff824ae, 0xdda28c3, 0x187a6e48, 0x9a98b4e4, 0xb3656236, 0x7321aa3a, 0xe0e6ff06, 0x77036f56, 0xbf076b67, - 0x832f7b80, 0x0000c6, 00000000 + 0x832f7b80, 0x0000c6 }, { 0xb1d51d97, 0x680a12f6, 0x138f6e1a, 0x9e7dd03b, 0x579c86ae, 0xd883f5e1, 0xf50fa83d, 0x531b592b, 0x30cc1172, 0x42896106, 0xdcf696b1, 0x61b3d613, 0xeb919893, 0xd33f2fb, 0xbfb231c3, - 0x875b6afe, 0x00015f, 00000000 + 0x875b6afe, 0x00015f } }, { @@ -56794,19 +56793,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb3324283, 0x1fc5b978, 0xbed7aa0e, 0x82dd5290, 0xfe4d0471, 0xa8c8430, 0x6355f5f4, 0xc6d4f836, 0xb6038f88, 0xbd1209be, 0x104aeae9, 0x130679a1, 0xc76a8924, 0xdd4cd543, 0x85599594, - 0x5c6c414f, 0x0000ab, 00000000 + 0x5c6c414f, 0x0000ab }, { 0x38d57c6, 0x414592d4, 0x326c4102, 0xbab8c73d, 0xe4198370, 0x59119fcb, 0x4bdaebab, 0x606cdb95, 0x80c80ce6, 0x8837e31e, 0x523d2a77, 0x7e23ddc5, 0xade06269, 0xb254f367, 0x458e25d0, - 0xc7acc120, 0x0001a8, 00000000 + 0xc7acc120, 0x0001a8 }, { 0xdf275f70, 0xe9db2942, 0xd7d212e4, 0xa0520aa2, 0x1054dcb7, 0xad024d65, 0xe6631af5, 0x98dfe96d, 0x12d01472, 0x5a99a518, 0x9e1d6d4e, 0x60e5bc02, 0x847ef669, 0x9a526b2c, 0x51e72b2d, - 0xff0f30d2, 0x0001e9, 00000000 + 0xff0f30d2, 0x0001e9 } }, { @@ -56814,19 +56813,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf59396a, 0x8f54d326, 0x911cd537, 0x6b7d1b2f, 0x42e06577, 0x909ddf87, 0x3d694fb2, 0x6eb79614, 0x510bfeff, 0x3395811d, 0x5e9ca229, 0xfee40271, 0x890fb0f0, 0x64f78e5c, 0x7f5ddf4b, - 0x453972ed, 0x0001fc, 00000000 + 0x453972ed, 0x0001fc }, { 0xa3bee2df, 0xa8e7ab8b, 0xe8d3ecf0, 0x218426b2, 0x1090c7c2, 0x2add3bfe, 0xba68e371, 0x97757306, 0x706c1a6e, 0xf66fdd46, 0x3d769d14, 0xa7b606a, 0x79185d5d, 0x3104ae64, 0x81ca00f6, - 0x76c31dd7, 0x0000bb, 00000000 + 0x76c31dd7, 0x0000bb }, { 0x504f71f2, 0x10e88d1, 0x73236601, 0xb8a14e00, 0xc1c225ee, 0x10c46a4a, 0x9d755151, 0x148087, 0x2f9e0bd4, 0xf95dec77, 0x4dd0e1b, 0xdddf0521, 0xb0c9d333, 0x5858452a, 0xda628f56, - 0x9bce961b, 0x000118, 00000000 + 0x9bce961b, 0x000118 } }, { @@ -56834,19 +56833,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19d47b80, 0x44adc6fe, 0xf8cc44db, 0x6309d4ab, 0xf376f1bf, 0x3af99aa2, 0x59a1d7e7, 0xae02f5f5, 0xdac98e8f, 0x54bb0dda, 0xdb111754, 0xf94325f3, 0x346ffd37, 0x5c71e68, 0xc9454ac6, - 0x40a48873, 0x000019, 00000000 + 0x40a48873, 0x000019 }, { 0xef3608e9, 0xad29e810, 0xfcc06e3a, 0xa48bfbfc, 0xcb9a19fd, 0x931b2248, 0x1466067a, 0x5210ad5e, 0x53cf2ab3, 0x2d4a3d2c, 0x1096fd93, 0xe25485a1, 0x7c32dd64, 0xfebd279f, 0x8a17fe13, - 0xc3f24299, 0x000038, 00000000 + 0xc3f24299, 0x000038 }, { 0x128393cc, 0x61ca7b6b, 0x8d70bc90, 0xdee1f42b, 0xcaecd8eb, 0x31d6fc1a, 0x4317638a, 0x6168f510, 0x7348aeb8, 0x4594200f, 0x981c46f8, 0x92158593, 0x9ebcbe6a, 0xd1a37fbf, 0x9d1d55e5, - 0x334a3fa2, 0x0000e0, 00000000 + 0x334a3fa2, 0x0000e0 } }, { @@ -56854,19 +56853,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6808eae1, 0xb97a1e95, 0xa7006608, 0xa4f5026b, 0xbfb74b4e, 0xee631e60, 0x6c755a90, 0x1afbad3e, 0xbfb44c20, 0x622cb2a0, 0xfd52aa26, 0x74fa2b3a, 0x921900ba, 0xc51d18f, 0x4bf94635, - 0x9066c69, 0x00007b, 00000000 + 0x9066c69, 0x00007b }, { 0xa942e4e1, 0xc29ecb8e, 0x371e4520, 0xfe69bc8e, 0xa05f77c7, 0xf765825e, 0x1659247d, 0xef30ea9, 0x30f8a4db, 0xdfa2ac7e, 0x670fdaaf, 0x4131801f, 0x96504556, 0x50ff9198, 0x8511b025, - 0xd75f215f, 0x0001e2, 00000000 + 0xd75f215f, 0x0001e2 }, { 0xf9111f59, 0xa672c2fc, 0x540db227, 0xeb38898c, 0xba95c5ca, 0x695008a7, 0xe45cb0b0, 0x66cca533, 0x4e0ef5dc, 0xce610394, 0xe9b137fe, 0x83d1c3f9, 0xbdac5c17, 0xc10f48c9, 0x39037958, - 0x68d26ebd, 0x00001f, 00000000 + 0x68d26ebd, 0x00001f } }, { @@ -56874,19 +56873,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8bb8346f, 0x96fcae3e, 0x9b4b16b6, 0xa4063ddc, 0xc8ed4414, 0x3567d433, 0x998e1aaf, 0xcfd670e0, 0x4c592d66, 0x8a9039c8, 0x8799bc0a, 0xc4b84040, 0xd9ddb0f0, 0xef441c05, 0xba67c13, - 0x9dd154ae, 0x000090, 00000000 + 0x9dd154ae, 0x000090 }, { 0x26fc382c, 0x76384718, 0x99ccba04, 0x7900e91b, 0x9bddf122, 0x357dac93, 0x8be6a056, 0xf41221d9, 0xad008e0f, 0x9b465d55, 0xd9e6a857, 0x26fb8fd2, 0x5220161c, 0xf4d044b9, 0xdc40d262, - 0x8478668f, 0x0001dc, 00000000 + 0x8478668f, 0x0001dc }, { 0x1f4b5cf3, 0xd53c9503, 0x27213ce4, 0x6756612f, 0x5dc95bbb, 0xcf4d2f35, 0x7bd87cbd, 0x7622e8dd, 0xf118194e, 0xe001478c, 0xee4f5239, 0x85c96401, 0x3a0f84a8, 0xd19db9a3, 0xce5d8920, - 0x3faa8314, 0x000094, 00000000 + 0x3faa8314, 0x000094 } }, { @@ -56894,19 +56893,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa33cf0bf, 0x39d2d537, 0xc9c3c5e7, 0xe903d1bf, 0x7461d274, 0x8e0bbaa2, 0x877fac61, 0x1bdc2bf1, 0xa6bc7431, 0xae63ef65, 0xade78ce3, 0x8884accb, 0x7dcc9e4b, 0xd63158f5, 0xe5b25482, - 0xd217554e, 0x000054, 00000000 + 0xd217554e, 0x000054 }, { 0x578c4aa2, 0x977912d7, 0x4b0840f9, 0xf49007f6, 0xf5c781ec, 0xfcf29e5c, 0xf2f88160, 0x116c7411, 0x8d723db2, 0xa6f1db7, 0x4d911e97, 0x4a65f7ce, 0xb3b21315, 0x75be60cb, 0xe84fdafd, - 0xf1b2d7f9, 0x0001c8, 00000000 + 0xf1b2d7f9, 0x0001c8 }, { 0xc0f2a535, 0x61d9a464, 0x6e719fd1, 0x7ba83e0f, 0x6f01a5d0, 0xc9699290, 0x9ec2e0bc, 0x6f513c50, 0x67fdd6a9, 0xa7596f9c, 0xbba163b3, 0x1c8f7479, 0x191f8610, 0x20ba9634, 0xc41d622a, - 0x5915e2d5, 0x0001f2, 00000000 + 0x5915e2d5, 0x0001f2 } }, { @@ -56914,19 +56913,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2103bf51, 0x6b312d33, 0x4978fa0f, 0x3c2da308, 0x872fa447, 0x30e447cd, 0x72f815e9, 0xcd6e07fa, 0xd2a4fadc, 0x67742fb8, 0x7b486600, 0x294493c, 0x7d4c906b, 0x406bdf00, 0x8b2b4647, - 0x1eced7bc, 0x000055, 00000000 + 0x1eced7bc, 0x000055 }, { 0x9815000e, 0xeb848647, 0x13cc91c0, 0xe9c4b707, 0xc95de53f, 0xa1e202d, 0xc455ae17, 0xffc37106, 0x8870220b, 0x7bd2b8a6, 0xe39f7495, 0x96ea950, 0x18061124, 0x733301c9, 0xe0bf4204, - 0x2b960e4b, 0x00001a, 00000000 + 0x2b960e4b, 0x00001a }, { 0xdd9e9275, 0x5330def, 0x154798b1, 0xac21a6c9, 0xd08e3243, 0xca528838, 0xcf2dcf78, 0xc875d2f3, 0xa5e398bd, 0xf1f6537b, 0x448714f5, 0xd413cc82, 0x128d66cb, 0x1769532b, 0x6891d371, - 0xd3fb36f5, 0x000003, 00000000 + 0xd3fb36f5, 0x000003 } }, { @@ -56934,19 +56933,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4c4f2d27, 0x4e033ad6, 0x231857be, 0x7e3c4000, 0x2d0137b7, 0x71c738fa, 0xf41b71a3, 0xff9d8ab2, 0xee5eb2f0, 0xff3c0240, 0xa2f10db2, 0xf163e0c4, 0x2637ada6, 0x4f6a91bb, 0xa8603883, - 0xf0bae296, 0x0000e1, 00000000 + 0xf0bae296, 0x0000e1 }, { 0xbdb17383, 0x315f3606, 0xd18b4e94, 0xa315c0a2, 0x31f44d70, 0xac65804e, 0x3e023c8d, 0xd5052de8, 0xe9dc13a2, 0x27e3734f, 0x9d6b3d5, 0xbddbc48a, 0xdb1ec2f, 0x3ebf3a02, 0x68e123d, - 0x847be1f7, 0x0001f8, 00000000 + 0x847be1f7, 0x0001f8 }, { 0xa148d9af, 0x4a718e63, 0x79de0e50, 0xa9d2ce3a, 0x282bb40, 0x39f8b085, 0x8252802e, 0x523ff54c, 0x5c2fe245, 0x40790065, 0x6dbfe087, 0x12cda89c, 0x194e8dc7, 0xcfab4d3d, 0x1b8e89d6, - 0xf0bea047, 0x0001bc, 00000000 + 0xf0bea047, 0x0001bc } } }, @@ -56956,19 +56955,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7772b753, 0x582bd5d4, 0x5a01c737, 0xec1c89bc, 0xed9054c4, 0xda94147d, 0xba8b7177, 0x275ce183, 0x4d1b119, 0x42f11749, 0xa445343d, 0x871025ba, 0xad3cb174, 0xa631a642, 0xf17a411f, - 0xc0397970, 0x0000c0, 00000000 + 0xc0397970, 0x0000c0 }, { 0xeb44dff3, 0xf80732c5, 0xa1bdd4ec, 0xc62d96f8, 0x43d27a4a, 0x265ae5c8, 0x1249a5ed, 0xf4c1e9f2, 0x36fa64f0, 0xc68df65b, 0xe5ef50bc, 0xda8502e9, 0xac49cddd, 0x879f9497, 0xe505b8f7, - 0xca08436e, 0x0000c6, 00000000 + 0xca08436e, 0x0000c6 }, { 0x9b90c903, 0xef30e284, 0xa414cc9e, 0x1754a13d, 0x951c678, 0x9b57f1ab, 0x6cc8fbcc, 0xee08be6e, 0xd60060d8, 0x90270476, 0x1cd5762, 0x5b783822, 0xe5a135fb, 0xcefc87c, 0x5b119c0c, - 0x6d68b2c2, 0x0000d2, 00000000 + 0x6d68b2c2, 0x0000d2 } }, { @@ -56976,19 +56975,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x56f2f36a, 0xf80899b8, 0xab2f6c13, 0x83ed5de9, 0x9017a888, 0xa5ab0b11, 0x468b15c5, 0xe56c044c, 0xc7baee9c, 0x5556bbb4, 0xd6d11603, 0xc0dc4246, 0x6eca5f8e, 0x970fd911, 0xa6aaabdd, - 0x202444c3, 0x0001c1, 00000000 + 0x202444c3, 0x0001c1 }, { 0x34bdd1d6, 0xe54fe5f6, 0x8a0d98c7, 0xe67f7be2, 0x418a5f07, 0x3364e627, 0x7afc3dc8, 0x9df6931e, 0x5c88081, 0x96721c66, 0x5d8df97b, 0xa22c0f00, 0x8b2af195, 0x59d1e870, 0x90cee137, - 0xb5193e9f, 0x0001b9, 00000000 + 0xb5193e9f, 0x0001b9 }, { 0x717b0df8, 0x998d146c, 0x20424897, 0x571df83b, 0x10011fb5, 0x6910597e, 0xb2534e50, 0xc4d71c50, 0xe7558276, 0xed9b1631, 0xdd04bf3b, 0xba64ba3d, 0x2ef49e3f, 0x8afa4b68, 0xbb61d79, - 0x7d60a047, 0x0000d0, 00000000 + 0x7d60a047, 0x0000d0 } }, { @@ -56996,19 +56995,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x76640672, 0xc541c4f3, 0x3504e276, 0x19ecbf48, 0xdae0abe9, 0x6b6b57a4, 0x71eb1b3, 0x66a34fd9, 0x4a753959, 0xe9d31862, 0xb69daead, 0x406041a9, 0x31cf199e, 0x11ba4264, 0x399c766d, - 0x34d66773, 0x000056, 00000000 + 0x34d66773, 0x000056 }, { 0x7a35c3d2, 0x58d5b934, 0xbea937e1, 0x9f4eac25, 0x4bfa5379, 0xb21e75d7, 0xa8d2856b, 0x70b58f54, 0x9b1fcec8, 0xfed76c73, 0xe321e354, 0x3bff934e, 0xd5ae3dbe, 0x759a771b, 0x1f3ff978, - 0x49fa30df, 0x000012, 00000000 + 0x49fa30df, 0x000012 }, { 0xceee3a82, 0xf7e2cf32, 0x1fa02139, 0x2de4ca05, 0x2d04c9bc, 0x8eb63887, 0xc8a50616, 0x55dc8a23, 0xf72c634f, 0x4bbe5f7d, 0xc3bbd5b4, 0x5c0b526, 0x4967f92a, 0x3acd375c, 0xacf6f556, - 0x974a06cd, 0x0001ef, 00000000 + 0x974a06cd, 0x0001ef } }, { @@ -57016,19 +57015,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xda2ac9a4, 0x2b14588, 0x19b2cecc, 0xe09c5bdf, 0x1a719fc1, 0x7076e265, 0x3ed8950c, 0x2b075f59, 0x7dc794b7, 0x7c5e13b2, 0xc562606f, 0xe86f1974, 0x7d06808e, 0xc67c7a77, 0x523da949, - 0x3acf4de9, 0x000038, 00000000 + 0x3acf4de9, 0x000038 }, { 0x205d3ad7, 0x27070b4c, 0x7958e35d, 0x59b835fe, 0xb25915e7, 0xe324983c, 0x81b75e30, 0xe248b8f1, 0xf61bf5c4, 0xbc158424, 0x561de1c0, 0xf9be0a25, 0x562edd15, 0xb088ba5d, 0x8248ca6a, - 0xa7f55569, 0x000183, 00000000 + 0xa7f55569, 0x000183 }, { 0x2294a6a6, 0x2ee8b457, 0x6b63a07c, 0x5d08fbe1, 0x1c695001, 0xc59b5e94, 0xa7833884, 0x13a1bf92, 0xa7cd8e13, 0x1abea12e, 0xd56eec60, 0x501a60cf, 0x8da04511, 0xd1bb13d4, 0x88dfdda, - 0x26ccc28, 0x00007f, 00000000 + 0x26ccc28, 0x00007f } }, { @@ -57036,19 +57035,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd1166f9e, 0xcb15028c, 0x733093fd, 0xb0196ea1, 0x87c4fe55, 0xfb0056e, 0x992836e1, 0xcb36aa98, 0xede5799c, 0xfddf0c5c, 0xb1b2f585, 0xf33d2477, 0x1365b0f2, 0x764dc466, 0xc3b63c0c, - 0x7e63cee1, 0x00010c, 00000000 + 0x7e63cee1, 0x00010c }, { 0x7c1d276d, 0x27b60d89, 0x270f7bbc, 0xc022b7d2, 0x3688eb6c, 0x6a9c5ba3, 0x6166ba7e, 0xbe5296d1, 0x2aa6ba16, 0x2c9aed48, 0xcf7b0b01, 0x592066ab, 0x7abb1892, 0x5cae2851, 0x39cb4b79, - 0xd2ef2f69, 0x0001cc, 00000000 + 0xd2ef2f69, 0x0001cc }, { 0x1b6b82f, 0xf979ae6c, 0x5e982e62, 0x11f09970, 0x34586420, 0x2f5a7fa4, 0x33d685e1, 0x791558b7, 0x1d2dd12b, 0x49c50d57, 0xe1d01613, 0x46c0af71, 0xe27a1653, 0xb5653966, 0xe39bac7d, - 0xc703613f, 0x000150, 00000000 + 0xc703613f, 0x000150 } }, { @@ -57056,19 +57055,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x78a43235, 0x479b0191, 0x353b05e8, 0xf1ed496a, 0x37e80523, 0xfbad2ec7, 0xb5a2075e, 0x79c03e3c, 0x35df129f, 0x505b749e, 0xbedaa2cb, 0x6355fc6, 0xd93d24f0, 0xd70a08ec, 0xa27dd090, - 0xdf7f69b8, 0x000173, 00000000 + 0xdf7f69b8, 0x000173 }, { 0x3901ac2f, 0xa9171727, 0xeaee7623, 0x28b3c427, 0xd2b6a353, 0x120d0e8c, 0xdcdaaafe, 0xce1a10af, 0x679dbc9b, 0xde15a011, 0xce0fcd63, 0xe3f2b7d6, 0x48c5d4c3, 0xd6d39b0b, 0xc51bb750, - 0xc002f95b, 0x0000cb, 00000000 + 0xc002f95b, 0x0000cb }, { 0x268497f7, 0xa26b6d8, 0xac55a2be, 0x20a61f10, 0x6e683257, 0xec6fcd78, 0xe0846202, 0x49cbf42f, 0x1b3246ef, 0xee779ce1, 0x3a596335, 0x28ad1d9c, 0x8712de6c, 0x611c2d33, 0xf6423d13, - 0x6d6b4c14, 0x0001d3, 00000000 + 0x6d6b4c14, 0x0001d3 } }, { @@ -57076,19 +57075,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5bdb00bd, 0xf0f5b558, 0x5b32f242, 0xbb3d4476, 0xeaccff94, 0x91b4eaf1, 0x675a7cfe, 0x5231aeaa, 0x563c0411, 0x88e6593b, 0x27cb3e5e, 0x5414dd88, 0xa5f2cbc6, 0x8c461f30, 0x43e352a6, - 0x3bcdfbb9, 0x0001b3, 00000000 + 0x3bcdfbb9, 0x0001b3 }, { 0x5878641f, 0x9246f017, 0x42179a12, 0xc437adcb, 0x72920f6c, 0x61b3882c, 0x40d8e015, 0xc95c0e94, 0xbd3ada78, 0x17feef3a, 0x8902e120, 0x29d78ce5, 0xdd53f51c, 0xaa11302, 0xaecb5f15, - 0x3d6f4862, 0x0001c4, 00000000 + 0x3d6f4862, 0x0001c4 }, { 0x1be63f35, 0xeff65d2a, 0x91c9e963, 0x8f3ed9bd, 0x12e78163, 0x6e92ff77, 0x2c8acefc, 0xb684e269, 0xd4b7702a, 0xdfcc3fc9, 0x80c5867f, 0xd5402229, 0x8cfcd579, 0xc6d43b0a, 0x679347ce, - 0xfdbb8ed0, 0x0000ba, 00000000 + 0xfdbb8ed0, 0x0000ba } }, { @@ -57096,19 +57095,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaf594ee2, 0x8df87751, 0x91daeec5, 0x44d2ee2b, 0xe2f41fb1, 0x55b4b974, 0xcb716e96, 0xf047c439, 0xa4fe20bf, 0x61980938, 0x2e1edc02, 0xaf82101f, 0xda347b20, 0x3b656a76, 0x66eefadb, - 0x54fe5f1, 0x000009, 00000000 + 0x54fe5f1, 0x000009 }, { 0x7c47c1b9, 0xa267edb5, 0xa4e123c7, 0x248edac, 0xd08027ea, 0xab782b62, 0xfc3d17a4, 0x1ba73985, 0x379aad63, 0xfc295918, 0xf402dcfe, 0x60ce5db1, 0xa7f5113f, 0x8285815c, 0xec6a11bf, - 0x88de6d7d, 0x000116, 00000000 + 0x88de6d7d, 0x000116 }, { 0xc3a36226, 0x41626e6a, 0x979af589, 0xa2a70f1c, 0x978b17f3, 0x4bb93238, 0x7aab13b9, 0x62f96a6f, 0x1ab8f71f, 0x2977f87e, 0xb370e7a4, 0xc2cc2771, 0x8432f1e5, 0x4fd4e66c, 0x22a5975e, - 0xae95c23d, 0x000076, 00000000 + 0xae95c23d, 0x000076 } }, { @@ -57116,19 +57115,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x799e6f5, 0xd44f4d2e, 0x9128621e, 0xf65c2997, 0x9045a8c1, 0x92ca55e, 0xad300c0f, 0xfc35710b, 0x98e496ae, 0x40555dd7, 0x1483f78c, 0xe17ff123, 0xde82e1c2, 0x7a5e435f, 0xbe34c288, - 0x9455cc95, 0x000199, 00000000 + 0x9455cc95, 0x000199 }, { 0x68cdc921, 0x941d7d4c, 0x9d25170a, 0x464d6d6e, 0x13019999, 0xc5cef951, 0x7adbd955, 0x226ac98d, 0xd3a61a90, 0xc4baf82b, 0x56c98afe, 0x55979577, 0x5796f96d, 0xa6a10c2d, 0xa198573c, - 0x1d4c21b, 0x0000e5, 00000000 + 0x1d4c21b, 0x0000e5 }, { 0xc47b6207, 0x9e6d8d01, 0x901d7f2c, 0x43134721, 0x3421bf5b, 0x6b5927b1, 0x4b6ac164, 0xe1ae014f, 0xa48444e2, 0x62a6ba38, 0x66b51c0a, 0x4815e0a1, 0xf866ec20, 0x4680e939, 0x8d8186b7, - 0xd5574b45, 0x000065, 00000000 + 0xd5574b45, 0x000065 } }, { @@ -57136,19 +57135,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd9674e5, 0x8fc3b569, 0xb3a71b92, 0x1aaf55d0, 0x2b4237b0, 0x69c15077, 0xf0e14a53, 0xfe964415, 0x6a628847, 0xe4af9543, 0x6e723ffa, 0x978a36df, 0xdf471f0d, 0x8189c1bc, 0x44fcaa6c, - 0xe7026a95, 0x00010b, 00000000 + 0xe7026a95, 0x00010b }, { 0x17792967, 0xb933e4c, 0x8a229276, 0x766fca9, 0xf28cbf11, 0xb67c9c15, 0x7f1c6bc1, 0x2c4caf46, 0x8039ad2b, 0x422e9ab7, 0xa6f622c8, 0xc1a36b5, 0x6e01a981, 0xe48b5445, 0x52bd68da, - 0xbe23ce5c, 0x00010f, 00000000 + 0xbe23ce5c, 0x00010f }, { 0x45f52ab9, 0x668c89e, 0xd7eb94aa, 0xe718c19c, 0xea27d420, 0x5456539, 0x8b9a4b2d, 0x4c038ac8, 0xdef79bbd, 0x101cdb76, 0xb66bf91, 0x62fe55fb, 0x1dfc5b6f, 0xa4363ceb, 0xe0c4d151, - 0xd377e64e, 0x0000d9, 00000000 + 0xd377e64e, 0x0000d9 } }, { @@ -57156,39 +57155,38 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4d9ef548, 0x96765588, 0xc9da20c6, 0x654e62c9, 0x325e6cd1, 0x12b769c8, 0x5a5803f6, 0xc4a83248, 0xbab333b5, 0x30a9c750, 0x7805d0ae, 0x8825b0e3, 0x461b5d77, 0xbd23bc05, 0x27994e15, - 0x4f2b4cfd, 0x000012, 00000000 + 0x4f2b4cfd, 0x000012 }, { 0xfe6545e2, 0xd796be15, 0x70b6a28d, 0xd85f2199, 0xeaac18d9, 0x93b5d6cd, 0xd08506a2, 0x84ee4f02, 0x2fee3e39, 0x5458b718, 0x59857c2c, 0xd3b59beb, 0x6a1276f1, 0x12f232bd, 0x1a869ffc, - 0xb6f3aa5c, 0x000126, 00000000 + 0xb6f3aa5c, 0x000126 }, { 0x39303ccd, 0xe6c8bb29, 0x57dc5de3, 0x553646f, 0x8cddda72, 0x14a737c0, 0x9195c845, 0xbae976a6, 0x833eed75, 0x18b9f4bf, 0x63865c57, 0x2cb27a5d, 0x69d8f85e, 0x3e27e43, 0x1f0fdf3b, - 0x791d48df, 0x00019a, 00000000 + 0x791d48df, 0x00019a } }, { { 0x243bb506, 0x1991e4fc, 0x4ee9cbb9, 0xc4f1b9b6, 0xf16b6a7e, 0x96a9eb3, 0x2fec8f2, 0xdc351ecd, 0x6e4edb5, 0xf5f044fd, 0x4543e31, - 0x908f4e4e, 0x89347a6c, 0xb01fd2c, 0x1388bc59, 0x9276dce2, - 0x0001c0, 00000000 + 0x908f4e4e, 0x89347a6c, 0xb01fd2c, 0x1388bc59, 0x9276dce2, 0x0001c0 }, { 0xa16def, 0xb3e3d128, 0x80995946, 0xc6195581, 0x336ad91e, 0x1d6a04a5, 0x478aa684, 0x1813f7ae, 0xf7a175d0, 0x68d2aec0, 0x62aed60e, 0x47a79cfe, 0x87b14f7e, 0x4a7fa361, 0x7b234f35, - 0xf6d2f4a7, 0x00017f, 00000000 + 0xf6d2f4a7, 0x00017f }, { 0x2b6e4d59, 0x12d6e036, 0x6f31ac4c, 0x9c8162de, 0x9c4ea477, 0x30612e7c, 0xec4029fd, 0x4aa07271, 0x53ff5f1e, 0x97827877, 0x479e7386, 0xdc946a45, 0x709261c8, 0x36478ec1, 0x29f8696d, - 0xe23df810, 0x000161, 00000000 + 0xe23df810, 0x000161 } }, { @@ -57196,19 +57194,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbace3240, 0x4da507e6, 0xab2f6b25, 0xa6440d6c, 0xcfc58430, 0x9ca437b3, 0x66790775, 0xc06f2af9, 0xadce93bd, 0x4bb3997a, 0x96e58f67, 0xfb10958f, 0x6f141cdb, 0x3e18a5f9, 0xc401b3f6, - 0x230ce1ec, 0x00004c, 00000000 + 0x230ce1ec, 0x00004c }, { 0x2181dc80, 0xe6cd9a25, 0xe7945753, 0xa32ee726, 0x2fc08eb1, 0x9d3a3627, 0xa42a3a58, 0x11c1c83c, 0xe508ec98, 0x31fd1f90, 0x14796a37, 0x50b47a7, 0x86f597cd, 0x457ea047, 0xebf40fd7, - 0xe7d5f2ec, 0x00003a, 00000000 + 0xe7d5f2ec, 0x00003a }, { 0x71947d0a, 0x51cba939, 0xbc534919, 0xceb640da, 0xb7f2240b, 0x22b06909, 0x6713f2b0, 0x58940ff3, 0x9768cf94, 0x3bf7a33c, 0x5af8e9db, 0x49bbf28, 0xe2bfbd07, 0x91dd1298, 0x3e53759, - 0xe5253a8c, 0x00009a, 00000000 + 0xe5253a8c, 0x00009a } }, { @@ -57216,19 +57214,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa80d64c3, 0x56158b44, 0x6e721bd0, 0xac1d626d, 0xecf03d2f, 0x867631e8, 0x86b89121, 0x32ba84bd, 0x1f41140b, 0xa0b27a31, 0x2c487f17, 0xda33d00, 0x50d454b1, 0x41aafc4c, 0x80601621, - 0x64c5489e, 0x000053, 00000000 + 0x64c5489e, 0x000053 }, { 0x279d9015, 0xa7766f47, 0x4314890b, 0xc7c53f65, 0x34a164a8, 0xb0391487, 0xcd84bbd1, 0xb95afef6, 0xdbc0c3a5, 0x311765f1, 0x529934d0, 0xb372dcd4, 0xdf34f800, 0x15b2141, 0x5e9ab6e8, - 0x9538c7f1, 0x0000dc, 00000000 + 0x9538c7f1, 0x0000dc }, { 0x1ef374b2, 0x2ef77778, 0x81ea2c4a, 0x9e3801d8, 0x11c69441, 0xdb5b1110, 0xd9c54c1d, 0xd949692c, 0x9be36e1c, 0x52d0611f, 0xb69309df, 0x70387565, 0x6f24a264, 0x16ba03c7, 0xc162e01d, - 0x3da0ecb0, 0x0001ea, 00000000 + 0x3da0ecb0, 0x0001ea } }, { @@ -57236,19 +57234,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf4b7831a, 0x623c6bd1, 0x7d0a8875, 0x3c7716f9, 0x56a286c9, 0x9bfe5552, 0xbbb78c79, 0x5f7cb6f4, 0xff55f8d0, 0x947b088f, 0x2280e02, 0xe9cea9d4, 0x3840dd9, 0xdf335542, 0x97fb685, - 0x15795598, 0x00010a, 00000000 + 0x15795598, 0x00010a }, { 0x48d90ffe, 0xad665a9a, 0x3c6e8615, 0x9ffa19f1, 0xa88ae95d, 0xf2181680, 0x5027c554, 0x51d4e727, 0xbf853216, 0x143d7b87, 0x6b8ec025, 0x27c5ae11, 0x33d359c8, 0x772a7e5a, 0x4c97d977, - 0xfc34cca, 0x0001f1, 00000000 + 0xfc34cca, 0x0001f1 }, { 0xe5330924, 0x99722a2c, 0xb54c9bd8, 0x6b3d3187, 0x97b213ae, 0x219e8e14, 0x699b4820, 0xf1267df2, 0xa9b527d4, 0x10b2eb92, 0xcdae6316, 0x78fa89bc, 0x9c04382f, 0xedc1bc7f, 0x3ea26231, - 0x74483a4b, 0x000152, 00000000 + 0x74483a4b, 0x000152 } } }, @@ -57258,19 +57256,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x54db9b48, 0x3fa99bf1, 0x8628eaca, 0x6e756fa7, 0x3b1b7dbb, 0x922f929e, 0x8cbdb7bb, 0xdd813dd2, 0x479767b0, 0x5b373eee, 0x8f00386e, 0x4825a001, 0x3cc7f384, 0x80d35dab, 0x198af4d7, - 0xa2f52c58, 0x00015e, 00000000 + 0xa2f52c58, 0x00015e }, { 0xaf727b67, 0xbe366522, 0xb875ff84, 0xa56fb22c, 0x51388c0b, 0x47bf3bf0, 0xbb9b90ab, 0xbab0c6d, 0xa890b3b1, 0x7d235f14, 0xa6c19c3d, 0x5428fccd, 0x9cfde806, 0x6955fc5d, 0x2b1f2e0, - 0x357bcf38, 0x0001bc, 00000000 + 0x357bcf38, 0x0001bc }, { 0x4fc2bbd6, 0x37c5ad13, 0x70fd4691, 0x35e26b3, 0x163a67c7, 0x3cf37d74, 0x2ae0ddcc, 0xaa2ac1f7, 0xa723715d, 0xaab42463, 0xf22b8b55, 0x775cc34c, 0x7c42ee55, 0x7b87c602, 0x445636a0, - 0x83c2681c, 0x00004e, 00000000 + 0x83c2681c, 0x00004e } }, { @@ -57278,19 +57276,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x934aae35, 0xdaa8c2f7, 0x1ea77644, 0x8f0f8d91, 0x59660c4f, 0x86860c01, 0xf760a485, 0x5ffe80e1, 0xab72501d, 0x8787145b, 0x26c7ef7b, 0xfca5300c, 0xf644ea82, 0x68ecab54, 0x63b76cf6, - 0x4dd6d6b8, 0x000196, 00000000 + 0x4dd6d6b8, 0x000196 }, { 0xb708b5e4, 0x9c9697c5, 0xae26deb4, 0x30bea9af, 0x65764519, 0xfe9e391d, 0x6e9ad9c, 0xac9fcd87, 0x4ef6a029, 0x2e02bc49, 0x7a49bc78, 0xa0b49036, 0xeb2822b, 0x36103952, 0x94ccbe13, - 0x65d868e9, 0x000087, 00000000 + 0x65d868e9, 0x000087 }, { 0x4787408c, 0x55fecf, 0xaebc3104, 0xa6d539dd, 0x8cb4535f, 0x8ea0dcde, 0xa9f5f78a, 0x4a0708e9, 0x979adc27, 0x727fdb0b, 0xc0bbb1c8, 0x88246acd, 0x9e458b92, 0xe8f35772, 0xe2e3561a, - 0x8cc06026, 0x0001a4, 00000000 + 0x8cc06026, 0x0001a4 } }, { @@ -57298,19 +57296,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9e778bf1, 0xcb9be76e, 0xff520793, 0xb1d68e5f, 0x9edc0ba6, 0xbe1178d7, 0xe15f1fc0, 0x7402e74c, 0x523ad530, 0xe3732b58, 0xdc197bad, 0xa1897b5a, 0xfdebeec6, 0xc9b6ff21, 0x2c5cb088, - 0x1e22ce39, 0x000048, 00000000 + 0x1e22ce39, 0x000048 }, { 0xdf5627f1, 0x1517a9d3, 0x9c7ffad9, 0x97cb885b, 0x9ed48e0b, 0x11e06990, 0xabc58421, 0x6d3ec727, 0xd6cd18f0, 0xc81e2889, 0xa181aa85, 0x3879badf, 0xf9b6ebf1, 0x3e8d44f4, 0xcf4851e2, - 0xad5fc7e0, 0x0000c7, 00000000 + 0xad5fc7e0, 0x0000c7 }, { 0x798d3f9e, 0x94b8e538, 0xe678de57, 0x42029e34, 0x43c453f3, 0xb67176f2, 0x4c4c759c, 0x79727050, 0xd5df7655, 0x9ffc4222, 0x181600ff, 0x4604b375, 0xa56fcdfa, 0x8aaa3e4a, 0xde042dab, - 0x81d43b73, 0x00003e, 00000000 + 0x81d43b73, 0x00003e } }, { @@ -57318,19 +57316,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8daa5deb, 0x6d0c00b5, 0x86fb1f25, 0xfcc07184, 0x53f3f1cd, 0x857cd8ff, 0x5c04c3f, 0xaf36f387, 0xe76a4fda, 0x44c45379, 0x30aac258, 0x6709b93f, 0xf65fa06c, 0xe40ac476, 0x69dd7506, - 0x4238d713, 0x000009, 00000000 + 0x4238d713, 0x000009 }, { 0xd615d760, 0xdde42bfc, 0x3659091f, 0xedef9d29, 0xf4081102, 0xa9e8b90c, 0xf32e758a, 0x8598b990, 0xf6eb308f, 0xa6d38007, 0x9d205d86, 0x8c6c48d8, 0x297f11bb, 0x3268aab8, 0x6c1f642c, - 0x63f946d6, 0x0001b9, 00000000 + 0x63f946d6, 0x0001b9 }, { 0xd4648216, 0x8ac82269, 0x93b9b1f4, 0x5d88342f, 0x93581921, 0x66ada269, 0xce9ce4a6, 0xb338b20f, 0x4196e4db, 0x64177625, 0x3da5613a, 0x1f638209, 0x2190767f, 0x3c2fcb1a, 0xd4190474, - 0x850b563c, 0x0000b9, 00000000 + 0x850b563c, 0x0000b9 } }, { @@ -57338,19 +57336,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7f5cf791, 0x221d58c, 0xfcf86ec, 0x1e9bb67f, 0x3d69af7f, 0x809e315d, 0x6d771236, 0x35873af2, 0x8453d1da, 0x1baab782, 0xb86ce2c5, 0x34584bf3, 0x4257cc67, 0x875ed069, 0x16d3d3ac, - 0x8748d2f7, 0x0000b2, 00000000 + 0x8748d2f7, 0x0000b2 }, { 0xa47d4228, 0x608b9f6d, 0xa10ac835, 0x7b811690, 0xd46b00e1, 0xd94eca3e, 0x4f40037a, 0x2b564729, 0x4b405252, 0x8df16d1a, 0xf1d705c2, 0x21c7e777, 0x205ec67a, 0x2ee376a2, 0x41192325, - 0xd0e15ec7, 0x00008d, 00000000 + 0xd0e15ec7, 0x00008d }, { 0x6f7c77bf, 0xb97ed604, 0x48c23916, 0xdd482291, 0x6d6b57f1, 0x80ea82d4, 0xeb053964, 0x29100050, 0x89e70462, 0x4a5e70d3, 0x2e3796e5, 0x4ce7756d, 0xef3ebeaa, 0xc6dff747, 0x76a50f86, - 0xaae50e39, 0x00005a, 00000000 + 0xaae50e39, 0x00005a } }, { @@ -57358,19 +57356,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf2e374d2, 0x848b1676, 0xde432acb, 0x2fa60940, 0xe4dd1700, 0x908f2802, 0x974d3354, 0x978d8af7, 0xcb14330a, 0x6d87a044, 0x5543f553, 0x5643855e, 0x996025e0, 0x319dfb87, 0xd0a7600, - 0xaa4f1fa9, 0x0000f8, 00000000 + 0xaa4f1fa9, 0x0000f8 }, { 0xeadc6e31, 0x72cc733f, 0xabae03ad, 0x3b56deac, 0x7ebe711f, 0xca5126fd, 0x67df1ed8, 0x82f1ce4c, 0xd0d6d2a0, 0x4e859272, 0xd6093d1b, 0x4fbde57d, 0x802bcdb6, 0x2190871b, 0x50cd36f6, - 0x5e876773, 0x000124, 00000000 + 0x5e876773, 0x000124 }, { 0xd486cfc2, 0xea7b7076, 0x18d09fd3, 0xac97005e, 0x39fc2476, 0x277dec4c, 0xcc5f6a5, 0x751e6e4d, 0xbf8e4438, 0x6be26d0f, 0xdd7ae8b6, 0xa858c981, 0x2e3f775e, 0xa43588f, 0xbc87d30e, - 0xee81240f, 0x000019, 00000000 + 0xee81240f, 0x000019 } }, { @@ -57378,19 +57376,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x850a9354, 0x4ed9cd4, 0x81f17bfa, 0x68b76618, 0x925e9608, 0x6eb06a57, 0x157bddb4, 0x3ee099ca, 0xfd30cc9, 0x4958ebe6, 0x27dc09e1, 0xf40ae70c, 0x489316e0, 0xdd528d44, 0x8303991c, - 0x20634e1a, 0x0001e4, 00000000 + 0x20634e1a, 0x0001e4 }, { 0x98f970e1, 0x25fba464, 0x7fc8c31f, 0xec986650, 0x77bcdd52, 0x77040f24, 0xe1b10523, 0xb9b0790f, 0xc69d2f52, 0x3ea879dc, 0x64ef519a, 0x5f84d931, 0xe600d1d3, 0xfe6b7faf, 0xc650dff0, - 0x7b19c8b, 0x0001af, 00000000 + 0x7b19c8b, 0x0001af }, { 0x8af73d10, 0x4aba5b78, 0xda97cef3, 0xcb4c38e0, 0x7b0037dd, 0x626cf42a, 0xdc854804, 0xbc342f45, 0x124471b4, 0xe4218f5f, 0x5c4ff9b2, 0x2b3874bd, 0xc20f805a, 0xf59815e5, 0x6462c507, - 0x26565fc4, 0x000049, 00000000 + 0x26565fc4, 0x000049 } }, { @@ -57398,19 +57396,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x586e9ce3, 0x2a4887e2, 0xb7895e89, 0x231c8525, 0x4fd82637, 0x916ec142, 0xdd9ae6d7, 0xedc8c0db, 0xadcd4eed, 0xeadc9472, 0xdd86de2c, 0x3a6e7274, 0x4d507d26, 0x7cd8b6af, 0x40dc55d3, - 0x4dc96207, 0x0000da, 00000000 + 0x4dc96207, 0x0000da }, { 0xf137ff3, 0x2503520b, 0xc8dc7e2c, 0xd7123636, 0x72cd4bd1, 0x2e344ebf, 0x2a8375ed, 0xf515970b, 0xf4d4e6cb, 0x708b73e5, 0xda70f9b4, 0x4cafae57, 0x4c60954b, 0xb4e2166e, 0x46b247ca, - 0x3a2d78c9, 0x0000e9, 00000000 + 0x3a2d78c9, 0x0000e9 }, { 0x48edd0c3, 0x6ffc3412, 0xd8ae336b, 0x1d6d1de9, 0x4c066ea7, 0x3172c3ed, 0xe9fd0873, 0xcfa2ba46, 0x887047db, 0x52d7942e, 0xff830abc, 0xe9cc670b, 0x39c85f4e, 0xba19cf7, 0x2dea9b6f, - 0x470a242, 0x000185, 00000000 + 0x470a242, 0x000185 } }, { @@ -57418,19 +57416,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x125c4eab, 0x3fa9b1e, 0x96da64e, 0x6ab5b0cb, 0x1ab8349c, 0xa24ffa0a, 0x3fc50f24, 0x43f4dcaf, 0x86f224f6, 0x2c0689a6, 0x2d8c94c9, 0x33a60ce3, 0x8200cbdd, 0x258d209e, 0x72520a13, - 0x4a34c31a, 0x00000f, 00000000 + 0x4a34c31a, 0x00000f }, { 0x2831291c, 0x7144c62, 0x262fcbdc, 0xd5880b55, 0x322c485, 0x16aba28b, 0x87e7b2bf, 0x6e80b852, 0x786b4636, 0xa010288c, 0x982f205a, 0xc18fbaa1, 0xef310aa4, 0x2b5ea625, 0x9f87d572, - 0xdd9ca4ac, 0x000102, 00000000 + 0xdd9ca4ac, 0x000102 }, { 0x50def412, 0xf87602a8, 0x562110c8, 0xb03f5625, 0x2d7203b3, 0x7417abbd, 0x2e90ebc8, 0xbfcbda35, 0xac5af351, 0xdf9602f5, 0x1f925bc0, 0x51a17513, 0xe8bae83e, 0x5dfa0229, 0x2f64d21d, - 0x5febff4f, 0x000157, 00000000 + 0x5febff4f, 0x000157 } }, { @@ -57438,19 +57436,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe9ac8807, 0x246788dd, 0x85883af0, 0x36427c6, 0x116543ca, 0x25c99a3f, 0xfb58b4fb, 0x2dce8b58, 0x206a6a30, 0x1cd71d2a, 0xb6dc2fd1, 0xe4d4e06c, 0xe17e9937, 0x927e2229, 0x276526ef, - 0xf080f33b, 0x000018, 00000000 + 0xf080f33b, 0x000018 }, { 0x7ad42d19, 0x8ba1f3b8, 0xfcc0c634, 0x6696a1f4, 0x2d04669e, 0x8ea2455c, 0x5a686720, 0x722b0f91, 0x5112f5d9, 0xc732c82f, 0xf7d50fda, 0x5645260f, 0x2806945a, 0xa34123ad, 0xf6f3f032, - 0x49041d13, 0x000096, 00000000 + 0x49041d13, 0x000096 }, { 0x9ef66265, 0x740ccb30, 0x7292138d, 0x8b61c7a3, 0x493eb122, 0x870a0712, 0x655b7f0a, 0x326ea64b, 0xe3c02cd2, 0x70e01890, 0x86ece9e8, 0x9c9d0ccb, 0x97fb015d, 0x8653ae93, 0x72c60c7e, - 0xc7ff3620, 0x000130, 00000000 + 0xc7ff3620, 0x000130 } }, { @@ -57458,19 +57456,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xed8a2e17, 0x228ed081, 0x5efe2e76, 0xa3bccce3, 0x48fcd5bb, 0x1e9ff255, 0x387d755f, 0xba4ad84d, 0xda497639, 0xcecf1dec, 0x6f11e59e, 0x4bb0d90a, 0x7e7ae2c7, 0xe2315f78, 0x8d51ec7e, - 0x95f4bd17, 0x000170, 00000000 + 0x95f4bd17, 0x000170 }, { 0xd97da1b8, 0xfbc7683, 0xc58ddafd, 0x8750c2b2, 0x82a53523, 0x3960c80d, 0x98a65b26, 0x59f93d11, 0xf4b319f9, 0xd5ee84ea, 0x3446c774, 0x70353bc, 0x181b50e8, 0x2cd427ee, 0xe0f3d2dc, - 0xac9a55c4, 0x000143, 00000000 + 0xac9a55c4, 0x000143 }, { 0x5b3a3b07, 0x7833f78a, 0x15fec598, 0xc8a4eaa8, 0x8ef37bd0, 0x9dce165c, 0xc061bc40, 0x90cbe591, 0x86f750b8, 0x8ef7477c, 0x4a4f6f5, 0xa5fee8dc, 0x25d6d18d, 0x328cb275, 0x1e34bc6e, - 0x6d8a80df, 0x0001d2, 00000000 + 0x6d8a80df, 0x0001d2 } }, { @@ -57478,19 +57476,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x33040318, 0xe4c42f03, 0xc373ea5f, 0x7709defc, 0xfaaa9a72, 0xf8e606ef, 0x8324e940, 0xe2aaf673, 0xd3b4fe29, 0xb4240a02, 0x98bb56f4, 0xcb488bb4, 0x9aeeb8a2, 0xc72b1254, 0x365e1aca, - 0x3cab532e, 0x0001a0, 00000000 + 0x3cab532e, 0x0001a0 }, { 0xb7c84f85, 0xba272a9a, 0x5501d196, 0xa882a87c, 0x33a3b32d, 0x16a3e401, 0x38d22b94, 0x301dc360, 0x28c276fc, 0x54373d9e, 0x74f0f6ff, 0x13a4b7c5, 0x65da8276, 0xe8d03012, 0x24047c30, - 0x8901d458, 0x000133, 00000000 + 0x8901d458, 0x000133 }, { 0x4f307296, 0xdf688a39, 0xa9b46b41, 0x9d1f0315, 0x56079114, 0xa1c5e72e, 0xd19ad69c, 0x7bf2749c, 0xdbbd208, 0x49cc964b, 0x6d572940, 0x9225128e, 0x44739980, 0x892bd5b, 0xaa39502d, - 0xaca9cf6d, 0x00006e, 00000000 + 0xaca9cf6d, 0x00006e } }, { @@ -57498,19 +57496,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d1abe39, 0x7d689cb7, 0x34ca0be2, 0x3574919c, 0x12c60288, 0x8727926f, 0x5b74158, 0xce867589, 0xaa1e3e79, 0xb281b64e, 0xf9ac33f9, 0xf0d2247d, 0x6f86ce5e, 0x8d2f15a7, 0x65814747, - 0xcd00fe6e, 0x000065, 00000000 + 0xcd00fe6e, 0x000065 }, { 0xf29ec319, 0x11ff35e, 0xd7cef964, 0x63ceaf48, 0x3ff4c01c, 0x2b7f813f, 0x5a29530, 0xe8e5bfb5, 0x326dafbf, 0xf8e3dbba, 0x8d3c00af, 0xe33e220c, 0x924ad40d, 0x2e2670c0, 0xa4a0626, - 0x733a10e9, 0x00007b, 00000000 + 0x733a10e9, 0x00007b }, { 0xd7572f53, 0x362bc974, 0xcaaf378c, 0xa51fb487, 0x109215a3, 0x936152a3, 0x8d99f6ed, 0x4b918019, 0xeb6d15b9, 0x1a4a5378, 0xf9441f46, 0xb03d7034, 0x95ddcbbe, 0xfd17b22a, 0x2347e108, - 0x80f1f589, 0x0000fa, 00000000 + 0x80f1f589, 0x0000fa } }, { @@ -57518,19 +57516,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc9ad3e5c, 0x43132806, 0x1dd1d141, 0xe3bf2a05, 0x82b3a852, 0x1824c71b, 0xf57d96b6, 0x4684cc55, 0xb14ea0, 0x6d4b69bd, 0xa35a4d1d, 0x42dea0ee, 0x6268d666, 0x84d6b505, 0x3143d39c, - 0x1975dcc7, 0x000140, 00000000 + 0x1975dcc7, 0x000140 }, { 0xff7882e2, 0xb6e5b1e, 0xaf8f3d6c, 0x54a219ab, 0xc3f7d8c9, 0xdecbf93f, 0x5f960758, 0xf3d5969b, 0x5c449d06, 0xa865cc99, 0xd4e940a1, 0x64bb9c90, 0x719848fe, 0x14835d, 0x26820e94, - 0x4442bbd7, 0x0000e5, 00000000 + 0x4442bbd7, 0x0000e5 }, { 0xa0f439f5, 0x50f704de, 0xe42d595, 0x660e429c, 0x6d5eb899, 0x99ce160b, 0x6fe2dbe3, 0xc3060ec3, 0xa5be91ee, 0x8708933d, 0xc9bdba26, 0xd9e7e482, 0x9daa6f6, 0x83955b8a, 0x4fb12b56, - 0xb0f21b2c, 0x00014e, 00000000 + 0xb0f21b2c, 0x00014e } }, { @@ -57538,19 +57536,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb201beb8, 0xb4992970, 0xbabc14d6, 0x494db45d, 0xe9fdab5d, 0x7fe7cb14, 0x397f3399, 0x3923c2ef, 0x3e8c5e33, 0xfed249de, 0x9906c1db, 0x6e3aaa09, 0x1f89ce82, 0x9374e20f, 0xdda583a4, - 0x686affe9, 0x00002f, 00000000 + 0x686affe9, 0x00002f }, { 0xe7ac62d7, 0xfc2083d4, 0xf293d0e6, 0x3e43da45, 0x1c465748, 0xbf50cf3, 0x67894a9c, 0xa693f8c8, 0x59a31523, 0x3bb0c489, 0x53d6e693, 0xc2fcf390, 0xe21cab98, 0xefd37452, 0x88e5c15d, - 0x4b2a8013, 0x000029, 00000000 + 0x4b2a8013, 0x000029 }, { 0xb46ad141, 0xa52c194c, 0x7a76b8b6, 0xc374025, 0x605e9e9, 0xf879844d, 0x54c1edc, 0xa7c4c3e6, 0x26ecc1e4, 0x7984384, 0x11247db1, 0x3ab4e470, 0xe833fa9a, 0x9a70208a, 0x24cbf127, - 0x8723d792, 0x00001e, 00000000 + 0x8723d792, 0x00001e } } }, @@ -57560,19 +57558,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa6efb05e, 0xc9b24561, 0xa19345b4, 0x62c40c27, 0x314955cf, 0x6cccbc18, 0xeda25c63, 0xe6b327ca, 0x73b8aabd, 0xf494d03a, 0x54d72b61, 0x590513e7, 0xb98902d5, 0xede9545d, 0x7c23ea29, - 0x8fe96157, 0x00000c, 00000000 + 0x8fe96157, 0x00000c }, { 0xdb7a70f1, 0x20658f6d, 0xaa424907, 0x1d936b18, 0x8745dfac, 0xb639a727, 0x8145c86e, 0xbf946a0b, 0x5a9b5b3, 0x5aca53fc, 0x230f8eb4, 0xb6547114, 0x57a3275b, 0x844b01f1, 0x2b6c2b83, - 0x41f4b2a7, 0x000100, 00000000 + 0x41f4b2a7, 0x000100 }, { 0x58ff3595, 0x8c8d5550, 0x8967757c, 0xf5aa26cc, 0x16365ddc, 0xb01e6250, 0xd23538c7, 0x7885c94c, 0x202cddf, 0xf6f218f2, 0x88b6f708, 0x2c03f230, 0xe3bf5d30, 0x6c341f10, 0x11b41496, - 0x45a0e55c, 0x0001e1, 00000000 + 0x45a0e55c, 0x0001e1 } }, { @@ -57580,19 +57578,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa53e8de7, 0xfdf139e8, 0x402a766e, 0xd037a52e, 0xbfdd95fa, 0xe0c6f2e8, 0x93e64f0b, 0xd6ccbc61, 0xfcb75ddc, 0x6bc68983, 0x878522a, 0xe377eaeb, 0xd467a2c2, 0x4335687f, 0x7be74034, - 0xa89f53f, 0x0001cc, 00000000 + 0xa89f53f, 0x0001cc }, { 0x146936d7, 0x693a0602, 0x8d924f30, 0x55b107cb, 0x78fe2735, 0xbeb2c16f, 0xf177d6d9, 0x63a3433a, 0x816d29a7, 0x5c6a114c, 0x262c5586, 0xb99d605b, 0x7891a563, 0x7cc62720, 0x1479d1f1, - 0xe1e27ea0, 0x0001cf, 00000000 + 0xe1e27ea0, 0x0001cf }, { 0x6e04593f, 0xf6852f9e, 0x48c86e6f, 0x4cd1f8d0, 0x50f6dd9c, 0xa68417c, 0xa4d4df76, 0x31e50916, 0x19f301fd, 0x84a95fb4, 0xecf289ca, 0x1e54cffe, 0xecf073f9, 0x3745638c, 0xb194821a, - 0xc06af540, 0x0001b6, 00000000 + 0xc06af540, 0x0001b6 } }, { @@ -57600,19 +57598,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfdb79cd9, 0xf4ce783e, 0xa78051fc, 0x19305626, 0x766c7f53, 0x20814cb7, 0x445df77e, 0x98f047f0, 0xb4ee2866, 0xdd7ad320, 0x4ce4161a, 0x5fa9f014, 0xc55e57af, 0x627fe285, 0x5a73c6a3, - 0x67d06c5e, 0x0000ac, 00000000 + 0x67d06c5e, 0x0000ac }, { 0xe8e3fe65, 0x11beea79, 0xb127955, 0xb1dc5917, 0x3444a544, 0x10c6c667, 0x6c44465b, 0x88b971d3, 0xfe449169, 0x5a2547c7, 0xed6673f9, 0xa0c7802a, 0xd692426, 0xae1198c8, 0xa39d8104, - 0x9614a373, 0x00002f, 00000000 + 0x9614a373, 0x00002f }, { 0xb9ea0344, 0x22c6af23, 0xd0b36b66, 0x33a52ac3, 0x46e6a9e, 0xb2a5175d, 0xaaf716bd, 0x2678cb53, 0xe52cbce8, 0xe1f087f9, 0x86f7ee38, 0x1e805ab8, 0xb23c1315, 0x12dcc9ac, 0x1e056724, - 0x387131f, 0x00005b, 00000000 + 0x387131f, 0x00005b } }, { @@ -57620,19 +57618,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa40c9159, 0x95b99483, 0x28226772, 0x415c188e, 0x29bc5f1c, 0xf34188e0, 0xd63dd50a, 0xa35418ef, 0xb43eecef, 0x5f5aaad5, 0xded228fc, 0xb52e3ace, 0xe53a2431, 0x7886618, 0x7b430e3e, - 0x37eebedc, 0x0000d6, 00000000 + 0x37eebedc, 0x0000d6 }, { 0xa326968b, 0x6fb842fb, 0xeba16523, 0xdbd4d164, 0x978947c0, 0xedb3d95, 0x15113e15, 0x89d61064, 0x1f27e112, 0xe015b04f, 0x776b5dbe, 0xcdb41bd2, 0x55884b9d, 0x6da8e7db, 0x253c6027, - 0x8264db1b, 0x000113, 00000000 + 0x8264db1b, 0x000113 }, { 0x13957562, 0x5518c2f0, 0x9a250409, 0x24679c8b, 0x7039c3d5, 0x45eec30c, 0x33d9c1da, 0x7143cbd7, 0x88f8d3d7, 0x885f7a07, 0x59b644cf, 0x12e79230, 0xcec01b46, 0xd1149fb9, 0x3464dd2e, - 0xbc22b770, 0x000098, 00000000 + 0xbc22b770, 0x000098 } }, { @@ -57640,19 +57638,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xba189b64, 0xdfc67bb3, 0x25180da3, 0x830daad2, 0x5a0b3268, 0x3cffe9fb, 0xbc79d47f, 0x9dfb6fd1, 0x1d725742, 0x9d6315d2, 0xc231ca05, 0x4667fb75, 0xdbffc696, 0x78e8ca92, 0x331c6f32, - 0x5cd2e1b2, 0x0001ca, 00000000 + 0x5cd2e1b2, 0x0001ca }, { 0x51aa485f, 0xc717d11a, 0xf254360a, 0x9ed4f644, 0x10a577c8, 0x299b42f8, 0xe2e7e055, 0x7d9c6a2e, 0xcb397f59, 0x50f6b608, 0x63172e07, 0x260f1daa, 0x4e0c6c8e, 0x5e06ee53, 0x991851f5, - 0xc354e703, 0x0001e0, 00000000 + 0xc354e703, 0x0001e0 }, { 0x58b6457a, 0xf702e480, 0x198f8b23, 0x65baefcf, 0xf2f843bd, 0x4e4ccd5d, 0xde1f2435, 0x4bf396f, 0xba3a7c8e, 0xdd75fdab, 0x6501d54e, 0xdf8439d9, 0x4075e02b, 0x1d58864b, 0xb874b61a, - 0x81957e55, 0x000026, 00000000 + 0x81957e55, 0x000026 } }, { @@ -57660,19 +57658,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf4b94698, 0x16cfad6b, 0x414f14c3, 0x877a2eff, 0xe0958682, 0x201fc4e9, 0x3f290dca, 0x687c7fac, 0x678d3f22, 0x2ffed8fc, 0x3150998f, 0x6630f278, 0x47ba72c7, 0x7a1a4579, 0x3d190808, - 0x767242bf, 0x0000dd, 00000000 + 0x767242bf, 0x0000dd }, { 0xf08bbe61, 0x34808d7b, 0xdaf4ec90, 0x784a03fa, 0x3aed4e56, 0xca997623, 0x4e9ab94e, 0x884c313a, 0xbd7fa190, 0x154d709d, 0xfd0e3188, 0x16d847f1, 0x5a42856, 0x7ce43cf1, 0xcc58e87f, - 0x7b63b666, 0x000175, 00000000 + 0x7b63b666, 0x000175 }, { 0x39a9bd16, 0x8095a657, 0xf2197952, 0xff350a5, 0x43152795, 0x9e5fee5a, 0xcfbb0bf5, 0xc9013396, 0xb632d645, 0x290cbc82, 0x283cdcd1, 0x1fd1f3d6, 0x5cefd1a7, 0xc940f798, 0x25b316cc, - 0xbdb554c6, 0x00014d, 00000000 + 0xbdb554c6, 0x00014d } }, { @@ -57680,19 +57678,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x96105d6e, 0x9e9914b8, 0xbbec1148, 0x50c2bb12, 0x6aae3602, 0xba5b825a, 0x9461d547, 0x8f3db6bb, 0xc436c198, 0xb7019ebf, 0xc05ea181, 0xdbc93fa7, 0x978e092f, 0xf5340dc, 0x954398fa, - 0xfea6a855, 0x000186, 00000000 + 0xfea6a855, 0x000186 }, { 0x49c009, 0xede3dbfc, 0x5daf0917, 0x5d1f283a, 0xc8ab1a02, 0x20af6ab3, 0x30646702, 0xe59a184d, 0x781db506, 0xd958b33f, 0xf1104f4e, 0xbd65a87f, 0xccc9f77, 0xdc23d6b3, 0xdf20666c, - 0x3136c553, 0x00012e, 00000000 + 0x3136c553, 0x00012e }, { 0xdfcbf1cf, 0xf636dbd2, 0x5bab2908, 0x28f49127, 0xb194793b, 0x4962bdcf, 0xe0488bfa, 0xbfb2d197, 0x6c7821f1, 0xa1d705d9, 0x76a63548, 0x163acdb5, 0xccb3da78, 0x40663099, 0x72c14ee5, - 0x55bfca0d, 0x000124, 00000000 + 0x55bfca0d, 0x000124 } }, { @@ -57700,19 +57698,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x905dc53c, 0xab607775, 0x14ba981f, 0x6f22c172, 0xf1ddac62, 0xb42d80a0, 0x89f94d4f, 0xc6ce5d3c, 0xde1a241a, 0x8939ad7d, 0xa38fe90e, 0xe7c3334b, 0xcda6087a, 0xe408e12, 0x2940fe01, - 0xc029a35e, 0x0001ae, 00000000 + 0xc029a35e, 0x0001ae }, { 0x7d55aae6, 0x10b4a25d, 0xaf975fe5, 0x1741e6cd, 0x987ebf75, 0xbb1b4bd0, 0x262de2d, 0x60700168, 0x7dea198d, 0xb37e5c5f, 0x7c529a53, 0x62488de3, 0x2da40e35, 0x1fed9e54, 0xb600781f, - 0xbaf42e69, 0x0001cd, 00000000 + 0xbaf42e69, 0x0001cd }, { 0x8498347f, 0x2e9842f8, 0x1d6cdc99, 0x5ad3650d, 0xfff1c303, 0xc89374a1, 0x6cbc9991, 0x4dd3cfae, 0x9302bc74, 0x42402b84, 0xe4d5651a, 0x87ebffb9, 0x7f94b451, 0x118836d4, 0x7f55bf37, - 0x63c83b4d, 0x000106, 00000000 + 0x63c83b4d, 0x000106 } }, { @@ -57720,19 +57718,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf83c6cf, 0xbdc3cdb5, 0xb6daceb8, 0xefc52151, 0xe178ba67, 0x286ee606, 0xf35423bf, 0x10f8f78, 0x1cfeef5a, 0xa8b88a5b, 0xb8ed1df7, 0x36de925, 0xd6bca315, 0xce29b57d, 0x6ec2de7d, - 0x67c2f55f, 0x0000ad, 00000000 + 0x67c2f55f, 0x0000ad }, { 0xb4a6d137, 0x1bb8db05, 0xf7f83d9b, 0x28f5efeb, 0xd8168118, 0xacd8c504, 0xeeb8770, 0x1db48a30, 0xbe7d6559, 0x81c89751, 0x8077ca3, 0xfeec6472, 0xc7172749, 0x4ffa8d66, 0x6ba161e3, - 0xc14ba275, 0x00005a, 00000000 + 0xc14ba275, 0x00005a }, { 0x18ad4d03, 0x34ce872b, 0x2a1c408c, 0x77381933, 0x2b82f765, 0xf0f53e59, 0xba9b80e4, 0xeb952fab, 0x2e4194b3, 0x2666c53e, 0x44403622, 0x40cb69a1, 0xb2f21635, 0xac962b66, 0x53da5756, - 0x87717192, 0x000104, 00000000 + 0x87717192, 0x000104 } }, { @@ -57740,19 +57738,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x90a49277, 0x90da78f5, 0x7c7ff529, 0xb97474f9, 0x79eb0969, 0xc104ca01, 0xf544246a, 0xc08b3cfa, 0xe2a8a1e9, 0xfcb7b8bd, 0xaa266947, 0x8eaa8a2d, 0xa891a96b, 0x831f66b7, 0x90e1e8, - 0x94c76215, 0x00006a, 00000000 + 0x94c76215, 0x00006a }, { 0xf24011ed, 0x2be13e7b, 0x9295f487, 0x522677ab, 0xe9adf3aa, 0x1c16e1a, 0x21eaee15, 0xafa57c9b, 0x763717d9, 0xb79b2ee8, 0x54a91203, 0xf2ff76a9, 0x6e6c1fa7, 0x217d7236, 0x9cf87803, - 0x65f158d7, 0x0000aa, 00000000 + 0x65f158d7, 0x0000aa }, { 0xf4d72b71, 0xb25c02a5, 0x78e0a5d1, 0xa9bc3fc4, 0xbeaa3e13, 0x87f471f8, 0x45c7bf8a, 0x7b29c759, 0xe3befbca, 0xae6306b1, 0x4aafb50e, 0x9a80ead1, 0x78c8e033, 0x649f2bb1, 0x43dfa11b, - 0xe3aee254, 0x0001df, 00000000 + 0xe3aee254, 0x0001df } }, { @@ -57760,19 +57758,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87433afa, 0x69681ffe, 0x4026fcf3, 0x96d20c5c, 0xb4cdf6ac, 0x1f65c9c5, 0x21873e2e, 0x59505ce2, 0xc87604ec, 0xc776277, 0x944e4e58, 0xfd9b7aec, 0x79efeda1, 0xa5414c0a, 0xc5260491, - 0xf3ceaf24, 0x0000b4, 00000000 + 0xf3ceaf24, 0x0000b4 }, { 0x11e1b29f, 0xb8a5b734, 0x8f3ba979, 0xafd35072, 0x3167c53b, 0x1dc99f63, 0x683c8ee7, 0xbbb49dc, 0x6dfc8194, 0xccab517e, 0xf31ee8e5, 0xa97412b, 0xfb197bee, 0x2dcd88fc, 0xf191b178, - 0xe6cd56bf, 0x0001a4, 00000000 + 0xe6cd56bf, 0x0001a4 }, { 0xbdabea79, 0xca57bead, 0x79ba8ea6, 0x4869b321, 0xa40819e, 0x9e3f04b, 0xbed602ae, 0xe608de, 0x3116384e, 0xccd984f8, 0xfbe495d6, 0x1a76f929, 0x4d260a8b, 0x5824d497, 0xa1a4bdef, - 0x15d09c89, 0x000129, 00000000 + 0x15d09c89, 0x000129 } }, { @@ -57780,19 +57778,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4869e73f, 0x373fb4de, 0xb97fb1e2, 0x26a95b4f, 0xd611a17a, 0xfaf0bff, 0x59cc5b4c, 0x66830abf, 0x56a3cd29, 0x37e4b948, 0xa0169e03, 0x8a14ba11, 0x7c2ae1e9, 0x9ae8dfd9, 0x1f365d86, - 0xc3ac3e1c, 0x000142, 00000000 + 0xc3ac3e1c, 0x000142 }, { 0x6c56f4dd, 0xe95654a1, 0x7aeca051, 0x2127b19f, 0x779d2a8f, 0xa370d5d, 0x9adcb710, 0x68cf085, 0xcd1c1635, 0x8e567e45, 0x8fe9aa5e, 0x8db592cf, 0x72f94eb5, 0xc8d16005, 0x72b3787d, - 0xf41d20e6, 0x0000c2, 00000000 + 0xf41d20e6, 0x0000c2 }, { 0xff685994, 0xa53ed737, 0xe45ce77c, 0x5ff594ec, 0xd9ab950d, 0x73bebcf1, 0x67aca81f, 0xed109ece, 0xd5735bec, 0x6e28586c, 0x9a7625d8, 0x7d1ce95b, 0xefd498, 0xc1dadf6, 0x212077d3, - 0x54d03089, 0x000049, 00000000 + 0x54d03089, 0x000049 } }, { @@ -57800,19 +57798,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x544def0, 0xeb2e2ee0, 0x9d8c8273, 0x1a348fa0, 0x958315ae, 0xd55fb5b4, 0x11598153, 0xcd31ddc7, 0x30f339c1, 0x1259130a, 0xd4301110, 0x114f1426, 0xbc8d295c, 0xe9ab033, 0xa533938b, - 0x727d313, 0x000001, 00000000 + 0x727d313, 0x000001 }, { 0xb92aaff9, 0xdfc8b5ed, 0x92cf9bf3, 0xf06ee677, 0x1e9bbb80, 0x3d24dd4b, 0xd24b5e57, 0xee4fb8c6, 0xc0acdfc, 0xc5a5d863, 0x4359ebba, 0x911e0fb3, 0x3c9182a4, 0x2b403ef2, 0xaf97f660, - 0xb6c1f69, 0x0001ee, 00000000 + 0xb6c1f69, 0x0001ee }, { 0xc997474e, 0x31c02353, 0x184e6e17, 0x4793637, 0x3c4144fb, 0xbc517c55, 0x602588ab, 0x2b31f5ae, 0xc0dab00b, 0xf252e139, 0x1a54e60a, 0x74fc1d2b, 0xf0c1b90e, 0x22955a27, 0x35475fd6, - 0x838b5848, 0x000064, 00000000 + 0x838b5848, 0x000064 } }, { @@ -57820,19 +57818,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe51751ce, 0x778d77cf, 0xc6809964, 0xdef1a926, 0x2cef9e10, 0x696bb737, 0x97adb6a1, 0x23b650fb, 0x7714ad92, 0xfc1bc83c, 0x89d5951, 0x81768d7c, 0xbbb880d9, 0x4392292b, 0x53dee004, - 0xda97d4f1, 0x0000f8, 00000000 + 0xda97d4f1, 0x0000f8 }, { 0x1f742836, 0xb5f24e7c, 0x28b9aa0f, 0x2c979c54, 0xb598cc16, 0x1f812f1c, 0x7eb6e7fe, 0xc3309d52, 0x124bd762, 0x849bfca, 0xb17fd4b6, 0x3e4cda82, 0x91c2f6eb, 0x47ccf191, 0xc5262a2d, - 0x64124936, 0x00015d, 00000000 + 0x64124936, 0x00015d }, { 0xb4cdfd35, 0x55e217be, 0x6d2cbb9a, 0x2782e716, 0x73fc92b8, 0xaa1c0d56, 0xbf66da38, 0xc3ffbf35, 0x88aa989, 0xbee41dd0, 0xc14c23b, 0x7f62fa01, 0x3be8b1a8, 0xc2e97323, 0x857dce96, - 0xddc7e5c, 0x000108, 00000000 + 0xddc7e5c, 0x000108 } }, { @@ -57840,19 +57838,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa99f8821, 0x659254b5, 0x7a88763b, 0x7d06ed51, 0xe2a4d27b, 0x1dc6e2f1, 0x503ad4d7, 0x8e350323, 0x52c2b41, 0xd87cd175, 0x545924c6, 0xfe29e3b2, 0x2ee664a0, 0xfddb94e3, 0x4a83363e, - 0x1d0f4310, 0x000026, 00000000 + 0x1d0f4310, 0x000026 }, { 0xd2e5154f, 0x193d34d9, 0x987ff353, 0x160b1ba0, 0x718d31ff, 0xe311164b, 0x14aea6c8, 0x41fbff69, 0x8ffefd5e, 0x8558a57f, 0xf80afd06, 0x4189e1de, 0xf563484c, 0x7603d5b9, 0xc099328a, - 0xb98b3560, 0x00017f, 00000000 + 0xb98b3560, 0x00017f }, { 0x96814d05, 0x2cefe648, 0x9246e4f8, 0x7f6c0b21, 0x21c92781, 0x24f4dcda, 0x52e845fe, 0xa67b0bf5, 0x89471dab, 0xc466ca33, 0xa014640d, 0xf253f356, 0xdea2fde2, 0x5577f9d1, 0xa2108d28, - 0x5e000a70, 0x000133, 00000000 + 0x5e000a70, 0x000133 } } }, @@ -57862,19 +57860,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf6875191, 0xaf7c29bc, 0xfef6acfe, 0x775ebdad, 0xa5a67b91, 0xc20dae7f, 0x661adbdd, 0x50440376, 0x1afcb592, 0x61a52ae0, 0x43885028, 0x7741812d, 0xd9de3779, 0x8213b8b1, 0x27306049, - 0xd1aabf54, 0x00018f, 00000000 + 0xd1aabf54, 0x00018f }, { 0xdd53ffb3, 0x94abfb23, 0x6582f840, 0x166b81fa, 0x1c830056, 0x295524b6, 0x357f8eb5, 0xe68226bc, 0x1dd92454, 0x6d0b594d, 0x382a812f, 0x9f417f27, 0xbca554af, 0x5c02ec50, 0x89a50523, - 0x7ef40528, 0x00002b, 00000000 + 0x7ef40528, 0x00002b }, { 0x3184e0e3, 0x7d4d6482, 0x6449eb9c, 0x38ccec93, 0xd6073955, 0x795b29fa, 0x85b6ae96, 0x6e7e0c63, 0xeeffb56a, 0xde0c0b92, 0xab75944b, 0xf41ea11d, 0xc91d1237, 0xc153353d, 0x53a57df5, - 0xa5d18909, 0x0000e1, 00000000 + 0xa5d18909, 0x0000e1 } }, { @@ -57882,19 +57880,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe46ef921, 0x4b1cf68e, 0x959723fa, 0xb86ffc2d, 0x69837cea, 0xd6ff905d, 0x41920fcc, 0x721c9879, 0xc45d2a95, 0xbd013703, 0x7a242d42, 0x765441cb, 0x6b1d3a73, 0xe2bcc6ed, 0x1e53d599, - 0x9ec84100, 0x0000a9, 00000000 + 0x9ec84100, 0x0000a9 }, { 0xb6b016e0, 0xb7d50b3f, 0xe78bb566, 0x52138bbf, 0x15adabaa, 0xa760a8e0, 0xd77231e8, 0x42ca3447, 0x1b81e177, 0x6b348ce1, 0x5fe0e4cf, 0x5c8e3434, 0x8ff04f72, 0x9663b9fb, 0x48fd5183, - 0x9c259bad, 0x00013a, 00000000 + 0x9c259bad, 0x00013a }, { 0xdfc01de6, 0x9add267d, 0xe47bd09e, 0xa4a80ba9, 0xc3c1eff9, 0xcd31b76a, 0xe0ecc35a, 0x82ae2703, 0x72127063, 0xa5cb7f22, 0x36bbfd42, 0x5b1ebea3, 0xd4deb3e3, 0x4ddf8373, 0xba70c2, - 0x84a935b7, 0x00000c, 00000000 + 0x84a935b7, 0x00000c } }, { @@ -57902,19 +57900,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x63c8c9e7, 0xe3920b7f, 0x2db39728, 0x58d97aa4, 0x52d2c84, 0xd1df8281, 0xf0f8efa5, 0x69a9eb58, 0x23842931, 0x4b98c372, 0xef2abe57, 0xfa58cd36, 0xa71707d0, 0x4693c4ab, 0x7babf22, - 0xbecffa33, 0x000111, 00000000 + 0xbecffa33, 0x000111 }, { 0x675dc633, 0xb267431d, 0xc4b48045, 0xee6f6b0c, 0x6d3931c, 0x25c07050, 0x2ba21983, 0x858e7e6c, 0x47d6b873, 0x2850a9f5, 0x86f40e2b, 0xcaa1efa0, 0x8461889d, 0xa620303d, 0x17dba9a3, - 0x77f90e9d, 0x00011d, 00000000 + 0x77f90e9d, 0x00011d }, { 0xad257521, 0x97187d18, 0x2bfc1382, 0xe1c0f898, 0x45fb82f, 0x287d0d47, 0xeb3da20d, 0x4ba0b845, 0xfe5b917e, 0x289e6842, 0x758b832a, 0xc97d80df, 0xa427cc65, 0xca42a3db, 0x919ec446, - 0xd1b055e, 0x0000b8, 00000000 + 0xd1b055e, 0x0000b8 } }, { @@ -57922,19 +57920,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x53165090, 0x447866a1, 0xd83edffe, 0xcbd24965, 0x4e52494d, 0x65192cfe, 0xe68c7f44, 0x51cf575c, 0x4f65f4ee, 0xb48e0642, 0x17b2436d, 0x42be0e3c, 0x28c6e059, 0x64294781, 0x80cb6e8a, - 0x329bd9f, 0x0000ae, 00000000 + 0x329bd9f, 0x0000ae }, { 0x8998e081, 0xbc48ea36, 0x366b6c98, 0xfa60e53f, 0x1ab3c052, 0xb6f7216e, 0x2bce5332, 0x79949807, 0xb8a8e083, 0x79fd2489, 0x8c10ccfa, 0xd5cb243c, 0xc3494406, 0x8f1260f9, 0xbb4c5f09, - 0xf3a1d890, 0x000002, 00000000 + 0xf3a1d890, 0x000002 }, { 0x59368743, 0xe1a0f3b8, 0x634db8f0, 0x65c7e9a, 0xb80f3889, 0x85e2954e, 0xc7fad8f8, 0xd671e2c8, 0x10dd6497, 0x73878137, 0x4125c462, 0x9862b78e, 0xe76facb4, 0x1a2aa18a, 0xfaabc3a7, - 0x61ec1645, 0x0000a1, 00000000 + 0x61ec1645, 0x0000a1 } }, { @@ -57942,19 +57940,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3f69c2e9, 0x9f890b0e, 0xa051c1f6, 0xa9b4455b, 0xba3f531f, 0x7cc14c78, 0xf3efce1a, 0xcd36a122, 0x5bcf1d85, 0xcf1ae907, 0xb10986ba, 0x71385e7a, 0x926fdc4, 0xe07af79e, 0xcf23103c, - 0xbb932679, 0x0001bc, 00000000 + 0xbb932679, 0x0001bc }, { 0xde16ecda, 0xcf2504cf, 0xdcd39a7e, 0xd1ad9ab9, 0x4ecec482, 0xe9918050, 0x544eb414, 0x3335f070, 0xa269ef6e, 0x10c2634f, 0xa2a56cbe, 0x86ebe6ac, 0xf796ea27, 0xb1eb454f, 0xb3264219, - 0xc07e4760, 0x0000dc, 00000000 + 0xc07e4760, 0x0000dc }, { 0xb791f33, 0xd6a63996, 0xabe3641a, 0x4fa6d15f, 0x8c527fca, 0x830c9c48, 0x95e07dce, 0xa8e75a9c, 0xa59a4f22, 0xbbba6c12, 0x39a25359, 0x422c65b8, 0xaec2cdef, 0xba39b62d, 0x21b801d1, - 0x58f3248f, 0x0001c0, 00000000 + 0x58f3248f, 0x0001c0 } }, { @@ -57962,19 +57960,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x91d8b406, 0xd3c96aba, 0x91e63f89, 0x6d37e3fb, 0xeeb7bb85, 0x9f5e9b10, 0x1e177f60, 0x755ba597, 0xbbcc6c0c, 0x6e7d017c, 0xa72b4231, 0x992da89b, 0x602ac11b, 0xb24c8a7, 0x89d0718c, - 0x34cd31f0, 0x0000c0, 00000000 + 0x34cd31f0, 0x0000c0 }, { 0xbf4fb569, 0xf2aec7e3, 0x2b55d0a7, 0x7d552586, 0x49e3f466, 0x4c77e438, 0x5a3141f5, 0xc7742f81, 0x80e4968c, 0x8823efba, 0xfc11ef4d, 0x47d3b345, 0x77ab22b9, 0x5ddb5d35, 0xc5867fe6, - 0x41eea104, 0x00016e, 00000000 + 0x41eea104, 0x00016e }, { 0x35b741b2, 0xae313af4, 0xfe3f0eba, 0xc333161e, 0xba0d56d5, 0xd0ac763b, 0x999e61c6, 0x3f31c58, 0x63580833, 0xf9050679, 0x2d6645a8, 0x766eed25, 0xf156def5, 0x977a56a4, 0x6338db00, - 0x62794f37, 0x00016a, 00000000 + 0x62794f37, 0x00016a } }, { @@ -57982,19 +57980,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb2b8666d, 0x1b38d218, 0xb3bea7f0, 0xbd60b955, 0x1501a5b7, 0x95375291, 0x9efa1eef, 0x8d12bfac, 0xbcf60590, 0xd0983f4a, 0x198b974f, 0x93f1b01a, 0xfbb50f7, 0x84a5c94c, 0xdf787254, - 0x886552b6, 0x0000c9, 00000000 + 0x886552b6, 0x0000c9 }, { 0x6adba5e7, 0x5472c05c, 0xeee28f5d, 0x10d4ecd7, 0x66be8b37, 0x26201c7b, 0x5641315c, 0xa75a334c, 0xff718ba9, 0x55f17fbc, 0x40ba1ded, 0xdcaff711, 0x85153dff, 0x75c94443, 0x1a4d1798, - 0x12153b59, 0x0000b4, 00000000 + 0x12153b59, 0x0000b4 }, { 0x70ab9877, 0x1319d557, 0x37053623, 0xad1f4fa1, 0x941efe5e, 0xaf30c55f, 0xfb31e6e2, 0xa2e5a30b, 0xd58b19f5, 0x91e175d8, 0x4bf9972d, 0x696fb90f, 0x8af9830c, 0xec57f07a, 0x8c19a69d, - 0x46b5fc81, 0x00019c, 00000000 + 0x46b5fc81, 0x00019c } }, { @@ -58002,19 +58000,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3083261c, 0x806e0f68, 0x1bd6cc7e, 0x15fa0365, 0x50727b1f, 0xbb9813f0, 0x997546bd, 0xe81a9012, 0xc2743bd, 0x68f6c656, 0x5ae7c300, 0x12d55a32, 0x9836d309, 0x3dececca, 0x8cf0b0bb, - 0x7bba4f38, 0x00004b, 00000000 + 0x7bba4f38, 0x00004b }, { 0xeecfe298, 0x6eba5199, 0x5e141d3d, 0x435ce0f6, 0x52ab40b9, 0x6c7e21e1, 0x6a05cd63, 0xb6f24ebe, 0x43d9bf75, 0x95fb21c5, 0xf160dafe, 0x7cdaa815, 0x26cf6962, 0x7139dd61, 0xebc3edf8, - 0x32af35c4, 0x000123, 00000000 + 0x32af35c4, 0x000123 }, { 0x2f90f4ca, 0xbea9c25a, 0xd4c9d64c, 0xa8c1ee94, 0x19be1c2b, 0xde02f3b6, 0x7b36bb8c, 0x6112e01f, 0x9c668219, 0x5ad3d68b, 0x971ae308, 0xdf17bb25, 0xf7319efe, 0xbfc9aa7a, 0x9a7a3f5b, - 0x9eab96ac, 0x000139, 00000000 + 0x9eab96ac, 0x000139 } }, { @@ -58022,19 +58020,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5929f927, 0xb4af7f30, 0x2766eb36, 0xbe4592e6, 0x34c3584d, 0xc0ae2515, 0xc98da992, 0x2afebfc6, 0x39f9327, 0x1e93cb01, 0x8ea836a8, 0xac2bb6a7, 0x8ab427a5, 0x982be583, 0x2242369c, - 0x67030401, 0x00005c, 00000000 + 0x67030401, 0x00005c }, { 0x31233bda, 0x18c47d73, 0x99a21f77, 0x99e28ed, 0xc49d80c9, 0xbe04e2f7, 0x8c2e3336, 0xf6d2c73a, 0x41c1189b, 0xa21d578a, 0x508bf130, 0xf9c6d1bc, 0x9fb0e16d, 0xbacf295d, 0xcbcf2ec8, - 0x4776ba9a, 0x0001ca, 00000000 + 0x4776ba9a, 0x0001ca }, { 0x82ada549, 0x9e561bff, 0x44b0ae84, 0xa718e893, 0x525f00d8, 0x8c5749d0, 0x3c5b3d1c, 0xced9a50, 0x4c243689, 0x8c217fdf, 0x2ebe7633, 0xf7bb1f6c, 0xc1e82c2b, 0x24a21521, 0x95484889, - 0x8e0a9ded, 0x000060, 00000000 + 0x8e0a9ded, 0x000060 } }, { @@ -58042,19 +58040,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6fffe2e5, 0x2c75fde7, 0xdc31e236, 0xcbf2f558, 0x9787f7b4, 0xbc7c6e2b, 0x71d303d9, 0xde1d5320, 0x1af510e6, 0x409fe937, 0x81080a6e, 0x8a97e8e4, 0x39f01d80, 0x48f4440c, 0x2484ddbd, - 0x59863c7b, 0x000061, 00000000 + 0x59863c7b, 0x000061 }, { 0x5ff3013a, 0xe70de732, 0x342e2213, 0x3fc5ed31, 0x35004358, 0xc54e2231, 0x26de2098, 0x4bdf39dd, 0x8e21b5f8, 0x947e1988, 0x816d90bb, 0x925d45f1, 0x8bc1b474, 0x24509799, 0xb5dfb0e3, - 0xfe3b9255, 0x000014, 00000000 + 0xfe3b9255, 0x000014 }, { 0xc07f26bc, 0xd92d5114, 0xfc6f511a, 0x5937fee8, 0x5d767f01, 0xec17b6c6, 0xc4b29bec, 0xfd9ea237, 0x40f46bbd, 0x5aa1fe4e, 0x5d431c49, 0x4eef69b9, 0x6b061ff4, 0x9f4eab7a, 0x5c968afc, - 0x55955988, 0x00002b, 00000000 + 0x55955988, 0x00002b } }, { @@ -58062,19 +58060,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe1d25845, 0x1676b5f0, 0xa2a8f84a, 0xf5bb564b, 0xf27e08c7, 0x65d734c0, 0x60284384, 0xbae4ee1a, 0x3cb1eac2, 0x9fdd7f04, 0x712556d3, 0xbb1a69f6, 0xb0e0da68, 0xf26c2a02, 0x50f79423, - 0xbc1d156b, 0x0001b0, 00000000 + 0xbc1d156b, 0x0001b0 }, { 0xb7ff3274, 0x65aacc1f, 0xb9192aaa, 0xc69470f7, 0x2ba15136, 0x2a1471b1, 0x166c4d02, 0x9e8e335f, 0x197dca10, 0x14ea4380, 0x3ed1efeb, 0x9855860d, 0x35e11dee, 0xe16a018d, 0xfa6cfe2b, - 0xcda842dd, 0x000116, 00000000 + 0xcda842dd, 0x000116 }, { 0xb222be14, 0x120a9ce8, 0xf7741310, 0x4d5362c9, 0x99afb94f, 0xee5c7eac, 0x85744d60, 0xa17e436c, 0x182b3eca, 0xd2ed2019, 0x3cdd7086, 0x1bcc62f, 0xac2953a5, 0x4756429f, 0x4eef010d, - 0xc227db1e, 0x0000a5, 00000000 + 0xc227db1e, 0x0000a5 } }, { @@ -58082,19 +58080,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x54188985, 0x5e0a6d7a, 0x355f7419, 0x956a8e58, 0x4d5e7b55, 0xe471d8a6, 0xf899d947, 0xa90ac340, 0xeb36e526, 0xbb887206, 0x4fabd381, 0xde0341f7, 0x261d0e61, 0xed1da1f7, 0x84081389, - 0x4b04b58b, 0x000122, 00000000 + 0x4b04b58b, 0x000122 }, { 0xc3550f25, 0xa5a9e212, 0x3fb07f0b, 0x49f26afd, 0xe2f90c25, 0x221bbc1e, 0x25883161, 0xbca5bc2f, 0x1fee5e52, 0x987b7e7b, 0x2f9588f7, 0x5529c262, 0x6854f998, 0x4ce1ed18, 0xee47ca2c, - 0x716c6428, 0x0000b5, 00000000 + 0x716c6428, 0x0000b5 }, { 0xbbea2526, 0x23e21754, 0xb96955e8, 0xd663a4a1, 0x61b7caf2, 0xd013a154, 0xbaccd8f5, 0xb26390df, 0x69cdcebe, 0xdf01c7a2, 0xcb2e99af, 0x1a6736e, 0xca7b3576, 0xb4192d8, 0xef98bbf2, - 0x9cf54138, 0x0001a2, 00000000 + 0x9cf54138, 0x0001a2 } }, { @@ -58102,19 +58100,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6107cf88, 0x352e06f2, 0x58bf2db7, 0x56fee6d, 0xdc13bf49, 0x8865b1f, 0xae4f3e65, 0x63ef9c31, 0x90d4894a, 0x98f1d3d5, 0x8a3d8f64, 0x30ffc3cc, 0xecbb7bb5, 0x753a9a6a, 0x7525278f, - 0x8a8532e2, 0x0000e3, 00000000 + 0x8a8532e2, 0x0000e3 }, { 0x281133d5, 0xad05f30d, 0x502a95e5, 0x9df3119e, 0xc5d01daf, 0xcf689af3, 0x4ad15e4, 0x9b148a17, 0x35dd9abf, 0x11951875, 0x4a875d0e, 0xed1ba36a, 0xdd84dd4f, 0xb1adda1a, 0x8db31d60, - 0x9a016f89, 0x00013c, 00000000 + 0x9a016f89, 0x00013c }, { 0x9d2264f8, 0xbad17d4e, 0x6b1b43d1, 0x1c40a76a, 0x3cc1488e, 0xb4e34d24, 0xb2ab3ee5, 0xc0641087, 0x9d0f5684, 0x2b4b6360, 0xe47e4851, 0x81e6f23c, 0x509f4a63, 0x60fbc5a6, 0xe3605b99, - 0x16126f6, 0x00002c, 00000000 + 0x16126f6, 0x00002c } }, { @@ -58122,19 +58120,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x88173cda, 0x7efd24ab, 0x574e83df, 0x2048acb8, 0x52e7d93, 0x9c1dbd4f, 0xce3232e5, 0xa796f35, 0x37f1e9e1, 0x98165f82, 0x60f34d56, 0xec0f4058, 0x56d77128, 0xd34d606d, 0x9a57c113, - 0xafe62ceb, 0x0001c4, 00000000 + 0xafe62ceb, 0x0001c4 }, { 0xb1c1ebbf, 0x4a979090, 0xe36eb44, 0xf5266021, 0x19cc98bf, 0x5c9f9127, 0x7b84d376, 0x3f6b4371, 0xb9444b3f, 0x99637f4f, 0xc4911b92, 0x1159ee6d, 0x7d73459b, 0xb728874b, 0x4326f268, - 0x9c11e0a5, 0x000197, 00000000 + 0x9c11e0a5, 0x000197 }, { 0x309de116, 0x3c876c0c, 0x2dfa13c3, 0x5e3b39cb, 0x71f781c7, 0xf4d70aa6, 0xf0ad66df, 0x9fab3bfc, 0x2bce14d9, 0x905cef25, 0xef934e94, 0x7f381ede, 0xbedcefbe, 0x26696ca, 0x92fd742d, - 0x63989d09, 0x00004d, 00000000 + 0x63989d09, 0x00004d } }, { @@ -58142,19 +58140,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4bf09720, 0xdced6d0d, 0xc3b17f23, 0x6faa406a, 0xdfc0a705, 0x463821b, 0x653aacb5, 0xb5654d31, 0xb9a18176, 0x9ddd0daa, 0x3e6f8d43, 0x9f11fa67, 0xf6ad2af, 0x463c4af1, 0x9f561ea5, - 0x365dca19, 0x000135, 00000000 + 0x365dca19, 0x000135 }, { 0xc43c8978, 0xb1716505, 0xe77e6340, 0x698cfe9, 0xdf05bbbd, 0x9d88d4cc, 0x5be36be6, 0x63fd772, 0x1f6901b7, 0xbb1fcd1a, 0xd0e83a8f, 0xcfad23c7, 0xe35cac5e, 0xe3ee7217, 0x80920288, - 0xac6123d3, 0x00012a, 00000000 + 0xac6123d3, 0x00012a }, { 0x6cb8e4f1, 0x8c0daa99, 0x6842887b, 0x547e4977, 0x7ee13edd, 0xb929a70e, 0xe6131a73, 0x291fba5d, 0x87047c31, 0x26a309e9, 0x6d4166d8, 0xb82a6afe, 0x2c7860bb, 0x6c7a6bcd, 0x65ed603e, - 0xc5bb71a9, 0x00010b, 00000000 + 0xc5bb71a9, 0x00010b } } }, @@ -58164,19 +58162,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9622be98, 0x8dec2596, 0x4a18f283, 0xe36223fe, 0x2764f92f, 0x84264340, 0x91548b3d, 0xd69af045, 0x90509381, 0x79f187fc, 0xc22956b4, 0xf52ee21e, 0x80098626, 0x3a6b8415, 0xcaedf8bd, - 0xd3023a26, 0x0000be, 00000000 + 0xd3023a26, 0x0000be }, { 0x9449ec54, 0xb1f70994, 0xe2541c98, 0x11bb57b, 0x83ebce15, 0x7f26906f, 0x5bd9248a, 0x34cafa64, 0x5af9cedd, 0x54d8efd8, 0x26eca65e, 0x2b98a482, 0xd3bb564f, 0xed22fd2f, 0xa5a8a185, - 0xd2a2db42, 0x00012d, 00000000 + 0xd2a2db42, 0x00012d }, { 0x677e646b, 0x28776ad6, 0xc46a79af, 0xf07983bb, 0xdc3b11c0, 0xd21ac7da, 0xba7af580, 0xf010ac50, 0xd809d4a4, 0x9017cc53, 0x98364f61, 0x9de7945, 0x8b0b44fc, 0x5d91cd94, 0x772c40f3, - 0x78650efa, 0x00014e, 00000000 + 0x78650efa, 0x00014e } }, { @@ -58184,19 +58182,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1c400dc3, 0x2b982aca, 0xfbc5120d, 0xf3569e92, 0x1e59d9b9, 0xc9b444ee, 0x4846aeed, 0x43bdf652, 0x81c1271, 0x17ad9afb, 0xe48a27e7, 0x5b22822a, 0xeeabf1d8, 0xc14ff7bc, 0x151773ae, - 0x2c5b914d, 0x000037, 00000000 + 0x2c5b914d, 0x000037 }, { 0x5c67276a, 0x77704759, 0xc476ec45, 0x5fcd0d2, 0x9fd7fb6c, 0x68801b17, 0xba8e22d0, 0xbf67a679, 0x3d6fbf18, 0x4bd801ab, 0x94b0dbde, 0xf302aafa, 0x1ad3340b, 0xd7d894a5, 0x70490e81, - 0xb66a0409, 0x000198, 00000000 + 0xb66a0409, 0x000198 }, { 0xf7ae33f2, 0x76447ee6, 0x5a1e506, 0xf5193c18, 0x4df466d5, 0xa85c00d0, 0xc1e89cd6, 0x3d7d76c8, 0x507f0a22, 0x83960409, 0xdd86ea53, 0x78ed2251, 0xe9db7138, 0x6235ccf7, 0x3d1001e4, - 0x55d11b9f, 0x000179, 00000000 + 0x55d11b9f, 0x000179 } }, { @@ -58204,19 +58202,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9f111369, 0xe513b713, 0xa585d2d4, 0x1a5dbce8, 0xb1ac5251, 0xedf840fa, 0xaad0b66e, 0xac1c9e93, 0x4c151a91, 0xb98258df, 0x7ebc42af, 0xec1c4eb8, 0xb668720, 0x4a50757e, 0xaaa4ac8e, - 0x1f598efd, 0x0000af, 00000000 + 0x1f598efd, 0x0000af }, { 0xda435bb4, 0x29560664, 0x24a20f14, 0x9249d4ac, 0x1804c6df, 0xd221dc8b, 0xda678418, 0x225bfdbf, 0xd49f8d5c, 0xcca733eb, 0xeb783c9b, 0xfccc80b6, 0x44e57024, 0xff7089ff, 0xd791abd, - 0xae18f3bb, 0x0000f9, 00000000 + 0xae18f3bb, 0x0000f9 }, { 0xe84e4b1c, 0x24f85da4, 0x843f0bf5, 0xa15a87bb, 0xd1992039, 0x648d64f0, 0xab64a5d, 0x6d2381cd, 0x6fe6f829, 0xea5b7667, 0xef204792, 0x4cf7a8fa, 0x2e033005, 0x38e45343, 0xff6df800, - 0x661905e1, 0x0000b0, 00000000 + 0x661905e1, 0x0000b0 } }, { @@ -58224,19 +58222,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1742e95f, 0xc858b752, 0xbf828d, 0x6e18a98a, 0xd0176529, 0xfedf29b3, 0x54a4a4e8, 0x935e1abd, 0xef2c5271, 0x6c26700, 0x382a3682, 0xcafcf9ed, 0x5a9ecaba, 0xe0c04231, 0xd0529cd, - 0xdd05348e, 0x0001c5, 00000000 + 0xdd05348e, 0x0001c5 }, { 0xa7c8e379, 0x3b81d410, 0x678c25aa, 0x8afca8d, 0x59337b7f, 0xe8ca7672, 0x6c64afa3, 0x2862834e, 0x60175668, 0xd8876482, 0x370d446b, 0x5928420c, 0x9486cf05, 0x98be35a0, 0x5d9d2f85, - 0xb73ff0a9, 0x0000e5, 00000000 + 0xb73ff0a9, 0x0000e5 }, { 0x4dbe665e, 0xf00d6dd9, 0xd0b5b2ce, 0x25cfc4dc, 0xafb6ca17, 0xfcc1e08b, 0x31771f52, 0xc09044e6, 0x391eac19, 0x569e7c11, 0x5ea10edc, 0x682384e7, 0xcc4de4f1, 0x1ee97759, 0xdba90b4d, - 0x55536be, 0x000153, 00000000 + 0x55536be, 0x000153 } }, { @@ -58244,19 +58242,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd0adca0f, 0xc96581ae, 0x7b9aca53, 0x5da911b4, 0x20a913c8, 0x2bf39c4a, 0xd1f71f7d, 0xa4825660, 0x734d8ba2, 0x1832525d, 0xa164bab8, 0xf4d64f17, 0xf31b1b70, 0x2c31b539, 0x64137c10, - 0x46e2b4a3, 0x000101, 00000000 + 0x46e2b4a3, 0x000101 }, { 0x2704efc0, 0x985d7628, 0xc940093c, 0xa331d982, 0x3488ad15, 0x5d4a51b4, 0xf24752ff, 0xd85febed, 0x20bfe84a, 0x6f4f73da, 0xacfd411d, 0x9a526b0e, 0x30a19ddb, 0xb8d91850, 0x52b79fee, - 0x4494bd75, 0x0000fa, 00000000 + 0x4494bd75, 0x0000fa }, { 0x6e6abe6d, 0xe4172878, 0x488c9db8, 0xb3fba5ae, 0x6949f009, 0x6b2d4e8f, 0x7ff2fbce, 0xbbe9bc6, 0xc305d4d5, 0x436919e3, 0x54f919f3, 0xa8aedca6, 0xab4a7a21, 0x6a2b005c, 0x93507c06, - 0x22156028, 0x0000f2, 00000000 + 0x22156028, 0x0000f2 } }, { @@ -58264,19 +58262,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd7e22087, 0x9de90bfe, 0xe0939177, 0xecdf6403, 0x2052314a, 0x1cf30f59, 0x72c3ec39, 0xd9ba6cde, 0xf45bdeb1, 0xebf8b464, 0xb28a9b82, 0x6aa55da7, 0x6c6d6be2, 0x7b5351ad, 0xdfecffd0, - 0xf1fa8a71, 0x0001a8, 00000000 + 0xf1fa8a71, 0x0001a8 }, { 0xf6220ad1, 0x6121bbdf, 0xee6a36c5, 0x76a841cc, 0x94b33b3f, 0x58ddc5da, 0xa8d5285b, 0xf2064317, 0x3109552f, 0x5b8b6d09, 0x1261d50d, 0xdf82ec8f, 0xeb8e3389, 0x3f8e62df, 0x15037450, - 0xf3627496, 0x0000db, 00000000 + 0xf3627496, 0x0000db }, { 0x4b33c5df, 0xe69cce63, 0x32371dec, 0x962f85b8, 0x79e1db51, 0xf9b4e581, 0x14f784ac, 0xd9a30154, 0xe7fe30fa, 0x161f52d1, 0xc729c55f, 0xf50f62db, 0x814fcbdb, 0xc6e32b27, 0xc03488c4, - 0x6e4e95c6, 0x0001cb, 00000000 + 0x6e4e95c6, 0x0001cb } }, { @@ -58284,19 +58282,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe38c2da5, 0x951507c6, 0xf8e2c661, 0x49b5beca, 0x54c76344, 0x832c03bf, 0xa394c095, 0x98ba8832, 0x55e95b00, 0x2601863e, 0x9e786652, 0x3f97bae0, 0xe8448d5d, 0x4ac42be1, 0xc2f352d4, - 0x46763f43, 0x000131, 00000000 + 0x46763f43, 0x000131 }, { 0xc6abfe73, 0x7da2c75e, 0xd395e56e, 0xc9907cee, 0x6e0433c6, 0x9c83d2ad, 0x4b135856, 0x4ab1d95d, 0x65a5b3fc, 0x48973b66, 0x96c00d63, 0xd274662b, 0xeefae0d9, 0x58ddd61c, 0x34fd24ac, - 0xfe19f58a, 0x00000b, 00000000 + 0xfe19f58a, 0x00000b }, { 0x9d32ca6, 0x6964bdc4, 0x49714573, 0xe310028e, 0xe2860184, 0x8b4adbea, 0xab971743, 0xc8e46040, 0xad4f547e, 0xcc7d95e1, 0xfdefa37, 0x8a10d2c6, 0xcace8076, 0x6f039bbe, 0x65e3a371, - 0x49f891f2, 0x00006b, 00000000 + 0x49f891f2, 0x00006b } }, { @@ -58304,19 +58302,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8b32a2ec, 0x33e5e9f7, 0x680cbc36, 0x98e19902, 0x9bc0f54a, 0x7637005c, 0xb52a310f, 0x23e63dbc, 0x67806e68, 0xe6fcef30, 0xdc357fd9, 0x75faa228, 0x83d13c9b, 0x6d92f780, 0xdf67b9b9, - 0x69b6b7c4, 0x00003a, 00000000 + 0x69b6b7c4, 0x00003a }, { 0x5211bafe, 0x8fa37016, 0x4000f49c, 0x8e65bffc, 0x3a0a43d, 0x2a5763e0, 0x237f92d1, 0x1fed9b3, 0x192ed964, 0xa2e137e7, 0x9480eff9, 0x11eeaa8f, 0x20c4ba32, 0xab4f2cc9, 0xb7250a57, - 0x5a68e33b, 0x000037, 00000000 + 0x5a68e33b, 0x000037 }, { 0xea3cdde, 0x1e19f149, 0x62cf6183, 0x6664c7c9, 0xab0a7392, 0x6308bf38, 0x6f7a4c1e, 0x51a32fbd, 0xf640acaa, 0x6d249a35, 0xb65d54ea, 0xd022099b, 0xa2de466f, 0xa55c9c14, 0x34e191bc, - 0x1cceb9b9, 0x000009, 00000000 + 0x1cceb9b9, 0x000009 } }, { @@ -58324,19 +58322,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7db02c6c, 0x51f2efde, 0x34e7fdbf, 0xd2ea7f2b, 0xda0633a3, 0xbf8b917c, 0x4fab6ffd, 0xa771cbb5, 0x57831e84, 0x4ebe952a, 0x3168d799, 0x2a39386, 0x80c359ad, 0x7a9248de, 0x6bf4d35f, - 0x93993b23, 0x000095, 00000000 + 0x93993b23, 0x000095 }, { 0x839bfa8f, 0x8f6fb79c, 0x6f813cca, 0x96e115ac, 0x3dba6c3e, 0xf718c45d, 0xeecdc809, 0xd0b89b17, 0xe075a8e2, 0xd3472fd6, 0x475196a7, 0x2236902, 0xd3164bbf, 0x3961beb2, 0xb10fdd40, - 0x30c49b90, 0x0000e3, 00000000 + 0x30c49b90, 0x0000e3 }, { 0x158b2146, 0x83d23071, 0x8c188710, 0x8b013555, 0x675a2827, 0xba93ec68, 0xbda55955, 0x42ef0a47, 0xdf0637ae, 0xc7f72345, 0x5cf5eba2, 0x627d9f45, 0xbb503898, 0x76effc3b, 0x58dd228, - 0x42a23bf9, 0x0000f6, 00000000 + 0x42a23bf9, 0x0000f6 } }, { @@ -58344,19 +58342,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x97adc7cb, 0xfd1247b0, 0x296ea648, 0x82f1357b, 0xf65e1a37, 0x8f2ffaf0, 0xcb00225, 0x1b32a003, 0x8f87e84e, 0x85eaa50a, 0x2736e2cc, 0xa935a8ae, 0xad1cdc16, 0x9586f306, 0xd9e7b620, - 0x1708bc82, 0x000099, 00000000 + 0x1708bc82, 0x000099 }, { 0xf972f450, 0x2c62923d, 0x42d6e4a, 0x1cf9c0eb, 0x425c4310, 0x4b271c97, 0x7b2e1dd1, 0x6f6584b5, 0x741cc6bb, 0xba61385d, 0x7711f42f, 0x52c3c394, 0xf0dfc095, 0xe093486f, 0xc6e74f0b, - 0xe6254003, 0x00005f, 00000000 + 0xe6254003, 0x00005f }, { 0xfa5cccd6, 0x9913a9d7, 0xe78f2676, 0x1ae4549a, 0xf979753b, 0x6c30812e, 0x865116e2, 0xd0f56fbb, 0x994fa052, 0x5700a7c4, 0x7856e782, 0x8ed272d4, 0x19168c80, 0xf11106, 0x6301a2f, - 0xd0027f55, 0x00004a, 00000000 + 0xd0027f55, 0x00004a } }, { @@ -58364,19 +58362,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x58e8a1a7, 0x28d6ea9e, 0x3416f5d0, 0x51f23e54, 0x73af911a, 0xb6969d6c, 0xed95b51e, 0x2289363f, 0x85ddcadd, 0x1c152872, 0x44f6480f, 0x1af6a6f4, 0xb1ef379d, 0xae9aec06, 0x4adc1c39, - 0x6a4b681d, 0x000125, 00000000 + 0x6a4b681d, 0x000125 }, { 0xd0628f32, 0x321044a9, 0x8d3d13b2, 0x75042b15, 0x447e0d4e, 0x26f87012, 0xe771f1a3, 0xb7b2e4cb, 0x4063198a, 0xfec61dbe, 0x98861786, 0xcaac175e, 0xac71fa99, 0x1b7a0d2b, 0xd2bff56a, - 0x80f108fa, 0x000134, 00000000 + 0x80f108fa, 0x000134 }, { 0x969a16b7, 0x5c47fba8, 0x4d9063ca, 0x795dd989, 0x38bcc5c5, 0x218459f4, 0x84656961, 0xad656eae, 0xae010398, 0x2e5adbfe, 0x5dd0dee3, 0x2ac482ca, 0x51501ad7, 0xeb246d86, 0x839d084c, - 0x118d6773, 0x00001e, 00000000 + 0x118d6773, 0x00001e } }, { @@ -58384,19 +58382,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc282ff80, 0x14832416, 0xb91031e8, 0x1d6e485d, 0x191a460a, 0xb1b03350, 0xb2644832, 0xff6999ad, 0xae1c0621, 0x4c7a26c2, 0x9662f4a8, 0xa08381b1, 0xf06301, 0x6630709c, 0x12e612c5, - 0x1477ebf8, 0x000107, 00000000 + 0x1477ebf8, 0x000107 }, { 0x2cf877aa, 0xcb3f30fb, 0xd56de845, 0xdb9e112f, 0x9940ed85, 0x74d3c3f9, 0xa3763c90, 0x8ffa31d1, 0x92171cc5, 0xdc396186, 0xc75466d5, 0x9a3cd092, 0x4b5e1f3a, 0xab7e107d, 0x3eb89f89, - 0x7943a63f, 0x00006b, 00000000 + 0x7943a63f, 0x00006b }, { 0x2158d384, 0x6661a72d, 0xec65d949, 0xa07ea549, 0xb1f116c4, 0x7afdeea6, 0x556752de, 0x362bf677, 0x689fc2fc, 0x928d7715, 0x22b1eff8, 0xdac5621d, 0x53ffec90, 0xcde02249, 0x6e54b6d0, - 0x2a70e6db, 0x0001d7, 00000000 + 0x2a70e6db, 0x0001d7 } }, { @@ -58404,19 +58402,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x93eee9a2, 0x9a4d0d0e, 0xac514031, 0xdf2177da, 0x807a3633, 0x4436f9b, 0xecf5e48c, 0xd4ac8a90, 0xbd595dbb, 0xce92365, 0xff4802c3, 0x3e133265, 0xc69e6d7f, 0xc280ba0, 0x8f6948da, - 0x566a17c5, 0x0001f1, 00000000 + 0x566a17c5, 0x0001f1 }, { 0x76c308a4, 0x3e5c8ff1, 0xb30d9ded, 0xa441c16, 0xa8b99dee, 0x953f8103, 0xf912acc5, 0x4aba9f41, 0x1a93867b, 0x234bd65d, 0x9b4ee199, 0x6ad2dc0a, 0xe01a15a5, 0x4b40c13a, 0x5a30f8ab, - 0x322c3267, 0x000077, 00000000 + 0x322c3267, 0x000077 }, { 0x20233ac5, 0x12bf7e7b, 0x384523ca, 0x6fbafa8b, 0x74a854c4, 0xbe6a95, 0x41906bf6, 0x3b505b3a, 0x62f8b719, 0xb0dad0e1, 0xa859b5d9, 0x57670326, 0x34a13489, 0x720a65e2, 0x52e81215, - 0xe82dffe5, 0x000046, 00000000 + 0xe82dffe5, 0x000046 } }, { @@ -58424,19 +58422,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2f0fa842, 0x5fb58dbd, 0x3c789aa4, 0x65dcdf52, 0xb07f6e3a, 0x103747ca, 0xc7f3cf47, 0x952eb1dc, 0x7ff9612d, 0x39e44135, 0xecaf17df, 0xcae077a, 0x7f5d95bb, 0xb4f6fec9, 0xd81ce8f3, - 0xef820d80, 0x0000c4, 00000000 + 0xef820d80, 0x0000c4 }, { 0xb3b32770, 0xde468cb0, 0x1cf38806, 0x1d3e15ce, 0xb3ca0b7c, 0x52e67c47, 0xb0131c2f, 0x828df532, 0x4dc4f8b5, 0x731b979c, 0x4db6efcf, 0x329873d, 0x65a271ce, 0x1ef6bc43, 0x26748d4, - 0x601c3150, 0x0001ff, 00000000 + 0x601c3150, 0x0001ff }, { 0x173600b, 0xa8702674, 0xae95d98a, 0xd62df8c0, 0x1c65bdac, 0xa2562967, 0x91073e0d, 0xefcd116b, 0x695bf811, 0x2942517, 0xef533d0a, 0x13e71d3e, 0xac53999f, 0x11b67ba2, 0x9ded57c4, - 0xa8e983fd, 0x000026, 00000000 + 0xa8e983fd, 0x000026 } }, { @@ -58444,19 +58442,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc1d2404a, 0x4390cd83, 0x4c03ddaa, 0x51d1c5c3, 0x9ce00674, 0x82a5934b, 0x4bbdaaa3, 0x60fa211f, 0xf7bbf33e, 0xc468ff2c, 0x3aa55aba, 0x76a57010, 0x0336ad, 0xd8e6f876, 0x30881de7, - 0xf9430f8c, 0x000009, 00000000 + 0xf9430f8c, 0x000009 }, { 0x3ff305aa, 0x91d15586, 0xec5d1dde, 0xabd45c05, 0x3b088b14, 0x9acde4f5, 0xa641fc25, 0x14125ebb, 0xb0b187b4, 0x9f325681, 0x303d9982, 0x268da979, 0xc7dd10f6, 0x4e2cd0ef, 0x592f6120, - 0x5ccb19ee, 0x0000ff, 00000000 + 0x5ccb19ee, 0x0000ff }, { 0xf5c4f57a, 0x490ff2cf, 0x4bf36cb0, 0x2df528f8, 0xf319a904, 0x40c2ae7b, 0xe6723b57, 0xe1ebb943, 0xfc26615c, 0xaea36f21, 0x136627db, 0x22746e33, 0xf44a1145, 0x74c38ad1, 0x4998502c, - 0xf9668d19, 0x0001c5, 00000000 + 0xf9668d19, 0x0001c5 } } }, @@ -58466,19 +58464,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87be8bfc, 0xc91e34d5, 0xd72e9da9, 0x3c6c23e0, 0x2444d98, 0x2722e923, 0xbb0303eb, 0xa84c52d6, 0xf94b1f79, 0x226f6fa6, 0x5a287b5f, 0x2e5dab5e, 0x11bd6979, 0x70ab823e, 0xe3b47677, - 0xa1c65121, 0x0001a1, 00000000 + 0xa1c65121, 0x0001a1 }, { 0x45a56c41, 0x86bc0c95, 0xf4d173be, 0xb0449fe1, 0x6f2347d7, 0x74d0a764, 0xbebdac24, 0x87af421e, 0x10610178, 0x6308891a, 0xc6af24db, 0x45a3de91, 0xc79cef44, 0xdcd3da3c, 0xc21cbb56, - 0x39d97320, 0x00011f, 00000000 + 0x39d97320, 0x00011f }, { 0x314bf790, 0xcef1aaf8, 0xc9d87b13, 0xd841c3b, 0x7ffe4e63, 0x33cab8a9, 0xc7fcdf65, 0x377f5cab, 0xd0f2831f, 0xb5635026, 0xee6e1de, 0x68d01448, 0x268c74b0, 0x895674eb, 0x48d837e9, - 0xbae5a5a4, 0x000064, 00000000 + 0xbae5a5a4, 0x000064 } }, { @@ -58486,19 +58484,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc92c9d4d, 0x5a00ed4f, 0x94ec1ed, 0xb8d8711e, 0xbf70fa46, 0x54e7a23c, 0xe168c33e, 0xa542be02, 0xdd508ccb, 0xbc9d5d61, 0x13825f5e, 0x3d54a5f0, 0x4990ce46, 0xf95853b6, 0x92d26367, - 0x781ee4ff, 0x00003a, 00000000 + 0x781ee4ff, 0x00003a }, { 0x62c02eb8, 0xa231c0f7, 0xf1a74d72, 0x3483a7e2, 0xecdcf772, 0x61f71a62, 0xf8ddf276, 0xd92ccaa4, 0x15d07a44, 0xb87ab839, 0x8f91d6e2, 0xf7c22341, 0xa543dbfd, 0x6538e569, 0x1ad7af71, - 0xd0b2af90, 0x00007d, 00000000 + 0xd0b2af90, 0x00007d }, { 0x11163be2, 0xe910dfce, 0x4461831c, 0x88e42e28, 0x81711f3a, 0x6a2a1613, 0xf05b8cf5, 0x6b0ed3ea, 0x52b7733a, 0x25cc5d42, 0x5abf97bd, 0x551b8af, 0x5d4e36a1, 0x799dba91, 0xb69e5c46, - 0x62f56a8, 0x0000b2, 00000000 + 0x62f56a8, 0x0000b2 } }, { @@ -58506,19 +58504,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36777b19, 0xa3cde53d, 0x796a1d0d, 0xdd2446d5, 0x83c53009, 0xf554c776, 0xb6013c01, 0x6d316d5f, 0x1c5c2395, 0x4efb90fb, 0x3c9fc3fd, 0x95373cee, 0xceb04e1c, 0x3442ed3, 0xc470fa50, - 0xece0f782, 0x00010b, 00000000 + 0xece0f782, 0x00010b }, { 0x8de952c6, 0xc3e053bd, 0xee2f5a2a, 0x723943ab, 0x403566fb, 0xcdd3786c, 0x784362c2, 0x2daf08fc, 0x54b57d8, 0xc213b9c7, 0xd83b049c, 0x1c72f74b, 0xa2e93bf6, 0x84637aa2, 0x948d5348, - 0xa83dfaf9, 0x000090, 00000000 + 0xa83dfaf9, 0x000090 }, { 0xb26c07c5, 0xcb167591, 0xfdfb3bfd, 0xdd2ab653, 0x4d9b19c0, 0xcaf365f9, 0xd45ebfc8, 0x72d6f926, 0xf3fd1b1a, 0xbf759131, 0x4dfda55, 0x27a211, 0xaede9b13, 0x455d00cf, 0xe728e7a3, - 0xbcd93a85, 0x000177, 00000000 + 0xbcd93a85, 0x000177 } }, { @@ -58526,19 +58524,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5989329e, 0xad20b62a, 0xca32f137, 0xc26ec23d, 0xa40d2c39, 0xa9ac854a, 0xa0899a0b, 0x80c8d2a5, 0xba7730f3, 0xfc819f8, 0x99e55384, 0x7e4c1b46, 0x5816fab1, 0x796b95e3, 0x49a995c6, - 0x2c8a7b17, 0x00011c, 00000000 + 0x2c8a7b17, 0x00011c }, { 0xf36378e1, 0x9b1f7115, 0xb2ebd1da, 0xb30a838e, 0x8c9ea3b4, 0x480335dd, 0x612da8eb, 0xadeff71b, 0x3dd50ea8, 0xdaf582e0, 0x371a96a6, 0xadbde08e, 0x3810097f, 0xd76da5c9, 0xb4376e04, - 0xc2a47a60, 0x00013a, 00000000 + 0xc2a47a60, 0x00013a }, { 0x7659bcd3, 0xfaf4840, 0xf9d66844, 0x2431da84, 0xd0e823a7, 0x6009b03f, 0x767c35c7, 0xc5089fb4, 0x326b8a17, 0xf0faeff5, 0x4ebba1d1, 0x956c7460, 0x89dafe38, 0x521fc529, 0xc28f5bc7, - 0xd9f10b9d, 0x0000f1, 00000000 + 0xd9f10b9d, 0x0000f1 } }, { @@ -58546,19 +58544,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x534846af, 0xfd17667b, 0xae553383, 0xca2f1af4, 0xf545bace, 0x7e869de2, 0xab3290cc, 0xe894a81, 0xadaac854, 0x32c4fd02, 0xa13d9a7, 0x46c2ce18, 0x710b9852, 0xcca5f3cd, 0x222a134e, - 0x144ff5fb, 0x000141, 00000000 + 0x144ff5fb, 0x000141 }, { 0x3d1747c2, 0x928e4bf8, 0x2098d09a, 0x29e87b9a, 0x901c517c, 0x558a2ac7, 0xff99c9fa, 0x16c47e9c, 0xa3d99a3b, 0x1b0654f2, 0x17966df5, 0xec4ac666, 0x7e3b9935, 0x2bcbcf80, 0xdfa55fef, - 0xc509339c, 0x00014e, 00000000 + 0xc509339c, 0x00014e }, { 0x8e52d1eb, 0xe55b706a, 0xd51c7bd2, 0x8ca96c, 0x29c9f18a, 0x43119925, 0x50bbaf38, 0x18db0da5, 0x5692fc85, 0x200e38fe, 0x4654ac5e, 0x414e31fb, 0x54721dbe, 0x4c62bca9, 0x382492c9, - 0xb9cd749a, 0x00019c, 00000000 + 0xb9cd749a, 0x00019c } }, { @@ -58566,19 +58564,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb58a952d, 0xe4db05f1, 0x678de934, 0xd6fa2d12, 0xab7979d6, 0xdfab5221, 0xc0c8d08a, 0xef9d5fa6, 0x26deacb4, 0x859d0e55, 0x66fc908c, 0x35f7d94e, 0xac5d9c5, 0xcb932a32, 0xea083868, - 0x9b3ad7c0, 0x000135, 00000000 + 0x9b3ad7c0, 0x000135 }, { 0xa3f3bc98, 0xcddc6e23, 0xd08533db, 0xbe6ea27b, 0x4245a9d4, 0x9012555, 0xe794721d, 0x3cd64aa4, 0xd2fd1c05, 0xfd124adc, 0x1ade4e6b, 0x17360a19, 0xe294715d, 0x463c98cb, 0xfe9249a6, - 0x52e55a43, 0x00005e, 00000000 + 0x52e55a43, 0x00005e }, { 0x2887b5b1, 0x9270438b, 0x69e5f7b9, 0xd99acafe, 0xf98c4232, 0x5580f8dc, 0xe180dbd7, 0x7f005ef4, 0xdedbb65b, 0x793b1597, 0xc519bed1, 0x60d6259, 0x2a8d93e1, 0x86dc02f9, 0x6029911d, - 0x19c4bb95, 0x00010d, 00000000 + 0x19c4bb95, 0x00010d } }, { @@ -58586,19 +58584,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdc6b730b, 0x91e609e8, 0x37920849, 0x4fecffe9, 0x23fee36e, 0x7e2e3b96, 0x49a0277, 0x946429f6, 0x3fd5e33f, 0x52a09533, 0x638c59df, 0xf35c84d5, 0x3ef3ef7a, 0x64d44480, 0x8013df89, - 0x21935a80, 0x000194, 00000000 + 0x21935a80, 0x000194 }, { 0xa1ffb130, 0x670ab682, 0xf0fc85ea, 0x7b2956a7, 0x16871357, 0x43fd331a, 0x75180459, 0xa2171fa7, 0xbb18f601, 0x5f719466, 0x1308faf1, 0xb67a32fe, 0x62b5bf60, 0xa9987b0c, 0x8613ce27, - 0xc830eedf, 0x00003c, 00000000 + 0xc830eedf, 0x00003c }, { 0x485d5ed8, 0x48d57cdb, 0xe0ca1e76, 0xd3a0967d, 0x549dcf4a, 0x96b10b79, 0xf5b8c669, 0x133869b8, 0x82e22c3d, 0xbb0b328d, 0xaf3b17de, 0xe10a9f06, 0xdd007045, 0x1f60e534, 0xc2770c5d, - 0x977d2f18, 0x00000b, 00000000 + 0x977d2f18, 0x00000b } }, { @@ -58606,19 +58604,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x266ecb86, 0x95060555, 0x8967f546, 0xbf9f4969, 0xbdc0c2de, 0x6781f242, 0x2509f11, 0x63b04fac, 0xa12cf231, 0xfd500a06, 0xe759454, 0x97b7c945, 0x28801717, 0xb4eeb88c, 0x4bd8302c, - 0x5b62463f, 0x0001f6, 00000000 + 0x5b62463f, 0x0001f6 }, { 0xc3e564be, 0xfe7662cd, 0x6c8adce0, 0x7f78fdf3, 0x58f6155f, 0xbc803982, 0xca39e283, 0xd6ced92f, 0x304130e9, 0x678c62c6, 0x928c599e, 0xb8edb729, 0x6081b3e7, 0x4e80c0, 0x401341cf, - 0xc4202bdb, 0x000090, 00000000 + 0xc4202bdb, 0x000090 }, { 0xac30a378, 0x5260e04f, 0x5dad25d6, 0x1bb3ae93, 0xc00c3da3, 0x57053421, 0x2bfbd5b2, 0x70bf6823, 0x7b9da5ca, 0x4536e3f, 0x27d5c991, 0xb401b8a2, 0xede2c4ff, 0xa8669956, 0xc3f742c5, - 0x20244527, 0x0000e1, 00000000 + 0x20244527, 0x0000e1 } }, { @@ -58626,19 +58624,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xffc40db9, 0x9138000e, 0x96c82510, 0xcbc06d03, 0xc27d4d3d, 0x8620e691, 0x65a08683, 0xc44af0f, 0x784f56d, 0x4b1445eb, 0x8e12fe11, 0x54cfe784, 0xeffcb300, 0xd874604, 0xf311ca40, - 0x955669c6, 0x00006d, 00000000 + 0x955669c6, 0x00006d }, { 0x2d15b880, 0x423d121d, 0x573cdd39, 0x1d05841f, 0x806d31ac, 0xcae66e1c, 0xb3ee00b8, 0xaff34947, 0x80ef976b, 0x29ac6ba, 0xe7c9aa56, 0x3395f988, 0x22b05a3b, 0xa557daf3, 0xc65cada6, - 0x944b9404, 0x000085, 00000000 + 0x944b9404, 0x000085 }, { 0x8673cd, 0xc2a7fafe, 0xbdf3c265, 0xf552d86b, 0xb5e930df, 0x1019f3e7, 0xd86202b0, 0x5aaf816c, 0x1a85c2f2, 0x8e0e831e, 0x32c0fb99, 0x040722, 0x7ebe2606, 0x22a34df2, 0xf7082dbc, - 0xc187150, 0x000036, 00000000 + 0xc187150, 0x000036 } }, { @@ -58646,19 +58644,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9095be34, 0x6ba06e55, 0xfb294d45, 0x8727faa3, 0xd39500b, 0x78480326, 0x24dd966a, 0x76e3065d, 0x8824a93f, 0x7ff7ad9d, 0x9ee39551, 0xc90338ac, 0x92ad7534, 0xef649f11, 0x9a76df37, - 0xa9e8596a, 0x000021, 00000000 + 0xa9e8596a, 0x000021 }, { 0x96c99826, 0xafa35c58, 0x709ff012, 0xaa7f9a2, 0x676976a, 0x1ad87a2, 0x7764684d, 0xb4157f5f, 0x7e2375b3, 0x28bc72d, 0x6cbe63fb, 0xae187aff, 0x48c3d115, 0x13d1f869, 0x51999ca7, - 0x6d8704e4, 0x00001b, 00000000 + 0x6d8704e4, 0x00001b }, { 0x40d9865e, 0x5243d6cf, 0x5b20bcb9, 0x2aca3373, 0x6718dea1, 0xbcb2444e, 0x4c4bb8f0, 0xb5d8451d, 0xe1ed74b8, 0xc5ce5961, 0xc85ce101, 0xbe87e47d, 0xf3d1b674, 0xb9623db4, 0x81755f90, - 0x51796aa8, 0x00002b, 00000000 + 0x51796aa8, 0x00002b } }, { @@ -58666,19 +58664,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe82ab595, 0x33b7d501, 0x3c1f5c6a, 0x19914157, 0xa864de00, 0x3d8054f, 0xabb85073, 0x5caee914, 0x2cdb9bc8, 0x4a62b321, 0x6b9bc18f, 0xdf848516, 0x95734015, 0x5cfed06a, 0xa6f1af1d, - 0x701b07e0, 0x000015, 00000000 + 0x701b07e0, 0x000015 }, { 0xc07962be, 0xcf0561e0, 0xeadecd22, 0x7ceab9d6, 0x87b23165, 0xdd1f08e3, 0x179782bf, 0x1fd1715e, 0x3079e9c3, 0x9326bc04, 0x447faeee, 0xf620aac, 0x7957950b, 0xa132f91b, 0x98c993b1, - 0xd9a33365, 0x000181, 00000000 + 0xd9a33365, 0x000181 }, { 0x1edb1004, 0xecb8933, 0x2da4f156, 0xa59b5e47, 0x7d95a448, 0xae128686, 0x12c9cf33, 0x99404168, 0x56875a16, 0x4191a73c, 0x93f80573, 0x3049aa86, 0xa1ce2b9, 0xbdfdd501, 0x4db4b128, - 0x1544e0a5, 0x0000e7, 00000000 + 0x1544e0a5, 0x0000e7 } }, { @@ -58686,19 +58684,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfe8eb62b, 0xbe9f922a, 0xc6a8749a, 0xa82fb255, 0x9217b6b2, 0x147057ce, 0x2bcbe59f, 0xe5a609c4, 0x55b68021, 0x9ca1210f, 0x8ae3c399, 0x4f1a759, 0x24d2fbef, 0xd08711ec, 0xda156087, - 0x3a2496e, 0x000077, 00000000 + 0x3a2496e, 0x000077 }, { 0xa4ee47f8, 0xca3443fb, 0x64a5c5d0, 0xa529459e, 0xab239072, 0xffd3cdd, 0x6010d666, 0xcc22a8bc, 0xe925bd39, 0x5080e4a, 0x3cbceba5, 0xb85c6585, 0x19b41393, 0x908cb4b4, 0x9b13c9c5, - 0x967fc5bb, 0x00001b, 00000000 + 0x967fc5bb, 0x00001b }, { 0x76e7c24, 0xd7ce31ec, 0xd5b8d977, 0x19925b61, 0xcd85c6df, 0x57ef534f, 0x19507760, 0x2554f9c6, 0xab69d8cf, 0x2a4c0894, 0xa9042bf, 0x7377469f, 0x53acd896, 0x419ac34e, 0xfb2e4a43, - 0xceaeb78b, 0x000037, 00000000 + 0xceaeb78b, 0x000037 } }, { @@ -58706,19 +58704,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe11db02c, 0xaf192cb5, 0x35db7434, 0x2243548a, 0x1f4ca3b9, 0x95efbb4d, 0x144fb5f5, 0xe95c8043, 0xc5a98fd2, 0x45d14869, 0x6ccc22f3, 0xb2cacccf, 0x9c42dae3, 0x2ade6439, 0x7eba09bd, - 0xc95c6228, 0x000046, 00000000 + 0xc95c6228, 0x000046 }, { 0xd145ae55, 0x2761bab5, 0x6cb87040, 0xe77979b8, 0xf30bb710, 0x33841ef1, 0x51dbdf47, 0x51fada7e, 0x52c7e5d2, 0x4f02f5b1, 0x77c453bd, 0x6a51a618, 0xb8cdf91, 0xed581b60, 0xba3c4ba4, - 0x653d9a89, 0x000081, 00000000 + 0x653d9a89, 0x000081 }, { 0x612be035, 0xc4b938ab, 0x34080e0f, 0xf47f2247, 0xc6802da8, 0xe0882e29, 0xf2da3f9e, 0xda08040b, 0xd70223f, 0x38cd5c81, 0x1809226c, 0x54a78a9a, 0xc8797490, 0x445dfe47, 0x230d3163, - 0xc7151353, 0x000068, 00000000 + 0xc7151353, 0x000068 } }, { @@ -58726,19 +58724,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x870c8a38, 0xd321025d, 0x6d27721f, 0x91878060, 0x1c8fd1b9, 0x90ce3be4, 0x5e4b0210, 0xf353b675, 0x573bdef0, 0x6a1f7092, 0xeda794c2, 0x4bbf4a71, 0xabce322c, 0xad9867a5, 0x2a553cc9, - 0x832412c0, 0x0001c7, 00000000 + 0x832412c0, 0x0001c7 }, { 0x477f8768, 0x6ff8be37, 0x7ef13a87, 0x4afeedae, 0x474b2669, 0xc683f86a, 0xe006cad8, 0x3bc8bfb9, 0x4c901fed, 0x6ad7300e, 0x83c1e82b, 0xbd439a33, 0xef9b6236, 0xb584e69f, 0x8172a0b, - 0xce1c41c5, 0x000198, 00000000 + 0xce1c41c5, 0x000198 }, { 0x3e98900d, 0x5ca8f26b, 0xd98c5d5b, 0x4f5642e1, 0x6210dfb6, 0x377db988, 0xf52ed72, 0xbc8079f2, 0xd4d99fe8, 0x7944ed96, 0x221d8556, 0x33fe82b6, 0x10257ba, 0xb0c8a606, 0x92fdcf2f, - 0xa20c2114, 0x000155, 00000000 + 0xa20c2114, 0x000155 } }, { @@ -58746,19 +58744,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6c99686, 0xd06193ab, 0x5a07be9c, 0xd4f96062, 0xc3392987, 0x5a53017a, 0xe3594f46, 0x77aabecf, 0xb78a8613, 0xc5629f72, 0x445bd61, 0x3044db21, 0x5c581fe5, 0x6db02dd3, 0x7c0309dd, - 0x339739ed, 0x0000a5, 00000000 + 0x339739ed, 0x0000a5 }, { 0xf38d0b90, 0x148538a9, 0xff62268d, 0xd4c7c05c, 0x74f7d4aa, 0xf08733c9, 0x5a7a532, 0x1a940ab8, 0x6c0cd6cf, 0x62cf3e41, 0x4b9429ee, 0xa72b6bbf, 0xc3c01915, 0xf2c5b18f, 0xaf462041, - 0xdb625c40, 0x0000a7, 00000000 + 0xdb625c40, 0x0000a7 }, { 0x9e59f039, 0x28d803a7, 0x559d6205, 0x4f0b18ba, 0x841361ca, 0x17eb2a57, 0x684706c3, 0xfac4bab0, 0xd167ab68, 0x696c0b7a, 0xce45d94c, 0x8d2ad7f, 0x905571a0, 0xed30ed33, 0x838dc3e4, - 0xfc92334b, 0x0001c6, 00000000 + 0xfc92334b, 0x0001c6 } } }, @@ -58768,19 +58766,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x63c70de, 0xd1ccb6f1, 0x694a2f96, 0x28e7db85, 0x1c5e5421, 0x802e7d77, 0x3532398, 0x7f185448, 0x8cce7a4c, 0xc6001519, 0xc9ae9479, 0x2aea368e, 0x77df1483, 0xeddea55b, 0x5f794313, - 0x6b7da80b, 0x0001ba, 00000000 + 0x6b7da80b, 0x0001ba }, { 0xcac16373, 0xeb2f2ebe, 0xe96c5268, 0x4f340dbd, 0xd14a99ca, 0xa4a8fc9e, 0x838e5735, 0xa7895baa, 0xd44b743a, 0x310e3943, 0xb5b01d04, 0xd582a1ec, 0xf87fb314, 0xc3a8af2, 0xf29e4f89, - 0x40f5b44b, 0x000063, 00000000 + 0x40f5b44b, 0x000063 }, { 0x95aec472, 0x381dd304, 0x4c3ff851, 0xaee7b443, 0x6d7b21b2, 0xfa0555fb, 0x206433c6, 0x314e6176, 0xb6938e41, 0x19c92662, 0x37f73976, 0xdf928186, 0x370020c5, 0xe0c9cd77, 0x6fe89b86, - 0x896b206d, 0x000108, 00000000 + 0x896b206d, 0x000108 } }, { @@ -58788,19 +58786,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x538190fe, 0x65f2743c, 0x298471ab, 0x3faad79a, 0xcbfe40ed, 0x618a15e1, 0xd8aab5e4, 0x5c2c40f6, 0xbb2b00dc, 0xf4265646, 0x90b7f867, 0x20957438, 0xeed3b7df, 0xa5f2fda5, 0x4f1c36e3, - 0xa743e184, 0x00004d, 00000000 + 0xa743e184, 0x00004d }, { 0xad57e5fe, 0xc4f05ad3, 0xd62a65bf, 0xdff0a520, 0xf5e66589, 0x472c308a, 0x7661ec4e, 0x70e8e027, 0x354c5c3b, 0xfd366ec0, 0x74163828, 0xcd6620d9, 0x66b458b3, 0x2d05a10c, 0xc0e18a14, - 0xfb01f1d7, 0x000041, 00000000 + 0xfb01f1d7, 0x000041 }, { 0x2a128877, 0xd10bcb29, 0x99e10c32, 0x2d39c2c7, 0xbb3cdbac, 0x4da04d85, 0x1bbb671, 0xf6687993, 0x6133e04, 0x8f45cb0d, 0x9eaee4ab, 0xd5771d72, 0x17c48082, 0x2645ac5e, 0x8885f958, - 0x58d2fca, 0x0000c2, 00000000 + 0x58d2fca, 0x0000c2 } }, { @@ -58808,19 +58806,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3dd78e9a, 0x790177e5, 0xd8150337, 0xa0a0e19b, 0x2c4d91d8, 0x23a3c87f, 0x9f64bdc3, 0x77bdc078, 0xb590da37, 0xcf3d8e3, 0x7abeb7c4, 0x73f63905, 0xe7c5dd0a, 0x5405fab8, 0xca426746, - 0xe7d454de, 0x0000e6, 00000000 + 0xe7d454de, 0x0000e6 }, { 0xb619e537, 0x8498cc45, 0xdcda804d, 0x454d9cab, 0xf414a407, 0x1a53871c, 0xf1aa2938, 0x9e2cc2e, 0xda207d8e, 0x6cb9330, 0xb6a06a22, 0x3f3c1d10, 0x809b6dbc, 0x82d007b0, 0xcab5e80a, - 0x6b326e1d, 0x000193, 00000000 + 0x6b326e1d, 0x000193 }, { 0xbc0eb3c3, 0x24684172, 0x675e7d13, 0xc9a5d0db, 0x1366d742, 0x868562a8, 0x9dab65c6, 0x54de4219, 0xdd9d3d2a, 0x194b8d84, 0x19093735, 0x96eb1c3c, 0x2f640afd, 0x4e90b37a, 0x6479d043, - 0xa32067d3, 0x00006e, 00000000 + 0xa32067d3, 0x00006e } }, { @@ -58828,19 +58826,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d00c0e8, 0x539d4f21, 0xdd9314f6, 0xaade9dcb, 0x40da808, 0x7a9ab115, 0xea8d0733, 0xd2c0e353, 0xd44c02c3, 0xe504547b, 0x6707fe2c, 0x21465bf7, 0x35296568, 0x4b92e0f9, 0x1f46467, - 0xf2e82cd8, 0x000075, 00000000 + 0xf2e82cd8, 0x000075 }, { 0xf7536559, 0xc45efbd1, 0xfb74cb, 0x6cbc04f6, 0xd7cac1cc, 0x54ca8022, 0x1f0c5035, 0xe75cefb9, 0xdf1a199f, 0x71da4967, 0x6c18c496, 0xb37e81fb, 0x68ccf014, 0x3146017e, 0xd498a2b6, - 0x8f4fc485, 0x0001d8, 00000000 + 0x8f4fc485, 0x0001d8 }, { 0x8221cd6c, 0xfc8966d8, 0xc0571760, 0xe7bd7024, 0x970b55fe, 0x1dceee72, 0xd4a1cb9a, 0x3dbec36d, 0x8ba33442, 0x30bc0edf, 0xe7708b08, 0x6be5585e, 0xbdfc1e92, 0x5f45ba6f, 0x8bcb6327, - 0xa820fc95, 0x0000b0, 00000000 + 0xa820fc95, 0x0000b0 } }, { @@ -58848,19 +58846,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7b42cc02, 0x7e2acc9d, 0xa2d2658c, 0x5d52487c, 0x9977c66a, 0x810fca63, 0x9ab1cd83, 0xfa5ed253, 0x883dbb9c, 0xc4689277, 0xacd942b, 0x5777f8d2, 0xe8a8ab70, 0xef871fc2, 0x4c29938, - 0x9fe21f27, 0x00011a, 00000000 + 0x9fe21f27, 0x00011a }, { 0xbd4982f9, 0x90a58146, 0xbe16629, 0xe27fb4c4, 0x3de2d046, 0x617791b6, 0xd1858a8b, 0x9a5a33fc, 0x58db41c7, 0x93b3a7c4, 0x783a2a84, 0x82db40d3, 0xadc10fc0, 0x424a5408, 0xa7c28746, - 0x845a154e, 0x0001ff, 00000000 + 0x845a154e, 0x0001ff }, { 0x78175f3, 0xce02014d, 0x64d9e5eb, 0xd78f77d5, 0x2efc932d, 0xff24e621, 0xe41d3393, 0xdd42f23d, 0x7ddb55f, 0x1293c558, 0x9e5b97ae, 0x516c04b, 0xe0672168, 0x5ea9e87f, 0x186ffdc8, - 0x167bd798, 0x0000b5, 00000000 + 0x167bd798, 0x0000b5 } }, { @@ -58868,19 +58866,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7491c51b, 0x410ed035, 0x6faac891, 0x6a1b9d14, 0x8aef8baa, 0x68fa4e8c, 0xd0fcbb12, 0x92c28ac3, 0x9466b97c, 0x1bdc178d, 0x9d695a9e, 0x41d27729, 0x6f7164b1, 0x3d5f6d9f, 0x7d031c3c, - 0xcc5111fb, 0x00016d, 00000000 + 0xcc5111fb, 0x00016d }, { 0xcbe5fb68, 0xb9fcf72d, 0x48ff9cdd, 0xb8a07a08, 0x98494000, 0x4fefaba8, 0xf1330300, 0x49f76b5d, 0x35ae0038, 0x40e1c048, 0xb0cdd109, 0x144d5b52, 0xd8b1618b, 0x3047f00a, 0x852fb324, - 0xa775924, 0x0000e6, 00000000 + 0xa775924, 0x0000e6 }, { 0xbc3e71b7, 0x9a2320db, 0xa2b8c286, 0x74f41dd2, 0x91e08d6c, 0x14c4235f, 0xbc8d5738, 0xf75df962, 0x895eafc6, 0x73e2e5f4, 0xe91634bb, 0x48289ae1, 0x9b9b254e, 0xb758be49, 0x4b9de73d, - 0xed8fab84, 0x0000b2, 00000000 + 0xed8fab84, 0x0000b2 } }, { @@ -58888,19 +58886,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf894d88, 0xd8e19f14, 0xe3f8b9c0, 0xf8fdc1ea, 0xf311cbd5, 0x8aa9df0, 0x136a9bc4, 0x6f0527eb, 0x6491d352, 0xd4eba9da, 0xca9ec5d9, 0xb735d170, 0x530b65ac, 0x50763fc5, 0xd8cef4bd, - 0xe0e26d95, 0x0001af, 00000000 + 0xe0e26d95, 0x0001af }, { 0x8a7d3311, 0xed0de3ae, 0xa2c18e60, 0xb649930, 0x6803994, 0xe47573bb, 0x647d4a6f, 0x67cbcde7, 0x12d63035, 0xbf3ec6b0, 0x71706d0d, 0x603174b, 0x4e79b3c4, 0xdaea95f7, 0x82423465, - 0xc60c8a10, 0x0000d8, 00000000 + 0xc60c8a10, 0x0000d8 }, { 0xd69c6e82, 0x8dd579d3, 0xe4de2314, 0x909e4609, 0x9edcff7c, 0x8c353b4e, 0x1edf05b, 0x489ca6e4, 0x2825b3f5, 0xe17e5271, 0x19b76a5e, 0xaf59aa06, 0x3302e937, 0x374fb2e8, 0xec3f2ef1, - 0x65e4d74f, 0x0001d9, 00000000 + 0x65e4d74f, 0x0001d9 } }, { @@ -58908,19 +58906,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x30d632fe, 0x2b4cd2c1, 0x80127376, 0x5fff6826, 0xc1fdcd6d, 0x6acc0441, 0xc2175162, 0x3b1bfdcb, 0xad5747e7, 0x4f52c019, 0xf605bfc4, 0x9be01b50, 0xe6bf8a4c, 0xdfa66c22, 0x5c1b6c07, - 0x1cc8e01d, 0x000062, 00000000 + 0x1cc8e01d, 0x000062 }, { 0xa08b5e96, 0x282d0a68, 0x68854f34, 0xb8453aea, 0x57f22aa6, 0xb761e8c8, 0x4560e8da, 0xdc4e803, 0xa4e64061, 0x14837dce, 0xeae6eb16, 0xe8b9b6b5, 0x10bbb6cc, 0x26a8b309, 0xcf89f2dd, - 0x75964627, 0x00016f, 00000000 + 0x75964627, 0x00016f }, { 0xfde508d1, 0xa36f8560, 0x7565ed3a, 0x5c7d04c0, 0xc4e7ae3f, 0x5376bf0c, 0xbe06836a, 0xfa4df42a, 0xbd5d58e5, 0xa0d52478, 0x508762bd, 0xabf81e17, 0x3fbabf2a, 0x76db5bfd, 0xed51033b, - 0xee322f0f, 0x0001e5, 00000000 + 0xee322f0f, 0x0001e5 } }, { @@ -58928,19 +58926,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x76cef307, 0x5fb72bc8, 0x25b8c1a3, 0x63a17b9d, 0xd178bcf1, 0xd90b004, 0x125d7f89, 0xf609379a, 0x1c4c399f, 0x965c442e, 0x12b1e078, 0x2328915c, 0xa4f43b41, 0xb59f4b54, 0xc4bc169e, - 0x4f293219, 0x0000b8, 00000000 + 0x4f293219, 0x0000b8 }, { 0x35bc95a3, 0x7586b461, 0xebdd3c32, 0xe0c179bf, 0xeb36fed, 0x2d9b35cc, 0x7ae25182, 0x6aecdf1, 0x457ac811, 0xb3d6125f, 0x4f6f7967, 0xaa7ddbcc, 0x5700f8e6, 0x13390a0d, 0x3cedff55, - 0x300b4bcd, 0x000159, 00000000 + 0x300b4bcd, 0x000159 }, { 0xb6fb34b8, 0x5e4d6f35, 0xddf67607, 0xb1314c72, 0xf09cf46b, 0xf1d3b7ca, 0x55535814, 0x71d70592, 0x466341b5, 0x13679c52, 0x8abaff1d, 0x32ecb2a1, 0x406fa03b, 0x190a3322, 0x8297d46b, - 0x1030697f, 0x00005b, 00000000 + 0x1030697f, 0x00005b } }, { @@ -58948,19 +58946,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa82f109f, 0x8d8e8d4d, 0xd909a242, 0xd7b1449b, 0x5e9615fc, 0x29145ace, 0xe500857c, 0x75d52022, 0x21844f6e, 0x704239df, 0xb8fe0464, 0xc623867e, 0xda472048, 0xdfcacd70, 0x9373a196, - 0x137f73, 0x0001e0, 00000000 + 0x137f73, 0x0001e0 }, { 0x9358396b, 0x6693e7ca, 0xdbd6050, 0xa521b24c, 0x2fdff4a8, 0xf20f7271, 0xe18931ff, 0x5abd5abb, 0x41b70919, 0x3bdf1eb2, 0xe8fe21c9, 0xd97cb739, 0x6027fa9b, 0xd5226d0b, 0xa9ea5cca, - 0xddd3eae8, 0x000168, 00000000 + 0xddd3eae8, 0x000168 }, { 0xf07fac02, 0xe5f24704, 0x552aaa90, 0x1d853534, 0x74e5530f, 0x1d1d954f, 0x6f56df03, 0xacbc53b6, 0x21bb9c5f, 0x65fd95c6, 0x9bad502a, 0x443f30f2, 0xe2ed9f4e, 0xd9d77d3, 0xe7270d3b, - 0xa9622a6e, 0x00014d, 00000000 + 0xa9622a6e, 0x00014d } }, { @@ -58968,19 +58966,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3054c3e5, 0x3853821, 0xdaea1821, 0xe4107ebd, 0x25bd1e47, 0xa7754346, 0xf45c7bc5, 0xcad179ae, 0xf0802a2d, 0x8cb30915, 0xd1d070ae, 0xb3750b24, 0x4c68d913, 0x204fd576, 0xcdddae8, - 0xcb425df1, 0x00019d, 00000000 + 0xcb425df1, 0x00019d }, { 0x467e0d35, 0x69854531, 0x4ea67500, 0xad53ec8d, 0x51e9856c, 0x820f89b1, 0xa05cadac, 0x31ede324, 0x3b6f23b2, 0x4221575e, 0xb502d486, 0xac7937b0, 0x81f8534d, 0x4a6ebdd, 0x442f993a, - 0xb935fa41, 0x000124, 00000000 + 0xb935fa41, 0x000124 }, { 0x4a995db0, 0x9aca8c44, 0x7c883050, 0xc5d36e0e, 0xb9e74982, 0x72cdd2d2, 0x9b789216, 0xb07d63fc, 0xe371ed96, 0xa46cd76a, 0x59bb9a20, 0x9ccd2e25, 0x4f92797c, 0x2ea194b1, 0xd451c4f8, - 0x4c170e14, 0x00016e, 00000000 + 0x4c170e14, 0x00016e } }, { @@ -58988,19 +58986,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xefec7643, 0x190e0946, 0xbd418c8d, 0x62464da0, 0xd0412548, 0x943ce354, 0x5612a3f1, 0xdbdca372, 0x9aafaa45, 0x65348f30, 0x3a23162f, 0x2cffdf6d, 0x4af04d3b, 0x76f5a5c9, 0x68f9e664, - 0xfd84d0fb, 0x00010e, 00000000 + 0xfd84d0fb, 0x00010e }, { 0xb8d01196, 0x5d3349b4, 0xbe67c17e, 0x69a69601, 0x930f5990, 0xa85585d8, 0xa66bf340, 0xae72add9, 0x73f39a1a, 0xdef269cf, 0x58781f95, 0xb6224ade, 0x409455d, 0xea573457, 0xe290b50f, - 0x3e7d704, 0x000137, 00000000 + 0x3e7d704, 0x000137 }, { 0x38232afd, 0x1e7af0aa, 0x5f82e0b, 0x7e3f97f7, 0x3eb5b75a, 0x6f66a66e, 0x7f00bd56, 0xa62d0aba, 0x90d8a247, 0xabd3e340, 0x961fd90c, 0xc84898ea, 0x4f55c656, 0xcb857fc3, 0x194fe454, - 0x8e9c868c, 0x00016f, 00000000 + 0x8e9c868c, 0x00016f } }, { @@ -59008,19 +59006,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x865080c0, 0xa3ac06a7, 0x384da226, 0xad9310a, 0x7b4bba26, 0x7db241e9, 0x45ad784f, 0xe8460845, 0xd7f0421, 0xb84de7ee, 0xd2da5427, 0x4f210535, 0x54cd1fca, 0x796395de, 0x4aeb732d, - 0xf56eeb7f, 0x00010b, 00000000 + 0xf56eeb7f, 0x00010b }, { 0x2ac654ff, 0x19b56476, 0x56eed336, 0xf03eda0b, 0x736fadd1, 0xf55498eb, 0xeb078d09, 0x28da529e, 0x8302bdb8, 0xc05e6a42, 0xc12e9e2a, 0x5d3532bb, 0x3501e8cc, 0x6295a806, 0x26d4fda9, - 0xf3e2fdc, 0x00014e, 00000000 + 0xf3e2fdc, 0x00014e }, { 0xe069698b, 0xed90e862, 0x51236a25, 0x78a816ae, 0x5e24ee49, 0xb834a317, 0x7d83ce76, 0xf0f5d3ba, 0x4b52feb, 0x453e9d05, 0xe1f8016a, 0x969e1186, 0x39fbc901, 0x68c70563, 0x646aecf0, - 0xb08de98a, 0x00018a, 00000000 + 0xb08de98a, 0x00018a } }, { @@ -59028,19 +59026,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6e9b2b23, 0x58100e7d, 0x536d6102, 0xd1f9317f, 0xa11cc91c, 0xd3a35ce2, 0x41530ae8, 0xe28e01c7, 0xa2f03a7, 0x1b553f6c, 0xf98a3b94, 0x1aff9b88, 0x7d66eae3, 0x1167fcca, 0x4a0ce0ed, - 0xc3537007, 0x000156, 00000000 + 0xc3537007, 0x000156 }, { 0xba6894ca, 0xc0f765c9, 0x217dca99, 0x3b7bdb80, 0x12557a93, 0x13cbf966, 0xc1e166a9, 0x9634d9eb, 0x641d30ec, 0xade8dd7b, 0x408643a4, 0x641d567c, 0x6054b35, 0xbbc7a066, 0x25b0ead7, - 0x5e477b, 0x0001bb, 00000000 + 0x5e477b, 0x0001bb }, { 0x1b9f5207, 0xadddaa73, 0x5876fb07, 0xff3a67e0, 0x2614678d, 0x95ac19e5, 0x520c7a20, 0x442c2065, 0x2e00b6a9, 0x1f78bfb3, 0xe3f99a78, 0x885f7435, 0x3bc66744, 0x96a9397b, 0xfcd511c0, - 0x751f3c97, 0x000030, 00000000 + 0x751f3c97, 0x000030 } }, { @@ -59048,19 +59046,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xea3a4e88, 0xbf42f930, 0x639141ea, 0xe67a3885, 0xa2c97e53, 0x409840bf, 0xbaed6972, 0xd3255e34, 0x11547638, 0xcf0e4f42, 0xab65c525, 0xb2b631d1, 0x99446301, 0x32fa6a6e, 0xd27e9b1b, - 0x212eee37, 0x0000db, 00000000 + 0x212eee37, 0x0000db }, { 0xbc77ef77, 0x67241ea3, 0x6c86eacf, 0x1e3d8541, 0x95c3e368, 0x432a15c9, 0xcc155c59, 0x4a461c99, 0x235523fb, 0x6ad11ea7, 0xb43f61df, 0xde492f98, 0x323184d1, 0x47eda25d, 0x2c4a3924, - 0xef224508, 0x000100, 00000000 + 0xef224508, 0x000100 }, { 0x1fa16529, 0x4f5ae39c, 0x15853078, 0x62693273, 0xf810f8a2, 0x81216343, 0x74b7fd63, 0xafbbd653, 0xc42f2efe, 0x8e8738f, 0xfe43a480, 0x1a8525f4, 0xa7bf2b09, 0x5e733f0c, 0xe4c60911, - 0x7bf8036f, 0x0000ae, 00000000 + 0x7bf8036f, 0x0000ae } } }, @@ -59070,19 +59068,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeeecddfd, 0x7c1b5af7, 0x1d855edf, 0xc97f045, 0x5ec7bc72, 0xef3a19d1, 0x861c2adb, 0xb6029a8f, 0xf84835dc, 0x21567cc2, 0x798f6448, 0xcbf082d6, 0x7d4b54af, 0x718f1ce0, 0xdb9019de, - 0xc18c05bd, 0x0000f2, 00000000 + 0xc18c05bd, 0x0000f2 }, { 0xe8bb8065, 0x5c804a5f, 0xf67703e1, 0xea08d782, 0x585e9173, 0x396efa36, 0xcbf5ac8c, 0x5a247750, 0xfe6b3899, 0x35af022f, 0x3bd689c, 0x95910fdb, 0xabc65209, 0x9b5dd83d, 0x178e504a, - 0x944d87fd, 0x0001e8, 00000000 + 0x944d87fd, 0x0001e8 }, { 0xd8bcf035, 0xe991c215, 0xb52507f2, 0x3242fb36, 0xe4bc1151, 0x9903f208, 0xd16c0e49, 0xbaec7ea0, 0x394769b, 0xf8acd20b, 0x28e5ed77, 0x5c3c4f54, 0x6499a82d, 0x9763d080, 0xd5a3b2d6, - 0xa4996a58, 0x000035, 00000000 + 0xa4996a58, 0x000035 } }, { @@ -59090,19 +59088,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x58d33e4d, 0x6fb353a5, 0x3bf8bc0d, 0x851f611b, 0x3369e00a, 0x367110be, 0xc1109f26, 0x2e033d29, 0x6a83dd5d, 0xa147baad, 0x40094620, 0x6aeee06f, 0x2bb68596, 0x15e4b4be, 0x83fe49fc, - 0x452af05, 0x0000b7, 00000000 + 0x452af05, 0x0000b7 }, { 0x3c60b8ea, 0xbeb4d1b1, 0xde1ea337, 0xfb45a576, 0x3b7ac80f, 0xee51214c, 0xd99a16b8, 0x42048c6e, 0x47c6c4d1, 0x395b97d6, 0xf31c347c, 0x208c96b7, 0xc259120e, 0x44774c82, 0x8e277ff6, - 0x9e8e510e, 0x000011, 00000000 + 0x9e8e510e, 0x000011 }, { 0xe7564f9b, 0xb79a6ce7, 0xdb1b509c, 0xd47b43b7, 0xaabc847d, 0xc0ee84fa, 0xb310c432, 0xe2e4085d, 0xb24ccc84, 0x96281eb8, 0xa3b1a6b, 0x930f01a9, 0xb18cb20c, 0x9e8f7940, 0xde1a8c07, - 0x926653c1, 0x00015e, 00000000 + 0x926653c1, 0x00015e } }, { @@ -59110,19 +59108,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6e8d38e1, 0x1bae4e03, 0x56dec8e1, 0x211c7086, 0xb777d983, 0x35f112f0, 0x9c65d434, 0x558d82e7, 0xbcce235d, 0x4aebf7c2, 0x976af93e, 0x4d245c43, 0x41da73a9, 0xeaef182e, 0x8477b468, - 0x32572e38, 0x0001c7, 00000000 + 0x32572e38, 0x0001c7 }, { 0xbeff112f, 0xf586635f, 0x8b67ece3, 0x684b7496, 0x28b009c4, 0x1f873911, 0x5c20572b, 0x769fc9a6, 0x65b4f95d, 0x628627f, 0x48e2fd68, 0x4aa7f121, 0x59308d67, 0x78ffeb92, 0xa4e49528, - 0x5e48052b, 0x0001bc, 00000000 + 0x5e48052b, 0x0001bc }, { 0x2734bd25, 0xa0959b74, 0xa4089ed6, 0xc40f285d, 0xbf003ed1, 0xfa87d01d, 0x3cb78683, 0xc9a48819, 0x3deee335, 0x44a70ae, 0xeea532d, 0xd166f500, 0x8b10a171, 0xda2f4db8, 0xacde1cb3, - 0xfaca88be, 0x000072, 00000000 + 0xfaca88be, 0x000072 } }, { @@ -59130,19 +59128,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xae56b2f7, 0xda93cc77, 0x1be851ee, 0x58b2f3ec, 0x9456477, 0xa5bec66a, 0x56ff570b, 0x4c5a8fd6, 0x45e1c0c6, 0x95423140, 0x15479523, 0x29e73be7, 0xc36e7109, 0xdf7e77a9, 0x98fc4376, - 0x47f42fd2, 0x00012c, 00000000 + 0x47f42fd2, 0x00012c }, { 0x17c3238e, 0x1db6c036, 0x285ee839, 0x542e9ea, 0x20b4ab5a, 0xc65afac1, 0x18c11b6b, 0x666b8fd4, 0xe1a43bdc, 0x6b64fe57, 0x80455e4e, 0xb78f91c8, 0xee06fc55, 0xff5a1d23, 0x16bc225c, - 0xfe9c9956, 0x00009b, 00000000 + 0xfe9c9956, 0x00009b }, { 0xf1fd58c5, 0x798ba81c, 0x31d3d963, 0xf78200fc, 0xf6c879, 0x5c5c2f49, 0x746d76e4, 0x5fb5e5c0, 0xc2680444, 0x44373531, 0x1ccc683b, 0x1e2afee7, 0x657cb1cd, 0xe5ea0243, 0x5e213a45, - 0xc9fc3123, 0x000166, 00000000 + 0xc9fc3123, 0x000166 } }, { @@ -59150,19 +59148,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x326f306f, 0xf9480b6f, 0xc122b97b, 0x6053c097, 0x7d7efa6f, 0x8684968b, 0x3bf11e21, 0x3003454, 0xdeda0961, 0x971f25f9, 0x4ad88054, 0xf5af13c8, 0x8e672014, 0xe11eea5, 0x33767ad2, - 0xa44ba039, 0x00000b, 00000000 + 0xa44ba039, 0x00000b }, { 0x1736647d, 0x780bd050, 0x304bb603, 0xefcac6, 0xa055db69, 0xdbfc42cb, 0xa8e6cf1e, 0x9db3c94e, 0x4caca599, 0x1085b37f, 0x1d5af693, 0x45882678, 0xba05491f, 0x18f832b, 0x5e8cff9a, - 0x44a304f, 0x00014d, 00000000 + 0x44a304f, 0x00014d }, { 0x50a298f3, 0x26a15146, 0xbd69e53c, 0x275d5260, 0xa29f3bcd, 0x111a3a1a, 0x4235893b, 0xa01ded1f, 0xdb480d76, 0x2fb13f66, 0x146b803d, 0xf4926a77, 0x21661767, 0x2a312855, 0x8b49da36, - 0xbbf8445c, 0x000144, 00000000 + 0xbbf8445c, 0x000144 } }, { @@ -59170,19 +59168,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf5f1a29f, 0x3b097485, 0xbd8888e5, 0x37e02ab9, 0x43602657, 0x282ddac0, 0x200a0a10, 0x9176904a, 0x70772dbe, 0x98ce78a, 0x9d9ec9eb, 0xac080f63, 0xa6fd152d, 0x556b787a, 0xabc5edb5, - 0x8fbc0a7e, 0x0001a4, 00000000 + 0x8fbc0a7e, 0x0001a4 }, { 0x8cdb2d04, 0xe92ed9c4, 0x5dd45dc1, 0x5d5a2211, 0xcdd88e75, 0xd0055fe5, 0x41b8d05f, 0xc4aa8e5f, 0x8f65c560, 0xa19b01e1, 0x29f34cf6, 0x3ee3bcbd, 0xbbc5d58a, 0xf37f3c39, 0x9452bd7, - 0x1e50d738, 0x0001cb, 00000000 + 0x1e50d738, 0x0001cb }, { 0xde4443d5, 0x28d78966, 0x2446eec5, 0x86053ab5, 0x8fb89b3a, 0x964b47ff, 0xc189557f, 0x8d794861, 0xa52a8f2b, 0x67d1a9fe, 0x6ce47ccf, 0x7096fd2a, 0xd3a62a4c, 0x631d524f, 0x6c7fcdc7, - 0xc093cc98, 0x00018d, 00000000 + 0xc093cc98, 0x00018d } }, { @@ -59190,19 +59188,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9845b93, 0x73f302a7, 0x5aec8f42, 0xd46cef74, 0xdf5263d4, 0x211383bc, 0x534f0407, 0x35ef21d5, 0x4178a46a, 0x1efe3175, 0xc2cd352c, 0xd26d0c40, 0x6bea88c8, 0x5309044, 0x5f747cb6, - 0x9e96efd5, 0x000049, 00000000 + 0x9e96efd5, 0x000049 }, { 0xf3aefdb7, 0xe76dbe06, 0xf0b8b68b, 0x34a7f61b, 0xdb18984c, 0xbe0fec0e, 0xb749a0c8, 0x246c3a32, 0x613af3d6, 0x6b5a544e, 0xae80816a, 0x4523b94a, 0x47e0cb72, 0x84375a8a, 0xc2c05408, - 0x2cda6385, 0x000133, 00000000 + 0x2cda6385, 0x000133 }, { 0xab365fce, 0x5d894586, 0x74536c1e, 0x1f30f539, 0x5805a375, 0x33ddaa27, 0x11b6f406, 0x6dd8628c, 0xb62be955, 0xe60062c3, 0x850dbbb5, 0x2365e89b, 0x121864af, 0xae73f61f, 0xfb19a54c, - 0xb02e754d, 0x00014e, 00000000 + 0xb02e754d, 0x00014e } }, { @@ -59210,19 +59208,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa8ed71e4, 0x3a22545c, 0x1601e609, 0x59fcee3b, 0xad312e, 0x4d6d9a6a, 0xc36cbd86, 0x90b7d9ef, 0xedec8f21, 0x6fc37170, 0x90718e8a, 0x26a80a01, 0x6077a04f, 0xe0e13d75, 0x6bd127cf, - 0xeff5e00a, 0x0000d2, 00000000 + 0xeff5e00a, 0x0000d2 }, { 0x32d5232b, 0xc079daa, 0x54e5099c, 0x7eaa113d, 0x2b87df78, 0xb780c44e, 0xfd673184, 0x972527ff, 0xdfc0bb61, 0x784c3ea5, 0xe0384051, 0x76501818, 0xa2a2880f, 0x184f2112, 0x6a8e7e84, - 0x41864412, 0x0000fb, 00000000 + 0x41864412, 0x0000fb }, { 0xba892806, 0x58641f71, 0x2c50c31b, 0xb302491, 0x4039f92f, 0x3aa35d39, 0x58af1429, 0xb6400409, 0xa0a114ae, 0x45752e76, 0x65e07dc4, 0x5f0ab723, 0x8e5dd1c6, 0x5135683b, 0xf0c4e7cf, - 0x8dc10bc5, 0x0001f2, 00000000 + 0x8dc10bc5, 0x0001f2 } }, { @@ -59230,19 +59228,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc6a7d24b, 0x66cf08e8, 0x393d3bf3, 0xd1098970, 0x94132891, 0xe97a5ffe, 0x1b361e75, 0x7e5274db, 0x9a6d8716, 0x615b338b, 0xc1831666, 0x7c74b70d, 0x40b5a197, 0xf3463a1b, 0x6ef339a6, - 0x3f1f032f, 0x000109, 00000000 + 0x3f1f032f, 0x000109 }, { 0x395a291b, 0xf5097ef3, 0xefc74494, 0x1da51c9e, 0xc4da3fca, 0xf897e887, 0x17bd46dc, 0x65329257, 0x5094c28f, 0xfebbf10d, 0xb240f49d, 0xebee5408, 0x42f13031, 0x38e482df, 0xc58a15e5, - 0xe63c1b94, 0x0000e0, 00000000 + 0xe63c1b94, 0x0000e0 }, { 0x5ae8ae46, 0xc6e16b0e, 0x90d4efe8, 0x50298496, 0x40922903, 0x5bd0e80a, 0x61a39ff7, 0x5c1d1606, 0xd12616be, 0xcd3792c8, 0x87113df1, 0x468fe13a, 0x92f5b3, 0xb794b63f, 0xcd0d07b5, - 0xc3263a0e, 0x000102, 00000000 + 0xc3263a0e, 0x000102 } }, { @@ -59250,19 +59248,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf9ceb8e, 0xd275d588, 0x1bdd27a9, 0xce714e4c, 0x9d946683, 0xa5e5d5a, 0x2439bf42, 0x248b44e5, 0xb17239c6, 0x83808909, 0x95684c57, 0xf898cb1d, 0xf3646bf4, 0xf1d8e72b, 0xbd6e9387, - 0xf1554c90, 0x000027, 00000000 + 0xf1554c90, 0x000027 }, { 0xd260a759, 0xb1d2f4e6, 0x1975eb9d, 0xafdfc23a, 0x1ccbc057, 0xa7b8ad1e, 0x70119060, 0xb12bc39, 0xcb305445, 0x661fdf26, 0x1ecd82cd, 0x2ae8778f, 0x5822502e, 0x7569652, 0xe3e9d1f, - 0x5dd646b3, 0x000126, 00000000 + 0x5dd646b3, 0x000126 }, { 0xe953e671, 0x6ef4bd09, 0x62ea8afe, 0x15d1e421, 0xff53b74f, 0x8afb2c9b, 0xbf920c1f, 0x2969fd2a, 0x4ce38c48, 0xf2acafb8, 0xa203e74, 0x66fcb629, 0xaadfdca5, 0x1add6e3f, 0xb5afa745, - 0xa08ff94a, 0x000199, 00000000 + 0xa08ff94a, 0x000199 } }, { @@ -59270,19 +59268,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbecf50b2, 0x9797e5fb, 0x5d715067, 0x8bcc9354, 0x8c185c0a, 0x36780094, 0x3db7de8a, 0x88d43547, 0xf8f0c994, 0xe23a6480, 0x557546c7, 0x78e96d3, 0x18e258e0, 0xd4ec461f, 0xa1789064, - 0x75a46eb5, 0x00002d, 00000000 + 0x75a46eb5, 0x00002d }, { 0xebc69689, 0xe6d254e8, 0x5d981d51, 0x229b25d6, 0x67d5d346, 0x7b7e317e, 0xbb735273, 0x855b97dd, 0x1505b4b, 0x368ec1cd, 0x8a651237, 0x481f9330, 0x122aa46a, 0xb46dc7cb, 0x269c7ea3, - 0x499119d6, 0x0001b9, 00000000 + 0x499119d6, 0x0001b9 }, { 0x6c3f8067, 0x67829b20, 0x6b3756e3, 0x190f003, 0x63ada3b7, 0x54c4de6e, 0x92218c11, 0x30e81600, 0xa497fc55, 0xa82c02c4, 0x6f42927a, 0x3a264e96, 0xf2b2f0bb, 0x354bf691, 0x7f437b0b, - 0x2b24a991, 0x0001ef, 00000000 + 0x2b24a991, 0x0001ef } }, { @@ -59290,19 +59288,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcddabb3c, 0xf88993ce, 0x50b3ec7c, 0x90831c1c, 0x6e8862fc, 0x69526bf5, 0x9fe3cdc7, 0xb790ed58, 0x4e662b00, 0x538bfe4a, 0xc3c55385, 0x8f29167e, 0x312ccd4f, 0x5af878ad, 0x794f69aa, - 0xed7040a1, 0x0000d8, 00000000 + 0xed7040a1, 0x0000d8 }, { 0xba4b75ea, 0x2fd9ebc, 0x1618a401, 0x29ef1296, 0xd2566caa, 0x8c8d9c80, 0x8d73d1e9, 0x7b780dc5, 0x1e151d69, 0x4ac82d8d, 0xf1d341c0, 0x5f4ef96, 0xe3d2f846, 0xf2093f23, 0xd36406c2, - 0x7eac6e54, 0x0001ea, 00000000 + 0x7eac6e54, 0x0001ea }, { 0x5543b91, 0x2711ad38, 0xd28ec5ad, 0xb5d4cfdc, 0x18b1674b, 0x7fed2922, 0x5d853123, 0x4e671a78, 0xe1de63b1, 0xd0a727cc, 0x902fe46d, 0xb88ab44, 0x4fe7f8d4, 0x231b3ec, 0x6fb65591, - 0xf0e91cb7, 0x000109, 00000000 + 0xf0e91cb7, 0x000109 } }, { @@ -59310,19 +59308,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe1953c7e, 0x241724b, 0x5eb17257, 0xd45a003c, 0xb604ee29, 0x45ed3308, 0xafbd0216, 0xc3c57c81, 0xafca70e8, 0x20c511f0, 0x14c0ed8, 0xa9562bb8, 0x330984e0, 0xe761d933, 0x3fba6685, - 0x6550298a, 0x0001aa, 00000000 + 0x6550298a, 0x0001aa }, { 0x2e6b7bb0, 0xc9f9ec81, 0x31cf060c, 0xbc8ec54f, 0xa64e667d, 0x7da2af44, 0x7a24197b, 0x60e77241, 0xaea16386, 0xd4feb399, 0x2025b25d, 0x80d43c98, 0xd5a8c895, 0xad18fa4f, 0xf1e0bff2, - 0xb428938, 0x000158, 00000000 + 0xb428938, 0x000158 }, { 0xadafcea3, 0x4a29060e, 0x2329f8bb, 0xe18ab2ca, 0xdbf102ec, 0x11efc9fd, 0xf414acd3, 0xd9421809, 0x9616c497, 0xae25a17b, 0x71dc06f9, 0x92d2763e, 0x377b1e1e, 0xc245656, 0x11c58b38, - 0x9a9ec3f8, 0x00003f, 00000000 + 0x9a9ec3f8, 0x00003f } }, { @@ -59330,19 +59328,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a851b7f, 0xcac18053, 0xcb65a8f0, 0x57de4fa6, 0x9746670e, 0x15276e6c, 0x90b28fae, 0xeb4cdac1, 0x5056e0ea, 0xd9492e93, 0x5ab3a355, 0x807f1cc3, 0x217e6cf2, 0xd26c0643, 0x32ed4e30, - 0x499341de, 0x000171, 00000000 + 0x499341de, 0x000171 }, { 0x3d03938c, 0x4c13f104, 0x37648baa, 0xb7d69ebf, 0xee006429, 0x85d1d104, 0x1c17237e, 0xb60c9039, 0xc8623a41, 0xbc7bb04d, 0xd129943f, 0xf508e54c, 0x2294d986, 0xbe04435a, 0xcfd296c8, - 0x7d14bf3c, 0x000034, 00000000 + 0x7d14bf3c, 0x000034 }, { 0xaa2b5d38, 0xa0cd9af2, 0xebf8d948, 0x3937822, 0xbaee5b15, 0x86566e4b, 0xa601716f, 0x373e8dd8, 0x6cd121e8, 0x3d1e7b2, 0x470604aa, 0x58c71561, 0x9eac6ab5, 0xb4af3159, 0x2c8cd001, - 0x9bde2f60, 0x0000e7, 00000000 + 0x9bde2f60, 0x0000e7 } }, { @@ -59350,19 +59348,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9238baf1, 0x46ce1ae1, 0xf5ea633b, 0x6602fdb4, 0x1f217b31, 0xad678798, 0x266f7e11, 0xc81cb0bc, 0x86fe74d9, 0x49fc6017, 0x6c028af5, 0x8801b358, 0x81b2fd98, 0x2034a493, 0xea28e98c, - 0xcd5e0783, 0x000069, 00000000 + 0xcd5e0783, 0x000069 }, { 0x9be66fa5, 0xd5a21025, 0xfbe20b80, 0xf8e0d506, 0x4dec8ef7, 0xd752cac1, 0x811ce1b3, 0xcfee9a25, 0xa177642b, 0x3e20fb5d, 0xe042a50c, 0x2b8986fe, 0xaae6d540, 0xdc52e4d3, 0x3067098b, - 0xed2ab898, 0x00014e, 00000000 + 0xed2ab898, 0x00014e }, { 0x4489ec24, 0x18a3a8a3, 0xd0a719c1, 0x30a86e5f, 0xf1049e0c, 0x9cd49b09, 0xf649efa3, 0xcf9b4c25, 0x15552ac7, 0xce28254d, 0xa65f0f8a, 0x67fe8d64, 0x6157baf, 0xf6e43524, 0xa7fea26b, - 0x3fe6187d, 0x000179, 00000000 + 0x3fe6187d, 0x000179 } } }, @@ -59372,19 +59370,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe67d8e2, 0x69ce1a53, 0x47ccc19b, 0x3956a553, 0x2be7cebd, 0x847c6c4a, 0x3bc4f1dc, 0xa29bdeb2, 0xf8c0574e, 0x2e11dd5b, 0x9aebbf6f, 0xe76a9dc5, 0x37dbdfc, 0x5c5e7412, 0xb5f84eee, - 0x7136182e, 0x000159, 00000000 + 0x7136182e, 0x000159 }, { 0xbc149757, 0x5c47e566, 0xcf275144, 0xc508c865, 0x59a6cdc6, 0x98a278b2, 0x464eced6, 0x7af51797, 0xb90dcc54, 0x6b3c88d5, 0x1bd21f6f, 0xcc72f2cd, 0x5db67ebb, 0x9c88a564, 0x6fd4c96d, - 0x1cd4c6a3, 0x00008a, 00000000 + 0x1cd4c6a3, 0x00008a }, { 0xcd85bd7d, 0x3342f9e3, 0xe1a9a912, 0x998f42c6, 0x7bdd1f81, 0x2ceb786, 0x6b4afe72, 0x856d7fe9, 0xd5a5b9c9, 0x772a6bd0, 0xb2d70b47, 0xda7be923, 0xeeefd373, 0xa9c65ec0, 0x373fbb5a, - 0xf61ac93a, 0x0001dd, 00000000 + 0xf61ac93a, 0x0001dd } }, { @@ -59392,19 +59390,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x43c6b808, 0xa73a0d40, 0xf5b2b18, 0x7f3af9de, 0x80bef77e, 0x339c636a, 0x601eec56, 0x9c3cd901, 0x82dd797d, 0xf57eda43, 0x8e25a6dc, 0x93cbdc35, 0xda1a96a0, 0xc19a6c11, 0xe97961e, - 0x630e8487, 0x00001b, 00000000 + 0x630e8487, 0x00001b }, { 0x83ee6952, 0xecb22a69, 0x670cd799, 0xdcd48b28, 0x9b365144, 0x12483970, 0x52ac489d, 0xbfffe1cc, 0xe12ba354, 0xeda50071, 0xc0a179e9, 0xed5ac3, 0x40b027b7, 0xf3934644, 0x5d7cf748, - 0x30596e8d, 0x0000da, 00000000 + 0x30596e8d, 0x0000da }, { 0x39b0ddbf, 0x5c9f1764, 0x9d883720, 0x42941a0a, 0x99de655, 0x6c05d313, 0xf4ab3a8c, 0x8e4ea18c, 0xf8d0a61f, 0x3fc600e9, 0xd33e24c4, 0xc4cb6872, 0x47657158, 0x540e589d, 0x3b50a41e, - 0x109940b5, 0x000056, 00000000 + 0x109940b5, 0x000056 } }, { @@ -59412,19 +59410,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4f66c2ab, 0xc4e2de3f, 0xf8e05e60, 0x3e063c1e, 0x52418f93, 0xddec870, 0xfba5b0a0, 0xb2d5a796, 0x35e2db74, 0x1bf9df6, 0x22b3a6e4, 0x73dc46b, 0x52dd344c, 0x4469bc31, 0xa79c1c2f, - 0x20d6204f, 0x0000c9, 00000000 + 0x20d6204f, 0x0000c9 }, { 0x4a7d3857, 0x711c03e9, 0x4ade62e3, 0x6f3d65f5, 0x4783b9f9, 0xebc1738a, 0x42108abf, 0x2f0f709d, 0xacdbed74, 0xe3e2a59a, 0xe2f348db, 0x4f1b35e8, 0x36172e09, 0x1a884dd1, 0x7eecc07e, - 0xb14185fd, 0x000105, 00000000 + 0xb14185fd, 0x000105 }, { 0xeb6fea23, 0x5bdb8fad, 0x2b65f454, 0x304929eb, 0x95f0b2cf, 0x4b40712f, 0x4d90d13b, 0xbce4b4c1, 0x62af26ab, 0xb1412353, 0x1ff59a2, 0x934192a4, 0x7cc9cf25, 0xdc5609ac, 0x36c4b86d, - 0xa0dea5b5, 0x000127, 00000000 + 0xa0dea5b5, 0x000127 } }, { @@ -59432,19 +59430,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xddc55d2a, 0x84c163fe, 0xe0afba94, 0x40ea89e8, 0x1e85cc2c, 0xdeb445ec, 0x3b4daf23, 0xfd0d2f15, 0x54a6be45, 0x388403e5, 0xaa2230e, 0x8fc1b472, 0x2f18d1b0, 0x88fbc2d, 0x1301b0e7, - 0x376a8b3f, 0x00017c, 00000000 + 0x376a8b3f, 0x00017c }, { 0xfb897e7d, 0x221bc8e8, 0xaf07124f, 0xc865c12, 0x588cfcc6, 0x8ab778ad, 0x38af4b28, 0x3a53e15, 0x232889cf, 0xe60f431a, 0x4ddfce7b, 0x9b8c13d4, 0x94c74b49, 0xdaf90744, 0xa98defce, - 0xef784742, 0x000095, 00000000 + 0xef784742, 0x000095 }, { 0xb5690661, 0xcf6882e4, 0x8bf3aedc, 0x9f8fc284, 0x42ece56c, 0x71a69de5, 0x649c5e33, 0x6f993a9e, 0xeef3565, 0xc65aebc9, 0xe1357c23, 0xf537ffb0, 0x29ef8727, 0x58452319, 0x5318f100, - 0x5bf8fdfd, 0x000016, 00000000 + 0x5bf8fdfd, 0x000016 } }, { @@ -59452,19 +59450,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9dde40c5, 0xff7c6307, 0xd6ca8c18, 0x6a6c937b, 0x99ee569a, 0xdcb39933, 0xa3262220, 0x41357670, 0xe8f55485, 0xb55c009d, 0x4348a216, 0x1498783e, 0x8377005d, 0xeceb7de7, 0x2f4be501, - 0xbed17523, 0x0000a8, 00000000 + 0xbed17523, 0x0000a8 }, { 0x39821bf0, 0x53ef8075, 0x48c8b6dd, 0xe8999661, 0xd8c43af3, 0x8554c299, 0xcda0fa6d, 0x4ad76337, 0x4543463b, 0xd38e453c, 0x267cada6, 0xf6c8694e, 0xe30a45fb, 0x7c763ec, 0x654ac5c3, - 0x313e5ca6, 0x000055, 00000000 + 0x313e5ca6, 0x000055 }, { 0xecda8b37, 0x30982c75, 0x93239eb8, 0x6d9445ec, 0x7648e59c, 0x99eae5b2, 0xcb451e9f, 0x5c23591b, 0xc28bb1a, 0x1e4d0300, 0x24125c2a, 0x3a0dff00, 0xfc63aa5d, 0xcb14a6bc, 0x38a02db3, - 0x9e15be08, 0x0000c4, 00000000 + 0x9e15be08, 0x0000c4 } }, { @@ -59472,19 +59470,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x25c91fc6, 0x622a7ee, 0xf35f83bb, 0x9020e9c0, 0x26d94ff0, 0x3ec97ee4, 0x894849eb, 0xa2f8a13d, 0x920bcda7, 0xaa480f5f, 0x17066107, 0xb878cf94, 0x2680963a, 0x898e60cf, 0x1829615e, - 0xdf56a71c, 0x00010f, 00000000 + 0xdf56a71c, 0x00010f }, { 0x5b3bd0c8, 0x919f828, 0x33ce5a2d, 0xeae24811, 0x12fe5c1b, 0x373fb036, 0x1be555e0, 0x7a0b441c, 0x911967ea, 0x50d56818, 0x8f6b6ca7, 0x6b4468d9, 0x7bfee84e, 0xbb3bc209, 0xd5651dd, - 0xcb8efc9d, 0x00011e, 00000000 + 0xcb8efc9d, 0x00011e }, { 0x22f4e7e, 0x9af359c5, 0x9122b5f1, 0x81081c7b, 0x1b8727ea, 0xd9b64cb, 0xd0e42c7b, 0xe18f93ab, 0x8ead2096, 0x1d1c340f, 0x85135c8d, 0xc9b59891, 0xea5f1d99, 0xa839a35c, 0xe53edf79, - 0x2dc6105b, 0x0000af, 00000000 + 0x2dc6105b, 0x0000af } }, { @@ -59492,19 +59490,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xebc05e4e, 0x2fa723c1, 0x1f3b60fb, 0xd7494343, 0x32eba59c, 0x19b69876, 0xcb66260e, 0x67585607, 0xaaecaac2, 0x2812fbec, 0x5a16a23e, 0xf307a4b9, 0x771b493c, 0x5590ae38, 0x3fc7300f, - 0xb3ae5cf2, 0x000095, 00000000 + 0xb3ae5cf2, 0x000095 }, { 0xbe792cdb, 0x62c28561, 0xd6b1e946, 0x78423755, 0x185c960d, 0x2547606d, 0x7868313c, 0x27b9547f, 0xe2ebea71, 0x25e9aa62, 0x178e2496, 0x8c00710c, 0x2cadcc28, 0xca634782, 0xa4577757, - 0x7c403b29, 0x0001de, 00000000 + 0x7c403b29, 0x0001de }, { 0x60a81c9, 0xf8b31240, 0x71d5c36a, 0x8bb1801b, 0x4e6e5087, 0x2f3b47be, 0x150c3792, 0xf7a13b9b, 0x27e70bda, 0x499cc84d, 0xe3026b35, 0xd51f27c3, 0xe29528c1, 0x7295f021, 0xc4735b37, - 0x6910e271, 0x000053, 00000000 + 0x6910e271, 0x000053 } }, { @@ -59512,19 +59510,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe723829a, 0xd75799b2, 0x7a6b1efd, 0x44273646, 0xba93f8ea, 0xd4fc51b1, 0x4eb48488, 0x93047882, 0x8f74ea97, 0x41685cbd, 0x96595008, 0x7672a8e7, 0xf95d364e, 0xbb82415c, 0x65dee611, - 0x3bbb6005, 0x000101, 00000000 + 0x3bbb6005, 0x000101 }, { 0xba38d732, 0xc29fa6fd, 0x34a6e89c, 0x86c4bf4a, 0xf9a033a3, 0xbb9026f9, 0xd294bd07, 0x454a088e, 0x38265500, 0xcc6f0214, 0xf55638c0, 0xee4099da, 0xbf1061, 0xcf63a76e, 0x2c581e7b, - 0xaa6422d0, 0x000022, 00000000 + 0xaa6422d0, 0x000022 }, { 0x6ebd7cb9, 0xa7b7d1e4, 0x6b7bb4ec, 0x3107f2a3, 0x5ce41b27, 0x224c6120, 0xd9c5061c, 0xd3d269b0, 0xca7734b0, 0xceba2f5b, 0x9c7c1cc8, 0xa7f0c6b9, 0x8d0ee39b, 0x43100199, 0xca574eaf, - 0xd6147582, 0x000146, 00000000 + 0xd6147582, 0x000146 } }, { @@ -59532,19 +59530,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x13418057, 0xccb5d880, 0x30847a8d, 0x12549deb, 0x1d6eb7c3, 0xebb08c7b, 0x24888d7b, 0x486efb9a, 0x241b7501, 0x445b2013, 0xc99be71a, 0xb538fec1, 0x4e0c685b, 0xd94cbe93, 0x893c94cb, - 0x9c32243, 0x0001d1, 00000000 + 0x9c32243, 0x0001d1 }, { 0x802169ab, 0x7de518c8, 0xd21b606d, 0x846fd517, 0xa6c40794, 0xc913f65a, 0x61825f30, 0xed84ea87, 0xa4a2b753, 0x6d5f7d2b, 0xdf9ffcfc, 0x27898e0a, 0xef7fb8bb, 0x29681f13, 0x4cfa1819, - 0xadd73919, 0x000080, 00000000 + 0xadd73919, 0x000080 }, { 0xbc55e38d, 0xf9e2dcf5, 0x8559cc2, 0xf0d044f7, 0x3c630836, 0x222510ce, 0x214fef4e, 0xb7fc8e86, 0x674b651d, 0xfbd43efe, 0x43975bba, 0x2110b6de, 0x2d98bb8f, 0x749efd36, 0xc22629e1, - 0xf010d7f8, 0x00003f, 00000000 + 0xf010d7f8, 0x00003f } }, { @@ -59552,19 +59550,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xea7b8395, 0x95abb692, 0x394290cf, 0x708720, 0x1b7966c9, 0x91c9165b, 0xf0f5da6d, 0xd7ac348a, 0x81019186, 0x8db10ed8, 0xc6834782, 0x4a2b8912, 0x5b9a43e, 0xf73aabae, 0x9254e5b, - 0x6c79284c, 0x000085, 00000000 + 0x6c79284c, 0x000085 }, { 0xdc26abbb, 0xe9d5b488, 0x70982839, 0x7f51d027, 0x8815d334, 0x3a4ecb03, 0x7dc161df, 0x8f1e23c4, 0xcd24f70f, 0x5f7edcce, 0x67e3362b, 0x2861d770, 0x81bce065, 0x9556ae2f, 0x92aabae1, - 0xdc28400e, 0x0000ac, 00000000 + 0xdc28400e, 0x0000ac }, { 0x61dc8f13, 0x1c0a5771, 0x3fb5cc36, 0xf75af5d7, 0x9eca345, 0x2ef9beba, 0x4b217e64, 0xcf3eb46d, 0x6a29517, 0xd44acfb, 0x888b14e, 0x1336a7e6, 0x6eb22faa, 0x8a118cae, 0xaa354e9b, - 0x221da459, 0x0001ee, 00000000 + 0x221da459, 0x0001ee } }, { @@ -59572,19 +59570,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1a48d398, 0xd39c92ed, 0x6df69a78, 0x1efa5033, 0x3016e519, 0x40bf1281, 0xf0a9e723, 0x5e71f9e7, 0xe5ab493e, 0x55e3675c, 0x2ef94b37, 0x39b50a44, 0x197bb7a0, 0xa86b16dd, 0x43b303ee, - 0x5514b73e, 0x0001f1, 00000000 + 0x5514b73e, 0x0001f1 }, { 0x2b0adb1d, 0x6152f7d0, 0xad9115fc, 0x86238c25, 0xf5c4f9a8, 0xca9cb1ee, 0x604b5c3c, 0x1e649fd0, 0xffb6b673, 0x43f6973c, 0xf05842dd, 0x9270dd19, 0x7ed9032b, 0xc9d65001, 0xc0f13ecd, - 0x8a0b1415, 0x0001ba, 00000000 + 0x8a0b1415, 0x0001ba }, { 0x6de2cd93, 0xd808a9cb, 0xb7567739, 0x6d4c0a7c, 0x51974d53, 0xaac747db, 0x29ab5a09, 0x25a38b84, 0x33e96a7b, 0x19c57d8a, 0xcfc8166e, 0xc664754f, 0xe3fb24bc, 0xe2f22c91, 0x16c06fb1, - 0xc4cc40b9, 0x0001ff, 00000000 + 0xc4cc40b9, 0x0001ff } }, { @@ -59592,19 +59590,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26b804b2, 0x676cb85b, 0xf9c0481c, 0x2d694405, 0x8603216c, 0xa731ecb1, 0x9892121a, 0x16c2bafd, 0x1548c2fd, 0x95039b5c, 0xeb7ccfb4, 0x524550e0, 0x2a8f8e74, 0x501ead14, 0xe7b8e24d, - 0xb75daff7, 0x0000dc, 00000000 + 0xb75daff7, 0x0000dc }, { 0x3252802e, 0x6b5362c, 0x347f5f7e, 0x966633d5, 0xa0033c61, 0xdfd72393, 0x8a6ddc8e, 0x56f60e10, 0xf44eb9ac, 0xb18210db, 0x684082dd, 0x9455014e, 0xe0e182d0, 0x74455ac0, 0x42d79e70, - 0x8354c137, 0x0001b3, 00000000 + 0x8354c137, 0x0001b3 }, { 0x2fbfb779, 0x9b9f2d5a, 0xdefc44d4, 0x9fd8fed, 0x78f02ecb, 0xe19ccb80, 0xd196b86e, 0xee49d24e, 0xa4396232, 0x756b9e60, 0x7a359822, 0xe01388e0, 0x6915ae4e, 0x83c879e1, 0xb968b8e7, - 0x9792b49c, 0x000145, 00000000 + 0x9792b49c, 0x000145 } }, { @@ -59612,19 +59610,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0bc6735, 0xbdb17836, 0xcccdf8bf, 0x44271eeb, 0x9b74e3c8, 0x9a3e875a, 0x25aa13c8, 0xe622e42f, 0xee807b5c, 0x2036fca7, 0x2a23175f, 0x24282c93, 0x39f67cde, 0xce5a5f62, 0x46c59aa8, - 0xf1ba8b20, 0x00001f, 00000000 + 0xf1ba8b20, 0x00001f }, { 0xd3e629d2, 0xe4f3d8c2, 0x1b1714fc, 0x1ebbf7a2, 0x24396683, 0xea039a0a, 0xedcc8c29, 0x5297a91f, 0xdd37e715, 0xe9af0868, 0x7e4e4ff5, 0x2b17b1de, 0x4337f80f, 0x44db612f, 0x3722b93b, - 0xab6a14d9, 0x000183, 00000000 + 0xab6a14d9, 0x000183 }, { 0x71798ce9, 0x8feb4eb0, 0x30aa3d39, 0xbe5ce7b, 0xc6d02a62, 0x9a2adfb, 0xd2676c50, 0xc62dad47, 0x5bd67d38, 0x5d81bed7, 0xa639b2b3, 0xaaa403, 0x137fb89b, 0xe4c27438, 0xebd8052f, - 0xdf4401c2, 0x000054, 00000000 + 0xdf4401c2, 0x000054 } }, { @@ -59632,19 +59630,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x676285f8, 0x177ed7f5, 0x1bd0e7ac, 0x5449cd16, 0x25770da4, 0xefcd87ca, 0x547075ad, 0x975b340, 0x7ac95ae1, 0x98634978, 0x2a520a66, 0x848a3dab, 0x567de41f, 0xedd0413c, 0x8e9d18d0, - 0x2f966fa7, 0x0001ea, 00000000 + 0x2f966fa7, 0x0001ea }, { 0x4ae77e0a, 0x85c6a40e, 0xcdab852b, 0x5e4f922f, 0x45ea1ea1, 0x2cb241bb, 0x10fd9fa0, 0x2362a5c1, 0x25c43872, 0xb05e11a1, 0x207655e5, 0x12d7ab19, 0x8478b778, 0x4a997b72, 0x922993da, - 0x9db6592d, 0x0000c3, 00000000 + 0x9db6592d, 0x0000c3 }, { 0xd9028ae, 0x9c6d6727, 0xf860ca0d, 0xdb1ec130, 0xf148ab2, 0x5d390993, 0xa174e71f, 0x8e8a0087, 0x1d5c54ed, 0xc8fe5d2e, 0x6bd7bb20, 0x26c302c7, 0xc423d5f, 0x930e89a, 0x90ff5434, - 0x68e462d4, 0x00012a, 00000000 + 0x68e462d4, 0x00012a } }, { @@ -59652,19 +59650,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa346c996, 0x5522ed28, 0x6aa13dd7, 0x594a558d, 0xca70f00b, 0x9ab00264, 0xd7030f98, 0x615f264, 0x7defe079, 0xeb8df894, 0x3e987daa, 0x44607afd, 0x2e3ff2fd, 0x606afc3b, 0x7a22753f, - 0x65cd3812, 0x000024, 00000000 + 0x65cd3812, 0x000024 }, { 0x58a04a9d, 0xa0f9dae0, 0x860c11a7, 0x3b9f8a87, 0x8be3192, 0xdcf9ec7f, 0xb44dfb3b, 0x5f281ea8, 0x904b2a94, 0x4587687b, 0x2f6e3eae, 0xcfeee646, 0xac346f72, 0x87a52070, 0xc4c3472c, - 0x8986f638, 0x00015d, 00000000 + 0x8986f638, 0x00015d }, { 0x93d0fa87, 0x1b41e5e6, 0xf8fcb6c3, 0x9609b943, 0x36edc57a, 0x83dea9cf, 0x8b924b3a, 0xfdfd59a8, 0x6dccc7ac, 0x4b27da1a, 0x5a1025a2, 0x47dea63b, 0x1309233c, 0xb9977b8f, 0x933cf182, - 0xcc2bd1da, 0x0001d9, 00000000 + 0xcc2bd1da, 0x0001d9 } } }, @@ -59674,19 +59672,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xade1f2e5, 0xacccfa6f, 0x568a1408, 0xd49562c3, 0xa919e4fc, 0xc940885c, 0x9613c5ed, 0x11220e, 0xf51b0524, 0x7cd16292, 0xc2765736, 0xf66600ca, 0x8b4f0526, 0x287a1d51, 0x79a1e04e, - 0x5974b385, 0x00007d, 00000000 + 0x5974b385, 0x00007d }, { 0x124a7e25, 0x72b80606, 0x718562bc, 0x304f3511, 0xd6bebdd, 0x1964313b, 0x65d7998, 0xef624934, 0xe21a67e, 0x1a20ea45, 0x7a447c5c, 0xe724cc25, 0x3b9a251f, 0x12db9208, 0xecaf4727, - 0x243d46bc, 0x000124, 00000000 + 0x243d46bc, 0x000124 }, { 0x8add23c9, 0x41320b86, 0x70ab2aec, 0x8ad6bfb9, 0x572876e0, 0xe06d9431, 0xf4625818, 0xb956d0af, 0xa822fbfd, 0xe9543504, 0x7ecb86b2, 0xb12f1636, 0x9cae1ae2, 0xbc86e234, 0xaec5da19, - 0x231e03fd, 0x000149, 00000000 + 0x231e03fd, 0x000149 } }, { @@ -59694,19 +59692,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40870953, 0xfe2118b, 0x7f177ba2, 0xbd5c267e, 0x40a373d, 0x32af6284, 0x26dbdd40, 0x64bc9afa, 0x48100a6, 0x3ba5a063, 0x57b68f20, 0xac31a93, 0xcce52db3, 0x8e00b42c, 0x20f68f41, - 0xa8331fe6, 0x000153, 00000000 + 0xa8331fe6, 0x000153 }, { 0xd2c8f6b6, 0x41628980, 0xafd9d6cb, 0x64c9e9cc, 0xf324b5ea, 0x86442864, 0x41a432ca, 0x8497119a, 0x4cb5e0ab, 0xe2a6cf08, 0xfdf390a7, 0x14b031ff, 0x47d60bcb, 0x40ee094c, 0x47397eb5, - 0x55cca391, 0x00001f, 00000000 + 0x55cca391, 0x00001f }, { 0xdf67042, 0xb75597d5, 0xb61612aa, 0xfc3593ed, 0xd7b63bc1, 0x92cd68e1, 0x9e089d53, 0x8c70d542, 0xce743fb9, 0xc8c77a20, 0x52898d92, 0x10b3c12e, 0xd24cbc9f, 0xf5033a6a, 0xf6fe4f54, - 0x58ef914, 0x000097, 00000000 + 0x58ef914, 0x000097 } }, { @@ -59714,19 +59712,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6ebf45c, 0x24a70465, 0xc0c19e75, 0x3bf055, 0x32001e36, 0xc6c9940, 0xf14dbbec, 0xb74c9e84, 0xfa81163, 0x36683d85, 0x2d20b4a6, 0x56384749, 0xc5528922, 0x7b23a4d9, 0x2de6b276, - 0x4082bd2c, 0x000063, 00000000 + 0x4082bd2c, 0x000063 }, { 0x674c99df, 0xb19c200e, 0x2b15dfa6, 0x3c11ee0c, 0x67f14b57, 0xc44cc261, 0x7d307b7a, 0x168b3833, 0x6937c8f1, 0xb50dfec3, 0xfbc3e9da, 0x401cb7bb, 0xe9bd437c, 0xbe61aa09, 0x32293255, - 0x1f42f5b7, 0x00012a, 00000000 + 0x1f42f5b7, 0x00012a }, { 0xcb9c66f4, 0xad17b498, 0x33fa5b12, 0x385ad442, 0x959878fe, 0x4bba0f2, 0xe8b09cf7, 0xc0f7549c, 0x4a9f18f5, 0x29bbab12, 0x5106e2fd, 0xd9d4d27a, 0xcc3c9c25, 0x8927777f, 0x7d608282, - 0xbfd14d2f, 0x00001c, 00000000 + 0xbfd14d2f, 0x00001c } }, { @@ -59734,19 +59732,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x75da0f3d, 0x28be2717, 0xa843d855, 0x1df6b6d0, 0x25eb04b, 0xcf756c64, 0x8c0b5cc4, 0xb250e3c6, 0x98de27d2, 0x9a3fc312, 0xef7029ce, 0xcdddc6a8, 0x49681554, 0x1252ca09, 0xf3a3c156, - 0x310ebbad, 0x0000f7, 00000000 + 0x310ebbad, 0x0000f7 }, { 0x23914106, 0xd3826cd1, 0x56ec4e87, 0x903543a8, 0xc84c55e1, 0x237e177c, 0x9610ceb5, 0x5d39c513, 0x15774365, 0xa397dbfa, 0x767a5b4f, 0xbce260e8, 0xec02f245, 0x4886e68f, 0x207956dc, - 0xcaa978bb, 0x00010c, 00000000 + 0xcaa978bb, 0x00010c }, { 0xa6589ee9, 0xd9e5063e, 0x152f75df, 0x29d513b6, 0x6abba2e2, 0xc99e674c, 0x353d3197, 0x5788ed0b, 0xbc9d87d5, 0xa77f0823, 0x37f459af, 0xf63dc224, 0x5db30642, 0x60096ec0, 0x70fbcda7, - 0x3ae47711, 0x000108, 00000000 + 0x3ae47711, 0x000108 } }, { @@ -59754,19 +59752,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe85c0507, 0xf0d7d33a, 0x3d378cc4, 0xc73a3fd5, 0xafce32d9, 0x8e6991ea, 0x830600ca, 0xedca4eaa, 0x5ffd999e, 0xc4fc0b64, 0x12bbe7f5, 0xc3e9dace, 0x6a904ef2, 0x8909e756, 0x8bd77c26, - 0xf8d78796, 0x000060, 00000000 + 0xf8d78796, 0x000060 }, { 0x94d06ca5, 0x78387d9c, 0x9bc66cca, 0xbb58c055, 0xc0b777ea, 0x2a9aab8e, 0xddaf6daa, 0xf84c5770, 0x95e284a6, 0x34616705, 0x8b033338, 0x2c1d5c8b, 0xabdb8fd, 0x86bc853e, 0x4e623ea5, - 0xc99b4960, 0x00017f, 00000000 + 0xc99b4960, 0x00017f }, { 0xc5cf39dd, 0x8ac75cc4, 0x4b55fbe0, 0x5a3def8b, 0x601212be, 0x12e48bee, 0xf94796a1, 0xd90f2ff8, 0x4f550343, 0x75266b9d, 0x275c9e12, 0x53533743, 0x67b6e592, 0xd1946ee4, 0x493df6d0, - 0xf165bd27, 0x0000ec, 00000000 + 0xf165bd27, 0x0000ec } }, { @@ -59774,19 +59772,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa7ef7cf9, 0xb921550c, 0xd9b14f56, 0xed22e981, 0x317e8a12, 0x7afbb8c0, 0x36f3f56b, 0x683f3dba, 0xa0749d6c, 0x8acc5d8f, 0xefdb3cb0, 0x40b98a0d, 0xd46b28f7, 0x4563f8f7, 0x53137f5b, - 0xd91256ee, 0x000008, 00000000 + 0xd91256ee, 0x000008 }, { 0x7563dfbd, 0xeb495e0b, 0xcd00b33c, 0x8004f379, 0x324a42b7, 0x10b7264b, 0x646e0de7, 0xfc6db260, 0xc8fc4938, 0x50ea1381, 0xa4f347c0, 0xc2809181, 0x3df75f76, 0xef2e8fb1, 0x710b31bb, - 0x80302e92, 0x00003d, 00000000 + 0x80302e92, 0x00003d }, { 0x1d41d1c2, 0xbfc5d1b9, 0x5900d4ae, 0x892a2ea9, 0x4ae498e0, 0x55c9d52e, 0x5770208e, 0xe49f4190, 0xad5b358e, 0x6619a67a, 0x918479ec, 0xcd88ed48, 0xa0fc84c, 0x87ad5734, 0xe9687aac, - 0xcf663983, 0x000095, 00000000 + 0xcf663983, 0x000095 } }, { @@ -59794,19 +59792,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xae82b0b0, 0x1aef0e2e, 0xc81151e4, 0x62723343, 0xb0101523, 0x5a4745e0, 0x855c07d5, 0x2242b4be, 0x11a6abf0, 0x46d6d65c, 0xdcec9775, 0xe35cdf38, 0xa26d0df6, 0xa78f2717, 0xdb7b58c8, - 0x3583de8a, 0x0001f5, 00000000 + 0x3583de8a, 0x0001f5 }, { 0xc86bcb10, 0x179e8703, 0xc82a85d3, 0xed439b79, 0xffadd8bb, 0xd97bbc8e, 0xcce53b9d, 0x6da2cd00, 0xdbf5eed, 0xe5aa79fc, 0xf7f4cb79, 0xde985174, 0x28869611, 0x17a370ea, 0x86f3eb22, - 0x253cdb6c, 0x00003b, 00000000 + 0x253cdb6c, 0x00003b }, { 0xb36e4fe9, 0xaf27a66, 0xb5a81783, 0x277ecb10, 0x2d04a463, 0x5807efec, 0x7855b1e2, 0xd4c8d40, 0x6d065e62, 0x7effff79, 0x9d3170ba, 0xdf63d63a, 0xd059aa01, 0x9dd460c, 0x84e110f8, - 0xad4a2ab2, 0x00009b, 00000000 + 0xad4a2ab2, 0x00009b } }, { @@ -59814,19 +59812,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4525fa14, 0x3430b0, 0xfea6253f, 0xc4ee116a, 0xf3e3764d, 0xea1b27ae, 0xfd3dc2b5, 0x10ca32c, 0x1450e3f, 0xbad4cd40, 0x5ba9914d, 0x6c8c46d3, 0x3b26b286, 0x75516aae, 0x89007518, - 0x1c863359, 00000000, 00000000 + 0x1c863359, 00000000 }, { 0xfb402288, 0x17f9f0c6, 0x421c5069, 0x10393881, 0x32dc2cf2, 0x2a6e19b4, 0x1f79d6c4, 0x2c3a9e71, 0x81f0514e, 0xad2ae6c4, 0x39005296, 0xac2271c6, 0xa5de98b8, 0xc7048f37, 0xec3ba20d, - 0xc580ffea, 0x0001cf, 00000000 + 0xc580ffea, 0x0001cf }, { 0x77ad9c43, 0xb5b3a4e7, 0xf11db475, 0x8bde9190, 0xfefff119, 0x486a9a7d, 0x39b42827, 0xfc5d9dfe, 0xe3da1d01, 0xccc39fab, 0xb56d3491, 0x4b5215c, 0x7b3f969a, 0xb9f371de, 0x33933ccf, - 0x6649d5ae, 0x0001bb, 00000000 + 0x6649d5ae, 0x0001bb } }, { @@ -59834,19 +59832,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xade6406d, 0x99def33b, 0xf16a3514, 0xa7882379, 0xdccd2ec9, 0x5a5d9648, 0xccedad4, 0x6eea2f9c, 0x35d8fab0, 0xf25ed496, 0x73bac83f, 0xd3e50044, 0xde586826, 0xce7b1e4f, 0xedead4c8, - 0xbbc7f488, 0x000146, 00000000 + 0xbbc7f488, 0x000146 }, { 0x69c25fc3, 0x68711663, 0x2e5859a7, 0x6e3e1518, 0x6625228b, 0xe88e953c, 0x697da3e, 0xc55dee95, 0x1615bf44, 0x7faf1314, 0xbf61ea13, 0xa4a31ed0, 0xf772a727, 0x45c13c2e, 0xd4a2e8d3, - 0xdfb59259, 0x00002e, 00000000 + 0xdfb59259, 0x00002e }, { 0x5e0242d7, 0xc94dbd9b, 0x9366be47, 0x2650210c, 0x8a5ffb71, 0xbd75004, 0x97de51b0, 0xcd7f7394, 0x7bedaff5, 0xd705c265, 0x7f668f1a, 0x97f05a2d, 0x4643e423, 0x8cbe5d71, 0xae3f3292, - 0xba0066d4, 0x000143, 00000000 + 0xba0066d4, 0x000143 } }, { @@ -59854,19 +59852,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfe08ce33, 0x458119c0, 0x19ba2c2, 0x78f27473, 0x29bc35a6, 0x452885d2, 0x61f6e1fc, 0xc0cf1f14, 0x7e895dc, 0xdcd371fd, 0xa195830c, 0xe3ac50e, 0x7d62f774, 0xf57b8dcc, 0xe6b4e7bc, - 0xba6579a, 0x0001cc, 00000000 + 0xba6579a, 0x0001cc }, { 0x54136420, 0xf6f5d1b9, 0x861d5e2e, 0x74232fa9, 0x6d7e4834, 0x44fa873e, 0x55bd57c9, 0x6f4b7017, 0x1f295f08, 0xe1d42ff9, 0xa9b0e1ac, 0x3d639eb4, 0xcb5b1273, 0xaed4e729, 0xb07f2736, - 0xcb0d224d, 0x00013f, 00000000 + 0xcb0d224d, 0x00013f }, { 0x3e6ce561, 0x93220b00, 0xae883224, 0x63f69761, 0xc8bd53b9, 0xc091f91b, 0x48014da9, 0xbdcb62a7, 0x53b4e3cb, 0x4908a924, 0x73955198, 0xa17745af, 0x5a4e2528, 0x9a60cf11, 0x795c8dca, - 0x79daa6c3, 0x00016a, 00000000 + 0x79daa6c3, 0x00016a } }, { @@ -59874,19 +59872,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x83d4498d, 0x7766034a, 0xfe5bd834, 0x4541a87d, 0x1ae97b0, 0x127f8177, 0x4151c954, 0xa36413f4, 0x874efcd4, 0x2505dfa8, 0x7a869924, 0x9274b8dc, 0x575f6e61, 0x69688fa6, 0xc7127b1d, - 0x62dacd6, 0x00003a, 00000000 + 0x62dacd6, 0x00003a }, { 0xfe8feb36, 0x9b753b4a, 0x9fdb2f9c, 0x439a2f26, 0xd954a6ae, 0x5b731929, 0xcc37c09f, 0x53c0b7a4, 0xf94079c1, 0x8a4258e4, 0xeb9560cd, 0xe1930748, 0x24361160, 0xb6bd20a0, 0xa2aa86b6, - 0xa0fe8163, 0x000005, 00000000 + 0xa0fe8163, 0x000005 }, { 0x561ec229, 0x5d42d896, 0x124cc432, 0x154e843f, 0xf39f43a7, 0x3a55361a, 0x728dfbda, 0x77c2e421, 0xd3652bc0, 0x2d36248b, 0x7cf8802, 0xa82f0bfe, 0xa0dcbf9c, 0x92d1b0b1, 0xccd61133, - 0xa9013682, 0x0001e4, 00000000 + 0xa9013682, 0x0001e4 } }, { @@ -59894,19 +59892,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3ab97790, 0xeb886a7c, 0x3d05c88b, 0x591479b1, 0xcc5c824b, 0x6cb719ed, 0xcbe47188, 0xb9872b84, 0xc582ca49, 0xdf923636, 0x51c50c45, 0x316678b9, 0x3c1bf646, 0xef7b58da, 0xabea1d95, - 0x3c0934f5, 0x00008d, 00000000 + 0x3c0934f5, 0x00008d }, { 0x64305888, 0x40601171, 0x90a2c87e, 0xb1bb0afb, 0x8c4b46e7, 0xb1333652, 0x6d0ca3c0, 0x2fe0b210, 0x5d0db1bb, 0x2c195e25, 0x6da73e69, 0xe4f86ef, 0x1dc88691, 0x5206ff7b, 0x5a27b3a5, - 0x94fbfff2, 0x00018e, 00000000 + 0x94fbfff2, 0x00018e }, { 0xc83d5d95, 0xdd24afb6, 0xb7687a30, 0x780903a, 0xd59d74a5, 0xc4d5dc0f, 0xd9d8bc77, 0xea7a06f1, 0x309be3a0, 0x72caa0a2, 0x6b0bb324, 0xc6d0a335, 0x4ed62c6f, 0xf9b70a2d, 0xaa1fdc3f, - 0xb4ddc021, 0x0001fb, 00000000 + 0xb4ddc021, 0x0001fb } }, { @@ -59914,19 +59912,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7f57b6f7, 0xdddb8f46, 0x5c299428, 0x9168817a, 0xda2999b0, 0x13d2ac64, 0xff93b13f, 0xaf50d1df, 0xb5f61107, 0x46a95d3e, 0x880457b7, 0x441f5be0, 0xe5f852e8, 0xa2890296, 0x852b3b1, - 0x5d7ff003, 0x000193, 00000000 + 0x5d7ff003, 0x000193 }, { 0xbab6dd20, 0xa2f08458, 0x4dbf597, 0xb0f324f3, 0xeca63d12, 0xa9ce252a, 0x25cac7a1, 0x3a7ec9e7, 0xf9786a, 0xcc63060c, 0x637c486b, 0x2ad1858a, 0x374d53db, 0x6e265f16, 0x81976844, - 0x2e458041, 0x00009f, 00000000 + 0x2e458041, 0x00009f }, { 0xddd650c0, 0xad7d2f0b, 0x4da211db, 0x5623edf7, 0x4a3a76d3, 0x5cf7f156, 0x3ed6d49c, 0xc8444155, 0x980d7483, 0x651a0c1c, 0x9aecd788, 0x740b2d96, 0xedfb8885, 0xf126c1da, 0x8242815e, - 0xc33bd69c, 0x0001c4, 00000000 + 0xc33bd69c, 0x0001c4 } }, { @@ -59934,19 +59932,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5269ebc5, 0x4947077a, 0xbb4e899c, 0xaca5a28b, 0x8c68222e, 0xb0045047, 0x7ae4c3e4, 0x8d7b69b4, 0x51e91b75, 0xdb575fe, 0x372dc04e, 0xd413f2c8, 0xa3611d27, 0x715fac6, 0x6d2bb54e, - 0x98ff59aa, 0x0001dd, 00000000 + 0x98ff59aa, 0x0001dd }, { 0x2c027b07, 0x871f01d4, 0xe50f077b, 0x91380f2d, 0xeeda088e, 0xf48c3d09, 0xa0c0b59a, 0xbc8e2acb, 0x49615a1c, 0x597d8a42, 0x86c5e250, 0x922da154, 0x733fc2e7, 0xfa78dc15, 0x688d2fa4, - 0xa8e4b8d4, 0x0001e6, 00000000 + 0xa8e4b8d4, 0x0001e6 }, { 0x96f3e615, 0x41d8441, 0xeab65793, 0x67d97850, 0xc87fbd65, 0x7fffc3b7, 0x9e03df70, 0x31fb5db, 0x108a5d0b, 0x6e7e197b, 0x3b9ff46, 0x77a777cf, 0x406a8a34, 0x3fdb0e80, 0xb2b378bf, - 0x1973c123, 0x000154, 00000000 + 0x1973c123, 0x000154 } }, { @@ -59954,19 +59952,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfe284b2, 0x6ce289bb, 0x31b6b297, 0x5d6ec524, 0xb461f63d, 0xd7a8b851, 0x4281c4f4, 0x364593fa, 0x538a4cc2, 0x24b9ffc5, 0x3793e650, 0x6b8f00b5, 0x4d82862b, 0x3b9044b2, 0xd1f5f621, - 0x7754ab2b, 0x000069, 00000000 + 0x7754ab2b, 0x000069 }, { 0x60f22ea3, 0xfae832e0, 0x2d920cc2, 0x8f5a97d9, 0xcce6c9d4, 0x8721a1ec, 0x9f5a9a5b, 0xf58b854a, 0x673d6ee2, 0x5d98c71e, 0xa6b4520c, 0xa941a6eb, 0xc7755143, 0x6b180818, 0x824f68a0, - 0x79c7e49d, 0x00005f, 00000000 + 0x79c7e49d, 0x00005f }, { 0xe5047c58, 0xb786ab2c, 0xe07d70d5, 0xd80f1708, 0x8b3731b9, 0x4a26deef, 0x75c66c53, 0xaac00a00, 0x66f041d5, 0x7adcb7d6, 0xcb6fd87c, 0xcf93fd64, 0xff5cd5e7, 0x7247ef37, 0xf3242489, - 0x358e9425, 0x0001d5, 00000000 + 0x358e9425, 0x0001d5 } } }, @@ -59976,19 +59974,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7f4e0162, 0xf95b6557, 0x9d81f97, 0x95cc2b3a, 0x155d674d, 0x1d4cbbc1, 0x995a063a, 0x6abea12, 0x121c83af, 0xa1008767, 0x13fb5ed4, 0xc0aa5eaa, 0xbf435510, 0xcab20d85, 0xa6e539be, - 0x555c98ef, 0x000027, 00000000 + 0x555c98ef, 0x000027 }, { 0x14a6f00e, 0x7cdfc1d7, 0x8793f10b, 0x9bd2d460, 0xeb3317f0, 0x29831337, 0xe0312f1e, 0xf6e9b06a, 0x4c8c172d, 0x9d1332c1, 0xd523425f, 0xecaa7f09, 0x26263759, 0x1f777949, 0x48eea12e, - 0x21eec735, 0x000043, 00000000 + 0x21eec735, 0x000043 }, { 0xad5b12d, 0xfbf87cc9, 0x3483787, 0x4076dead, 0x697aee35, 0x4d59295a, 0x206ca176, 0x8d32daaa, 0x5a783a9a, 0x1002ede7, 0xe149ea8c, 0x9b0059f, 0xd5c5f8a9, 0xb92ec0d1, 0x36fbbf0c, - 0x7f31d10f, 0x0001f3, 00000000 + 0x7f31d10f, 0x0001f3 } }, { @@ -59996,19 +59994,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7e96556, 0x81149d2d, 0xcc32e5ba, 0xefa3151d, 0x1085ddf2, 0x791f1012, 0x72bcc370, 0x73707aa8, 0x16d26991, 0x2a43b2c4, 0xcc22eb84, 0xb68727d3, 0xdc5700e6, 0x68b793ac, 0x914d750b, - 0xe309041e, 0x000198, 00000000 + 0xe309041e, 0x000198 }, { 0x720b2ef9, 0x32050e84, 0xa2bb73c0, 0xb19308a, 0xf47dfef6, 0x947fbcfc, 0x26f2e80d, 0xe4ab3d56, 0x985bed64, 0xb08b2f4b, 0x5afbf613, 0x2daccb9e, 0x545b9770, 0xb6aefc65, 0xc560907e, - 0x115bcb34, 0x00018e, 00000000 + 0x115bcb34, 0x00018e }, { 0x9715a9d7, 0x54c5e7d3, 0x8c4d8a2c, 0x2fb84f42, 0xf42c6c20, 0xb51c571d, 0xd9939b6e, 0x2dc4fe27, 0x4a3badc9, 0xd73ba0b8, 0x666f4270, 0x71a72469, 0xcac96c22, 0x148829d, 0x822dd7cd, - 0xea5f97b2, 0x000187, 00000000 + 0xea5f97b2, 0x000187 } }, { @@ -60016,19 +60014,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x96fa271e, 0xa34ddd8, 0x8a220851, 0x42cc1130, 0x2c0c4a6c, 0xde694dc, 0x23f39d31, 0x72825a34, 0xf99e27c8, 0x66bf0c9d, 0x1a9a7579, 0x811812b2, 0xfc1cac25, 0x6d2848c, 0xdb45aa48, - 0x99b787af, 0x0000c8, 00000000 + 0x99b787af, 0x0000c8 }, { 0x526be34d, 0xe8c19ac3, 0xe4629f0d, 0x9cdc9099, 0xfe0201c2, 0xe1b29b45, 0xbf49528, 0xe5257e85, 0xea7bc458, 0xd756793f, 0xeea333ff, 0x961363be, 0xe9ed1822, 0xd71730a0, 0xe74b60c7, - 0x87cd9aa7, 0x000039, 00000000 + 0x87cd9aa7, 0x000039 }, { 0xdb5f6941, 0x9a990e0, 0xb3400375, 0x85fdb451, 0xb425befe, 0x9a1fbc77, 0x396661e, 0x847b5992, 0xc6568eb, 0xffcb5637, 0xf773772e, 0x36e78512, 0x2a92ee7e, 0x4374e9f5, 0xc945a9d5, - 0xcb9e0c7c, 0x000132, 00000000 + 0xcb9e0c7c, 0x000132 } }, { @@ -60036,19 +60034,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x45e2c172, 0xea25c05e, 0xfef9a280, 0xce7a8a80, 0xed15c363, 0x57af6935, 0x34b023a2, 0x38a572dc, 0x51888c22, 0x40c9221a, 0x9e532860, 0xbd34717d, 0x538c7382, 0x35560f08, 0xc487b421, - 0xd7953ef, 0x000023, 00000000 + 0xd7953ef, 0x000023 }, { 0xab6c590f, 0x2ff6cede, 0x9c4bd456, 0xfed490c5, 0x9d524f61, 0xb8999518, 0xde6fe5fc, 0xdf1a8be, 0x9f1c67f, 0x4fa3da57, 0x870e7d32, 0x5f5ecb1a, 0x83f52dba, 0x3e13580d, 0xd3dd3d2c, - 0xc1165829, 0x000101, 00000000 + 0xc1165829, 0x000101 }, { 0x5355887d, 0x32372110, 0xb1d03c55, 0x9ae0beab, 0xea59436a, 0x7d9635df, 0xae6d3634, 0xd122ea60, 0x71bd454d, 0x2d9b448b, 0x8e3a1365, 0xa9a67da6, 0x51d87ad9, 0x9d6884c9, 0xb859e240, - 0x2552328d, 0x00001b, 00000000 + 0x2552328d, 0x00001b } }, { @@ -60056,19 +60054,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x85b7a7e4, 0x2c008e89, 0x78e45231, 0x2818e59f, 0x6c8e50b5, 0x4ebb0aef, 0x5708d841, 0xed768330, 0x66ccbc90, 0xca38ea52, 0xc4fa71fc, 0x78ed8df5, 0xd295b5df, 0xf41869a4, 0xd48b0b10, - 0x37dfd7a7, 0x0001e8, 00000000 + 0x37dfd7a7, 0x0001e8 }, { 0x5663fe0f, 0x95365a98, 0x47100939, 0xa1b0d13b, 0x77ba28, 0x111c3c8c, 0x7d14103a, 0x582ec8d0, 0x1cb90f8a, 0x4c241919, 0x83448648, 0x2396e17f, 0xb883119f, 0x52de4d06, 0x3400e000, - 0x74161829, 0x0001dd, 00000000 + 0x74161829, 0x0001dd }, { 0xf546bf82, 0xd5df75cf, 0x79d6d908, 0x8e16f32, 0x6edfdf89, 0xc3869e97, 0x9974609f, 0x6ae0ba8b, 0x18ce367c, 0xb2baa02c, 0x2439c172, 0x27824a2a, 0x3ffcaf9b, 0x470af7ea, 0xd8b6f264, - 0xa47c41d6, 0x00009c, 00000000 + 0xa47c41d6, 0x00009c } }, { @@ -60076,19 +60074,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb28138ed, 0x1390b208, 0x94e7136, 0xbe65f561, 0x202ba3f8, 0x21adcab4, 0x9f0a7ce, 0xc03918f1, 0xc48870d5, 0x34dbce57, 0xed1bfd5d, 0x7729f36a, 0x77e22b77, 0xad2460c2, 0x3155c8b8, - 0x1bf6e69f, 0x0000ed, 00000000 + 0x1bf6e69f, 0x0000ed }, { 0x89e5636f, 0xfa4454e8, 0xe1d956c2, 0xb83d4f75, 0x2f44ff06, 0xffe1f93b, 0x4fefdb80, 0x3398a318, 0xf1579dfc, 0xb31da78e, 0x964515a2, 0x82a8bfa4, 0x59b2b2ab, 0x3128aec0, 0x55ba271f, - 0x6015ee, 0x0001bf, 00000000 + 0x6015ee, 0x0001bf }, { 0xa0b95521, 0x73265e3c, 0x26ae6d81, 0xc24bbc54, 0x48a2a78, 0xbdda227b, 0x59813c1a, 0x4475f52a, 0xcc651bba, 0x929d18f0, 0x54f9b8e1, 0x8a2ab6fd, 0x5cde49af, 0xa797bf63, 0xf9fb0fd3, - 0xf25a1e16, 0x00006c, 00000000 + 0xf25a1e16, 0x00006c } }, { @@ -60096,19 +60094,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1dd19dd6, 0xcbce32f8, 0xea0dfe8f, 0x3dcfb16, 0x225901c4, 0x96f881bf, 0xe4b98a0f, 0xcccbc357, 0x78bbd591, 0x75d6dfac, 0xa27c30d4, 0x773128ac, 0x814e00ee, 0x4fe32783, 0xa0824396, - 0x7470097b, 0x0000f7, 00000000 + 0x7470097b, 0x0000f7 }, { 0x33f0c125, 0xfde339b5, 0x6b5fa578, 0xb9ffd8ab, 0x3d2f1261, 0xf2f71791, 0x5e2f0f3b, 0x6081f5b2, 0x1196ad02, 0xec438d0c, 0xf05ff5a1, 0x9327f463, 0x63e9201c, 0x97a58793, 0x14c03b66, - 0x66b8a172, 0x00016b, 00000000 + 0x66b8a172, 0x00016b }, { 0x13af6597, 0xbf961b24, 0x7d99b8bc, 0x71be9bf9, 0xd638b742, 0x6dafdd33, 0x897fb7ca, 0xd6689f90, 0x5eadfddc, 0xe399be6b, 0x36a42d0, 0x6655c72b, 0x970b7358, 0x7aa03046, 0x1301b24e, - 0xcc1f3700, 0x000084, 00000000 + 0xcc1f3700, 0x000084 } }, { @@ -60116,19 +60114,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaef4e8e1, 0x2f70e2ee, 0x8e0937d0, 0xb0cf420a, 0x8549c1f3, 0x3e3b6f87, 0x2f50eae0, 0x62cbc24e, 0xab49fd43, 0x7c04507f, 0xabd7f9d7, 0xaf3bca2f, 0xafdac192, 0xec219527, 0xc2941843, - 0xa9e0a6eb, 0x00001f, 00000000 + 0xa9e0a6eb, 0x00001f }, { 0x3e9383d5, 0xcbc02287, 0x93384648, 0x69b4adaa, 0xa94d4e92, 0x48f1c8b8, 0x4da139e7, 0x62858557, 0xb7d2f0c7, 0xc173be97, 0xf06471e4, 0x2df00712, 0x4002f94e, 0x920f6871, 0x2138e2e4, - 0x2582b3a, 0x00013f, 00000000 + 0x2582b3a, 0x00013f }, { 0xa842a0ad, 0x6613e71d, 0x94e59635, 0xe18837c5, 0xbf20c3b9, 0x37dcd556, 0xcc480ac6, 0xc52f33f5, 0x408f236b, 0xfc7e1d79, 0x4cc2da34, 0xdc309382, 0x6089f8cf, 0xb3f724bc, 0xa560735e, - 0x6d063d1f, 0x0001bb, 00000000 + 0x6d063d1f, 0x0001bb } }, { @@ -60136,19 +60134,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe868ec87, 0x2cfd3365, 0x3f15ca47, 0x54532fe, 0x48a5348e, 0xe60a9630, 0x399c8fda, 0xb29ea4ac, 0xaac9e8f6, 0x3b8aa631, 0xbd6774de, 0x4b7182e0, 0xad1ee500, 0x8fa650bb, 0xd9186a75, - 0x6258fc01, 0x000058, 00000000 + 0x6258fc01, 0x000058 }, { 0xccda0dc3, 0x9cd4de61, 0x38e64baf, 0x256024dd, 0x55197b38, 0xa1d31b6b, 0xe76ef91f, 0xeb94c9e3, 0x511e50fa, 0xccf71ec3, 0x25cf683b, 0xd3c540cb, 0x4136a89c, 0x3cb3c7ae, 0xcd917ad0, - 0x9d4420ef, 0x000004, 00000000 + 0x9d4420ef, 0x000004 }, { 0xd238a657, 0xa056dc1c, 0x4ad0c3ae, 0xde44678f, 0x7f58a5f1, 0x8be4f6a3, 0xa6c3c224, 0x3ea53e9d, 0x263c9513, 0x25b89b86, 0x8755e883, 0xd771e6d2, 0xa26300e1, 0x23746106, 0x22178a97, - 0xbef959a8, 0x0000f5, 00000000 + 0xbef959a8, 0x0000f5 } }, { @@ -60156,19 +60154,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf4c7a3e8, 0xba1f85c2, 0x5679d89e, 0xf1e3252e, 0x88023089, 0x9025303f, 0x30817587, 0x2f829ce3, 0x2d42fcc6, 0x23e67a61, 0x871b9199, 0x1151f3a6, 0xf37430ff, 0x7098070d, 0xea624313, - 0x821f9ed2, 0x000097, 00000000 + 0x821f9ed2, 0x000097 }, { 0xcde7a864, 0xd885066d, 0x64f572a9, 0xc642c7d9, 0x4d86857e, 0x4d448903, 0x1fd87403, 0x28159d6c, 0xd0791056, 0x39deecf7, 0x872c119f, 0x485b3fa6, 0x56159619, 0x13551085, 0xc239ef54, - 0x84e24b43, 0x000052, 00000000 + 0x84e24b43, 0x000052 }, { 0xfabd648d, 0xf2c7ffee, 0xc2bc587a, 0xd51c418c, 0x3e32e66d, 0xe4ad701b, 0xae4f7f65, 0x5382a8e1, 0xc04ef998, 0xfce4c06d, 0x2b620ba2, 0x6f7e852c, 0xeb7c3e2c, 0xc183badc, 0x56928af1, - 0xc9375443, 0x0000ad, 00000000 + 0xc9375443, 0x0000ad } }, { @@ -60176,19 +60174,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9aa3c07b, 0x8780fed7, 0xc4ab513b, 0x44864364, 0x21bac1c7, 0x33fe9668, 0xaecc712b, 0x70187d67, 0xa9a8ba39, 0xfa967b9e, 0x6f858032, 0x31922ce4, 0x34f3a480, 0x7c6e3968, 0x7f38a33, - 0x33001ddc, 0x000023, 00000000 + 0x33001ddc, 0x000023 }, { 0xcf11bcd2, 0x3c87740d, 0xfe4ef7cf, 0x922ace6f, 0x69f5a1c6, 0xad4ca351, 0xc976dfa3, 0x3b4dd7a7, 0x261acea3, 0x51e765d0, 0x9e946213, 0x7c4d31e3, 0x1267e40e, 0x266e692d, 0x6c7413a6, - 0x7896ec1a, 0x000170, 00000000 + 0x7896ec1a, 0x000170 }, { 0xbcbb948c, 0x297add7e, 0x359b76cb, 0x750a203, 0x9112b052, 0xf444dec6, 0x462052b3, 0xb22fed09, 0x4ce62065, 0x4f56088b, 0x80137c5a, 0x2c52da9f, 0xd74b158f, 0x5b13a444, 0xa76402c1, - 0x60ff847f, 0x000025, 00000000 + 0x60ff847f, 0x000025 } }, { @@ -60196,19 +60194,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x700ebbef, 0x7c549f3e, 0xb2592464, 0xa676e77c, 0x3193643c, 0x6f2ba2f5, 0x5a45f47f, 0xe5c78ea3, 0x19a03940, 0xf9d9244b, 0xbe3e4d1a, 0xf437853a, 0x2b1071bb, 0x6572f0c, 0x7237b9a6, - 0x9f4d0267, 0x000073, 00000000 + 0x9f4d0267, 0x000073 }, { 0xe7aac1a7, 0x341cc142, 0x9d209bf6, 0x71a0696a, 0x11eda624, 0x9c4a6cf9, 0xfa03753, 0x3625847, 0x9afadf8a, 0xbbaf3e37, 0x32b89f63, 0xb51ce9c4, 0xef94cdf6, 0xfb309c39, 0x6770a123, - 0x880568, 0x000126, 00000000 + 0x880568, 0x000126 }, { 0x393f96fb, 0xdf0ed007, 0x5f98714, 0x35fd2953, 0x20b52b96, 0xc3e72f84, 0x238d4f5b, 0x9deb4cf8, 0xb9d4a0b7, 0xe6a0e949, 0x707a753b, 0xaa1a3f6, 0xe1fd6cda, 0x99de798e, 0x9f798a33, - 0x58d35e6e, 0x000091, 00000000 + 0x58d35e6e, 0x000091 } }, { @@ -60216,19 +60214,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf230bce, 0x1c70b612, 0x895bcf65, 0x1146295a, 0x9fad5019, 0x3c932dfe, 0x8fe93a30, 0x84ece384, 0xc5acd7c4, 0xcd236ca9, 0x23d0cc71, 0x895db266, 0x51f60fcb, 0xd2d64524, 0x8bcc64d3, - 0xe3f6b651, 0x00008b, 00000000 + 0xe3f6b651, 0x00008b }, { 0x4d1c01ab, 0xf8c6c063, 0x62ff4968, 0x5064ffd2, 0xf8349fb2, 0xf5885b87, 0xb88764a1, 0x7967be10, 0xf127ba14, 0x80b6dad2, 0xb13e34e1, 0x9742f01, 0x6bf9f1d6, 0x7dfa82a7, 0x95cb0acf, - 0x8bfbbb57, 0x00003d, 00000000 + 0x8bfbbb57, 0x00003d }, { 0x2e91eec1, 0x1189953f, 0xa10fd88f, 0x461f8118, 0xf3dc8f21, 0x4e824983, 0x74ab7b47, 0x3fd0347d, 0x5db13ca2, 0xb5fe3ffd, 0x2d6bf11e, 0xf534a98f, 0x56bcb9e1, 0x782f3f8, 0xa78a55b0, - 0xca39d0bb, 0x000177, 00000000 + 0xca39d0bb, 0x000177 } }, { @@ -60236,19 +60234,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe26b73f6, 0xb6a56d51, 0x35eee870, 0x806d1371, 0x3f6acd80, 0x55a0ced5, 0xab6ff527, 0x7314eddf, 0x9f56c80, 0x2e0a70af, 0xc4dee65c, 0x3ceda63d, 0x1dbedf5f, 0x72ecbfd5, 0x1e571095, - 0xca8694e2, 0x000039, 00000000 + 0xca8694e2, 0x000039 }, { 0x24b88cb8, 0xf53dee4c, 0x9ad110, 0x6eac9352, 0xfd63d364, 0x44b6b686, 0xdfeb5a96, 0xefdb18fa, 0x6b9c7aec, 0x99c5add, 0x6b59f385, 0xa6a97321, 0x8ed28e46, 0xf833504b, 0x2f065fc8, - 0x757eb572, 0x000041, 00000000 + 0x757eb572, 0x000041 }, { 0x84b306a1, 0x226d224b, 0x48034e33, 0x6ee6885a, 0x3d2f0ec0, 0x2097b08e, 0x30f34dd3, 0xbf7d80ce, 0xb032bcbd, 0x9662fdef, 0x2d4327c7, 0x9482ff17, 0x8bbafbc9, 0xc939dca0, 0x52945419, - 0xa7eeb6b8, 0x00019b, 00000000 + 0xa7eeb6b8, 0x00019b } }, { @@ -60256,19 +60254,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb98ea977, 0x116e7532, 0xdd1b92fb, 0x17a9cb27, 0x1ac99be7, 0xd520025c, 0xcde3dfb4, 0xbee42415, 0x666d48d3, 0xb39ef93e, 0xad92b21b, 0x7343e548, 0x10a15098, 0x1b8c5760, 0x4cbd4111, - 0xd1cd9ea6, 0x000165, 00000000 + 0xd1cd9ea6, 0x000165 }, { 0x1bad023c, 0x29d84e5d, 0x675383c3, 0xe5cb4bba, 0xaf744257, 0x81bab1d0, 0x97129b79, 0xeb5de81f, 0xb7e3baff, 0x3a37172f, 0xac4cdbe0, 0x34743ef2, 0xb5c16cb3, 0x130d8592, 0x575e1ca5, - 0x5a35a40f, 0x0000be, 00000000 + 0x5a35a40f, 0x0000be }, { 0xb07f5abc, 0x8279e007, 0x1e87bda4, 0x87648ce, 0x1d39038d, 0x8da56b8c, 0xb5bdc4a8, 0x76d7a5fc, 0xb2decbea, 0x9938034b, 0x6c4717da, 0xdabee992, 0x12dd3f20, 0xa09f24af, 0x3275104, - 0x52ba22ef, 0x000102, 00000000 + 0x52ba22ef, 0x000102 } } }, @@ -60278,19 +60276,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x96d699a0, 0xb8c7a48e, 0x442dd978, 0x8e786bbb, 0x601b7c8b, 0x6812a57c, 0x54d970c4, 0xf8a6e461, 0x174d0681, 0xa537d7a2, 0xcb1e3c48, 0xc9434144, 0x113d80b4, 0x1babe14c, 0x3bfd6049, - 0x97a62104, 0x00008d, 00000000 + 0x97a62104, 0x00008d }, { 0x29593331, 0xf51554bb, 0x3808a9db, 0xf5f856b4, 0x549cd161, 0xc7810e02, 0xd9b07645, 0xfc1726ef, 0xe39f6eb6, 0x7635c379, 0xaa94a79, 0x75e793aa, 0xcb680ab9, 0x95f85594, 0x4a3abb03, - 0x17cd8169, 0x000131, 00000000 + 0x17cd8169, 0x000131 }, { 0x8b568c01, 0x7b86c01b, 0xb5f3ee04, 0xc91e7189, 0x47438d98, 0x4c50d5b8, 0xa7c46220, 0x2f1e819b, 0xde25cd95, 0xb321667f, 0x301742a8, 0xfb6fc88f, 0xe2f81101, 0x401082fc, 0xb0cc1918, - 0xe62b0d75, 0x000123, 00000000 + 0xe62b0d75, 0x000123 } }, { @@ -60298,19 +60296,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x38454ee, 0x9dbd36b3, 0x1012fdd1, 0xf4c7c365, 0x500aaf01, 0xc6d73824, 0x2a8370d1, 0xd2032db6, 0x42c3cab, 0x59e4c42f, 0xb3ddc261, 0x31df6672, 0x571f2394, 0x218d2a52, 0xd566d6b8, - 0xfcaeb9fb, 0x00002d, 00000000 + 0xfcaeb9fb, 0x00002d }, { 0x8359d343, 0x8926f642, 0x38e06276, 0x1b058f42, 0x267fd044, 0xfa7d2665, 0xb8f4f26d, 0x29a64d94, 0x2915eb1c, 0x8921672, 0x1d6d6b40, 0x51dacdbf, 0x5d57b29, 0xd33b43ee, 0xf4a3bdf0, - 0x6af29c73, 0x00006e, 00000000 + 0x6af29c73, 0x00006e }, { 0x771d3d63, 0x5006e687, 0xc41cbb7, 0x73a1f4a, 0x3ae2a74e, 0xdec8572f, 0x3b5dfafc, 0x243e893d, 0x5e5fc007, 0xf9e58748, 0x70ba5ebc, 0xc0ed986c, 0xc3e3044d, 0xa240da8a, 0xc1f51047, - 0x778b170, 0x000062, 00000000 + 0x778b170, 0x000062 } }, { @@ -60318,19 +60316,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd5ed7e9b, 0x2fe2f276, 0x664cbfc5, 0x29cc9f52, 0xa8840905, 0x72117f7f, 0x5108fc83, 0x7e9777b, 0xba16fef6, 0x539417f2, 0x7e26912e, 0x2c75e61, 0x3dee8cd5, 0xee3b0b83, 0x5ba4b714, - 0x69efb75d, 0x000166, 00000000 + 0x69efb75d, 0x000166 }, { 0x53135148, 0x49c4e8ed, 0xe86ddca3, 0x3cecf508, 0x22cc7c85, 0x4f0dc1bb, 0xd7c47521, 0xed0987bb, 0x5df462bb, 0xc533b28f, 0xfceecd3a, 0x12b4ff8a, 0xe9d241ae, 0xcc8e2a5f, 0x4dff980f, - 0xaa1bfb52, 0x0000ce, 00000000 + 0xaa1bfb52, 0x0000ce }, { 0x584f9cc7, 0xed7506b0, 0xc6ec4494, 0xe200d422, 0xc2f83646, 0x91044f42, 0x374a99f2, 0xb02dec44, 0x3cb50bcb, 0x54b17efb, 0xfc02953, 0x6499843d, 0xa3df7fc1, 0xe95c56ae, 0x18b03a04, - 0x108c3b96, 0x000131, 00000000 + 0x108c3b96, 0x000131 } }, { @@ -60338,19 +60336,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x68194df0, 0xe50018b2, 0xe1f19cd9, 0x1edac53d, 0x7aa5653c, 0x48f51a89, 0x6972cbe8, 0x2b2a973, 0xdddc39a7, 0x5d276fd3, 0x6be223fe, 0x515f9ce7, 0xd8237ac6, 0x67f6a790, 0xe271a204, - 0x982d8063, 0x000109, 00000000 + 0x982d8063, 0x000109 }, { 0x921be1af, 0xa657098d, 0xd1bbf271, 0xfbed3f04, 0xdc897032, 0x6fa6576e, 0x4b1ed548, 0x60c74873, 0x233ba131, 0xbfb33aa, 0x9702f5e4, 0x79657e2e, 0xe8fd59a, 0x94e1f72b, 0x16d2bd47, - 0x6de92d29, 0x000030, 00000000 + 0x6de92d29, 0x000030 }, { 0xd41a73da, 0xf755cd56, 0x58e79ad3, 0x1db135c3, 0x53bf4055, 0xb513e8cb, 0x607574b7, 0x55e20369, 0x8bdd7a92, 0x15c62792, 0xc78ce2dc, 0xc95b9357, 0xff0e82bc, 0x336c5e00, 0xa34093ad, - 0x1814bb1c, 0x00003a, 00000000 + 0x1814bb1c, 0x00003a } }, { @@ -60358,19 +60356,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7e178ed7, 0x86fe92ae, 0xc8ec3648, 0xd752b898, 0x7fb16af5, 0x99b8b545, 0x18f67b1a, 0xa5525edd, 0x6fa83b03, 0x726f715a, 0x1481ad9f, 0xcb26d116, 0xa4c31ba2, 0xe6686ba1, 0x22712d1, - 0x26f2391d, 0x000127, 00000000 + 0x26f2391d, 0x000127 }, { 0x9ec032ca, 0x5d0919e1, 0x4d81ec81, 0x99e80743, 0x8af85750, 0x7218d147, 0xf683e286, 0x261addf2, 0x7631a897, 0xba0b38eb, 0x9095030e, 0x8d275ecf, 0x2aa4f9d7, 0xd75343bb, 0xcf8916dd, - 0x2c54c42d, 0x000169, 00000000 + 0x2c54c42d, 0x000169 }, { 0x5961cea8, 0xe3e5c0ad, 0x9337cc85, 0xd85e55a3, 0x61a3e056, 0x4a0eba20, 0xf9c3a0d7, 0xfe704c51, 0xa77e5a4f, 0x4c8224cb, 0x72926c6b, 0x57592331, 0xcde7593b, 0xeb09aaa2, 0xdcd32881, - 0x2b1c415f, 0x000117, 00000000 + 0x2b1c415f, 0x000117 } }, { @@ -60378,19 +60376,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1100835a, 0xffdf0a18, 0xa7c9cd10, 0xd87900a1, 0xa1e4547c, 0x25e929ae, 0xeea755cb, 0x9f7776cc, 0x85b753f, 0x5802c268, 0x827ad621, 0x5e47889a, 0x5fc822ea, 0xf7bd2959, 0x68e99890, - 0x50a345dd, 0x000035, 00000000 + 0x50a345dd, 0x000035 }, { 0xcc97fe1e, 0xebac6ae8, 0x67079b49, 0x33de7267, 0x80942f7f, 0x9aa6bfd, 0x2ee62b1, 0xa8023d5e, 0xa87efbf3, 0xe06a54a5, 0x3d8bcf57, 0x9cc1e56b, 0x6cae7672, 0xf5147bf6, 0xe3d71eee, - 0xfc814fad, 0x0000af, 00000000 + 0xfc814fad, 0x0000af }, { 0x78b078bc, 0x765fd850, 0x98d982f6, 0xa1b45612, 0xaac67fb4, 0xcb51f77, 0x426e01e1, 0x93676ce7, 0x5f9475df, 0x700331de, 0xf60024ad, 0xbac55f0, 0x587ac379, 0x67abd292, 0x75950d27, - 0xbc418240, 0x000021, 00000000 + 0xbc418240, 0x000021 } }, { @@ -60398,19 +60396,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x83379fb0, 0x8eed1d46, 0xb03b4de3, 0x863e47b3, 0x4c600941, 0x9f8ce510, 0xa199c61d, 0x824d298, 0xdd57a931, 0xd4782d45, 0xd18a29e5, 0x11fc71e1, 0xddcaed3f, 0x5d6ed61c, 0x5d6a5562, - 0xbb5c4fe2, 0x000100, 00000000 + 0xbb5c4fe2, 0x000100 }, { 0xe02e8a50, 0xfcf5dba5, 0x3aaf3f87, 0x77a4150e, 0xd3467d00, 0x2412fe9c, 0x9bfb1ee6, 0x29fdc4e7, 0x62773d33, 0x76fabf42, 0x7dcda91b, 0x2085df39, 0x6f287bb5, 0x5250c831, 0xa7dbfc91, - 0x605c38a0, 0x00008b, 00000000 + 0x605c38a0, 0x00008b }, { 0x91601021, 0x6c209e76, 0xe51b34fa, 0xa305dc97, 0xc768ad34, 0xac9045d4, 0xd5e3a3b4, 0x3de3cda4, 0x6e659896, 0x57792a5f, 0x7ca3855a, 0xec359d80, 0x603ae6d3, 0xb743ffe0, 0x6ec24b9, - 0x8ae3d182, 0x0001c7, 00000000 + 0x8ae3d182, 0x0001c7 } }, { @@ -60418,19 +60416,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5f4aac2c, 0x890ad98, 0x70348a3d, 0x6d520da5, 0xf9859595, 0xe4110ec9, 0xbd2c752f, 0x1822b09f, 0xe1baa079, 0x70c626d9, 0x6851ae2a, 0x3c946e00, 0xc4f40bf6, 0x31ee321e, 0x32cde0fa, - 0xe72c0ad1, 0x000032, 00000000 + 0xe72c0ad1, 0x000032 }, { 0xf41674bc, 0x7d7b4532, 0xb632f46c, 0xbbab2fc0, 0x5f11734c, 0xbba977d5, 0x1cb120f5, 0x81190b37, 0xe5d09469, 0xcf63cd9a, 0xfbe2d6b1, 0xa076116f, 0x4066ff2a, 0x40ef4f1b, 0x833ecfe7, - 0x3c330d0a, 0x0001fd, 00000000 + 0x3c330d0a, 0x0001fd }, { 0x998cc57c, 0x92f918c0, 0x717b2491, 0x1c77e386, 0x74d890a0, 0x52dd4add, 0x976f9049, 0x45f76302, 0x2447e100, 0x3237631f, 0xc785eeb8, 0xbde6035, 0xee5925c1, 0x4969b861, 0x3594dfa3, - 0x88060567, 0x000081, 00000000 + 0x88060567, 0x000081 } }, { @@ -60438,19 +60436,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9f87e3c2, 0x239ba6a1, 0x98dbf038, 0xaeb7e3d6, 0x2fb8bd0c, 0x2bcfd450, 0xb9451782, 0xbdb92ce1, 0xd693ea67, 0x6d2d4da9, 0x65198a5f, 0x84dc5259, 0x2391e79d, 0xc85d8aba, 0xa5a17d11, - 0x74bf1008, 0x0000ea, 00000000 + 0x74bf1008, 0x0000ea }, { 0xe08e36e5, 0xffb19453, 0x612a1c9a, 0x4019dffd, 0x55d98814, 0x65df8475, 0x18b011c7, 0x36940ef0, 0xabb26201, 0x519e6019, 0x99f19f78, 0xdfdb3e1e, 0x340fa32d, 0xbcdd7dbb, 0xc89d006, - 0x7055c1bb, 0x000075, 00000000 + 0x7055c1bb, 0x000075 }, { 0x5df80960, 0x51383c0c, 0x26f5878c, 0xe59b34a4, 0x145f5ff6, 0xa595f015, 0x73f2ad98, 0x74f3b7a3, 0xb14e8a89, 0x74c93138, 0x5cd13945, 0x6aa69bb5, 0x7ce09c07, 0x2a3a821a, 0x39dfdb8b, - 0x47688058, 0x0001b9, 00000000 + 0x47688058, 0x0001b9 } }, { @@ -60458,19 +60456,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0fde9f6, 0x3562336d, 0xcc914e4e, 0x42930500, 0x48c19b7a, 0xd1050a55, 0x99eeacef, 0x5ba00a58, 0x610c68ff, 0x2981d461, 0x3b709e49, 0xb30c8156, 0xe90c8b85, 0xcf300b56, 0xebaada72, - 0xa8e27b2e, 0x0001ba, 00000000 + 0xa8e27b2e, 0x0001ba }, { 0xd10364d2, 0x1125c8e8, 0xb6e22cc7, 0xb5013595, 0x66c59523, 0xa931a8b0, 0x9d1c5ba1, 0xa8561749, 0x47f9bf9f, 0x7a1fdbb2, 0x75fef48a, 0xf13a501a, 0x42a5e2c6, 0xb4ad201b, 0xa9f49c56, - 0xd2664e9b, 0x0001e2, 00000000 + 0xd2664e9b, 0x0001e2 }, { 0xe41cb4f3, 0xb513119f, 0x9cc82c78, 0x475f7e0f, 0x15cc5740, 0xbad3a101, 0x3f53c5c1, 0xfa87c5ee, 0xde5fe8e7, 0xd2e5dc9d, 0x44b4f5c4, 0xe9750ef8, 0xa5ef1728, 0x2f323298, 0x9557aef2, - 0xd4b05b4b, 0x0001e2, 00000000 + 0xd4b05b4b, 0x0001e2 } }, { @@ -60478,19 +60476,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2ffe2903, 0x3c12d3b3, 0xb138e861, 0x2d906eb5, 0x8e364103, 0xb6d2d553, 0xda8f31fc, 0x699d7bc0, 0x96a0ef4e, 0x9dd042b7, 0x8f650daa, 0xf3daefcc, 0x6f22d321, 0xc216b288, 0xd8290365, - 0x8b8d9926, 0x000111, 00000000 + 0x8b8d9926, 0x000111 }, { 0xe15e01ca, 0x974f436, 0xc0c94a42, 0xf88c59b, 0x841a2e9c, 0x8dea2123, 0x1d7d6db2, 0x523a2453, 0xf30edca2, 0x8602459e, 0x1a3ab81d, 0xac8e8c01, 0x67d9edc5, 0x1762ff88, 0xab974242, - 0x51a840e, 0x0001a1, 00000000 + 0x51a840e, 0x0001a1 }, { 0x70cfe021, 0x8be9093d, 0xc5e1a6ba, 0xaa00fc97, 0x4a1e2533, 0x1ce3c99c, 0xd3c289c0, 0x62b66289, 0x80dc6416, 0x9ab06fb8, 0x869b810d, 0x4c7a9581, 0xab54e8e1, 0x618cb783, 0xa6c132d7, - 0xcbadd741, 0x000093, 00000000 + 0xcbadd741, 0x000093 } }, { @@ -60498,19 +60496,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9cae6df9, 0xc4ccae66, 0x2619e0ae, 0xaad3a9ae, 0x8e19af3f, 0xafbdd42b, 0x6a3b3449, 0x99f0db47, 0xcb35db9a, 0xdd08d8c2, 0xd6e613d1, 0xcf7e88ea, 0x8cd0b153, 0xd7afd29b, 0x525d43f2, - 0x24273ad3, 0x0000c4, 00000000 + 0x24273ad3, 0x0000c4 }, { 0xe7c89feb, 0x58620792, 0xe33a1383, 0x5b19bee9, 0x72658939, 0x667641c4, 0x8d42f973, 0x5a5ee1c7, 0x414e7c, 0x6e85c1e2, 0x313f2841, 0x240f61f, 0x7eb07a1a, 0x96843cd1, 0x7c73e096, - 0xe9a980f0, 0x0001a5, 00000000 + 0xe9a980f0, 0x0001a5 }, { 0x5b03a070, 0xd065c5d1, 0x7eb1b01e, 0x3d9bd1dd, 0xd0cc0cf4, 0x138b9ef, 0xe5ec9ccc, 0xf084f8a4, 0x85c28e23, 0xbdcc70b8, 0x56e15b00, 0x2c9d756e, 0x9ee121d9, 0xf0315ca, 0xd3ce6ddf, - 0x2d8e04f9, 0x00015d, 00000000 + 0x2d8e04f9, 0x00015d } }, { @@ -60518,19 +60516,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8f45ae46, 0x403e07e, 0x718de3f, 0xd0e23b92, 0x6c01363d, 0xb0d2b661, 0x3470a76f, 0x4962d9ec, 0x3fa96f3, 0xddac75ae, 0xc5582047, 0xa914d6b, 0x1a16dcf5, 0x249d2f44, 0xc442e4a5, - 0x4915e285, 0x000074, 00000000 + 0x4915e285, 0x000074 }, { 0x6cbb369a, 0x3480d716, 0x1fe3343a, 0x40ff4733, 0x6b38ecc0, 0xcd6a6a0, 0xf0dd9e5e, 0xe857f090, 0xef498f75, 0xb5b529b6, 0xb58e6aec, 0x16f5672c, 0xbd02bf26, 0x39e40068, 0xcb656a6f, - 0x39b43a01, 0x000174, 00000000 + 0x39b43a01, 0x000174 }, { 0x3ac9cb6e, 0xad58ec13, 0xfa604ea4, 0x5cc7331a, 0xa1e407d1, 0x7106c409, 0x5a4a32d3, 0xab96bf78, 0x4244d8f5, 0x6b2ed2c0, 0x9d582101, 0x433f7a7c, 0x889e73e6, 0x80f8d14, 0x517de85a, - 0x7a97bbda, 0x0001b2, 00000000 + 0x7a97bbda, 0x0001b2 } }, { @@ -60538,19 +60536,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2c96a879, 0x8a7371c4, 0x83ed4660, 0x32299d93, 0xebd9a017, 0x359f21a3, 0x66589e2, 0xdd7cc8b5, 0xb84b94a1, 0xbe70633a, 0x2bb9dc39, 0x9830d085, 0xb959bc2a, 0xab649239, 0x878439, - 0x4f871206, 0x0000a0, 00000000 + 0x4f871206, 0x0000a0 }, { 0x1b1b989, 0xe314c968, 0x4988bf98, 0x6ee1b2b2, 0x1efde419, 0xf017c803, 0xef6dc0b5, 0xa8f6a185, 0x13de2180, 0x6df4a801, 0x310753b3, 0xbb73f8d0, 0x601bfe93, 0x87ece658, 0xa6878590, - 0x602f729c, 0x00001b, 00000000 + 0x602f729c, 0x00001b }, { 0x44b447d8, 0x3a6a2ec7, 0x99071da3, 0x8636b0a0, 0xe9c3b5d8, 0x94706548, 0x5b7d352, 0x6afeb22b, 0x2dbfd7b, 0x2157cced, 0x1c39bdaa, 0xc247fd16, 0x815a9ce7, 0xdbe93cb9, 0xadee60e9, - 0x3f56ba0f, 0x0000a6, 00000000 + 0x3f56ba0f, 0x0000a6 } }, { @@ -60558,19 +60556,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3008c8d2, 0xcc1871d0, 0x16bddd5e, 0x32f35476, 0x51f15162, 0x3807e0d3, 0xf8b21227, 0xcfe58a32, 0x9f037781, 0xa3b6c7d, 0x8fcfb0f3, 0x3bbc2df9, 0x340874d4, 0x9dd101d5, 0xb4e237f9, - 0x66604ed8, 0x0000a4, 00000000 + 0x66604ed8, 0x0000a4 }, { 0x56135b23, 0x7cb2244b, 0xc94beccd, 0xa767222a, 0x2502c508, 0x63ce64c4, 0xdddd8b8c, 0x3abdc7a4, 0x2b291a69, 0x6e221b6, 0x851bc6da, 0xbac1c947, 0x1a732c41, 0x46f06b3d, 0xa37b9c71, - 0xecb52ba3, 0x00001d, 00000000 + 0xecb52ba3, 0x00001d }, { 0xb85e5b8d, 0xfec29eb, 0xd91848db, 0xa5f83ca4, 0xdb3324, 0xb5f82b7a, 0xc3c5b64f, 0xd4ff6435, 0xcbcf4085, 0xfb147e2, 0x69bef228, 0x948fe46f, 0x3658a6ab, 0x216dbd23, 0xd82f46b3, - 0xe38faf17, 0x000079, 00000000 + 0xe38faf17, 0x000079 } } }, @@ -60580,19 +60578,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x260fa772, 0x26443585, 0xb3cebe59, 0xcedb2c0b, 0x42541570, 0xa0cf8e4a, 0xd0548e5, 0x2cca1604, 0xe26b757c, 0xeab5e6f9, 0x575ac1ed, 0x8ca692df, 0x4c7e09e8, 0xdca8caa1, 0xc4fe8332, - 0xd01c3693, 0x0001e2, 00000000 + 0xd01c3693, 0x0001e2 }, { 0x9fb1c8a7, 0x6854549c, 0x9c614e45, 0x39d93e55, 0xda792e21, 0x81c521c1, 0xf22bf601, 0x602aa227, 0x5f32203b, 0xa28db2b7, 0x523df699, 0x317f0bcd, 0xeaea7cdd, 0xa2af7925, 0xac9a329f, - 0xadbafca1, 0x00013b, 00000000 + 0xadbafca1, 0x00013b }, { 0x4fc5cc85, 0xa17436db, 0xdc4d7c5b, 0x2ae5121e, 0xd747acab, 0xcb4c5d7e, 0xf335d473, 0x62b87f7a, 0xaf8888a5, 0x707c4e95, 0xfe5a86fc, 0x529f2948, 0x326b444e, 0x357cde3a, 0x69a84368, - 0xcde6ceca, 0x0000bf, 00000000 + 0xcde6ceca, 0x0000bf } }, { @@ -60600,19 +60598,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc472e5a2, 0x7f09be55, 0xd068c606, 0x26e05220, 0xd031c424, 0x75afd431, 0x3009d5d5, 0x493206ab, 0x97251bb5, 0x3bc46435, 0x8db1e9f3, 0x2dc8c43, 0x6390d16f, 0xc28b6566, 0xcb03fa7a, - 0xec74ec56, 0x000024, 00000000 + 0xec74ec56, 0x000024 }, { 0xd2c08627, 0xdd2818e9, 0x28f523e0, 0x61638bad, 0xbbab8d66, 0x1ed57fbd, 0xa325dacf, 0x840d06d0, 0x4e66330f, 0xfd39b383, 0xc4c96b0f, 0x3d4071d4, 0x4addaf25, 0x29c6c30c, 0xbb794758, - 0xa325f25c, 0x000029, 00000000 + 0xa325f25c, 0x000029 }, { 0xda9c94bc, 0xd086d186, 0xda8c8e14, 0x98c9eb31, 0xbdcaa264, 0x513be8a0, 0xdef3e238, 0x93d4d8ab, 0x7eb2ff42, 0xa84dac63, 0x722974e4, 0x35921ce7, 0x7330bfb6, 0x7b2a9bc4, 0xbd3ddbb5, - 0x51b5d639, 0x000174, 00000000 + 0x51b5d639, 0x000174 } }, { @@ -60620,19 +60618,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2e2acf95, 0xcf0494e2, 0x2163d538, 0xc02d1244, 0xd0f253d0, 0xb3095479, 0xa06fd98, 0x2405c0a8, 0x2331f428, 0x902eb963, 0xe0420bdc, 0x80e4264f, 0xf04b7829, 0x6eb1b47, 0x488acdf5, - 0xf393ab57, 0x0001bb, 00000000 + 0xf393ab57, 0x0001bb }, { 0x227d2ded, 0xcea4b486, 0x47ffbf84, 0x37569970, 0xe2b1c689, 0xf0c90b16, 0x55ba7d98, 0x860ab68e, 0xcf0466e8, 0x6fc2f71, 0xcf1936e7, 0x5f856586, 0x5653139d, 0xa8d330df, 0x69aaff6, - 0xb0d30261, 0x000063, 00000000 + 0xb0d30261, 0x000063 }, { 0x5da20e29, 0x28b68f62, 0x44ff4ea9, 0x2b850c3, 0x14a71d4, 0x9b3749fd, 0xdb145cbc, 0xdb720926, 0xeb38ba8, 0xa116fd9e, 0xae0f624c, 0x242f87f5, 0xf689ff15, 0x9eb03ce9, 0x9b044410, - 0x2ef58589, 0x0001d3, 00000000 + 0x2ef58589, 0x0001d3 } }, { @@ -60640,19 +60638,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd093d839, 0x5ac3a359, 0x4319340d, 0xad819cd4, 0xb92d864e, 0xd5506564, 0x60937f4e, 0x30244b5f, 0x644cbe65, 0x9fa47fbd, 0xb1111b9a, 0x27916461, 0x654dc3ce, 0xfee9986b, 0xc9b94fe5, - 0x1ea8f412, 0x000081, 00000000 + 0x1ea8f412, 0x000081 }, { 0xfcddf25, 0x4763b34d, 0x3e10b3a9, 0x84eebe2c, 0xf15b7978, 0x9b94d787, 0x162878bc, 0x2482d1ba, 0xe859ce92, 0xd29d91d3, 0x33c1e414, 0x9729092b, 0xf62270ed, 0x79faffa7, 0x86d599f9, - 0x78e53cc9, 0x00010b, 00000000 + 0x78e53cc9, 0x00010b }, { 0xdfa257ef, 0xb407d351, 0x443ce811, 0xb14175d4, 0x18ff1240, 0x6c535aa, 0x42c3411, 0x81db098e, 0xe0cbe0cb, 0xc3c8d1e8, 0x3919641d, 0x4818d2d0, 0x38456435, 0x81b405d5, 0x6bb27985, - 0x9ed1d59, 0x000186, 00000000 + 0x9ed1d59, 0x000186 } }, { @@ -60660,19 +60658,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d431c37, 0xe6ef35ee, 0x74ff2071, 0x79c8312c, 0xcbe7abc6, 0x3720c0ac, 0x9bddb21e, 0x63166fa4, 0x571a3299, 0xf03deb40, 0x47904733, 0x195df5ce, 0x908d815a, 0x26e5197a, 0x547626df, - 0xa2f78621, 0x0001cb, 00000000 + 0xa2f78621, 0x0001cb }, { 0x69f97eae, 0xcb4afee, 0xb496ca87, 0xea0bc2c5, 0x636743e7, 0xdf9e0286, 0x35427ca9, 0xcb747e3d, 0x741d15c3, 0x6da51dad, 0x5557de16, 0x6f1a5d24, 0x80c4d70e, 0x9c260b43, 0xca750952, - 0x9a8dc4a4, 0x0000f4, 00000000 + 0x9a8dc4a4, 0x0000f4 }, { 0xd00ddb9c, 0x59033b6c, 0x5aa0a92f, 0xce3db2a2, 0x31c9853, 0x6c5fce60, 0xd652ada7, 0xb338084e, 0x289e1694, 0x3080401a, 0x920a657f, 0x6e74b43a, 0xffa39bd, 0x61216d06, 0xd8e1d6a6, - 0xd12543d3, 0x000079, 00000000 + 0xd12543d3, 0x000079 } }, { @@ -60680,19 +60678,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x0fc417, 0xa9bd31a0, 0xcb432107, 0x2143fced, 0xa59df7b1, 0xf79cd41d, 0xa5cb0ab8, 0xdc486ca1, 0xf4196868, 0xb32ab4b2, 0x8cbab8df, 0x786c5e6a, 0x2e4e82cb, 0xb72063a, 0x7892aece, - 0x52419e12, 0x000030, 00000000 + 0x52419e12, 0x000030 }, { 0x11f7927e, 0xf498c30c, 0x2d9632b3, 0xc8bee905, 0x4e3d0c31, 0xffd49a4e, 0x6d5a948, 0xad9bac4d, 0x8ee2a540, 0x26013611, 0xb3d06d99, 0x12622f71, 0xae97afec, 0xdd748448, 0x9a2fd9, - 0xa37f554b, 0x00007e, 00000000 + 0xa37f554b, 0x00007e }, { 0x8a0a21fb, 0x25d29322, 0x60c94c79, 0xbc8b6def, 0x76af2ac6, 0xcda17a7, 0xe75bf0df, 0x8524fd63, 0x90371db5, 0xc2058ba8, 0xf3176a37, 0x1407f6e7, 0xb53c38e3, 0x97f42aae, 0x16864eb5, - 0xe9de00f8, 0x0000fa, 00000000 + 0xe9de00f8, 0x0000fa } }, { @@ -60700,19 +60698,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x86dce7f6, 0xf9e0e38d, 0xc0cfd46b, 0xb58b06a5, 0x47a11775, 0xf485a995, 0x60de3c98, 0x5e924438, 0xd5350ebd, 0xad2f38df, 0xf374140a, 0xff73e0c9, 0x98ea94c6, 0x812e9ac4, 0xbe9f0673, - 0x3823a314, 0x00002b, 00000000 + 0x3823a314, 0x00002b }, { 0x91d7e2a7, 0x90023118, 0xb162482d, 0x9e6b5df3, 0xb799ef1b, 0xade745f9, 0xa761ecdd, 0x98c57620, 0x7b3e0350, 0xf81396c8, 0x4c6c4d66, 0x9d67c0a7, 0x60981fd7, 0x28677c57, 0x6d345502, - 0xad17fab7, 0x000060, 00000000 + 0xad17fab7, 0x000060 }, { 0x11d393bf, 0x7330768f, 0x36337fd0, 0x42b2d915, 0xe320bbd8, 0xf5462d82, 0xfbcd19ac, 0xf4e588eb, 0x3cd13060, 0xc370acd2, 0x727deb96, 0x76d80ef2, 0x328306c3, 0x980dc5ff, 0x366e848a, - 0x36556e33, 0x0001fe, 00000000 + 0x36556e33, 0x0001fe } }, { @@ -60720,19 +60718,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xee11d134, 0xa71ea5ed, 0x4a0b27b4, 0xbb7e8423, 0x8565ffc9, 0x71ff59a0, 0xd6f3f2bd, 0xd7f4f5d1, 0xdde3ca8c, 0xc7f02247, 0x3642b13c, 0xcd747049, 0xf3a79bef, 0x9cc0f81c, 0xd858c058, - 0x53a81fed, 0x0000b3, 00000000 + 0x53a81fed, 0x0000b3 }, { 0x20d48a00, 0xa5c3e073, 0x78b6d9fa, 0x855e5f2f, 0xd38d4107, 0x77c66eeb, 0xc9f502c8, 0xd2f37d58, 0x92fd54d9, 0xa3c6750a, 0x18265753, 0xaf217d13, 0x90e3269, 0xb9aa1908, 0x7b26130c, - 0x858624be, 0x00014c, 00000000 + 0x858624be, 0x00014c }, { 0x5a07534, 0xf473037d, 0x5bcde1bd, 0xa82305a6, 0x16b32e74, 0xc32139f2, 0x1a700ed7, 0x60fb2f0, 0x814ec7fd, 0x75383760, 0xe3712a39, 0x117665ee, 0x46238887, 0x5130e17, 0x7bf1cd51, - 0xf3e8f02, 0x000060, 00000000 + 0xf3e8f02, 0x000060 } }, { @@ -60740,19 +60738,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9ca6eb23, 0x739d9bd3, 0x9e37b9de, 0xdd282aa3, 0x813c6c5e, 0x5b64af73, 0xb4bece94, 0x858f5c32, 0x5a7c7a20, 0xc932e352, 0x6c761939, 0x7da58b2, 0xb430bfb2, 0xdd83d9b6, 0x41b740b6, - 0xf5790e7c, 0x00002a, 00000000 + 0xf5790e7c, 0x00002a }, { 0x9ab2c60c, 0xf7ad492c, 0xa50946e5, 0x87d9c89c, 0x25176695, 0x1f0ee25e, 0xbbc99854, 0x64c0671a, 0x8b169880, 0x34333428, 0x2b07b494, 0xf2d5e0ee, 0x5188de85, 0xf0bdbe73, 0xd1201016, - 0xb68b2402, 0x00001b, 00000000 + 0xb68b2402, 0x00001b }, { 0x27c8abb4, 0x5a15081d, 0x8e628e3, 0x6d521592, 0xad6f46fc, 0x5b8e01d3, 0x610bb1f0, 0x87d516d6, 0x6330b2e8, 0xd0206002, 0xb5497be7, 0x54a8d971, 0x4d2155f9, 0xb6380346, 0x32c5a407, - 0x112b91f2, 0x0000af, 00000000 + 0x112b91f2, 0x0000af } }, { @@ -60760,19 +60758,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2f3ddab7, 0x8c38cda6, 0xdd62bc3b, 0x70a47604, 0x27614e0e, 0x26daf866, 0x6d67053f, 0xa0df1893, 0xb3d5e903, 0xb3af0fb9, 0xde9bfce4, 0xcb397080, 0x7ee7cee2, 0x757c8294, 0x250b61ee, - 0x11c3c769, 0x000020, 00000000 + 0x11c3c769, 0x000020 }, { 0xf2d4baac, 0xe25f3fb8, 0xe593ccf6, 0x18d4a0da, 0x3be2d468, 0x83f49f1e, 0x14945729, 0x18acf492, 0xbc3ddf7, 0xecef5702, 0xf3e52d9f, 0x3e97fc7c, 0x33645ef, 0xdc49fde5, 0x2bd8c81e, - 0x3b7e5351, 0x000024, 00000000 + 0x3b7e5351, 0x000024 }, { 0xa3fee7b4, 0x3d65e174, 0x37c10ff3, 0x7bac4e5f, 0x2208edcf, 0x3b08ed69, 0x5e7f767b, 0x8cc7adbe, 0x420918c, 0x7fd173b9, 0x7e1b31c8, 0x211b008b, 0xbc035fc6, 0xd5262413, 0x5307d98f, - 0xca06524, 0x00011c, 00000000 + 0xca06524, 0x00011c } }, { @@ -60780,19 +60778,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe929f6fb, 0x315737e5, 0x71a3dd5, 0xe9e37089, 0xb7ff2d97, 0xe2838ea2, 0xa92bdfcd, 0x7a3c50d1, 0x900cf177, 0x7050f53f, 0x44e4fc00, 0x2d7c4fdf, 0xb125042f, 0xdd0b6913, 0x28b7928c, - 0x1dac3d59, 0x0000bf, 00000000 + 0x1dac3d59, 0x0000bf }, { 0x63a5e310, 0x71747b13, 0x6b9a1918, 0x9ccee3d6, 0x6861d0c7, 0xf61c295e, 0xfdcc4656, 0x47a01b3, 0x2b2a9c5a, 0x2621fc80, 0xf2a4b07d, 0xd92025df, 0x99a42036, 0xeacb4458, 0x3b778a04, - 0x585131b4, 0x0000aa, 00000000 + 0x585131b4, 0x0000aa }, { 0xd8d75ec4, 0xca8f6688, 0x74911640, 0xab047987, 0xef72ef4e, 0x34807dad, 0x3deaaa7b, 0xa06aa311, 0xba2a98c1, 0x483fc52d, 0x89a8db82, 0xe2a9889e, 0x5d4cc280, 0x2fd928f2, 0xb5aff87f, - 0x62f82ba, 0x0000e3, 00000000 + 0x62f82ba, 0x0000e3 } }, { @@ -60800,19 +60798,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a068d42, 0xf2801be5, 0xc840cc99, 0x423b581e, 0x6e03e06, 0x482181b2, 0x57d3ab56, 0xba77553a, 0xc4b867f, 0xeb395045, 0x10b53b93, 0xc84a19a1, 0xe4cf5e4b, 0x9a4bd3d6, 0x3ace1ecc, - 0xc281c8ed, 0x0000ae, 00000000 + 0xc281c8ed, 0x0000ae }, { 0xe8587304, 0x26608994, 0x965f3c74, 0xc392fd1e, 0xdaab849, 0xd9d1f4a7, 0x43ab3115, 0x79504fc2, 0x318e1af0, 0xd118ad7d, 0x89635aee, 0x6a7d4bb6, 0x4a994c68, 0x2ef181cd, 0x1787c242, - 0xdd742006, 0x0000ac, 00000000 + 0xdd742006, 0x0000ac }, { 0x6b291c71, 0x9d488d35, 0xf36dc5b7, 0x889724dc, 0x14b69b5c, 0xf5fa6aaa, 0xc2ba7a83, 0x419e9f4c, 0x86fd0c99, 0x12c6bb2c, 0xf5697cb4, 0x340c495, 0xbf3cbb8, 0xe01796ce, 0xa746638d, - 0x49f1ecc1, 0x000041, 00000000 + 0x49f1ecc1, 0x000041 } }, { @@ -60820,19 +60818,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc25441fc, 0xee4cb7eb, 0x3d0f83b5, 0xd3c75e45, 0xcd154792, 0x1cfff88c, 0x871e2fff, 0x6afb1123, 0x8234acb, 0xdc07617e, 0xa0f66942, 0xd2ff0baf, 0x78ebe88b, 0x40f0efef, 0xa4241720, - 0xddd8ada6, 0x00008b, 00000000 + 0xddd8ada6, 0x00008b }, { 0x3ffe4c7d, 0x266aa35d, 0x7867aa91, 0xb90cf57b, 0xd53f4b99, 0x9ad7e549, 0xbdfda042, 0x4bfa79e, 0xca19e464, 0x380863d6, 0x9f418440, 0x22511d5c, 0x9555e6e4, 0xc81735a, 0xd54b6f36, - 0xdc7def77, 0x0000c6, 00000000 + 0xdc7def77, 0x0000c6 }, { 0x25e9c838, 0xfce029e7, 0x3648b015, 0xa16b0345, 0x85f2c0d7, 0xa05ce190, 0x53f46865, 0x6069ef54, 0x3b995826, 0x4b80983, 0x841e008e, 0x61067ebd, 0x80b88829, 0xc750799c, 0x398c99ae, - 0x89e022d, 0x000198, 00000000 + 0x89e022d, 0x000198 } }, { @@ -60840,19 +60838,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x99a687e9, 0xee8804bf, 0x5860ecab, 0xc161f222, 0x26087f4e, 0xcb79dc75, 0x53da1a93, 0x6723476b, 0xd3ae57ba, 0x1e1ce3a7, 0x86a5f2d8, 0x332737c0, 0xc3a61fd, 0xcb4f8e8f, 0x37d83b3c, - 0x5831b70a, 0x000073, 00000000 + 0x5831b70a, 0x000073 }, { 0x97d81bec, 0xdd2e7a7c, 0xd483ca5e, 0x5a803f0e, 0x770db15e, 0x23625f57, 0x71eec1c5, 0x127a2cae, 0xe032f501, 0x386035f6, 0xb2f8e135, 0xd1df3d9a, 0xa1861ac, 0x26bf4867, 0xfa6b8748, - 0xba664a53, 0x00019e, 00000000 + 0xba664a53, 0x00019e }, { 0x84dfe587, 0xec4fb2c, 0x562d798a, 0x3a6c12bb, 0x109b7b24, 0xb9b6cfb5, 0x2d11399a, 0x4db40f4b, 0x62bf52a, 0xdb751e2f, 0xb03366db, 0xd5a17a5d, 0xaca7019f, 0x2d1bb6df, 0x46edfe78, - 0x2b702681, 0x000052, 00000000 + 0x2b702681, 0x000052 } }, { @@ -60860,19 +60858,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbd8f9c0a, 0xb6e5b404, 0x8fecf7d0, 0x68ac2692, 0x616ce51e, 0x3b65bdad, 0xf6b3f9ef, 0x1c0db8c2, 0xd2af925e, 0xbf76cc1f, 0xd930ffb6, 0x437b1075, 0xb4c79b8c, 0xe13b7a87, 0x8b3c1e63, - 0xdea1e420, 0x000147, 00000000 + 0xdea1e420, 0x000147 }, { 0xd0eabcdd, 0xe7f9584f, 0x8cd3da6c, 0xdbb9c112, 0x8fe10d9a, 0x7d406e42, 0x6055836f, 0xab7aacd, 0xd0742d1f, 0x4cf57b0e, 0xb3d18f8f, 0xad0ad4d, 0xbc3bbbb6, 0x594e3bc7, 0x7d0e61c8, - 0xe4c2524f, 0x000168, 00000000 + 0xe4c2524f, 0x000168 }, { 0x47c49627, 0x46451570, 0x39a22199, 0x98c28dfe, 0x28b5534b, 0xa1d60648, 0xcd94b495, 0x41331317, 0xe1c754d, 0x9f975aef, 0xa04719a5, 0xfa8dc956, 0xe4e8da, 0x2c2b918d, 0x55fea0ab, - 0xafded518, 0x0000f9, 00000000 + 0xafded518, 0x0000f9 } } }, @@ -60882,19 +60880,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf2390fe, 0xd7aa71be, 0xf5aab75, 0x9bc85c9, 0xdf8b993e, 0x1eb0dec7, 0x837d67cf, 0x5b210ce8, 0x358ce288, 0xcf37d96d, 0x61db83e5, 0x8f018bf7, 0xafb14169, 0xb4580439, 0x96a411f4, - 0xefdcb6a0, 0x000021, 00000000 + 0xefdcb6a0, 0x000021 }, { 0xc78259ee, 0x44e51197, 0x255fabfb, 0x24a93b62, 0xcd30a361, 0xc709f071, 0x8c96276, 0xbe18e376, 0x5ce5ae9b, 0x2566329d, 0x6f384098, 0x64e4cffa, 0xc887a4e4, 0xdfd0c96a, 0x20e7698a, - 0xa1e61b9, 0x00000e, 00000000 + 0xa1e61b9, 0x00000e }, { 0x51ce7320, 0xede72111, 0xdd7f6846, 0xdf80a81b, 0xd001bca5, 0xb3e33052, 0x58533024, 0x87e983ab, 0x456302df, 0xcd2af084, 0x8ed04a70, 0x2ae4995d, 0xdf463cf6, 0xf7b7a063, 0xdde88fa2, - 0xfb1df2fa, 0x00005a, 00000000 + 0xfb1df2fa, 0x00005a } }, { @@ -60902,19 +60900,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf0a186f, 0x7cec9abf, 0x19c75e5c, 0x2d7ef84a, 0x8f11d83f, 0x2c4da8c7, 0x49645b74, 0x2fbd62b9, 0x898d7b2, 0x18a3f330, 0x4c8fcd1, 0x3e698b0b, 0x79eaa326, 0x9367039c, 0xde614dcd, - 0x4ecf0086, 0x0001ce, 00000000 + 0x4ecf0086, 0x0001ce }, { 0xa748d6a4, 0xa55a0e37, 0xcdafb6ca, 0x24375601, 0x2df69c74, 0x76bbacb4, 0x83870df7, 0xb9ce5004, 0xadf1025d, 0x9aa401a7, 0x1ed167ac, 0xfd19efc3, 0xb5628092, 0x6cc88a40, 0x18ef885c, - 0xc15d62df, 0x000009, 00000000 + 0xc15d62df, 0x000009 }, { 0xa54ad1f, 0xe706e4e4, 0x8eced33c, 0x3c13cbe0, 0x3b11edfd, 0xae0d7b48, 0x94603de9, 0xc0f18a36, 0xb620bcd8, 0xb9762061, 0x19208bb, 0x8021c66b, 0x2020781f, 0xf0857423, 0x697f4b9b, - 0x35d81507, 0x0001a1, 00000000 + 0x35d81507, 0x0001a1 } }, { @@ -60922,19 +60920,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc3601d16, 0x8a7cedbe, 0x1a2b7b94, 0x651531d7, 0xaa85598e, 0x3eab82ad, 0xa1a76f68, 0xdccb4e65, 0x2f77bedf, 0x8024e01b, 0xef40a838, 0xccebdfa3, 0x5e9fcef0, 0x50f52ee0, 0xddd77e99, - 0x786c82c6, 0x000161, 00000000 + 0x786c82c6, 0x000161 }, { 0xe9224312, 0xf6f3791e, 0xb57faa8b, 0xcde67b31, 0x7af21744, 0x8c412561, 0xc0922936, 0x1d9d3c09, 0x9c770fae, 0xcc20a231, 0xf0f20b65, 0xce6c37cf, 0x154d79cf, 0x9db83c03, 0x719c265a, - 0x3433df97, 0x0000d9, 00000000 + 0x3433df97, 0x0000d9 }, { 0x9795d76c, 0xc05c6670, 0x2a1c667f, 0xeb59c75d, 0x81666e60, 0xfb790187, 0x6746b105, 0xd80ba38d, 0x1b9607a0, 0x2ab328ea, 0x54881e25, 0x730183ab, 0x7dee8326, 0x4f9ee906, 0xa72c54c2, - 0x15967ad4, 0x00006e, 00000000 + 0x15967ad4, 0x00006e } }, { @@ -60942,19 +60940,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdbdb6a67, 0xedd4fcb, 0xd4e5907, 0x6ab1b6da, 0xc90186d6, 0x1e009f32, 0x1b4415e4, 0x410c791c, 0xf4a4bb32, 0x3e9054cf, 0x7a49a265, 0xcc5d7b98, 0xbaffc1ae, 0x37cfc07c, 0xb4813b17, - 0x615c5b16, 0x0000f4, 00000000 + 0x615c5b16, 0x0000f4 }, { 0xb5e3a8da, 0xd11917ad, 0xf11eda06, 0x15b1e4f9, 0xb8a4c5e8, 0xaa5161c4, 0x9d0fb5b9, 0xae515c1, 0x75acc784, 0x4c8196b7, 0xefabcb51, 0xeacfdd9c, 0x90d3aa6f, 0x9578a487, 0x836404e5, - 0xb23f7bb6, 0x0001d3, 00000000 + 0xb23f7bb6, 0x0001d3 }, { 0x597ed5d0, 0x65bff2be, 0xcdc8e5d, 0x85d872f8, 0x9ad040f6, 0x42927efc, 0x358ec580, 0xe3bf78cd, 0xc4c423bb, 0x95b63f1a, 0x80defd92, 0x5032f9f4, 0x8e742ddb, 0xd4c35a92, 0x915a00b2, - 0xfb446fd5, 0x0000b5, 00000000 + 0xfb446fd5, 0x0000b5 } }, { @@ -60962,19 +60960,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0c20d96, 0xb15fbb2e, 0xaed0c026, 0xe75dbed9, 0x169fa786, 0xb108fb07, 0x5d111a4b, 0x706f7a2c, 0xc23cc00b, 0x69174182, 0xd053aeb1, 0xcd6756fc, 0xf176130d, 0x5281919e, 0x72d896a1, - 0x1c3ceed0, 0x0000c1, 00000000 + 0x1c3ceed0, 0x0000c1 }, { 0xdd51ad9e, 0xfd8757a9, 0x83dae055, 0x7f90f82b, 0x65a89273, 0x96877e45, 0x2bae1b32, 0xe8d0c983, 0xa6ad7c08, 0xdee5d80a, 0x4fe708c9, 0xec1b68d7, 0x8e980673, 0x151d1642, 0xca998d76, - 0xa0e56a93, 0x000099, 00000000 + 0xa0e56a93, 0x000099 }, { 0x7d7d057b, 0xb257c494, 0x7ccd5765, 0xa51e048d, 0xed48fbf, 0x7a6be51, 0x4db1d9ec, 0x71a55234, 0xff9d369a, 0x84efcdb1, 0x419ae8ea, 0xf188d1dd, 0xe1575a31, 0xc90d4ec, 0x316bcaa, - 0xf212d681, 0x000195, 00000000 + 0xf212d681, 0x000195 } }, { @@ -60982,19 +60980,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x50f0302e, 0x2daa7abb, 0x2056de09, 0x1bff6e8c, 0x3f679393, 0x8c2146bf, 0x99939112, 0x53dbfec7, 0x57ae7975, 0x9a383b73, 0xb3d66173, 0x7787c7ab, 0x3b46e706, 0xe2aa4aa2, 0xe2504263, - 0xdd201ff6, 0x0001f9, 00000000 + 0xdd201ff6, 0x0001f9 }, { 0x477603c7, 0xbbe39faa, 0x86b1f759, 0xec33246c, 0x95e8593c, 0x931304a3, 0xcaac3d3b, 0xaaad69d0, 0x38caa27e, 0xc497691e, 0xd85e0320, 0xa3b07033, 0xefdba1c9, 0xe2b317d7, 0x183c1636, - 0x5e549e54, 0x000090, 00000000 + 0x5e549e54, 0x000090 }, { 0x2a623cc0, 0x69b38a44, 0xf09a0cef, 0x2407c257, 0x2b1a6adf, 0x62eb6d5e, 0xabc488e8, 0x120ea982, 0x2d2219d0, 0x2ad40fa3, 0xaff13573, 0xa5833d1d, 0x56057b11, 0xda9bf248, 0x7412be4, - 0x80df576b, 0x000033, 00000000 + 0x80df576b, 0x000033 } }, { @@ -61002,19 +61000,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x80636183, 0xb11e3823, 0x663149a9, 0xb384189f, 0x6355ee36, 0x897738d8, 0x416a5118, 0x3e8222c5, 0x793d8e88, 0x2687b4f6, 0x6b197f7c, 0xebd0549e, 0xa74206f3, 0xec647d44, 0x375bbdf5, - 0x1c77ae20, 0x00000a, 00000000 + 0x1c77ae20, 0x00000a }, { 0xe943ab83, 0xbd3846a5, 0x8e48dcd8, 0x233bf39a, 0x98914570, 0x63576f60, 0x72a59eec, 0x71832f42, 0x34cd1aa6, 0xc6c8ce44, 0x46b1bda, 0xacdc9c7e, 0x8ac41ebd, 0xc77fc216, 0x47929dee, - 0x805e5bd, 0x000155, 00000000 + 0x805e5bd, 0x000155 }, { 0x30689cb1, 0x2bb1818b, 0x90ed46d1, 0x54b61b18, 0x744887e2, 0xd6e9773a, 0xd95b903c, 0x31bc43bc, 0x7b8c33bb, 0x242441ad, 0x51e383ba, 0x8037fd94, 0x44a6c6d3, 0x651e3027, 0xccb077fd, - 0x828a133d, 0x0000be, 00000000 + 0x828a133d, 0x0000be } }, { @@ -61022,19 +61020,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19ec68cf, 0xc4414c09, 0x80696447, 0x76ae355a, 0x31059db8, 0x4d38261b, 0xcb772ea, 0x423b0683, 0x9f50f38f, 0x85e380cf, 0xde420a7f, 0x67b35df5, 0xea47fbfa, 0xafdd6ccd, 0xde02a16d, - 0x7b9a34b2, 0x0000e6, 00000000 + 0x7b9a34b2, 0x0000e6 }, { 0x8953d6d5, 0xe8f67373, 0x628245bf, 0x8f3bc88f, 0x41db44a3, 0xfc7db1b4, 0x2291a5d9, 0xdc96ae07, 0x4a6f4d96, 0x66b43d0e, 0x3831abd3, 0x7239fc02, 0xc27bb061, 0x681c45d8, 0x3e15584c, - 0x666666b6, 0x00006e, 00000000 + 0x666666b6, 0x00006e }, { 0xb6791148, 0x8dbfe1a2, 0xd66676a9, 0x995291e2, 0xf23fdf13, 0x221ab7a7, 0x354bb15d, 0x2fd09a5d, 0x1be95c7c, 0xd2a695f, 0xd8d3ced4, 0xcca69bed, 0xe3fbc40a, 0x714c86ce, 0x3aa7daaa, - 0x4a5dac38, 0x000048, 00000000 + 0x4a5dac38, 0x000048 } }, { @@ -61042,19 +61040,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbfae208, 0xddd53c3, 0x429d1a57, 0x105588d4, 0x704dbf6b, 0x9d68a7c1, 0x4da2815e, 0xeb9d9d32, 0xa515a6a3, 0x678c25fb, 0x74aa8b49, 0x80d6ac6, 0xbe3bf65e, 0xed1bd1f5, 0x31dce2bc, - 0x8a6b4d3f, 0x000010, 00000000 + 0x8a6b4d3f, 0x000010 }, { 0xccf874c9, 0xd739ce2f, 0xc577ea21, 0xd0060624, 0x62fc7094, 0xdb2f2c91, 0x5e51af37, 0xbbf5ef, 0x374795bd, 0xd370691c, 0xc622fb03, 0xd7bc25d6, 0x2ecc07d2, 0x39652fae, 0x465df77a, - 0x14e5bed2, 0x00010a, 00000000 + 0x14e5bed2, 0x00010a }, { 0xe11f0023, 0xb84daf34, 0x5fe4b65f, 0x379558be, 0xd4d1c548, 0x4e3a86a9, 0xb5e7b06, 0x7c9e430e, 0x3c288b01, 0x885cbc31, 0x8a7f63eb, 0xd8d77a8c, 0x2c1136ae, 0x4c90e282, 0xcc46603c, - 0x80f95eb1, 0x00004f, 00000000 + 0x80f95eb1, 0x00004f } }, { @@ -61062,19 +61060,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d595b73, 0xc7bae3f0, 0xca18ba46, 0xca7b25c1, 0x87220943, 0x73a3c248, 0x3e23bcf7, 0xa61d8cb9, 0x133386cf, 0x1b7ed50d, 0x90f409da, 0xe5505600, 0x60233ce0, 0xb7e1cf21, 0xa3b1c4ad, - 0x9298e0d3, 0x000075, 00000000 + 0x9298e0d3, 0x000075 }, { 0xe436f6e3, 0xb2635ad6, 0xf926a05e, 0xa6885064, 0x63f9d242, 0x3c6f0c51, 0x51fc470, 0xc435051b, 0x73aa8a51, 0x99b0cee3, 0xa7609763, 0xddc5aace, 0xb00cf4df, 0x30e0d792, 0x544d179d, - 0xa13bc96e, 0x0001f5, 00000000 + 0xa13bc96e, 0x0001f5 }, { 0xbbe3b436, 0xb40ed51, 0xd003b5e3, 0x12495ba7, 0xbee9a7bd, 0x8dbcb027, 0x20d44f1d, 0xc918449, 0xb69e1676, 0xa54b8785, 0xe81673d5, 0x621cd724, 0x1b3a88ba, 0xd396d522, 0xd6acb1, - 0x5a74bab, 0x0000bf, 00000000 + 0x5a74bab, 0x0000bf } }, { @@ -61082,19 +61080,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x850637cc, 0x6116fe3f, 0x21db5b34, 0xbbb9e624, 0x33d0ebb6, 0x768820a3, 0x7b88097b, 0x3f6fa38, 0x2c0d3a73, 0x6f5115f5, 0xe4ce062d, 0x4ce3f831, 0x2f0363bf, 0x1aa3c079, 0x83cf7b1a, - 0x1c7f375e, 0x000138, 00000000 + 0x1c7f375e, 0x000138 }, { 0xd85e4170, 0x6f97f3b9, 0xb93d8635, 0x607ccbe8, 0x186e8914, 0xe00b54da, 0x54eab003, 0xac95d1fb, 0xfbb11626, 0xb803f47b, 0xb7a0bf67, 0x78b206f6, 0x8d1aa0a7, 0xa2c1f904, 0x8ccf4855, - 0xa8647d21, 0x0000a8, 00000000 + 0xa8647d21, 0x0000a8 }, { 0x9fb98292, 0xbd54bb4e, 0xb06105c6, 0xde91aa03, 0xa9000f1f, 0x3f8acb76, 0x7cd92ed1, 0x6e53eef7, 0x6da4d142, 0xf1afd051, 0x2c34f499, 0x3fa73886, 0xf947e401, 0xda8902b, 0xae1308a3, - 0x5967c8c6, 0x0000b5, 00000000 + 0x5967c8c6, 0x0000b5 } }, { @@ -61102,19 +61100,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7296256d, 0x700ec787, 0xa159dde5, 0x50075bd6, 0x1ec6212d, 0xb53f368c, 0xbc10280f, 0x79dfa0b6, 0xc88df07d, 0x9c529757, 0xb1cd5fe2, 0x1addd426, 0x96e104ca, 0x5304ad69, 0xb8922f15, - 0xcad1d93d, 0x000134, 00000000 + 0xcad1d93d, 0x000134 }, { 0x6be1b2f1, 0x369ba7cd, 0xf178ffd4, 0x75a19e79, 0x14cf6944, 0x6b9ed83f, 0x29508a25, 0xfe0523, 0x9d408b62, 0x24364cdc, 0xbca4e6d9, 0x4f2985b9, 0xdbacbf57, 0x8e6faf9, 0x53e2b578, - 0xff613ef4, 0x0000d3, 00000000 + 0xff613ef4, 0x0000d3 }, { 0x1c5960ab, 0x4986cce8, 0x53ffc51a, 0x5010807c, 0xf85adee9, 0x51ecaeb1, 0x4bb1ce3b, 0x81607f3b, 0xf5956ab3, 0x2c6cdaef, 0x97c0d1f9, 0x83e78c5a, 0x7a681f3, 0x7bf5df40, 0xecf6d7fc, - 0x953bb411, 0x000199, 00000000 + 0x953bb411, 0x000199 } }, { @@ -61122,19 +61120,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb266909c, 0xf2cae3e8, 0xae57afa7, 0x279551cd, 0x88d6394a, 0xbf734d73, 0x2730a2e9, 0xa2f5386c, 0x1a0f6fee, 0x6be843a1, 0x4b86bb85, 0xe69bccde, 0x1567fbfd, 0x4cc58a25, 0x1ea68640, - 0x318bc615, 0x000017, 00000000 + 0x318bc615, 0x000017 }, { 0x8a112119, 0x6b539128, 0x5ffa59d8, 0x40800724, 0x55014468, 0xc2aff174, 0xa9bf911d, 0x6cec0b9, 0xdab1fa6e, 0x61e9e76f, 0xe4f12a87, 0xaba5868a, 0xbf9e3107, 0xe9566148, 0x40f304a9, - 0x8bf6a4c3, 0x00010c, 00000000 + 0x8bf6a4c3, 0x00010c }, { 0xfbe1e859, 0x520f7e5a, 0x860a8dcb, 0xb8de180d, 0xb3d7a2e0, 0x52531f47, 0xcec2afaf, 0xdb2a4c3, 0x967cab60, 0x910bfc32, 0x12ff4890, 0x1c785af3, 0x1723ebfd, 0x221558c6, 0x882cfea9, - 0x9e9557b0, 0x000029, 00000000 + 0x9e9557b0, 0x000029 } }, { @@ -61142,19 +61140,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6df8f23, 0xd6cdb378, 0x580116c3, 0xdffde49, 0x84451411, 0xe185e38, 0xbbe4b7ab, 0xd89609ae, 0x41de0751, 0xde8533c2, 0xd823a868, 0x27341ee9, 0x28c8f2d5, 0x902cd8bd, 0x2c8b7065, - 0x57fcc042, 0x0000ee, 00000000 + 0x57fcc042, 0x0000ee }, { 0x772f85a5, 0x8e78be23, 0x16bf1444, 0x507a8b7f, 0xe1853e74, 0xb763db61, 0xc5a2ff15, 0x6cfd3a43, 0xf349338b, 0xb75dd979, 0x2a8078ec, 0x5b0e2264, 0xc2f516da, 0x3cfcda24, 0xb52fa10f, - 0xd2a8fbb, 0x0001b8, 00000000 + 0xd2a8fbb, 0x0001b8 }, { 0xc0d29ddb, 0xd3a718d, 0x987ff057, 0x2d33fa2a, 0xccb2bfe7, 0x9bb61c7f, 0x4dd7d1fa, 0x8a3bf597, 0x84f3db87, 0x212bb217, 0x684dd1da, 0x6c8ae89c, 0x3a9f3ef5, 0x8e14e513, 0x421ce811, - 0x17c42130, 0x00008f, 00000000 + 0x17c42130, 0x00008f } }, { @@ -61162,19 +61160,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc2e8f77e, 0xa7820858, 0x1e4cb412, 0xdc7f35d4, 0xcff6457, 0x1f6201d6, 0xb01f8e0, 0xe0d680f3, 0xd80eed8f, 0x249a4281, 0x16fbfde, 0x35b41307, 0xe1a23801, 0x6b818298, 0x8ef70dde, - 0x21a1cfa1, 0x0001a5, 00000000 + 0x21a1cfa1, 0x0001a5 }, { 0xa1dc72c5, 0xb9f3ce8a, 0x1ecd9035, 0x375ac80f, 0xcabe74d7, 0xcc41f417, 0x32ce550c, 0xc6d46eb0, 0xdde1fdd, 0xb97ee8d1, 0x8d87ee85, 0xbc114192, 0xa6c1d42f, 0x8406011f, 0x57938454, - 0xb751c682, 0x000113, 00000000 + 0xb751c682, 0x000113 }, { 0xc890fb94, 0xb895fb2e, 0xd4bf866b, 0x65392348, 0xa40dceb5, 0x7532f17a, 0x26726add, 0xdebeca9b, 0xe7d994ee, 0xf3ce1d39, 0x9bcd3ed9, 0x2117ca0c, 0xb542dd83, 0x2ca9b236, 0x3db29878, - 0x5ec14839, 0x000035, 00000000 + 0x5ec14839, 0x000035 } } }, @@ -61184,19 +61182,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5f588d69, 0x9d4eecec, 0x182191d2, 0x5d1e1b4b, 0x302801d5, 0xcdc502e0, 0xa059e9d7, 0xd07f2cb8, 0xd7e2178e, 0xe54e315f, 0xc784ff03, 0xc4e4490a, 0x7a9100e5, 0xb6ff51e7, 0x87d0f4e3, - 0x394134b5, 0x00015b, 00000000 + 0x394134b5, 0x00015b }, { 0xf4392f2c, 0x88635725, 0xe07c9278, 0xf21b1285, 0x6e9989fb, 0x235c639, 0x983af03, 0xd8239144, 0x67827346, 0xc4a34852, 0xb0edbbd8, 0x99220d86, 0xfac4f47b, 0x3531b8f2, 0x5bb9236f, - 0xb849a99f, 0x00017a, 00000000 + 0xb849a99f, 0x00017a }, { 0xd1887b7a, 0x6bf2f66c, 0xa9535e9, 0x63960194, 0x1547394b, 0xbc00c5fc, 0x3595725a, 0x4c5409b8, 0x9f8d3e15, 0x6d2a1aca, 0x1f9f4c46, 0xd390cc6f, 0x7955be22, 0xd08725db, 0x7691736d, - 0xd6ee78f9, 0x00011e, 00000000 + 0xd6ee78f9, 0x00011e } }, { @@ -61204,19 +61202,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xee439c2c, 0x89d1108b, 0xeeccbbf9, 0x4ca62c7b, 0xb7bc7a5f, 0x9cd867a1, 0xb85cfaf9, 0xa8251bdd, 0x7b807332, 0xb6505434, 0x441e93f9, 0x91f7b78b, 0x5541a060, 0x1d51a4bd, 0xd11a39db, - 0x3f1d732c, 0x0001fd, 00000000 + 0x3f1d732c, 0x0001fd }, { 0xc74c11, 0x1f625207, 0xf0785f49, 0xda9f352c, 0xbffef8f2, 0x297c034c, 0xf316a4a3, 0x78d3c155, 0xf6864403, 0xf1e25fd0, 0x5a90b11, 0x7fc31cf8, 0xc07e0385, 0x361c574f, 0xcab0bf36, - 0xfdd7d456, 0x0001bc, 00000000 + 0xfdd7d456, 0x0001bc }, { 0x436b955f, 0xd05952ba, 0x5ebefef8, 0x63117ab1, 0x85f805bc, 0xd3147d33, 0xe7a2a5c1, 0x10d4795f, 0x91b528c3, 0x5b3bb3aa, 0x339a7b33, 0xe21a2df6, 0x621f25aa, 0x33040205, 0xefa4b960, - 0x19d32d7, 0x000156, 00000000 + 0x19d32d7, 0x000156 } }, { @@ -61224,19 +61222,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb55d0f46, 0x72244cac, 0x20d81b71, 0x90a0a9bb, 0x6f3cc94d, 0x48b3051d, 0x77c985f, 0x6ce65f90, 0x2dc45c4c, 0x2f97de25, 0x9d9f4ff7, 0x9144434c, 0xb4a1aeac, 0x80d72223, 0x4f10b458, - 0x3b3fb401, 0x000022, 00000000 + 0x3b3fb401, 0x000022 }, { 0xe912986b, 0xfff396ea, 0x7010b5e2, 0xbdff0732, 0xac66403f, 0xc8e3e8fd, 0xcd24746a, 0xede65dc0, 0x9ac01ea9, 0xa2f77823, 0xbc162f0e, 0x35730d21, 0x29930ad1, 0x97024f6, 0x58d1ad99, - 0x80fd9d39, 0x0001bc, 00000000 + 0x80fd9d39, 0x0001bc }, { 0x87a82776, 0xec0b81cb, 0x6e3a5b71, 0x825d8795, 0x782ce608, 0x2cd2f034, 0x65442b7a, 0xc4b2b74e, 0xa496ef8b, 0xfa820df5, 0x75c050cb, 0x29555f4d, 0x21737ef8, 0x9f78729f, 0xeac12679, - 0xb3ca6ca2, 0x00006e, 00000000 + 0xb3ca6ca2, 0x00006e } }, { @@ -61244,19 +61242,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x13ceac3, 0x87da9bd5, 0x9e51bbad, 0x838370ad, 0xf064356e, 0x2c343f90, 0xee12fba8, 0x555e17b7, 0x62925d76, 0x78eae308, 0xf093bc6d, 0x5232a376, 0x187d8749, 0xa28fe6ee, 0x8189f726, - 0x4d62d132, 0x000039, 00000000 + 0x4d62d132, 0x000039 }, { 0xa0e720c8, 0x8b7f0986, 0x1f92c42, 0x4654c74e, 0x58e9e305, 0x1c973624, 0xd27900b7, 0x606ce500, 0x78f5d712, 0x5b3d0cd0, 0xad000c9f, 0xcf27a55f, 0x9b4d9008, 0x6af1dd27, 0x8f31de5b, - 0x97912145, 0x000045, 00000000 + 0x97912145, 0x000045 }, { 0xde19e4ca, 0x9f50ba79, 0xac7248cf, 0x4ad68b95, 0x9f18d788, 0xbb5721d0, 0xadd5a83d, 0xb3382784, 0xf4f14a72, 0x5fb9da92, 0x47aaf8ad, 0xab79e23f, 0xcc85efe7, 0x3dda8148, 0x3768364d, - 0x789e8e54, 0x0000d0, 00000000 + 0x789e8e54, 0x0000d0 } }, { @@ -61264,19 +61262,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x111ea72c, 0xa2c59cd7, 0x76d1dfee, 0x81ae127a, 0x4bf4ff15, 0xf25ce90, 0x6335888, 0x29052143, 0x3b5c6e9a, 0xaffe8449, 0xa6c7a64c, 0xddbe7c07, 0x8be7b45f, 0xc62322de, 0xa4297644, - 0x458707d8, 0x00016c, 00000000 + 0x458707d8, 0x00016c }, { 0x218bed38, 0x8d98f38c, 0x8fa84a79, 0xccd1430c, 0x8e066b2f, 0x3eb7632e, 0x36e06d84, 0x1ba0b31d, 0x1a19b5a4, 0x46ec6e3a, 0x70e0e2fa, 0xc3865876, 0xdf694c54, 0x19f90a2, 0x43547c40, - 0x335887f2, 0x0000f3, 00000000 + 0x335887f2, 0x0000f3 }, { 0x6de88da7, 0x65f2d62c, 0xc47d7a2e, 0x46a42dd2, 0x955f49e4, 0x32155906, 0xb236aebf, 0xc40eb831, 0xd24b0bda, 0xd956cf7d, 0xc84fc9b, 0x63ddfe85, 0xab2a926, 0xbe1792b8, 0x9f4f45b8, - 0x69f1a1bd, 0x0001f3, 00000000 + 0x69f1a1bd, 0x0001f3 } }, { @@ -61284,19 +61282,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc475c74b, 0xfb420bf7, 0x333bc38a, 0x29459329, 0xc98da193, 0xf1b22637, 0xcb1a1dbd, 0x809d74cb, 0x4fc63c50, 0x10fd20a8, 0x6452675e, 0x7e896744, 0x7d6d418a, 0x8a4f34e6, 0xcad5f3c9, - 0x420f318f, 0x000099, 00000000 + 0x420f318f, 0x000099 }, { 0x4d92db80, 0xb3a97ac5, 0xce328fcf, 0xd65fe368, 0xedde6ce3, 0x12327afc, 0xfdd2feea, 0x4680cb79, 0x50c21140, 0xbc133248, 0x6fd6ced7, 0x7fde6263, 0xd2522d44, 0x3d5ca1e9, 0xec407cc0, - 0x4e89da79, 0x000060, 00000000 + 0x4e89da79, 0x000060 }, { 0x9b724bc0, 0xade25360, 0x2ff3c217, 0xf760acd7, 0x1c4072e0, 0xa5b230b0, 0xe29d28fb, 0x304284ba, 0xd93cff4c, 0x761e1e21, 0xcee47024, 0x8445baef, 0x3df2a63c, 0xc6c0e72c, 0x1e5843e5, - 0xbc45de2b, 0x00009f, 00000000 + 0xbc45de2b, 0x00009f } }, { @@ -61304,19 +61302,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xea68963d, 0x9c2b7228, 0xb38d8148, 0xe32bc4fb, 0x18eb6f9b, 0x745f8cbe, 0x23626a5c, 0xf7f6335e, 0xc1b8865c, 0x6d860aa1, 0x911337d5, 0xe9afa1dd, 0x6024c291, 0xb1568cf7, 0xf25a6a8a, - 0x4388699c, 0x00016d, 00000000 + 0x4388699c, 0x00016d }, { 0xd6be18ec, 0x6036969e, 0xb4fde030, 0xaa9044f, 0x5eda6d89, 0x2f9f528a, 0x79dc830a, 0x1ed45c12, 0xad13b7a9, 0xc093890c, 0xd7374653, 0x33351d45, 0x29aa84d6, 0xac3cb8b0, 0xd644b24a, - 0xd5e7825d, 0x0001c7, 00000000 + 0xd5e7825d, 0x0001c7 }, { 0x78e6dd53, 0xfed66d9d, 0xc6b8e053, 0xe784ab9c, 0x466ede07, 0x952477a6, 0xbdd1e6ac, 0x93e55a19, 0x402c995f, 0x9615d42b, 0x2de632d0, 0x2dcd48ee, 0x5d79eceb, 0xddaf86b9, 0xd2e3f330, - 0x36d42590, 0x0000a6, 00000000 + 0x36d42590, 0x0000a6 } }, { @@ -61324,19 +61322,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe96a3abd, 0x2f6b2bf6, 0x68cd5271, 0xa1fa96e4, 0x1514bdbd, 0xf25c4163, 0xcb74b4e5, 0x8c09a9db, 0x696df95d, 0x4ee6ff72, 0xbda88fa4, 0x684e3f3, 0x333ea014, 0xa05e442a, 0x8b9abc85, - 0x21d05936, 0x0000bc, 00000000 + 0x21d05936, 0x0000bc }, { 0x6c8be587, 0xcc71e5cb, 0x39e204f2, 0x78c6e8da, 0x3c7dd7b2, 0x27a0eb8a, 0xcedac18, 0xf6e284d2, 0xbda17953, 0x9d46bebb, 0x900c72a8, 0xcdf4adb4, 0xa627c271, 0x1564c074, 0x4dddb91f, - 0xe5dd97ac, 0x000194, 00000000 + 0xe5dd97ac, 0x000194 }, { 0x815277bb, 0x227986b, 0x460e2f48, 0x9b9198d0, 0x3f83252d, 0x39bfbec8, 0x5fbc8c6a, 0xfc8ae2b9, 0x4922add2, 0xfc49a642, 0x321771c5, 0x753f453f, 0xfd9d0e25, 0xdfac045, 0x901dfa3f, - 0xdcc076b3, 0x000197, 00000000 + 0xdcc076b3, 0x000197 } }, { @@ -61344,19 +61342,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x568cd2c6, 0xc856d2c1, 0xedd251f4, 0xb36fbf83, 0x9aee05d5, 0xfced1850, 0xe06fae43, 0xd91d017a, 0x3c864a2d, 0x56245304, 0x36249053, 0x85932172, 0x8fc85e3c, 0x86a89b89, 0xecc51a45, - 0xfc40976, 0x0001b3, 00000000 + 0xfc40976, 0x0001b3 }, { 0x9e314c4f, 0x9a5575b5, 0x98fd6cc3, 0x6626663e, 0x907e647b, 0x18184523, 0x3af526cc, 0xcbe163ba, 0xc73ff6f7, 0x58498ee1, 0x43c77100, 0xc2b7f20b, 0x9595bc52, 0x78d61dd, 0x4de9d705, - 0x7d92530d, 0x0001a0, 00000000 + 0x7d92530d, 0x0001a0 }, { 0xbd429d7, 0x61c2eef4, 0x7aa4f38f, 0xd5dff8e5, 0xeccdb8d0, 0xedf00b4e, 0x894e0904, 0x9e1f56da, 0x5c106b6a, 0xcba39a8e, 0x6fcdc5b3, 0x454f40da, 0xe66e0940, 0x488d0b0c, 0x4eafa120, - 0xf3b623bc, 0x0001ad, 00000000 + 0xf3b623bc, 0x0001ad } }, { @@ -61364,19 +61362,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5984c2d8, 0x504eeb66, 0x437be022, 0x3179038, 0xc55c6502, 0x9602d31a, 0xb3a8e1e6, 0xa74110aa, 0x49e30243, 0x58f26d4e, 0x43bbe02f, 0x916d7877, 0xee4109a0, 0x73f72372, 0x8731e008, - 0x2fa99d6c, 0x000112, 00000000 + 0x2fa99d6c, 0x000112 }, { 0x88dd122d, 0x2d5dfe8f, 0x53688c6c, 0x3dd302ec, 0xc2825fc, 0x6c79b983, 0xf1cb3d7d, 0xbf4328e, 0xa9e12851, 0x2d1572ec, 0xd59d1be1, 0xec1fce06, 0xe41498e9, 0x859b6b8b, 0xa3d6e7c3, - 0x72139cd9, 0x000133, 00000000 + 0x72139cd9, 0x000133 }, { 0x20890320, 0xc9ec62e9, 0x2e5fcf60, 0xd527601, 0x38145386, 0x5e78ad94, 0xcd3c2b2a, 0x26fe1a46, 0x2d95d739, 0xa2331216, 0xb4d8dd1f, 0x70f2e731, 0xc14372bf, 0x3175dac1, 0x1d3e0b40, - 0x7ab4403f, 0x00014a, 00000000 + 0x7ab4403f, 0x00014a } }, { @@ -61384,19 +61382,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3a4142ee, 0x8faff7b1, 0xde80529, 0x3da71e26, 0x69d84f86, 0x318fce5c, 0x872f1b47, 0xd002e887, 0xf1153ea8, 0x5584f757, 0xcdf86c68, 0x694747bc, 0x58447be7, 0xe78b760a, 0x6b328550, - 0x4d422db5, 0x0000c0, 00000000 + 0x4d422db5, 0x0000c0 }, { 0xb24091a6, 0x29602d26, 0x6662eba7, 0xdb292a6, 0xb01a7118, 0xf4d73158, 0xddf99762, 0x8e9a8637, 0x64388f15, 0x8195b5b1, 0x3aa4597c, 0xfcf2330b, 0x1628ecc9, 0xa9fba218, 0xe7bc44c2, - 0xa59d3ee0, 0x0000f0, 00000000 + 0xa59d3ee0, 0x0000f0 }, { 0x8e3b857, 0x37f5e758, 0x3def7406, 0x14301aa, 0xdf26bfa3, 0x1c085536, 0x73c600db, 0x9dedb780, 0xa570691b, 0xc388d654, 0xa68e1a52, 0x2c2e2eda, 0xeb0eb808, 0xbde43590, 0x5d816337, - 0xb245b924, 0x0000ec, 00000000 + 0xb245b924, 0x0000ec } }, { @@ -61404,19 +61402,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc5148b61, 0xd403061f, 0x1f664b9, 0x7fc6d3cb, 0x170f5c9a, 0xb208b4d9, 0xb4f1c72e, 0xa8d12f92, 0x32f21d36, 0x7944d188, 0x277fe75f, 0xf3ff2e28, 0xb1eb79b8, 0xbbd1655b, 0x5695b3c4, - 0xd4fd6a9e, 0x0000cf, 00000000 + 0xd4fd6a9e, 0x0000cf }, { 0x797ccf18, 0x51374bc8, 0xff4ed8be, 0xd25ad654, 0xc254afdc, 0xc474c93a, 0xa8bfc40c, 0xd927f2db, 0x30fb6b2e, 0x5b80e223, 0x37fad31d, 0xc7d76ff4, 0xc51d52a6, 0xb1ca695e, 0x7be65254, - 0x4ddf001f, 0x00012a, 00000000 + 0x4ddf001f, 0x00012a }, { 0xb80d8790, 0x670250e7, 0xf84f9b37, 0xeb7fa23d, 0xeb11b47a, 0xaae71cee, 0x4344ded, 0xe4c5084a, 0xd1dcbf3b, 0x54dc5d7f, 0xf9426667, 0x1feaaece, 0xaa36bb64, 0xbd74d8f1, 0xbff0c904, - 0xab3c2aaa, 0x00008a, 00000000 + 0xab3c2aaa, 0x00008a } }, { @@ -61424,19 +61422,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x81a95e0a, 0x6db7e684, 0x149ee3f4, 0x59319a46, 0x62d090d5, 0xc1f1ccda, 0xab27808f, 0xc4529690, 0x9b502444, 0x12264d93, 0xce2ed3e, 0x4500268a, 0x36aa56a9, 0x2703e44a, 0x79862c52, - 0x6b3bc09e, 0x00004d, 00000000 + 0x6b3bc09e, 0x00004d }, { 0x946d97af, 0xd70a293f, 0x59abec6c, 0xe33c69c5, 0x9601b9a1, 0x8152999e, 0xe59ffd12, 0x5a0e9097, 0xabb605f7, 0xca4aba5a, 0xdeae6a03, 0x330034cc, 0xbaf0a59b, 0x314bb311, 0x4f6ffd24, - 0x753e75c5, 0x0001c3, 00000000 + 0x753e75c5, 0x0001c3 }, { 0xb71e94af, 0x4e6cf238, 0x8f0b7c0a, 0x59f6492f, 0x3f3c63ad, 0xa6cbfb43, 0x43d8563c, 0xb6de1980, 0x2ca5d5b5, 0xaf8748b4, 0x2ea75898, 0xde698905, 0x9721a019, 0x3c5d607e, 0xf28aae64, - 0x45b37f68, 0x0001c4, 00000000 + 0x45b37f68, 0x0001c4 } }, { @@ -61444,19 +61442,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x223fc9f8, 0xe3cf5cd9, 0x2da4a98f, 0x5c923682, 0xc8ca618d, 0x1ce5b48, 0x8f714d89, 0xc0310664, 0xd2b10baa, 0x8535044c, 0x3c989f23, 0x138fcf39, 0xc3c6aeb2, 0xaa07f265, 0x64befb7, - 0xd56f6e4f, 0x000178, 00000000 + 0xd56f6e4f, 0x000178 }, { 0xcfbbb0e5, 0xecbfcfd5, 0x1cf6016e, 0xe50e0c50, 0x8535fbd4, 0xc85c0cf7, 0xe9b7ee8f, 0x86a40ef7, 0x565fc261, 0x4235dab1, 0xcb9c32a3, 0x54ae3bf9, 0xf001cfd9, 0x2ef940cc, 0xd34c1d88, - 0x9719d1c2, 0x0001e2, 00000000 + 0x9719d1c2, 0x0001e2 }, { 0xe8315256, 0x9cc8979e, 0xae8641e0, 0xa6583611, 0x8a5450ba, 0xaa724f02, 0xf65aa67f, 0x11854e00, 0xc023c91b, 0x57ba8247, 0x29cd3173, 0x9f35772c, 0x8d077fa0, 0x675ca1fd, 0x250d48f8, - 0x750e32f7, 0x000073, 00000000 + 0x750e32f7, 0x000073 } }, { @@ -61464,19 +61462,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x56c03791, 0x95ae99c7, 0xfc3c978c, 0x118f3f11, 0xe3728fe9, 0xd9371ba7, 0x75bc18db, 0x6e2620c4, 0xf1e555a7, 0x6d6be88d, 0x738bffaa, 0x753fb965, 0x803ac52e, 0x31711d8, 0xcce837cd, - 0xd26fa4e2, 0x000120, 00000000 + 0xd26fa4e2, 0x000120 }, { 0x1d38c3b1, 0xe95b2ba6, 0x6c5439fc, 0x903fb976, 0xdf29f279, 0xd5c66b19, 0x206a22c4, 0xca3f15b3, 0x4457148c, 0xc1a84a54, 0xc25c8833, 0x8d9f8f60, 0x40c50b95, 0x44307945, 0x8e16a8ca, - 0x25e97c41, 0x0000ac, 00000000 + 0x25e97c41, 0x0000ac }, { 0x46526614, 0x26ee4f8e, 0x5b98a444, 0xe5e7e44, 0x117032f2, 0xae2bc22f, 0x6faefb1e, 0x13dd4620, 0xb16ddaa4, 0xdd7a0b71, 0xfe6499a4, 0xbd1c1024, 0x5d0e3d5b, 0xdbf2fbb2, 0x4a6e53f, - 0xbfdbf206, 0x0000bd, 00000000 + 0xbfdbf206, 0x0000bd } } }, @@ -61486,19 +61484,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6ab99dd, 0x5ec47425, 0x6e0d0dfd, 0x4786a592, 0x1ef8c8ca, 0x7d2e18da, 0x99209529, 0xaa9bbdca, 0x9805eddd, 0x6731965b, 0x83e9a438, 0xb8969ab4, 0x21c7e874, 0x9b977062, 0x974a8bfb, - 0x4288b5e4, 0x000105, 00000000 + 0x4288b5e4, 0x000105 }, { 0xd8f31d0a, 0x431462e, 0x306aa082, 0xff108865, 0xc167dc72, 0x684b2e13, 0x66b49858, 0x9f0d20b, 0x800b8d7a, 0xb8757df0, 0x61ea3d4, 0x929e2426, 0x192014c, 0x5f262737, 0x528bc559, - 0x448f2856, 0x0001c7, 00000000 + 0x448f2856, 0x0001c7 }, { 0x711f1942, 0x9d76587f, 0xf071a7b3, 0xa0d8080e, 0x94e34f44, 0x5e365df6, 0x2708fe99, 0xd597e39e, 0x902861db, 0x63f66fc9, 0xd3e5bc64, 0xdd3d8ed8, 0xb1194830, 0x85fa75b, 0xf1f2cc43, - 0x19add63b, 0x000103, 00000000 + 0x19add63b, 0x000103 } }, { @@ -61506,19 +61504,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5068c8d5, 0x4b8586f1, 0x1d6f55bd, 0xb0c42abb, 0x9ed8f89d, 0x89a838bb, 0x8de176b0, 0x9ef661f7, 0x1b3aa625, 0x90ab0a04, 0x52b4d8d5, 0x6b7ee63b, 0xd371e2ea, 0xb61ffa53, 0xeb20545, - 0xd13b4418, 0x000060, 00000000 + 0xd13b4418, 0x000060 }, { 0x95b82bd4, 0x4f39b2f7, 0x55e00f03, 0xd8b823f3, 0xfff6a981, 0x8e33301e, 0x22eb04d7, 0x50d3fc2a, 0xc4343238, 0x95553406, 0xacc31750, 0x1d335249, 0x2f8059da, 0xfacdffdf, 0xa48ae69c, - 0xe64470a0, 0x00007c, 00000000 + 0xe64470a0, 0x00007c }, { 0x2ba49146, 0xb5aafeb4, 0xd3d8502b, 0x77c84475, 0xdd045d72, 0xae750252, 0x6056245f, 0x5867ad7c, 0x35b4f33a, 0x82f50dda, 0xf0aafc31, 0x76e5b58f, 0xcffc76e7, 0x471b59ac, 0x6a5270b0, - 0x4bdba71e, 0x00015d, 00000000 + 0x4bdba71e, 0x00015d } }, { @@ -61526,19 +61524,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x257554ab, 0xad1ef8a0, 0xd71517f4, 0x43e0c130, 0xa55fe409, 0xf2167369, 0x31a982c9, 0x5dcd6176, 0x45464c1, 0x29ee5f6, 0x6490d96d, 0xe9d62864, 0xe72342db, 0x9e17f686, 0xd0d6502a, - 0xaacd588d, 0x0000de, 00000000 + 0xaacd588d, 0x0000de }, { 0xbadf7599, 0x82cf3d1d, 0x2c5733b2, 0xd91ae40e, 0x66be22c3, 0xe0d34003, 0x1d085edb, 0x8337fadc, 0x5492adbf, 0x2e4e7619, 0x3e282044, 0x1da135b4, 0x1620f94a, 0xdf034a8a, 0x3d3d4322, - 0x38e6c1a4, 0x00017e, 00000000 + 0x38e6c1a4, 0x00017e }, { 0x12cbb513, 0xc3460913, 0xeef3b987, 0x20a9b273, 0x98edf312, 0x1c67894f, 0xe7686e5, 0x84cbc7da, 0x89719f5e, 0xeef51187, 0x59854744, 0xaec9e6cf, 0x3d300e23, 0xc3bc1c98, 0x530e887c, - 0xef6bbcad, 0x000080, 00000000 + 0xef6bbcad, 0x000080 } }, { @@ -61546,19 +61544,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf1b99fef, 0xa240df96, 0xc7324415, 0xd9a139f7, 0x5a8ebda4, 0xcb706534, 0x28c9d456, 0x63636f05, 0x73d0df02, 0xd65d9377, 0xc916c784, 0x35300636, 0x29f2a5a6, 0x229bce33, 0xfaf552a3, - 0x3540503c, 0x00013c, 00000000 + 0x3540503c, 0x00013c }, { 0xf917da22, 0xade111eb, 0x97f30489, 0x6ef5a8ac, 0xbff2f045, 0xb0426a0b, 0x3ba9091b, 0x454cf51f, 0xcd41a2c3, 0xd36411fe, 0x93417b7a, 0xb20bfdb5, 0xbd6b7286, 0xa0fa80bf, 0x1831c094, - 0x7cc37cad, 0x0000a4, 00000000 + 0x7cc37cad, 0x0000a4 }, { 0xd5e6644e, 0x5a073d22, 0x53bf8df8, 0x653b8b45, 0x47dc3b66, 0x6df12d4f, 0xdc346463, 0x7abdaaaf, 0x55476ecc, 0xd317894b, 0x6ad7eed3, 0xb686caf2, 0xb678c65b, 0x45f8f710, 0x33f3cad, - 0xd8f7d134, 0x00012c, 00000000 + 0xd8f7d134, 0x00012c } }, { @@ -61566,19 +61564,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaae8088b, 0x8babed47, 0x36ff3fb5, 0x6dec1af9, 0xfb270534, 0x1433bfc6, 0xc8810238, 0xd6f077df, 0x193d7008, 0x2eccead7, 0x56d0efe0, 0x6c092cbb, 0x59ae9a74, 0x1c94c587, 0x93979746, - 0x8df23084, 0x000147, 00000000 + 0x8df23084, 0x000147 }, { 0xa24b4300, 0x8b43b0bb, 0x8b70c93a, 0xa6fc1b10, 0x7bfee7f6, 0xa30aa05f, 0xceba1e57, 0xc906b2bc, 0x39975a3b, 0x9562de2d, 0xf49c3eed, 0x3d4a06f2, 0x1e6fdc16, 0x4c4189cb, 0x992403d6, - 0x6eea1155, 0x0001cb, 00000000 + 0x6eea1155, 0x0001cb }, { 0x9a9dfea1, 0x1aa620af, 0xa74ef382, 0x250610b2, 0xb631b651, 0xbe1fd30f, 0x92db4f50, 0xc582a3e4, 0xb897d5b5, 0x1c044d5d, 0x93987644, 0xe4bb3fcf, 0xc8dba5c5, 0x3a33d59d, 0xb70851ae, - 0x28e3837b, 0x0001b9, 00000000 + 0x28e3837b, 0x0001b9 } }, { @@ -61586,19 +61584,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x733aa09a, 0xe64b833e, 0xf7382911, 0x7dd800ec, 0x5119dc5c, 0xbf998db, 0x579abca4, 0xbe40930a, 0x8c3dc32, 0xed750ff3, 0xa769b551, 0xd494af1e, 0x43e7525, 0x6f1a1af0, 0xdfbf7c32, - 0xc02e2735, 0x000121, 00000000 + 0xc02e2735, 0x000121 }, { 0xc0c9e8b0, 0x92232b3f, 0x8ed06ab3, 0xedc9bcfa, 0x28651f9b, 0x74742b26, 0xb422af16, 0xbb06ff9, 0x6b49b63, 0x29d14fa3, 0x35ddff00, 0x5be90175, 0xfd3e8cec, 0x5f589347, 0x74f54756, - 0x60e603f9, 0x00010c, 00000000 + 0x60e603f9, 0x00010c }, { 0x81e8b65c, 0x2f281f15, 0x3e566710, 0x937d7bcc, 0x8c119dfc, 0x975560cd, 0xe236335, 0x4b07d0ee, 0x16b647de, 0x81ee9403, 0xd192697e, 0xf311af85, 0x28563101, 0x6d7cc1e2, 0x3931d878, - 0x661ccff, 0x0000ef, 00000000 + 0x661ccff, 0x0000ef } }, { @@ -61606,19 +61604,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3392b93f, 0x68f99768, 0x1d6ea765, 0xc3064494, 0x8de1e187, 0x8851cb10, 0x8e0dfec, 0x84956dc0, 0x770172ab, 0x579083c2, 0x653dac2b, 0x477f20ad, 0xa29022a4, 0x5d9072b3, 0x72c7379c, - 0xad0a418, 0x000113, 00000000 + 0xad0a418, 0x000113 }, { 0x758baaab, 0x8ebdd435, 0xdb84a4ee, 0x881fe2ba, 0x481e6549, 0x3d9abc09, 0x512b21e9, 0x844ff477, 0xb4747b5b, 0x31772f1, 0x77dfd824, 0xed6e2cba, 0xac3e3ebe, 0xd57f661f, 0x81e44711, - 0xdc01dd37, 0x00004a, 00000000 + 0xdc01dd37, 0x00004a }, { 0x1b6123cc, 0x25a6ecf, 0x88f2c7ec, 0xd08dee32, 0x4b369ae5, 0x768cf6df, 0x798e2edc, 0xa5741534, 0x8a28eb2e, 0x464999bd, 0x80dec674, 0xd3539ca, 0x78961e6c, 0x9d17a7db, 0xa443addb, - 0x5074667a, 0x00017b, 00000000 + 0x5074667a, 0x00017b } }, { @@ -61626,19 +61624,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa1e8954a, 0xbca87525, 0x32266410, 0x3e99371f, 0x32fbd5cc, 0x939d9e94, 0x811a88a2, 0xda504a89, 0xdc6d5dd5, 0x88911f40, 0x7a59bf25, 0x7db0ea1b, 0x43e7647c, 0x6882917c, 0x7714d62c, - 0x1519dad1, 0x0001f6, 00000000 + 0x1519dad1, 0x0001f6 }, { 0x37291f6, 0xb19647b5, 0x63f0f0a2, 0x90b138e4, 0xb0cd7134, 0x222ed989, 0x7e66c842, 0x74efdd8f, 0xa5ffb3af, 0xbed6d522, 0x3e41f947, 0xc3344b76, 0xfb84776d, 0x95fde6d6, 0xa1627df5, - 0x3646d2ea, 0x000102, 00000000 + 0x3646d2ea, 0x000102 }, { 0xe2d8929, 0x474363c5, 0x4b7b8f9c, 0x424ad3c4, 0xad7737d2, 0x69777b0c, 0xd7e17255, 0x3cb398d3, 0x2670f87e, 0x6d081a0, 0x65d830b2, 0x22337aef, 0x6818ef15, 0x50655077, 0xa80b48fe, - 0xb78154f7, 0x0000f1, 00000000 + 0xb78154f7, 0x0000f1 } }, { @@ -61646,19 +61644,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf1c95a8e, 0xfaaf7167, 0xf5c3a3, 0x64d59f79, 0xc04d038a, 0x8586b016, 0xc9aa0ffb, 0xace6b5e6, 0xdadb5608, 0x22a0f3c8, 0xa71495e8, 0x6a4bacf0, 0x94d688d9, 0x284a6d10, 0xfc901101, - 0x9eabbfe0, 0x0000ef, 00000000 + 0x9eabbfe0, 0x0000ef }, { 0x129360c5, 0xbaaa4888, 0xd2c8b38b, 0x3fee5037, 0x41988c8f, 0x7c7e9d20, 0xe68472ee, 0x15f70931, 0x9735cab7, 0x24ff964a, 0x5dd05800, 0xe40c7147, 0xc166f63e, 0xe7798d88, 0x5edf679a, - 0xc6e647db, 0x000146, 00000000 + 0xc6e647db, 0x000146 }, { 0x7fca7dd1, 0x1a6e8ff1, 0x4c75ed67, 0xa23994d5, 0x38dca52, 0x149cb406, 0x270003e7, 0xffe9d4bb, 0x7c10f84e, 0xf4af4a7b, 0x8b22c029, 0xe3d86014, 0x6bf296d9, 0x2b1ba2cb, 0xdb54161e, - 0x710ffc97, 0x000183, 00000000 + 0x710ffc97, 0x000183 } }, { @@ -61666,19 +61664,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb54844c6, 0xe7107224, 0x6168a85b, 0xf9b2e79f, 0x5722303d, 0x135f256b, 0x3807b764, 0x6e76c13d, 0x8b74457f, 0x51a77073, 0xc9d5d1b6, 0xa5fd7458, 0xd6eaef62, 0xf4fd5dd, 0xb23f27d5, - 0xdafb2e95, 0x000093, 00000000 + 0xdafb2e95, 0x000093 }, { 0x929d10e3, 0xb471fb91, 0x3721a3a1, 0x91f8d332, 0x810ce68b, 0x1a98a188, 0x151a8a9b, 0x1e6c703, 0xcfc946eb, 0x96670bc0, 0x4b9f0de0, 0x19e267ae, 0x9cf6638d, 0xedbcdde8, 0x5c18f7bf, - 0xf342a603, 0x00005a, 00000000 + 0xf342a603, 0x00005a }, { 0x9a3cc440, 0x97299aeb, 0x6f17864b, 0xbd8f6e06, 0xb2102c70, 0xc23987a8, 0x6a216f92, 0xb349492c, 0xffbeb640, 0x11628b73, 0x244d49d5, 0x1df49678, 0xe210538d, 0x7dbc620c, 0x6ce404bf, - 0x40b2af8e, 0x0001d1, 00000000 + 0x40b2af8e, 0x0001d1 } }, { @@ -61686,19 +61684,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc7d9400c, 0x3594bf1b, 0xadf30e15, 0x7f9ce275, 0x7dbab612, 0x95af8c5a, 0xc81b9f73, 0x892d2083, 0x4ba3a1db, 0xb36fb85f, 0xc8ef185b, 0x5922aae7, 0xbc23b096, 0xe93cfcca, 0x7b4b9424, - 0xf4c1616d, 0x00011b, 00000000 + 0xf4c1616d, 0x00011b }, { 0x9c811fe2, 0x689ec1ea, 0x126dab6d, 0xabcaf6e3, 0x91b47843, 0x2270807d, 0xf7be2871, 0xa44ca76b, 0x881046b1, 0x5838e5ef, 0xfd57bd12, 0x4e2c8287, 0x9e1834f1, 0xd41324de, 0x4bb8b8b3, - 0x26104e7d, 0x000052, 00000000 + 0x26104e7d, 0x000052 }, { 0x846e426f, 0xd549890a, 0x15091a57, 0x323c5cdd, 0xed0d0d51, 0xa9a6fb7, 0xd699c454, 0x34d350a4, 0x4c0b8655, 0x485a8c35, 0x7a2de717, 0xeef49849, 0xc245945a, 0xf683009d, 0x58fb3bc4, - 0x57713ec6, 0x00003e, 00000000 + 0x57713ec6, 0x00003e } }, { @@ -61706,19 +61704,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xadde0ee0, 0xb7378a20, 0x9835a173, 0xaeeb4cf, 0x743c8325, 0x4a71e0dc, 0x301e3589, 0x7a04728, 0x237b3063, 0x7d02896, 0x10cde3e5, 0xa71b1786, 0xe87a61e7, 0x4296fac7, 0x7bcb130e, - 0x4cf43e49, 0x0001e6, 00000000 + 0x4cf43e49, 0x0001e6 }, { 0xc9cc0bd5, 0xb132a245, 0xd959549b, 0xf6d7e2f6, 0xfc389b0b, 0x30ed6ffd, 0x85d8be63, 0xb86074be, 0x97855ca8, 0x3acb23eb, 0xc447160f, 0x90b237a3, 0xd450a0b8, 0x6f363d11, 0xa6001e51, - 0x6ff9e39f, 0x000083, 00000000 + 0x6ff9e39f, 0x000083 }, { 0xcc68ccd, 0x883cbdbe, 0xbddf41d8, 0xf0a69d65, 0x8ec598ef, 0xd67e9ed2, 0x44fb6c45, 0x1875d8d6, 0xc1639d5c, 0x8c63cbc5, 0xc52b85b6, 0x5b4cd527, 0x236c0d15, 0x56f73c09, 0x70e2c800, - 0x180c3c24, 0x0001e7, 00000000 + 0x180c3c24, 0x0001e7 } }, { @@ -61726,19 +61724,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb70af907, 0x9c0d96d3, 0x2ab3d243, 0xeb27de85, 0x642afc24, 0x78e69a66, 0xd4dfe310, 0x40fdf818, 0xcd2779dc, 0x9aadc215, 0xb585806d, 0xef8dd044, 0xcbb389fa, 0xc4c7c3f1, 0xf94b73b, - 0xec982286, 0x000138, 00000000 + 0xec982286, 0x000138 }, { 0xb52a0325, 0x8a2fa88c, 0x8838230b, 0x8c94a252, 0x8ac4814d, 0xfdd3a952, 0xc0909c50, 0xa54fb25, 0xbb44c790, 0xf718a57d, 0x6e32a714, 0xba7d59a4, 0xc0c95385, 0x4cf255b1, 0x12f4551, - 0xe59df480, 0x0000b3, 00000000 + 0xe59df480, 0x0000b3 }, { 0x942eaa69, 0x3a454bdb, 0xb39080c3, 0x2531cb7, 0xf780d100, 0x25369dda, 0xe042a09d, 0xad59e679, 0xdabc6aa9, 0x22579075, 0x5b1bc32, 0x9dd2d3cc, 0xb564d424, 0x53c0046d, 0x8fbdb2c5, - 0x17c9ae1b, 0x0001de, 00000000 + 0x17c9ae1b, 0x0001de } }, { @@ -61746,19 +61744,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7a78d3e, 0x8b3b104b, 0xe82e96b9, 0xffd1951e, 0xac935e13, 0x8217f4b6, 0xa476ff56, 0xfb2f63e, 0x3c3dcbbb, 0x46e97a9a, 0x92c5a300, 0xc1a73670, 0x4914e8cf, 0xe7313251, 0xa0ed2457, - 0xbf3aa482, 0x0000ca, 00000000 + 0xbf3aa482, 0x0000ca }, { 0x75d14aed, 0xbaba9e8b, 0x4d376253, 0xf00e5e9d, 0xf78cb54a, 0x298c8f02, 0x6aa8d5c4, 0x990a4c5e, 0x231c2598, 0x50164b23, 0x8894788d, 0xc08fd704, 0x3e37d51, 0xbd30c516, 0xcb25e008, - 0xda9ce781, 0x0001b3, 00000000 + 0xda9ce781, 0x0001b3 }, { 0x27a0eb26, 0x11de310, 0xf5676035, 0x47cc94b0, 0x86dc6251, 0x95e44cda, 0xff8114b8, 0xcec80012, 0xf3b18462, 0x3167aeab, 0xf1f57ffc, 0xbccdab3a, 0xa1427590, 0xafdd18bb, 0x1147d3fb, - 0xec7266bc, 0x000016, 00000000 + 0xec7266bc, 0x000016 } }, { @@ -61766,19 +61764,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3532b384, 0x62163e83, 0xc5af741e, 0xf4b88726, 0x257c308a, 0xf94e04ca, 0x2b768f20, 0x52783004, 0x9936667e, 0xe89b11d9, 0x5fef0780, 0xa031a02c, 0xded914ed, 0x3211a195, 0xd18bd097, - 0x1fb95949, 0x00001d, 00000000 + 0x1fb95949, 0x00001d }, { 0xc482578e, 0x153c8541, 0x2736be48, 0xd99ae7b0, 0xfc3a82a4, 0x73f4bd4e, 0xfd2cc94d, 0xfeed59f2, 0x972cedd8, 0x16b86489, 0x511cfda7, 0xa6a81e8, 0xe679854a, 0xc45101d5, 0xb0cecded, - 0xd93512eb, 0x00008e, 00000000 + 0xd93512eb, 0x00008e }, { 0x97ee2e9d, 0xbb90bfa8, 0xae036389, 0x9186fdd2, 0x2c69ac7e, 0x1e7db367, 0xa6fbf63f, 0xb0ec030, 0x1a9ed741, 0xe65054f1, 0x8ed1b525, 0xc7a1fd17, 0x47ba5e7e, 0xcf3cb9fa, 0xc741532a, - 0x4a979f11, 0x0000b9, 00000000 + 0x4a979f11, 0x0000b9 } } }, @@ -61788,19 +61786,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x22321630, 0xab94c324, 0xfee2bd1a, 0xc9575d8f, 0x8e29bc47, 0x34a9c3dd, 0x556a97c9, 0x3cad51fc, 0x6b084b91, 0xc464a9f6, 0x4f0174ba, 0x433690a1, 0x6be7dd29, 0x4746b3af, 0x75b49875, - 0x17878207, 0x000083, 00000000 + 0x17878207, 0x000083 }, { 0x4a89f957, 0xd12f8f42, 0x1fd66134, 0xf26165b2, 0x74138395, 0x7245891f, 0x432c2984, 0xa72c4af0, 0x4e3cdfb5, 0x3c8f31f9, 0x95c3f389, 0xfbfaef2a, 0xd37379e2, 0xa54c611c, 0x829b4d8e, - 0x1a2af0c9, 0x0000d0, 00000000 + 0x1a2af0c9, 0x0000d0 }, { 0x50b7281, 0x7ea509e2, 0x70763283, 0xfda1966b, 0x551d2021, 0x8c67278b, 0x53feff9c, 0x39725196, 0x5d31a79, 0x50115be8, 0x411fe076, 0x4f26b68b, 0x8fc48c2, 0x410028aa, 0x6e1d35e3, - 0xd84c76e0, 0x0000d6, 00000000 + 0xd84c76e0, 0x0000d6 } }, { @@ -61808,19 +61806,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x65afa40e, 0x5a9e69a6, 0xed4978e6, 0x9e056f8, 0xb9e18634, 0x533491e9, 0x813ea1b4, 0xd55aed13, 0xf8d140ea, 0x1cccafe9, 0x11c7c80a, 0x2e560ddd, 0x2d108299, 0x9fbed0cd, 0x78d82e04, - 0xbb8c4c2a, 0x0000e7, 00000000 + 0xbb8c4c2a, 0x0000e7 }, { 0x20c35e41, 0x13b6d774, 0xd13824f9, 0x5d7f216b, 0xf7190763, 0x4361e2a2, 0xd6ae145f, 0x32f730cb, 0x7ae4a0c3, 0x58c6b034, 0x9a0ffabf, 0xfbdf0367, 0x231fbca8, 0x2a2e671b, 0x189dc6a0, - 0x1980b673, 0x000095, 00000000 + 0x1980b673, 0x000095 }, { 0x95cb27a5, 0xbafb5dd3, 0x32bb2b63, 0xcd7ca3ff, 0xa9391a0a, 0x83626c3e, 0x476b88b, 0x5e7eddbc, 0xf4aa221e, 0x837dc4be, 0x2e0e075d, 0xb208f860, 0x8d0c390a, 0x136f0c55, 0x686ae319, - 0xb058052f, 0x000078, 00000000 + 0xb058052f, 0x000078 } }, { @@ -61828,19 +61826,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x71bfc954, 0x9f4e9cc5, 0xda1c9d32, 0xf7627034, 0xd9b68d68, 0xfac33dd0, 0xd4b92847, 0xd9dde0eb, 0x20647c3a, 0xccbb9a03, 0x1694e5e5, 0x256062d, 0x5a0c8c8e, 0x5f443f21, 0x5372f714, - 0xf2b2fed7, 0x0001e5, 00000000 + 0xf2b2fed7, 0x0001e5 }, { 0x5ce35b21, 0x6fd8098e, 0xf487aa8c, 0x88268316, 0x5073a236, 0x5b831130, 0xe7dccb1c, 0x289740dc, 0x5356661f, 0x6cf387e9, 0x54036e41, 0x313ac961, 0xaf15b8, 0xa8ac7730, 0x3ff6d68e, - 0x52be063a, 0x000049, 00000000 + 0x52be063a, 0x000049 }, { 0xe45e5ed3, 0x65a49a0c, 0x8bd302cc, 0xc4f0dea, 0xc43f8796, 0x713c8841, 0xfd6691c9, 0x1da7cced, 0xcc611c35, 0xc8009681, 0xda5922af, 0x29607aed, 0xed4ffe53, 0xcdad2a8f, 0x5c5a59ac, - 0xa98637a3, 0x0000e9, 00000000 + 0xa98637a3, 0x0000e9 } }, { @@ -61848,19 +61846,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x648808a9, 0x2fdd1fbf, 0x44126ad2, 0xd40ec292, 0x54e7f324, 0x537535d9, 0xbccc1b5, 0x5bba4fba, 0xd4872af9, 0x465e11f2, 0xc5eca8d5, 0xed075f86, 0xfcc4e467, 0x41b59467, 0x35de35ce, - 0x8dc0cf82, 0x0000f0, 00000000 + 0x8dc0cf82, 0x0000f0 }, { 0x3859c4b, 0xb6c80472, 0xe23dd6b3, 0xf69b6a36, 0xd506a363, 0xa7f640b3, 0x951eecb4, 0x1375b756, 0xb317bbbc, 0x4cde2c64, 0x25964538, 0x937a5334, 0xddd5d12f, 0x1975bc30, 0xc6117b8a, - 0xd8d84288, 0x000018, 00000000 + 0xd8d84288, 0x000018 }, { 0x4961d7, 0xd17e2d91, 0xd8587cbd, 0x9844bade, 0xa27f08ff, 0xb6497b6c, 0xbf7ab8a1, 0xeaeb008b, 0x3bfc88cd, 0xdc2a476, 0xf96107b8, 0xb2d95e38, 0xfd5e2086, 0x523eb624, 0x66cf3394, - 0x5fdb34e8, 0x0000a1, 00000000 + 0x5fdb34e8, 0x0000a1 } }, { @@ -61868,19 +61866,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x94f9d925, 0x6eb6c88c, 0xf7fb5a83, 0x7d9b83bb, 0x1ca56809, 0xc3e616, 0x570adcb6, 0x8954ae43, 0x3260707e, 0xc29768e1, 0x3b3c22a7, 0x54b2508c, 0x11a6ef68, 0x2f68d3b7, 0x8c5e0afa, - 0xe46d7cb4, 0x0001bf, 00000000 + 0xe46d7cb4, 0x0001bf }, { 0x6f9f3590, 0x85bfc183, 0xdea600f9, 0x64e11873, 0xa999bfb8, 0xd44abbff, 0xa2f03f41, 0x39e12a2a, 0xddded85, 0xf30ff9db, 0x9606cce2, 0xfdd8b3c5, 0x2367cfc7, 0x907f1f5a, 0x71535ffc, - 0xf40ac475, 0x00006b, 00000000 + 0xf40ac475, 0x00006b }, { 0x5080cc37, 0xf0827375, 0x35080d13, 0x2cfaa56c, 0xc6a7b6ed, 0xbeea5985, 0x279beb0f, 0xa506fd56, 0xa1a87b1b, 0x3f5b4639, 0xca1f6c0d, 0xf3809d9a, 0x9622ded1, 0x5062a099, 0x6afea13f, - 0x96c0eece, 0x000006, 00000000 + 0x96c0eece, 0x000006 } }, { @@ -61888,19 +61886,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x233bb173, 0x225fc058, 0xe2654fbc, 0xaec2bd98, 0xc1e594e4, 0xd2bc8ab, 0xd0c7961d, 0xee8ce42e, 0x840a514c, 0x9255f12a, 0xb1773f5, 0xaf1bc94c, 0x97f15e70, 0xdb730c9c, 0xf6ae91e0, - 0xe820429c, 0x00003f, 00000000 + 0xe820429c, 0x00003f }, { 0x439cd98b, 0xe7d0f703, 0x37cd4c44, 0x3bdccb57, 0x72c6a63b, 0x45e1e171, 0x5ef63844, 0xc13a9b4d, 0x32d09f82, 0x321ff650, 0x2833fdbc, 0x3245c8bf, 0xdbcca5c3, 0x924b2fc0, 0xcd2acee5, - 0x7993205c, 0x000148, 00000000 + 0x7993205c, 0x000148 }, { 0xf90777ad, 0xcd700ead, 0xdf9cd728, 0x3cdb140, 0x7fb02d2b, 0x89a71ab0, 0x144a42cf, 0x4a2bdff7, 0xcf70c9c0, 0x94a589cc, 0xf716efcf, 0x74844af1, 0xd685530c, 0xb07ff1a, 0xfef084fc, - 0xd27df7af, 0x000112, 00000000 + 0xd27df7af, 0x000112 } }, { @@ -61908,19 +61906,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6845e721, 0x56a3ee44, 0x7e942215, 0x7abe4fd8, 0x9edb9e8, 0xaf0a878d, 0x522df397, 0x777287ef, 0x22527cc0, 0x1f7a8e97, 0x75d9eb2b, 0x463b893a, 0xe077c971, 0xee184183, 0x989d2e62, - 0xbbee7d78, 0x000139, 00000000 + 0xbbee7d78, 0x000139 }, { 0x91fa0047, 0x8bb6f052, 0x37737282, 0x5ffe03df, 0xee23b58b, 0x1e851a2f, 0xb78d6330, 0xb52d3a99, 0x59cede2, 0xd5f64dee, 0x9bd8e5c3, 0x3bdcc801, 0x87bc7c72, 0x1b982d8f, 0x7f0b4eb9, - 0x4a43a8a9, 0x000022, 00000000 + 0x4a43a8a9, 0x000022 }, { 0xf9ea3218, 0x3c809c3a, 0x5caa69c6, 0x45891ecc, 0xa1524dcb, 0x54b004f1, 0x123f257e, 0x64856f66, 0x43eb0807, 0xb231732f, 0x6e25bfca, 0xfc27bb47, 0x7e30a743, 0x7fd6edbe, 0xa1385de3, - 0xa915bda6, 0x0001b1, 00000000 + 0xa915bda6, 0x0001b1 } }, { @@ -61928,19 +61926,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x365c60ec, 0x32231c, 0x71cce080, 0x48eb8601, 0xcdd27ebf, 0x3d0d1f0d, 0x4683ebd8, 0x915ddb3a, 0xce5c3ed7, 0x7500136, 0x6582ed4f, 0x7f59f498, 0xb40c02c4, 0xe108ea1b, 0xf3b5427c, - 0xaea8d135, 0x00002d, 00000000 + 0xaea8d135, 0x00002d }, { 0x7d605b28, 0xaa7d21fd, 0x805e4273, 0x7c67e1c0, 0x43d6157b, 0x76de6baa, 0xf4148975, 0xed1c9929, 0x718b550, 0x10dee5a5, 0x1a8d9014, 0x43aae95d, 0x599111bd, 0xd92c93d1, 0x1e6749e7, - 0x90668997, 0x000125, 00000000 + 0x90668997, 0x000125 }, { 0x4ad4e05, 0x52108f5c, 0x33284a0e, 0xc1d64a10, 0x8bb42448, 0x5efa87ad, 0x3bdbf6ee, 0x5b7f46fc, 0x5428fc46, 0x150a228e, 0x3687914e, 0x8ac2dcd6, 0x8ec794ba, 0xf24ad1f8, 0xc5d64f79, - 0xf9c3109f, 0x000030, 00000000 + 0xf9c3109f, 0x000030 } }, { @@ -61948,19 +61946,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe2d34468, 0xa182c473, 0xa31ae0ce, 0x1196e608, 0x1f1f553c, 0xedbaa339, 0xcee58599, 0x542a7e58, 0x8259c0ff, 0xdeed0028, 0x61264516, 0xeb0591dc, 0x89192a6d, 0x801cba79, 0xa4432fc9, - 0xdfb68da8, 0x000166, 00000000 + 0xdfb68da8, 0x000166 }, { 0xedabd996, 0xaec51eb6, 0x6af3434e, 0xd742ba5f, 0x51383321, 0xb002162d, 0xdeeacd66, 0xb8f1b8cf, 0x2cdee0c0, 0x81b50ea6, 0xad9955d4, 0x9ce669bb, 0x9dd59b52, 0xcc967f84, 0xcc702e35, - 0xb530f469, 0x000074, 00000000 + 0xb530f469, 0x000074 }, { 0x3b558225, 0x59797a8e, 0xa1e9c2dc, 0xbc4e21e, 0x35614213, 0xf41bc5c1, 0x49ea940, 0xbfce67c6, 0xd779daa5, 0x933ef21f, 0x706219a, 0x72d4cfb0, 0x366216f7, 0x223e135f, 0x50d61fb2, - 0x33adec39, 0x00009f, 00000000 + 0x33adec39, 0x00009f } }, { @@ -61968,19 +61966,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x88c24efd, 0xf1e09422, 0xa0234d4f, 0x2b736ba7, 0xc82e8794, 0x8404f1a9, 0x3af81616, 0xc563f98b, 0x60734a4d, 0x5de74635, 0x6184ccc1, 0x923d8b6a, 0x501c00fe, 0x45ae5a88, 0x4b8e3a84, - 0x561be3cf, 0x0000b8, 00000000 + 0x561be3cf, 0x0000b8 }, { 0x2b87bdc5, 0x4e837d4c, 0xdc0a1d, 0x18e888ae, 0x8e60d2dd, 0xb892cce, 0xcb088016, 0x3bdd829f, 0xe9132615, 0x85b33c7b, 0xac06fa06, 0xd962e999, 0xf743075f, 0xc1707297, 0x892d177e, - 0x971d2f0, 0x000039, 00000000 + 0x971d2f0, 0x000039 }, { 0x8b11d64f, 0xb53567b9, 0x524e50be, 0x749e27e7, 0xffbba66e, 0xe8343bd8, 0x977b5beb, 0x2a12726d, 0xa8eaa58d, 0xa839fc21, 0x1af036ad, 0x6795bcc6, 0x31413031, 0x64dd2c5e, 0xef32fc06, - 0x988d650f, 0x000080, 00000000 + 0x988d650f, 0x000080 } }, { @@ -61988,19 +61986,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x54b148a5, 0x78213762, 0xfdc3c26e, 0x932bacf0, 0x3dcc0bae, 0x3883a5f5, 0x47a53434, 0x29069416, 0x8716b785, 0xda8019f5, 0x20992405, 0x1cd2233a, 0xaa566562, 0xff4b788f, 0x3d3656b3, - 0x416eb51d, 0x000029, 00000000 + 0x416eb51d, 0x000029 }, { 0xd0969b49, 0x764430f2, 0xaed7ffde, 0xb4b5ee85, 0x71f095c3, 0xd5d27072, 0xd035096d, 0x9b805a2e, 0x63d9606b, 0x5e50e805, 0x45d8c887, 0x3d023d8b, 0x3e448551, 0xe803bfc4, 0x8b5e97d4, - 0xafa989c9, 0x0001f2, 00000000 + 0xafa989c9, 0x0001f2 }, { 0x42113bfc, 0x25457d26, 0x642afee9, 0x28cc25c8, 0x2b693cc1, 0x8f0ca1d5, 0x253a5fa7, 0x92c54ad8, 0xd7342b96, 0x76035bd1, 0xc3e992e5, 0x1ba6bc25, 0xd33d684c, 0xbc229002, 0xe64ffe68, - 0xd41d2e9e, 0x0001dc, 00000000 + 0xd41d2e9e, 0x0001dc } }, { @@ -62008,19 +62006,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3edd9a94, 0x12531fa1, 0xa6fe8da6, 0x1ee27e4b, 0xc920c710, 0x984225d0, 0x89124583, 0x4095db9b, 0xd0175f90, 0x9914a368, 0x521319b5, 0x55121562, 0x20d77dde, 0xe6f1f48a, 0x9a337baf, - 0x529ea1cb, 0x0001fa, 00000000 + 0x529ea1cb, 0x0001fa }, { 0x6de34473, 0xee85ac4c, 0x6f09ec45, 0xf2f8e038, 0x542f2045, 0x7f05d284, 0x9e2d510, 0xc05870a7, 0x8b14e6be, 0x648c27be, 0x880e1ac5, 0x72830266, 0x4f0fba9e, 0x91355679, 0xcaf135c6, - 0x9e632744, 0x000020, 00000000 + 0x9e632744, 0x000020 }, { 0xef07a7a7, 0x3a449716, 0x6c72430b, 0xa8a90482, 0xbd1c399, 0x69133555, 0x845ec211, 0x216ca5a9, 0xd7be0362, 0xd11444e4, 0x98a99f69, 0x57c6e9b9, 0x4de2721d, 0xc1ea2b85, 0x838fdd04, - 0x9686438, 0x000172, 00000000 + 0x9686438, 0x000172 } }, { @@ -62028,19 +62026,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9636f535, 0xd81fb7ec, 0x12a43647, 0x37adb37f, 0xf3529d87, 0x25ef9e3d, 0x463defc8, 0x14ac93f7, 0x1c59b57e, 0x90e97fb8, 0xefd6cc1a, 0x7a6f9048, 0xa4cf9354, 0x2c780f89, 0xba8cd478, - 0x6e41c140, 0x0000b6, 00000000 + 0x6e41c140, 0x0000b6 }, { 0x4176a6fe, 0xc704446c, 0xff16d11f, 0xda5d74fc, 0x7e00bb66, 0x9f83df2a, 0x6a98b5fd, 0x2ba89bf2, 0x6dea9f28, 0x853ed0ed, 0x956cf332, 0x1ae53271, 0x1d1a16fa, 0x948aac34, 0xbaca5d8f, - 0x3b853ffd, 0x00010a, 00000000 + 0x3b853ffd, 0x00010a }, { 0xf58e5663, 0xcbc36d4b, 0x997678d2, 0x2441b4a, 0xa012c37e, 0xd29306a9, 0x81f0b642, 0xe9269865, 0xb563c303, 0x64cde2cf, 0x945bec61, 0xc4d5a287, 0x96810b8a, 0x5f870892, 0x307ce0f3, - 0x61409471, 0x000145, 00000000 + 0x61409471, 0x000145 } }, { @@ -62048,19 +62046,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x32bcab5a, 0xa93c3a77, 0x625823e1, 0xb79ee19f, 0xfd35e23a, 0x2b65b9d3, 0xd896adc9, 0x38d74471, 0x72290af7, 0xfb698f24, 0x6f7b5b80, 0xcbb5b1ac, 0x85535e60, 0x4e401301, 0x881bd2b4, - 0x606b2613, 0x0000f5, 00000000 + 0x606b2613, 0x0000f5 }, { 0xd87fbbc7, 0x4005600c, 0x3924c988, 0xb6916147, 0x84358e09, 0x45b67349, 0x5a595981, 0x4c2a2f02, 0x5889d7da, 0xea974060, 0xaf5233f7, 0x3c6646f8, 0x93f82132, 0xf07d7d4f, 0x416f131d, - 0xe336bc36, 0x000082, 00000000 + 0xe336bc36, 0x000082 }, { 0x554d314c, 0x2c4f6876, 0x856895e6, 0x15af92df, 0x8b323c8f, 0xdb6ff250, 0xedd46d4b, 0x8290e777, 0xcb6e3e20, 0x89885f3d, 0x6cc3c20a, 0x37132aaf, 0x71096b67, 0xc76b93d7, 0xbc7fa221, - 0xb50580f9, 0x0000f3, 00000000 + 0xb50580f9, 0x0000f3 } }, { @@ -62068,19 +62066,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x96c1e0fa, 0xab7a1668, 0x2872b124, 0x65117a6f, 0x832292d3, 0x25c6dec0, 0x7cd3cebd, 0x6867ba27, 0x92ba952f, 0xdd1310ec, 0xb133ddb7, 0x711e6eb4, 0x35117587, 0x1a763724, 0x57a94acf, - 0xe1813ae, 0x00005b, 00000000 + 0xe1813ae, 0x00005b }, { 0xc3c7d9ed, 0xa65ed900, 0x52ad2b49, 0x1f68dda1, 0x2bf352ea, 0xd525c60f, 0xcee1408b, 0x643725b6, 0xd8096e63, 0xa7754452, 0x93661518, 0xbd70c577, 0x5cb63ebe, 0xa1ebfbb8, 0x6f9fcea6, - 0x6941fe92, 0x0000f1, 00000000 + 0x6941fe92, 0x0000f1 }, { 0x12c14e1e, 0x8ac68547, 0x799eb74b, 0x3276af61, 0x7400d0b0, 0x30312ae6, 0x64ea84ad, 0xe0ca1213, 0x9d2c10a, 0xcb328596, 0x2f6cfed2, 0x60ec2c1c, 0x72b841b2, 0x782b553a, 0x97cc417c, - 0xde4af77, 0x000044, 00000000 + 0xde4af77, 0x000044 } } }, @@ -62090,19 +62088,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x70cc0a86, 0xc059344c, 0x39e879de, 0x167369f8, 0x426e43df, 0x5a4078b0, 0x6bcb054, 0x757df16, 0x4ce2ae09, 0x5bad2fc2, 0xec874600, 0x7b7c44a8, 0xd1ba62f0, 0x6108ab0e, 0xbfdedc07, - 0x792748c5, 0x000174, 00000000 + 0x792748c5, 0x000174 }, { 0xd8fbf249, 0x7f35e100, 0x964c650c, 0xa97bbadb, 0x2ccd4032, 0x62790321, 0x2be2c0f5, 0x92cb6494, 0x25fac0, 0x9c726736, 0xe6164d2b, 0xe8f17201, 0x2f5e84f, 0xa1ed7b72, 0xcfe4d424, - 0x5c54452a, 0x000151, 00000000 + 0x5c54452a, 0x000151 }, { 0x83804a44, 0x54a60ac2, 0xd0277b8b, 0x6038858e, 0x6d9f6bec, 0x90f250ec, 0x7453ccad, 0xe7a1b5b3, 0xf6f3ac5, 0xfa20b468, 0x824d5702, 0xda94c739, 0x93feece1, 0x7de4a579, 0x4255422a, - 0x86f27b5a, 0x00005a, 00000000 + 0x86f27b5a, 0x00005a } }, { @@ -62110,19 +62108,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xff0181c6, 0x7de750fb, 0x5ce081da, 0xb26d284c, 0xf8b5c560, 0xe9b754e9, 0xfe36b65d, 0x958070b8, 0xb1cdf0e5, 0xb954da3b, 0x159a0671, 0xf883dedf, 0xfb443c66, 0x84ea179e, 0xde475304, - 0x3d7a814c, 0x00013a, 00000000 + 0x3d7a814c, 0x00013a }, { 0x19cabaf4, 0x93ea7285, 0x292bbc3f, 0x31590683, 0xf42346f6, 0x61bbb761, 0x7378daaf, 0x1ad96fa0, 0xc3c71549, 0xe2778087, 0x7bcfd4fd, 0x83588e76, 0xf5c117e9, 0xb9cebe99, 0x511b8223, - 0x7a834400, 0x0001a8, 00000000 + 0x7a834400, 0x0001a8 }, { 0x3b895476, 0xf38083dd, 0xb698ba7a, 0x20c9ddcf, 0xd5f7e04d, 0x2825e058, 0xbd5cbb31, 0x88f42477, 0xa73363da, 0xc9b6ad37, 0xf85715eb, 0xee5624f1, 0x131b4053, 0x81d18584, 0x590b34, - 0xa0d13758, 0x000014, 00000000 + 0xa0d13758, 0x000014 } }, { @@ -62130,19 +62128,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf0cb13b, 0xbd342b40, 0x2599fc02, 0x1d4de614, 0x9f14321c, 0x3d6af51d, 0x397f5daf, 0x2d34a57c, 0x4bf3a9cf, 0x8531eb59, 0x8b888867, 0xa3eec61f, 0xc766f404, 0xb249b9b7, 0x1fe7fd0f, - 0x32474c80, 0x000058, 00000000 + 0x32474c80, 0x000058 }, { 0xddd28374, 0x854dea94, 0x3e900725, 0x29863a73, 0x863bc015, 0x40c7dd5f, 0x3d3b5e23, 0x16538f6, 0xaf14e63, 0xe34864b4, 0xe479afe0, 0x98f401c6, 0x284002fe, 0x75bfb264, 0x53b80a4e, - 0x7f524f31, 0x00004e, 00000000 + 0x7f524f31, 0x00004e }, { 0x5a0a2efb, 0xa71597cb, 0x25e92a0e, 0x5b41f34a, 0x8268294c, 0xdda62627, 0x2c2dd98e, 0x16c76e94, 0xb4b83598, 0x3243c23a, 0x6820d7ae, 0xda47b0be, 0xaf8bdd07, 0x3c3eb98, 0xa6784a16, - 0x9743bd5f, 0x000184, 00000000 + 0x9743bd5f, 0x000184 } }, { @@ -62150,19 +62148,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa25d38d6, 0x42d3351f, 0xe6ad3e50, 0x6b73b717, 0x4c2187ea, 0x24029f16, 0x78abc750, 0x7097fa77, 0xce3c010f, 0x27f32f9d, 0xa46dc76e, 0x51614bc, 0x9e879eb7, 0x1323407b, 0x6c0fc7da, - 0xceea74d6, 0x000177, 00000000 + 0xceea74d6, 0x000177 }, { 0xc40c49bc, 0x9d343796, 0xc7ebd80, 0xebd403bb, 0x22f3c08d, 0x76770fad, 0x6d5b0e66, 0xbc5d75df, 0xcc2c22aa, 0xea0d99bc, 0xdb9dfe24, 0x97ee3f02, 0xe0a2bb2b, 0xcfe00327, 0xcbd15da0, - 0x98d21011, 0x000161, 00000000 + 0x98d21011, 0x000161 }, { 0x52286fdd, 0x49b377fa, 0x5f0ce2ad, 0x2454d963, 0x2e9a48a3, 0x26cb2fcf, 0xd341735f, 0x703ee5c7, 0xdf0853bb, 0x40d3372a, 0xed8224c5, 0x713647e3, 0xfa25eaee, 0x1a45a8f8, 0x82bfb6a9, - 0xa44c5c0d, 0x000027, 00000000 + 0xa44c5c0d, 0x000027 } }, { @@ -62170,19 +62168,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc6abf6ee, 0xaf60c8b, 0x24824eb4, 0x38102113, 0x8b540a67, 0x78cced39, 0x5a877077, 0x5d3d8b58, 0x8e0c8c36, 0x4b8c9be6, 0x79b072cd, 0x27d40301, 0x7de1e30d, 0x4bd15d90, 0x43262f6f, - 0x3400ccdf, 0x0000cd, 00000000 + 0x3400ccdf, 0x0000cd }, { 0x7a636424, 0x822c41e2, 0x8f635277, 0x7ad885cd, 0x833f60dd, 0xef83be41, 0xb3a0c8b2, 0xb135811c, 0xe2e079ad, 0x2b948fac, 0xb1ba08d0, 0xdb48c8de, 0x7e5b4f51, 0x21239637, 0x8327d5b7, - 0xcf0ec2db, 0x000064, 00000000 + 0xcf0ec2db, 0x000064 }, { 0x6c1d542a, 0xd1f44646, 0x8f5d344f, 0xd3fe5d5a, 0x7fc494f, 0xf2d2fbf3, 0x69210b24, 0x870f3c25, 0x20e4eecf, 0xd286a0ee, 0x6b17b7bc, 0xb84ae00, 0x13e122ba, 0xc8234cb1, 0x8c427a5, - 0xe3cfd0d9, 0x00007f, 00000000 + 0xe3cfd0d9, 0x00007f } }, { @@ -62190,19 +62188,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x76163041, 0x141f7bf1, 0x7504eb37, 0xe4ed8791, 0x42cd32d0, 0x2a06f836, 0x6847a9f5, 0xd97623cd, 0xf124b0a4, 0xf160f076, 0x76522d1a, 0xd65481a, 0xdec7de4b, 0xac6c1f46, 0xf2b09a89, - 0x5962f7b3, 0x0000b8, 00000000 + 0x5962f7b3, 0x0000b8 }, { 0x4a30f8ca, 0x33144ec7, 0x76720a79, 0x93d6b763, 0x3b31cb05, 0x4dc5c1c9, 0xf080fb1d, 0x77bb60a2, 0x336cf8e0, 0xe60b6629, 0xf0788b83, 0x400ba0fd, 0x3fc687c6, 0x8c84359e, 0x9b156bb9, - 0x2d680c3c, 0x000099, 00000000 + 0x2d680c3c, 0x000099 }, { 0x79fbc50a, 0xa0c60539, 0xef154196, 0xeabedfae, 0x3d5345f7, 0xb95940a1, 0xe9cda8aa, 0xb74a5841, 0xea451277, 0x77e56375, 0xdc0881f4, 0xf37f509a, 0xb9c61a77, 0x57dc5b10, 0x4c7361c2, - 0x1e1892e5, 0x0000de, 00000000 + 0x1e1892e5, 0x0000de } }, { @@ -62210,19 +62208,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc834bcec, 0x14895046, 0xe94f90db, 0xab3bd2b, 0x7cf345ff, 0x949324d1, 0xe0a1fefd, 0x16b460a9, 0x37ef0ea0, 0x587a2e9e, 0x9076c9a6, 0x700a14e2, 0xe9a3b3b5, 0x941eacf9, 0x497f68ac, - 0xc6d2c2aa, 0x0000cc, 00000000 + 0xc6d2c2aa, 0x0000cc }, { 0x5ad60f13, 0x756a46ea, 0x7e58557, 0x94a47b6d, 0x5fa1b3cd, 0x3f534ac7, 0x5db758a, 0x574169c6, 0xdf42f35c, 0x6b81853b, 0x4ab2af1a, 0x5dae9086, 0x10b0ea9c, 0x81152cd0, 0x7521b55d, - 0xced4dcd9, 0x000044, 00000000 + 0xced4dcd9, 0x000044 }, { 0x9536ab3e, 0x5bed19eb, 0x8df5f9e3, 0xbe05bd2a, 0x3efdb2ca, 0xeb9345a, 0xe0336ae8, 0xf3eaf841, 0x766b71ac, 0x6a4f70ff, 0xe95c9593, 0x9f31a160, 0x511837a6, 0x346a3993, 0x8078f4c8, - 0xb21a490b, 0x0000ca, 00000000 + 0xb21a490b, 0x0000ca } }, { @@ -62230,19 +62228,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa73472b3, 0x114e416e, 0xebc2281b, 0x8847abdf, 0x942d6de9, 0x1d51e39e, 0xec09fba, 0x563f6900, 0x7d0fb337, 0xd0dc4e2d, 0x3df51f2c, 0x5e2282c3, 0xa3eefd0c, 0xa6565441, 0x46c4642f, - 0x61f79d31, 0x000006, 00000000 + 0x61f79d31, 0x000006 }, { 0xd7e2ddc7, 0x6d8db908, 0xb5630178, 0x27ee5d90, 0x368634c0, 0xbae503ac, 0x4e5620f4, 0xcb5f6c21, 0x50371691, 0x5070c1d1, 0xf0e58d87, 0x87e67c48, 0xf17ce8ee, 0x5e2c589e, 0x648862a9, - 0xe11a135, 0x000012, 00000000 + 0xe11a135, 0x000012 }, { 0xdf4a8ffb, 0x82e564d, 0x8326635a, 0x635ce76e, 0xbfdf743c, 0x1d5ca079, 0xbecd1093, 0x8e8ec588, 0xcc755be6, 0x9156dec, 0x430c239b, 0xf8b37136, 0x732d57bc, 0x1c3f7ae3, 0x6b7f0879, - 0xaa52659e, 0x0001b5, 00000000 + 0xaa52659e, 0x0001b5 } }, { @@ -62250,19 +62248,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf2672a1, 0x8614efe2, 0x8cc7fe0, 0x13f4791d, 0x57ddc9ec, 0x2ffcd488, 0x36cd5967, 0xcd6e41d8, 0xf71966ce, 0xcf2c7563, 0x99469e63, 0xf4259aa0, 0xd991769b, 0xc75ae96e, 0xaee1229a, - 0x40b33b27, 0x00017b, 00000000 + 0x40b33b27, 0x00017b }, { 0x745f5c89, 0xd343599, 0x2612c793, 0xbc609b54, 0x28cc8ce6, 0xebb1fc08, 0x2abd3628, 0xccecc271, 0x8f8cd41, 0x26c38556, 0x7ad44ffc, 0xf3a77554, 0xd843cfe9, 0x765e99d1, 0x97f4814d, - 0xcd2e9513, 0x000039, 00000000 + 0xcd2e9513, 0x000039 }, { 0x3d8f9e0d, 0x6026f565, 0xbc503c10, 0xe5cb8e1b, 0xab398668, 0x4591edb0, 0x646ecaaf, 0x4e0f3be6, 0x98be6069, 0xa66ca003, 0x6093ce04, 0xb86c9c8, 0xc36ec8c9, 0xcdb1c50b, 0x92c031bb, - 0x61b07d3d, 0x000105, 00000000 + 0x61b07d3d, 0x000105 } }, { @@ -62270,19 +62268,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8fd01fe2, 0x9d522115, 0x6e269fe0, 0xf27496e3, 0xcc0b9539, 0x4b876762, 0x91befdde, 0x213fa72a, 0x927c40e, 0xaf05ea6b, 0x7b85a11f, 0xf9877c5a, 0x51212e9c, 0x5da60d4a, 0xb55c716b, - 0x3c9cbbf8, 0x0000b1, 00000000 + 0x3c9cbbf8, 0x0000b1 }, { 0x9e107894, 0x6434e636, 0x451affed, 0xf41cc8b7, 0xb5b84b9b, 0xa1d9902b, 0x136cc12, 0xc82c951d, 0xfae0c1a8, 0x89205e6f, 0xe443a9b8, 0xa47e0911, 0xb28f392, 0xd3d15d3b, 0xf9d19d53, - 0x28c58bde, 0x0001e0, 00000000 + 0x28c58bde, 0x0001e0 }, { 0x36b1cc29, 0x41efbf80, 0xa8350ea4, 0xa52fb734, 0xeabc157b, 0x7e922678, 0xbffe5b80, 0x2f4953d9, 0xf0d17f6d, 0xc32e2d1b, 0x6ab5f3b2, 0xcaaa2379, 0xe3f84cac, 0xa639c228, 0x9b3ed098, - 0xf0d5cc25, 0x00000b, 00000000 + 0xf0d5cc25, 0x00000b } }, { @@ -62290,19 +62288,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2468fc6f, 0x2a97bdde, 0xbbc5c478, 0xcd8cdf9b, 0xfef555ca, 0x25bd9bd2, 0x4a9709c7, 0xe2f248ec, 0x353505c3, 0x514f64c4, 0x884262bf, 0x1637282c, 0x35587837, 0x31aa5d5e, 0x7064d913, - 0x4fac0b7a, 0x0001b5, 00000000 + 0x4fac0b7a, 0x0001b5 }, { 0x5a885d4f, 0xe34c0fa7, 0x918a3be5, 0x724e9398, 0xe1f4ed81, 0xf60d68a8, 0xe44ce2dd, 0x590eb831, 0x171ab5c9, 0xfdd69a1e, 0x2a788a34, 0x4da55141, 0x1ea0d789, 0xb7221486, 0xc7c39c1, - 0xfe3d592a, 0x000037, 00000000 + 0xfe3d592a, 0x000037 }, { 0x60d214bd, 0xcc5f61, 0xb92cfd00, 0xd1d86d12, 0x9f40d0dd, 0xab359634, 0xab2e4de7, 0x966dc859, 0x50d01ec0, 0xff01257c, 0x936fba90, 0xd63ade37, 0x6d66025b, 0x6b8a1509, 0x157af6f6, - 0xbc02a174, 0x000179, 00000000 + 0xbc02a174, 0x000179 } }, { @@ -62310,19 +62308,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf5d7be3, 0x58062582, 0x9d6e5f9a, 0xff8a17fc, 0xb1e774a1, 0x5c10fb86, 0xc48ee5eb, 0xcb8ff4aa, 0x32eb0b81, 0xe0d86221, 0x366a63d1, 0x7e4e0188, 0xd100ef6d, 0x7cef34c, 0x2c4971a7, - 0xd58ba6d6, 0x00009f, 00000000 + 0xd58ba6d6, 0x00009f }, { 0x9815b3f4, 0x717bdbc4, 0x82bca5d3, 0xc9580d16, 0x26cb5b3a, 0x2c93b2ac, 0xe6aed9b3, 0x8b86ab31, 0xc4c6bfd5, 0xda69f405, 0x2aad20de, 0x54262c12, 0x5e4e24bd, 0x200f6cfc, 0x79920a64, - 0x6dd9d1d3, 0x0000e1, 00000000 + 0x6dd9d1d3, 0x0000e1 }, { 0x9bdee292, 0x559fc596, 0xbebfce7a, 0xb8ef1b2e, 0xe5ca505b, 0x9d8506ed, 0xb90a7fb4, 0x6ea08144, 0xa31b673c, 0x484ad2ae, 0x3b077b6d, 0xcfc72f9e, 0x3598f330, 0xb6ce6dd5, 0x77eb84e8, - 0xb9e2b02b, 0x00018c, 00000000 + 0xb9e2b02b, 0x00018c } }, { @@ -62330,19 +62328,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4884495e, 0x9930652, 0xa9007016, 0x62f719dc, 0x9bdb2f8d, 0x9fcaafb6, 0x63883c8d, 0x7c99936e, 0xb281d143, 0x799a868a, 0x2e4e98a2, 0xae71ee16, 0x7382b696, 0xc9701380, 0xd40dcd6f, - 0xe0aa2a7c, 0x0001fd, 00000000 + 0xe0aa2a7c, 0x0001fd }, { 0x36006e33, 0x7a71c2dc, 0x22ec89f1, 0x362de095, 0x6c86627a, 0xb51a894c, 0xe3e84c6a, 0x8e5583c3, 0x2a89b9df, 0xb1849853, 0x6f4c2810, 0xefb74ad6, 0xc76352ce, 0x77712476, 0x7cc5869d, - 0xf7156863, 0x000041, 00000000 + 0xf7156863, 0x000041 }, { 0xa3646df0, 0x869936e0, 0x7291d024, 0xb15ee42d, 0x7f8ee116, 0x9555f9ad, 0x5fbb299a, 0x9ffba665, 0x8e59e52b, 0x8a7a82c5, 0x4690af95, 0xf3275067, 0xebc05f6f, 0xac8be643, 0x56a0375e, - 0x867c7801, 0x0001d1, 00000000 + 0x867c7801, 0x0001d1 } }, { @@ -62350,19 +62348,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc635047b, 0x5451d2cd, 0x118027c5, 0x652f3dcc, 0xe41595ae, 0xa68f4036, 0xb49039d, 0x7f00e239, 0xbce3d3a7, 0xb3ca3fd9, 0xe78226f8, 0xccc36f76, 0xd392852d, 0x6dcbb8d5, 0xbcb1a10f, - 0xb07a1f17, 0x0001d0, 00000000 + 0xb07a1f17, 0x0001d0 }, { 0xf9e1276d, 0x53561f52, 0xe2975baf, 0x2b92a751, 0x5959a8f4, 0xb8d0425d, 0xf2d94191, 0x38e09d66, 0x9f5fecb7, 0x125f0c0f, 0xbf5dada9, 0xd635adf7, 0xec2b3a5e, 0xbdc87d3d, 0x638135d6, - 0x75b23835, 0x0001c4, 00000000 + 0x75b23835, 0x0001c4 }, { 0xcba27fe, 0xca7dc9ec, 0x91eba63a, 0xaa72dc26, 0x2b9879c2, 0x7f947022, 0x910d3ae9, 0x303968fe, 0x2140d99a, 0x8d706f9f, 0xbba69c4, 0xb073831b, 0xa95251e1, 0x7d1df869, 0x66be8442, - 0xc9002bdb, 0x000052, 00000000 + 0xc9002bdb, 0x000052 } }, { @@ -62370,19 +62368,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcba97551, 0xd967b24b, 0xbe4453ef, 0xd0e5b0f9, 0x215bdb6b, 0xabab8db, 0x8247de74, 0xebf4c6bf, 0xac55d5e9, 0x7c77733d, 0x4f8a939f, 0xde895a4, 0x60e616e4, 0xa16c7949, 0x815f6a18, - 0xc5332b9f, 0x000073, 00000000 + 0xc5332b9f, 0x000073 }, { 0xc1d313d2, 0xc227fbc0, 0x9bd09f66, 0xe64347d4, 0xc8e1463e, 0x3f4043ca, 0x28bbd66f, 0xe778c458, 0xcda582c7, 0x62ea8063, 0xd48fb1b0, 0xe5cdebd2, 0xe87c29a3, 0x85e49f90, 0x518fa9de, - 0x7d792ffc, 0x000081, 00000000 + 0x7d792ffc, 0x000081 }, { 0xefed2c09, 0xebfc2082, 0xec25844d, 0x805dc4ad, 0xf251b857, 0xb45736a3, 0x5b4ca932, 0x7e6629eb, 0x90d37fc9, 0xaa59d833, 0xfeee64a0, 0x34e1f576, 0x56c7bf39, 0x94ec3a2a, 0xd8bb45a7, - 0x707aa55e, 0x000184, 00000000 + 0x707aa55e, 0x000184 } } }, @@ -62392,19 +62390,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5e6f4904, 0xf454aee6, 0x504e597d, 0x40e6c0ea, 0x4b45f881, 0x8f48a414, 0xfc964161, 0x544af771, 0x557884b4, 0x3b925c2, 0xbdb56d4a, 0x12dcc24b, 0x7dcbada2, 0x2e646485, 0x503ccd1e, - 0xef9de3da, 0x0001a6, 00000000 + 0xef9de3da, 0x0001a6 }, { 0x3cf7d201, 0x5003a761, 0xc3ef1667, 0x4ae74af9, 0x7e3803b0, 0xf19dd20, 0x70dde886, 0xc2ca508a, 0x5e0d91c1, 0x6487ad48, 0xba6fd396, 0xe20b6e64, 0xa316cce7, 0xd20d4c20, 0xc452a734, - 0x171c3cbd, 0x000099, 00000000 + 0x171c3cbd, 0x000099 }, { 0x8e4ac8e9, 0x623603a9, 0xb1c0b2c0, 0xda033530, 0xad1f373, 0x5538c9a1, 0xd64a67c4, 0x9ee0ab86, 0x2e240678, 0xe06dccf1, 0xf17a9fa7, 0x3d611dc9, 0x74221263, 0xe608fc76, 0x980b79b5, - 0xf0ec1691, 0x0001fd, 00000000 + 0xf0ec1691, 0x0001fd } }, { @@ -62412,19 +62410,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb7560e1, 0x67b36b94, 0x2a3917e2, 0x11274451, 0xc643b261, 0x19f8b162, 0x3feaaf71, 0x58f474d, 0x11d73f32, 0x8d0107fb, 0x70ae7843, 0xedc3037a, 0x4c987146, 0x6e0a4038, 0x4b6c7e07, - 0x67cf9f3d, 0x0001d4, 00000000 + 0x67cf9f3d, 0x0001d4 }, { 0x9cda9dde, 0xd85eb66f, 0x39750ae1, 0xb5c12b81, 0x104147fc, 0x55eeb708, 0xf049b98, 0xeec4ccc4, 0xcb293291, 0x30ef8a29, 0xb9189c1a, 0x31eba937, 0xb0427a54, 0x3fe3ca31, 0x551d1e50, - 0xabb93b65, 0x0001ed, 00000000 + 0xabb93b65, 0x0001ed }, { 0x1eea48b7, 0x1c38ed94, 0xbfafdd22, 0x198a8b92, 0x4fd92148, 0x3b021e74, 0x9f104c96, 0xc54a7155, 0x4fbfd983, 0xa301c79c, 0x45a8186f, 0x2e2b822b, 0xe8683fdb, 0x463bc46e, 0x6a496378, - 0xe6f2f538, 0x0001f0, 00000000 + 0xe6f2f538, 0x0001f0 } }, { @@ -62432,19 +62430,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x926e9ef4, 0xcc53ebd3, 0xac10450c, 0xe70d96d8, 0x448e6a4d, 0x6531d5e8, 0x97336582, 0xbf58e1b2, 0x31266bd9, 0xf8fc1a82, 0x694a4fcc, 0x681121d3, 0x82c6e65, 0x8b42aa24, 0xe89450d1, - 0xe42a82fc, 0x0000e1, 00000000 + 0xe42a82fc, 0x0000e1 }, { 0xf00f821c, 0xb18d51d1, 0x14bfcfe9, 0xf61e7a39, 0x5960124d, 0xe27ab56b, 0x48a28509, 0xdc8b2f8f, 0x5d7f11cd, 0x776f74e6, 0x7e1a6213, 0x280d35a3, 0xdede7f76, 0xbc3a10d1, 0x6fbc9141, - 0x25b27e3f, 0x000149, 00000000 + 0x25b27e3f, 0x000149 }, { 0xf9091b54, 0x909245b4, 0x423ca1f2, 0x36cd2a99, 0xdc4a9216, 0xbe84a133, 0xeb7b6283, 0xaeaaecdc, 0x76c30693, 0x116f0f43, 0x9b89bc47, 0x5a4a31e2, 0x699d333d, 0x225c6c26, 0xad4b0d9c, - 0xe1b1deb2, 0x0000a1, 00000000 + 0xe1b1deb2, 0x0000a1 } }, { @@ -62452,19 +62450,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3a5597e6, 0x2fd869a7, 0x82ebfc3a, 0x218428c6, 0x9b4873bf, 0xebf8f84f, 0xe6b832ee, 0x2dd17453, 0x4f5c39a9, 0xe809b55c, 0x590ac55e, 0x7595b8c3, 0xe52ab76b, 0xa7fb1a70, 0xc81c1c2, - 0x48b737f2, 0x00003f, 00000000 + 0x48b737f2, 0x00003f }, { 0xb383822, 0xf46df8f3, 0xaab08262, 0xf60edddf, 0xaef27049, 0xc867540c, 0xa943a860, 0xbb40387a, 0x51d11ade, 0x84b4c1dc, 0x75b07d46, 0x4ed9c239, 0x8a61bdae, 0x2e012012, 0x895916fb, - 0xb47377fe, 0x0001cf, 00000000 + 0xb47377fe, 0x0001cf }, { 0xf4c655ed, 0x6acdb3d9, 0x75e981a1, 0x83896e0e, 0x14152352, 0x4beacdf6, 0xdc53c99, 0x6123e246, 0x24c3721, 0x9a731bbe, 0xda265880, 0xa6cd2fb7, 0x451925f5, 0xc6629b4, 0x8024be1d, - 0x7ab5ccd5, 0x0000f3, 00000000 + 0x7ab5ccd5, 0x0000f3 } }, { @@ -62472,19 +62470,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x22b93021, 0xba06cc95, 0xa860c2, 0x5c8bb4ea, 0x186e66f6, 0x444bbfed, 0x79db892f, 0xb25579ce, 0x2abdae80, 0x933d926e, 0x893e9152, 0x904ed513, 0x1fe510e0, 0xf01a71ac, 0xe84d3715, - 0x1c31929c, 0x0001f3, 00000000 + 0x1c31929c, 0x0001f3 }, { 0xeb7e359a, 0x59d339da, 0x706ce483, 0xd5e353fc, 0xc1283787, 0xacd46169, 0xad3e379, 0xbe94a66a, 0xe092e801, 0xe5524f19, 0xe09e8f87, 0x873d5df7, 0x450ca2d8, 0x5fad11c4, 0x84836df2, - 0x8eda283c, 0x0001a3, 00000000 + 0x8eda283c, 0x0001a3 }, { 0x2cd7f046, 0x1f919d48, 0xfecfd63b, 0x38dd7fab, 0x8f0adbb9, 0x7cf867ca, 0x47f9ac1b, 0x49478471, 0x5ffcdbb, 0xa2489904, 0x19feeccf, 0x356fa040, 0x5b93694c, 0xd2046c4, 0x55a049ad, - 0x3eabbbbb, 0x0000f5, 00000000 + 0x3eabbbbb, 0x0000f5 } }, { @@ -62492,19 +62490,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfd0e4939, 0x8c7fd0a5, 0xbbbf275f, 0xafa6c222, 0xcd17cf11, 0x9d81c2f7, 0xce270b35, 0xfc6c3032, 0x839900fe, 0xfa0db59d, 0x77cc15cb, 0xfd40d76d, 0xa867d6a1, 0xe8fe95c6, 0xb50cc5cc, - 0x2c413016, 0x000045, 00000000 + 0x2c413016, 0x000045 }, { 0x3c881f21, 0x6506e65e, 0x2ed1f0ca, 0x903fea52, 0x8e7de4b4, 0x19c5afd5, 0xefba8835, 0xe695751f, 0x1ee87350, 0x83f361b0, 0xe828cb63, 0x9c7e0c2e, 0x53f07c8f, 0x373017f5, 0xb930ef94, - 0x9ed61d18, 0x00019c, 00000000 + 0x9ed61d18, 0x00019c }, { 0x880ea37, 0xabd9f9a0, 0x5eb82d0a, 0xa3a556bd, 0x946be386, 0x7375fe3a, 0x2d3ed67f, 0x4339b9e2, 0x3306b6bf, 0x608566eb, 0x99b612b7, 0xed2b011e, 0x3d3e1d5b, 0x3d110664, 0x351ef536, - 0x3244ba49, 0x0001a3, 00000000 + 0x3244ba49, 0x0001a3 } }, { @@ -62512,19 +62510,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x84564f0d, 0xde5c9b7, 0xfb9a449a, 0xeef1dc40, 0xfc19c66f, 0x7c4e34a0, 0x58e95a64, 0xef0e459c, 0xb9dead3c, 0x92ed74eb, 0x6b9b06a5, 0xb538c4c0, 0x2db7a055, 0x89a3ce09, 0x8dff0960, - 0xe38a57b5, 0x000079, 00000000 + 0xe38a57b5, 0x000079 }, { 0x73b86c07, 0xbd71017a, 0x86f188c2, 0x5cd2e765, 0x6f820e85, 0xd2289a1e, 0x5071a17f, 0xf126a9c4, 0xa58e1d78, 0x55a8aa6d, 0xa9b2ae94, 0xb9809988, 0xe7590f4b, 0x7147ba54, 0x3479da05, - 0xcc55dc22, 0x000197, 00000000 + 0xcc55dc22, 0x000197 }, { 0x1f1ee2d7, 0x4f77b072, 0x79f2d704, 0x3a46149e, 0xb1596e66, 0x94308514, 0x7b3c0bcf, 0x2642c794, 0xa3a82a4b, 0x90e874a, 0xa60fabf6, 0x7748c5a4, 0xe7b5ac0b, 0x4ebafbce, 0xb3b0e4c7, - 0x17f961ca, 0x000091, 00000000 + 0x17f961ca, 0x000091 } }, { @@ -62532,19 +62530,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1ca30b0e, 0xe6d26611, 0x6f7cc82f, 0x1e3830d4, 0xd8d370f4, 0x3d41cbd, 0x35086e3, 0x3f142bf8, 0x611d9bdd, 0xe76b7252, 0xdbf66a0c, 0xbe8fdd2d, 0xcc68d03b, 0xc463a004, 0x9d43d84a, - 0xf61e1d7f, 0x000131, 00000000 + 0xf61e1d7f, 0x000131 }, { 0x4b30d673, 0x60e7e41c, 0x85c8ee98, 0x9c22c2ca, 0xd4f6d698, 0x165ac7ef, 0xfcc7c3be, 0xa61341e2, 0xfe14edb4, 0x279d04c8, 0x4ef9f7c, 0x9a837a00, 0xad2e34a0, 0x2be91c89, 0xbf21d39d, - 0x3acadcd3, 0x0001bc, 00000000 + 0x3acadcd3, 0x0001bc }, { 0x4a63a4cc, 0xee6d5ea5, 0x8addd74c, 0xe0db4155, 0xb7960a8b, 0xa48d5f8a, 0xf8356ab2, 0xdafb10db, 0x86ffa34e, 0x174948fb, 0x6acaab3a, 0xf27cafac, 0x38db7289, 0x9ea3fb04, 0x24e18c88, - 0x5453b182, 0x00002d, 00000000 + 0x5453b182, 0x00002d } }, { @@ -62552,19 +62550,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7f87d69, 0x576eede, 0xdbd40f43, 0xf3f49475, 0xf15b89ad, 0xa2b32eb7, 0x13d1d016, 0xfcf505d, 0x9164ab92, 0x834b5bfa, 0x1641906f, 0x5fa788d2, 0x3acc5b7a, 0xdcb584c6, 0x8c39bc3b, - 0x302dcb10, 0x000117, 00000000 + 0x302dcb10, 0x000117 }, { 0x5098c1f5, 0xa03f87d8, 0xc860f2e9, 0xa8111c47, 0x797abf47, 0xd485d085, 0xbc2f5c3b, 0x9b1c34dd, 0xde0d12af, 0x2fd0393d, 0xba2cbd18, 0x1398d203, 0xd4dad11, 0xefacd0eb, 0xfe926d09, - 0x52317db4, 0x00018d, 00000000 + 0x52317db4, 0x00018d }, { 0x124a11eb, 0x3cb208e8, 0xb399d78d, 0x7b0f387a, 0xcf713bf3, 0xbe6e24b0, 0x6ff731d1, 0x7f51074f, 0x24f720e7, 0x2b20f35b, 0x3eac2c5c, 0xb62770e5, 0x47594ac1, 0x6f7e3704, 0x92dc545f, - 0x2e671a25, 0x000161, 00000000 + 0x2e671a25, 0x000161 } }, { @@ -62572,19 +62570,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb2c003a8, 0xe4b4eb36, 0xe8dc4634, 0x24a80245, 0xd67c5424, 0xde573c4, 0xdd93d988, 0xcafda10b, 0x6b665c53, 0x6c968b08, 0xda3817c1, 0xa246e93a, 0x93c2c40f, 0x9a8f089d, 0xce98baf5, - 0x97713fc6, 0x000097, 00000000 + 0x97713fc6, 0x000097 }, { 0x402c03b, 0xee3a97f7, 0x2f8e5f96, 0x14a92f3d, 0xed8d87a1, 0x7e2f765a, 0x331b9557, 0x5e8308f9, 0xc1eb7d61, 0x951db0ed, 0x87fa845e, 0xf31f4208, 0x9966f567, 0xfc186add, 0xf56ada80, - 0xcbd523c5, 0x0000de, 00000000 + 0xcbd523c5, 0x0000de }, { 0x6efbcd33, 0x95bb043e, 0x95afdef0, 0x29b4797c, 0x5c15fb28, 0xedac6520, 0x464bcec1, 0xc3a892c5, 0x8aff8664, 0xa02e6abc, 0x33a30da4, 0x58c46c35, 0x260b9212, 0x2be6ba86, 0x3c10e320, - 0x17f340f1, 0x0000aa, 00000000 + 0x17f340f1, 0x0000aa } }, { @@ -62592,19 +62590,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x31e2e52a, 0x6d92ad00, 0xfc71a5f5, 0x8244dd0d, 0x11c45bbf, 0x6904853a, 0xb0ff55e5, 0x4c3434dc, 0x7c53bd7d, 0xc434d6cc, 0x99e11137, 0x366d4102, 0xcdd05271, 0xc6cab34a, 0x6fd32dde, - 0x28ada0a8, 0x00003d, 00000000 + 0x28ada0a8, 0x00003d }, { 0xed1c5dc2, 0xed0f403c, 0x30a96ef1, 0xcfbd4731, 0x1e5b97dc, 0xeee7d6d5, 0xd9be76cf, 0x54a7851f, 0x709e6bf4, 0x48e69f3f, 0x61f21782, 0x4d55819c, 0x6a286ef2, 0x25afca29, 0xd95df4eb, - 0x571013b1, 0x000008, 00000000 + 0x571013b1, 0x000008 }, { 0x5115cf42, 0x5942fc47, 0x6bf2024b, 0x52c31786, 0x49f43360, 0xadc1197e, 0xe173ebb3, 0x34b2c3b6, 0x7205b61a, 0xd15b2bac, 0x6f822f1f, 0x55745850, 0x9c1a1179, 0xd4a4a235, 0xfada4adc, - 0x734c354d, 0x000074, 00000000 + 0x734c354d, 0x000074 } }, { @@ -62612,19 +62610,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1c83b6aa, 0xd7211481, 0x397b7d39, 0xbe7ba015, 0x2779ef9c, 0xdd65d1a2, 0xdfbaf66e, 0xdebdb1c2, 0x71ad3bdd, 0x81fbe777, 0xabbb712d, 0xf050057f, 0x9dab9c7c, 0x2fb4f8b1, 0x6f6859c1, - 0x8f152138, 0x00007f, 00000000 + 0x8f152138, 0x00007f }, { 0xa40c2736, 0x23c61fd9, 0xdd1b80fc, 0xa76e76e0, 0x64f237c5, 0x31f08987, 0x9c5b871a, 0xe7f9b069, 0x2d7e4c36, 0xd6e1ba47, 0x87f2cbe4, 0xbbeb9faf, 0xec1d13e6, 0x56f89342, 0x6002e392, - 0xb3d3f1b7, 0x000142, 00000000 + 0xb3d3f1b7, 0x000142 }, { 0xdd2a384e, 0xf1ffb969, 0x9b34ded8, 0xb17be6f5, 0x66498355, 0x6361b613, 0x22f47059, 0xa1b0eeb9, 0xd15b503e, 0x37cd9857, 0x4ecb8dfd, 0xd262311, 0x654ea7ee, 0xbbcf3aa5, 0x3fede0d7, - 0xfc5db512, 0x00001d, 00000000 + 0xfc5db512, 0x00001d } }, { @@ -62632,19 +62630,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3abf6313, 0xb3adea24, 0x4eb3f866, 0xa83562ca, 0xad1d37e1, 0xd480777d, 0xf61c3a89, 0x41be0ef5, 0xd425579b, 0xb3e37b27, 0x82a46f8d, 0xaf78fd4e, 0x5c8deee6, 0x6922ee51, 0xbc7ec6da, - 0xd210a22b, 0x0001b0, 00000000 + 0xd210a22b, 0x0001b0 }, { 0x8ce36540, 0x62414f7f, 0xa50bb47, 0x4091d957, 0x6acd4733, 0x188968bc, 0x3e3ee05a, 0x7f999a93, 0x68da0f0b, 0xae82968b, 0x860d6a5f, 0x59c67b39, 0x4092e926, 0x834060a9, 0xcfb36a5b, - 0xa02d3b24, 0x00005a, 00000000 + 0xa02d3b24, 0x00005a }, { 0x66666fc5, 0x8c34f1a5, 0x71a612d7, 0xcc0ae0c3, 0x5e0d3501, 0x54cb47ae, 0x571310a6, 0xe2309ed2, 0x625c5584, 0x5a5e9d81, 0x350678e9, 0xd169e1ba, 0xd130ee64, 0x6cc58168, 0x6d82a3df, - 0x409b4fe4, 0x00000c, 00000000 + 0x409b4fe4, 0x00000c } }, { @@ -62652,19 +62650,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x59bb1f64, 0x326835e0, 0x37a0ba08, 0x3b7e1c14, 0x2be502ce, 0x47b5e8e0, 0xdc7fbcab, 0xc02de693, 0x5ac24440, 0x87d5ce13, 0xb39c8523, 0x29585791, 0x3c87e62f, 0xd86063ab, 0x33756087, - 0x3d0e5a96, 0x0000a5, 00000000 + 0x3d0e5a96, 0x0000a5 }, { 0x9e22ea4e, 0xf4102b79, 0x5ea07690, 0x82b324fa, 0xc5e08aa1, 0x52acdc97, 0x409fe109, 0x6379db17, 0xa15d2042, 0x3d9c3a28, 0xa0d54399, 0xd782a007, 0x8dc44432, 0xeb905ccc, 0xc8fa4538, - 0x9d26e8b, 0x00003c, 00000000 + 0x9d26e8b, 0x00003c }, { 0xcac07ee8, 0xfdd816b1, 0xfc6d68c9, 0xcec82842, 0x414ae8ad, 0xe26f8f78, 0xa03eacf3, 0xfca18ccc, 0x963fb5ae, 0xedb1b5e3, 0xc0fa203, 0x2afa54ab, 0x2477f0c5, 0x4815bb6b, 0x79cf5b66, - 0x6205429, 0x0000d6, 00000000 + 0x6205429, 0x0000d6 } }, { @@ -62672,19 +62670,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe297ed34, 0xcd69e677, 0xb714c80a, 0x4b204860, 0x24838d0b, 0x770bd776, 0x4ac4bcd9, 0xf63d1378, 0x88bdf200, 0x9fa640e8, 0xe87467b3, 0xbb1668c2, 0x13dce618, 0x67204b27, 0x88e178cf, - 0x57f37e99, 0x000163, 00000000 + 0x57f37e99, 0x000163 }, { 0xbaa77b6b, 0xb00f2717, 0xff4e1cff, 0x3517796d, 0xc88bf506, 0x226fb4f4, 0xbba59dc0, 0xac936807, 0xc7f12fa7, 0xa9e3d201, 0xac02480b, 0xf4fc5c95, 0x67196339, 0x8800fcfc, 0x8f3553a6, - 0x295d639e, 0x000153, 00000000 + 0x295d639e, 0x000153 }, { 0xa85b9877, 0x7e37ba58, 0x48e0f4f7, 0x7de2a038, 0xf28b1851, 0x3867f6f3, 0x1677b11d, 0x980def0f, 0xf5b060a3, 0xa5db28a0, 0xe2e51acc, 0x259816d9, 0x8568fc1a, 0x8899419, 0x898b3954, - 0x9ce257f7, 0x00006b, 00000000 + 0x9ce257f7, 0x00006b } } }, @@ -62694,19 +62692,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0eed9ab, 0x941d8ef5, 0x789d71f6, 0xd28638e4, 0x1c0a960f, 0x1b57d4e4, 0x4beae94b, 0x61a1513a, 0x635bc51a, 0xd2456c56, 0xbcc7de08, 0x41b23852, 0xb74c631d, 0x4b804078, 0x12d8c216, - 0xf2f6b960, 0x00014b, 00000000 + 0xf2f6b960, 0x00014b }, { 0x76587b71, 0xc74e3825, 0xe1bb191, 0xbd8910f, 0x1566e2b2, 0xdf23c7df, 0x4997bd6d, 0xf5452b22, 0xa7c3b5ef, 0x84e1b692, 0x188208a9, 0xe6a70af4, 0x9b6a99cb, 0x3f589759, 0xeff015ad, - 0x5084c80c, 0x000009, 00000000 + 0x5084c80c, 0x000009 }, { 0xe937eb0f, 0x72120c67, 0xe91c1678, 0x3c9e6dde, 0xa8419d0b, 0x5daa6ab3, 0xb34bfbc7, 0x8b283560, 0x43f30f13, 0xce634e99, 0x389eb6b0, 0x90c130d6, 0xd958a7cf, 0x2ef2ac53, 0xa70d8762, - 0x53e1d280, 0x0000b4, 00000000 + 0x53e1d280, 0x0000b4 } }, { @@ -62714,19 +62712,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49b1880d, 0xef0c21ea, 0x970fd904, 0x6870b74b, 0x9c2105a9, 0x49f4cb8b, 0xcf87265a, 0x2bb1df46, 0x81388ec, 0x2dc7d123, 0xb2930827, 0x465a35f9, 0x261ab66d, 0x4b760076, 0x3c40aa34, - 0x865a4768, 0x000075, 00000000 + 0x865a4768, 0x000075 }, { 0x724628bb, 0x7ebc9926, 0xdb231477, 0x85376ea5, 0xb31a8b94, 0x52d9ab16, 0xad501fb9, 0xa3d88d54, 0x37a1f057, 0xab9a69df, 0x7c533e5d, 0xe4823837, 0x2c2f6cf3, 0xb799e4f5, 0x70a7a9d4, - 0x15ea588c, 0x0000e5, 00000000 + 0x15ea588c, 0x0000e5 }, { 0xc6a98f04, 0x7a9bcd09, 0xa318db3f, 0x72d40cc5, 0xcae1aeb6, 0xd5056c3c, 0x15b4cb38, 0x6305260f, 0xe0363b46, 0x3c8226fc, 0xba3395f, 0x1f88e8c8, 0x31b20866, 0xc630b5b5, 0xdb0b1a35, - 0x31ab6678, 0x0000a6, 00000000 + 0x31ab6678, 0x0000a6 } }, { @@ -62734,19 +62732,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xad24f352, 0x7154aa92, 0xb46c64db, 0x5350c6a0, 0x36c1131d, 0x1c442133, 0xc4e04487, 0x446af4da, 0xfcc8aa9d, 0x75a94d69, 0xe218114f, 0x7189d7f2, 0xbc41f1d6, 0x3dcae711, 0x79d4391d, - 0x87f8522f, 0x000106, 00000000 + 0x87f8522f, 0x000106 }, { 0x2de7f42c, 0x5fca8b3e, 0xda061f3d, 0xeca290e7, 0x3bcd3d3c, 0x87f64b40, 0x6e2bd48a, 0xf8e1ca24, 0xdcd2ebae, 0xa80735b8, 0xda223f8a, 0x1cf1bc74, 0xb553e44c, 0xa3d5791f, 0x13d7b3ed, - 0x30212837, 0x0000f4, 00000000 + 0x30212837, 0x0000f4 }, { 0xce3225eb, 0x16592e0b, 0xa8f37804, 0xd4fbe5ad, 0x308252b5, 0x42208ea6, 0x65736322, 0x76b6af2c, 0x6855574, 0xb1637bc5, 0x73404eb6, 0xf98731d3, 0xe7d6cadc, 0x3b0bae74, 0x887a6bf2, - 0xddef2fb4, 0x00015e, 00000000 + 0xddef2fb4, 0x00015e } }, { @@ -62754,19 +62752,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbe4b3e3d, 0x3b83d139, 0x9717b776, 0x82a47e56, 0x148770f4, 0xfef03913, 0x46e36728, 0x1041b2d, 0xe1d3db8d, 0x2b19bb59, 0x783170f3, 0x73a9c5cb, 0x839e27e, 0x5e5737e9, 0xa38bed3a, - 0x52275ce9, 0x00002d, 00000000 + 0x52275ce9, 0x00002d }, { 0xec818887, 0xaccac1, 0x591fd39a, 0xadae34f8, 0xaf72b48b, 0x87c05d65, 0xe9ce8afc, 0xfb78474a, 0xae927ab0, 0x33cb302e, 0xace3892f, 0x9a47f73a, 0x19d18836, 0xb3fb1911, 0xcf337483, - 0xcf757117, 0x0000c6, 00000000 + 0xcf757117, 0x0000c6 }, { 0x7e2f3212, 0x149a445c, 0x96c28ff2, 0x353a047f, 0x7844513f, 0x5d9e736a, 0x72db24b2, 0x355b02cc, 0x65145908, 0xd3d9c56a, 0x80910095, 0xfbb2124d, 0x58ae24e9, 0x1f57d8d1, 0xeb317e7c, - 0xb1d5736d, 0x0000d6, 00000000 + 0xb1d5736d, 0x0000d6 } }, { @@ -62774,19 +62772,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x58b53f70, 0xf3125ea7, 0xc627eaf0, 0xf1153ba9, 0xdf151b5b, 0xd3acd33b, 0x2fb8de9d, 0xad9ab14f, 0xa76540c6, 0x90b472c0, 0xecf57c10, 0xaf5dd4d1, 0xd8ebf743, 0xedfe87ef, 0xcdd83007, - 0xb7aaf030, 0x00000b, 00000000 + 0xb7aaf030, 0x00000b }, { 0xa1460eaf, 0x498bdb07, 0x3bcc0c81, 0x9b3e1c4d, 0x27cd16a8, 0x2ab5659, 0x9518a052, 0x1c05873d, 0x8a77a0e6, 0x41edb5a2, 0x7926bc6d, 0x84622631, 0x932224bd, 0x50dc2c20, 0xda2cef89, - 0xc73241d4, 0x000172, 00000000 + 0xc73241d4, 0x000172 }, { 0xad239dbe, 0x7886a436, 0x97e9814f, 0xecf1f88, 0xda6bf8c, 0x1ed694a9, 0xeee1ad43, 0xef583f14, 0xb2de367, 0x32c3d8fb, 0x9cc9ceab, 0x95360b1b, 0x53d6a0e7, 0x6f3473a1, 0x2ff83531, - 0x570267f9, 0x00001f, 00000000 + 0x570267f9, 0x00001f } }, { @@ -62794,19 +62792,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4997a6d9, 0xbc06cc75, 0xb80bf57a, 0xa943922, 0x821726c3, 0x90916589, 0xc9cac403, 0x62a57b96, 0xcd738164, 0xbfe2b18c, 0xc043498b, 0xe2e60837, 0x2dedb282, 0x5165b830, 0xc8a2248a, - 0xcab95031, 0x000051, 00000000 + 0xcab95031, 0x000051 }, { 0x43f06c95, 0xe7a94550, 0x4d99a734, 0x13fd0606, 0x9b88c9c9, 0xcd0fc0e4, 0x165672c3, 0x54098bc3, 0xbc10fc48, 0xecb97e68, 0x25f5bd3e, 0xc441b8c7, 0x955d64b9, 0xcd32d7f8, 0xd9c0736b, - 0x8a190ef2, 0x00002d, 00000000 + 0x8a190ef2, 0x00002d }, { 0xa34dbf9f, 0xb08c5fdd, 0x42dfb230, 0x68c2d582, 0x39726f6c, 0xf32ce64b, 0x883b8dd4, 0xd7ce6d31, 0x6523a54b, 0xae0f29a0, 0x8f2e6a9, 0xbd501d55, 0xd06dff54, 0x73ae3072, 0x5a8171fb, - 0x1835a72e, 0x000118, 00000000 + 0x1835a72e, 0x000118 } }, { @@ -62814,19 +62812,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1bc3d097, 0xd91a0adb, 0x3f36fb06, 0xeba8bd29, 0xc60cb0dd, 0x2602223f, 0x4b4fb5da, 0x35b59f6e, 0xdd3fe624, 0x4e0ff275, 0x4945ac14, 0x67e90fc3, 0xd88ae908, 0xb306e453, 0x3f2f3758, - 0x3aeb3ad7, 0x0001a6, 00000000 + 0x3aeb3ad7, 0x0001a6 }, { 0xe17cc87f, 0xe4f143e7, 0x84c10b36, 0x236fb364, 0x2425bd00, 0x36ba9056, 0xfbea2f9d, 0xcbb91948, 0xa58e5cae, 0x6776935, 0x3f6779c5, 0xa8f5c6e3, 0x9fd574cf, 0xbb8edc3d, 0x6139ac35, - 0xded6e73d, 0x000195, 00000000 + 0xded6e73d, 0x000195 }, { 0xdb1d24ae, 0xc7b7e036, 0x32d35357, 0x7fc65b8b, 0x43010898, 0x5745cb8b, 0x20fbdbca, 0xb3c0f518, 0xa7bf1928, 0x8ed18f15, 0x60ddf216, 0xfd097e26, 0xe0bc953c, 0xf32a558a, 0x16eba386, - 0xcf3d1389, 0x000088, 00000000 + 0xcf3d1389, 0x000088 } }, { @@ -62834,19 +62832,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6fb5a71a, 0x35a87dcc, 0xaa0ef863, 0x4a4a0670, 0x270b0393, 0x4d0ea394, 0xbe49fde9, 0x631ebf60, 0x7139ca80, 0xcb9e50a4, 0x7a4cdc68, 0xdb5bbc5e, 0xe6acb60d, 0x43654b2d, 0xd9811ef4, - 0xb9e6ce85, 0x0001cf, 00000000 + 0xb9e6ce85, 0x0001cf }, { 0xa2dab1cd, 0x55d0df51, 0x469488, 0x5d8a3520, 0xf02cdb28, 0xe386dc34, 0x3e38502a, 0x32455e5c, 0x130032f4, 0xb1b38301, 0x970fd769, 0x91a926da, 0x3139e0f8, 0x1dfb1c3b, 0x86fde7a, - 0xd6768b46, 0x00011c, 00000000 + 0xd6768b46, 0x00011c }, { 0x4c41702, 0x6f28b539, 0xfa84122, 0xc233ef04, 0x8b563544, 0xfffeeff5, 0xdbe745eb, 0x52cee3d1, 0x39ce4cc8, 0xa83aab7b, 0x8a68739, 0xe65bec03, 0x9159aa32, 0x9208758f, 0xbaf1ae42, - 0x806138e5, 0x00001f, 00000000 + 0x806138e5, 0x00001f } }, { @@ -62854,19 +62852,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc270f730, 0x7ab964bb, 0xc65ecb3d, 0x74e574b6, 0x8b715bb3, 0x783105f5, 0xfdc643e3, 0x2fcacb4c, 0x108dce0d, 0x7e81120e, 0xb578751f, 0x7ddf6509, 0x81fa573b, 0x6a2eb35f, 0xca8556bd, - 0x33f0a51, 0x0000ce, 00000000 + 0x33f0a51, 0x0000ce }, { 0x28c5643b, 0xe7675f72, 0x85bdd32d, 0x4149cad1, 0x5a70e9ad, 0x2b715dea, 0xb511536, 0x198085b1, 0x909d318, 0xcf6fe6d3, 0xb84fde61, 0x94102adc, 0x89210d50, 0x2386c9e2, 0x8023e087, - 0xe19f8de6, 0x00009e, 00000000 + 0xe19f8de6, 0x00009e }, { 0x9826e4d3, 0x4512e171, 0x2238cd32, 0xe28779f5, 0x65cf0d29, 0xe3fa25e1, 0xacdfe6ba, 0x4486ea21, 0x8d6df11c, 0xe14dc029, 0x2621bf4d, 0x562af13f, 0x70642e13, 0xdc52f9e7, 0x23175856, - 0x39f8ff14, 0x000009, 00000000 + 0x39f8ff14, 0x000009 } }, { @@ -62874,19 +62872,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x55797fd2, 0x7c355507, 0x3a9899ff, 0xd8da3322, 0x460b11f6, 0x5fedf762, 0x1c12dc93, 0x9d82fe99, 0x7b68b6da, 0x12598637, 0xe6dd8109, 0x3ce62a58, 0xc160c8c0, 0x6c1d7ae8, 0x9545425d, - 0x4418ae07, 0x00002c, 00000000 + 0x4418ae07, 0x00002c }, { 0x285a5eda, 0xa973b984, 0xe70708c1, 0xde70e881, 0xe9e93c7f, 0x6c0075f7, 0x4672166c, 0x8bb39cba, 0x161a54ab, 0x6c211a52, 0xcd44376f, 0x45c2839e, 0x36fc749c, 0x4f442a2a, 0x12fc7e71, - 0x4c7bf790, 0x0001ba, 00000000 + 0x4c7bf790, 0x0001ba }, { 0xb206f10, 0x27fce418, 0x261dd63, 0x77e08d39, 0xdcdea9d5, 0x8f93fcd5, 0xa5ddf966, 0xf5e8fd7c, 0x7525ae2a, 0x38d2e959, 0x47696e49, 0xd92e74c8, 0xf7ce8c5a, 0xdfe14f3f, 0x79b7744c, - 0x22b85ae4, 0x000105, 00000000 + 0x22b85ae4, 0x000105 } }, { @@ -62894,19 +62892,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x704ca9fb, 0x602342de, 0xc5edd4e6, 0xe7e2e1fb, 0xd6ba1588, 0x844d8a99, 0x996ed68d, 0xb90ff44c, 0x593f7af1, 0x3a75c5c4, 0xa4e8cd5a, 0x883e402c, 0x47dcdbce, 0xefb98dc, 0xe112aebe, - 0xf7c753b3, 0x00003d, 00000000 + 0xf7c753b3, 0x00003d }, { 0x7f7a1717, 0x4b035c4d, 0x87d472bf, 0xdc6c3f7c, 0x772d8adf, 0x3425fe25, 0xb6f977b6, 0xb0ee8c75, 0x121da173, 0x66c843fb, 0x2f1cdd0b, 0x8d6d6296, 0x64da545b, 0xe560fcce, 0x5966f35c, - 0x4b573c06, 0x00000c, 00000000 + 0x4b573c06, 0x00000c }, { 0x74287cc, 0x3925d8e, 0xa14ece14, 0xc6f8a3b6, 0x8896fba1, 0xf2261a7d, 0xfb4c9b5e, 0x66b61f83, 0x934a4706, 0x2fefbef1, 0x553ccdae, 0xf1908dd8, 0xbf17e8c0, 0x5502be91, 0x8df81342, - 0xa4ce6212, 0x0001c9, 00000000 + 0xa4ce6212, 0x0001c9 } }, { @@ -62914,19 +62912,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2a6543e2, 0x14f45d26, 0x9c78c42f, 0xe716eacd, 0x1b5356df, 0x8aec65e6, 0x5d4fc874, 0xb1162afe, 0x2a341e04, 0x4d50f0c0, 0x8af3a601, 0x54dd99d, 0x8cfc9eee, 0xa5ba806b, 0xeff54d1c, - 0x521d655a, 0x000035, 00000000 + 0x521d655a, 0x000035 }, { 0x3dea1060, 0x65fddfa3, 0xecd3ffb1, 0xf056c503, 0x3fcd2395, 0x7c14c419, 0x41e0a10e, 0x78e312d4, 0xb3473278, 0xc11bfffc, 0x69b21d62, 0x9739c3d2, 0x6904b261, 0xa1fa6b4a, 0x4d2c2e46, - 0xf8926718, 0x00006b, 00000000 + 0xf8926718, 0x00006b }, { 0x3e053ce4, 0xea7e6695, 0xddc2c708, 0xc47477ec, 0xa91b455d, 0xa22991b, 0xe75a90d0, 0xdae52727, 0x23b05d1f, 0x184b3943, 0x8e6e97d8, 0x9cf4ccf3, 0xd6b181ee, 0x95550e00, 0x77e0c0d4, - 0x7ffbd70f, 0x0000af, 00000000 + 0x7ffbd70f, 0x0000af } }, { @@ -62934,19 +62932,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4fbc26ae, 0x582774f9, 0xb7340b6c, 0x2a73d170, 0x3520892e, 0x887f4391, 0x53a1b944, 0x45bfdb1e, 0x473f221d, 0x85228a18, 0xd3e84c83, 0xc962cdb2, 0x247fff80, 0xa65122c9, 0x955fa8a8, - 0xf2b67991, 0x000115, 00000000 + 0xf2b67991, 0x000115 }, { 0x8bf8275a, 0xc427ceee, 0x7ea16bc1, 0x40fd2ec8, 0xe6eac082, 0xbfd89e19, 0x7cb70f96, 0x1f732876, 0x8a2f95e3, 0xbbb7b7f6, 0x38d4edef, 0xb9a573bc, 0x6cfd257c, 0xffeef052, 0x652b696, - 0x5cffa973, 0x0000c2, 00000000 + 0x5cffa973, 0x0000c2 }, { 0x4a12fe9f, 0x2a6d9cae, 0x79791a67, 0x97d8bb06, 0x1198a991, 0xb98a5524, 0xd8973f88, 0x655db92b, 0x96dc8525, 0xcd4c7cbb, 0x77a3a4ea, 0x9e28e342, 0xe8d286b3, 0x12cbaf4b, 0x81bbe3e4, - 0x34bdc304, 0x0001cb, 00000000 + 0x34bdc304, 0x0001cb } }, { @@ -62954,19 +62952,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xceda8156, 0x7d5eb3be, 0xa7478ed2, 0x97f2eff0, 0xf73e0d09, 0xa9284871, 0xe1655d86, 0x26ccec07, 0xafb8509d, 0x6f1b4bd4, 0x9d6bba84, 0x58d45e98, 0xbd35e0d6, 0xdce9a877, 0x3dd5af84, - 0x80215ddb, 0x00008a, 00000000 + 0x80215ddb, 0x00008a }, { 0xe7417404, 0x95f0415a, 0xc365692, 0x73d9fa80, 0x4ebed60d, 0x2ee7faeb, 0xcf72faf9, 0x4e120f3d, 0x67c3c14c, 0xc78423e1, 0x92fbe0ee, 0x9f2f2aee, 0x7e9160d4, 0x5e374f15, 0x430ca594, - 0xd397c565, 0x00003c, 00000000 + 0xd397c565, 0x00003c }, { 0x6220662f, 0xeb7fb8e6, 0x1210e159, 0x6d82503d, 0x62a21d87, 0xc109a173, 0x152b832c, 0x623d6519, 0xf1b02adb, 0xc5ef912b, 0x7688b9a8, 0x57527ff9, 0xb4e39f77, 0xc43faec5, 0x5c32f560, - 0x86e53118, 0x0001e6, 00000000 + 0x86e53118, 0x0001e6 } }, { @@ -62974,19 +62972,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9fd9c696, 0xfd0e815, 0x327f42d9, 0xa756141c, 0x57800c33, 0x6ce66efa, 0xe08077b, 0xb39c36e4, 0x4a9bc945, 0x16219948, 0x9c6067b2, 0xf111ee04, 0x1c395711, 0x8be9791f, 0x6b143f86, - 0x7145e7c5, 0x0001b4, 00000000 + 0x7145e7c5, 0x0001b4 }, { 0xe85ec559, 0x3cbcc029, 0xba03371, 0x8a0f25bf, 0x59fc7abb, 0xed204df1, 0xab361e00, 0x827d9212, 0x1fefcbe3, 0xcdbf8efc, 0xdcec1647, 0xbda6164b, 0x9e348fd5, 0x4a2267eb, 0x7b33430d, - 0xdb3544b0, 0x00006f, 00000000 + 0xdb3544b0, 0x00006f }, { 0xa1bef131, 0xfb4885c1, 0x4ef939ba, 0x52ddf4b3, 0xe31ca275, 0x2820d8cd, 0xb7b3e91, 0xcc029a94, 0x7af53709, 0xc6fa0c5, 0xd5d06ad0, 0xd7ef5b04, 0x204fd46f, 0x6a4c1443, 0x687a2abc, - 0xa2758b26, 0x000094, 00000000 + 0xa2758b26, 0x000094 } } }, @@ -62996,19 +62994,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3fdb1186, 0x1e6c7be8, 0x741cbcb1, 0xbfc759ae, 0xecbe79ae, 0x7275795e, 0x53fbbb04, 0x381ded, 0xab74a477, 0x61e793da, 0x121e9514, 0x3ffc5ba4, 0xd4d8ec9d, 0xf8bcc1cb, 0xcdae980f, - 0xc074f4c8, 0x0000cf, 00000000 + 0xc074f4c8, 0x0000cf }, { 0x13de5d84, 0x40a190b1, 0xe9936258, 0x171aa46a, 0xe165272d, 0x678ce190, 0x7831d840, 0x4d92b5a7, 0x41ecc66f, 0x8492ea3d, 0x6240913b, 0x43d9da8f, 0x435980f0, 0xb3da1e79, 0x1ccba9f9, - 0x16c701ad, 0x000009, 00000000 + 0x16c701ad, 0x000009 }, { 0x86da63cb, 0x48d67980, 0xd7f9e9ee, 0x95fdc7e0, 0x64e199da, 0xbf214e89, 0xb0cdc0c2, 0x2a36f884, 0xe9e4bd82, 0xf0690701, 0x9db6f7bb, 0x482b31d5, 0x5ff33a8a, 0x293d3cf1, 0x2e722de8, - 0xa6158160, 0x0000b5, 00000000 + 0xa6158160, 0x0000b5 } }, { @@ -63016,19 +63014,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7eca3a4a, 0x8a13236, 0xf4ccb5b3, 0x486a945b, 0x87fdc6c7, 0xb5427b6e, 0x38c6752e, 0x9f4ce7bf, 0x97533b8b, 0xf12957ab, 0x9146ff9f, 0xbb3ad66, 0x8ef59f5f, 0xd6f1360a, 0x6ae7359b, - 0x936e021, 0x000078, 00000000 + 0x936e021, 0x000078 }, { 0x28283281, 0xb194058, 0xad92657b, 0x57b08860, 0x273a2f49, 0x64ad2662, 0xf822821b, 0x685e2f6e, 0x6ce027a7, 0x6ce6052, 0x87c8201f, 0x29a9eed6, 0xdd5851ff, 0x6bcb40d2, 0x5c72124e, - 0x1e667789, 0x0000e7, 00000000 + 0x1e667789, 0x0000e7 }, { 0x6bf7fd38, 0x422e328b, 0x315338d, 0xb77fb2b5, 0x3e4e3f71, 0xa95d514f, 0xef0b7d7c, 0x6e978ef, 0x483e5634, 0xe6d009f2, 0x2bcb3fbf, 0x88edb6ff, 0xe61f8d90, 0x8bb25b94, 0x6a6ee24, - 0x3422d547, 0x0000f5, 00000000 + 0x3422d547, 0x0000f5 } }, { @@ -63036,19 +63034,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1915892, 0x5a5cfbc2, 0xd06e8ffe, 0x3a335700, 0x1139c5ee, 0x995e6f87, 0x626480ed, 0xf208fd45, 0x6f31d6fb, 0xa4909a08, 0xfc22b98b, 0x83970a76, 0x832f0a93, 0x9f7d6750, 0xcfecc1f6, - 0x9c824f65, 0x00018a, 00000000 + 0x9c824f65, 0x00018a }, { 0x12f05f96, 0xbbd87113, 0x90084018, 0x9eb706b4, 0xbba7fa6, 0x94e49073, 0xcade8b6b, 0x81c403d6, 0xb2838b09, 0x47c367cc, 0x4959cde3, 0xcb490df2, 0x7cd66f7, 0x86025441, 0xef38ce1, - 0x23cbe322, 0x0001cd, 00000000 + 0x23cbe322, 0x0001cd }, { 0x6329ab6a, 0x90ea0d28, 0x90a3d060, 0xcb0975a6, 0xa1837f38, 0x78e4948a, 0x10ea768e, 0x3d69a3be, 0xdec0a23b, 0xe0044969, 0xd20bdf5, 0x5e4cb6e, 0x1f051fe4, 0xa4bcafa2, 0x2a238dca, - 0x13d666d1, 0x000195, 00000000 + 0x13d666d1, 0x000195 } }, { @@ -63056,19 +63054,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x366f75df, 0x9e4df00c, 0x656183a3, 0x4a7c6374, 0x4f90eff8, 0xbc1d1bf2, 0xb9f7e195, 0xbc43fd00, 0x1869ea8f, 0xd1f5ce65, 0x90528d8a, 0x72b4b52a, 0xf372123f, 0xff95a04c, 0xc71af196, - 0xa5143a0f, 0x000104, 00000000 + 0xa5143a0f, 0x000104 }, { 0xd148ed0c, 0x72bf0062, 0x4ad645c7, 0x2dab3d7e, 0xf6066dde, 0xda469c02, 0xc2392efb, 0xe06dbf86, 0xbfcd7207, 0x35254c21, 0xdc532eeb, 0x77fef24d, 0x6b112d29, 0xdcf2999c, 0xb8707148, - 0x9a111e0c, 0x00005c, 00000000 + 0x9a111e0c, 0x00005c }, { 0xa4d15ed8, 0xc5402b53, 0x2444cbba, 0x48b1e934, 0xf5e3082d, 0x43e7d183, 0xd4c86f10, 0x96bd3146, 0xbad7b684, 0x8bfb1435, 0x9cb1117e, 0x34455fd7, 0x63867841, 0x1dd78af0, 0x6e507cc4, - 0x1313e1b1, 0x00009f, 00000000 + 0x1313e1b1, 0x00009f } }, { @@ -63076,19 +63074,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x72e60b1a, 0x4fa8b2e5, 0xe34ae67a, 0xa37e9e94, 0xa8186baf, 0x1b24b062, 0x79472ba3, 0x78f79417, 0xa1cd8739, 0xeae81b22, 0xc634bcaf, 0x7c7b68f6, 0xf3c0ef05, 0x442243cb, 0x5b82c9d4, - 0x26a88458, 0x000166, 00000000 + 0x26a88458, 0x000166 }, { 0x9e34da9f, 0x1b34872b, 0x17ad90f9, 0xbea1935f, 0x6e02da32, 0xc87831a7, 0xf996d4dd, 0x7ab06021, 0x18c79020, 0x1c694ad5, 0x832f2095, 0xf97bf56a, 0xc963dc31, 0x38c68673, 0x474b2a36, - 0xaa1f9332, 0x00012e, 00000000 + 0xaa1f9332, 0x00012e }, { 0xc0b48a65, 0xce3ffa40, 0x85ad676f, 0x7517dbd5, 0xa49dafb7, 0xe911bf64, 0xa0c2690a, 0x30d5237a, 0x6ed42b0c, 0xbf5a34d8, 0xc4485377, 0x44709f46, 0x793ee25b, 0x2d9f7665, 0xbc24bc5f, - 0x82a2e3a3, 00000000, 00000000 + 0x82a2e3a3, 00000000 } }, { @@ -63096,19 +63094,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf05a6ecf, 0x79fb8515, 0x58da0309, 0x79970c7b, 0x93ca8e1b, 0x6840531c, 0xc4c07da1, 0xe1b06a77, 0x185d0210, 0x3eb67d8a, 0x12e7f505, 0xe49fd4fb, 0x8961d9b4, 0x230d7e74, 0x414dccf5, - 0xc6dba4f9, 0x0001ea, 00000000 + 0xc6dba4f9, 0x0001ea }, { 0x438fc164, 0x87815315, 0xbfce37a5, 0x4a4ba9d1, 0xdfd4d0d2, 0x210c62d0, 0x4e5a6f84, 0x7c6ce54d, 0x67f519c4, 0xd641e016, 0x31eaea41, 0x4604931b, 0xb0429bf2, 0x440c5452, 0xc3e59ffc, - 0xb3241de9, 0x000062, 00000000 + 0xb3241de9, 0x000062 }, { 0x4dce3ff9, 0x3ce42581, 0x4409c0b8, 0x14193986, 0xc7d34155, 0x503f9275, 0x9260650d, 0x9b80e522, 0xa635de83, 0x7e7378c4, 0x503b8966, 0x179e94c2, 0x96acba8e, 0x2661c3dc, 0x7666f31a, - 0x3b8dffe4, 0x00007f, 00000000 + 0x3b8dffe4, 0x00007f } }, { @@ -63116,19 +63114,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x37c0308c, 0xa872fc75, 0x6ca45baf, 0x88af3d0c, 0x1390cb09, 0x8fb41914, 0x4eb701c5, 0x96ee0235, 0x1078e06, 0xbef36a28, 0xaab8f1ea, 0x1a761ed, 0x556c8db2, 0x518783a9, 0xaaa1183b, - 0xdb8e6b2f, 0x0001ed, 00000000 + 0xdb8e6b2f, 0x0001ed }, { 0xef99874f, 0x5b825c5c, 0x330d2d9d, 0xb96ee51f, 0xbab131df, 0x67459071, 0xbfb73014, 0xc6f1e038, 0x7e71d8f0, 0xe7fdcead, 0xae1fdefc, 0xa9ec1b82, 0x62f26db4, 0x9d6e51c, 0x170162f0, - 0xeb85cdf1, 0x00005f, 00000000 + 0xeb85cdf1, 0x00005f }, { 0x8b723cb2, 0x84d8d11c, 0x99d26f95, 0xbb6ca19c, 0x11f8eb13, 0xb9c6b2c1, 0xe5afbdd2, 0xf3fcb124, 0x66c8d946, 0xf459dd0b, 0xb3881560, 0xab51b8c, 0x240f3545, 0xf0d72e7f, 0xd88d1ca1, - 0xbcfb97f9, 0x00000a, 00000000 + 0xbcfb97f9, 0x00000a } }, { @@ -63136,19 +63134,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xda37b87c, 0x424cfa69, 0x6553185e, 0x21922c80, 0xde4c9fa7, 0xcc4eb20b, 0x80f0a0e1, 0xb45b6422, 0x41d3fbc8, 0xb94dcd54, 0x504b7d77, 0x442fdd25, 0xb332b0da, 0x75fc3a6c, 0xca25b612, - 0xbad1e584, 0x0000de, 00000000 + 0xbad1e584, 0x0000de }, { 0x9e60c8f9, 0x97d9cb6f, 0x29ebe175, 0x56962aac, 0x932cb367, 0x6d86c891, 0x58549ca7, 0x458daa91, 0xcdb9fea2, 0xc5217cca, 0x696c8d67, 0x2c2739bc, 0xb1afb7f9, 0x96ead9f9, 0xe18603a5, - 0x26856f60, 0x0001ed, 00000000 + 0x26856f60, 0x0001ed }, { 0xc7946f7, 0xd82556a1, 0xa33a2243, 0xc9e68e18, 0xf442d573, 0x68eada3e, 0xa1061ce9, 0x99133c07, 0x1cef76e7, 0x173e20c8, 0xb001e6f6, 0xa815900c, 0x76504fb1, 0x7fd2fc44, 0x4766041f, - 0xb6cbc825, 0x000022, 00000000 + 0xb6cbc825, 0x000022 } }, { @@ -63156,19 +63154,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7d8106f6, 0x46fc0b89, 0x9cb45740, 0xc6e701d1, 0xac129056, 0xd74ee101, 0x155af6d9, 0xddf871ab, 0xc4b8e303, 0x8527ef55, 0x4a6dd8a3, 0xe900e04, 0xc6ba2f42, 0xcfdf0ed, 0xad5776dd, - 0x36c1fe72, 0x000197, 00000000 + 0x36c1fe72, 0x000197 }, { 0xadbe690b, 0x295b60a, 0xb9f12cac, 0xdb888c11, 0x2b3bea5b, 0xe771579b, 0xc1f3a057, 0x8251fcab, 0x872a0e51, 0x57b026b5, 0x851252f5, 0x1bb35a99, 0x505cd766, 0x7a5ae2b0, 0x5176ab58, - 0xdc6ed422, 0x0001af, 00000000 + 0xdc6ed422, 0x0001af }, { 0xea1b7a54, 0xd4e353e9, 0x42290a64, 0x75e26ded, 0x9b86881c, 0x3d392b2b, 0x59293fe4, 0xbcc3b325, 0xf7029249, 0x17174bd4, 0xa786e4bd, 0x586caff6, 0x14eaa4aa, 0x4670d1fb, 0x9c711e58, - 0x96b653a3, 0x00001b, 00000000 + 0x96b653a3, 0x00001b } }, { @@ -63176,19 +63174,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa00f6947, 0xe4d9e758, 0x1d0c000c, 0x7bd4aba6, 0xff9b6da4, 0xe072ff63, 0xf2876be1, 0x4f2ce735, 0x2267d887, 0xc2407403, 0xfeaf292e, 0x32d155f8, 0x8a30ada2, 0xaa8d5af1, 0x4ecd70b6, - 0x998468d8, 0x0001e8, 00000000 + 0x998468d8, 0x0001e8 }, { 0x676348de, 0xd6f798bb, 0x9d4261fd, 0xcd123b4b, 0x959e3fff, 0x55db17ec, 0xab147dc3, 0xd11fef6b, 0x2dd54c50, 0x84310f01, 0x3292d6ac, 0x9537d08b, 0x72c0144c, 0x6f523a06, 0xb627802d, - 0x48a66b13, 0x0001f8, 00000000 + 0x48a66b13, 0x0001f8 }, { 0x6e1693, 0x904b68d6, 0x144aaf8c, 0x3cdb775e, 0xf5e9f885, 0x715ca74a, 0x856a50c6, 0xeae4a1b0, 0x5e8753b3, 0x8a375a4c, 0x1bfa15b1, 0xe832a03, 0x482fe25f, 0x49ddcb1a, 0x171e8709, - 0x4711ae91, 0x00013d, 00000000 + 0x4711ae91, 0x00013d } }, { @@ -63196,19 +63194,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2eb778d8, 0x463685f2, 0x106292ab, 0xb0113ff3, 0xba872321, 0x303f1af, 0x5cab129a, 0x794e2284, 0x20feed59, 0x2850ec6, 0x53f6657c, 0x6d5cd0df, 0x843200b4, 0x1a097ac1, 0x5404b247, - 0x8d63121f, 0x000124, 00000000 + 0x8d63121f, 0x000124 }, { 0xd330bc3b, 0x1fbdbb70, 0xba6c0b31, 0xeb4451b3, 0x8abf26a4, 0x40468131, 0x56b3e4ba, 0x8e01d85e, 0xba7dc3c0, 0xe1b438be, 0x289551eb, 0xad646fd0, 0xf5accf85, 0xbb1797f3, 0xd83c347c, - 0x78167934, 0x000033, 00000000 + 0x78167934, 0x000033 }, { 0xb64d505c, 0x8ccfbbd8, 0x87d1c894, 0xb64c8b5c, 0xf3ad8869, 0x6172a4f, 0x79944cc4, 0x3546d022, 0xf5902fe8, 0xd6f8a2b6, 0x4f4805c, 0xe5b067c3, 0xcc7a7011, 0xa947da16, 0xc6e92345, - 0xd60e84da, 0x000064, 00000000 + 0xd60e84da, 0x000064 } }, { @@ -63216,19 +63214,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xacfd23ee, 0xe66c56c0, 0xbe2e18f, 0x27e49590, 0x4bf252ff, 0xb5a8e71e, 0x4477168d, 0x89d56a85, 0x3f5ba205, 0xbb59256a, 0xaa854dce, 0xbcf2dd66, 0xb4ead200, 0x2efc18dd, 0x1b8bbfc2, - 0x1e8d602c, 0x000111, 00000000 + 0x1e8d602c, 0x000111 }, { 0x5c80c561, 0x4a5b61d6, 0x1ea481a8, 0x6874fded, 0x8bd1ec42, 0xc2bed55f, 0x3886ed5, 0x4f5c07d8, 0xd1d7063a, 0xe9893d05, 0x835e20fe, 0xb34ceb5, 0xc8156073, 0xeb376da0, 0xaeb09b2, - 0x4de1e4be, 0x0001d0, 00000000 + 0x4de1e4be, 0x0001d0 }, { 0xad0f401e, 0xbb237e5d, 0x953f404b, 0xa040766c, 0xdf2e9a64, 0xe515d2ea, 0x462b3a56, 0x14cffae8, 0xa13fc87a, 0x2e779ca5, 0xc23bde20, 0x75fe64e6, 0x63429a60, 0xafdec86e, 0x110a4f54, - 0x9b878196, 0x0000c6, 00000000 + 0x9b878196, 0x0000c6 } }, { @@ -63236,19 +63234,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc46ebe0e, 0x55b3bcaf, 0xb2787d24, 0x2fd21452, 0xa73cd351, 0x24989727, 0x60469f50, 0x100abd97, 0xaf5ef739, 0xc753f0d, 0x87e6297b, 0xee76e3b9, 0x9a6492fc, 0xce3f7c8a, 0xf08eb228, - 0xc4bb1371, 0x000033, 00000000 + 0xc4bb1371, 0x000033 }, { 0xc6e640cb, 0x9979840d, 0x905876fc, 0x5d9dc0dc, 0x3062fb33, 0xd42546fc, 0xc3962a4f, 0x4d49033e, 0xd1756994, 0x2ca1122a, 0x41cd4050, 0xc318b23f, 0x9f3f9711, 0xa61483d7, 0x828a772a, - 0xcfee86e5, 0x00012c, 00000000 + 0xcfee86e5, 0x00012c }, { 0x4a7995f, 0x9e704fbc, 0xf34a0235, 0xa0869190, 0x3f6c8940, 0x4c2b9ae5, 0x2fc3a7a6, 0x11702ade, 0x4e2f50cc, 0x4be17d16, 0xff3db329, 0x41517de, 0xbcfd2330, 0x46cf71a8, 0xd33ee8e5, - 0x9f56db7e, 0x000157, 00000000 + 0x9f56db7e, 0x000157 } }, { @@ -63256,19 +63254,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7960a3f, 0x5fcddc7f, 0x92e4765d, 0xe0548b68, 0x8d1cb107, 0x61266ddb, 0x83ce4124, 0xc0db285e, 0x26c77192, 0x41bd7afe, 0x8dfb7f47, 0xbabe5e13, 0xc3cbfea6, 0xb1f88fa, 0x5d9c8924, - 0x8fb99ce, 0x00006a, 00000000 + 0x8fb99ce, 0x00006a }, { 0x6777605d, 0xe4090b82, 0x435e5961, 0x3d0356bc, 0x6bb959f8, 0x49e80536, 0x65aa0602, 0x6d31b77a, 0xf22c96bd, 0xb6eafaa5, 0xc8fe66c0, 0x4d55f79c, 0xef22d39b, 0x2a01b7d1, 0xff75bcf1, - 0x645e76e9, 0x0000b0, 00000000 + 0x645e76e9, 0x0000b0 }, { 0xfd730839, 0x27c0a46c, 0x3e537d26, 0x651a60cb, 0xbf63be1f, 0x4afac0c7, 0x31693e18, 0x80ab06bb, 0x7db05229, 0xcdafedbd, 0x413df0d4, 0x10c18d80, 0xbba65dcb, 0xf183b81b, 0x95b42132, - 0xd077122f, 0x000059, 00000000 + 0xd077122f, 0x000059 } }, { @@ -63276,19 +63274,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf6f7e4d, 0x3b9b836c, 0xb16c476d, 0x821616d1, 0x8d536f1d, 0xbd8002f8, 0x7ca75c5b, 0xc7106ea4, 0xb0222083, 0x288ba5bb, 0xb9f92f81, 0xb1594788, 0xc8ab7bfa, 0xd52ebf41, 0x12e5bf2d, - 0xaeff78a9, 0x00011f, 00000000 + 0xaeff78a9, 0x00011f }, { 0x9c153a88, 0xf0034fa4, 0x75d94abb, 0x3e5d8b3d, 0x5702d329, 0x25891db6, 0x8c5b9585, 0x2acf975c, 0xf841140, 0x1bf226a5, 0xabad2fde, 0x26c1aba1, 0xf56ec550, 0x43694d63, 0xb32fc8fb, - 0x1bfcbed3, 0x000046, 00000000 + 0x1bfcbed3, 0x000046 }, { 0x59171f2d, 0xdcdcb4ae, 0x74c0d504, 0xf332b0f5, 0xe438c6f2, 0xf8c9f9a5, 0x94671199, 0xea94905, 0xf414f451, 0x5d812a6a, 0xb9999ebd, 0x86d235b2, 0x1c9c8e43, 0xedf5f0f2, 0xf5db2990, - 0xab47b5e9, 0x000069, 00000000 + 0xab47b5e9, 0x000069 } } }, @@ -63298,19 +63296,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x94430f11, 0x8e4a037c, 0x56957e5f, 0x8191c292, 0xa13208f2, 0x4813bdeb, 0xa917ef52, 0x843df579, 0xec29c737, 0xda67d265, 0x54a1364, 0xca9280bf, 0xdeaa2a2b, 0x802afadf, 0x107d4d99, - 0x99b2afa9, 0x000184, 00000000 + 0x99b2afa9, 0x000184 }, { 0x7e462d77, 0xe2e60bf2, 0xd99a1d05, 0x21c5dc89, 0xd1e40569, 0xf1f1b9a, 0x1b0cf35c, 0xd0013c53, 0x2f44ea97, 0xaf4acd9c, 0xeeb18050, 0x7431efbc, 0xbafb26ea, 0xd608825f, 0x17fd489b, - 0xaf057f07, 0x000132, 00000000 + 0xaf057f07, 0x000132 }, { 0x4131bf8f, 0xab6d30b5, 0xd2757397, 0xef03d518, 0x8fb75d5, 0x57129c67, 0xb15ea588, 0x62b59c79, 0x92eb6cd9, 0xcc47f06d, 0x3156d52e, 0xf5e62b0f, 0xf9a1e7a8, 0x7d60b336, 0x24ed55a9, - 0x48200175, 0x000160, 00000000 + 0x48200175, 0x000160 } }, { @@ -63318,19 +63316,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x732603a, 0xfde87b7a, 0x7bc2b4f7, 0xc8ae7125, 0xbe3e80a3, 0x38ec8125, 0xb8f3ef5a, 0xf9f29f33, 0x9fe054fb, 0x73fe82da, 0x8b8f1238, 0x2a8efe1f, 0xf6198ccb, 0x2e7e1d42, 0xdfd132ae, - 0x5e037089, 0x000170, 00000000 + 0x5e037089, 0x000170 }, { 0x86a067fa, 0x198314c9, 0x85c94c95, 0xf768d242, 0x112ae68f, 0x4489712e, 0xd6c226cc, 0x939f356c, 0x6d60267b, 0x6b9170b2, 0xb86159d6, 0xcd842e5e, 0xf3bf9622, 0x19b6414, 0x396a5c71, - 0x495b559a, 0x0001d7, 00000000 + 0x495b559a, 0x0001d7 }, { 0xe24c9676, 0x16a7a6f9, 0x5b197ef2, 0xf4ea81d5, 0x52ac8a64, 0x9d7e2131, 0x36fb673, 0xed62fb03, 0x3356e019, 0xbba88586, 0x5ee9f0f6, 0xe4523db3, 0x72a8c8ba, 0x77387c31, 0xf2fb7f2a, - 0xc015fcd5, 0x00001e, 00000000 + 0xc015fcd5, 0x00001e } }, { @@ -63338,19 +63336,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x660b6e33, 0x22c6151e, 0x3dddcabf, 0x58c14f76, 0xd24184b7, 0xd7129e72, 0x22bdfe6a, 0x7a22bf26, 0xe4954adb, 0x86b3ec92, 0xa034ffa4, 0x71411564, 0xe246c32d, 0x9b7f8971, 0xccb8fe22, - 0x5fc4caad, 0x000133, 00000000 + 0x5fc4caad, 0x000133 }, { 0x598c4970, 0xd29fcf33, 0xeb7138d1, 0x6e0e5c22, 0x2fb48f2, 0xa13b8a20, 0x4afc72e3, 0xf4c1b129, 0xd8c025bd, 0xd4315a4c, 0xbf92c437, 0xe50bfd8c, 0xe3a6e93, 0xa3051c2a, 0x1f8f1d95, - 0xdfde67cb, 0x000070, 00000000 + 0xdfde67cb, 0x000070 }, { 0xf9601eb7, 0x38d62c2e, 0xebfa3bfd, 0xd5083ef5, 0xae7a9b9c, 0xa5d32bd7, 0x3c3e5435, 0x8a7195b9, 0xac5ade6e, 0x5742093d, 0x54bd98ea, 0x76644517, 0xaa823766, 0x732edc54, 0x5a356d3d, - 0x936849fd, 0x00002b, 00000000 + 0x936849fd, 0x00002b } }, { @@ -63358,19 +63356,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7946aa09, 0x8b96ccbc, 0x216c31ca, 0x42668a2d, 0xb495beca, 0xd5f96c75, 0x83e4d695, 0xe0c1deac, 0xada26ffe, 0x488deb2d, 0xbdd9d16d, 0xa06ad0b4, 0x773636b, 0x164f79b2, 0x32a07265, - 0x3fecba7, 0x0001bf, 00000000 + 0x3fecba7, 0x0001bf }, { 0x6a71c0d7, 0x4afc8171, 0xa9f2075c, 0xbe471ef3, 0xab8538e1, 0x1bdaeaf0, 0x13e61d25, 0xc56ce30a, 0x89a8b93b, 0x78e2ca56, 0x1124db52, 0xd5ce7251, 0xee33510c, 0xb6e581e8, 0x15cda349, - 0x168b2cf1, 0x000151, 00000000 + 0x168b2cf1, 0x000151 }, { 0x2ba4dd21, 0x2c84862c, 0x4f1407d5, 0x10297f47, 0x9d39beb1, 0x46c11609, 0x8b413ea6, 0x23f29309, 0x76bd7e30, 0x14d182ed, 0xbd0b52d7, 0x61d16682, 0xd7b88525, 0x2c9288a8, 0x45149153, - 0xb21a9a0, 0x00015d, 00000000 + 0xb21a9a0, 0x00015d } }, { @@ -63378,19 +63376,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x97df6515, 0x581e6c1b, 0xd626abf5, 0xf0f673fb, 0xdcec2525, 0xacddf2b1, 0xcd43ab17, 0x7c64d055, 0x818ea4ec, 0x7dbd2938, 0xdf37ed3c, 0x9afa4664, 0xedbbf775, 0xdf1e4de, 0xb76238a0, - 0x6e41eb59, 0x000004, 00000000 + 0x6e41eb59, 0x000004 }, { 0x98fa7e72, 0x9162b230, 0xeea1d492, 0x1aeb449c, 0xeb6dccbb, 0xb69749e9, 0x7230a71a, 0x352a2128, 0x178e6108, 0x504d99f6, 0x48b9fa5e, 0x1d6439cc, 0xbe8f263d, 0xf6643c40, 0xbfc7b8b7, - 0x427f4226, 0x0001d2, 00000000 + 0x427f4226, 0x0001d2 }, { 0xaa97e1b8, 0x8e37c79f, 0x934aded0, 0x44a92f81, 0xffe14c83, 0x4575c250, 0x2ec3dceb, 0x1173997c, 0x5aba622b, 0x91318630, 0x812fbb26, 0xe6adcea6, 0xfd5c239, 0x2d22724a, 0xf9c9d977, - 0x7e8ce576, 0x00002c, 00000000 + 0x7e8ce576, 0x00002c } }, { @@ -63398,19 +63396,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9157db29, 0x851ad08a, 0x7f16671d, 0x11164ab6, 0x44a69268, 0xaccc0fdb, 0xc2d21ab5, 0x60f40590, 0x20a2afad, 0x23235b12, 0x2c188113, 0x39edaab0, 0x6407c190, 0x2d24b287, 0x6576084c, - 0x5ceec8e, 0x000017, 00000000 + 0x5ceec8e, 0x000017 }, { 0x2f6c6c57, 0x3b6159eb, 0x942f3944, 0xb5b9b3fd, 0x69115155, 0xcc655149, 0x12b2ad6c, 0xac888015, 0x3c5488d5, 0x85d1c66f, 0x72452bed, 0x630957c8, 0x49d0e7d3, 0x4b0350e2, 0xa2b918d1, - 0x69496469, 0x000169, 00000000 + 0x69496469, 0x000169 }, { 0xa61c1ab7, 0x56991184, 0x78eda4e1, 0xcf63bf0e, 0x3111c50f, 0x9ffcce7a, 0x685e1842, 0x54934076, 0x60d47e7a, 0xa7cdba49, 0xdf0bfcba, 0xbacf7ef3, 0x89ba2323, 0xb17ec85e, 0x6a28b0e8, - 0xb87da1d4, 0x000103, 00000000 + 0xb87da1d4, 0x000103 } }, { @@ -63418,19 +63416,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4dcb21c7, 0xae5befe6, 0x5f4a3d31, 0xf645b219, 0x4f11675f, 0x1833067f, 0x972ca976, 0xe8446b44, 0xf37a247, 0x62c92bc6, 0xe83a1cc, 0x74e8c44, 0x1a9c9a4b, 0x361a3372, 0x771b22aa, - 0xb6f4d5ae, 0x000061, 00000000 + 0xb6f4d5ae, 0x000061 }, { 0xf946af4, 0x20fa4eb7, 0x872f455d, 0xd70c2536, 0x9f22d877, 0xb58e30f9, 0x4a2b8162, 0xce8b5503, 0xa70a7b13, 0xeafc371c, 0xe92c27f1, 0x8d67b6dc, 0x860bd1f4, 0xfc94b5c7, 0x7c7e27c, - 0x930ac8d0, 0x0000f3, 00000000 + 0x930ac8d0, 0x0000f3 }, { 0x2a089145, 0xe9b9bb98, 0xc00cf730, 0xd4b692d2, 0xd59b91d8, 0x738a11c3, 0x1f5de28, 0xcc88fc0b, 0x2af463a2, 0x3bdbcec1, 0x468d94ea, 0x3bf0118f, 0x4a13022, 0x1796942f, 0x444c023a, - 0xcece0aee, 0x0001e8, 00000000 + 0xcece0aee, 0x0001e8 } }, { @@ -63438,19 +63436,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6543a73c, 0x959bc13f, 0x94f23a87, 0x5417d26a, 0xb6ac5965, 0x5c7058ef, 0xff0b801e, 0x68f0e779, 0x167be012, 0xe12e5e90, 0x8ef24847, 0x7129b452, 0xef756166, 0xc5d28158, 0x147d4ed, - 0x152ed940, 0x000066, 00000000 + 0x152ed940, 0x000066 }, { 0x2436cff9, 0x42f6950d, 0x90b8aa4d, 0x5202f082, 0x64bd2225, 0x6f6c2ca2, 0xae4d37ce, 0x87b7495c, 0xca399fdc, 0x40520fd6, 0x50b200e7, 0x2f874395, 0xda0279a0, 0xb232f56f, 0xb919314, - 0x35f8d973, 0x00010c, 00000000 + 0x35f8d973, 0x00010c }, { 0xe49d4287, 0x33aa3148, 0xd1f4d11f, 0x561b1dc7, 0x5d0c533c, 0xb57abd7f, 0x77b634ab, 0x8363572d, 0xcbf1c7e3, 0xfa327ab7, 0x18e66f11, 0x2d3ca35c, 0x7ef70ab5, 0xc39aa10b, 0x967e503f, - 0x71cfb1bd, 0x00009d, 00000000 + 0x71cfb1bd, 0x00009d } }, { @@ -63458,19 +63456,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5a6d9dd5, 0x233d4856, 0x20ebcf29, 0x902c379e, 0xacbd8702, 0x440af0a6, 0x7dae4411, 0x597f0429, 0x7ba59e86, 0x7e40d41c, 0xdceaf7e5, 0x469f80ab, 0x8beaba1e, 0x70db0c99, 0xb659bf1e, - 0xca24b502, 0x000199, 00000000 + 0xca24b502, 0x000199 }, { 0xe386b5ea, 0xbf771460, 0xfee31906, 0x34bef6cb, 0x658c9e44, 0x962a672, 0x39c1c3cc, 0x9af3c179, 0x2a5f7675, 0xebb95a7, 0x49a3323b, 0x9d290908, 0x9958de88, 0x58f0ba7d, 0x7bafdc78, - 0xa8ee0b9c, 0x00005d, 00000000 + 0xa8ee0b9c, 0x00005d }, { 0x4c563666, 0xe350f88, 0xb5e0301d, 0x60e7eecd, 0xb6491e97, 0x7040ba7, 0x316e37b6, 0x92249020, 0x134a7ae3, 0x81e67549, 0x12894919, 0xab8b0f33, 0x222e53b6, 0x75422511, 0xf7ded9c7, - 0x20f82a4b, 0x0001c0, 00000000 + 0x20f82a4b, 0x0001c0 } }, { @@ -63478,19 +63476,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc61b25c0, 0x4271478d, 0x89756a77, 0xa4718d3d, 0xd0f191d8, 0x4f47c0f9, 0xd8d7a5b9, 0xc6dbfac6, 0x525d38e1, 0x32e824a8, 0xba4089d7, 0x3bd03381, 0x2b07eb46, 0x78e6cde0, 0x8924b46a, - 0x6d916c03, 0x0000e7, 00000000 + 0x6d916c03, 0x0000e7 }, { 0xc79a367b, 0xf4aceff7, 0xea3d0eb8, 0x160a0cd8, 0x3eedd5c0, 0xfebbb9f5, 0x9364a981, 0x2a791763, 0x2f99e555, 0xb64648ee, 0x6e7484a3, 0xc584efe3, 0x469a52a9, 0x668fc0a3, 0xbc4872c9, - 0x433d445e, 0x000126, 00000000 + 0x433d445e, 0x000126 }, { 0x779ce594, 0x24a8bc42, 0x587f1c9f, 0x3ddfed38, 0x4ae96930, 0xfd14064e, 0xa73ab65c, 0xdc8521a3, 0xfffda774, 0x8d8c2d96, 0xf2732762, 0x8aa748b, 0xb93a164f, 0xc19db3b, 0xe9940ad3, - 0x9b6387bc, 0x000103, 00000000 + 0x9b6387bc, 0x000103 } }, { @@ -63498,19 +63496,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbe031dc8, 0xc15292f8, 0x37050606, 0x9630ddeb, 0xacb089d2, 0x7993f43, 0x8d585dfc, 0xf49a1bd6, 0x54089751, 0xa8f1d2f9, 0x50a49c25, 0x28847aa0, 0x999dda47, 0x29e6db69, 0xf0e92a, - 0xc3b07122, 0x00011a, 00000000 + 0xc3b07122, 0x00011a }, { 0xe3704789, 0x6831db90, 0xc2c0b962, 0xa0da8448, 0x917b89fe, 0x716b8b10, 0x8c312d1a, 0xf95f65c3, 0x335dad59, 0xa06c0b83, 0xfc1efbb9, 0x358214a7, 0xdcb94af5, 0xe75b2cf6, 0xc542ff9b, - 0xa46ba384, 0x0000e2, 00000000 + 0xa46ba384, 0x0000e2 }, { 0x3345a346, 0xb783733d, 0x7826dc43, 0xb6485abf, 0xee8a27fc, 0x8618b22e, 0x9a99fdd1, 0x690f2d88, 0xeabfe98e, 0xcdc8fbe6, 0x8184c57b, 0x5e8a34f4, 0x4622dd78, 0x1760dd70, 0xf7f801ce, - 0xef1a002b, 0x000126, 00000000 + 0xef1a002b, 0x000126 } }, { @@ -63518,19 +63516,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfdba07b8, 0xe5600ec2, 0xff423607, 0x59405906, 0x45e497a1, 0x97887652, 0xaf14caab, 0x9e3c417d, 0xe3e7e375, 0x5f4033b, 0x31b8700e, 0x7951373c, 0x7649819, 0xd2af12ba, 0x8fdcb076, - 0x367571f, 0x0000c5, 00000000 + 0x367571f, 0x0000c5 }, { 0xc62c3c1f, 0xac3d09ee, 0xdc53d146, 0x7447ec71, 0x32df3055, 0x373684d6, 0xcf4881ca, 0x913b7161, 0xcca80205, 0x4d6417c, 0x85cf45b2, 0xc3fb0094, 0x9d68d84e, 0xd3e8e336, 0x285b7e9f, - 0x6bac6492, 0x0001e9, 00000000 + 0x6bac6492, 0x0001e9 }, { 0x4a3b923e, 0xd65c1beb, 0x132e7e5b, 0x876fc56d, 0x55461d1e, 0x33b7ce47, 0x5c963e58, 0xf4c5610b, 0xb28cf07b, 0x1becf502, 0x5dad2624, 0xf4e132bb, 0xc0daa1b3, 0x48376ec7, 0x93a23230, - 0xd34460d2, 0x00004c, 00000000 + 0xd34460d2, 0x00004c } }, { @@ -63538,19 +63536,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4f5542c5, 0xb4978a07, 0xda5a8be1, 0x58b27483, 0x76f10605, 0xf7d43b8, 0x5b7943b4, 0xa3c68c00, 0x81909d0d, 0x95ed2d8, 0x4c3b3095, 0xf6a63df8, 0xc17bc668, 0xb22d7222, 0x5c11f56, - 0x88f3cbdc, 0x000033, 00000000 + 0x88f3cbdc, 0x000033 }, { 0x10b94ee4, 0x70ce8b05, 0xb847b823, 0x44d4a73e, 0xd4986636, 0xfcb0edf2, 0xac068ff5, 0x1676a79f, 0xe4087a0, 0x16f949dd, 0xe3b15e69, 0xbea2e47a, 0x91bcde20, 0x4df363bb, 0x665ac199, - 0x4febc5d4, 0x000027, 00000000 + 0x4febc5d4, 0x000027 }, { 0x16dfe45, 0x20dedd7, 0xe6c4661, 0xdbd6336f, 0x3a10d744, 0x98f8e49f, 0x1394974e, 0xc4533ec9, 0x53cbbcd2, 0x109d6455, 0xbb20267d, 0x138494ae, 0x2cc91775, 0x7c58f7af, 0xaec6be3, - 0x22b295cf, 0x00017a, 00000000 + 0x22b295cf, 0x00017a } }, { @@ -63558,19 +63556,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x80bb063d, 0x58d3cba9, 0x37ba3deb, 0xc7d3592c, 0x621f2279, 0xb1d627ff, 0x66ef75eb, 0x73167923, 0x355d8aaa, 0x6f356631, 0xe3ee9fa9, 0x9c4e77a2, 0xe6a92c57, 0x6f3391c9, 0x86ce9e49, - 0xa4eb68fb, 0x000153, 00000000 + 0xa4eb68fb, 0x000153 }, { 0x12988f52, 0xac643104, 0x7c72dc8b, 0xa415c451, 0x7f66b917, 0x41f9322a, 0x8441d8d5, 0x89dff1e, 0x5607db2c, 0x37a2b2fa, 0xf3ce7524, 0xea659961, 0x2f9974a8, 0xee5987c1, 0xd7592598, - 0xb0949db8, 0x000177, 00000000 + 0xb0949db8, 0x000177 }, { 0x9708db52, 0xdc7d534a, 0xb565b9a5, 0xb132051a, 0x8cb3e82d, 0x30f67f7c, 0xcc6a553a, 0x2455ec9b, 0xd30f18d9, 0x7dbbc0da, 0xc0764470, 0x96ced6d3, 0xf7cbdbd9, 0xf5880954, 0x851655e8, - 0xb8e015a6, 0x0000b5, 00000000 + 0xb8e015a6, 0x0000b5 } }, { @@ -63578,19 +63576,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbe3c0889, 0xf020f62c, 0xe190ef32, 0x4732ca91, 0xc6ff72f7, 0x32c8da82, 0x63763108, 0x98290aa1, 0xd094002f, 0x72f781a2, 0xfb31d459, 0x8208a41d, 0x51a42cb9, 0x10da20c5, 0xba386f91, - 0x37280e7f, 0x0000ef, 00000000 + 0x37280e7f, 0x0000ef }, { 0xab638912, 0x700db4a5, 0xe330e753, 0xc30a91df, 0xe5665fab, 0x3335b2f1, 0x57f57397, 0x8d2ec829, 0xb498268d, 0x16a5ca6d, 0x39a6e5e5, 0x2c2c3c5a, 0x53863f28, 0xb27d4061, 0xebe6ddb8, - 0x34e94941, 0x0001d8, 00000000 + 0x34e94941, 0x0001d8 }, { 0x8994c51, 0x8f1f5808, 0xb4c1697a, 0x34a2f291, 0xa4b3d3ab, 0x9af3dd71, 0x6cfc7671, 0x838368e6, 0x77a80831, 0x4b98e7cd, 0xa4b31b89, 0x1315a003, 0x167302b3, 0xbab34f82, 0xcb09a38c, - 0x5d31d27, 0x000199, 00000000 + 0x5d31d27, 0x000199 } } }, @@ -63600,19 +63598,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x675db229, 0x63537a2a, 0xb03daed0, 0x7dff3d3, 0x5a443953, 0xf042700b, 0x3165b339, 0x8bbffc9f, 0x4523fd81, 0x2ea480a, 0xfe5eb0b3, 0x5e9b78d3, 0x4904cb68, 0x26d7390b, 0x47b54522, - 0xa0c0c5fb, 0x00002c, 00000000 + 0xa0c0c5fb, 0x00002c }, { 0x5d4acdcd, 0x5c26c65b, 0x536aa882, 0xe5587594, 0xc4fb228d, 0x22136909, 0x88860a7b, 0x8a0ab5b0, 0x98269814, 0xb553fbfb, 0xf375f7b, 0x9a7e721e, 0xad8ef24c, 0x1a012603, 0xc23bbbc8, - 0x6a15c048, 0x0001b5, 00000000 + 0x6a15c048, 0x0001b5 }, { 0x3df1c6a9, 0x4cff9562, 0xfa87da2d, 0xfcaadb28, 0xd07a0aae, 0xc406f634, 0xf2412bec, 0xef0b44d5, 0x893d40c4, 0xb2ebc90d, 0xf4b13be9, 0xbe973c1a, 0xf04dc08f, 0x28c54618, 0xccef3b2, - 0x53e1b5a9, 0x00011f, 00000000 + 0x53e1b5a9, 0x00011f } }, { @@ -63620,19 +63618,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x74245e84, 0x64f8bc01, 0xc8e74838, 0x99d2a8f7, 0x20e866e3, 0xff6ebd35, 0x12a84840, 0xd9889d74, 0x1f8b1611, 0x94a83a0d, 0x7fd4bc97, 0xf924d2c8, 0x8ad45483, 0x6bb6a9b9, 0x6465f8bc, - 0xa9ddc14f, 0x00019a, 00000000 + 0xa9ddc14f, 0x00019a }, { 0x16ee3950, 0xa56f004a, 0x4be8780a, 0xe5d57866, 0xeb19a82c, 0x42b1f31d, 0xc85ee90a, 0xed9f34fb, 0x4b582755, 0xa2cb1405, 0x147df71, 0xe6ca1858, 0x4b40a676, 0x5fdce19d, 0xa2dd6f7, - 0x2269261b, 0x00009a, 00000000 + 0x2269261b, 0x00009a }, { 0x29028b35, 0xc56b3cd5, 0x903023f8, 0x5d409747, 0x21d05712, 0xb644d65a, 0x2473554a, 0xce2a106b, 0x655d78af, 0xdeb1126, 0x7e35e4ac, 0x3b1a24f5, 0xbcf218f1, 0x71c2dccc, 0x1936c756, - 0x207e3084, 0x00000a, 00000000 + 0x207e3084, 0x00000a } }, { @@ -63640,19 +63638,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x677aaf28, 0x17a02759, 0xff06eece, 0x6a688069, 0xb207c3e8, 0x260ea394, 0x9925770, 0xcfaa4988, 0x6bb51135, 0xb26344e9, 0x2bc9e7e2, 0xcd669399, 0xf69a4804, 0xef0cf94c, 0xf83e88ed, - 0x8720236, 0x0000ca, 00000000 + 0x8720236, 0x0000ca }, { 0x637d9ca0, 0x99beb624, 0x467570e3, 0x58377d0b, 0xe3887e38, 0xf4eb7702, 0x697bb48a, 0xfccfb167, 0xc7365622, 0x14289786, 0xeefcfd8b, 0x9fdddc12, 0x6db4f5a0, 0x8604c301, 0xee5a38a9, - 0xffa031b9, 0x000107, 00000000 + 0xffa031b9, 0x000107 }, { 0x88b4bb49, 0xfb961f77, 0xae882d24, 0x49fe94d6, 0x3dae2c04, 0xdaadf04f, 0xe255b385, 0x57db5d72, 0x590c43b6, 0xd3114011, 0x439a99b, 0x44c801ca, 0xbe4ae651, 0x564727f4, 0xaba96744, - 0x874d0658, 0x0001c6, 00000000 + 0x874d0658, 0x0001c6 } }, { @@ -63660,19 +63658,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x35b24808, 0x7203b736, 0x3b55f231, 0x732327a9, 0x25106dd0, 0xb288c62e, 0x367586f7, 0xce0737d8, 0xf0ff5468, 0x7b47efdf, 0xe96c4916, 0x603113b, 0x7bfc458c, 0xa88e8fe4, 0xc9763cf3, - 0x4a09a469, 0x0001f8, 00000000 + 0x4a09a469, 0x0001f8 }, { 0xcb3d694f, 0xc0d5b1a8, 0x88a258a, 0x892db6c5, 0xd2e5e8b3, 0xf7a8f7c7, 0xec51daf2, 0x89f536ab, 0x1a8e0ce3, 0xef649f32, 0xc9343c29, 0x7e673845, 0x3aa1c98c, 0xae41a74e, 0x30a203e8, - 0xa92aeb7b, 0x000064, 00000000 + 0xa92aeb7b, 0x000064 }, { 0x1917622e, 0xa3afd477, 0x7395f04b, 0xc8502223, 0xcfe7fc83, 0xd8989c0d, 0xc3d9d613, 0x38a41c0f, 0x57465009, 0x44381541, 0xa16eac53, 0xb4f0e3e, 0xd11e4a1d, 0xb5eaaf7e, 0x4d2a21e8, - 0x38038a77, 0x00014f, 00000000 + 0x38038a77, 0x00014f } }, { @@ -63680,19 +63678,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4e68d64c, 0x4fc86233, 0x73cc9138, 0x58189352, 0x3e557a24, 0x206a09ff, 0x4fe6e6e8, 0xb568edb7, 0x34096ebe, 0x635873c1, 0xf7122a9d, 0x72cc590, 0x55d2c3a2, 0x888be407, 0x35b7c22a, - 0x6fc44781, 0x000184, 00000000 + 0x6fc44781, 0x000184 }, { 0x8df7330f, 0xd3e3c61f, 0x1808f743, 0x890c92f, 0x26af262, 0xdb3ed78b, 0xd9e35096, 0x4f7d3ef5, 0x974879be, 0x9278254e, 0x9629de10, 0xc01a2b89, 0x78e57959, 0x50f3330, 0xe295078a, - 0xb705f4ef, 0x0000b7, 00000000 + 0xb705f4ef, 0x0000b7 }, { 0xd750cce0, 0x9ed60c78, 0x1c4c4845, 0xaf1ba5d0, 0xd054cd89, 0xc3ba1ff1, 0xe94e150f, 0x71bb589a, 0x8784ab6a, 0xa4d2186a, 0xaf57d8ab, 0xaded918e, 0x240ac9e5, 0x4b55e16f, 0x26a0d15c, - 0xbc14d090, 0x0001c6, 00000000 + 0xbc14d090, 0x0001c6 } }, { @@ -63700,19 +63698,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd3d05ed6, 0x6fec0ed5, 0xcf9fc593, 0x4050f768, 0x9e515a9a, 0x9530d07f, 0x40b21a31, 0xf22a51c2, 0xd3dd1d5, 0xddfe52e8, 0xf603f099, 0x4f1933a3, 0x23fbbaaf, 0x38d02e56, 0x92c4d3c8, - 0x4f159289, 0x00006f, 00000000 + 0x4f159289, 0x00006f }, { 0x2d755c30, 0x8cbd2fe0, 0x1e3fc712, 0x79e2d71f, 0x67383269, 0x1dda6fd9, 0xe045f4c1, 0x220a8deb, 0x8bdd31a8, 0x2af7ab5f, 0x2cf3470, 0x61345b82, 0x70cedcd2, 0xf8263248, 0xc40aae79, - 0x6a01c32b, 0x000171, 00000000 + 0x6a01c32b, 0x000171 }, { 0xcd60488b, 0xf6840a1f, 0x4f15d4e8, 0x2f61cf61, 0x855ea95d, 0xf55ae237, 0x502ebcb2, 0x87d36ae9, 0xbcf96a2b, 0x3250c5b5, 0x1bd2c91a, 0xf581d200, 0x14a507f4, 0xabb2be29, 0xa3d0826d, - 0xaf5cb665, 0x0001e0, 00000000 + 0xaf5cb665, 0x0001e0 } }, { @@ -63720,19 +63718,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x79612c7f, 0xabe16479, 0x7820abc0, 0x5bade9b4, 0x9b528b58, 0x30faae7c, 0x50bcb45b, 0xdcb5d166, 0xa06d602, 0x33f7852d, 0xb36006f7, 0xd5bff068, 0xba7a3d42, 0x75dbbb7f, 0xc9424a2f, - 0xe6ac1da6, 0x00001f, 00000000 + 0xe6ac1da6, 0x00001f }, { 0xe5106d33, 0xead20d04, 0x7f3e35cd, 0xf650a745, 0xc00c96d, 0x37fe58da, 0x54d49f25, 0x4822122c, 0x26cccc8, 0xe5a60270, 0x1774672b, 0x21dc565e, 0xf3a47dc9, 0x33e4e82d, 0x6e3d790f, - 0xb31f16a6, 0x000135, 00000000 + 0xb31f16a6, 0x000135 }, { 0x8877e49f, 0x25ba1678, 0x213fdbc1, 0x6170f330, 0xfd5c2442, 0x6bca3310, 0x21bdf29, 0x8a2c85c4, 0x55f89267, 0x7b7917f8, 0xc8e92aa, 0x947e8db, 0xbc31f9b2, 0x4433907f, 0xb496ac3d, - 0x4a3b1c18, 0x000143, 00000000 + 0x4a3b1c18, 0x000143 } }, { @@ -63740,19 +63738,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe403b3a5, 0xda05a6a1, 0x46bfec68, 0x28901fd2, 0xd95424eb, 0xcf3a7b98, 0xc27cb72d, 0x7666cda2, 0xec0cca96, 0xef58481d, 0x77717ef, 0xc387bfc6, 0xc1510487, 0x33c40847, 0xe1457520, - 0x2d77e5d8, 0x000169, 00000000 + 0x2d77e5d8, 0x000169 }, { 0xff11834, 0xc5525435, 0x34ce759f, 0xe6446341, 0xcfaa8f41, 0xd10b5029, 0x7f426386, 0x8ed0b6df, 0x3c217304, 0xd740a600, 0x81774775, 0x7376ed54, 0x2d6daae5, 0x6b58b33c, 0x79783b5a, - 0xf464414, 0x0001b6, 00000000 + 0xf464414, 0x0001b6 }, { 0xac0621b6, 0xca579df1, 0x12dd7a84, 0x5b3d4d32, 0xdc936859, 0x9cd87f77, 0xc7888028, 0x6c151262, 0x2d9657fb, 0xb417d402, 0xe41f2180, 0x37e2abcb, 0xc5ab403, 0x8f87cc31, 0x5c534bed, - 0x734d4ffe, 0x00000f, 00000000 + 0x734d4ffe, 0x00000f } }, { @@ -63760,19 +63758,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfe409558, 0xc94e5027, 0x7cb10279, 0x5a3be683, 0x78c1f5d, 0x2e6d7936, 0xf2ed6954, 0x86b483f8, 0xa56c2c29, 0x2d1d51f5, 0xa073446f, 0xd8e4b114, 0xde5f503b, 0xf3f1fc5a, 0x6db3ec27, - 0x46a8aa42, 0x00019f, 00000000 + 0x46a8aa42, 0x00019f }, { 0x58a16d57, 0xa31f80df, 0x30f9091e, 0xaf880325, 0x8b55254d, 0x4a50b4ea, 0xb9f919e9, 0x1d1ee9b5, 0x198cffaf, 0x1f2b4037, 0xee4eb0c, 0x3708c60f, 0xd892f29e, 0x63ee730f, 0x160e9528, - 0xfcebed62, 0x0001ec, 00000000 + 0xfcebed62, 0x0001ec }, { 0x1f237a6b, 0xab508308, 0xb87b07cf, 0x9fb489fc, 0x80490b75, 0xcc5c3c2e, 0xe230c9e7, 0xb8ce4d53, 0x4fbeeae0, 0x4b0c54c1, 0x74487d0f, 0x7a54f0da, 0x7cbd5cf2, 0x6509729, 0x4a632d70, - 0xaacef4b1, 0x0001d2, 00000000 + 0xaacef4b1, 0x0001d2 } }, { @@ -63780,19 +63778,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2edd16ca, 0x5aec38a8, 0xb93cc46a, 0x3f91397e, 0xdbbcbe20, 0x32b490c0, 0x88a49829, 0x925aac48, 0x6a3a3da3, 0xdef83782, 0x42e21316, 0xba0914ed, 0x6ae85120, 0x9035669a, 0x9f365659, - 0xe8b44231, 0x0001fd, 00000000 + 0xe8b44231, 0x0001fd }, { 0x5c35103a, 0x344db651, 0x31761dfe, 0x6026848a, 0xaf399e39, 0xba85c44f, 0x40ac0b9a, 0x9e8aa0af, 0x808bd1b5, 0x260f169f, 0xe3e514a, 0x82abdd81, 0xfca73230, 0x79513c6a, 0x1b2b6e6a, - 0xca32eb51, 0x00009e, 00000000 + 0xca32eb51, 0x00009e }, { 0x3f0cfe63, 0x9793cab0, 0x35735dcc, 0x17d97d33, 0xec376cba, 0xf3ae026, 0xcde4104c, 0x756343f, 0x4292d5a7, 0x39baa5b5, 0x5961a5dc, 0x66e11c50, 0x359d48f, 0x56f6e8ec, 0xbd72df04, - 0x558d529c, 0x00017a, 00000000 + 0x558d529c, 0x00017a } }, { @@ -63800,19 +63798,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbdcceba6, 0x520a9045, 0x103edb72, 0xd6f6854c, 0x3516b8bd, 0x5cd6edb3, 0xa2c64423, 0x3f938e83, 0xea308c49, 0xff658f32, 0xe5083fa0, 0xa980991b, 0x5eb76df7, 0x3ef71568, 0x3cead37a, - 0xe926bc7e, 0x000192, 00000000 + 0xe926bc7e, 0x000192 }, { 0x605b9792, 0x24030498, 0xdbb953e5, 0x9b387bf2, 0x1cf76afb, 0xc89b211b, 0x8d3ba92, 0x7ce8f876, 0x3e5fa48b, 0xbb67f21, 0x364466d2, 0x983d44fe, 0x46739757, 0x716d51ae, 0x54674017, - 0xdaecc97b, 0x00018c, 00000000 + 0xdaecc97b, 0x00018c }, { 0xc24041fb, 0xbc1fc644, 0xbffdf049, 0x15b9976c, 0x8ce57fed, 0x49c0f875, 0x3f19ce57, 0x8cda2621, 0x9cd79411, 0x4b1bbe72, 0xc517ba52, 0xbada7fd5, 0x117bcc15, 0x6ccaa957, 0x448465a9, - 0x3212569e, 0x0001e7, 00000000 + 0x3212569e, 0x0001e7 } }, { @@ -63820,19 +63818,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7e6812fa, 0x564e3d9b, 0xbe284df1, 0x36844aa1, 0xaa705e8c, 0x72efa73e, 0x9153e56, 0x4b797bc2, 0xb94573fc, 0x6c63daf1, 0xfea8f339, 0x17c32895, 0xacf5366a, 0x11be33c5, 0x18af0c5a, - 0xaa3d8da, 0x0000b4, 00000000 + 0xaa3d8da, 0x0000b4 }, { 0xe4bf35b2, 0xaf72dcf9, 0x57926917, 0x30e1b475, 0x8e9e41e5, 0x6bf98cc1, 0x6d2b2b33, 0x53b9fc9, 0xcf3bf904, 0x216afb64, 0x2591a246, 0x1a884dfe, 0x517e2d59, 0xc3b60d6a, 0x17a39eb0, - 0x8d429fba, 0x000165, 00000000 + 0x8d429fba, 0x000165 }, { 0x9810679f, 0xe03455ce, 0x72543309, 0xf81ccea5, 0x95a6c7b1, 0xe7dcb7db, 0x9bfb2239, 0xf564cc0e, 0x2205e2cb, 0x362cc460, 0x562770bf, 0x35a3e2e3, 0x6ceb6274, 0x73d82069, 0x7bdf62e6, - 0x18e7a83f, 0x000158, 00000000 + 0x18e7a83f, 0x000158 } }, { @@ -63840,19 +63838,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1344cb49, 0xc115e2aa, 0x1ff23065, 0xae6afc95, 0xcd9c018b, 0xd317f02d, 0x1f43adba, 0x41a60f5e, 0xfd5b2383, 0x28436c91, 0x28f6962f, 0x7812bfa6, 0x7fe7813f, 0xbfa42a16, 0xec630c92, - 0x94a1a1a2, 0x000166, 00000000 + 0x94a1a1a2, 0x000166 }, { 0xcda1827d, 0xd3d979d4, 0x5b32e8fd, 0x3a8a4b8, 0xec86606b, 0xaf35c358, 0x124508b7, 0xa08680d6, 0x249993f3, 0x79e06c2b, 0x61736ebd, 0xa39c2b64, 0x4d39b5e8, 0x7a32aefe, 0x2fb5bb82, - 0x9ed880c8, 0x0001f8, 00000000 + 0x9ed880c8, 0x0001f8 }, { 0xbcbdff0c, 0x1db98377, 0xbd0457cf, 0xd5d48df6, 0x6b5f3d9e, 0x8401e210, 0xd8bdaf5f, 0x72e50954, 0xc60d0e0c, 0x93a53426, 0x4c5a4209, 0x14f39761, 0xdfdf06fb, 0xfa74d574, 0xa3fd91dc, - 0xe4db26f5, 0x0001e8, 00000000 + 0xe4db26f5, 0x0001e8 } }, { @@ -63860,19 +63858,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfdf5c8a3, 0xef8e1ad2, 0x3dcb42bb, 0xf39d3c43, 0x84844e19, 0x10392b08, 0x6744bed0, 0x83120d4d, 0xed09baa, 0x8a56f53, 0xabd66f90, 0x9fc3be07, 0x589df62d, 0x2e0eb47d, 0x66d54850, - 0xa3415362, 0x000032, 00000000 + 0xa3415362, 0x000032 }, { 0xf195fc4, 0x67cce11e, 0x78ab6b77, 0xcc81bcb0, 0x13929d63, 0x900bfc7, 0x516f40db, 0x44d5168e, 0xb43280db, 0x4f55440e, 0x85ff1e99, 0x23dc624, 0x55d67df8, 0x23ce8d94, 0xc18e96bb, - 0x2b13f9d2, 0x0000f7, 00000000 + 0x2b13f9d2, 0x0000f7 }, { 0xf1b5e949, 0x1217ae59, 0x92f7ffd3, 0x58902b67, 0x6c4ad2fa, 0x1f2db2a9, 0xdb0c9263, 0x35a90984, 0xb0d1be3b, 0x655d8805, 0xc10e7675, 0x187d5b96, 0x9adc9b16, 0x91126d4b, 0x8f6fc6d, - 0x5493fddc, 0x000151, 00000000 + 0x5493fddc, 0x000151 } }, { @@ -63880,19 +63878,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x825d1596, 0x9bce6a4, 0xeebad3c5, 0x457d4091, 0xd96135bf, 0xebba5db2, 0xb8840d4, 0xb41923c7, 0xfa4e1df9, 0x375cd0a1, 0x5ed71827, 0xe478a225, 0xd1ae6893, 0xb7dcfbe0, 0x447f2075, - 0x5c8219cc, 0x0001c0, 00000000 + 0x5c8219cc, 0x0001c0 }, { 0x229f470e, 0x9a8d1556, 0x55d1ea63, 0xa9992f9b, 0x6d35464e, 0x606a75f2, 0x8361a697, 0x66d5bcf9, 0xadb7ca5c, 0x538c32e8, 0xaceb5f91, 0x354bdea8, 0xfb1629dc, 0x3b19a2a1, 0x443495bb, - 0xcb0a9aa5, 0x000090, 00000000 + 0xcb0a9aa5, 0x000090 }, { 0x72ed1c1b, 0x9573c4a9, 0x3dbdd355, 0xd4f65627, 0x16709266, 0x81991afc, 0xcf896ac5, 0x275ff499, 0xe69b31ef, 0xd8c8bce4, 0xda57d5a, 0xa0396f1, 0xccc72c96, 0x101e38ee, 0xed53e6cb, - 0x26554f11, 0x000063, 00000000 + 0x26554f11, 0x000063 } } }, @@ -63902,19 +63900,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe1f3a8b1, 0x72d6a396, 0x575c84e7, 0x601b6c9a, 0x2e41d8a9, 0x3458b727, 0x85b1b1c, 0xbed9287d, 0x8ce94995, 0x31f41e9c, 0x6a4137b4, 0xe650a5ab, 0x584d64af, 0x5727cfeb, 0x9afd37a6, - 0x8ba97c37, 0x000113, 00000000 + 0x8ba97c37, 0x000113 }, { 0xd7744f83, 0x12d480a8, 0x2fcb9d84, 0x5a58588d, 0x6cb0b08, 0xf3b55e6d, 0x26b1882d, 0xd6edc1ff, 0xbb0bb43, 0x45a4f6c3, 0xae4dddf9, 0x88e7f244, 0xb5b70e93, 0x7fb06d4e, 0x7a1cb5fd, - 0x68a78395, 0x00007d, 00000000 + 0x68a78395, 0x00007d }, { 0xf737c941, 0xa9b60d81, 0x4d8089ee, 0x145bdddb, 0xf9ca24bc, 0x299f8762, 0x8b6e5d2f, 0xfe483e03, 0xe373f407, 0x6cc63268, 0xe0f496f4, 0xd13123dd, 0xf9d879c2, 0xea1e980c, 0xcf486b70, - 0xfb91d92a, 0x00003b, 00000000 + 0xfb91d92a, 0x00003b } }, { @@ -63922,19 +63920,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x615b8783, 0x917ac30f, 0x39cbcfbf, 0x42259259, 0xc30cc344, 0x34f598da, 0xaff18e6b, 0xd07d7dd1, 0x4d59f7b6, 0xadc96036, 0xb5db448d, 0x173619aa, 0xe510bfed, 0x9b3bce45, 0xe70c914f, - 0x1b6779a1, 0x0000d9, 00000000 + 0x1b6779a1, 0x0000d9 }, { 0x10f2bbeb, 0xd1c59f2e, 0x6695e432, 0x75792cbe, 0x7bc75c36, 0xd9e47c9c, 0x3d2777b1, 0xa91adc04, 0x6218ecf4, 0xffde7fb0, 0xa89b5ad, 0xcadbc9b0, 0x5e0e5626, 0x774edc8, 0x74a7d55c, - 0xde82c8d1, 0x000165, 00000000 + 0xde82c8d1, 0x000165 }, { 0x694d338a, 0xc9d58438, 0xc18f27a8, 0xc7f143ef, 0x91243e61, 0x5d31e5cb, 0xcc291389, 0xde40cc6, 0xcbc56d41, 0x5171bbca, 0x486df39e, 0x10fab55, 0xda92098, 0x15ed97e1, 0x58cdacbb, - 0xec68052a, 0x0000bf, 00000000 + 0xec68052a, 0x0000bf } }, { @@ -63942,19 +63940,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcce84540, 0x1e7fb4e1, 0x881ecd0e, 0x8296934c, 0x760b48, 0xcc4bc73a, 0x6a26873a, 0xfb12be0c, 0x42610f7a, 0x70530b3c, 0x41007d48, 0xf97dbb1b, 0x5a62559a, 0x3e3db14b, 0x3cdfa0e0, - 0x5e02533d, 0x00010c, 00000000 + 0x5e02533d, 0x00010c }, { 0xfbec9414, 0x9ce06683, 0xd6793982, 0x67bce859, 0x9ba7d3c5, 0xed731093, 0x40c9f8b6, 0x80117377, 0xb575dba2, 0xdf82445c, 0x1982fbce, 0xea902b4, 0x2c0d44f8, 0x3a266f5c, 0x328951c5, - 0x86c4a94, 0x0000df, 00000000 + 0x86c4a94, 0x0000df }, { 0x76d6a2a1, 0x347e3c60, 0x721cc317, 0x84fdde49, 0xa6f41e5d, 0x9318d8b5, 0xe6f75ee1, 0x720eb0ae, 0x23cb218a, 0xd5f7e00f, 0x48cd033c, 0x7dca4542, 0x6d9eba9b, 0x74405fd8, 0x7d0696e3, - 0x17067d17, 0x00010e, 00000000 + 0x17067d17, 0x00010e } }, { @@ -63962,19 +63960,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9ff3d823, 0x4248b247, 0xe2947058, 0x8135acdf, 0x93315416, 0x1d9875e6, 0xa4e99b70, 0x114d58cf, 0x2543f089, 0x918c02e4, 0xa1427e83, 0x6a398c14, 0x55489c97, 0xef79aa07, 0x7f523f9b, - 0xa1cd54c7, 0x0001b9, 00000000 + 0xa1cd54c7, 0x0001b9 }, { 0xca9dc62d, 0x20feae2b, 0xf8b29076, 0xeb67a2f9, 0x8e3c46e8, 0x8a50a01d, 0x154001e4, 0x81496d5, 0x2a0eb35d, 0xde20e9a2, 0x58e21689, 0x2e7711a7, 0x27bc1397, 0xf3bc6f08, 0x33d1d8a5, - 0x95fe42fd, 0x0000f4, 00000000 + 0x95fe42fd, 0x0000f4 }, { 0x29cee161, 0x839d8a00, 0xad9ce742, 0x92c585fa, 0xbacd0a77, 0x89e22ca2, 0x4c8669ce, 0x3b4417ee, 0x9518fdf7, 0xcce4692c, 0x2c381bbf, 0x29657b74, 0x70088366, 0x4b077bf4, 0xddb2fa20, - 0xda475bec, 0x000020, 00000000 + 0xda475bec, 0x000020 } }, { @@ -63982,19 +63980,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x745c2657, 0x9541de30, 0x83a46728, 0xbb639a68, 0xfe0e19ab, 0x73811619, 0x869aadae, 0x434e6838, 0xcfd09c75, 0x82934489, 0x334d9689, 0x4c8c65d9, 0xa31bf922, 0x47151e42, 0x3d387c3f, - 0x41671187, 0x000166, 00000000 + 0x41671187, 0x000166 }, { 0xd9d3745f, 0x9b741be9, 0x7d96734, 0xb41f92e0, 0x79cc22e, 0x62eed33f, 0x6b314e0c, 0x72bbc1a, 0xa41157ce, 0x68f88d13, 0xbfce25fe, 0x9042fca6, 0xd7d31c47, 0x12cda3a4, 0xce6803f2, - 0x1d56efac, 0x0000f7, 00000000 + 0x1d56efac, 0x0000f7 }, { 0xe6856d74, 0x6afc4f78, 0x5da60e2c, 0x19b79e2c, 0xde3f87f8, 0x338ed9d5, 0xb367a48, 0xd7e3098e, 0xd45fbce9, 0x2aad2082, 0x7137476b, 0xe7acac38, 0x2672fb57, 0x25e2a6ad, 0x768d5545, - 0x7b261ec, 0x00005f, 00000000 + 0x7b261ec, 0x00005f } }, { @@ -64002,19 +64000,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x84fa4426, 0xfbcf4490, 0x56f9c896, 0xdc5d1be3, 0x5616bb86, 0xe8d72253, 0xe63d37d3, 0x69312b8e, 0x68ff5f59, 0xcb45d5e3, 0x67c13a75, 0x63150aab, 0x1c6e3b88, 0xcde475c4, 0x1f7e9643, - 0x1c5e53c8, 0x00007d, 00000000 + 0x1c5e53c8, 0x00007d }, { 0x11c8e9ca, 0x2bfc638f, 0x725ef606, 0x6cd4908a, 0x4e3a323d, 0xc498c1ef, 0xc4fc092a, 0xd3e44c67, 0xcd62d5f8, 0x9d45a9dd, 0xe2130a82, 0x977f913c, 0x3e540864, 0x65825b25, 0xe40f03fe, - 0x2bf19b39, 0x0000d7, 00000000 + 0x2bf19b39, 0x0000d7 }, { 0x626b0b4d, 0xa4a7ef8c, 0xd1b5db9e, 0x4869c857, 0x86c11a95, 0xca074175, 0xb6bae877, 0x621af3dd, 0xfb0a7a53, 0x872998ee, 0x27c8a015, 0xc2fff692, 0x8edbda9c, 0x7204180d, 0x764dbfcb, - 0xd81885b6, 0x000172, 00000000 + 0xd81885b6, 0x000172 } }, { @@ -64022,19 +64020,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa99b443b, 0x1cf0608e, 0x23fc84bc, 0x7ca64437, 0x781902f9, 0x4530568c, 0x7bdfa270, 0x9a243bbb, 0x21e0952a, 0x4c76f6e5, 0x1af4551b, 0xaba516af, 0x398c739d, 0x6bee73d1, 0x307be96f, - 0x46d73a8d, 0x00013d, 00000000 + 0x46d73a8d, 0x00013d }, { 0xc34ff006, 0x315a69a3, 0xaa1593e3, 0xb0152135, 0x158c1a76, 0x5fa2b7e0, 0x2c2202e8, 0x4e0ad892, 0xd4d83fd6, 0x86cd7c4b, 0x394d686b, 0x98181a23, 0x9e54d79c, 0x50b0b260, 0x78f8f0c4, - 0x8a23bf17, 0x0001fa, 00000000 + 0x8a23bf17, 0x0001fa }, { 0x1d077888, 0x5d530781, 0xef7578a7, 0xf8cbcfd3, 0xda60d0d7, 0x6f6af941, 0x80fae75d, 0x7605bc6b, 0xcd1fc97f, 0x8827dade, 0xb637290b, 0x2bdd7452, 0x1394df6, 0xe27a72a3, 0x3c0429ea, - 0x329de147, 0x0000a1, 00000000 + 0x329de147, 0x0000a1 } }, { @@ -64042,19 +64040,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3628a459, 0xf6d07f8b, 0x87e7b284, 0x67aa6847, 0x92217992, 0xc71f692a, 0xc5885325, 0xf7b1a53d, 0xa424af8, 0x86a62706, 0xac82553c, 0xb4608792, 0xa585dd0f, 0xd0f877ea, 0x57a23cc5, - 0x801ce467, 0x00007a, 00000000 + 0x801ce467, 0x00007a }, { 0x9c5503bc, 0xb9f8cff4, 0xdc17bad7, 0xa1d52cdc, 0xfe44b51c, 0xe4e2faf7, 0x8c294d3a, 0x7ab2fde7, 0x66af8333, 0x5a49c2a5, 0x163b9ecb, 0x582295d2, 0x730edc1, 0x93a21175, 0xa384e849, - 0x9efa409, 0x000052, 00000000 + 0x9efa409, 0x000052 }, { 0xb574fdc4, 0x802348ab, 0x472355, 0x37ebe8fd, 0x2ef41050, 0x6f4c0938, 0xcb8cb86, 0x775688af, 0x12603104, 0xf941c869, 0x367e3d72, 0x3be1551f, 0x2cdba54c, 0x94cccd3d, 0xca0df592, - 0xcdf09373, 0x0001b0, 00000000 + 0xcdf09373, 0x0001b0 } }, { @@ -64062,19 +64060,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xab010263, 0x60bfe422, 0x6d8953c3, 0xa74d6e41, 0x16acd072, 0xead32ca6, 0xb9ec284e, 0x53b31727, 0x684c9a59, 0xd0c31f4, 0x8200baff, 0xf9b08f11, 0xdb542796, 0xa7faa53d, 0x527cc0b0, - 0xe1813944, 0x00018f, 00000000 + 0xe1813944, 0x00018f }, { 0xd2c99e03, 0xebc2dc2b, 0x3f29830f, 0xd6ae0a67, 0x56a52ea8, 0x221137a8, 0xf29b54a4, 0x1628e2d5, 0xf0242592, 0xe10e9d71, 0xd8ef5388, 0x985f80ac, 0xdc35e2, 0x5123d092, 0xade824db, - 0x93a23bd8, 0x0001d7, 00000000 + 0x93a23bd8, 0x0001d7 }, { 0x5bbdcd61, 0xa9d0e750, 0xfe4b8165, 0xae075316, 0x6901e8, 0x5564f126, 0x5ddbb4f, 0x4869b887, 0x2fd2b6ae, 0x4a5157ac, 0xc1e4b06, 0xedbb6a5f, 0xfbb75d26, 0xc3758b11, 0x5ae32c68, - 0xce6ece21, 0x000021, 00000000 + 0xce6ece21, 0x000021 } }, { @@ -64082,19 +64080,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfae43dda, 0xf2d5d90b, 0x67058cee, 0xd7d61400, 0xff03d5e5, 0xeb1e2c07, 0xb9c7a216, 0x88de46d2, 0x98ac73e9, 0xc8aada8d, 0x56581eb8, 0x63262483, 0x512a38df, 0xd479d8a4, 0x6be66893, - 0x36930e4c, 0x000149, 00000000 + 0x36930e4c, 0x000149 }, { 0x787ff16d, 0xd407590a, 0xfa4e9bcc, 0xce313277, 0x4f51559, 0x64515ea4, 0x1402de90, 0x487be251, 0xd63dbc39, 0x57f69153, 0x5bd06b69, 0x7a32c6f, 0x43084431, 0xfe5e72e9, 0xc1826b4, - 0x604d490d, 0x000037, 00000000 + 0x604d490d, 0x000037 }, { 0xceb2bde4, 0x5299df4b, 0x6ad6e6d8, 0x6de7537e, 0xb75f8955, 0x8df52dda, 0x392e254d, 0xa0f21641, 0x2ab89d17, 0xec875c9c, 0xec825120, 0xb529b1d5, 0x44098714, 0xafe14334, 0x5a484103, - 0xec7f36a2, 0x000117, 00000000 + 0xec7f36a2, 0x000117 } }, { @@ -64102,19 +64100,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26cc173, 0x1534ecd, 0x2bcc6245, 0x63908b7b, 0xce2eb4d5, 0x3fff8b12, 0xc13bc6eb, 0x28ad839f, 0x520d393d, 0xafddf727, 0xcea0a2a5, 0xc1e73824, 0xe0445cc3, 0xdfd4a7d6, 0x87f37f33, - 0x8d722e89, 0x000082, 00000000 + 0x8d722e89, 0x000082 }, { 0xf979e72c, 0xdc07f891, 0xf226ff44, 0xb65488f5, 0x3e0ed1e, 0xea0c2e49, 0x3f02bba5, 0xa771dee8, 0x8f8fa43, 0x798c8342, 0xb1ebcef3, 0x86e0c24b, 0x5f4568ca, 0xcb6d649f, 0xa405a91a, - 0x9b22ee6a, 0x0001d7, 00000000 + 0x9b22ee6a, 0x0001d7 }, { 0xb9ef44c1, 0xfbbe378d, 0x58459cf4, 0x17db2f7c, 0xc58d25b2, 0xe15b04db, 0x6c0bcd19, 0x9604e779, 0x535d4d03, 0x5103433b, 0x7f776009, 0xfd36bd25, 0xe623479, 0x9d4e4321, 0x5309a9a2, - 0xfbc2bae7, 0x00010a, 00000000 + 0xfbc2bae7, 0x00010a } }, { @@ -64122,19 +64120,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x232ab25f, 0xa5bbe67a, 0x80112cd4, 0x21a56963, 0x75d6553c, 0x751c2f1d, 0xa54ba3e0, 0x5d5b4d9, 0xb6c71a02, 0xd5ad4821, 0xc687f16e, 0xd08983d1, 0xc65e6f4b, 0x6ae66e71, 0xeaf69692, - 0xb91c7abf, 0x0001df, 00000000 + 0xb91c7abf, 0x0001df }, { 0xc52eb9a1, 0x38f14743, 0xec929ef2, 0x6465ee1a, 0x7bccc101, 0xcc1438c2, 0x5faab2b2, 0x70991a66, 0x405aa330, 0xf7bee3e8, 0xab5f08bd, 0x6e56ba70, 0x617d83f3, 0xb073be44, 0x4feac165, - 0x7c911e95, 0x00007b, 00000000 + 0x7c911e95, 0x00007b }, { 0x5fb48f9a, 0x9d32609f, 0x9f25ee75, 0x6ab8d54a, 0x46d56b16, 0xc6a65b63, 0x68fc2676, 0x4f9552c, 0x87e3aa8d, 0xac306cbd, 0x43f22969, 0xc34a0fc8, 0xd26e8c81, 0x586075e7, 0x2a192a92, - 0x2ba9de7, 0x00011f, 00000000 + 0x2ba9de7, 0x00011f } }, { @@ -64142,19 +64140,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x957b750a, 0xb3052ecb, 0x58e83225, 0xedfe116b, 0xda8818a6, 0x53ef9ad1, 0x2818fe42, 0xc40ba309, 0x6b322617, 0xef5881d9, 0x28f92bf0, 0x6c17d106, 0x40f7dad7, 0x1788ea48, 0x7633e296, - 0xe2e68455, 0x000042, 00000000 + 0xe2e68455, 0x000042 }, { 0x25f51163, 0x9a669802, 0x62ad42b6, 0xc64ca729, 0x691ffeea, 0xc123a962, 0x89e1f70d, 0x17122ebd, 0xe65f121a, 0x9df1addf, 0xc08c930d, 0x26b11ef8, 0xa8ad867c, 0x290c5a72, 0x766216d8, - 0xd2bef852, 0x0000ac, 00000000 + 0xd2bef852, 0x0000ac }, { 0x2ace60fa, 0xb13b3c24, 0x8eccc29f, 0x8855cf07, 0xc8625079, 0x78ceceaf, 0xdfe1ea34, 0x9f51124d, 0x2b5755de, 0xb26a11de, 0xf8b297a8, 0x339d45a1, 0x3a9f5ae8, 0xe6fa9c48, 0x99a5c7ec, - 0x496727a1, 0x00000d, 00000000 + 0x496727a1, 0x00000d } }, { @@ -64162,19 +64160,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x320c706c, 0x975947d9, 0xe91a2432, 0xf658b2c5, 0xe3702d75, 0xf6bd0ec9, 0x13107fe7, 0xccedb0ba, 0x1a3e401b, 0x107d6aa6, 0xeb376678, 0xf3a2eb75, 0x1fdeff89, 0xf172c2b8, 0xdd68b467, - 0xa93a7a50, 0x00000f, 00000000 + 0xa93a7a50, 0x00000f }, { 0xfb52d96b, 0xf51e04bd, 0x75d2d672, 0x34971bc1, 0x101dc460, 0xddf13e35, 0xb2b1488c, 0xcc5d1033, 0xa01528ba, 0xb8918c87, 0x3346362d, 0x63b2a80e, 0xb6dc9313, 0xd9461111, 0xabd77093, - 0x3a3dde44, 0x00008e, 00000000 + 0x3a3dde44, 0x00008e }, { 0x9311ee25, 0x7d967666, 0x42688b7f, 0x14ad06dd, 0x8a4f988, 0xfd102a6f, 0xe3b2abca, 0xb428f5a8, 0x5fcf2701, 0x3d59a10a, 0xcc70ab0e, 0x56c7c7ba, 0x9810d689, 0x2473d5e, 0x8783cc0c, - 0xf64d3ead, 0x0001cf, 00000000 + 0xf64d3ead, 0x0001cf } }, { @@ -64182,19 +64180,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xecca16fd, 0xbb27b9b6, 0x8051805e, 0x42e7e1f9, 0x7924f6, 0x58ac508, 0x4fde7944, 0x6091e200, 0x7144d54b, 0xd30f439b, 0x332ae813, 0x333a7205, 0xa10415c8, 0x6a45e53f, 0x5fa7f038, - 0x8b7343b7, 0x000173, 00000000 + 0x8b7343b7, 0x000173 }, { 0xdfcd6692, 0x9e5f46ce, 0xd8bba51b, 0xd5d58e17, 0x1f53a94d, 0xc07bc752, 0xc409c08, 0x52061974, 0x13f88306, 0xb73cb505, 0x384ca01b, 0x7f964210, 0x9728a592, 0xba82b524, 0x19c14585, - 0x7b7a0741, 0x0001cd, 00000000 + 0x7b7a0741, 0x0001cd }, { 0x7ea2a6f2, 0x3510445a, 0xec08d0e, 0xbbe96b7f, 0x4cb37375, 0xc810c756, 0x71a1cc29, 0xd1cd5ffb, 0xeebe02c4, 0xcdef7700, 0x9e26cf6e, 0x9e4797fb, 0xe26d48b0, 0x4df1a665, 0x94b8f362, - 0x4565e09e, 0x000091, 00000000 + 0x4565e09e, 0x000091 } } }, @@ -64204,19 +64202,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2eac3ae3, 0xdc62fca, 0x66316877, 0xd12abace, 0xa7d4f687, 0x6490876f, 0xad145286, 0x6fcead9c, 0xd1179022, 0xc4b45bf2, 0xaa507db, 0xd4765d4c, 0xfc2b48a0, 0x27402ab4, 0x8fb8c2ba, - 0x246e1904, 0x0000f8, 00000000 + 0x246e1904, 0x0000f8 }, { 0xae43ebaf, 0xbf9eaf14, 0x9387a9d8, 0xd93d4602, 0x2746aef, 0xd8b59ffe, 0x73e6f440, 0xe45b56a0, 0x50fa5c1b, 0x32d460c4, 0xf803fc37, 0x548ffe82, 0x205e16d, 0xd3d4abcb, 0x1fdf830d, - 0x668fce4, 0x000040, 00000000 + 0x668fce4, 0x000040 }, { 0xdb0c461c, 0x7536b3d3, 0xea690338, 0x810ef555, 0x4bee1491, 0x4742f529, 0x676c7400, 0x7e4caa56, 0x5f298116, 0xf4881d1d, 0xde17d806, 0xfbd31a65, 0xbaa040ea, 0xcb435bb2, 0xc8a90911, - 0x3542cd2b, 0x0000bc, 00000000 + 0x3542cd2b, 0x0000bc } }, { @@ -64224,19 +64222,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7ef09cd4, 0x3639e723, 0x33d902bf, 0xaf6fcc57, 0x788712, 0x86c5bdbc, 0xc1f0a990, 0x1a60f4e8, 0x59ef3c17, 0x70790823, 0xcb853f0a, 0x8c6c11de, 0x4341e06, 0x2a64bb3a, 0xd2db706, - 0x5bb04f0a, 0x0000d6, 00000000 + 0x5bb04f0a, 0x0000d6 }, { 0x117252d3, 0x1cb4ba7e, 0x8137db83, 0xbe423c39, 0x64735e1f, 0xb675d60, 0xc81effd0, 0x17447ff0, 0xac1cb81b, 0x56b1c552, 0xdc4423ed, 0xbaa4ad20, 0xe677a581, 0x2e034aef, 0xc410c71b, - 0xe99b1ab3, 0x000075, 00000000 + 0xe99b1ab3, 0x000075 }, { 0x5579ba26, 0xd133a3f2, 0xe5ea69d9, 0x11c7e00e, 0xcb7b1789, 0xb3ebdde, 0xfd6e571f, 0xd777cc37, 0xffa5b3ca, 0x74aa22f7, 0x21db034f, 0x69feb165, 0xb433e7c8, 0xbe5cd503, 0xc1345fd2, - 0x5ad9f9f7, 0x00018e, 00000000 + 0x5ad9f9f7, 0x00018e } }, { @@ -64244,19 +64242,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7110aba1, 0x8d12d636, 0x2d2ef768, 0x28b55be5, 0x97421cd3, 0x18cf4dd7, 0x827ac10, 0xc7ba007e, 0xa2af2fd1, 0x7e5b4808, 0xe7c648d3, 0x6a76a3d2, 0xdde2d6b9, 0x3a47ac6a, 0xab915d80, - 0x48ba4a53, 0x000178, 00000000 + 0x48ba4a53, 0x000178 }, { 0x3d0aafc9, 0xadd85bb2, 0xfbc17ba9, 0x19ded4fa, 0x7f17cebe, 0xfa585846, 0xc53383cc, 0x1417789d, 0x4575f5c0, 0x1b1e6363, 0x53b0b65a, 0xdb990fcb, 0xe13567a9, 0xbd76f858, 0x92c8791d, - 0xb030112d, 0x000067, 00000000 + 0xb030112d, 0x000067 }, { 0xc5ac3b44, 0xbadc935c, 0x8133bb0d, 0xf9b9baa1, 0xb3588442, 0xcb00b6ec, 0x30b7748f, 0x4400a2e1, 0xb4505118, 0x133da927, 0x9435b263, 0xa0371178, 0xd6466d0e, 0x855b1246, 0x4d186b34, - 0x9e4cdb0d, 0x0000d4, 00000000 + 0x9e4cdb0d, 0x0000d4 } }, { @@ -64264,19 +64262,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3bd53b0f, 0xb012b5d9, 0xcaaa3d67, 0xc833008f, 0x9143e730, 0x111d43ac, 0xf8c3b8dc, 0x945cf2db, 0x7fd5f6bf, 0xc57858a5, 0x27425c06, 0x9907442d, 0x810999fd, 0x93b4c01b, 0x6e67adc7, - 0xf5f1ae60, 0x000087, 00000000 + 0xf5f1ae60, 0x000087 }, { 0x3de9470e, 0x84c86c35, 0xe6e7c013, 0x795b9dc9, 0xe30b732f, 0xa66d4126, 0xd3e1ff5, 0xce05900d, 0x33fc0f57, 0x817ce010, 0x32d6261e, 0x1667a4f5, 0x38a23278, 0xc661561a, 0xe18c372d, - 0xa0c42c56, 0x000122, 00000000 + 0xa0c42c56, 0x000122 }, { 0x3543b73f, 0x5e05b111, 0x6b012542, 0x87c40d06, 0x29700b36, 0x81ba5c2d, 0xa91d69ee, 0xbc58ab8f, 0x2e5bb321, 0x922ba9ae, 0x1cf09db2, 0x85d05aad, 0x27ab80d2, 0xa4aaa6c9, 0x3635fbfa, - 0x26ce5283, 0x000132, 00000000 + 0x26ce5283, 0x000132 } }, { @@ -64284,19 +64282,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21b0a0d8, 0xdf444381, 0x4af9d49e, 0x228e653e, 0x8a5732e1, 0xd4f8359d, 0x6b6c706e, 0xbde51f20, 0x661403bd, 0x838b8ed1, 0xf91fb9a7, 0x2fde6fc5, 0xd0fb5fd3, 0x7e0acbaf, 0xf0308f68, - 0x7d8f3415, 0x0001d0, 00000000 + 0x7d8f3415, 0x0001d0 }, { 0x3bb6321, 0x4ce9272f, 0x546203eb, 0xa48957b7, 0xf4ddb15f, 0xc973ce54, 0x68673b36, 0xefc0b8d1, 0x3dbe9fa8, 0x5b5302f, 0x24db2111, 0xbf049e5c, 0xa66ace6f, 0x9a4eda8e, 0xa767e6a1, - 0x2a1a44df, 0x000172, 00000000 + 0x2a1a44df, 0x000172 }, { 0xeaad0ff9, 0x6c4e808e, 0xca45a129, 0x4fdd44ca, 0xee2714b4, 0x8f353a6e, 0x618b5c48, 0xcafb9d5b, 0x301ff964, 0x730a9553, 0x806c9eb5, 0x1e1c0199, 0x2c8526b5, 0x9ccfc8a1, 0x6539c7f5, - 0x892ae4f2, 0x000049, 00000000 + 0x892ae4f2, 0x000049 } }, { @@ -64304,19 +64302,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xece5a531, 0x484141bb, 0xd00d9bfd, 0xd30c4638, 0x9c8fc3a7, 0xb382ccee, 0xc24b80be, 0x52733879, 0xfd8f2d69, 0x565a8287, 0x5f20f533, 0x7973660, 0xb1f88096, 0x6a64e7e5, 0x46a7bac2, - 0x4c14d523, 0x00014f, 00000000 + 0x4c14d523, 0x00014f }, { 0xd1e3426e, 0xb9abd1e, 0x2e4ef750, 0x46d1c36a, 0x8274d32d, 0x886d8553, 0xccb40180, 0x46cf3d0d, 0x4c3e97dd, 0x7abe02a7, 0x8d95e680, 0xffae699f, 0x8cd03bdd, 0xbb1b0631, 0xa08ebb9f, - 0x59468b1f, 0x00006a, 00000000 + 0x59468b1f, 0x00006a }, { 0xc1fad228, 0x34a3d4dc, 0x18e017c1, 0x651fc551, 0x60ec611e, 0x10c92324, 0x6276dc7d, 0xcf600903, 0x2cfc050e, 0xdf14634e, 0x7fb15b20, 0xe3bdd4a8, 0x468a4201, 0xb38bd38b, 0xab9cd31f, - 0x958d2a99, 0x000063, 00000000 + 0x958d2a99, 0x000063 } }, { @@ -64324,19 +64322,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc7568654, 0xf266775b, 0xac82c4c, 0x6da0e8ab, 0x89da02c7, 0x6e44205d, 0x73591ef1, 0xdbc7cfee, 0x32fb2cbf, 0x4d532171, 0xe3b3d831, 0x3b680005, 0x7b868fbb, 0x77b7bab8, 0x99b70909, - 0xec984c02, 0x00013e, 00000000 + 0xec984c02, 0x00013e }, { 0xc3914543, 0xb2ef60ed, 0x3717832e, 0x75d5bb6, 0x58aca1f5, 0x10926982, 0xd9986d0e, 0x6d6c4260, 0xa4765a2e, 0x2e22bd88, 0x760af764, 0xa0836b3, 0xed58268d, 0x76e9cc38, 0x83524306, - 0x5eb53dfe, 0x0000c8, 00000000 + 0x5eb53dfe, 0x0000c8 }, { 0xd4bbe7b7, 0x1ea87068, 0x6fbebcd, 0xe5b65199, 0x43f1c710, 0xc563dd20, 0x6fa1f064, 0xddbfe14a, 0x59cd38c0, 0x41cea598, 0xb6f62d20, 0x9bd02d91, 0xec450d2c, 0xd2430920, 0xdd651843, - 0xdfe6d0c, 0x00015a, 00000000 + 0xdfe6d0c, 0x00015a } }, { @@ -64344,19 +64342,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xac080b48, 0x924bca3d, 0xb4e371ef, 0x30f623ec, 0x2c12d8e0, 0x45da945a, 0xe4402355, 0x6ae7e0b8, 0x9682714e, 0xe786693c, 0x8e4f5c30, 0xc2e30d6e, 0x8c46b81b, 0xf21f10a6, 0xe8112b06, - 0xfdc74266, 0x0000d6, 00000000 + 0xfdc74266, 0x0000d6 }, { 0x78cc1471, 0x2ff983b6, 0xe7f3594f, 0x6b7e4584, 0xd2fb668e, 0x9d9058e1, 0x7521d3d1, 0xcd0ef50, 0x1430688c, 0xac1f852a, 0xab56bff1, 0x79e07445, 0x1be8d955, 0x2e31fe4e, 0x6c4967e5, - 0xdf57eaf1, 0x00013d, 00000000 + 0xdf57eaf1, 0x00013d }, { 0xc5ec147a, 0xaac36503, 0x3b8329b, 0xeff79b5f, 0xc26ddbdb, 0x4ef7e1b0, 0x23051710, 0x24a7dfc2, 0x8a3b0eec, 0xc97f6e0c, 0x4801ba46, 0xb308de99, 0xf311bca8, 0x8908f91a, 0x8b177ec8, - 0x7af18e19, 0x0000f2, 00000000 + 0x7af18e19, 0x0000f2 } }, { @@ -64364,19 +64362,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd3e4a130, 0xd82eb739, 0x43cf4320, 0x15291264, 0xcdf3a465, 0xd3fe244, 0xf7341fa6, 0x4a7b8cf9, 0xf5524765, 0x184d215, 0xfd94d7a3, 0xa502ff77, 0xca7d9a6a, 0x9a5a0bbd, 0xcb18881c, - 0xa4f85fdb, 0x0001d5, 00000000 + 0xa4f85fdb, 0x0001d5 }, { 0xe42eb0e5, 0xbc22a780, 0x44c6581f, 0x7ba1ec0e, 0x52f18d0a, 0x21c52c23, 0xd3ff96c4, 0x43a6d0e, 0xad4f7bd3, 0x977d0812, 0x4249d37d, 0x59ee9042, 0xd2757f9f, 0x246273ba, 0xe3a89286, - 0xbeb01d7b, 0x0000bd, 00000000 + 0xbeb01d7b, 0x0000bd }, { 0x5264e8ed, 0x643f1ae9, 0xab48fa28, 0x51f14af, 0xfe04294d, 0x57a92980, 0x4bec3cd9, 0x2b1e1adc, 0x536e7576, 0x75295457, 0xbbd2b846, 0x9edf6038, 0x8b5f67e0, 0xde1d2f1f, 0x5b80bee9, - 0xf7e868d4, 0x0000eb, 00000000 + 0xf7e868d4, 0x0000eb } }, { @@ -64384,19 +64382,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc5574ab1, 0x5e93a846, 0x8b9de392, 0x4224a6a3, 0xb9dbd780, 0xfa2f42d, 0x7682c04c, 0x30ee5e66, 0x4d33256d, 0x86e03285, 0x67577d77, 0x41f6705a, 0xc38945f7, 0xb7b7127f, 0xd139cdbd, - 0xf8a708b2, 0x00015e, 00000000 + 0xf8a708b2, 0x00015e }, { 0xbcbd405e, 0xc7b65127, 0xf87a3645, 0x4af522a3, 0xea6426f5, 0xaeaefad7, 0x88138e8c, 0x3dc31bf6, 0x5e8fce82, 0xcc94e847, 0xedea35a0, 0xfd415477, 0xa47f7f33, 0x594a5101, 0xb63105fa, - 0x12248623, 0x0000ca, 00000000 + 0x12248623, 0x0000ca }, { 0xe6791725, 0x6a5e7b67, 0xe39a6f27, 0x1dac9ca2, 0x12b36cd3, 0x5ad15d1b, 0x6f9e3751, 0xa31346f0, 0x93945143, 0x62923bee, 0x621be558, 0xcd676ad, 0xb9f14de6, 0xed8d352b, 0xd08af457, - 0x76308e5d, 0x0001a9, 00000000 + 0x76308e5d, 0x0001a9 } }, { @@ -64404,19 +64402,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe785c537, 0x75957feb, 0x67e90c9b, 0x6f5d048e, 0x77a37db8, 0x1ddbfc10, 0x6f01fb9, 0x2511ae4b, 0x1092bf8d, 0x3dedcb62, 0xb8196d0e, 0x134fdf5c, 0xcbf4e985, 0xaf5ceb50, 0x977552dd, - 0x5b83c418, 0x000187, 00000000 + 0x5b83c418, 0x000187 }, { 0xf9f14ac2, 0x534aa39f, 0xbd11661c, 0xd242b425, 0xdb0b0f96, 0xe8865c24, 0x1dd22585, 0xa0c5cab6, 0xbf550471, 0x6fd8776, 0x4b09d5ee, 0x36da46b, 0xd7268253, 0xbc5fe46c, 0x5101c693, - 0x7d389ba, 0x00002b, 00000000 + 0x7d389ba, 0x00002b }, { 0xce588641, 0x60646b2, 0x9d7f333b, 0xbffb3c16, 0xd50c313, 0xf3b37a2f, 0xcea68f96, 0x6124ca09, 0xd346fa3b, 0x87fe82a1, 0x88f26bde, 0x20dbf85e, 0x23a3a632, 0x3cd3b7f7, 0x9a098310, - 0x1737e680, 0x0001a6, 00000000 + 0x1737e680, 0x0001a6 } }, { @@ -64424,19 +64422,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x25d40b98, 0x5a96050c, 0xb8c0fb4e, 0x2d215afd, 0xce7b657f, 0x131659af, 0x322edb34, 0xb98f8156, 0x22a7a816, 0xa7f57a74, 0xe5ef71d0, 0xc10d538e, 0x6625d37f, 0x7bac3c25, 0xa8e98100, - 0xce5647cc, 0x000026, 00000000 + 0xce5647cc, 0x000026 }, { 0xff87d427, 0xa619c587, 0x637901de, 0x485be8f6, 0xed0a5060, 0xb992b756, 0x10746756, 0x677c18aa, 0xc4f5f5fe, 0xf39b7db6, 0x965d9521, 0xe64b6653, 0xd2fe4c51, 0xd73cc4bb, 0x5b75c591, - 0x5eb83d03, 0x000138, 00000000 + 0x5eb83d03, 0x000138 }, { 0x9cec487d, 0x17982c03, 0x8678488c, 0xf681feeb, 0xd612d75e, 0x9ba268d0, 0xfd1ce127, 0x3ea79c5c, 0x592ca56f, 0x92516b29, 0xc62da403, 0xd6de50b2, 0x329d4647, 0xaa8f4c23, 0x4962a321, - 0x6abac561, 0x000070, 00000000 + 0x6abac561, 0x000070 } }, { @@ -64444,19 +64442,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe189a932, 0x9d597dea, 0x71631984, 0xce0689d, 0xcf01b29d, 0xca8a45c4, 0xa9c6254c, 0x442a5bab, 0xe9c30a0d, 0x3632264, 0xdacb0041, 0x7769932e, 0xd0570a21, 0x38f941c0, 0x8ac12d45, - 0x29b6903f, 0x000016, 00000000 + 0x29b6903f, 0x000016 }, { 0xcc4a6a03, 0x841e4842, 0x2e5294, 0x58b9d70d, 0xe0645b20, 0xaa8c78c5, 0x2289f0ee, 0x31a6a720, 0x1564de25, 0xb6e52aed, 0x60766e09, 0x47e328b9, 0xc4853899, 0x9baee250, 0xc66a85a9, - 0xf370f547, 0x0001a3, 00000000 + 0xf370f547, 0x0001a3 }, { 0x3a7de8dd, 0x2ee66afc, 0xf6e0592e, 0xf543f1fa, 0x788f02c5, 0x9eeb02c, 0x38315747, 0x99de556c, 0x6e238c2c, 0xb88025ad, 0x8c306ea1, 0xb582b509, 0x9fa1fa37, 0x3aaf560b, 0x9f495373, - 0xf73dac3a, 0x00009b, 00000000 + 0xf73dac3a, 0x00009b } }, { @@ -64464,19 +64462,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa54e78e0, 0xdc2a9be2, 0xec838d5b, 0x15e86d2d, 0xdb696147, 0xa96c26e, 0x4b51c3b3, 0x79dad526, 0x17bd2255, 0x373d96dc, 0xe422515e, 0xdbe81def, 0x817ee060, 0x794519c0, 0x6269b0e9, - 0x7e177012, 0x0000b4, 00000000 + 0x7e177012, 0x0000b4 }, { 0x5ef90cbe, 0xbaa0c049, 0x8213a947, 0x2da34e54, 0x28152629, 0xdfe59862, 0x3a7673a6, 0xae3f9d6e, 0xfc55eab8, 0x113c2acb, 0xbcd9cec6, 0xdf582722, 0x29cda6df, 0x54eca3a4, 0xdf2154eb, - 0xe94db449, 0x0000f3, 00000000 + 0xe94db449, 0x0000f3 }, { 0xb041a528, 0xd4d232dd, 0xb7ea88db, 0x4f83f703, 0xabe1b8a0, 0xab663b5b, 0xadfcb3c9, 0x79691af9, 0xa1517953, 0x505a6d4c, 0xb88c5454, 0xbb0ac32f, 0xd7574c0, 0x4890e451, 0x16633482, - 0x77564197, 0x0000a7, 00000000 + 0x77564197, 0x0000a7 } }, { @@ -64484,19 +64482,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x555b0671, 0xe425d5b2, 0x4e50832e, 0x3d3ed26d, 0x535bfccf, 0xe077cbbd, 0x9d0e4559, 0x410d79e1, 0x37eb7b3a, 0xb0bab1a3, 0x92d57e78, 0x314ffd37, 0x28ac0092, 0x29bb68bc, 0xcb710f0f, - 0xc375c428, 0x000178, 00000000 + 0xc375c428, 0x000178 }, { 0xf7021e13, 0x60cca254, 0xd6a850d2, 0x66c7fff1, 0x6f6b5985, 0x8809947e, 0x876f23bd, 0xff941ce9, 0x748d018b, 0x214f9048, 0x435e78e6, 0x98d4de7d, 0xe9d9b990, 0xc6b76fe8, 0x12286a3b, - 0x6b19398b, 0x0000e3, 00000000 + 0x6b19398b, 0x0000e3 }, { 0x3286d5f, 0x21a4509c, 0xcdf87033, 0x804ec730, 0x4be2461a, 0x73d9c9ef, 0x2fc113fc, 0x7162d111, 0xb5e0eee, 0x704b9cad, 0x9002ef7d, 0xd647991b, 0xb4675c32, 0xfbd5501e, 0xf914911d, - 0x39975ce0, 0x000183, 00000000 + 0x39975ce0, 0x000183 } } }, @@ -64506,19 +64504,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe4954c22, 0x10a0a143, 0xf42bb83c, 0xabbfd755, 0xc61f4731, 0xd0523468, 0xdf3ccc78, 0x96666a53, 0x760e9277, 0x67d4f282, 0xf47c090, 0x45bd2ae1, 0xf86952d7, 0x82952c95, 0xaf0a88a0, - 0xe7c3de54, 0x000180, 00000000 + 0xe7c3de54, 0x000180 }, { 0xa76063a8, 0xa05ec456, 0xc3a685c4, 0x485c79fe, 0x2f11e086, 0x91b14f5f, 0x667b5b5e, 0x441230ec, 0xce6fba35, 0xb8197806, 0xfba43c58, 0xff065c9a, 0x224546d7, 0x47dbb6db, 0x2d71d1e0, - 0xb5cbe628, 0x000080, 00000000 + 0xb5cbe628, 0x000080 }, { 0xefe9fd57, 0xe21d96a8, 0xe0fcdfdd, 0x619c42f5, 0xf1495a22, 0xfd91e962, 0xb02605b5, 0xc73e6cb9, 0xb3536a6b, 0xd2cea7f0, 0xddc5dd52, 0x7bbff8de, 0xff5c4126, 0xe9c9efb8, 0x2d871300, - 0xc2c593e9, 0x0001cb, 00000000 + 0xc2c593e9, 0x0001cb } }, { @@ -64526,19 +64524,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a2841ca, 0xc5ddb583, 0x62e3e0f6, 0xfe67c084, 0xc1264ffc, 0x582b4bc8, 0xe1149857, 0xd16ecce5, 0x10509c36, 0xcd11416, 0x864a7244, 0x837a48fd, 0x2d17e0bd, 0x14fbed2b, 0xcf5c1516, - 0x6c68688d, 0x00014a, 00000000 + 0x6c68688d, 0x00014a }, { 0x6aa96908, 0xa929ec0f, 0x7152abea, 0x39939022, 0x5b516ce9, 0xbd34aa46, 0xb6ea722b, 0x1085a150, 0x3e0ddd09, 0x29de8a3c, 0x7287a2a, 0xc672b512, 0x12adc8e9, 0x48af68f, 0x3f958ce8, - 0xac9080ab, 0x0000fc, 00000000 + 0xac9080ab, 0x0000fc }, { 0x6383734b, 0x7ff76db0, 0x9027df04, 0x9b8ff7da, 0x6e291191, 0x7e68d64d, 0xec569609, 0x9c02629e, 0xe79135ec, 0x1fb3ad9e, 0xb536f9f8, 0xef84d41d, 0x752c21ba, 0xee5b409d, 0x70aa8596, - 0x896f4cc8, 0x0000d9, 00000000 + 0x896f4cc8, 0x0000d9 } }, { @@ -64546,19 +64544,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf3722b, 0x1c6d2e24, 0x105dc4c1, 0x38c46a00, 0x3490fe5, 0xcd3d37ea, 0x1cde67ea, 0x8a83555b, 0x6bee43e, 0xa6a3e469, 0x8f0d9d6a, 0xa335649f, 0xa679067, 0x3bfb238c, 0x7ed90ad0, - 0x3854173e, 0x00015d, 00000000 + 0x3854173e, 0x00015d }, { 0xe99402f1, 0xb04d4757, 0x705ed270, 0x90e974e8, 0xaa37fc1a, 0xe296acf2, 0x55e71a6d, 0xd4cd68af, 0xf3e824ad, 0x9fb1eb40, 0x3d69e13, 0x271b600a, 0xd2af095f, 0x80f679f4, 0x1db3a680, - 0x4edb8445, 0x0001ed, 00000000 + 0x4edb8445, 0x0001ed }, { 0xf9b47303, 0xe7f3af03, 0xd74b9a67, 0x1d65dcc1, 0xef5de67a, 0xff9e0621, 0x35fa8f23, 0x5992e594, 0xb9ef0b67, 0xf217a902, 0x1ed6e16a, 0x13cb658f, 0xea4825d0, 0x5a997ee3, 0x56b5fa7d, - 0x5544b40e, 0x000081, 00000000 + 0x5544b40e, 0x000081 } }, { @@ -64566,19 +64564,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x540f0470, 0xcfbfd94a, 0x142a5b4e, 0xd989b7eb, 0xb7a74017, 0x3b60b425, 0x263b33c, 0x735f53b4, 0xc59913a1, 0x98535d5a, 0x18588f14, 0x836b61a0, 0x582675e7, 0x5c25f9b4, 0x4919e32, - 0x755f0b66, 0x00011b, 00000000 + 0x755f0b66, 0x00011b }, { 0x29efdf69, 0xebfab429, 0x8b73f22d, 0x5cc34e67, 0x8cf905a7, 0xa3bf69c2, 0x7a22a686, 0x78ffefc3, 0x5e8df685, 0x30ceae2b, 0x4d8e2a60, 0xacdf6db8, 0xe1b88e71, 0xf665a1fb, 0x72f082f1, - 0x13cf38dc, 0x000136, 00000000 + 0x13cf38dc, 0x000136 }, { 0x57e25747, 0xe178ce68, 0x5df50038, 0xc795e39d, 0x961695d6, 0x4af7f273, 0x31b53319, 0xc7274f15, 0x46dd6c13, 0x67d54c01, 0xd1d5c755, 0x39d0a725, 0x3d2a6ea7, 0xe392a288, 0xacf69106, - 0x14ce7ffb, 0x000175, 00000000 + 0x14ce7ffb, 0x000175 } }, { @@ -64586,19 +64584,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x67509f8a, 0xbfc35b0c, 0x30f9d34d, 0x875705a8, 0x7e95fe76, 0xb49da074, 0xe50ea4a1, 0xb4a7429d, 0xf455fcd3, 0x7d34dd80, 0x417bd4a9, 0x596688d8, 0xca6cf214, 0x9c6ed5d6, 0x183c13f8, - 0xc8f1d419, 0x0001b5, 00000000 + 0xc8f1d419, 0x0001b5 }, { 0x8620925d, 0x74f7419, 0x17bea62e, 0x2942ee20, 0xa263c44a, 0xbc9b23f1, 0x1b1e38d4, 0xcfe4b7cc, 0x6741f7e, 0x947f0212, 0x1fa7a36f, 0xab473011, 0xddceddd6, 0xd1094fdc, 0x593c8141, - 0xd930044d, 0x000016, 00000000 + 0xd930044d, 0x000016 }, { 0x64de096a, 0x8da09497, 0x1af6a083, 0x13088233, 0x259e9fdd, 0x1f0111bc, 0x74b3cf7a, 0x6daaea99, 0xf070136d, 0x27f6753, 0x90a73208, 0xbe09beba, 0x186cbb00, 0x264a70ac, 0x8cd4466d, - 0xc028c7a4, 0x000120, 00000000 + 0xc028c7a4, 0x000120 } }, { @@ -64606,19 +64604,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x507de24f, 0x1986bbb, 0x6fe51d2c, 0xbf3be834, 0xebe53b32, 0x4a01399d, 0xa3f81261, 0x39fa8b84, 0xc9123e7, 0x61a85ea5, 0xe0aab91d, 0x8bd47ee3, 0x4e49aa53, 0x4741b58f, 0x18ebfd33, - 0x6272ae6d, 0x0000b0, 00000000 + 0x6272ae6d, 0x0000b0 }, { 0x224115f7, 0x4195b434, 0x4520dd2d, 0xddf00a33, 0xa690da78, 0xd1061dfa, 0x57088ab9, 0x83262bf4, 0xb88e559f, 0xa5696f52, 0xb4d43341, 0xe33940d, 0x7f8a7def, 0xab863274, 0x8c361ef9, - 0x92961013, 0x0000af, 00000000 + 0x92961013, 0x0000af }, { 0xffb32e1f, 0x38223f30, 0xe16febe7, 0xc258be1f, 0xcabe7b55, 0x144c60ff, 0x13506d65, 0xbbb0459f, 0x4ba29247, 0xfa135ba7, 0x5d4fd0f7, 0x9ebe7901, 0x63082ca9, 0x1c6f869, 0x9c5d10f5, - 0xcccfc704, 0x000024, 00000000 + 0xcccfc704, 0x000024 } }, { @@ -64626,19 +64624,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd10c3e4c, 0xee532a78, 0x19aa3c6d, 0x418cb540, 0x35619803, 0x3b0e44fd, 0x7f2ec36a, 0xdb761870, 0xc816e3e0, 0x7568537b, 0x52d0dfa9, 0x32d4cc0f, 0x472fe65a, 0xd75030e2, 0x98a14c43, - 0xdcea7e3b, 0x000129, 00000000 + 0xdcea7e3b, 0x000129 }, { 0x5fc92980, 0x25d99f26, 0x8f575141, 0xa1057d24, 0x58d6323, 0x1cb40d27, 0x822c17e5, 0xc0efe07, 0xe17d9220, 0x420c67fb, 0x2eac366c, 0x50aabecb, 0xbe2c1b8f, 0x7be1c0f, 0x2bc10754, - 0x5c97d737, 0x000063, 00000000 + 0x5c97d737, 0x000063 }, { 0x2ffe51ec, 0xf07d0918, 0xbc60ed75, 0x560153eb, 0x311b111d, 0x5301bd6e, 0x4039f9cc, 0x509c2dbf, 0x96048789, 0x9bcb190b, 0x40367bdc, 0xca56461e, 0xb556716b, 0x3675a638, 0x64a9cb9a, - 0xb9260a4, 0x000154, 00000000 + 0xb9260a4, 0x000154 } }, { @@ -64646,19 +64644,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe8dae440, 0x25cfd3a1, 0x81175cbf, 0xf3b85b3, 0x9a8c44ff, 0xed16231a, 0x5a0b8bf4, 0x14515862, 0x10c97ad9, 0xf4340844, 0xb74f8a11, 0xe972f51f, 0xd546927a, 0x257f6fff, 0x1d845976, - 0x5bc630ad, 0x0001f0, 00000000 + 0x5bc630ad, 0x0001f0 }, { 0xbccfdbfd, 0xef7032ea, 0x1cef1777, 0x10a8aa0a, 0x39ddab27, 0x5d80de85, 0x297c28c3, 0x12aa4e1c, 0x1a34ca0b, 0xdc01d2ac, 0xe68fffab, 0x55d57397, 0x27661a1c, 0xde1c7137, 0x5357b731, - 0xed23764, 0x0000b8, 00000000 + 0xed23764, 0x0000b8 }, { 0xfa520b1c, 0x8fc9a4e0, 0x6e97ff0e, 0x7202b5b0, 0x6d451860, 0x4a6a9dc1, 0xf8843f13, 0x9f362980, 0x382576c, 0xdc241aaf, 0x86faa756, 0x5264ea35, 0xda25e016, 0x54c6cf7a, 0xa82b7e86, - 0x1d391c2e, 0x0001b1, 00000000 + 0x1d391c2e, 0x0001b1 } }, { @@ -64666,19 +64664,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6eb721b, 0xd191be63, 0x4d2da6a2, 0xca612494, 0xdf37d32f, 0x1ee716bd, 0x8fd1b17c, 0xf942399c, 0x398b07ca, 0xde75df63, 0xb2e2ea71, 0x363fa8c5, 0xe501b749, 0x759fef4b, 0x21c6d231, - 0xcd837658, 0x000167, 00000000 + 0xcd837658, 0x000167 }, { 0xa380cf41, 0x50db77b1, 0x7e7af420, 0x54a97d04, 0x6ba080fe, 0x719cc93d, 0x58f09934, 0x2e96d80b, 0x462bf9ac, 0x6f7c942, 0xd0fe51aa, 0x7810f36, 0x10461aaa, 0xb3084b39, 0xb1b3df0c, - 0xbab03056, 0x0001e1, 00000000 + 0xbab03056, 0x0001e1 }, { 0xcfdd2ff0, 0x610c983f, 0xd83a35f0, 0x89c9d92f, 0x4f5e6d46, 0x832b62ee, 0xb7462e1c, 0x945407f7, 0xff63eada, 0xb73dd363, 0x2cb7854e, 0x3dc5999, 0xd41dddd6, 0x4911b7c9, 0x99e61678, - 0x4bb573d2, 0x000035, 00000000 + 0x4bb573d2, 0x000035 } }, { @@ -64686,19 +64684,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1e3d19a, 0xf3ddb090, 0xba1215b9, 0x2e7365e9, 0x88e6e79a, 0x55763da8, 0x33567f4b, 0x8e19a9a, 0xcc409d9d, 0xd7caf0ab, 0x15c18cf7, 0x2bfbcddd, 0xdec180a8, 0x83a31e23, 0xbbe1e6d3, - 0x9159c97c, 0x000139, 00000000 + 0x9159c97c, 0x000139 }, { 0xf8ddb416, 0x24c6529b, 0xffcd505b, 0x2c771b3, 0x52466761, 0x4a02040f, 0x19fc320d, 0x488eb1ee, 0xfc81bac9, 0xa03a7a84, 0x1f5fe624, 0x82d90446, 0xc92d2c19, 0xcb5e1377, 0x9e9bd06c, - 0x91c55c84, 0x0000e4, 00000000 + 0x91c55c84, 0x0000e4 }, { 0x70b7b4aa, 0x1e5ba92b, 0x3d9f232f, 0x7d898fb2, 0xb6366999, 0x2a2e737d, 0xe51c167, 0x34a77e1e, 0x4ce6ca2a, 0x5e7bb0b, 0x1512d044, 0xcc575c01, 0x2c528cfd, 0xe7f92b54, 0xc4c0cc2e, - 0x33a76c6e, 0x000056, 00000000 + 0x33a76c6e, 0x000056 } }, { @@ -64706,19 +64704,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xec61a108, 0x5991cc1e, 0x97edcb49, 0x9cd5cfc2, 0x2834dcd1, 0x840968e2, 0xbebbf7e9, 0xec4921e4, 0x96fdc117, 0x726eb2a9, 0xde460e8f, 0x7c8faf7, 0x160a149c, 0x4cca6265, 0x2e33410c, - 0x6ac091f6, 0x00008e, 00000000 + 0x6ac091f6, 0x00008e }, { 0xd2f809c4, 0xd2bb52ff, 0x7251776a, 0xdfb2be8, 0x782ce2e1, 0x1502c62c, 0xa1ff2f4a, 0x2baf08a4, 0x27e13c27, 0x314c3901, 0xbdb775e2, 0xf61f0279, 0x9bae9795, 0xb2447fc0, 0xb36f0eae, - 0x83e39b56, 0x000143, 00000000 + 0x83e39b56, 0x000143 }, { 0xccaf04d3, 0xb88c1cc7, 0xfd685eb7, 0xf049562, 0x225e8f96, 0xbe382242, 0x4f4765bf, 0xfb4e007a, 0x6c40b3f, 0xf5e9db9c, 0x12e744d6, 0x5c3d8af9, 0x1d06c866, 0x8364ad7a, 0xead41f0f, - 0x49eb8e9d, 0x00004d, 00000000 + 0x49eb8e9d, 0x00004d } }, { @@ -64726,19 +64724,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x24ed3a02, 0x698084fa, 0x740eac0a, 0xb3f46b5f, 0xd8c16a07, 0xd4ea92a8, 0xb5216f71, 0x92459469, 0x2362453b, 0x3180f983, 0x929b1811, 0x6b5b6e74, 0x2a669ae7, 0xe956144, 0x6b9e0d73, - 0x9cc369b5, 0x0000fd, 00000000 + 0x9cc369b5, 0x0000fd }, { 0x27830fa4, 0xe4407260, 0xb97ed7d2, 0x5ae33b55, 0x99fd1611, 0x4d3e026c, 0x15681235, 0x92aa7158, 0x2b420af, 0xd318ab62, 0x971db610, 0x703f28ce, 0x8d4a5cb8, 0x2e89f00, 0x25edde6d, - 0x563dee1f, 0x00017d, 00000000 + 0x563dee1f, 0x00017d }, { 0xb530c8cd, 0x53aaec41, 0x400736d5, 0x8b773f8c, 0xe377ff55, 0x4a8d2b60, 0x70920342, 0x4d9860cb, 0xc8ecce59, 0xfea713f1, 0x83526614, 0x3d737a76, 0x51f57b5c, 0x9f6a718c, 0x73255896, - 0xafca1a36, 0x0000d9, 00000000 + 0xafca1a36, 0x0000d9 } }, { @@ -64746,19 +64744,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5f78ba6f, 0x80478130, 0x732508ef, 0x3e6a8f63, 0x47c858d6, 0xb9aac56f, 0xf2ac2cf1, 0x14cac218, 0x8fdd7c1c, 0x402384da, 0x9d618e66, 0x74e798d8, 0x906f5594, 0xc9c2d694, 0xe0ad7384, - 0xffb9e017, 0x00012b, 00000000 + 0xffb9e017, 0x00012b }, { 0xd9c25a8a, 0x556bf316, 0x9a73c0ab, 0x810403d5, 0xd5f5888c, 0xc0959e76, 0xd28296b8, 0x26dbc7, 0x6207511f, 0xea558afe, 0x23ea92b4, 0xcc235e59, 0x26d55673, 0x18fda5af, 0x3c6fd82a, - 0x7386e69c, 0x0001b1, 00000000 + 0x7386e69c, 0x0001b1 }, { 0x5cdfe5c7, 0xa12ab3ba, 0xe6606e3d, 0x1f6ab34, 0xddee1481, 0xb34cf21, 0xeafe148b, 0x5c855ed3, 0x28201c8b, 0x52ab4763, 0x680e8356, 0x6ca1bafc, 0x9002650b, 0x38fd3069, 0xbe1b8fb9, - 0x82ee3f62, 0x000010, 00000000 + 0x82ee3f62, 0x000010 } }, { @@ -64766,19 +64764,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x67731b9c, 0xab81c2ae, 0x73c3e334, 0xcdd96290, 0x90258784, 0xe891b5dd, 0x83a5cd03, 0x9f60d862, 0xe4c47fe6, 0x759d520c, 0x341e97c8, 0xf2b42c6, 0xc0387c6a, 0xc5923a77, 0xa38dd439, - 0x3f05c143, 0x0000ef, 00000000 + 0x3f05c143, 0x0000ef }, { 0x1dcf7265, 0x32ce08b6, 0x79d790de, 0x6f19a582, 0xeb4d3395, 0x2374ad51, 0x37c84703, 0x23736dbf, 0x1ab2b68c, 0xdf015b8c, 0xcffc31fb, 0xc66a286e, 0x3deab741, 0x868d2a96, 0x179adf2c, - 0xc3881c91, 0x0000d6, 00000000 + 0xc3881c91, 0x0000d6 }, { 0x70cd143f, 0xcdc876a9, 0x16c102e6, 0xda184bcb, 0x8fa50c04, 0xd8a8cfb3, 0x9eb8e05b, 0xe8f1f8f6, 0xc8220802, 0xd425d437, 0x1fdf72ea, 0x7eb8092, 0x3d929303, 0x54465b54, 0xbaaa4f70, - 0xb1faa943, 0x0000c8, 00000000 + 0xb1faa943, 0x0000c8 } }, { @@ -64786,19 +64784,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6a43837, 0x346d34de, 0xaac36458, 0xf2ce0739, 0xbadcabbf, 0xb6c50da9, 0x733d7c15, 0x8e15db55, 0x89660fc4, 0x7edc07ee, 0x418044fb, 0xe07812e0, 0xc805ff54, 0x4e0230b1, 0xc53281fe, - 0xddd7762f, 0x000147, 00000000 + 0xddd7762f, 0x000147 }, { 0xbd05e636, 0xcc51ff90, 0xd7a156ac, 0xb01f59f0, 0xf23bc1b6, 0x995bba74, 0x109e60f, 0x84ff1f53, 0x7098f019, 0x837e1bd5, 0x791ccc30, 0x15244aff, 0xcfaa66df, 0x3948734d, 0x2b629ce1, - 0x10953193, 0x000099, 00000000 + 0x10953193, 0x000099 }, { 0x6688e39e, 0x2d9204d9, 0x1579ac94, 0x548c351e, 0xe8b941f6, 0x543ffb66, 0x26dd60a0, 0x8bc26c83, 0x82566e3a, 0xb4fee3e7, 0x89f69642, 0x895d1f52, 0xa8e6954c, 0xdfd60905, 0x87acf317, - 0x4a8e970, 0x0001c7, 00000000 + 0x4a8e970, 0x0001c7 } } }, @@ -64808,19 +64806,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe04f748e, 0x8663e29c, 0x4c70da33, 0xa703eaa2, 0x5d6e092e, 0xb8a30c6a, 0xf81da4e0, 0x39add9ee, 0x95777511, 0x6b6756ce, 0x3f14966d, 0x8be5526d, 0x4ebefc8e, 0x685c1895, 0x38fcfb0d, - 0x321849f6, 0x0000d8, 00000000 + 0x321849f6, 0x0000d8 }, { 0x71b92da4, 0xae435695, 0x3f1d4e1a, 0x104fa960, 0x7ac61576, 0xa4a46d3f, 0xb3a0eea3, 0x5e349fdd, 0x5d95ae21, 0x2a90233d, 0x4cc6f5a9, 0x2dcb5b4d, 0xb508971d, 0x1dfe6c2d, 0x6d2fee65, - 0xb9485b18, 0x000049, 00000000 + 0xb9485b18, 0x000049 }, { 0xbec2a4fc, 0x81e3e566, 0xce29e114, 0x2e57756f, 0xc270f17f, 0xcdbd3570, 0xa7c37ec1, 0x1cac9ef4, 0xf2f99b6e, 0x1031ad00, 0xb29e153d, 0x2f77dd1d, 0xb494911d, 0x616abe0d, 0x68c97c5, - 0x7d419054, 0x00004f, 00000000 + 0x7d419054, 0x00004f } }, { @@ -64828,19 +64826,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x459d430e, 0xd4dcbb7e, 0x820e37c9, 0x39ba9cf7, 0x11d9fa79, 0xcb8e4a2e, 0xed15b520, 0xf8f64b47, 0x2d17bab4, 0x453a684f, 0x66805def, 0x50e8a87a, 0x54dbd6ae, 0xcaa31427, 0x630984ec, - 0x4c52b0d3, 0x0001a0, 00000000 + 0x4c52b0d3, 0x0001a0 }, { 0xefac98a1, 0xe60d3fd7, 0x96d382bc, 0x2b9b0edb, 0x6cb0c770, 0x4d8bb37d, 0x118bab18, 0xbbd028c9, 0xff74b9ea, 0x3cd40c42, 0x3754f2a8, 0x74b73591, 0x2e34f4d0, 0x9b39476a, 0xb8edb19e, - 0x3c679127, 0x0001c0, 00000000 + 0x3c679127, 0x0001c0 }, { 0xaed6dbe, 0x8bc17b89, 0x8f8e369f, 0xea74131c, 0x7bfeabd7, 0x97a7e46, 0x4d65eb7e, 0xc82d17ad, 0x521b4683, 0x198c444, 0xbb6bca51, 0xbbe4c3ae, 0x18814fbd, 0x1a143bb0, 0x970ba91f, - 0x682b8ea9, 0x00017a, 00000000 + 0x682b8ea9, 0x00017a } }, { @@ -64848,19 +64846,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf71eceda, 0xd580f22f, 0xcee7b95b, 0xe92e5f1e, 0x6cf711dd, 0x42cf6ad6, 0x8b63b758, 0xd6b0bd66, 0x1e7de3, 0xe50b294d, 0x335e76bf, 0xcd420a34, 0x133970d2, 0x142d4647, 0x66d05a85, - 0x648c5395, 0x00005a, 00000000 + 0x648c5395, 0x00005a }, { 0x29bb72a1, 0x90689d93, 0x8b16b066, 0xe0780a8b, 0x494d407e, 0x6fffb646, 0x681e6e93, 0xd851d034, 0xff9e237, 0xadc07c3e, 0xa53b8e89, 0x1cdc1b3a, 0x4ed2215b, 0xe16b60db, 0xfae9f852, - 0x936efce1, 0x00000f, 00000000 + 0x936efce1, 0x00000f }, { 0xb1ef9717, 0x74e864fc, 0xbb6186d, 0x2d4cd0, 0x8ec12756, 0xdc99329f, 0x85597c, 0x1f17358e, 0x47c603e0, 0x6f2dd266, 0x134f1d69, 0xefa8add7, 0x710adb4, 0xaabe9cf0, 0xeb56816a, - 0x17ef6052, 0x00018a, 00000000 + 0x17ef6052, 0x00018a } }, { @@ -64868,19 +64866,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1df46383, 0x380c130c, 0xa9c1b853, 0x7a85a05e, 0x530a14a5, 0x217584b0, 0xfef6d55a, 0xa228a837, 0x76459ba6, 0xe6b4782e, 0x5ef5d4bb, 0x98af7533, 0x5a0bd841, 0xc837d328, 0x30785ff3, - 0xf9df344d, 0x00008c, 00000000 + 0xf9df344d, 0x00008c }, { 0x742f1eb1, 0xb1771e82, 0x970e4166, 0xf2e1534e, 0x85109aee, 0x403665be, 0xd32a6a12, 0xc864925d, 0x783c14b8, 0xde6cd988, 0xb364f8eb, 0xaec99de0, 0x1d04ffc4, 0xcab684a3, 0xa31888cb, - 0xe01fb279, 0x000036, 00000000 + 0xe01fb279, 0x000036 }, { 0xa8bc35c6, 0xe8fdaded, 0xffaf9e51, 0x2e682a30, 0x2ec5ed51, 0x1e677df9, 0x8a857ab0, 0xb9367098, 0xe11e0203, 0x866c2cb9, 0x751e27c8, 0x27fb1be6, 0xe22e1bd7, 0xd386fec8, 0x8317cd3b, - 0x8f0d65fc, 0x0000a9, 00000000 + 0x8f0d65fc, 0x0000a9 } }, { @@ -64888,19 +64886,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x450cce36, 0xe0eb629c, 0x90e97cd2, 0x7d5c4f85, 0xfc597983, 0x9f084e39, 0x732f144c, 0xf4fbccbd, 0x76e10762, 0x824acf45, 0x1f0893da, 0x9c87329d, 0x3eaadfa6, 0xcec9ec04, 0xb2e6eb5e, - 0xdefcf89e, 0x000155, 00000000 + 0xdefcf89e, 0x000155 }, { 0x692e2d90, 0xe4847060, 0x21432327, 0x2644be3, 0xfb1aa376, 0xefe1621a, 0x53de828e, 0x58b7078, 0xd762278c, 0xfcc8a73b, 0x3f085565, 0x86cbe8e8, 0xe46696f, 0x90e9359c, 0xd6dcb85b, - 0xb501e51f, 0x00014c, 00000000 + 0xb501e51f, 0x00014c }, { 0xdf8c9bd7, 0x4acd942c, 0x47b87553, 0xb74664b9, 0xa961c605, 0xc865781c, 0x3229550c, 0x43008f5, 0x5395ead6, 0xb32f0d3b, 0xd001ef96, 0x19e69740, 0xa0261941, 0x17d7dc4b, 0xe911c7c3, - 0x813b8090, 0x0001ad, 00000000 + 0x813b8090, 0x0001ad } }, { @@ -64908,19 +64906,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb121e42b, 0xad075a44, 0x74a8ce0b, 0x1e3f876f, 0x4a33c65, 0xa7c5645c, 0x9eac3bfb, 0x7e812c36, 0x2c1b6040, 0x2cc819be, 0xf2c0e086, 0xb1b22f31, 0x9a0189a4, 0x530927d7, 0x606be406, - 0x2c591532, 0x0001f2, 00000000 + 0x2c591532, 0x0001f2 }, { 0x7d461288, 0xbd308eee, 0xe51090c9, 0x48fdb516, 0x8a0a9e5a, 0x1ba9355d, 0x6a4facd4, 0xb3f42302, 0x291fb4a3, 0x84b9d1c3, 0xa5957a22, 0xf964f0b0, 0xa65e4054, 0xb46bedfd, 0x2eb02851, - 0x6e649ac0, 0x0000bb, 00000000 + 0x6e649ac0, 0x0000bb }, { 0x6a0cd676, 0x4f11b6f0, 0x42a59827, 0x1a135708, 0x1e8c52ed, 0xcede0d6c, 0x602cce5f, 0xa0d1fef9, 0xeb20f49a, 0x6496c495, 0x4ab8dda0, 0x119e7be2, 0xf183c384, 0xa016ea8c, 0x8acdd87c, - 0xeed53f9f, 0x0001af, 00000000 + 0xeed53f9f, 0x0001af } }, { @@ -64928,19 +64926,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x28227333, 0x7c8be858, 0x7f9269a2, 0x34f6bcf7, 0x8ac2431a, 0xe25061a6, 0xa4a06bd1, 0xa42e01cd, 0xd7596729, 0xa187a976, 0x70f868c1, 0xf2c78c6, 0xda39e3c7, 0x2a1aeb8, 0x1ea48820, - 0xdcb6c9da, 0x00010d, 00000000 + 0xdcb6c9da, 0x00010d }, { 0x4e358ecb, 0x67d019c7, 0x4e08b85d, 0x896b1ead, 0xdbde9650, 0xd8a2605f, 0x1594960f, 0xda7e9795, 0x953a6363, 0xa0e596cd, 0x8128f1f9, 0xa4f59ae5, 0x1d761ca8, 0xd8496c5d, 0xceb6c6a3, - 0x9446b6ef, 0x000182, 00000000 + 0x9446b6ef, 0x000182 }, { 0x955f624a, 0xbb3ebec0, 0x6b361de5, 0xc7d2adba, 0x607d1504, 0x73801241, 0xcf4cb1cd, 0xd53e1174, 0xfc576a01, 0xee44582f, 0x16d35376, 0x6885166, 0x6f4f7d12, 0x5c4f9e95, 0x2d128367, - 0x76b8ac68, 0x000019, 00000000 + 0x76b8ac68, 0x000019 } }, { @@ -64948,19 +64946,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x142a6d6, 0xafc1c274, 0x53c835f7, 0xb047cb2a, 0x4c2335a4, 0x4776ff1a, 0x8c2f3b05, 0x973d5dc8, 0x65dfc1da, 0xe40b463c, 0x3d9d4375, 0x874293a9, 0x396c1c44, 0x9690e5a1, 0xdd64af25, - 0xbe97ea5d, 0x000123, 00000000 + 0xbe97ea5d, 0x000123 }, { 0x514f2be1, 0xe8673da4, 0x7988b4ca, 0xd80ce2f, 0x4fae5c26, 0x219f7da2, 0xdd5afda9, 0x99b1228e, 0xfd20034, 0x67f8cd83, 0xac4c00aa, 0x7187aa74, 0x14c9f674, 0xf35c5904, 0x9443020, - 0x396085ae, 0x000065, 00000000 + 0x396085ae, 0x000065 }, { 0x3d10f929, 0x7e9defdf, 0x16aec848, 0x73b5ca86, 0x5bf3d159, 0xe38cd973, 0x14a832ae, 0xde967cba, 0x171f47dc, 0xa675d7bf, 0xce4124d8, 0xeccfe33b, 0x239cb581, 0xd47700ea, 0x8113858d, - 0xe1fe1e4f, 0x0000f3, 00000000 + 0xe1fe1e4f, 0x0000f3 } }, { @@ -64968,19 +64966,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc8f27179, 0xb895ee84, 0x3e1c881f, 0x482186f4, 0xc77a5369, 0x14ff7cc0, 0x8411b05f, 0xac53d331, 0xccc0fd9a, 0xb30b9488, 0x37ff8f84, 0x1395ca19, 0xd601da6e, 0xf9a6969a, 0xfc2b6158, - 0x152c72b5, 0x0000d9, 00000000 + 0x152c72b5, 0x0000d9 }, { 0xc5135eb, 0xe60a778b, 0x3eb419af, 0xd39cf72d, 0xb8ddeb81, 0x908ef451, 0x510177f6, 0xfe04dc02, 0x7bc85bdd, 0xa43ae8c4, 0x5882a58e, 0xb4648514, 0x47030c49, 0x830f8b09, 0xd047b00c, - 0x5a75df9e, 0x0000b5, 00000000 + 0x5a75df9e, 0x0000b5 }, { 0xf5e3718e, 0xebc4b5f7, 0xcd1b6dfe, 0x19ff276e, 0xd6b0ddf2, 0xb830e6e0, 0x47340bb9, 0xeb7ca3c9, 0xa45f6954, 0xb2d21c37, 0x3e26c32e, 0x86a951cc, 0x24e72dee, 0x6f1cd423, 0x2da17b5b, - 0x7313828e, 0x00012a, 00000000 + 0x7313828e, 0x00012a } }, { @@ -64988,19 +64986,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x888a85c8, 0xdee2a831, 0xc7c74bc3, 0xd3f8a354, 0x7b414bab, 0x4f52f28, 0x595b20e4, 0x2ff157b4, 0x5fcd40cc, 0x1653e5d8, 0xe0d258bc, 0x9fdf5b3b, 0x7425e5eb, 0x4edf7280, 0x80007f7d, - 0x4abbf1f4, 0x00015f, 00000000 + 0x4abbf1f4, 0x00015f }, { 0xdbfa9fe5, 0xcaef9ade, 0x428bb3a8, 0xbedd050f, 0x202b7326, 0x962b1c6a, 0xef7ecd2, 0x40afd9ec, 0x5095b4be, 0xdadb9300, 0x55d4aa2f, 0xe26fe626, 0xbfa726ca, 0xc9eba6d6, 0x3e82b355, - 0x49b3bb40, 0x0001ea, 00000000 + 0x49b3bb40, 0x0001ea }, { 0xf82dbe21, 0x3c12ce24, 0x65568b17, 0x3071a5cb, 0x35e87566, 0x207178de, 0x9c881667, 0x402ac665, 0x29e3ef1c, 0x59e5263e, 0xc77fa44c, 0xe65003fd, 0xf578a373, 0x1529b196, 0x1ebb4d62, - 0x86495f51, 0x000095, 00000000 + 0x86495f51, 0x000095 } }, { @@ -65008,19 +65006,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6d62528f, 0x3e217c8f, 0x5d92cef3, 0x8d81ac66, 0x9d1c15ca, 0x96980a01, 0x67bba833, 0x9ee33444, 0x4549bbba, 0x508e93, 0x32f1d181, 0x3d16ef80, 0x421f6bbc, 0x778b2936, 0xd1e60b6d, - 0xa5015db1, 0x00013d, 00000000 + 0xa5015db1, 0x00013d }, { 0xaa387865, 0xbb9e9eb8, 0xfd41b641, 0xeec5ef54, 0x8b8e5c41, 0x636b537c, 0xb92406f7, 0x2684e944, 0xa0f1daed, 0xbaef63b7, 0xcac36459, 0x184f952a, 0xcd4e8790, 0xc1fbe0de, 0x26b3cdb1, - 0x8241c22e, 0x000063, 00000000 + 0x8241c22e, 0x000063 }, { 0xfa219972, 0x6d639a7d, 0x18ba2ba, 0x7e61ea57, 0xf8f3a190, 0xcfd8912f, 0x6d5ed801, 0xb6d7d984, 0x238ec084, 0xf04b3d7a, 0xc48554e, 0x83968bf9, 0xb8c2996b, 0xa521cd45, 0xeb7f3682, - 0xd5df35e0, 0x00004b, 00000000 + 0xd5df35e0, 0x00004b } }, { @@ -65028,19 +65026,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa28c113b, 0x43de5049, 0xb6b24a4a, 0x8b2bc7dd, 0x7bbcc612, 0xfae24c21, 0xd6d98529, 0x61de6ad4, 0xc89f6ca1, 0xe46c94c6, 0x946067bf, 0xf08d2c2, 0x713dc065, 0xea2e6083, 0x26557b3f, - 0xef79ea4e, 0x000033, 00000000 + 0xef79ea4e, 0x000033 }, { 0x279d7882, 0xb515ba57, 0xc5e3ba15, 0xf3ab9f7b, 0xdbbe7fd7, 0x26332d5c, 0x391ae819, 0x82216a2d, 0xf3598a5d, 0xdfcfadb9, 0xfbe9520, 0xb7cd46b7, 0x9ac95375, 0x811dfa75, 0xa08982c4, - 0xe864582d, 0x000060, 00000000 + 0xe864582d, 0x000060 }, { 0x9263116e, 0x366f4211, 0x6eea4ac7, 0x899afca5, 0xc33006a0, 0x31962397, 0x9e77cd1f, 0x1de2e289, 0x62118520, 0x4e7ab193, 0x5de52e1a, 0x2b21fc94, 0xa10c894, 0xe9b30a77, 0x85b4dec6, - 0xa31ea8a5, 0x0001f1, 00000000 + 0xa31ea8a5, 0x0001f1 } }, { @@ -65048,19 +65046,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfc4f0f89, 0xf1c48be2, 0x9fc67172, 0xa2c3feb8, 0xf0c66133, 0x184a87ad, 0x64ca299a, 0xa1a9e101, 0x49fec449, 0x804b4afe, 0x2361f120, 0x1f1ccf1d, 0x5765b265, 0x4d819ea8, 0x12524613, - 0x4f7b80e6, 0x00003f, 00000000 + 0x4f7b80e6, 0x00003f }, { 0xd076e175, 0x110ece4d, 0x375ff2d3, 0x9471ac0, 0xb35c9adb, 0x5a5dc6b, 0x9dfaade9, 0xde2fdd3c, 0xd2611842, 0x92156aab, 0x9325e011, 0x52d665ec, 0x168dc38c, 0x3c4b9b5c, 0x31b2418d, - 0xd3b515c5, 0x0001f7, 00000000 + 0xd3b515c5, 0x0001f7 }, { 0x1015f3e4, 0xf7dccb87, 0xb1767e2, 0x1c1f41c7, 0x3f6f58a, 0x8393f037, 0x1f5abd4e, 0xfdb8496f, 0xfe1f0667, 0xc79e7a52, 0x75796dd3, 0x35da0629, 0x765ef47f, 0x8eaf42ed, 0x9fded1fe, - 0xedd291e2, 0x00014c, 00000000 + 0xedd291e2, 0x00014c } }, { @@ -65068,19 +65066,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x361f188d, 0x67f540cb, 0xfb7d4b55, 0x4f2cdd3c, 0xd068120d, 0xaf2f25ae, 0x56335a17, 0xd1a14480, 0x50940a6a, 0xe16b935b, 0x9864ca4e, 0x288ae054, 0xfd507275, 0xf2728ff9, 0x7e53112f, - 0x374ddc26, 0x000196, 00000000 + 0x374ddc26, 0x000196 }, { 0xc8262131, 0x2a8ea0ff, 0xa2e817ee, 0x2b941d7, 0x2678bc5e, 0x3c8f4ee9, 0xd2f88423, 0x4301bfa7, 0x83a3a8dc, 0x8ae29f4e, 0x23c34290, 0x5b13ef08, 0xb36907f0, 0x26fb2c4b, 0xa28d5f2e, - 0x1c3f4301, 0x0001e4, 00000000 + 0x1c3f4301, 0x0001e4 }, { 0x944de82f, 0x1f342509, 0xfc4b51dd, 0xe65e683b, 0x369a360b, 0xbb02f42b, 0xa2ef9577, 0x5b40958f, 0x6b0386c4, 0x1ebd9a42, 0x5e1e6ccf, 0x2ff3125e, 0xf71ad903, 0xd3472ccb, 0x66c2852c, - 0xb0152cf1, 0x000194, 00000000 + 0xb0152cf1, 0x000194 } }, { @@ -65088,19 +65086,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x93e96bc9, 0xe6d15f3c, 0xcf39e8e, 0x55b55b7a, 0x74ca41de, 0x439d3a39, 0x3aa12763, 0x8f47285, 0x7c76b328, 0xcdcef9e, 0x44f31cd9, 0xc1992fd9, 0x2ab4658, 0x1f1b8853, 0x585ba1fd, - 0xa8d0828f, 0x00004f, 00000000 + 0xa8d0828f, 0x00004f }, { 0xaf25087e, 0x17b8aea7, 0xb91844ae, 0x1dae41ed, 0xf2dbf111, 0x19e96147, 0xa82754a, 0x6a0475b7, 0xd1a4467, 0x75ad00f8, 0xd9f88106, 0x64eb8b97, 0xf3062fc3, 0xfa325c81, 0xaedbea7b, - 0xb6972b7a, 0x0001db, 00000000 + 0xb6972b7a, 0x0001db }, { 0x27800ec, 0xfbf0452a, 0x910d6dd5, 0x72daac5e, 0x95e68434, 0x2c2e823f, 0x852f5f3a, 0x38443660, 0x2903989c, 0x1dcac076, 0xb00085ce, 0xb2c24fd8, 0x22b52585, 0x6f4fbe70, 0x77b40174, - 0x6ea9b83c, 0x0001e3, 00000000 + 0x6ea9b83c, 0x0001e3 } } }, @@ -65110,19 +65108,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x89e4589, 0x3209558a, 0x3b1d80fb, 0x662edc72, 0xf9c3b0fe, 0x8b7710ea, 0xdf3244f5, 0x297e5461, 0x16e384e8, 0xb2588ea3, 0x8473a8ba, 0xc0e0d510, 0xf1703ed2, 0xf1660ac5, 0x5a1a4d40, - 0x6cd6f3dd, 0x000058, 00000000 + 0x6cd6f3dd, 0x000058 }, { 0xfff6546, 0xeab84a02, 0xac6b3139, 0xcb62f5a9, 0x7e71d5c4, 0x49e065fa, 0x3aff9e0a, 0xe1c1b81d, 0x13628127, 0xa5d5ddc5, 0x70766c0a, 0x9c31ad84, 0xf6ac8e04, 0x9085ead5, 0xa95a28c2, - 0x6124e00f, 0x0001f3, 00000000 + 0x6124e00f, 0x0001f3 }, { 0x2302efd9, 0xfe50e11c, 0xc484a20, 0x91ed5a4b, 0x3f8f917c, 0xbc10df94, 0xe4fd8ce7, 0x313b52ec, 0x9424192a, 0x701a6739, 0xefc68ad, 0x800e2e8f, 0xa5cdf9be, 0xb1d4668d, 0x7566d890, - 0x9f4cca90, 0x0000de, 00000000 + 0x9f4cca90, 0x0000de } }, { @@ -65130,19 +65128,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1eedac4c, 0xa3db0aa9, 0xae930bd5, 0xe7c58176, 0xb74ee113, 0x217e1f09, 0x98bd7467, 0x5b31a440, 0x1def7944, 0x74c2e875, 0x7742f04c, 0x1f0ed6c6, 0x9f0a1225, 0x2dafce4c, 0xb5a14439, - 0x8c526efe, 0x000044, 00000000 + 0x8c526efe, 0x000044 }, { 0x3ebc922a, 0xa83f6f9b, 0xbdb8d439, 0x16949b9c, 0x3807fdd9, 0xf2ed1ed6, 0xd74500b7, 0x6c2c1aaa, 0x82cf1f52, 0x657b9111, 0xd14a142, 0x1f6cfa57, 0x49b126a4, 0xd37b716b, 0xbfd8bdf2, - 0x8d435eec, 0x000032, 00000000 + 0x8d435eec, 0x000032 }, { 0x38c90284, 0x63027b7e, 0x1bd116ac, 0x7a635ddf, 0x180a628c, 0xcf30bbac, 0x3f45b86d, 0xc11c955c, 0xf40dad5f, 0x3c5dd71e, 0x611d5ed8, 0x3750c21, 0x8e42cd66, 0x536f13b5, 0xfbea1f35, - 0x69745b46, 0x00015f, 00000000 + 0x69745b46, 0x00015f } }, { @@ -65150,19 +65148,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbc10f12b, 0x7c313780, 0xaf460900, 0x3a3832aa, 0x2c9a9a4c, 0x24ac5ff4, 0xf8b8b9d6, 0x67f7ad63, 0x96eaaea1, 0xec2aba95, 0x9cb2be5c, 0xa649ac02, 0xeac135df, 0x81232d88, 0x9eada16a, - 0x924f3bb3, 0x000097, 00000000 + 0x924f3bb3, 0x000097 }, { 0x59a58adb, 0xdee4a26c, 0x507c72ef, 0x6730c128, 0xba8944a8, 0x3b8e11be, 0xd255c916, 0x714fc44b, 0x9ec9dec8, 0x562c3d08, 0x38eca9a2, 0x2e4989e6, 0x9f4fb05f, 0xb8f3b13a, 0xfeb31725, - 0x84b9f47a, 0x000199, 00000000 + 0x84b9f47a, 0x000199 }, { 0x204821d2, 0x3bef3750, 0x119ec564, 0x28f202be, 0xba310b1d, 0xec330c24, 0xaf787c53, 0x773ae7df, 0xac6f93a4, 0xf32834f5, 0xf1213175, 0xff638296, 0xae41351d, 0x18d1541, 0xb6c6d808, - 0x14e58edb, 0x000140, 00000000 + 0x14e58edb, 0x000140 } }, { @@ -65170,19 +65168,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x66cb82f2, 0xb5970262, 0xc0660431, 0x87b18d3, 0x81c0ee9, 0x23602191, 0x9d6c8716, 0x41fcabe7, 0xc93d6e9c, 0xbff7d90d, 0xe3ad26aa, 0xd86be037, 0xdb84f5db, 0x32183346, 0xfe01d722, - 0x6d889b25, 0x000008, 00000000 + 0x6d889b25, 0x000008 }, { 0x6bfb9d63, 0xb681ab27, 0x38115542, 0xa9a1954, 0x485938c0, 0x16b0c408, 0xcdbe7e8, 0xa9ff1fbc, 0xec3bae12, 0x24d270b, 0x2ff9627d, 0x76da2242, 0x24904547, 0xebc6062f, 0x32ffbf79, - 0x583b8d6a, 0x00006b, 00000000 + 0x583b8d6a, 0x00006b }, { 0x122ea11e, 0xdcd5a777, 0x44e5e9c1, 0xf32c558, 0x4cf184fc, 0xf68c5d99, 0x9cf6e468, 0x7b253c70, 0x943dde79, 0x7e90714a, 0x35077cf1, 0x82694eb, 0xc7dba74d, 0x178ffc6, 0x5170179b, - 0x839fbd21, 0x000059, 00000000 + 0x839fbd21, 0x000059 } }, { @@ -65190,19 +65188,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x948e3a42, 0x3916650b, 0xd1f563e6, 0xc9b304fe, 0x9ac490fc, 0xeab3f9b9, 0xbf8806a4, 0x6e2e77c4, 0xb7e2dbf2, 0xe6dcd03e, 0x9e7bca11, 0xd4dd57b2, 0xfcbc7c41, 0xcb74b2ea, 0x4a9fe39f, - 0x99ab34ce, 0x000135, 00000000 + 0x99ab34ce, 0x000135 }, { 0x1cd2ef57, 0x2aad0675, 0xd510b2a9, 0xe82b72ea, 0xf5be844e, 0xe8171247, 0x9c64ce3f, 0xef062688, 0x141848c7, 0xb9ae8bf3, 0x71402783, 0xe79f057, 0x30a8258f, 0x7a6ce972, 0x946d80d9, - 0xeb1b84a9, 0x00005f, 00000000 + 0xeb1b84a9, 0x00005f }, { 0xe4f0d2fb, 0x18ca99a6, 0x37f53387, 0x4cf1e719, 0x962c37d6, 0x78133ae4, 0x92812c73, 0xc3b0b3de, 0x30ce5fc7, 0x969b1b4e, 0x77e226b1, 0x459599e2, 0xdb3833d8, 0xbf347c38, 0xb8c339bc, - 0x5e8b91b4, 0x0000fe, 00000000 + 0x5e8b91b4, 0x0000fe } }, { @@ -65210,19 +65208,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x10987ac5, 0xd68ab4f4, 0x6ad424ac, 0x44ee470f, 0x3f017bad, 0x45015465, 0xfb68e86a, 0x2697459f, 0xc8e1ae9a, 0xec407a54, 0x20362885, 0xf2f39d8a, 0xa4176b1d, 0x49217e96, 0x67be2b4c, - 0x134509cc, 00000000, 00000000 + 0x134509cc, 00000000 }, { 0x69c3fe9c, 0xcd04309c, 0x14117327, 0x468ea520, 0x40c3440f, 0xcf1bce7, 0xc092a9b2, 0x8db52fd4, 0x919da237, 0x41e4046a, 0xeb10b587, 0xe046b37f, 0xb788ca09, 0x9cade631, 0xc6d0e9fe, - 0x284c347b, 0x000026, 00000000 + 0x284c347b, 0x000026 }, { 0x26fbc9d1, 0x7ee0515d, 0x10d4c366, 0xd1442800, 0xa974565d, 0xc5de0ecf, 0x9f5bc88c, 0x40ca8262, 0x2be9ca2d, 0x50c11b6c, 0xc43a6d1f, 0xe6898c16, 0x6cb0d410, 0x68c7a470, 0xbdf49112, - 0x6cf4dc1c, 0x000091, 00000000 + 0x6cf4dc1c, 0x000091 } }, { @@ -65230,19 +65228,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x46b74d29, 0x419b7e55, 0x98d36394, 0x1b2f7224, 0x84365d54, 0x90d78628, 0x6bec2574, 0x6ebc3ab, 0xa57aeb3a, 0xc731c8ed, 0x6e4e0b1f, 0xf464404f, 0xb4475174, 0xf1046d9c, 0x1feb9925, - 0x891a44b9, 0x00014f, 00000000 + 0x891a44b9, 0x00014f }, { 0x47bc8c3, 0xcf31126f, 0xd922a1ec, 0xb59309a1, 0xd8226031, 0x35afe9c0, 0x2c91a9ce, 0x84fcd39, 0x7b7102, 0x4751655f, 0x916247fb, 0x2a5263c1, 0xef3c13a9, 0x72010649, 0x6283e0c2, - 0xb8b49835, 0x000031, 00000000 + 0xb8b49835, 0x000031 }, { 0x2e0d2ce3, 0x6f8740d2, 0x3dfd8cd3, 0x8ef6f25, 0x461f552d, 0x53a6de6c, 0x66590229, 0xe20b52b, 0x109fa345, 0x58b6cf21, 0xefdd2358, 0x7cc5cb76, 0xb599eb8d, 0x7fe7a7e6, 0xacd9446b, - 0x41886a69, 0x000096, 00000000 + 0x41886a69, 0x000096 } }, { @@ -65250,19 +65248,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87c8bc53, 0x13ab93a3, 0x9d716680, 0xc0611698, 0x886607fb, 0x9ffee995, 0x206c94e4, 0xe4e9dcb6, 0x3e23ac7c, 0xa9fe7d35, 0xc336dd95, 0xaabdbec2, 0xbb855961, 0xfe3fd13d, 0xf0e8bd2b, - 0x366ac60e, 0x00004f, 00000000 + 0x366ac60e, 0x00004f }, { 0x94d3ce5d, 0x885325ef, 0x1fe4b0ae, 0xf4b9788c, 0x675f38ec, 0x2ab61610, 0x5fe0f2c6, 0xd76d19d9, 0x5a6d536c, 0xeba06923, 0xfdb2a0a3, 0xa025f441, 0xa86fe600, 0x1394f33f, 0xe0303a8b, - 0x37301f8, 0x000185, 00000000 + 0x37301f8, 0x000185 }, { 0x937a9202, 0xf0dbef4d, 0x8006d6f3, 0xf2efdba2, 0xb4e86c1a, 0x4bb52139, 0x69c13fa6, 0xae87758c, 0xc7605b60, 0x6abb6d6c, 0x73620145, 0x9068ea4a, 0xd32ca45a, 0xda8090a6, 0xf9d2c916, - 0x1f931d54, 0x0000f5, 00000000 + 0x1f931d54, 0x0000f5 } }, { @@ -65270,19 +65268,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x906ed7b, 0x496341d3, 0x91dc50b8, 0x10db164a, 0x50e6abb6, 0xe4172df9, 0x3af2c25e, 0x9877727a, 0x50270ec8, 0xf71256ba, 0x9a3c5e9f, 0xc088325c, 0xdf2de6be, 0x7497e9f2, 0xd5344dac, - 0x13378ab6, 0x0000ac, 00000000 + 0x13378ab6, 0x0000ac }, { 0x556554b0, 0xce1cc4db, 0x514ffc8a, 0x6791a191, 0x2cfbe7b8, 0xa53ef683, 0x89b920d5, 0x5a7af1d5, 0xf998d160, 0x7cad9ec7, 0xcb8a7936, 0xae00666c, 0x532297cb, 0x762c2e6d, 0xddbf8a07, - 0xf8dc6373, 0x000093, 00000000 + 0xf8dc6373, 0x000093 }, { 0x82089fdb, 0xd1901e75, 0x3b0e864a, 0x8dd7d885, 0x262938f, 0xfb393417, 0x8a10deff, 0x5e2df262, 0xd04b8ad7, 0xb048317d, 0x2bcc6ece, 0x42f86de2, 0xac60d54f, 0x7fae7c26, 0x7ddf3973, - 0xe4a5317a, 0x000026, 00000000 + 0xe4a5317a, 0x000026 } }, { @@ -65290,19 +65288,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4f430e2a, 0xd473c1bb, 0x8d5a61d5, 0xcd15d057, 0x1bab8d0f, 0x90091d8d, 0xc95c2b54, 0x581e6103, 0x1f43590c, 0x4b646826, 0xa58df711, 0x48d4774d, 0x960b5f57, 0x3ffeb4f5, 0xb0f198f2, - 0xebfdcf26, 0x0001ab, 00000000 + 0xebfdcf26, 0x0001ab }, { 0x560721e2, 0x136efd, 0x29e29e2c, 0xa5c3b9e9, 0x36aa716a, 0x3ee7f465, 0x58a21ef1, 0x7e26bebe, 0x8366bbf9, 0xdd291892, 0xd9d2ef7a, 0xbc8422d7, 0x448dba86, 0x8532674a, 0x767d1321, - 0x9f1ea6b7, 0x0001b5, 00000000 + 0x9f1ea6b7, 0x0001b5 }, { 0x42c21472, 0x17db2da6, 0x78bb37b4, 0x2550ef11, 0x24d98de3, 0x8bd6c41c, 0xf304ea20, 0x3b6aa952, 0x9da5f166, 0x4dcc0761, 0x33f9d8cf, 0xfcdc416a, 0x62c83a99, 0x7c7f0682, 0x3cca9e41, - 0x53e17a28, 0x0000e5, 00000000 + 0x53e17a28, 0x0000e5 } }, { @@ -65310,19 +65308,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa991a914, 0x64ca7ad0, 0x356919b9, 0x648cc6f5, 0x6839bea2, 0xa1b76ebe, 0x6f2c294, 0x3b577f5d, 0x3e578ce5, 0xb6e09c7, 0x6f72c497, 0x41e1a1ba, 0x37e02300, 0x7c755f76, 0x7f1ce80, - 0x1096e17c, 0x0000a5, 00000000 + 0x1096e17c, 0x0000a5 }, { 0x71578b8b, 0x4c5d5e3d, 0x63659b98, 0x4761adbc, 0x50c61f12, 0xa1e663ac, 0x8e19f7e6, 0x9f84671f, 0x83e44e28, 0xefe0a669, 0x35735111, 0x96078b9f, 0x4b7b1ef1, 0x12d02185, 0xe3161521, - 0xd10c18c6, 0x00001e, 00000000 + 0xd10c18c6, 0x00001e }, { 0x3d07bd2, 0x84937ed6, 0xa9b6c049, 0x9b4b893b, 0x945d67a0, 0xf9f88cb6, 0x9f9e9c2d, 0x1fafe888, 0x286a3e4a, 0xa8257249, 0x2db84ec4, 0xdf228681, 0x4748b234, 0xe1e12f12, 0x2a86a7e5, - 0xbf7771d, 0x0000e5, 00000000 + 0xbf7771d, 0x0000e5 } }, { @@ -65330,19 +65328,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21a4fff9, 0x81f44468, 0xacaee329, 0xd45aab6c, 0x222d47be, 0xf10d4607, 0x4a79b585, 0x24eedcd8, 0x261422d3, 0xb034ff1d, 0xeb5b0f51, 0x656941ce, 0x824360d, 0x39f68bbf, 0x2251af49, - 0xa1a5a1ab, 0x00002b, 00000000 + 0xa1a5a1ab, 0x00002b }, { 0xfc94f7ad, 0x9a0cf7d4, 0x1f31ed05, 0x31fe79f6, 0x9f3bb2b8, 0x9d35d339, 0xf5a276df, 0x401ab3c6, 0xc213ddb6, 0x7438b754, 0xd1741a19, 0x5a4dc7bd, 0x315f5251, 0x90060367, 0x7ee6b358, - 0x27635b76, 0x0001e5, 00000000 + 0x27635b76, 0x0001e5 }, { 0x9169b4c8, 0xb9ff2830, 0x685c3b77, 0x352652b7, 0x2f9de293, 0x395f97f4, 0x9a92fb75, 0x7547c410, 0x4acafa39, 0xf7c15235, 0x873c6ca6, 0x761d869f, 0xa018ba15, 0xdfe571bb, 0x99912a71, - 0xd98cf146, 0x00007d, 00000000 + 0xd98cf146, 0x00007d } }, { @@ -65350,19 +65348,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9c961fcd, 0x11b58c5e, 0x37c4dbd0, 0x3b10508e, 0x7230bcf0, 0xddeac732, 0x3555bc24, 0x40560b25, 0x74fc21e4, 0x1acc9c2, 0x24b2ce5d, 0xf3645377, 0xc009d593, 0x8455547a, 0x953e3d50, - 0x9f488f2b, 0x0001f4, 00000000 + 0x9f488f2b, 0x0001f4 }, { 0xfca871e7, 0x54e3606e, 0x457e5e28, 0x8d3c5cc, 0x86766ed6, 0x91be1ed8, 0x84c8e657, 0x76ee55ae, 0xab6777f5, 0xd9a835ad, 0xccb6865b, 0xb7ec491, 0x629183b5, 0xa3b16c6a, 0xa4d3a983, - 0xfc885b8b, 0x0001b6, 00000000 + 0xfc885b8b, 0x0001b6 }, { 0x77aa371f, 0x48eda7c5, 0x8f0b940a, 0x8d03acb5, 0x1fb35ba1, 0x72182a8e, 0x66c9f4fd, 0x775a2eef, 0x34066984, 0x3384ddbd, 0x826ee61e, 0x1b9e3f3c, 0x8ece69e1, 0xab259653, 0x5f1a1421, - 0xd5936a0b, 0x000095, 00000000 + 0xd5936a0b, 0x000095 } }, { @@ -65370,19 +65368,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x372437d1, 0x2c14aa64, 0x2fca6cfd, 0x5cb50888, 0xc93a214d, 0x1ef247cd, 0x45e41760, 0x2fccee83, 0x7cbc2ea1, 0xe5464a01, 0x68e7b651, 0xf5520d12, 0x92c3b86e, 0xe48a6ed2, 0xcfa25897, - 0x50fb57fa, 0x0001ec, 00000000 + 0x50fb57fa, 0x0001ec }, { 0xb40f17cf, 0xacc95c4a, 0x9560c28a, 0xba8d2fc5, 0x7420f584, 0xed6d5980, 0x2357c556, 0xb57ef81, 0xeba0608c, 0x689fec58, 0x6a28ed30, 0xdc1f98b5, 0x65f26890, 0x10d5f7cf, 0xe843c39, - 0x215dec26, 0x0000a8, 00000000 + 0x215dec26, 0x0000a8 }, { 0xc9f3046a, 0xb56ce17d, 0xc891b6f9, 0x3b44265e, 0x9b6d363d, 0xaf35367e, 0xc6dd0709, 0xf68f6723, 0x32a7ca53, 0xb763c6f4, 0x6d6174d7, 0xa483eb56, 0x1cb698a5, 0xd6380f0f, 0x5f626835, - 0x2fe7f877, 0x00012d, 00000000 + 0x2fe7f877, 0x00012d } }, { @@ -65390,19 +65388,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x94d0ca38, 0xfabe4315, 0x44a2a693, 0x33208267, 0xbb8ae926, 0x6916a8d6, 0x26b842df, 0x8ff80836, 0xb9210fa, 0x5f204207, 0xaab277e8, 0xb48a6971, 0x3023717d, 0xd5a482ba, 0xf0eb4fb0, - 0xfa03a1b0, 0x000054, 00000000 + 0xfa03a1b0, 0x000054 }, { 0xd5840670, 0x4310b203, 0x12ef83b8, 0x281d63ad, 0x31c8b0eb, 0x3f13296e, 0x7b4056f3, 0x38feb8e5, 0x6e1db5a5, 0xdbd0d21b, 0xd0b910a2, 0xc5b313e6, 0xac39d9dd, 0x95030c6b, 0x806dab46, - 0x1e212c28, 0x000015, 00000000 + 0x1e212c28, 0x000015 }, { 0xa7250423, 0x34b2685e, 0x73e85081, 0xbd66b0dc, 0xcb17f5ae, 0xedb582c5, 0x3d38afd1, 0x400aa57c, 0xa0dda88b, 0x1a80d1a7, 0x27b4b419, 0x13ab8a7d, 0x44d80392, 0xb7cd3b8f, 0x873f8597, - 0x2c6b91d, 0x000137, 00000000 + 0x2c6b91d, 0x000137 } } }, @@ -65412,19 +65410,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd7f1e011, 0x2e3a5406, 0xab075b1c, 0x80c1b24e, 0x9b173d2a, 0x69d1793f, 0x85bbe87f, 0x7cd6e25c, 0xe4fb367a, 0xfd909ea5, 0x678492b1, 0x14d6f891, 0xfbe6ec59, 0x4a12ef, 0x6354eb, 0x90d07c92, - 0x00011c, 00000000 + 0x00011c }, { 0xa18686f4, 0xc51ba4b7, 0xdf7ac90d, 0x12a80f12, 0x32a9d581, 0xd3115c96, 0xde0d561f, 0x367c6c4a, 0xb6f6e141, 0x6031c478, 0xb691168c, 0x7fee4c21, 0xb3136741, 0xd58158bb, 0x7a15f906, - 0x34b78967, 0x0000ef, 00000000 + 0x34b78967, 0x0000ef }, { 0x59b92628, 0x8984cc7, 0x2b667c45, 0x2e7b37d6, 0x4898a005, 0x9a3b58c7, 0x72ecdd32, 0x893b6e2e, 0xa9a418cb, 0xce539b7b, 0x691d8d70, 0x9a27807b, 0xfb831488, 0x2603dcb2, 0xf2bf8a1, - 0xdae148fa, 0x000036, 00000000 + 0xdae148fa, 0x000036 } }, { @@ -65432,19 +65430,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x71bd054d, 0x25c2c23, 0x351724a4, 0x18ffcf17, 0x7c9bc5db, 0xec5603c8, 0xd4c1a09f, 0xdb968345, 0x9697628f, 0xbbfb79ba, 0x24a2dfd8, 0xb57d05f1, 0xede6bd4e, 0x26f5b380, 0x3ddaaada, - 0xa4ca404b, 0x000126, 00000000 + 0xa4ca404b, 0x000126 }, { 0x56ff8423, 0x4d079e59, 0x9c454ffe, 0xa0c1624e, 0xa1920384, 0x533a9b6e, 0xc8c12ff9, 0xbc39c4b5, 0xf90b9ecc, 0xe1ed4213, 0x14d2a55c, 0xe1106375, 0xfa45051, 0x9b942f90, 0x6f04e0e, - 0xb575fdd1, 0x000085, 00000000 + 0xb575fdd1, 0x000085 }, { 0x128d4da4, 0x3e1bce, 0x39750bcf, 0x6494d55e, 0x20b5edab, 0x89af2d30, 0xf23164c9, 0xe00b5d02, 0x78923f10, 0xed2cadc4, 0xebffaf7d, 0xcf301e6f, 0x2b3897ba, 0x1292c255, 0x62a99103, - 0x790427ce, 0x0001b0, 00000000 + 0x790427ce, 0x0001b0 } }, { @@ -65452,19 +65450,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x17a46ebb, 0xe4db49d1, 0x1a4b0e56, 0x6c323a81, 0x8e3add69, 0xb6e2294e, 0x9aae3863, 0x2c506627, 0xd228a34a, 0xb0fb1a5e, 0xb11f376b, 0x525a5287, 0x4ee9ca7, 0x8b29cd87, 0xfbfd2259, - 0x2352ee89, 0x0001f1, 00000000 + 0x2352ee89, 0x0001f1 }, { 0xa52128c, 0xf71f8797, 0x725cb290, 0x7085b5d2, 0x988a0e25, 0x49a4a5b, 0x716c62c6, 0x124ea52c, 0x1919f8cb, 0xfcf41793, 0x29aa35fd, 0x819acc6d, 0xd054325f, 0xdbbf7781, 0x60ec81f8, - 0x2860f196, 0x0000c1, 00000000 + 0x2860f196, 0x0000c1 }, { 0x18baf12, 0xc8b05be4, 0x5193295a, 0x7ed0fba9, 0xe7a64c29, 0x5d72aecd, 0xc7e00509, 0x88b19be0, 0xde7b14f6, 0x4acf3771, 0xce1c7cce, 0xa2ff90aa, 0x14e19cf9, 0x8a3022e6, 0x82ec14df, - 0x7b960515, 0x00004c, 00000000 + 0x7b960515, 0x00004c } }, { @@ -65472,19 +65470,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a24eab4, 0x8554f4c, 0x439cde9e, 0x5917d5f8, 0xb1e926f1, 0xf50f29ea, 0x8723a9d5, 0xad89d071, 0x98e984da, 0x499dddc7, 0x58d80155, 0xa820ff2b, 0x379a0561, 0x88ff3502, 0x972cb5e1, - 0xd6e58c6f, 0x0001b1, 00000000 + 0xd6e58c6f, 0x0001b1 }, { 0x47db92db, 0x1a255a92, 0xc2778115, 0x638c5418, 0x943ebdd2, 0xa5adb80, 0x67461e49, 0x5d1758fd, 0x327f22d2, 0x6514ca9c, 0x843d1c65, 0x665b9ceb, 0xb31dccbf, 0xa2c86253, 0xee7bf6f8, - 0x3eacd2f3, 0x000109, 00000000 + 0x3eacd2f3, 0x000109 }, { 0x5a74f322, 0xdc480314, 0xe5fc3e75, 0xee4890b1, 0x8bbe6d72, 0x93c2dce7, 0xa60a5b31, 0x1c078133, 0x2b465b0f, 0x80561fbf, 0x4c1bfcf, 0x7513e37a, 0xba304077, 0x42263c6d, 0xbf8277f9, - 0x6e84f293, 0x000104, 00000000 + 0x6e84f293, 0x000104 } }, { @@ -65492,19 +65490,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa9d0753d, 0x684d2c8a, 0x4f39e17a, 0x9fa8f61, 0xecf143a5, 0x341ac162, 0x9817a0d1, 0x724eb68d, 0xa16c1a7a, 0x6fcd70fc, 0x7a089811, 0x29849fa3, 0xd76f754a, 0xdf734992, 0x360d0223, - 0xa2345510, 0x00015c, 00000000 + 0xa2345510, 0x00015c }, { 0x65740d68, 0xe62f9499, 0x9e23afe, 0x71cc4934, 0x70f125e6, 0xbe0b9946, 0x2f3b0b14, 0x40884abe, 0xd33346a, 0x884bdcb1, 0x5839ecf6, 0xf9be7996, 0x174ff579, 0xd5184b3, 0x94788a0f, - 0x7bb4175b, 0x000142, 00000000 + 0x7bb4175b, 0x000142 }, { 0xad0f04e5, 0x3ad361cf, 0xa28b3a6a, 0xbba9783c, 0xd2e6d4f8, 0x5056e803, 0xf3cbc88a, 0x97cf686f, 0xdedc428b, 0x3d1f0232, 0x7195e096, 0xbd9c8d6b, 0x25c2764b, 0xbefd8a56, 0x74c873e1, - 0xf53de236, 0x000022, 00000000 + 0xf53de236, 0x000022 } }, { @@ -65512,19 +65510,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x31faf1ed, 0xe593c504, 0x40752da1, 0xb0341cba, 0xd8da1cad, 0x293f8375, 0x638ce46c, 0x7399b8e3, 0x884165ca, 0x9192256d, 0x6279e9cf, 0xd38f74bb, 0x29d9f43b, 0x8ec7e254, 0x90a86b90, - 0xf2e18238, 0x000150, 00000000 + 0xf2e18238, 0x000150 }, { 0x4b9a1010, 0xb027c6eb, 0x673f4f12, 0x11c25504, 0x70190eb3, 0x7900a9c5, 0xc0f4fc05, 0xaf79a90, 0x55e634d5, 0x76ffdb22, 0x543b60d7, 0x4123b134, 0x1650dd07, 0x844a660d, 0x572c488f, - 0x3eaa47ee, 0x000104, 00000000 + 0x3eaa47ee, 0x000104 }, { 0xbe16cc3b, 0xb57bab97, 0x716a40fb, 0x801405d, 0xe34a432f, 0x72e2dda7, 0xfb46650d, 0x4fcdc9c, 0xa8b41289, 0xe9db348e, 0x6ccbf82c, 0xf68e07be, 0xf36f0975, 0x1280dbf2, 0x4b734106, - 0xbb116970, 0x0001b3, 00000000 + 0xbb116970, 0x0001b3 } }, { @@ -65532,19 +65530,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc5663058, 0xaf12f0ae, 0x76cc7f3, 0x24ba44b7, 0x28381388, 0x155dfc36, 0x456f2f1f, 0x882a9bab, 0x1b4e6e02, 0xa22ac474, 0xe709b5dc, 0x7353363e, 0xd9053c89, 0xb78f2487, 0x7bc0a076, - 0xbdefb046, 0x000027, 00000000 + 0xbdefb046, 0x000027 }, { 0x747a166c, 0xb530e50, 0xa7418450, 0x2211ebc8, 0x6a34ee8e, 0xea14a931, 0x4bfad0f7, 0xb60f9f73, 0xa85f4a1e, 0x2ba74e5c, 0xd7dfc9b2, 0xbcd432e8, 0x8dabcd0b, 0xaf0c1fbf, 0x1dfabed0, - 0x276127cf, 0x000170, 00000000 + 0x276127cf, 0x000170 }, { 0xfef3b824, 0x92b1ab1, 0x4436823c, 0x9d02987c, 0x88637e44, 0x501eba70, 0x782d1dc7, 0xdd1229a5, 0xc28e37b1, 0x37f0c9ef, 0x64e9b3c2, 0x4bacd798, 0xee450cff, 0x9cb0f635, 0x65cf8a51, - 0xab9dfa81, 0x000079, 00000000 + 0xab9dfa81, 0x000079 } }, { @@ -65552,19 +65550,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x139e2575, 0xd4a50bd9, 0xb5c990a4, 0xf0b0b459, 0xa2a8f2ef, 0x50145591, 0x4c37c56b, 0x25e76e75, 0xb5f5040b, 0xdc750b4f, 0x84b2843, 0x53d0ee60, 0xe5fdfb92, 0xd62b9368, 0xd520d72, - 0xd2e4c00a, 0x0001f8, 00000000 + 0xd2e4c00a, 0x0001f8 }, { 0xb07d96ab, 0x4f5078c7, 0xa0c202b8, 0xa86edbc7, 0x7d1aae8a, 0x34c16fc4, 0xfea18fd4, 0x32abcdad, 0xbb036c8e, 0x72787311, 0xe971910d, 0x7a61adae, 0x9fb418e1, 0x4fe4f55e, 0x69e882f5, - 0xa6aa3ca, 0x0001f5, 00000000 + 0xa6aa3ca, 0x0001f5 }, { 0xb425692b, 0x489b1527, 0xd94d5a09, 0xaf1861ed, 0xf3a4178c, 0xc00c76, 0xc013c45d, 0x9faeb906, 0x7e38025a, 0x9df4ace5, 0x60afdfc4, 0xbd0e0e8d, 0x8fc44e2e, 0x2c9c9fdf, 0xa161338f, - 0xe29e1fda, 0x00008d, 00000000 + 0xe29e1fda, 0x00008d } }, { @@ -65572,19 +65570,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdc7b3957, 0xb6ec1d81, 0xb1878468, 0x568c5bb2, 0x1e045bd6, 0xe17d6fe6, 0x3986ce7, 0xd1f4d885, 0xf329240d, 0xd3cde19c, 0x393203d2, 0xb9840fe5, 0xae71ce67, 0x58f350e3, 0x61e95999, - 0xa776e479, 0x0000f2, 00000000 + 0xa776e479, 0x0000f2 }, { 0x29798e9a, 0xa8053974, 0x912be923, 0xd62a32e3, 0x2f2fd484, 0x1ccce583, 0x4fce920, 0xc1c73c17, 0x491bbe15, 0x3307114a, 0x28aeeea7, 0x9b0b8091, 0x34562c1b, 0x960e41a7, 0xa24eb639, - 0xd109e06b, 0x000161, 00000000 + 0xd109e06b, 0x000161 }, { 0x8b439556, 0xe4e38f62, 0x63ab910, 0xc22a11a9, 0xa3daa761, 0x2428cc4c, 0xa2cba073, 0x95ef7ad7, 0xbe86be7, 0x8d5d70d3, 0x90360a69, 0x8f052c7, 0x8a4d8d0e, 0x28a94b56, 0xd51d779b, - 0x369b7cda, 0x00016c, 00000000 + 0x369b7cda, 0x00016c } }, { @@ -65592,19 +65590,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4c2ad117, 0x58e6439d, 0xe3a45bad, 0x655d8e32, 0x61f3505c, 0xf380b7c1, 0xf5cba69a, 0x801daa99, 0x9e524a33, 0x5c4cb900, 0x8ba2164f, 0xfd002b7, 0x794bbb06, 0xbec5b418, 0x659e26b1, - 0x165330a9, 0x0000ee, 00000000 + 0x165330a9, 0x0000ee }, { 0xaa7a54d3, 0x9a95da2a, 0xae8bc79a, 0xa631c3ec, 0xa4364316, 0x5e8f63fc, 0xc016bce7, 0xc11c9d87, 0x3d55c62e, 0xff5f6dcc, 0xcf7271f2, 0x3f04f5f1, 0x6651de37, 0x5c8f56d0, 0x349d0d07, - 0xa91fd0f0, 0x000164, 00000000 + 0xa91fd0f0, 0x000164 }, { 0x558b501e, 0xeebb7574, 0x9a9fe05c, 0xf150265a, 0x2bab0f38, 0x12410e8b, 0xc6a8ea48, 0x93737838, 0xf2be8f90, 0x9184581f, 0xbfa4374b, 0xe91c74cf, 0xb3a0536d, 0x1a7059ff, 0x9cd5421d, - 0xc319f3d8, 0x00001b, 00000000 + 0xc319f3d8, 0x00001b } }, { @@ -65612,19 +65610,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9eb82f16, 0xfb76a3a1, 0xbd0c5cda, 0x92ccd6d4, 0x12b1059e, 0x9ec6c35d, 0xa4d72ca1, 0x911296f0, 0x74564c1b, 0xc435dde1, 0xd622a04, 0xdeaa1ae5, 0xa78176c5, 0x7eb617bf, 0x4ca49dd2, - 0x53bb95e2, 0x00004d, 00000000 + 0x53bb95e2, 0x00004d }, { 0xb7ef45a4, 0x68a234e2, 0x4a1072aa, 0xe2af9ab7, 0x3742e31b, 0xffcf5fbc, 0x264f273d, 0xc2f83701, 0x7b3eab6d, 0x007bb3, 0xd09a4af2, 0x9530b426, 0x9e895a88, 0x416fe4d3, 0x68d55d1, - 0x251ed540, 0x000014, 00000000 + 0x251ed540, 0x000014 }, { 0x7aca6cbf, 0xbfaf4ad, 0x85ef906b, 0x8a270faf, 0x9d483ef8, 0xd8a4c6d0, 0x757d1a0e, 0x29c318a5, 0x75a2ef48, 0x81ee2a1, 0x8a0a02b0, 0xf464f999, 0xf5384a4d, 0x61e7ae96, 0xe479c827, - 0x822d1b42, 0x000150, 00000000 + 0x822d1b42, 0x000150 } }, { @@ -65632,19 +65630,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4e0be0d6, 0xb258a74d, 0x23702119, 0x2f78cc8e, 0xd3543ed4, 0x3baf1756, 0xa4fc9ff4, 0x2e78259f, 0xc7892ef8, 0x6079a636, 0x7409251c, 0x4d0c4c41, 0x6b6753c2, 0x5f73a8a3, 0x175a5cff, - 0x4d4cc381, 0x00000e, 00000000 + 0x4d4cc381, 0x00000e }, { 0x6ed06f23, 0x9b8b469f, 0xe8dd6323, 0x9f95d0d5, 0xa36c1fcf, 0x371ee88, 0xb89a8802, 0x4dea5cf8, 0xf0dfddc3, 0x898d6f47, 0x1961aea6, 0x382f698a, 0x83c4d96c, 0x6af5347e, 0x46717926, - 0xc149257f, 0x00017b, 00000000 + 0xc149257f, 0x00017b }, { 0x17e05ad2, 0x765a7a97, 0xee0bef3f, 0x19b389d2, 0x2fab2a19, 0x274f01d4, 0xfad98920, 0x6dea2b6b, 0xc277658d, 0x98002c68, 0x7b541eec, 0xe22f4017, 0xc7b87f14, 0xf6e7ac6a, 0x304bf8b5, - 0x17631c4c, 0x0000ba, 00000000 + 0x17631c4c, 0x0000ba } }, { @@ -65652,19 +65650,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf2cd735e, 0x85f2f671, 0xa77bdca, 0x720d44f6, 0x1b32fad1, 0xfb0f1397, 0x74319476, 0x2e3b45ca, 0xa9ca8e0d, 0x1567fd2d, 0x156898ad, 0xe6b01641, 0xdfef099, 0x55014b93, 0x87c3ebec, - 0x8d5690dd, 0x000164, 00000000 + 0x8d5690dd, 0x000164 }, { 0x913f482d, 0x7349b63e, 0x513d1999, 0x8ebee32f, 0x2c2cac2a, 0xbefc9654, 0x9a31c29f, 0x68cca7a8, 0x5931d67e, 0xf3ec2c02, 0x3e2ee5e, 0x9047b266, 0x3acb4225, 0xef648f1e, 0x187f736a, - 0x89afc070, 0x000061, 00000000 + 0x89afc070, 0x000061 }, { 0x38bcd251, 0xee9f1231, 0x1fca30f2, 0xdbed1322, 0xe905646b, 0x6c740947, 0x20ad1ad1, 0x4350b1f, 0x69c280c2, 0x6ab59546, 0xa38b2f11, 0xce6e58ed, 0x6824aea7, 0x1710310c, 0x5ef79bb8, - 0xe41298ec, 0x000101, 00000000 + 0xe41298ec, 0x000101 } }, { @@ -65672,19 +65670,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd403747b, 0xe9c8b336, 0xa0c04317, 0x21b037ea, 0xad9a7ec3, 0x31563f1e, 0xba1334f3, 0xce6eec81, 0x827f6e9c, 0x905dc26, 0xbc41636a, 0xe99750b1, 0xaaaff5de, 0x2656eef1, 0x239008af, - 0xbf5cf37d, 0x000113, 00000000 + 0xbf5cf37d, 0x000113 }, { 0xe906b57c, 0xeda8b35e, 0x30f6eca7, 0xa80d9065, 0x515ea97, 0x8e665ced, 0x18ad6feb, 0xc5ea123c, 0x42237fa2, 0x50db8cc7, 0x8fb78c8e, 0xb3a719ef, 0x86c4bc78, 0x36129eb8, 0xd733a146, - 0x36f0a2f3, 0x00018d, 00000000 + 0x36f0a2f3, 0x00018d }, { 0xcc30578a, 0x54873b97, 0x68ef9d13, 0x6f5a2930, 0xc0b11f82, 0xf47c0402, 0x6f219ddc, 0xc208bc61, 0x20faeff7, 0x1b965fe, 0xde6c843b, 0xb0ed316b, 0xd83f0359, 0x17c48b8b, 0xbac870e8, - 0x9e5b9820, 0x0000e2, 00000000 + 0x9e5b9820, 0x0000e2 } }, { @@ -65692,19 +65690,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x888de2a7, 0xead6ae18, 0x2367ce72, 0x8764effa, 0x65eb15f6, 0x84321970, 0xd3da11a, 0x3aa89ae6, 0x51f11de6, 0xd5ec5c45, 0xa14c1c53, 0x6e17b4a4, 0x38cf4357, 0x9691d6f9, 0xd26ec11a, - 0x3c41b0de, 0x000089, 00000000 + 0x3c41b0de, 0x000089 }, { 0x5f42b3ac, 0x4806aa77, 0x3fb3fcd8, 0xd2a8ad1b, 0x248b7559, 0x757b4b8a, 0x199ed26b, 0x4ff82f9a, 0x257930fd, 0x414a076f, 0xb1b04d57, 0xc080f84d, 0x14b0112b, 0x2bda0279, 0xae0bbdb, - 0xb3dbbea4, 0x00017d, 00000000 + 0xb3dbbea4, 0x00017d }, { 0x56ec93e0, 0x93fa7194, 0xefa532e9, 0x1efd720e, 0x7cac16e, 0xf5241887, 0xefdc97cd, 0x7b876252, 0x258e5ed0, 0x639ad33f, 0x715bded8, 0xe5f5557c, 0x8d60d7a5, 0x9b39bba1, 0x5ef33532, - 0x5d7dd690, 0x0000f8, 00000000 + 0x5d7dd690, 0x0000f8 } } }, @@ -65714,19 +65712,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2b61db53, 0x82f40b99, 0x3560e4f7, 0xe22e9c8c, 0x1860aee2, 0xcee9228d, 0xb51eb53d, 0x437f957b, 0x2d252970, 0xdbccbf1f, 0x6867506e, 0x7097a411, 0xa2662642, 0xdf8374f2, 0x9b006ed, - 0x6eeb7eed, 0x0001b8, 00000000 + 0x6eeb7eed, 0x0001b8 }, { 0x82d69efc, 0xa9bcb332, 0xdb974928, 0xc04b25b2, 0x5f6bad91, 0x96339d96, 0x673047e8, 0xaf479423, 0xf91d04ef, 0x300d6c94, 0xfd256445, 0xfa7cb0b, 0x11f0f54b, 0x6df4844f, 0x3efbc19a, - 0xb8e74932, 0x0000c8, 00000000 + 0xb8e74932, 0x0000c8 }, { 0x11d84fb5, 0xdb4760e4, 0x89fc2c72, 0xfeeeae83, 0x37c33db, 0x33f0c281, 0x5eea5448, 0x6cd6b2d0, 0x3dd6a161, 0xd65a1b2, 0x31f724f1, 0x7b4ea37, 0x7c21ee3d, 0xfea025d8, 0xc8d7d6c2, - 0x2d85735d, 0x0001df, 00000000 + 0x2d85735d, 0x0001df } }, { @@ -65734,19 +65732,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb7703259, 0x5dccb62b, 0xdc288655, 0x8fce44dd, 0x4c3237c2, 0x7752bfa2, 0x47a35264, 0x20397d31, 0xb830ee7c, 0xa52f6b0, 0xd003701c, 0x33515d1f, 0x1db348e2, 0x7104b770, 0x82abab20, - 0x76c3df6c, 0x00000e, 00000000 + 0x76c3df6c, 0x00000e }, { 0x35d225c8, 0x83db49c9, 0x3a5cfb2e, 0xd6d2d8e8, 0x9515329c, 0x6949671a, 0x7f3d42b, 0xb5abff31, 0x5befc460, 0x7db2336b, 0x2fd79340, 0x1272df8b, 0xaac7f9b9, 0xe8ccfed7, 0xb49a183f, - 0x4849837f, 0x00010e, 00000000 + 0x4849837f, 0x00010e }, { 0xbcbff85a, 0x38bc7ac7, 0xb5fe5e74, 0x1c33921, 0xc822a22a, 0x7d3787c4, 0xd2369691, 0x3b524649, 0x1f3fd1ec, 0x444925e2, 0x6d2affc1, 0x5e1555c9, 0x8ba5e79e, 0xf15a4b18, 0x192e2c4d, - 0xd9b0746, 0x000190, 00000000 + 0xd9b0746, 0x000190 } }, { @@ -65754,19 +65752,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b0ae329, 0xb6b0eca8, 0xa02a856, 0x65b405ad, 0x6742e730, 0x10bb7ce, 0xabf6e350, 0x33078585, 0xf18374b1, 0xb17e1388, 0x4057c59d, 0x8eb301d4, 0xfceb1c60, 0xfaac67d9, 0x30d89773, - 0x88fe2f21, 0x000149, 00000000 + 0x88fe2f21, 0x000149 }, { 0x32b9a42c, 0x1e4ed8a5, 0x2f6af60e, 0xac13c48a, 0xdec55b8, 0x581e255f, 0x60d581b4, 0x1799f01b, 0xad5f5a92, 0x95249042, 0x501ba7f3, 0x18d9bb34, 0xeae273c1, 0x20ae4b4c, 0x1bd72023, - 0x9472691d, 0x00013d, 00000000 + 0x9472691d, 0x00013d }, { 0x77715ea4, 0xd4c02da, 0x627a37b9, 0x69d49da6, 0xf9ebccb, 0xa1f461ae, 0x70607b58, 0x780e269a, 0x4b4e18c6, 0xf0bc139f, 0x17e5468e, 0xe6a8e864, 0x39a35f2b, 0x3dc083f9, 0x6b3171ca, - 0xb06cd404, 0x000190, 00000000 + 0xb06cd404, 0x000190 } }, { @@ -65774,19 +65772,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x88b782a1, 0xd96b8942, 0xefa76a95, 0xcd9141e0, 0xb3ab407f, 0x6e8ff26e, 0xfcaf37e9, 0x4a57c7b2, 0x4f060dd9, 0x673c18a2, 0xffbc98d3, 0x59b40917, 0xc8a4ca42, 0x722fc716, 0xdc12ac7, - 0x58a98656, 0x000080, 00000000 + 0x58a98656, 0x000080 }, { 0xc641755a, 0xc474f7e8, 0xf4a158c3, 0x138a47df, 0x129615f7, 0x37c3ce33, 0xef4af4d3, 0xd0a1bc0d, 0x5518a548, 0xf167a34b, 0x7b4afaee, 0xcc6a93e6, 0x4e993fd2, 0xc1afec5b, 0x35f4e787, - 0x2e97ba08, 0x000019, 00000000 + 0x2e97ba08, 0x000019 }, { 0x3936f9a3, 0xdc07586a, 0xbb2bcd78, 0xd9092125, 0x8d20aa65, 0x8d7be244, 0x7dd879fe, 0x18327bc3, 0x64c3bd74, 0x6a945018, 0x95d5032a, 0xcad3c423, 0x1ef0b3b3, 0xe4465ee8, 0x1425dca1, - 0xef15e321, 0x000107, 00000000 + 0xef15e321, 0x000107 } }, { @@ -65794,19 +65792,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5f38ca08, 0xf13f643c, 0x91435a5d, 0x76b9a65d, 0xdf2af4b8, 0x99bf3d32, 0x1849c3d1, 0x6f105d72, 0x17cde796, 0xd33e2d40, 0xa8ae6fcc, 0x4860374f, 0x6d2b1821, 0x695935a3, 0xee441fc1, - 0xf4f7a830, 0x0000c1, 00000000 + 0xf4f7a830, 0x0000c1 }, { 0x336a8d33, 0x1ed6cd32, 0x255422d5, 0x41b71b7d, 0x4f884938, 0x448ea5c9, 0x33978580, 0xefc7e06f, 0x5672b3dd, 0xe1147a, 0xde59d203, 0xbba0cc9d, 0x705fe975, 0xbda754a3, 0x806e316b, - 0xfc533492, 0x000171, 00000000 + 0xfc533492, 0x000171 }, { 0xb32bb9f1, 0x735649c9, 0xd4a933f0, 0xa0de90c9, 0xe3f1b889, 0x6b6344f0, 0x37c01f43, 0xbe211aec, 0xa2bbcb6f, 0xde5cdc8a, 0x1f204405, 0xb5ed7c9f, 0xdf9a580f, 0x1be6c326, 0x3b3ee9ff, - 0x40543009, 0x000036, 00000000 + 0x40543009, 0x000036 } }, { @@ -65814,19 +65812,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x154e0c71, 0xdefa57fb, 0x2b5aeaff, 0x1bf9fead, 0xde990555, 0x7748e0f1, 0x193385ea, 0x6b1f6d2b, 0xff34bb18, 0x75f47a24, 0x4b1c8c4e, 0xa05f5bc9, 0xf9b0b5a8, 0xe12ca902, 0x81e108b9, - 0x3ac901e9, 0x00013f, 00000000 + 0x3ac901e9, 0x00013f }, { 0x230696c3, 0x4a6a0ee4, 0xd435d420, 0x35eb59f2, 0xe580ea59, 0xec8560cd, 0x5be5965, 0x51bbab69, 0x9237f741, 0xb9c6d298, 0x50ce59af, 0x9decaeac, 0xb51d75a5, 0x52c4dea7, 0x8ed45ec, - 0xaffdbe6e, 0x000114, 00000000 + 0xaffdbe6e, 0x000114 }, { 0xa6823751, 0x274b37e6, 0x98785644, 0x7d488d6c, 0x2cc241de, 0x9e4354fb, 0xafa2abed, 0x7d2f5ac7, 0x539b07e8, 0xe6f6b5ed, 0x3fca314e, 0xad85d68c, 0x7ea2f5a6, 0x7f8fae4d, 0xb84788f, - 0xe42c061a, 0x0001dd, 00000000 + 0xe42c061a, 0x0001dd } }, { @@ -65834,19 +65832,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6fa1955f, 0xc532c3c1, 0x80565188, 0x62888ec2, 0x17133d28, 0x659d7225, 0xdbf895c2, 0xd587a27a, 0x80a955e4, 0xee6cb5cf, 0xcba7f673, 0x355bf65a, 0x430423ae, 0x7405c49d, 0x532f1f24, - 0x171c1642, 0x000059, 00000000 + 0x171c1642, 0x000059 }, { 0xfdc2dc2a, 0x51d78e2c, 0x3899e6be, 0x66411f6f, 0x5cdab34c, 0x4825213e, 0xe32b48b8, 0x4f50fdbe, 0xa2a358d0, 0xe64e5ba7, 0x8e4481da, 0x9ed6673a, 0x5cf2f7fe, 0x92d13d03, 0x74f60ef6, - 0x6ae72100, 0x000107, 00000000 + 0x6ae72100, 0x000107 }, { 0x4572f6f, 0xa59df45d, 0x5d12690e, 0x706fe0de, 0xea9a99e4, 0xb96a5a17, 0xb4579d10, 0x817627e9, 0x1eda2232, 0x2c3d2610, 0x1270e182, 0xd78a7abf, 0x9e75b423, 0xa3597076, 0xac2009d1, - 0x8db05048, 0x00016f, 00000000 + 0x8db05048, 0x00016f } }, { @@ -65854,19 +65852,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3d3e90e9, 0xa2a31008, 0xb848d9ac, 0xf837f51a, 0x93b300ad, 0x6034553f, 0xbd236cf1, 0x87beba74, 0x6853c349, 0x6790c33a, 0x10ee125e, 0x4ae936e0, 0xc00583b0, 0x6f20ced, 0x76625fbe, - 0x126ebb62, 0x000078, 00000000 + 0x126ebb62, 0x000078 }, { 0x3ba30ca5, 0xc5aa51ea, 0x47cbfc1d, 0xe9e6f5a3, 0xeb4accb1, 0x5449612d, 0x54c91036, 0x96d639f7, 0x1422e649, 0x5f650b52, 0xef2c369b, 0xda1f69ed, 0xee250c10, 0xfd6c2f5a, 0xa69ca674, - 0x53fc7ce2, 0x0001b4, 00000000 + 0x53fc7ce2, 0x0001b4 }, { 0xf7448b03, 0xe438e6dc, 0x28e7ec59, 0x92629c54, 0x23255268, 0x7e1027e1, 0x67748e9c, 0x2198b380, 0x541d191c, 0xdfb95a2a, 0x5df37557, 0x72aab94c, 0xe0bf1b22, 0x88d5467b, 0xc0a0ed25, - 0xd04edf34, 0x0001b9, 00000000 + 0xd04edf34, 0x0001b9 } }, { @@ -65874,19 +65872,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4588b893, 0x69e1d63c, 0x26d8fb80, 0x8e783056, 0x5efc0833, 0x7c4bb4f9, 0xe35c69b8, 0x3d917d0c, 0x80cdca20, 0xa5381776, 0x14e4a730, 0x65162f7c, 0x3b20684c, 0xf2c6084e, 0xa457246b, - 0x7b16f40c, 0x000066, 00000000 + 0x7b16f40c, 0x000066 }, { 0x802426ff, 0xeeb014da, 0x96db44b1, 0xef82b6ec, 0xe7949891, 0xa2932bd4, 0x438da812, 0xe332f6bf, 0xdb5b49d5, 0x4c06545d, 0x1605e6dc, 0xf8230f70, 0xb3705cc0, 0xdec79d25, 0xa38c7ddf, - 0x5c50fa90, 0x0000a1, 00000000 + 0x5c50fa90, 0x0000a1 }, { 0xae7d3a90, 0x1b012938, 0x4feab920, 0xee71ef5a, 0xd22fa8f8, 0xec82a498, 0xb01e9154, 0xca2f41db, 0xb9e88bb, 0x1afa40ce, 0x41b4f984, 0xa511e15f, 0x715f4972, 0xb1ad5425, 0xa27c9a5d, - 0xfd5d1383, 0x0001cf, 00000000 + 0xfd5d1383, 0x0001cf } }, { @@ -65894,19 +65892,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4da4ef5c, 0x5eb1f4c7, 0x208e6864, 0xebbf4153, 0x6800f4ec, 0x58f2b632, 0x9c638190, 0x66929046, 0x59ba1b7f, 0x7d56f60c, 0x6dc398b0, 0x75e74ee, 0x97b4144f, 0xf47afd0e, 0x7a2c470e, - 0x9aaf40d, 0x000105, 00000000 + 0x9aaf40d, 0x000105 }, { 0x65613610, 0xc1af745e, 0xef71f73, 0xe185015a, 0xb173a91e, 0x50639e16, 0xb852db10, 0xa4ad142f, 0xb1d43881, 0x88ee4fed, 0x7a062127, 0xc874dc19, 0xbd9b8129, 0x90c5748b, 0x4a838c87, - 0xa9a8b75a, 0x0000e3, 00000000 + 0xa9a8b75a, 0x0000e3 }, { 0xa48f62d2, 0xacd93b13, 0x653da5c4, 0xb2e53b90, 0xa5d624e3, 0xc0991fd9, 0x10a5f890, 0x93f9f98e, 0x47475fff, 0x70a79224, 0x630bd2ad, 0x845a6efe, 0xb8446e60, 0x1782c540, 0xe4dde082, - 0xb6e165d3, 0x0001f9, 00000000 + 0xb6e165d3, 0x0001f9 } }, { @@ -65914,19 +65912,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x28b29879, 0x6687619d, 0x9135c537, 0x8983f4f, 0x952878b5, 0xb5214b11, 0xc227a6b0, 0xb76bf11d, 0x8986abb3, 0x96f2a28d, 0xb2b6988b, 0xedb8b50, 0x5cc172c6, 0xa3875302, 0x92dada0b, - 0x7559dc1d, 0x000143, 00000000 + 0x7559dc1d, 0x000143 }, { 0x36437657, 0x9a0cc3f5, 0x597b7b8d, 0xf01c943e, 0x5925b991, 0x46b16d4c, 0x71c2df16, 0xd3ff4c0c, 0xa314397d, 0x9f1e07cb, 0xbe50b8f5, 0x6891c095, 0x29bb38cd, 0xbf697129, 0x21f89700, - 0xe96d6b05, 0x000122, 00000000 + 0xe96d6b05, 0x000122 }, { 0x56257c3f, 0xbd215556, 0x56e0cc37, 0x81008bd3, 0x89f0652d, 0x8529917a, 0x630fd4f9, 0xb8cb4c1e, 0xf78ab44, 0x5a33194c, 0x44fe1a48, 0x8145715, 0x1480f44, 0x10c5e06a, 0x239ff2b5, - 0xc36508a9, 0x000049, 00000000 + 0xc36508a9, 0x000049 } }, { @@ -65934,19 +65932,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xef018551, 0xf3642d30, 0x3b0e4f1, 0xb119a77b, 0xc5d8286e, 0x865438ef, 0x34e31cc6, 0xf02233f, 0x4cfde3dc, 0xcc2fe0b1, 0x924dd94d, 0xb68af5d0, 0xfdc0d50b, 0x93dbc0dd, 0xaf8f4ef3, - 0xf4c6645a, 0x000190, 00000000 + 0xf4c6645a, 0x000190 }, { 0xc289ca4a, 0xb3745776, 0x9af326a9, 0xeac215d3, 0x48a4a294, 0xae57b194, 0x16335604, 0x95d3bd0d, 0xc3ff17cc, 0x7cfd65e1, 0x1660521d, 0x2a27ebb2, 0xc020c5fe, 0xa2d4427e, 0x16983864, - 0x38cd40f7, 0x00006c, 00000000 + 0x38cd40f7, 0x00006c }, { 0x518f195a, 0xb7ced268, 0x9792cb4, 0x4693d172, 0xbadf6db6, 0x763220be, 0xe47997bb, 0x9045b85e, 0x91bea7c3, 0x9977703a, 0x958d6034, 0x5da64a5f, 0x9fa228af, 0x9c0689de, 0x16f5a8b3, - 0x8bdf215d, 0x0001c8, 00000000 + 0x8bdf215d, 0x0001c8 } }, { @@ -65954,19 +65952,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa80c7978, 0x6126ccd9, 0x8aed31a4, 0xce83c630, 0xec115f3e, 0xa8086b94, 0x5b8e6510, 0xbefaf506, 0xbc47994b, 0x68ca79e3, 0x4a34ebfa, 0x2de63dae, 0x8f8c2ab6, 0xcb72cbc2, 0xa7906235, - 0xb1c6dd24, 0x0001f6, 00000000 + 0xb1c6dd24, 0x0001f6 }, { 0x5a9f94c3, 0x988af6cb, 0x8dd23f41, 0x17164831, 0xdb222d59, 0xbbad48a0, 0x562d89f1, 0xc267e4d2, 0xbe557c2e, 0xacce069e, 0x2a2ca92d, 0xd6d331ed, 0x6903fd0a, 0x22f5a55e, 0xc5b8f7a1, - 0x55a3b6bb, 0x000186, 00000000 + 0x55a3b6bb, 0x000186 }, { 0x4fa5a080, 0xb5bd9f4a, 0x370d450e, 0x2bf00b01, 0x971b6b88, 0x6c14f2f1, 0x8e55b2f4, 0x854ff4a2, 0x397cc721, 0x879dada6, 0x4183aaf5, 0x1a9409b9, 0x5dbe0b00, 0x3769912a, 0xff71057e, - 0xf4aa4134, 0x0001ef, 00000000 + 0xf4aa4134, 0x0001ef } }, { @@ -65974,19 +65972,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x70e577f9, 0x1aa9a5ea, 0x8647d3ce, 0x3dc595c7, 0xb21f371f, 0xd28fe974, 0x4f1ac604, 0x11f23ccb, 0x300fd73e, 0x61adac84, 0xc53fd063, 0xbb33d2ce, 0x550aead9, 0x757abf20, 0x1a3fbf1a, - 0x21c72fe0, 0x0001c0, 00000000 + 0x21c72fe0, 0x0001c0 }, { 0x65642ee1, 0xe57fc7f6, 0x4ff6b300, 0x4abd7cc2, 0x7a8ed910, 0x8fed7fdf, 0x7c67b9ea, 0x72ae1cb3, 0xab0ae68, 0xd124ea09, 0xf5356848, 0x315618d0, 0x83219e47, 0x44aea38d, 0x9e03be31, - 0x73140521, 0x00007d, 00000000 + 0x73140521, 0x00007d }, { 0xf6a41ac4, 0xfcdb2166, 0x2d530c59, 0x74c6933, 0x820b1c42, 0xc1be6ae1, 0xe94f67a5, 0xf38bcced, 0xeab6724f, 0xbf5e0c6f, 0x8ef06517, 0xbb3ef6ba, 0x3181f56b, 0xa37df9ae, 0x5fa99879, - 0x99f09b43, 0x000161, 00000000 + 0x99f09b43, 0x000161 } }, { @@ -65994,19 +65992,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd5398bc0, 0x31f9c92b, 0xab47ffaf, 0x3c11115c, 0x650eadee, 0x9684107d, 0x67d5904, 0xe5d75181, 0x9ddb5959, 0xb759805c, 0x23a946ed, 0x6948959d, 0xeb6e3d69, 0x544bab1a, 0xcf59e667, - 0x4ec29d4a, 0x000005, 00000000 + 0x4ec29d4a, 0x000005 }, { 0x106204e6, 0x60771294, 0x5e675251, 0x8a15c21a, 0x99432168, 0x71639aec, 0x3c9750f5, 0x49c6fb50, 0xa7a8fbaf, 0xdb85873f, 0xc8bb97b3, 0x43921e3d, 0xff91fc03, 0xd31b2e72, 0x29b33622, - 0x336631fa, 0x000014, 00000000 + 0x336631fa, 0x000014 }, { 0x76697d10, 0xb4837a70, 0xbf1ea237, 0x300d0b7f, 0x206001dc, 0xca157c54, 0x780f1b26, 0x7a082d6e, 0x6ad5c739, 0xd024c02d, 0x2daf90af, 0x964bf413, 0xad59e0fa, 0xa288c647, 0x8c1f37b6, - 0x1ec4fb41, 0x000069, 00000000 + 0x1ec4fb41, 0x000069 } } }, @@ -66016,19 +66014,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe88421c6, 0x3231de36, 0x1ff816e4, 0xbca6ca5, 0xf8cfc60d, 0x1e7cd25e, 0x8bef4ef7, 0x8d9aec94, 0x90f60405, 0x55ac70aa, 0xb5b170fa, 0x29bca383, 0xd8d60a16, 0x1678f74f, 0x5679e65e, - 0xb0283db0, 0x0001f5, 00000000 + 0xb0283db0, 0x0001f5 }, { 0xbffdd64c, 0x37738ce, 0x18707e96, 0xc9528052, 0x5804cee0, 0x72852c70, 0xc8b80c91, 0x20eed7fc, 0xb297b1cd, 0xbe9b438e, 0xa4b139f3, 0xe4027a77, 0xb370c44b, 0xd71d34b8, 0xab2f582d, - 0x8ddd1ca6, 0x000056, 00000000 + 0x8ddd1ca6, 0x000056 }, { 0xcbe1d142, 0x76c8e540, 0x81893d29, 0x98b729d2, 0x20a922c1, 0x97ef33aa, 0x4b6bfc64, 0xb1d558c4, 0x51f186f4, 0x1f81d2d1, 0x17b60f28, 0xab06891f, 0x366c7f50, 0xe9c86e22, 0xc78d82a5, - 0x3ff97bfc, 0x0001cd, 00000000 + 0x3ff97bfc, 0x0001cd } }, { @@ -66036,19 +66034,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x56ce4abc, 0x47c6ff5b, 0x5acc3558, 0x90864ff5, 0x16eae1cb, 0x8c0234b8, 0x2d18a500, 0x17cc8f6a, 0xa0e00838, 0x95dc2b4, 0x2e62e11a, 0xbc60995, 0x9527c0af, 0xd8ef94d4, 0x6cb3e15, - 0xbd7be5d2, 0x0001f0, 00000000 + 0xbd7be5d2, 0x0001f0 }, { 0xe2db03a4, 0x30a441bb, 0xceaf1664, 0x8a78d223, 0x2fbe97eb, 0xa9fd93ba, 0xf64ef770, 0xd32cbd80, 0x31744346, 0xd1e2f186, 0x1d121ebd, 0x387a308e, 0x880678c3, 0x540aec6e, 0x1b1191dc, - 0x54838024, 0x000190, 00000000 + 0x54838024, 0x000190 }, { 0x5dedbe28, 0x80dfbb5b, 0x427eae83, 0x8fd753d8, 0x51ac7efc, 0xe26d84af, 0xa3569fc3, 0xb346bd72, 0x6ccf88a4, 0x9183f443, 0x96162af, 0xce0e722e, 0xc69126bb, 0x33d9926c, 0x500af21, - 0x9ce4743e, 0x00011e, 00000000 + 0x9ce4743e, 0x00011e } }, { @@ -66056,19 +66054,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x496062b6, 0xc01fb913, 0x7b76be21, 0x433b1589, 0x5fffcd98, 0x5a3ceab9, 0x6122e89a, 0xd3a49cf4, 0xbe98dd0e, 0x24fc316f, 0x6eb2127a, 0xd62624e7, 0x780f08cf, 0xe7a9e7f, 0xbca9b4a7, - 0xdd9d3432, 0x00017c, 00000000 + 0xdd9d3432, 0x00017c }, { 0xcdacd6eb, 0x937ff6a5, 0x42fa6175, 0xaf105e2b, 0xe86fb09c, 0xe91b6688, 0xe2461633, 0x1778e6c1, 0x871a0247, 0x32805af2, 0x5f83d81f, 0xdaad2298, 0x5580369d, 0x46744078, 0xbb86fc92, - 0x8104d4e9, 0x00013a, 00000000 + 0x8104d4e9, 0x00013a }, { 0xb4605f54, 0x22f8a313, 0x3872ef3, 0xc89a0997, 0xcd19ba4, 0x785889d3, 0xf9a91de9, 0xd841194c, 0xe95146af, 0x4e27af0d, 0x7ad3fe05, 0xbfe086db, 0xbae1b040, 0xf13aea7c, 0x27dd9319, - 0x43c5fd4e, 0x00003e, 00000000 + 0x43c5fd4e, 0x00003e } }, { @@ -66076,19 +66074,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd4dcac58, 0xa7782565, 0x4ed48046, 0x88a76515, 0x99da3181, 0x6efaba0b, 0x3e68bdb8, 0x18a46102, 0x4ea9e8e7, 0x57a75797, 0x5361d95d, 0xbe944514, 0x5ecd96f4, 0x7c34c5d, 0xc9d35b26, - 0xc4fa051b, 0x000173, 00000000 + 0xc4fa051b, 0x000173 }, { 0xdb55ce93, 0xfd024331, 0xd10470eb, 0x733f08ea, 0x6373cb6c, 0x70139e48, 0x83848cfa, 0xe31afe48, 0xf2c0dac3, 0x6f7dc64d, 0xf5d5fe84, 0x681afe8d, 0x37218cbe, 0x920beb60, 0x1ffe4e2e, - 0x9d4624, 0x000167, 00000000 + 0x9d4624, 0x000167 }, { 0x7227d7de, 0xae3ad3b4, 0x80fa5937, 0x14397ace, 0x3f061c14, 0xb02ea170, 0xfe8b3efd, 0x21e8e42f, 0xad0de109, 0x49d7082a, 0xca3bdf37, 0x5de41783, 0xde2ccb8e, 0xaca21dbf, 0x90725869, - 0x87aa6600, 0x0000f2, 00000000 + 0x87aa6600, 0x0000f2 } }, { @@ -66096,19 +66094,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd2d803f0, 0xbf148f8e, 0x67e93612, 0x1a9de5a7, 0xb684dfdb, 0xfeaddf1b, 0xa7cd69bf, 0x67573a32, 0x55c8b469, 0x492b0048, 0x408a2775, 0xd43c5f00, 0x85843489, 0xdd64cad6, 0xa63cf0a4, - 0xb5883715, 0x000035, 00000000 + 0xb5883715, 0x000035 }, { 0x5a19c07, 0x6cb0066e, 0x83f23937, 0xffa3010f, 0x55fd3708, 0x4f8b6865, 0x5b1e9e40, 0xcdc8b5, 0x97157544, 0xcfd4c5bc, 0x23e56f87, 0x3ce08cc1, 0x8932a790, 0x63310110, 0xded53013, - 0x9b2ba17f, 0x0001cb, 00000000 + 0x9b2ba17f, 0x0001cb }, { 0x6f3e641b, 0xb6a9bead, 0x98e23438, 0x3dd8fab0, 0x2c487313, 0x731ccf1a, 0x58b7bef8, 0xa7e5d7d5, 0x5a06fd12, 0xc8fa37eb, 0x97bf04d0, 0x355e87c2, 0xb01891b, 0x7aea821e, 0xebe710cc, - 0x32de3e1d, 0x0000cb, 00000000 + 0x32de3e1d, 0x0000cb } }, { @@ -66116,19 +66114,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6f2a4ae6, 0x91b3cb66, 0xcfadf9c2, 0x26ecafd5, 0x52a4212a, 0xf9d528d0, 0x56d21ed1, 0x5e535027, 0x9b543195, 0xf340acf5, 0x945625c9, 0xa848f8a0, 0x4ca4aabc, 0x78e2e6ee, 0xcb0639c8, - 0x83f4e6e3, 0x000182, 00000000 + 0x83f4e6e3, 0x000182 }, { 0x8badb6d7, 0x7b511d4a, 0x6e2c6ec5, 0x8039ea3f, 0xf725224c, 0xc99bbfd8, 0x1ae3ccd7, 0x302ecca, 0xc9b62bde, 0xe8674c25, 0xaa9d50a3, 0xd3c13aa9, 0x1c536b80, 0xbadf6ff, 0xb90c1e30, - 0x36aae2bd, 0x000040, 00000000 + 0x36aae2bd, 0x000040 }, { 0xcd36cc31, 0x139b2c95, 0xd0e2e085, 0xc574d110, 0x1d156f15, 0xd4c150c0, 0x3c8b31e2, 0x8520ded0, 0xf117b287, 0x38d4c526, 0x70f6cfa1, 0x5e9e1fc9, 0x95fa9468, 0x9e6f76b, 0xc5c32145, - 0xe5df11ae, 0x000012, 00000000 + 0xe5df11ae, 0x000012 } }, { @@ -66136,19 +66134,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xff15ceba, 0xef3a297b, 0xa72f57f4, 0xd4b6ce00, 0x1d329730, 0xf38c8d4d, 0xb1f62929, 0x3fecb8b9, 0x547fa742, 0x178ba912, 0x86a18a8a, 0x63e6a1d1, 0x51f42280, 0x580b396, 0xcc11dd7, - 0x6c4375a1, 0x0001ec, 00000000 + 0x6c4375a1, 0x0001ec }, { 0x8bf5766c, 0xfab859c2, 0x7f540050, 0x6ce5f15f, 0x3e6ce4ef, 0x659a99b2, 0x11cf8ba1, 0xa50af87a, 0xa7e4d283, 0x4a3997a6, 0x3c2d6f2e, 0xa5a988e5, 0x2ac9a47c, 0x77cc3c9d, 0xf6ca6e5e, - 0x69453a60, 0x000185, 00000000 + 0x69453a60, 0x000185 }, { 0x31044eb8, 0xc5edb627, 0xa0820b0c, 0xc5afb3fa, 0xd07701ae, 0xf0c2a56b, 0x5c772131, 0x96c74049, 0xa125845c, 0x3d06bcf4, 0x36b8ad6b, 0x3e8c73a3, 0xa85589e7, 0x27c98965, 0xa8ced61f, - 0xaca80341, 0x0000d3, 00000000 + 0xaca80341, 0x0000d3 } }, { @@ -66156,19 +66154,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1ec19c7c, 0x8be95bc5, 0x63c9655a, 0x5e4fe0e6, 0xf4c34bba, 0x3a5c7cee, 0x1a062f57, 0x4cc50232, 0x5b82a35b, 0xffde0a49, 0xd08b5115, 0x93ae50b0, 0xc6638b5, 0xd9a29d05, 0xb71cd2f5, - 0x8a6a7827, 0x00012e, 00000000 + 0x8a6a7827, 0x00012e }, { 0xb3e141f6, 0xf6a2d89c, 0x7a283edb, 0xe435f97f, 0x98a48ff9, 0xce5282b6, 0x6cad1999, 0xba4d80d3, 0x7357c0d8, 0xc32b5d19, 0xca9ea8fc, 0xa450ce76, 0xf83bab82, 0x390e286e, 0x3a99ca0f, - 0x2cc4d458, 0x000150, 00000000 + 0x2cc4d458, 0x000150 }, { 0x3901570a, 0xc8e2b066, 0x172dbca5, 0x58014bfc, 0x3e1ea652, 0x4442e313, 0xd620aed7, 0x4b9b8b89, 0x16610e99, 0x75adebb9, 0x8e04d911, 0x2109e44, 0x94d7d525, 0xc54d3933, 0xa794e7f9, - 0xf3644b96, 0x000050, 00000000 + 0xf3644b96, 0x000050 } }, { @@ -66176,19 +66174,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7350a93, 0xbceef8a9, 0x38bca8bc, 0x755fe0c7, 0x865e02b4, 0x274dba5c, 0xe3e8e210, 0xb0ffb1b2, 0xdfd9bdfa, 0x91044f76, 0xf850011d, 0xd7bdbe79, 0xe66c402, 0x965efa32, 0x43cf7cf5, - 0x85f2e144, 0x0001d1, 00000000 + 0x85f2e144, 0x0001d1 }, { 0x817e6f0b, 0x48c7a8bb, 0xf0cfebf0, 0xd5c1e02c, 0x237db974, 0x8336d7fd, 0x7ec662eb, 0xed970271, 0xffe52a73, 0xf9e057a, 0x4f0471a8, 0xdf8482ce, 0xa0f492b6, 0x8dabc28a, 0x24179853, - 0x80a072a3, 0x0001ae, 00000000 + 0x80a072a3, 0x0001ae }, { 0x79b73b2e, 0x1cbb7b77, 0x5ddd081b, 0x6dce15ac, 0xbe6518e, 0xf43f08d1, 0x812ee591, 0x6dffabba, 0xfd8337ca, 0x66fbdd87, 0x61785a0, 0x4fc9a218, 0x3e4741e2, 0xe70c8ec2, 0xc9530e6b, - 0xa6e52d47, 0x0001f8, 00000000 + 0xa6e52d47, 0x0001f8 } }, { @@ -66196,19 +66194,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7d208a2c, 0xbaa5242b, 0x4ab1b18a, 0x3c3dcc3e, 0x76ada1c4, 0x8ac91e08, 0xc0b6f379, 0xc35da930, 0xee2427a6, 0x8ee3a9d0, 0x4f716912, 0xbf7622ef, 0x204ad331, 0xf8e756c5, 0x397a279e, - 0x6237981b, 0x0001d3, 00000000 + 0x6237981b, 0x0001d3 }, { 0x560578f8, 0xf3458ed9, 0x50d92423, 0x67c87e43, 0xb5b37de1, 0x2262a22c, 0x9da86130, 0x9dd986b6, 0xb24ddc52, 0x5a15bcb7, 0xc7579526, 0xbf3245a9, 0x95e674e7, 0xbb548af, 0x54baaf29, - 0xda54dab, 0x00014b, 00000000 + 0xda54dab, 0x00014b }, { 0xb281c7bb, 0x897bd654, 0x3d814665, 0xfaf8d8f0, 0x2169b5b1, 0xd50c3c5b, 0xfaa98daf, 0x3e4ef6b3, 0x4782dbb0, 0x3d5bcff5, 0x11b60258, 0xc7242bce, 0xd6db29a1, 0x678d22e3, 0xb4555ced, - 0x880a1654, 0x0000ae, 00000000 + 0x880a1654, 0x0000ae } }, { @@ -66216,19 +66214,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x25c7897d, 0x81e2fcc3, 0xc1371529, 0x5e59fb4c, 0xd7041db6, 0xda41ea9d, 0xb055e17d, 0xc07d5224, 0x8b8cea78, 0x279132e5, 0x47a91c80, 0xd6697bf8, 0x49013346, 0x56152b7b, 0x648f623b, - 0x51144b23, 0x00003c, 00000000 + 0x51144b23, 0x00003c }, { 0xce61af41, 0xdb2c5312, 0x8cc0a254, 0xcbbcca54, 0xd48cea0c, 0xe9a99e22, 0xbb9db456, 0xbf8a4bb6, 0x716de811, 0x3367ad8, 0x8177d9b8, 0x983ffc6c, 0x441ed23b, 0x2f0525b1, 0x483f7912, - 0x427c3c57, 0x0000d3, 00000000 + 0x427c3c57, 0x0000d3 }, { 0xffcc2d, 0x39c2efe5, 0x969ce642, 0x5e5a5a70, 0xf721089e, 0x788d4875, 0xe0439434, 0xe88d9fc1, 0xd407f2f, 0xe892e0ba, 0xa6e860a3, 0xa3089406, 0x34e4734, 0xc0109cc9, 0x5138f385, - 0xd88089d9, 0x000133, 00000000 + 0xd88089d9, 0x000133 } }, { @@ -66236,19 +66234,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7fac15f7, 0x7b2eef27, 0x41786a98, 0xd12830ff, 0xbd2b9995, 0xd3028cc6, 0x9dc1b7aa, 0x8fb98fdf, 0x44970d6e, 0x2cdcee8d, 0xf8a4ea6f, 0x63972373, 0x826649cb, 0x9fda2008, 0x4332b91c, - 0x160e1479, 0x00007b, 00000000 + 0x160e1479, 0x00007b }, { 0xec87e7ed, 0xd7f40f43, 0x7a9eba86, 0x1324034, 0x5cb5d2e3, 0x207e178c, 0xf7489eff, 0xc5c22863, 0xd887f896, 0x5d1e7ca, 0x9dcc15d1, 0xe6e3ad88, 0xa0bb6cd6, 0x10c2afb9, 0x1696f2c1, - 0x757d23cc, 0x000109, 00000000 + 0x757d23cc, 0x000109 }, { 0x74f2ef3f, 0xbab2dd24, 0xa6d26953, 0xef3fb76b, 0xa8f8c0e7, 0xc9e7c3d2, 0x8e486f81, 0x84d1531, 0x9289ea01, 0x4e6b0ba2, 0xd7afd09e, 0x2448945a, 0x6b7f317, 0x2e7ed6fe, 0x7cfd5ec4, - 0xe0b82421, 0x00007c, 00000000 + 0xe0b82421, 0x00007c } }, { @@ -66256,19 +66254,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7647f835, 0xf5b708bf, 0xe0299222, 0xda9530c7, 0xefe7765f, 0xa39aaa0c, 0xb090b517, 0xdc550e09, 0x62537343, 0xa4c5990d, 0x9e4a5a04, 0xc40dc0ff, 0x9ac10f7, 0x1b880699, 0xe0a3fa59, - 0xc6953f60, 0x0001f2, 00000000 + 0xc6953f60, 0x0001f2 }, { 0x6fd3539c, 0xd3232a88, 0x73f9776c, 0x123d7b73, 0x3f59cae6, 0xf756d0c6, 0xa1acc43d, 0x532847be, 0x29b5d3f9, 0xa690ba5e, 0x757fedfb, 0x89b71472, 0xf9a5642b, 0x8613e330, 0x8a33c987, - 0xde2ac46, 0x000077, 00000000 + 0xde2ac46, 0x000077 }, { 0x68478c81, 0x879f0b97, 0x9ae17117, 0xf762787c, 0x94f577a6, 0xfdcf47d6, 0x4c886121, 0xc4fe2db0, 0xd79c3e16, 0x75312043, 0x21c4514a, 0x21d0eb2, 0x43d0a3fa, 0x5466673a, 0x6ba49cc8, - 0x1c8d809d, 0x000075, 00000000 + 0x1c8d809d, 0x000075 } }, { @@ -66276,19 +66274,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf5a46dce, 0xf722617, 0x832995d4, 0xd560d20b, 0xf33d72e1, 0x81640e19, 0xd8381592, 0xd064b678, 0x286f99f8, 0xb723e121, 0x87a6d615, 0x17975cd7, 0x42cf98b5, 0x2385ed99, 0xbd4ebca7, - 0xc79d5d96, 0x0001ca, 00000000 + 0xc79d5d96, 0x0001ca }, { 0xbd0a2679, 0x9d0bbcaf, 0x95034195, 0x525f21f, 0x833cce3f, 0x52f8494a, 0xa33fefd3, 0x754f611e, 0x366c68c9, 0xe6739ad4, 0x2d8e141b, 0xdf1ccd8f, 0xa25dc7f2, 0xac47e92a, 0x8a61dc4c, - 0xac07835f, 0x0000db, 00000000 + 0xac07835f, 0x0000db }, { 0x77909c54, 0x1a5a343, 0xf9312998, 0x57731d94, 0xd8f64c47, 0xf0fc3d04, 0x94d2b704, 0xe9a82e63, 0x3b701e73, 0xec4e9642, 0x857b8014, 0x95c55ec3, 0xca9dd9bd, 0x4ef1d6f0, 0x3ca929fd, - 0x1930726e, 0x00011e, 00000000 + 0x1930726e, 0x00011e } }, { @@ -66296,19 +66294,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26650dae, 0x210bdd17, 0x8855e062, 0xbaff54d8, 0xd950391b, 0x2af99c77, 0xe805f070, 0x597fc5b, 0x1ad9a4db, 0xf2b46774, 0xca8d01c2, 0x266439b0, 0x8bd9e9e7, 0xdcc067b0, 0x389a0eb4, - 0x8dda95d5, 0x0001b3, 00000000 + 0x8dda95d5, 0x0001b3 }, { 0xe7315223, 0x440d595, 0xea64aaeb, 0x8a7e79e7, 0x626d64cc, 0x456cbb38, 0x6054ff6a, 0x3e1041f6, 0xfd280c9d, 0x74ba4927, 0x2d626b66, 0x948b0db5, 0x3fef10cb, 0x9c1e1cc5, 0xd61876b9, - 0xc5650bed, 0x000079, 00000000 + 0xc5650bed, 0x000079 }, { 0x23e0bcff, 0x95dfe65b, 0x3c5bfc9f, 0x6350bc03, 0x4707c576, 0x5817edaa, 0x34428aa6, 0x7b6cf623, 0x6271b11f, 0x1ce691bd, 0x5d592f98, 0xfeb75ef4, 0xa9218045, 0xca625f27, 0x2f3ae8cc, - 0xf77f7a48, 0x000004, 00000000 + 0xf77f7a48, 0x000004 } } }, @@ -66318,19 +66316,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x41e66c4a, 0xc8086b73, 0xf355e893, 0x23ab0042, 0x21c61d7e, 0x60c14e67, 0x3f2442a3, 0x8f315e80, 0x1f493735, 0xfa587bf6, 0x4b606bec, 0xd7077d08, 0xf38343c3, 0x89881a7b, 0x2519ba6a, - 0xacd1ab0, 0x0000d3, 00000000 + 0xacd1ab0, 0x0000d3 }, { 0xe7f7b7c9, 0x2484d6fa, 0xc5bca6a5, 0xbd35567a, 0xd0419505, 0x90173d62, 0x75386b18, 0xdd6f2067, 0x409607d4, 0x99943180, 0x9b171db1, 0xb436b5b4, 0x672df6d9, 0x38a8c02f, 0xac041f5b, - 0x545a9450, 0x0000fe, 00000000 + 0x545a9450, 0x0000fe }, { 0x61b8cff6, 0x9b33384c, 0xd356ca1e, 0xbeaa8d81, 0xc67d2264, 0x2bb17984, 0xfdc0a823, 0xb12c781c, 0xdef0758c, 0xb7eb6afe, 0xfd93009a, 0x47041f56, 0xda491086, 0xd61064f3, 0xd71d2b4, - 0x97adea7, 0x000170, 00000000 + 0x97adea7, 0x000170 } }, { @@ -66338,19 +66336,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa8eb2c98, 0xa1171df0, 0x203de8e0, 0x79d08113, 0xac23c0a9, 0x9117e6df, 0xd47e77b3, 0xa0d4c978, 0x2ff9982f, 0x461cbaa1, 0xdf60359a, 0x366e79f, 0xef68cf5a, 0x9f9628c0, 0x9aed6266, - 0x6c78a1aa, 0x000141, 00000000 + 0x6c78a1aa, 0x000141 }, { 0x9d46dd3, 0xdf9e4cb4, 0x927539e3, 0xebb735eb, 0xbb91cb5a, 0xc6fd591, 0x6ae4227a, 0x2e482c03, 0xe1c1d81c, 0x4304fd25, 0x95699605, 0xe4ae4692, 0x3a91c7ee, 0x294f9cac, 0xd1937f86, - 0x832c89cb, 0x000171, 00000000 + 0x832c89cb, 0x000171 }, { 0xf097e333, 0x336514ac, 0xcd04a62a, 0xee751ed8, 0x396858f6, 0x69b0e7b5, 0xe41d2a52, 0x585e730e, 0x29d725f, 0xa30c474c, 0xe3e11341, 0x83b5b41b, 0x3d7c4bd7, 0x8e1ffbc5, 0x94ea312, - 0x509924ee, 0x0000a6, 00000000 + 0x509924ee, 0x0000a6 } }, { @@ -66358,19 +66356,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7b85fd2c, 0x22fafe36, 0x8f11f381, 0xd3c75f3, 0xa92787ef, 0xa5828f3e, 0x6700a19b, 0xd515b67a, 0xae6c8cbf, 0x6dd43878, 0x5e4f4a09, 0xc8d193cd, 0xa9f86196, 0xfe930f22, 0x5a57e61c, - 0xe7d82e0c, 0x0000ca, 00000000 + 0xe7d82e0c, 0x0000ca }, { 0x3bf4aabf, 0xcc681afa, 0xb7813836, 0x7b9543ea, 0x35068ad2, 0xfa31afc, 0x883d06e7, 0xdaed3e9d, 0x4c00700b, 0x5f06453d, 0x8d011c99, 0x516eb174, 0xe3174e6a, 0xedc4dd8c, 0x3b8d3fc5, - 0xee775806, 0x0001f8, 00000000 + 0xee775806, 0x0001f8 }, { 0x8aec25da, 0x236cd906, 0x8370aa5, 0x6165ac2f, 0x1a2ae511, 0x1241ab58, 0x8ae089cf, 0x20c810db, 0xf641c396, 0xc43591f, 0xd21649a, 0x3d1d8db5, 0x212fa5ae, 0x5b5522da, 0xb0f12923, - 0x41d74270, 0x000052, 00000000 + 0x41d74270, 0x000052 } }, { @@ -66378,19 +66376,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5cb4ba13, 0xf9ba2fe9, 0x972ada1e, 0x8a088d42, 0xaca2544d, 0x2321175d, 0xe9432a79, 0x16b7b954, 0xa107e27, 0xc69d2a89, 0x44939e6, 0x1901fc61, 0xc8dd11ee, 0xce32fc08, 0x4c20da9f, - 0xdeae841f, 0x000164, 00000000 + 0xdeae841f, 0x000164 }, { 0x7e39b06d, 0x42f60660, 0x3e2808d4, 0x20ed7253, 0x2cef86f6, 0x871b394, 0xc230c0af, 0xe9da846e, 0xd520f629, 0xcd61756a, 0x4cd54439, 0x5158b60c, 0xa07be827, 0xaa981142, 0x3a1af55a, - 0x351d66d4, 0x0001a3, 00000000 + 0x351d66d4, 0x0001a3 }, { 0xe46fcdc8, 0xb8d7c458, 0xf63eab80, 0x3a02a8b4, 0x3e7d8ab2, 0xbbbed242, 0xb259cbd6, 0x88b9ecfa, 0x3aa0f9f5, 0xad54da11, 0x62993b31, 0xe5d142dc, 0x304994e1, 0xb265f305, 0x829fb6ba, - 0x38364d6c, 0x000038, 00000000 + 0x38364d6c, 0x000038 } }, { @@ -66398,19 +66396,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x891dbedf, 0x61cfdab8, 0x9feb28ed, 0x6b36538d, 0x934444b5, 0x6778f144, 0x400794d1, 0xe538e18b, 0xa7fb1aa3, 0x1799191b, 0xafd9298f, 0xa874c577, 0x486a0a85, 0xc3cda90, 0xecfb0a1f, - 0x21218d4a, 0x000148, 00000000 + 0x21218d4a, 0x000148 }, { 0xed06cfa7, 0x9ff0ffb, 0x2ca08898, 0x63c14905, 0xd7883617, 0x7d04033d, 0x302af536, 0xcce70ff0, 0x4c670cd5, 0x318877b4, 0xce8af8e8, 0x56e4594a, 0x3b0f65e9, 0x14814a62, 0xa9979132, - 0xd20134ae, 0x0001b2, 00000000 + 0xd20134ae, 0x0001b2 }, { 0xb053056f, 0xb8a41d6f, 0xfbead28b, 0x4beb3cb, 0x564fea34, 0xbf428c65, 0xe9640526, 0x9ddceb23, 0x6dc5d681, 0x90c0b276, 0xf551f6ee, 0x54a44de1, 0xe2f5b998, 0x302ccee, 0xf7cde009, - 0x5fa78d01, 0x000089, 00000000 + 0x5fa78d01, 0x000089 } }, { @@ -66418,19 +66416,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x710d2e3d, 0xcc2c10d9, 0x3243d640, 0x86d44d7d, 0x7608765b, 0xae4ce593, 0xe3d0de18, 0xee5ba263, 0xcf58cb5e, 0x7d79a2e7, 0x258a9e89, 0x85ed1534, 0x15d5feda, 0x1f381a5a, 0xe3992c6e, - 0x10671a5d, 0x0001d6, 00000000 + 0x10671a5d, 0x0001d6 }, { 0xbfedb47a, 0x1daaefba, 0x18f98c4b, 0x6d365495, 0xd8a265b9, 0x93f50a93, 0x1cf153c6, 0x7156f73a, 0x7a5fc24, 0xba9924be, 0x8b229b59, 0x993fa70b, 0xc08d70ff, 0xdcecc88d, 0x8b5cffe7, - 0x517fc61, 0x00015b, 00000000 + 0x517fc61, 0x00015b }, { 0xbd4abb1, 0x8114cee8, 0x3fa342eb, 0x4040d11e, 0x6f0ccb1c, 0xf8b46873, 0x9a618b6d, 0xa66d9ad7, 0xb1e25813, 0xe3d9fffc, 0x7013eba, 0x4ef41587, 0xbc2419b7, 0xabf3d493, 0xf26e2a3c, - 0x64accf34, 0x000180, 00000000 + 0x64accf34, 0x000180 } }, { @@ -66438,19 +66436,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x78ed863a, 0xffe6dcd1, 0x805f41e9, 0xbf0fcb00, 0xe0bbe3cc, 0x238f25f2, 0x46203f31, 0xe36f366e, 0x9996849, 0x25a5e379, 0xdcf3bf00, 0x5dcd9937, 0xe89e2935, 0x17f6837e, 0x2b75faba, - 0x309fd0aa, 0x0001e2, 00000000 + 0x309fd0aa, 0x0001e2 }, { 0xfc21a4fa, 0xc7f70f14, 0xd902234d, 0xeb6c4c45, 0x96691bae, 0x436cea8f, 0xa196efa5, 0xd1d4a9a8, 0xbac8e21a, 0xa6b47bbd, 0x8be50a09, 0x15c6ab78, 0x6b1d7735, 0xf82e4b3b, 0x984b07a2, - 0xdd6e78db, 0x00018d, 00000000 + 0xdd6e78db, 0x00018d }, { 0xeb639226, 0x7c2a4679, 0x137001ea, 0xe4f1210b, 0xf646153b, 0x2853b3a1, 0x1fa413ee, 0x1039623a, 0xf5b5679b, 0x284a1ad4, 0xd14325e, 0x931912d4, 0xbef7d52b, 0xbbcec17e, 0xd303279c, - 0x8905bb6b, 0x0000f6, 00000000 + 0x8905bb6b, 0x0000f6 } }, { @@ -66458,19 +66456,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6dd49f52, 0x3010e7c3, 0xa51cf96d, 0x69380a79, 0xef66e227, 0x6e8cf59b, 0xfbc6d373, 0x50fe4dbb, 0x5984cc51, 0xe531ba51, 0xef0bef63, 0xddad2533, 0xa52eceb8, 0x45db7242, 0x1556dfb3, - 0x580ee754, 0x0000e9, 00000000 + 0x580ee754, 0x0000e9 }, { 0x4d0af1fa, 0x885658a3, 0xfcb082ee, 0x7fae8d24, 0x7ad8f741, 0xee0707ee, 0x732053e1, 0xdc688e6a, 0x52f68bb9, 0x89bc311e, 0xb60b2e57, 0x37e54e0a, 0x8d9252f3, 0xa3f28e0f, 0x8c50da5c, - 0x50dd1336, 0x0001e7, 00000000 + 0x50dd1336, 0x0001e7 }, { 0xcb7a9457, 0x553a5fc8, 0x647e8e76, 0x4b11a1db, 0xa3fbfe63, 0x1e904b3f, 0x2cb56248, 0x1836de15, 0x27362836, 0x33eda14c, 0xab45d5d1, 0x30f36c1, 0x6f87e757, 0xeac4a61d, 0x1e7f409c, - 0x964f3943, 0x00010f, 00000000 + 0x964f3943, 0x00010f } }, { @@ -66478,19 +66476,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf7bf487, 0x33519072, 0xfe45e4ee, 0xc6e6162, 0xd2d14572, 0x300c9529, 0xe463628, 0x3d5f75b9, 0xdd39a96c, 0xe71f0e5b, 0x5549ea3a, 0x61f18f06, 0x5872e08a, 0xf2dcb500, 0xda4c9ac7, - 0x9f96af9d, 0x000135, 00000000 + 0x9f96af9d, 0x000135 }, { 0x5cac6c81, 0xba8c03a5, 0x9511bc66, 0x7dd41c55, 0x60642a53, 0xfd3ed631, 0x23f05efe, 0xa3734574, 0x67c1db26, 0x5e476765, 0xdb1de5c3, 0x4fe62ef8, 0x1490f56d, 0x163b3818, 0x85433350, - 0xede9ae3e, 0x000014, 00000000 + 0xede9ae3e, 0x000014 }, { 0x70775731, 0x3f3df19a, 0xa88338ba, 0x21910261, 0x77e8ed9e, 0xef384e69, 0x7bb91ff6, 0x75028851, 0x33afbf21, 0x3cb9e170, 0x5fa84651, 0xcddf71ad, 0x2e03149d, 0x95d7e8c, 0xb54fdd82, - 0xeb0fc745, 0x000181, 00000000 + 0xeb0fc745, 0x000181 } }, { @@ -66498,19 +66496,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf7f808f5, 0x970c538c, 0xfad65195, 0xa723dc18, 0x35c752de, 0x3c6fee19, 0xe4a15484, 0x7b27053e, 0xae902b50, 0x90f71a4, 0xfa9b57d2, 0x22bd4d5c, 0x47de0ed7, 0x2b0b3a85, 0xe52fb259, - 0x4c46d0c, 0x0001e0, 00000000 + 0x4c46d0c, 0x0001e0 }, { 0x61b4d649, 0xac663903, 0x9fb2dcbc, 0xad4c0a72, 0x26a088f5, 0xc3503946, 0x37554e50, 0xbfd152c8, 0xe02e2024, 0x6327a82d, 0x2e0d1d45, 0x13ca8ff3, 0x249650aa, 0xb2a32690, 0x204ace79, - 0x3506bef3, 0x000179, 00000000 + 0x3506bef3, 0x000179 }, { 0xde4f21e1, 0xf0d694bf, 0xccd48bbb, 0xf368c9d0, 0x3ef0b89e, 0xa40b138a, 0x4502af75, 0xb3dbc2c1, 0xeba7d898, 0xbc1f960a, 0x9091e34f, 0x3b2b8f01, 0x5a947bcd, 0x373c9cf2, 0x4df323c7, - 0x13e00fdb, 0x000054, 00000000 + 0x13e00fdb, 0x000054 } }, { @@ -66518,19 +66516,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x35faf973, 0xfb4f098, 0xfd688a8f, 0x4745bf5d, 0xe493a0e6, 0xac7faa5e, 0x45b81f4b, 0x9e0fd03d, 0xbd0c3a8c, 0xdad081ca, 0xddd779c5, 0x4d053901, 0x88c12be9, 0x41cb5ae4, 0xdf49a537, - 0x752e9293, 0x000095, 00000000 + 0x752e9293, 0x000095 }, { 0x898eec52, 0xfb0f1054, 0x6dc38fbf, 0xd14f0994, 0xbe28302f, 0x62f49d30, 0x67aa61e4, 0xb6284d9f, 0x660eea1d, 0x1525eefd, 0x9bd84790, 0x8f2bdda3, 0x338b0dc2, 0x4184415b, 0xc80b4d59, - 0x49d00179, 0x00012b, 00000000 + 0x49d00179, 0x00012b }, { 0x3bbdb340, 0x918964b, 0xb6e0c215, 0x30b01d17, 0x5e18cd0f, 0x4357356f, 0x97eab00a, 0x891c37d2, 0x9fcfbcbb, 0x182ce20c, 0xc8decb78, 0xfdb592e8, 0xf442b1b3, 0x2433ff10, 0x7dace168, - 0xa2bb3fee, 0x000026, 00000000 + 0xa2bb3fee, 0x000026 } }, { @@ -66538,19 +66536,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf5fa4bc3, 0xdc68c7e2, 0xea0460e8, 0xf7a8156d, 0x7e097bf4, 0x3536bbe7, 0xe3994a71, 0x7397322b, 0x10ec6b3, 0x7d13e7ec, 0x5dcbb46c, 0x182834ea, 0x4273769e, 0x2a31995c, 0x9233c49c, - 0x22f56f7d, 0x000176, 00000000 + 0x22f56f7d, 0x000176 }, { 0x13a1ce5a, 0xc3cbdd11, 0x5157ce36, 0x63052dcf, 0x507f7f17, 0xeacc9bec, 0xe08b22e8, 0xb57e6eb1, 0x33d9bbc9, 0xe09c1117, 0x73512a36, 0x79053d24, 0x89f131c3, 0xf325a3f7, 0x360080a5, - 0x95a59fb8, 0x000144, 00000000 + 0x95a59fb8, 0x000144 }, { 0xa8ddfa3d, 0xfcb61238, 0xe2f32aab, 0x9458f553, 0x544e0cde, 0xb02ef13e, 0xa8dbdb08, 0x55675efd, 0x8f31c4eb, 0x33afa069, 0x147de4ce, 0x929148c3, 0x98d212d2, 0x9e32e635, 0x57e91cf1, - 0x60d4fc9d, 0x00013f, 00000000 + 0x60d4fc9d, 0x00013f } }, { @@ -66558,19 +66556,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x549b4d43, 0x7c5ac08d, 0xd5a13e5e, 0xaa356584, 0x52ed176b, 0xc1428032, 0x9d8895a0, 0x5681d17a, 0x9aa7a283, 0xe5cfa75a, 0x87940625, 0x75d0c01a, 0xceb279ed, 0xb7475132, 0x99cc2e, - 0xfbd4d489, 0x0000d9, 00000000 + 0xfbd4d489, 0x0000d9 }, { 0x22771832, 0x8c22b6ab, 0x1d786c66, 0x13f661ec, 0xc84a13c0, 0x5b57d10c, 0xbbca481c, 0x4080beee, 0xd38a5c58, 0x7a587a33, 0x28f52905, 0xbd1078d1, 0x59310618, 0xb624046c, 0xd0dea26a, - 0xdd857dad, 0x000053, 00000000 + 0xdd857dad, 0x000053 }, { 0x6fc2d3e3, 0x54b7be75, 0xbf3486db, 0xfc1c08bb, 0xb1d819d2, 0xe5092beb, 0xd1fab71b, 0x43c49eee, 0xf4592b21, 0xddaf075b, 0x3d568449, 0x257053fb, 0x9c8a1383, 0xcc1c6792, 0x1b7640e0, - 0xba52388d, 0x0001c1, 00000000 + 0xba52388d, 0x0001c1 } }, { @@ -66578,19 +66576,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d6b6b25, 0xedabe7eb, 0xee6118c3, 0x305212bd, 0x2089707d, 0xb1bfa91e, 0x4a25f7fc, 0x332bfed4, 0x61d10430, 0x6bc5b523, 0x75f2a2f, 0x4ae35fc2, 0x27496d44, 0x83eccc9d, 0x9040785f, - 0x7240edfc, 0x0001be, 00000000 + 0x7240edfc, 0x0001be }, { 0x3fe774bd, 0x17d0b252, 0x1637f6cc, 0xf0581d0a, 0xe5855ed5, 0x2384ea7f, 0xdf809be0, 0xef96fc3b, 0x1d1abe62, 0xe39777f3, 0x6d5dfb8c, 0x51f1dce1, 0x30339de1, 0x8e45fc9b, 0xd2a2f703, - 0x55818ac6, 0x0000f8, 00000000 + 0x55818ac6, 0x0000f8 }, { 0x68e42b48, 0x79dea0b0, 0xf9c919b1, 0x87e1b2df, 0xc9f52f8e, 0x588f223d, 0x75fef17f, 0xc02ce0ae, 0xdc5d0edb, 0x1041573e, 0xafe253f1, 0x9c5b1d08, 0xaf90ebd6, 0x80d4c63, 0xc99e7466, - 0x4c69bb1c, 0x000196, 00000000 + 0x4c69bb1c, 0x000196 } }, { @@ -66598,19 +66596,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5416358c, 0x97c6c421, 0x399f0750, 0xb6317e6d, 0x683ec583, 0x2c391666, 0xeee52c3b, 0x32d62a9a, 0xf28c25ea, 0xf358b09f, 0x686dc899, 0xe8157fec, 0xe84a6242, 0xb8b88516, 0xc5359020, - 0x4c50ba45, 0x0000b2, 00000000 + 0x4c50ba45, 0x0000b2 }, { 0xd71b90ef, 0x91d35847, 0xd8683c6, 0x9dd9857, 0x697531ec, 0xc82226d3, 0xa909528b, 0x831016e0, 0x352cba62, 0xaa1e37a3, 0x8b63345f, 0xf247c8d3, 0x6d0e73db, 0xc2cbe8e2, 0xd605bca4, - 0xbe04a250, 0x0000ee, 00000000 + 0xbe04a250, 0x0000ee }, { 0x8140d270, 0x9761c71a, 0xbf2936d3, 0xa2feabcb, 0x11da4393, 0xfe3df6e1, 0xc338a921, 0xba8b869a, 0xf999ff9f, 0xf9d25355, 0x21213e02, 0xc1ccc8dd, 0xc4a417c5, 0x4e3be1bf, 0xd886105, - 0xb00e6324, 0x000165, 00000000 + 0xb00e6324, 0x000165 } } }, @@ -66620,19 +66618,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf7c97eb, 0x7626d538, 0xf1c20fa8, 0xe98e397d, 0x9684eeb5, 0xafbbf872, 0xb80db22f, 0xbe613ca1, 0x207e14a6, 0xb89ce2f6, 0x160fab2f, 0x2e66334d, 0xfa6c952a, 0x50b95f82, 0xa1ec166e, - 0x27d54b84, 0x00011f, 00000000 + 0x27d54b84, 0x00011f }, { 0x83c757be, 0x887a96e2, 0xf90cee2e, 0x46cb612c, 0xdcc9b504, 0x9e2d7b5e, 0x52c839ae, 0xd01ef9f1, 0xcdd2558, 0xdab59adc, 0x1dade6b3, 0xece12ee3, 0xaec41ba9, 0xa8ec7497, 0xb7684c84, - 0x5c538d31, 0x00009c, 00000000 + 0x5c538d31, 0x00009c }, { 0x253f8149, 0xbed594cb, 0x274a955d, 0x766b4662, 0x89290374, 0x832b1027, 0xf8cb9d82, 0x297d819d, 0xd9569451, 0xb81ce551, 0x2c72d906, 0x11e1478, 0x96f6f699, 0x581f5f2e, 0xda2f474, - 0x6ec0f871, 0x0001fa, 00000000 + 0x6ec0f871, 0x0001fa } }, { @@ -66640,19 +66638,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x648daa46, 0x3d04f446, 0x46b59126, 0x80da4542, 0xb1f429b5, 0xdf4e6e53, 0xeac649db, 0xd9f5dd2b, 0x95beb495, 0xcdecda70, 0xc17d2664, 0xdaf6aa75, 0x9fca3c9d, 0xefc365c0, 0xa2c724dc, - 0xfb2f7780, 0x000032, 00000000 + 0xfb2f7780, 0x000032 }, { 0x848a5022, 0xcf5a6af1, 0xe2ea38d9, 0x1bf1e50, 0xd5504bbf, 0x1e5bfe38, 0x87607a8c, 0xdc78104, 0xaca76fd0, 0x3fe57294, 0xcf4c3b4f, 0x47c5691c, 0x1eba62db, 0x2c5b5fff, 0x4f3067bb, - 0xb3ceacb8, 0x0001d7, 00000000 + 0xb3ceacb8, 0x0001d7 }, { 0x90134dee, 0x4cdb9be3, 0x39fe61d5, 0x1b825bbf, 0x5244c212, 0x4deb6b61, 0x6cea3ea1, 0x7084523a, 0x7c6941b1, 0x2d782cdb, 0x6613a405, 0x16d68a1c, 0xb9abf103, 0x1f6cd8fe, 0xcf053492, - 0xe0936520, 0x000013, 00000000 + 0xe0936520, 0x000013 } }, { @@ -66660,19 +66658,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b6541f4, 0xff65dbde, 0x47acdef8, 0x9c76cde3, 0x49737ad2, 0x1983cdde, 0x1a209fa9, 0x2a758362, 0x2f55aee1, 0x1fa6b402, 0xdc698052, 0x53a6d3d9, 0x95adcdf8, 0x527ed615, 0x7d1c3057, - 0x9d1d817e, 0x00019b, 00000000 + 0x9d1d817e, 0x00019b }, { 0x406f3007, 0xa50ec679, 0x595f2a31, 0x9a484de, 0x6f9e0ff1, 0x5b007a99, 0xe6e7af2b, 0x8117e69f, 0x948be9e6, 0xe9661900, 0xbc6e0fb3, 0xaceaa7b8, 0x44b421be, 0x4d5a9c3f, 0xc5c7afa, - 0x72b2f0f, 0x000107, 00000000 + 0x72b2f0f, 0x000107 }, { 0xe2cb7582, 0x2acc78a8, 0x114409ef, 0x582653ec, 0xf83c6daf, 0x2f992d91, 0x9747bf3d, 0x6bdbee44, 0xfdae1c7d, 0xef2f369c, 0xea1b7eac, 0x12a93966, 0xce1c833d, 0x5d037a48, 0xa579e534, - 0x4400a256, 0x0000df, 00000000 + 0x4400a256, 0x0000df } }, { @@ -66680,19 +66678,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xda5fed69, 0x5d61db8d, 0x96836da1, 0xcb7552c8, 0x6d3d23f, 0x2cb22717, 0x85196499, 0x8b1438ba, 0x5a984ccc, 0x5ed76761, 0xfcf80738, 0xc86da46f, 0x7c8977f9, 0x5e03d6, 0x10ee75f0, - 0x89ecd6b7, 0x00009a, 00000000 + 0x89ecd6b7, 0x00009a }, { 0x3f08334c, 0xa9381916, 0x9f0550e1, 0xbb065388, 0x5c4bf680, 0xa3a9991b, 0x276d214e, 0x2203e23a, 0x696d0568, 0x5707fb4c, 0xc3be5f98, 0xc05f3c67, 0xc52c78e5, 0xa9a2f848, 0x3d15b923, - 0x6e844492, 0x000147, 00000000 + 0x6e844492, 0x000147 }, { 0xef669abc, 0x6e5b00e3, 0x26498b42, 0x905924aa, 0x72a5ff13, 0xacf0f00, 0x3a3e96bd, 0xd7900bc1, 0x2757b6bd, 0xe7b06e9d, 0x2dc515a9, 0xf2c97be3, 0x677c836b, 0x36031be9, 0xbac8afc9, - 0x5d8b157a, 0x000056, 00000000 + 0x5d8b157a, 0x000056 } }, { @@ -66700,19 +66698,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x447c0918, 0x25cfa6a3, 0xe34d2c2e, 0x7876d0b6, 0x982cc5b6, 0xfae51c73, 0xe944c06e, 0x225b667b, 0x29bebee6, 0xc26b41e7, 0xc0447a38, 0x4ce5354b, 0x28fe3481, 0xdc8644f0, 0x60f3f0e3, - 0xe3583d20, 0x0001e5, 00000000 + 0xe3583d20, 0x0001e5 }, { 0xe8ac1342, 0xcf4c7dbb, 0xcde03930, 0x9668ee20, 0x4f5b9f87, 0x937e49d5, 0xe431fbfa, 0xd3634a6, 0x9ab75ffc, 0x708d8e3f, 0xf247da71, 0xce65e0cc, 0x772261d2, 0x546dbfa7, 0xff802a9e, - 0xbcce11f0, 0x000081, 00000000 + 0xbcce11f0, 0x000081 }, { 0xd275c734, 0xde08b413, 0xce1c8f0f, 0xaa2d6bca, 0x208bd36, 0x4f051628, 0x6b91a36a, 0x8e575207, 0xfb5a8552, 0x9ac760d3, 0x6224abd8, 0xa328d1a4, 0xae21825e, 0x9a31c8b7, 0x3d614094, - 0xc2ed4440, 0x0001af, 00000000 + 0xc2ed4440, 0x0001af } }, { @@ -66720,19 +66718,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x661c302e, 0xb71ef47a, 0x496f0299, 0x54f7d744, 0xb1ea1426, 0xdf0cd04b, 0x369f2c92, 0xdb0a9a44, 0x860c2465, 0x999f8798, 0xc219997f, 0x94cac0bc, 0x366772a5, 0xfa63555, 0xaead22d0, - 0x8ca0d2c1, 0x00007f, 00000000 + 0x8ca0d2c1, 0x00007f }, { 0xd9c0d6f2, 0xe6f446aa, 0x969d3c58, 0xa28b70ae, 0x76aeef16, 0xdb1f4097, 0xbf5952c0, 0xfe68a93c, 0xe8d9703f, 0xdd6d088d, 0x471d6084, 0xf56b2adb, 0x9fd37dd9, 0xcb684a94, 0xf8d766f5, - 0x9c0f9b2a, 0x00004d, 00000000 + 0x9c0f9b2a, 0x00004d }, { 0xa3be98d, 0xe0d5ce57, 0x8cf902a8, 0xad2c0cde, 0x293b14d1, 0xbab7d43, 0x4047223e, 0x28ae7406, 0xdc0601a, 0x5f89ba7f, 0xc6778a7c, 0xa5132eac, 0x5d024900, 0x7575fef1, 0x32581084, - 0xc8e1ca8c, 0x000078, 00000000 + 0xc8e1ca8c, 0x000078 } }, { @@ -66740,19 +66738,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbc277dbc, 0x3a9f1e90, 0xc4d7df9d, 0x1f4e4be, 0xbd0c7083, 0xf740af10, 0xcf37e964, 0x58bcc221, 0x6732fbed, 0xdf3c4db2, 0x93e13c7c, 0x2351ee33, 0x60346f36, 0x76650cbe, 0xdf9508cc, - 0x59c139ad, 0x000001, 00000000 + 0x59c139ad, 0x000001 }, { 0x2777f25e, 0x5d314499, 0xd4ba969, 0x497df998, 0x4773ad0f, 0x3883c19, 0x15785ff8, 0xdd1fc46d, 0xc1af6e1a, 0x17352d38, 0xa81e6473, 0x321e8592, 0xe9d0453a, 0xe258965a, 0x119758d4, - 0xec45ae05, 0x000053, 00000000 + 0xec45ae05, 0x000053 }, { 0x6db2b269, 0xeaf0a039, 0x28ffe0b, 0xe261855b, 0xb6b88eed, 0xd776a7a9, 0x74bc85b1, 0xcab5b3dc, 0x1f266fe4, 0x282f70fe, 0x36964cd2, 0x51866fb, 0x200fde46, 0xcec6bfe3, 0x4a067c6b, - 0xeacfa78e, 0x000096, 00000000 + 0xeacfa78e, 0x000096 } }, { @@ -66760,19 +66758,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xde330ac3, 0x6797b675, 0x99fa7d5e, 0x72af14b, 0x4b3adf7e, 0xb97193c8, 0x7d219ef7, 0xeec0b6ce, 0x27bc5a8e, 0xd6c683ac, 0x6d716848, 0x351a9f72, 0x8e5a821c, 0x460ff0cf, 0x572d55e4, - 0x10543f29, 0x000109, 00000000 + 0x10543f29, 0x000109 }, { 0xce683fe5, 0x4cf05e7, 0xc66545b8, 0xc9fa5b44, 0xc706d42a, 0xef608df6, 0x1d142ba7, 0xd255468b, 0x1483a3d4, 0x1a65d9a5, 0x4a0a97d2, 0xbc171806, 0x49985531, 0xbea10a92, 0x304f4437, - 0xc6cf9f0a, 0x00013d, 00000000 + 0xc6cf9f0a, 0x00013d }, { 0xfdda67a3, 0xb212619, 0x3bd233fd, 0x1dcc5485, 0x677ca3c3, 0xe69f3cf8, 0x5cea12ad, 0x5496cb1d, 0xf8896a80, 0xa3e2d480, 0x82e7c3bd, 0x6601b955, 0x109a52f, 0x4b1a9666, 0xfcff66f3, - 0xddaa2ca, 0x0000da, 00000000 + 0xddaa2ca, 0x0000da } }, { @@ -66780,19 +66778,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeb4ae8d4, 0xb825aa15, 0x806d69f6, 0xe4e0dd04, 0xa6dc2ae9, 0xffe38b9b, 0x9e31523e, 0x9519c7f8, 0x1a64e3ce, 0x62924fbc, 0x2ebda931, 0x559dbf8f, 0xcac5ec4d, 0xd8a949ba, 0x728b4bdc, - 0x6913e537, 0x000103, 00000000 + 0x6913e537, 0x000103 }, { 0x1a0411cc, 0x2500783d, 0xe912c43b, 0xc7b6e701, 0xc50b9308, 0x43c08305, 0x5de7b03e, 0x51e18207, 0x8b4b9c5f, 0xefbefb41, 0xce6f5e9b, 0x67a59e37, 0xd196a50c, 0xd58fddae, 0x75ef88ae, - 0x1dcc92ae, 0x000079, 00000000 + 0x1dcc92ae, 0x000079 }, { 0xa6155635, 0xcb8fcff6, 0x6d2925b4, 0xcaa42036, 0x8f9529c0, 0xf8a6c948, 0xce0c5091, 0xe5e0e4ea, 0xab85b1c0, 0x45500a63, 0x7178dc81, 0xdca450c2, 0x86e6b55f, 0x7dc37424, 0xc3e95d4d, - 0xf385652c, 0x0000f0, 00000000 + 0xf385652c, 0x0000f0 } }, { @@ -66800,19 +66798,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x841981d, 0xdcf711bd, 0x67f5abcf, 0x7d02025, 0xb4a258d0, 0xa14cf2d9, 0xb6470b6c, 0x4cf6e1c4, 0x1ddce7fd, 0xf436fa2b, 0x43faf0f3, 0x64d2cba6, 0x3d3d38dd, 0xd7e1d3a8, 0xab0fac1c, - 0x368f0590, 0x000030, 00000000 + 0x368f0590, 0x000030 }, { 0xfa06e469, 0xbb888fa5, 0xafad48d5, 0x580e9bb9, 0xe9625bb, 0xf24b2071, 0x2ed38ad6, 0x8929c831, 0x12faf297, 0xe509131d, 0xa10977f9, 0x63d901b0, 0x1eec8446, 0x5fa92e37, 0x4aa6bc93, - 0x437c0e91, 0x000097, 00000000 + 0x437c0e91, 0x000097 }, { 0x722c8a1d, 0xa34f8305, 0x40d35247, 0x5928815b, 0xde4a859e, 0xb85e7809, 0xf0b75ce9, 0x6bd503f9, 0x27a931f7, 0x87e7b21d, 0xc5b3244e, 0x6849002b, 0x98a7ce50, 0x59eb416, 0xd6ab634d, - 0x99dd8e1f, 0x000142, 00000000 + 0x99dd8e1f, 0x000142 } }, { @@ -66820,19 +66818,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x124c72ec, 0x1685e1a0, 0xb28b8dca, 0xd7630d11, 0x2bd89f36, 0xcb3fd866, 0x6a2ec7e8, 0xc05e8279, 0x12236b7d, 0xca61a5a8, 0xf5d6bff1, 0x331c9dce, 0xeec385cd, 0xb22b446d, 0x27386d8a, - 0x3a19acf2, 0x0001d0, 00000000 + 0x3a19acf2, 0x0001d0 }, { 0x871aad0f, 0x2f5dc54d, 0x3d39fa8, 0x56629dc7, 0xd60f447e, 0xcb5a13fa, 0x70f4d628, 0x928ab816, 0x849f316f, 0xc23bc2aa, 0xbf08f1a6, 0xfa66e51b, 0x3eac8691, 0xf034e40c, 0x99bb6cb, - 0xb05d35cf, 0x0001e1, 00000000 + 0xb05d35cf, 0x0001e1 }, { 0x8130bdf, 0x5a38b1dc, 0x1d75279f, 0x3b83e528, 0x62d73385, 0x7e711200, 0xa2d9259d, 0x16be631c, 0xd1b4c963, 0x48cd09f5, 0xaeeae0a, 0xb7cf1692, 0x2b1156c9, 0x472f6161, 0x4a84579b, - 0x7ea007fb, 0x0001de, 00000000 + 0x7ea007fb, 0x0001de } }, { @@ -66840,19 +66838,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b577684, 0x24513494, 0x34c7ef03, 0x4bb8f9d4, 0x8953b9b8, 0x29270dd7, 0x65c4e3fb, 0x469fe626, 0x52434c7a, 0x7dca993d, 0x8204bfaf, 0xb25ab11, 0xb406de7e, 0x166014e8, 0x20266412, - 0xa29b1935, 0x000032, 00000000 + 0xa29b1935, 0x000032 }, { 0xcb28815a, 0x3035960d, 0xec1f738d, 0xb3b07836, 0x18869c6d, 0xf3d29802, 0xc1d598a5, 0x83bc3810, 0x1f546cc7, 0x9b111045, 0x4268334e, 0x1f593997, 0x6199986a, 0xfef9812e, 0x6ab52bb8, - 0xb6eaf90f, 0x0000e4, 00000000 + 0xb6eaf90f, 0x0000e4 }, { 0x57d6629a, 0xad0148e5, 0x8f76f2ea, 0x3d67344, 0xf45494e5, 0xead550bd, 0xbd5d5117, 0xfd193aa1, 0x65e399a9, 0x9b990c6e, 0x2fbd5a96, 0xb362a826, 0x23329fb4, 0x49f30a62, 0x7dcd1c33, - 0x9fa55cb, 0x00010c, 00000000 + 0x9fa55cb, 0x00010c } }, { @@ -66860,19 +66858,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26492ea2, 0x9abd6457, 0x1174f345, 0x437c7d2, 0x8c177c8a, 0x374661b5, 0x4e85ef6b, 0xa55e73c2, 0xe988a471, 0x481ea373, 0x6f9466f9, 0x35cde86d, 0xafea3280, 0xc7209f3e, 0x2843f13a, - 0x9f91d602, 0x0000ae, 00000000 + 0x9f91d602, 0x0000ae }, { 0xb04a1d44, 0xb5b4ba62, 0x1b145f1d, 0x9ccbc16f, 0x295920a8, 0x23dcdf97, 0x8812756b, 0x8a0b9205, 0xbbbe7bbc, 0x9b6de850, 0x3c47ef5f, 0xc817ec58, 0x32b8ee16, 0xc758d9fe, 0x16f45069, - 0xf5d7fcd5, 0x0001be, 00000000 + 0xf5d7fcd5, 0x0001be }, { 0xef5ab38e, 0x8377aac3, 0x32113b9, 0xdcf82160, 0xba009459, 0xfd7f7b72, 0xe7c4b466, 0xcc00c001, 0x7b94f1bd, 0x660a87b4, 0x107edf9, 0x2f87a476, 0xc7df04ed, 0xa8fb5cfe, 0x9ecb8eaf, - 0x273e4ba0, 0x0001aa, 00000000 + 0x273e4ba0, 0x0001aa } }, { @@ -66880,19 +66878,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x33b02dca, 0x6730bb62, 0x634b068b, 0xe691ce18, 0xf75cee7c, 0xd4af17af, 0x758942e7, 0xe6abf575, 0xd5730ed1, 0xe935d236, 0xafc8b6ee, 0x9bff8460, 0xfcba88e5, 0x30e9364c, 0x84562c98, - 0xcd1ae322, 0x00018f, 00000000 + 0xcd1ae322, 0x00018f }, { 0x1dead7e4, 0xb21349f2, 0x41b0a9ee, 0xdcac9a63, 0x9ad85d6a, 0xfc927d01, 0x842c4171, 0x89e0ec66, 0xdcb627f3, 0x16baadbb, 0xc3ff141f, 0x4c07c28e, 0xe892594a, 0x427196ef, 0x11274894, - 0xa492c125, 0x0001e2, 00000000 + 0xa492c125, 0x0001e2 }, { 0x2b8d1434, 0xee739307, 0x69fd7af0, 0xd409e4ba, 0x219ead94, 0x6abf61e, 0xc875ef5e, 0x2dfc2a9b, 0x77b36d7c, 0x79611dbd, 0x3c343880, 0x831f163a, 0xad729749, 0x3c666639, 0x61caa621, - 0xe44fba57, 0x0001b8, 00000000 + 0xe44fba57, 0x0001b8 } }, { @@ -66900,19 +66898,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8ce12e69, 0x6604a4dc, 0xe0fe20bc, 0xf678a1a, 0x7ff46909, 0xa94e0001, 0x52cf4ed3, 0x5a3ed8ff, 0x8ff8b904, 0xc7475e60, 0x53697308, 0x31296066, 0x2299d6fb, 0xb52ef97c, 0xb3e85e64, - 0xf3dfd0aa, 0x0001a4, 00000000 + 0xf3dfd0aa, 0x0001a4 }, { 0xf9170157, 0xc711af53, 0x540664e9, 0x81868500, 0xddd205b7, 0xd4ba4f07, 0x41e0857b, 0xd58e1e9e, 0x3df788f0, 0x81557100, 0x323509e1, 0x487b9df0, 0x28e05a78, 0x7fc55b8c, 0x33b0dd92, - 0x63192dbb, 0x000070, 00000000 + 0x63192dbb, 0x000070 }, { 0xc36efc49, 0xee969a0e, 0xa768d5c1, 0xf1cd8c53, 0x474e7123, 0x1f52819c, 0xe66c4142, 0xce4163fa, 0xc4dd83c6, 0x96aee28d, 0x92c6be40, 0x24c51d27, 0x9c8a4fc9, 0x14d81d15, 0x8f9ba228, - 0xcd9e1b00, 0x00002e, 00000000 + 0xcd9e1b00, 0x00002e } } }, @@ -66922,19 +66920,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26e9ee34, 0xc35fa86e, 0x2ac00ab0, 0xa70b3f8c, 0x25c6dfe4, 0xbdf6c885, 0x9813144a, 0x3c5029d9, 0xb41a31db, 0x37555963, 0xfa042aac, 0x510c93b0, 0x81b869c8, 0xd7280405, 0x604d572d, - 0x70242890, 0x0000a4, 00000000 + 0x70242890, 0x0000a4 }, { 0x6724f124, 0xa9a6404, 0xa77de222, 0x9d86a70f, 0xeae994e1, 0x41683f80, 0x3732c0a2, 0x239b75f5, 0x75657b8d, 0xfde1799f, 0xa662fdc9, 0x6d9e87d4, 0x51336200, 0x21218975, 0xd3178617, - 0xd7786f31, 0x00000f, 00000000 + 0xd7786f31, 0x00000f }, { 0x4394af0c, 0xc05b306b, 0x52f0210f, 0x63afc045, 0x6d522c87, 0xe72072a0, 0xb2ab8d10, 0x981e2604, 0xb237bf62, 0xa5d6a84d, 0xfdc790a6, 0xd313401f, 0xc09f16ee, 0xd5f6ddbf, 0xb9643670, - 0xfab8680d, 0x0001ec, 00000000 + 0xfab8680d, 0x0001ec } }, { @@ -66942,19 +66940,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1bad1673, 0xc8ddfbc2, 0x674d2a3, 0xf3b82108, 0x7e80cc3e, 0xdd16cd8a, 0x3128dde0, 0xb2c87af9, 0x974df6cc, 0xe33dde9d, 0x84eee40f, 0x33b7e020, 0x669a88b, 0x8e7911d9, 0xcee3fb61, - 0x5e2eba6e, 0x000115, 00000000 + 0x5e2eba6e, 0x000115 }, { 0x9d577ae1, 0x4dd2e39d, 0xfff45ed5, 0x261d9988, 0xf6d67e97, 0xe07c1b06, 0x7a0762cc, 0x85543b2e, 0x3c90b396, 0x35633606, 0xd82bd489, 0x3cfe3e4b, 0x97c5c10a, 0x2151cefe, 0xed752fe, - 0x92a85e02, 0x000108, 00000000 + 0x92a85e02, 0x000108 }, { 0xc6d36a83, 0xe8b712df, 0x177627a0, 0x6f79e2f0, 0x3098fcb3, 0xd664f5a0, 0x1b6bb58c, 0x3a8d0e23, 0xce905430, 0x93a5189, 0x30a1a438, 0x83c7d02c, 0x9c1e94d5, 0xf2044743, 0xe5586850, - 0x38916faa, 0x000099, 00000000 + 0x38916faa, 0x000099 } }, { @@ -66962,19 +66960,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfcb1bff6, 0x17a96a32, 0xf8f38944, 0x7900899c, 0x74c1516b, 0x6e6bcce0, 0xa835b987, 0x5f16887a, 0xe562ca2a, 0xcad1ca69, 0xdf0f2eab, 0xafd03821, 0x57b94f65, 0x74f68c7f, 0x5fd93338, - 0x61d469d2, 0x00010c, 00000000 + 0x61d469d2, 0x00010c }, { 0xb915de75, 0xfd11c272, 0x53647918, 0x782fb9b, 0x536e9c28, 0xf4323242, 0x2f91498f, 0xb90b7813, 0x4ec3c535, 0xb6c883b9, 0x8b683115, 0xf825a337, 0x561fdcd, 0xaf66430f, 0xce39e350, - 0x7342f875, 0x0000a7, 00000000 + 0x7342f875, 0x0000a7 }, { 0x6c6510dd, 0xd07afed8, 0xf0a55e78, 0x23df141a, 0xfba54031, 0x68a60a94, 0x97cb5451, 0x3b2bb649, 0x440770a, 0x8f60744b, 0xdfbf3f66, 0x8911bfff, 0xf127c16b, 0x14682caa, 0x31de01a5, - 0xf74a261f, 0x0001cf, 00000000 + 0xf74a261f, 0x0001cf } }, { @@ -66982,19 +66980,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x63b2c3d3, 0x663aaee6, 0x90290aa4, 0x31b20414, 0xd2d10752, 0x37af86f7, 0xa7b01743, 0xd6dc067a, 0xef4bb16, 0x874e51d2, 0xb4475d8a, 0x20f1b559, 0xc1285c00, 0x146d7757, 0x3fc9b7f5, - 0x284c7024, 0x00003b, 00000000 + 0x284c7024, 0x00003b }, { 0xf0607e43, 0x8993bf6e, 0x14556c5d, 0x95c84a3b, 0x45dacefa, 0xc23f4f4c, 0x8440462, 0x9f48df1c, 0xcbb499b3, 0xed03d022, 0xe77b4a01, 0xca34d30c, 0x537ac90c, 0x6a79f6c3, 0xaaad1b2f, - 0x1af9acb4, 0x000030, 00000000 + 0x1af9acb4, 0x000030 }, { 0x999c1bcf, 0xb79a44a4, 0xe30bb9e7, 0xdad65f6, 0xb1b9804a, 0xc3ef234b, 0x2d78876b, 0xd6de2661, 0xf1624705, 0x23ffea4b, 0x97d9ae05, 0xc2900bfc, 0x79e5f602, 0xca4ea715, 0x3c08bb07, - 0x7cf7a90d, 0x00009d, 00000000 + 0x7cf7a90d, 0x00009d } }, { @@ -67002,19 +67000,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe95aa8c2, 0xc5492ea8, 0xfff4fa69, 0x789d0d19, 0xd1d49b68, 0x4359d20c, 0x411b7d21, 0xc8ba2b23, 0x3017a40a, 0xccaf672, 0xfe34c8c9, 0xd5ca2efe, 0xadd962bb, 0xce7e9207, 0xa13959ef, - 0x55c4c1ba, 0x0000ab, 00000000 + 0x55c4c1ba, 0x0000ab }, { 0x3c73006c, 0xbfd1c79c, 0xb497384d, 0x1685ff3b, 0xe1c823d7, 0x9c80f5b3, 0xe59013af, 0x772bc7b3, 0x668b7ae9, 0xdea78b42, 0x9c625c6c, 0x256a54a, 0xae99e8a3, 0xdae038ea, 0x37f7518d, - 0xc21cc27b, 0x0000fe, 00000000 + 0xc21cc27b, 0x0000fe }, { 0x89e8f35a, 0xd268ac04, 0xb82ba814, 0x95368bd2, 0x98ad0bde, 0xc92a2f4a, 0xff09c5b3, 0x7bde4cc7, 0xf38cf943, 0xba38a38, 0xb8759504, 0xa50f1e43, 0x290ca60d, 0xfa5782e1, 0xd843b139, - 0x31b60240, 0x0000b2, 00000000 + 0x31b60240, 0x0000b2 } }, { @@ -67022,19 +67020,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x29263e40, 0xbf840797, 0x595582e3, 0xa101fde4, 0xf938962f, 0x31914db, 0xa0a69fbe, 0x167cf06b, 0xd3cb5a15, 0xc3dbb15d, 0xe58af8ef, 0x693195e4, 0xea637c62, 0x24eb26f2, 0x4a1b2879, - 0x9f303585, 0x000086, 00000000 + 0x9f303585, 0x000086 }, { 0x255e024a, 0x485e2e7, 0x54f0c060, 0xaeb4979a, 0xc694d630, 0x56562c8e, 0x9d180dbe, 0xf138bb35, 0xd7d0b27, 0x93210157, 0x704a2798, 0xb91dffc5, 0x3f292c72, 0xeb5e0700, 0x278dec93, - 0x2aaca7b7, 0x000136, 00000000 + 0x2aaca7b7, 0x000136 }, { 0x337d331d, 0x5f3ec054, 0x6b091485, 0xdad1fcaf, 0x352f32c3, 0x494402a7, 0x6946de8d, 0x3fee5c5, 0x85724b50, 0x8dd89e65, 0xa66340b2, 0xea53e6b4, 0x94f8f09d, 0x59323cc, 0x2daf69ba, - 0x19e28515, 0x000115, 00000000 + 0x19e28515, 0x000115 } }, { @@ -67042,19 +67040,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf6ebad0f, 0x8ed44b07, 0xc8b9e51a, 0x26df842, 0x6fefb16f, 0x5772c7dd, 0x152b7aa3, 0x95b338bb, 0x10004262, 0x16853019, 0xd3ac716f, 0x4364a6d9, 0xbbcbfa00, 0x82a888cc, 0x58f6197, - 0xff51b3ac, 0x0001d3, 00000000 + 0xff51b3ac, 0x0001d3 }, { 0x8f88aff0, 0x98489629, 0x5daf593a, 0xc2dbbf4, 0xfcf9b7d8, 0xf6eb1ad1, 0x582906b9, 0x2fdad226, 0xb0580540, 0xc203b8bf, 0x708c3032, 0xdd01398d, 0x5a5608aa, 0x96d1747b, 0x7db6fa62, - 0xbd153f43, 0x000032, 00000000 + 0xbd153f43, 0x000032 }, { 0xdb5a9de8, 0x45039422, 0x7130ff7b, 0xc2f396d, 0xe59a547, 0xd9aa012e, 0x47676464, 0x32f2e2a1, 0xc65bc750, 0x4c3fecaa, 0x9d070fda, 0xf8f13595, 0x1e8fe3fa, 0x611b11e4, 0x82830dd, - 0x4d10e556, 0x000162, 00000000 + 0x4d10e556, 0x000162 } }, { @@ -67062,19 +67060,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8622687f, 0x3825b3c4, 0x40fbddbb, 0x59645540, 0x32406a36, 0xdc0bf09f, 0xb2a34c01, 0x8d60263d, 0x34a76a79, 0x9e97ae87, 0x6d027d1a, 0x578955, 0xdbd52e4c, 0x43fdb644, 0xee0a31ea, - 0xf7a02982, 0x00009a, 00000000 + 0xf7a02982, 0x00009a }, { 0x32bbd38b, 0x689ea60e, 0x3a12b6e7, 0x50506488, 0x676cc016, 0x2ab065ee, 0x3a2fd911, 0x2e3e08c0, 0x197e55fa, 0xa8d5af1d, 0x8d999fe0, 0x6c5cc3db, 0x718c0950, 0x3eddfe74, 0x7e7215f8, - 0xc6e9e43b, 0x0001c8, 00000000 + 0xc6e9e43b, 0x0001c8 }, { 0x10b011f7, 0xf075fd26, 0x4535d317, 0x5ad0afcb, 0x9f70759, 0xf1b09e64, 0xff3c8963, 0xc4ea76da, 0xc4f891db, 0xc97aa6df, 0xbeec56e8, 0x67e5eb45, 0xbd778a29, 0x90e81848, 0xe4d87017, - 0x682bcf78, 0x00009f, 00000000 + 0x682bcf78, 0x00009f } }, { @@ -67082,19 +67080,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7ab1d4a3, 0x6edaaa8a, 0xc92ee51b, 0x580e6bd6, 0x70d0463c, 0x56d5ef07, 0xf4dad4d0, 0x28a9650b, 0xdfa1f9f7, 0xbf6227b5, 0xb2689555, 0x25c89899, 0x8c2a816f, 0x8e5824b7, 0xcf60c312, - 0xfb485dad, 0x00009c, 00000000 + 0xfb485dad, 0x00009c }, { 0x6cb0ba89, 0xd6288066, 0x4a5932e9, 0xd77bbe54, 0x7af301cd, 0x305b8c39, 0x160132a1, 0xf7f377ac, 0x97b2a394, 0xe06a71fc, 0xfbb2062d, 0x2e8bc88a, 0xea895dd4, 0x808ec6cd, 0x91ea476f, - 0xd3bf46c5, 0x000189, 00000000 + 0xd3bf46c5, 0x000189 }, { 0xd14250d0, 0x768929d6, 0xb23a5f1d, 0xc8fd4b0f, 0x51046cc, 0xec69e010, 0x1edcbf4f, 0x61e76ff, 0x49708982, 0x63eadc5f, 0x808b5ff0, 0x6df4fffe, 0x2448b30d, 0x7008707f, 0x682872d4, - 0x41efafa9, 0x00010e, 00000000 + 0x41efafa9, 0x00010e } }, { @@ -67102,19 +67100,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3bf61ce7, 0x28284bb1, 0xc7859726, 0xc22249e2, 0xfb571f25, 0x699ff236, 0x97bec308, 0x67d5e765, 0x88c98d33, 0x97a0b763, 0x25e3c99f, 0x5c10118, 0xe86db5cc, 0xe2b4c1ac, 0x4bb3b3f2, - 0xbfe1caf7, 0x00017b, 00000000 + 0xbfe1caf7, 0x00017b }, { 0x3fb7510a, 0xaa06ac1a, 0xe40266a7, 0x663f3f94, 0xf2285ee4, 0x5f5f332c, 0xe6ad858, 0xf52460de, 0x4cefe15f, 0xa06849f7, 0x220eb787, 0x9f627a8c, 0xfa5e776, 0xec5892ce, 0x33bc869a, - 0xc0dc02f, 0x000061, 00000000 + 0xc0dc02f, 0x000061 }, { 0x1445d073, 0x11375d02, 0x14526d95, 0x47675dac, 0x41998b0b, 0x77f9e37, 0x3c4da289, 0xcd63f0b4, 0xdc52ef9, 0xaf9df5a8, 0x48087406, 0xe0707b54, 0xea222bea, 0x4dab321b, 0x9369d2b0, - 0x56ccf4f7, 0x0000ef, 00000000 + 0x56ccf4f7, 0x0000ef } }, { @@ -67122,19 +67120,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x108d173d, 0xf73ebe25, 0x27221f9, 0xa422536f, 0x9f429888, 0x9819a89d, 0xb6585159, 0xbfb0a821, 0x73197bac, 0xef558ea1, 0x4ec18101, 0xccc4fe60, 0x52a86938, 0x80d53e04, 0xc4719ac4, - 0x168c817a, 0x0001c3, 00000000 + 0x168c817a, 0x0001c3 }, { 0xfaf65ba, 0x62af0ea3, 0x606da84e, 0xab8de99d, 0x968fd78a, 0x86f09966, 0xa382ab28, 0x108d554d, 0x67e62110, 0x98074850, 0x783e920, 0xa509fae0, 0x288a08cd, 0xd862110c, 0x1df7203e, - 0xcd861023, 0x000076, 00000000 + 0xcd861023, 0x000076 }, { 0x584fc1ad, 0xe3c54086, 0x5bb6d97b, 0x9bd467cf, 0x7d59dc96, 0x14d8f38f, 0x59718d41, 0xc093d276, 0x5e6ba746, 0x8721ef6d, 0xfa52792d, 0x96aed683, 0x989c92b7, 0xa4ff632c, 0x6439c9d8, - 0x5bf2bdbe, 0x00002a, 00000000 + 0x5bf2bdbe, 0x00002a } }, { @@ -67142,19 +67140,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3e76c713, 0xb54d1fef, 0x87a34471, 0xeebfbaa2, 0x20f91057, 0x2f917106, 0xe8372ab, 0x129ccde8, 0xf60655e6, 0xa1078850, 0x128cb9e0, 0x946526fc, 0x32ec1e79, 0xff3bb66e, 0x514c0b36, - 0x96471b53, 0x0001c0, 00000000 + 0x96471b53, 0x0001c0 }, { 0xb17280ce, 0xc12178d1, 0x5c9ae37c, 0x8b88f338, 0x10bd92ec, 0x5377de81, 0x71ccc361, 0x56a09740, 0x2c5c8009, 0xa510c1de, 0xf0da195a, 0x1bc7970c, 0x27df0612, 0x62448f14, 0xe4491c4b, - 0xde3f56a8, 0x000023, 00000000 + 0xde3f56a8, 0x000023 }, { 0x56ce3b5e, 0xde9131bf, 0xb6797916, 0x655090de, 0xa4b0be8c, 0xaf82c46, 0xcbc2051a, 0xbebf0c0e, 0x615f2ea5, 0x81b76f7f, 0x8d3e80e4, 0x2f8e62ac, 0x786e486b, 0xbfc32173, 0xf393e0a, - 0xa153b6eb, 0x0001f9, 00000000 + 0xa153b6eb, 0x0001f9 } }, { @@ -67162,19 +67160,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x95bd973c, 0x3b37f2a, 0x423151d1, 0xc84ac09d, 0x68ffc30b, 0x906bd5a9, 0xadff1e2, 0x3c1be80d, 0x9e414e56, 0xaf09160d, 0x9697743f, 0xae68fbcb, 0x3ad249de, 0x75e3f39a, 0xcf537b73, - 0xcd4d7776, 0x000006, 00000000 + 0xcd4d7776, 0x000006 }, { 0x3f78bec2, 0xfa0ace53, 0x1d5dd1b, 0xb355423, 0x24f65cd2, 0x8f265b6f, 0x543729fb, 0xc613b280, 0x5c727269, 0x7236db8, 0xe08bd0eb, 0xfba26575, 0x9889da16, 0xf046b4e9, 0xa5279421, - 0x923aea26, 0x00017c, 00000000 + 0x923aea26, 0x00017c }, { 0x3b246a10, 0x291cba4f, 0xe385a68b, 0xc2ea2902, 0xad95fa99, 0x4b94a7df, 0x4a1485bb, 0x975446e1, 0x596718c, 0xf9f316ed, 0xe278b0ae, 0x8316a541, 0x988e40f7, 0x65072e4f, 0xbc12d53, - 0xff3d51de, 0x0000e1, 00000000 + 0xff3d51de, 0x0000e1 } }, { @@ -67182,19 +67180,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a0f9b25, 0xfb7e831e, 0xf8b4b06c, 0xb0bb78d9, 0xa9ac15b9, 0x290e42e6, 0x305434b0, 0x5c253090, 0x5017f5aa, 0xe75401ca, 0x99038a21, 0xf984dd39, 0x5c46a61d, 0x84b9e91, 0x592cbc06, - 0x8e537bf9, 0x00002e, 00000000 + 0x8e537bf9, 0x00002e }, { 0x80e368bf, 0x4c1459bb, 0x95cdda87, 0x306629a8, 0xb2647172, 0xf616a7a8, 0x568fc18c, 0x30f3ffa1, 0x328098af, 0x4ba53eb8, 0x6a110e9, 0x4cd48bce, 0x1109b294, 0xc194b4a7, 0xd4b2971c, - 0x6f5482ec, 0x000105, 00000000 + 0x6f5482ec, 0x000105 }, { 0xd2c61d8b, 0xe946e757, 0xb72dcc1c, 0x99935ee4, 0xf979297c, 0x1e6e9864, 0xde9fb17, 0x800455eb, 0xd889db0f, 0xb85ebc5a, 0xa1dfa93b, 0x68902704, 0x7b3dc0f4, 0xc1adf354, 0x7c7abbb4, - 0x5be7e499, 0x0001d4, 00000000 + 0x5be7e499, 0x0001d4 } }, { @@ -67202,19 +67200,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbc6f45a2, 0x4fba9f3b, 0xc8c87465, 0x14c4c3f7, 0x72a35689, 0x170e2ae1, 0x89db47fe, 0x3a90f970, 0x3cda8bae, 0x9a0e221c, 0xd1ea6bd1, 0x4511db09, 0x9ca28c40, 0x41c39769, 0xe9c8bfd4, - 0xaa18d305, 0x0001d0, 00000000 + 0xaa18d305, 0x0001d0 }, { 0x66ae13f4, 0x32cced91, 0xc213287, 0x593836aa, 0x15657e8, 0x2a31f4cc, 0xfb3f7cf0, 0x822440af, 0x772539f5, 0x5b176078, 0xa5e9b724, 0xcd0d511c, 0xcf3b1c5d, 0x45ee27ed, 0x43e2e5dd, - 0xb6677c9e, 0x000197, 00000000 + 0xb6677c9e, 0x000197 }, { 0xfba6dca8, 0x4f93ea60, 0xb9a4b68a, 0xea84cc93, 0xe027a46e, 0xe2f8e49a, 0xb426967e, 0xd1ad81f9, 0xedae270, 0x6d462fc3, 0x8e7f391d, 0x936bfedd, 0x2524816d, 0xb163c656, 0x77b541e4, - 0xa148a715, 0x0000dc, 00000000 + 0xa148a715, 0x0000dc } } }, @@ -67224,19 +67222,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4c5e341f, 0x19e35595, 0x9e6d8a60, 0xc0dbb6d2, 0x4bfb09a2, 0x41f42428, 0x80dab4d6, 0x21fab3eb, 0x1d05521c, 0xbdcdb2c3, 0xf55767fa, 0xbd3d0d1b, 0x8fee0ab8, 0xa51864b8, 0x9208f579, - 0x78ab3d72, 0x000072, 00000000 + 0x78ab3d72, 0x000072 }, { 0xf8c3c7b6, 0xdbc6235, 0xf8067e3c, 0xc1a0557c, 0xf2f9113a, 0xc18d994a, 0xcb0632d1, 0xab036bfa, 0x22a2d392, 0x3440ef8f, 0xa1b28e10, 0x272b9a6, 0xc44b2c0d, 0xf2d7a45f, 0x4b2c1987, - 0x7a52f63e, 0x0000d7, 00000000 + 0x7a52f63e, 0x0000d7 }, { 0x21e9ea76, 0xbbe8dacf, 0x14ac5b44, 0x43b0e70b, 0x1a8e170d, 0x81bf00ec, 0xc6d22034, 0xd473d108, 0xc22a7bfe, 0x2a7b4b20, 0x5ddeba4e, 0x91324cc4, 0x60deb513, 0x1a4041ce, 0x174e66d0, - 0x802722fb, 0x0000f1, 00000000 + 0x802722fb, 0x0000f1 } }, { @@ -67244,19 +67242,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcfe1fd47, 0xd0f76925, 0x915db92, 0x38d09601, 0xb824c025, 0xf313537c, 0x3f244c5, 0x64cc4998, 0xe39306ed, 0x9983500, 0x299dab39, 0x377469df, 0x84a2f69, 0xe0eea2a9, 0x9e772775, - 0x5a3ea927, 0x00013c, 00000000 + 0x5a3ea927, 0x00013c }, { 0x29c32bf0, 0xa6d468db, 0x8cd0e88, 0x438f42a2, 0x7d27310c, 0x15e22995, 0x6ba0092d, 0x268feeb1, 0x4fe67873, 0x19488452, 0xbca13c91, 0x7e712073, 0x1cf31aad, 0x1bd3b274, 0x10c51e43, - 0x631fb68f, 0x000015, 00000000 + 0x631fb68f, 0x000015 }, { 0xb3d28b04, 0x51725188, 0xadb09a89, 0xb20e7357, 0x2923c98b, 0x5ad0a701, 0x5f19266d, 0xe0d98992, 0xfea63100, 0x49381ce3, 0x2da99f95, 0x3b2970ce, 0xd20998c3, 0x1b554668, 0xfe3e7e1e, - 0x44409722, 0x000044, 00000000 + 0x44409722, 0x000044 } }, { @@ -67264,19 +67262,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9c67c00a, 0x3a0e6a22, 0x69bde760, 0xd75f7ca5, 0xbae03e13, 0xcd8244df, 0x28fb6849, 0xb4ba9715, 0x6cc09fcb, 0x37292799, 0xf5f6a99a, 0xe3800c61, 0x20e133d8, 0x98c88b83, 0x47bd3961, - 0xf31edd87, 0x00002b, 00000000 + 0xf31edd87, 0x00002b }, { 0xc5f56a78, 0x7c07b605, 0xbfce17d9, 0xe0f63993, 0x6f0fff24, 0x1707b600, 0xcb1f0c24, 0xfef455c9, 0x696df367, 0x4720cd42, 0x403a9658, 0x1f00a219, 0x2378a9b2, 0x1cc5ef34, 0x8701e89e, - 0x4f67f721, 0x0000ca, 00000000 + 0x4f67f721, 0x0000ca }, { 0xca3b2411, 0x60301be8, 0xde824e63, 0x45f6a2ce, 0xfa6d5fc7, 0x23138630, 0xa55a7b2, 0x8dfee3ad, 0x464dd7f0, 0x2fc7d0a0, 0xb69959d3, 0xa5b7a262, 0xc13dbef1, 0x62b63af, 0x698851cd, - 0x916868c2, 0x000108, 00000000 + 0x916868c2, 0x000108 } }, { @@ -67284,19 +67282,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc7a35b6f, 0x2a8a296d, 0xf9e2169b, 0x4ec064d6, 0xf21df14c, 0xd60c4352, 0xeaeec9be, 0x54f5f9fc, 0x41bc7a89, 0x8e209022, 0x6df3d67a, 0xd89763e7, 0xdded0337, 0xab1fc269, 0x14e37e50, - 0x5c893111, 0x000093, 00000000 + 0x5c893111, 0x000093 }, { 0xdc4c9ff3, 0xd2b5f826, 0x1e7b95e9, 0x5c2bc9bb, 0x5f1d589d, 0xb3dc8513, 0x163e4708, 0xb09dea0c, 0x5b3fdcfe, 0xd9f53cd5, 0xbd050375, 0xb65469af, 0xc7aef191, 0x925988ea, 0x77016b4d, - 0x20a30565, 0x0001e8, 00000000 + 0x20a30565, 0x0001e8 }, { 0x5e6b2aed, 0x444922ac, 0x5e1a350b, 0x28f29570, 0x14bc4834, 0x350d84e8, 0xae994aee, 0x367ebe75, 0x802ba061, 0x843f0313, 0x1c91ac34, 0x9cac25e2, 0x3b2bc06f, 0x7b1c7f66, 0xf10a0db5, - 0x67b3ffd4, 0x000026, 00000000 + 0x67b3ffd4, 0x000026 } }, { @@ -67304,19 +67302,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe721c225, 0xe1b129bf, 0x1a671e0a, 0xc1e46b5a, 0x7289d0dd, 0xc04d3783, 0x6735d66c, 0xf0841a51, 0xa949769, 0xdf799392, 0x7e577e4a, 0x88652704, 0xd3c7508b, 0x429ba7de, 0x8617b85d, - 0x6714edee, 0x0001c7, 00000000 + 0x6714edee, 0x0001c7 }, { 0x3ad7f06c, 0x7ea12ef6, 0x484cbd45, 0xf70deca4, 0xbd77d8df, 0x3ef0edfe, 0xd154a886, 0x98474eff, 0x6ee4f63f, 0x519b716e, 0xce9a6655, 0xc0c192dd, 0xf3e20b5, 0xff33b90c, 0xe561e385, - 0x155b0dd6, 0x0001bd, 00000000 + 0x155b0dd6, 0x0001bd }, { 0x4c5682fb, 0xb0e42d68, 0xa40e4f60, 0x950ae5d, 0x966535ef, 0xc046b531, 0xeff577c9, 0x519b894e, 0xe596ef78, 0xa11f9aa6, 0x99f1236e, 0xa5f084a, 0x26a0e16e, 0x7d1ea330, 0x4d736a42, - 0xdd9fc577, 0x0001f9, 00000000 + 0xdd9fc577, 0x0001f9 } }, { @@ -67324,19 +67322,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf6b2f8b, 0xd18edc91, 0x18658f5a, 0xf7a53f65, 0xfd806a8, 0xfdfd40f7, 0x53ced3ca, 0x81025a5f, 0xa0d9d5c, 0x7b5d2736, 0xc54010de, 0xa6fd5924, 0xb9488396, 0xb7181883, 0x4ba13ea, - 0x2679f744, 0x0001db, 00000000 + 0x2679f744, 0x0001db }, { 0x6741c56e, 0x2c627098, 0xf85fbf3e, 0x30feb493, 0x210e7b3a, 0x3767a898, 0xb5903777, 0xb9586818, 0xd1846390, 0xe22b5037, 0xb3311333, 0xa7e45d9e, 0x92a8e862, 0xd6fb4bdd, 0x2acbbc06, - 0xbb013ebc, 0x000187, 00000000 + 0xbb013ebc, 0x000187 }, { 0x60106df2, 0x0ea130, 0x5984313e, 0x5fb18187, 0xb4dee636, 0xbb94f8c9, 0xf1435ee5, 0x7ca442b4, 0x38d740f1, 0x2fa96630, 0xf87d3ba6, 0xe16f14c8, 0xf7426ca6, 0xfe04147b, 0xab7e7a01, - 0x3286e69d, 0x0001d5, 00000000 + 0x3286e69d, 0x0001d5 } }, { @@ -67344,19 +67342,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36243bf3, 0xb0e7ee82, 0xd13ce186, 0x1d0472cf, 0x1d2de2d4, 0xbc87ce1a, 0xb81cf75c, 0xfe33236e, 0xe99f8a43, 0x292a9bd2, 0xddcedc1e, 0x36e33157, 0x54e10c5a, 0x7f0f377e, 0xc7386422, - 0xef87017b, 0x0001cb, 00000000 + 0xef87017b, 0x0001cb }, { 0x6c7c2198, 0x3fc1f544, 0x89fe00d6, 0x343b96ce, 0xadcedbb, 0xe4ecbb84, 0x74b6ae60, 0x574c854c, 0xa5148524, 0x46c87bd7, 0xe5b5aa81, 0x764e0cec, 0x7136a119, 0xbffb07d8, 0x1047437c, - 0x957c7626, 0x000113, 00000000 + 0x957c7626, 0x000113 }, { 0xe779339c, 0x947e1c8b, 0x87bd2661, 0xc67b0db5, 0xab4da635, 0x3a5301ec, 0x37e22af7, 0x5d95bfb, 0xd59f2f40, 0x7a9553c2, 0x7bac3c5b, 0xb738eb31, 0xc118ff19, 0x701d446f, 0x8de391f8, - 0x592007e8, 0x000178, 00000000 + 0x592007e8, 0x000178 } }, { @@ -67364,19 +67362,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xac054216, 0x9a4e436c, 0x4fec54d8, 0xbbbf35b9, 0x1ffa1e3a, 0x9963d493, 0x9820dbe, 0x4c6ed176, 0x52cd31c6, 0x4e03e7a, 0xe9d6193b, 0x2f7cdb67, 0x18ae069a, 0x28be0eb3, 0x1d4d3d11, - 0xf2bf74d3, 0x0000d2, 00000000 + 0xf2bf74d3, 0x0000d2 }, { 0xcdff5108, 0x85945e3d, 0xdb7bd0c1, 0x68a5324, 0x3ab8f477, 0xe3d87cf5, 0x8487285e, 0x35579301, 0xfb79447d, 0x5887eca5, 0x2a39d2b7, 0x1498a44d, 0xb1a94c2e, 0x5eca55d6, 0xef915f83, - 0x1843c554, 0x0000a0, 00000000 + 0x1843c554, 0x0000a0 }, { 0x2db05b94, 0x3efa3e2a, 0x49fdba56, 0x7faa3ea2, 0x8e84ddf1, 0xe1c33659, 0xa8c2ed7a, 0x9e980d3b, 0x46cd8278, 0x997477e1, 0xb4762da0, 0x3a7c0046, 0xc238ff53, 0xa5c1dc9f, 0xcfd8eecf, - 0xcd01258f, 0x0001c7, 00000000 + 0xcd01258f, 0x0001c7 } }, { @@ -67384,19 +67382,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8b0c9468, 0x66f0dff5, 0xfcfaa0a0, 0xd5e455a7, 0x3d28ef21, 0x8424ccf5, 0x22ae7ae4, 0x4d75bbc7, 0x71157198, 0xb4b52add, 0xd5ecff6b, 0xc90d733a, 0x3a5fb002, 0xbf5e5941, 0xd0fdc92b, - 0x69e3be1f, 0x00011b, 00000000 + 0x69e3be1f, 0x00011b }, { 0x34ee10ea, 0x7bbe8242, 0xd2e90884, 0x3bdd5a1f, 0xa411a297, 0x8b31fe4d, 0xbe2617dd, 0x39aa0987, 0x66c17079, 0xa17b5c5d, 0xaf2cae3b, 0x5a0d5945, 0xbd36965f, 0x26ed6242, 0x53d5cf1f, - 0x74dc1b1e, 0x000195, 00000000 + 0x74dc1b1e, 0x000195 }, { 0x75391b51, 0x786f52e0, 0xfe1f0227, 0xce926ae9, 0x2b4e6f7f, 0xafc64dbb, 0x37d7ab43, 0x6e580dfa, 0x34b8a3a6, 0x38524126, 0x1df375e1, 0x5af8735f, 0xe6dc917d, 0x56f36273, 0x2c7e97e4, - 0x46db4d4d, 0x0000d7, 00000000 + 0x46db4d4d, 0x0000d7 } }, { @@ -67404,19 +67402,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf54063b0, 0x54b135b9, 0x13617745, 0xb2ddda83, 0xc9d64e4f, 0xfa22a30d, 0x60d4f2fa, 0x6cc92d69, 0xef065458, 0x9cadf2a7, 0x803eedc2, 0x885b6885, 0xdd22a883, 0x596cf1b4, 0x5ca162a0, - 0x8abdb916, 0x0001bc, 00000000 + 0x8abdb916, 0x0001bc }, { 0xebbc7d21, 0x1a804fd0, 0x554faadc, 0xc9113198, 0xbb83b335, 0x7ab19b10, 0xdae0e47a, 0xc4115914, 0x80d5b34f, 0x13479da4, 0xeb66146f, 0xa0b3d75, 0xfcc45fd8, 0xacd1839d, 0xfcb4ed7c, - 0x63fcbfef, 0x000120, 00000000 + 0x63fcbfef, 0x000120 }, { 0x38b1ba24, 0x902fc7d, 0x7c833f35, 0x73021e05, 0x4a17e45e, 0x415599, 0xc50639e3, 0x989cdd09, 0xffdee8bb, 0x8d1fb8fe, 0x774bad58, 0x17ce13bc, 0x79175c51, 0x6e11f827, 0xbdfd0878, - 0xb560e6da, 0x00010f, 00000000 + 0xb560e6da, 0x00010f } }, { @@ -67424,19 +67422,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x34129c32, 0x3adf17ab, 0xdf0524ae, 0x7473eac3, 0x3c3f429f, 0x157ed4b8, 0x7f69c911, 0x67c2dede, 0x39c1e45d, 0x4f7af29e, 0x93a90ba2, 0xcbe6f9c8, 0x4cfcc57b, 0xe37ccd05, 0xaf278b9f, - 0x21f478e6, 0x0001df, 00000000 + 0x21f478e6, 0x0001df }, { 0xae98c361, 0x62bda312, 0x50e84f79, 0x26f0333b, 0x4c480b33, 0xa38c8237, 0x2d51058d, 0x22742b5e, 0xffcf78fe, 0x147cf2a1, 0xd0d55f7d, 0x1b393fa5, 0x6cd9f625, 0x1960284c, 0x9c5debd4, - 0x6fd08093, 0x00009e, 00000000 + 0x6fd08093, 0x00009e }, { 0xce179e50, 0x8902415e, 0xfa414fa, 0x6a403561, 0x42a97775, 0x51248e67, 0xf6d07455, 0xd99d9642, 0x8365f040, 0xeab86487, 0x532f5cc4, 0xe830cffc, 0x16843b03, 0x705d382d, 0x7d562c97, - 0x80a726ea, 0x000107, 00000000 + 0x80a726ea, 0x000107 } }, { @@ -67444,19 +67442,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2275dde6, 0x81258816, 0xe3abec05, 0x9e22a600, 0x3597f08b, 0x4efdcb26, 0x9387e067, 0x392423a5, 0xf971ea7, 0x3aafef9b, 0x3298caed, 0x7290a703, 0x480c62bc, 0x2e9a24cf, 0x68f2411b, - 0x6605c65f, 0x000189, 00000000 + 0x6605c65f, 0x000189 }, { 0x6de1a53c, 0x86e53e51, 0xfda3daad, 0xc2c8e5f, 0x5b80818b, 0xec5de146, 0xa1663c28, 0xaf2dde21, 0xb96ac111, 0xedd57159, 0xc331d9fb, 0x803fac37, 0x9a1d5914, 0xd012b899, 0xde39f842, - 0x607a0e3c, 0x0000c2, 00000000 + 0x607a0e3c, 0x0000c2 }, { 0xf5cd39ba, 0x790306c8, 0x3d3fe967, 0x709d6639, 0xe15f56e5, 0x5508025f, 0xa89ec760, 0xe417bbbb, 0x97fffefd, 0xbc9ec470, 0xa0bb68e2, 0x8aace0e8, 0xceca7510, 0xcabbcced, 0xae7440fc, - 0x917420c0, 0x000147, 00000000 + 0x917420c0, 0x000147 } }, { @@ -67464,19 +67462,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d2ec05c, 0xa49d9bcf, 0xf238be29, 0x8499acb4, 0xc0e2a22, 0xceecc431, 0x814a15ae, 0x4039ed35, 0x49a7f515, 0xb6b4959c, 0x602bf6ff, 0xce85c357, 0x51e19962, 0xc01c3d57, 0x565b7044, - 0x9ee9bf79, 0x0000c8, 00000000 + 0x9ee9bf79, 0x0000c8 }, { 0x6680380, 0x63dc305d, 0x50a46fa9, 0xda6c6092, 0x1e48e3e7, 0x7145aae6, 0xddfc88b, 0x3da4b05c, 0x76223b62, 0x6c32c74a, 0x6f1928bb, 0x593f5d13, 0x101a2148, 0x8645a33a, 0x5556246a, - 0x873c767e, 0x0001fd, 00000000 + 0x873c767e, 0x0001fd }, { 0x612cc1e7, 0xe1420d79, 0x209f5c87, 0x29052a6d, 0xccefd953, 0xe44b1899, 0xf54bad9, 0x86ce511e, 0x22b82258, 0x5469793a, 0xb457e479, 0x8aaf2384, 0x7e3c7d77, 0x14257791, 0x47a35829, - 0x5377f869, 0x00000b, 00000000 + 0x5377f869, 0x00000b } }, { @@ -67484,19 +67482,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x38d90c5e, 0x3d412d02, 0x83eda405, 0x5369e32d, 0xb1921d0b, 0xfd150485, 0xad3b526f, 0xec5ff56c, 0x9f53d69d, 0x25df4cb1, 0xe01e54e1, 0x48e67a61, 0xe96e9d8b, 0x488f6a58, 0xcea22523, - 0xacafe55c, 0x00011e, 00000000 + 0xacafe55c, 0x00011e }, { 0x35512fed, 0x9783c471, 0x425341e5, 0xc630fac0, 0xb897dd32, 0xc82b5015, 0x8a472795, 0xc7ac2dbf, 0xc2bb55d3, 0x5e217e77, 0xad4ca8e8, 0x1ce8e018, 0xffbbd5e4, 0xe30b559, 0xf2b43d0e, - 0xf617554e, 0x0001d8, 00000000 + 0xf617554e, 0x0001d8 }, { 0xde7cf86c, 0x623a03cb, 0x5cfa944, 0xd95189f4, 0xb693499d, 0x1cea5dc6, 0xb84af135, 0xa87934f1, 0xf3f5949f, 0xacb2b99f, 0x8c5c6d2d, 0xd30944a7, 0xa4b350d7, 0x46020846, 0xd82762c3, - 0x4294330a, 0x0000c1, 00000000 + 0x4294330a, 0x0000c1 } }, { @@ -67504,19 +67502,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfdb7cd05, 0x4b189d2, 0xb3d6e198, 0xf57a93ce, 0x10eba0d9, 0xbf4bdf3b, 0x2e098849, 0xe7de6999, 0xb699033f, 0xa2005805, 0xc18076a0, 0x70852cd2, 0x2f804b1d, 0xff5b772, 0x9d83d7a6, - 0x4056f94f, 0x000021, 00000000 + 0x4056f94f, 0x000021 }, { 0x5088318b, 0x3aead4e7, 0x804a0ca5, 0xcd2e38fc, 0x3038886e, 0x78bac172, 0xd4b655a0, 0x1a94dae1, 0xd44e5beb, 0x3ed23d6b, 0x7da3304a, 0x5941b18b, 0x16bddba4, 0x872543da, 0x93a3da48, - 0xd9197ef6, 0x000176, 00000000 + 0xd9197ef6, 0x000176 }, { 0x818453e2, 0xc59247bd, 0xb85d1287, 0x33cd350d, 0x9a7be941, 0x9d7cf8f6, 0xcebfd259, 0x41b93389, 0x553487a, 0xb0663f54, 0xc58e4ac0, 0x20e8f6b1, 0xcec3b215, 0x317b6bb9, 0x42398c1d, - 0x772f3528, 0x000147, 00000000 + 0x772f3528, 0x000147 } } }, @@ -67526,19 +67524,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x65fbbc31, 0x44210b46, 0xbe28393c, 0x3844d6ee, 0x2e2dee8f, 0xb60220c7, 0x38736e3f, 0x9a95e1c1, 0xdafd4103, 0x603a0edf, 0xf289f520, 0x39329362, 0x8f6355cd, 0xb80b1a38, 0x8b30a374, - 0x1d898d98, 0x0000f3, 00000000 + 0x1d898d98, 0x0000f3 }, { 0xa7b212b4, 0x73642271, 0xf0ca8dc, 0xe172be1f, 0x80b615ab, 0x57930849, 0xc336059e, 0x2423fa2, 0xa9e01c5a, 0x96b4f69d, 0x4306cf31, 0xc279db78, 0xc3b069c6, 0x21a1bfbc, 0xc59ab678, - 0x4b18ceff, 0x000015, 00000000 + 0x4b18ceff, 0x000015 }, { 0x77e98eff, 0xe65661b, 0xa0f7ae24, 0x4b0d1586, 0x7c3b152c, 0xca6b16f7, 0x3dd13b86, 0xf4353731, 0x13e23dca, 0x20dcfea9, 0xd7c81983, 0x40f23ec6, 0xbb2e9fad, 0x451be799, 0xd23cf11c, - 0xe3da8072, 0x00016c, 00000000 + 0xe3da8072, 0x00016c } }, { @@ -67546,19 +67544,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3d95b609, 0xa60d9bd0, 0x2727ae4e, 0x3698b269, 0x2becd4e9, 0x54d77c59, 0xfb53d8a7, 0x3892fc36, 0x155a87f1, 0xa7ebe027, 0x6d5e6d63, 0x8558adc4, 0x45d5eec3, 0x85d58dd4, 0xf1b274fd, - 0x60911747, 0x00016d, 00000000 + 0x60911747, 0x00016d }, { 0x9b6ac1bb, 0x4b5f58a3, 0x688318a5, 0xde7fb5e8, 0xd289c6e7, 0xbeeb059c, 0x5968b56d, 0x21e0a3d2, 0xa54b8702, 0xcb842bbc, 0x8c6e0844, 0xc87fcdda, 0xd0e942c7, 0x24fc0cca, 0xa7cbe12c, - 0x54868d1c, 0x00013f, 00000000 + 0x54868d1c, 0x00013f }, { 0xb0a27349, 0xc593990a, 0x92a55364, 0x61771069, 0x52846edd, 0xb289ff11, 0x87bec43f, 0x1be5fc08, 0x3d507e2b, 0x60f980d5, 0x7660c581, 0x657789e6, 0x3d97c5c5, 0xb9a24f1f, 0x3e25cfb, - 0x775035de, 0x000141, 00000000 + 0x775035de, 0x000141 } }, { @@ -67566,19 +67564,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4f9698fb, 0xdf14b605, 0x68e8e0b8, 0x7a5e0697, 0x8811cebf, 0x6fb89211, 0x715a8cef, 0x4440be89, 0x450a58db, 0xeb4812a1, 0xa51960dd, 0x84cee1ef, 0x4dbfa47c, 0x62f871fa, 0x1618f9c9, - 0xf50dddb3, 0x000087, 00000000 + 0xf50dddb3, 0x000087 }, { 0x21152166, 0x29d7431, 0xd0610304, 0x69da6852, 0xc5f3b965, 0xb524dfb4, 0x3aeba73a, 0xb984e472, 0x68b49aa6, 0x11aa590d, 0xed242c8c, 0x6221f69, 0x9809b2af, 0xb050e503, 0xce21ec08, - 0x7be160ed, 0x000149, 00000000 + 0x7be160ed, 0x000149 }, { 0x454e52d7, 0xfee91f10, 0xe33088be, 0x246a9dc3, 0xc84167d4, 0xd2ce60a1, 0x4feef81c, 0x8bbdff9e, 0x10f1619c, 0xf6e78fe1, 0x80ead0d9, 0xf9e28eef, 0x56bd8e81, 0xcdee2b6, 0x3dfbbab1, - 0x4f202e36, 0x000122, 00000000 + 0x4f202e36, 0x000122 } }, { @@ -67586,19 +67584,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x165ac2c9, 0x166eb434, 0xa75bf436, 0x780bd090, 0x5aa46363, 0x60cdd3ac, 0x66ac5a69, 0xf85b7036, 0xf2ee4bef, 0x235d2bb3, 0x8bee8e99, 0xe320d98, 0xabfaf847, 0x31db74ce, 0x1e0baefb, - 0x6bf6043e, 0x0001bb, 00000000 + 0x6bf6043e, 0x0001bb }, { 0x65f2b040, 0x114908a9, 0x2b2db432, 0xcd506f86, 0x9c8913d0, 0x3fc56e5a, 0x3c5b091f, 0xb416b064, 0x8ce00f9, 0x697e606b, 0x2c5f62b4, 0x5f9a1d5c, 0xd00c4de8, 0x84386478, 0x74cb9c5, - 0xbd576e5d, 0x000093, 00000000 + 0xbd576e5d, 0x000093 }, { 0x20a0b2b3, 0x59ad2632, 0xbda22002, 0xd78fcccf, 0x66546a63, 0x91029a16, 0x3b008431, 0x1ac04abb, 0x61f02871, 0x5c85f725, 0x577eb9b2, 0x7e66fc61, 0x7ef5d58f, 0x55e6681a, 0x50498dba, - 0x8ad17ed, 0x000075, 00000000 + 0x8ad17ed, 0x000075 } }, { @@ -67606,19 +67604,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd682be4c, 0x9b47e9dc, 0x7e894815, 0xe16b96d4, 0x1a1603cc, 0x91c3b817, 0x7b2a12b8, 0x665d2a62, 0x7eec1e60, 0x28ab1e1a, 0xcc996297, 0xa3e4bc03, 0xa1b21ead, 0x22689a6f, 0x9a9222db, - 0x93ca8ce5, 0x0000a5, 00000000 + 0x93ca8ce5, 0x0000a5 }, { 0x90b6ed2a, 0x563b77e0, 0xf022676b, 0x67e30fdb, 0x9454f144, 0x805cbb01, 0xcf6370f2, 0x6e740bd5, 0x928585b4, 0x908c161e, 0x26d68265, 0x1c00aab3, 0xccae1ab1, 0x90b1e647, 0x7736ca10, - 0x99163335, 0x0000ac, 00000000 + 0x99163335, 0x0000ac }, { 0x546af1ea, 0x92d491ee, 0xea3fd630, 0x82b017c, 0x1aaf3607, 0x212f13db, 0xe76e2d42, 0x7e157804, 0xce9f22c6, 0xa3aa9279, 0x639b1131, 0x6b1e81c9, 0xd054b47b, 0xb359fedc, 0x833cd60a, - 0x9f16c9d3, 0x0000a9, 00000000 + 0x9f16c9d3, 0x0000a9 } }, { @@ -67626,19 +67624,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x698c6610, 0x7f70aa54, 0x39bf0e, 0x44c6794, 0xfc653c6d, 0xce353391, 0x727eb075, 0x99316c0, 0xf12f81c3, 0x73d184d1, 0xd3f1d261, 0x58592400, 0x56f50793, 0x41271f1b, 0x9d3485fe, - 0xd5597e44, 0x0001f0, 00000000 + 0xd5597e44, 0x0001f0 }, { 0xba55fc7e, 0xae92af37, 0xf7cf46e, 0xb6638743, 0x265111d1, 0xe83eb24f, 0x2c361578, 0x8d2364b5, 0x89934599, 0x7125bc, 0xd3d0ab24, 0xb4fb020c, 0x71dd407a, 0x573f6784, 0x6a4f8254, - 0x51ae90c8, 0x0001c0, 00000000 + 0x51ae90c8, 0x0001c0 }, { 0xd990ea68, 0x23a716a3, 0x33834bc0, 0xeecd009, 0x395696b2, 0xaca5e2f9, 0xd47ff460, 0xefd1b3de, 0xde84aa76, 0x3b1c7c11, 0x63ff8f8, 0x3eabfbb0, 0xde7c839e, 0x2ccfec31, 0x59ac07e5, - 0xa4017cdf, 0x0001ce, 00000000 + 0xa4017cdf, 0x0001ce } }, { @@ -67646,19 +67644,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x30741dcb, 0xa27dac52, 0xe3421e93, 0x5ad1a3d8, 0xc4b54c86, 0xda607a0c, 0x673ffb32, 0x6ff22eb5, 0x26001d09, 0x7b04a322, 0x18613565, 0xd811d667, 0xcc571f5e, 0xa0e8fb49, 0x832f361f, - 0xbbc91dd9, 0x000023, 00000000 + 0xbbc91dd9, 0x000023 }, { 0x1646b064, 0xa7dc2d5e, 0x9a34f975, 0x444bfe6d, 0x92b198ca, 0x301ab161, 0x1c4541b8, 0xeb21f283, 0x13d67911, 0x4e465174, 0xc38f5ba5, 0x6a9122fd, 0x76ffb356, 0xb8f089d0, 0xe8f173e5, - 0xace443e8, 0x0001e6, 00000000 + 0xace443e8, 0x0001e6 }, { 0x13430286, 0x5729826, 0xbf9410ae, 0x624a6f3f, 0x7cb36f49, 0x4a4e0ff4, 0x3bf6faa5, 0x8fe4f760, 0x644088be, 0x5343edee, 0xd129f62a, 0x1b7e727d, 0x240d0f57, 0x502cf3d0, 0x8e6ddba8, - 0x271937f0, 0x0000ae, 00000000 + 0x271937f0, 0x0000ae } }, { @@ -67666,19 +67664,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9d375c5f, 0x1db9cfd9, 0x4b57930e, 0x60a0ede2, 0xa812b38b, 0xb4de832f, 0x66dc2a62, 0xad539ec2, 0x8fa53f65, 0x9a4101b, 0x1f30f800, 0x2fc451e0, 0xfbe2bcbd, 0xc454d48e, 0xc6a834d, - 0xb1455c3a, 0x000186, 00000000 + 0xb1455c3a, 0x000186 }, { 0x7d15fd1d, 0x627cd995, 0xb214aa54, 0x3d5da5c2, 0x5d5c89c0, 0x1c531b1d, 0xbcc0bb70, 0x6c0c4c3c, 0x49f3e79b, 0xd8df9b09, 0x1f7508c6, 0x7640adb4, 0x32d5395b, 0x55c2d64b, 0x9061bbaa, - 0x62d12ffd, 0x0001a8, 00000000 + 0x62d12ffd, 0x0001a8 }, { 0x5ac690f4, 0x7b59c16f, 0x3e930f9e, 0x11fa3b0b, 0xb91de126, 0xcb345053, 0x524cfba8, 0x84bd59d7, 0x5887d3f8, 0x53e97ed0, 0xdd6d262f, 0xbc78cc88, 0xc61c2763, 0x3adcffd8, 0xf05c8ee9, - 0x71c846bf, 0x0000c8, 00000000 + 0x71c846bf, 0x0000c8 } }, { @@ -67686,19 +67684,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa9397488, 0x60236bd8, 0x4aa89465, 0x22d5b269, 0x677d85e8, 0x8d356a3a, 0x3962edb6, 0x1a1af94d, 0x82321bb9, 0x3d7cd3e1, 0xfbdeaa8, 0x2db6b75f, 0x2725c44f, 0x50105f3b, 0xa349866d, - 0xa144f680, 0x00007c, 00000000 + 0xa144f680, 0x00007c }, { 0x8dfd3c50, 0x89a24bb4, 0x6f5c0ac, 0xc5e68442, 0x9939809, 0x45e3f9af, 0x4ed2c88d, 0xd3ae206b, 0x444f64bf, 0x665b2a91, 0x4e0fc843, 0x48211f2e, 0xbb39c80f, 0x36916e36, 0xe483c2fe, - 0x7ba7ff77, 0x0000ea, 00000000 + 0x7ba7ff77, 0x0000ea }, { 0x763a548b, 0x3a4ffb05, 0x567ceb10, 0x2e3c06d4, 0xfc50a7f4, 0x3f6e8469, 0xfe72a17d, 0x3784d569, 0xdb5601f5, 0x332a841, 0xaa8fff53, 0x925c085a, 0xb60df9db, 0x878f72e0, 0x9be077de, - 0x2c067d88, 0x000017, 00000000 + 0x2c067d88, 0x000017 } }, { @@ -67706,19 +67704,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2c0568c2, 0x953b5f90, 0x13d367b4, 0x3c6acb0c, 0x76e8c46d, 0xef7ebf16, 0x25d36f2a, 0x31510eb4, 0xab04e691, 0x48d7e4ff, 0x64fcc35f, 0xc42e7bab, 0x8dba31ad, 0xeca76452, 0x5a3f2246, - 0xbc5a9114, 0x000086, 00000000 + 0xbc5a9114, 0x000086 }, { 0xd4d0b269, 0x667c767, 0xc19a1aaa, 0xc98fe551, 0xca073372, 0x9c8b3982, 0x1f9fc474, 0x2884b404, 0x361f151e, 0x84607fe8, 0xe3959735, 0x41d20bcb, 0xb9c6fe90, 0xcaba58eb, 0xea4cca39, - 0x3d449350, 0x00017f, 00000000 + 0x3d449350, 0x00017f }, { 0x104a404e, 0xf87edadb, 0x6011a534, 0xb715d585, 0x65e9ce5c, 0x2fb965a5, 0xe176ae67, 0x18fc5aa0, 0x8aa8ff8f, 0x4d88e2e8, 0xbc673e68, 0xf26c5692, 0xc85f636d, 0x6ec9e205, 0x998df66e, - 0xe59c5f38, 0x000113, 00000000 + 0xe59c5f38, 0x000113 } }, { @@ -67726,19 +67724,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x68c452c3, 0x3da80587, 0x9c19b837, 0xe6c968ca, 0x2cd09738, 0x7025fd06, 0x67576860, 0x49d97ffc, 0xca638afa, 0x13d8238f, 0x1d1cdf07, 0xbb29ac96, 0xcb6ebded, 0x5d684ea4, 0x39231992, - 0xc18e19de, 0x000129, 00000000 + 0xc18e19de, 0x000129 }, { 0xdc25f21, 0xf16e20f5, 0x3f5d30, 0x990b68a5, 0x88aa9722, 0x8a3f1a9b, 0xebc1d861, 0xf4dc5dc0, 0x1005e6a4, 0xa8452788, 0xc48ff42c, 0x998cf2d0, 0x1cdec2b3, 0xeec77e42, 0x950371c7, - 0x11b4743e, 0x0001be, 00000000 + 0x11b4743e, 0x0001be }, { 0xfbf72e89, 0xfb6aeb3b, 0xba680ba3, 0xac872b42, 0xf2e026bd, 0xb0a8408e, 0xd4924b14, 0xc66f1412, 0xc6b5b473, 0xbf30a440, 0x7fb0db59, 0xa79b198e, 0x279c5dea, 0x53f545d4, 0x99ac159e, - 0x2fab201b, 0x000029, 00000000 + 0x2fab201b, 0x000029 } }, { @@ -67746,19 +67744,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6534315f, 0x90bfd638, 0x8a0f8d09, 0xc1adf0c6, 0x90214c15, 0xe08c15c5, 0x98262e23, 0xc1af78d8, 0xb5750868, 0xae26d89b, 0xffd486f, 0x2ab4e6ac, 0xf5072e9d, 0x3ec2bd7f, 0x8e022ef6, - 0x52918136, 0x0000ea, 00000000 + 0x52918136, 0x0000ea }, { 0x63de801b, 0xf9e2af4c, 0xe56e4e6f, 0x6dc483b8, 0xae1031ff, 0xe3448dec, 0x3865b194, 0xc31e7643, 0xb6f068b, 0xd75f0763, 0x4865f122, 0x6c3f2a5a, 0x6530c9a, 0x49154c85, 0x520c9b83, - 0x3b117f69, 0x00008f, 00000000 + 0x3b117f69, 0x00008f }, { 0xbf1f73bf, 0xa17c088a, 0x4b613219, 0x726e6df0, 0x43073207, 0x25a58340, 0x6d67ab10, 0xcfa44b07, 0xaddde6c0, 0xdb42cc60, 0x3e0d746d, 0x749f4144, 0x675ff091, 0x3a6d73e6, 0x825cca33, - 0xf827d045, 0x000066, 00000000 + 0xf827d045, 0x000066 } }, { @@ -67766,19 +67764,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3fa08897, 0x120bc2fa, 0xd3ad9dc1, 0xa49708ef, 0xf805b6e0, 0x5d37c913, 0x1f31600c, 0x1279aef8, 0x4ad3e2c0, 0x7a0f4402, 0xf48bb514, 0x327f996, 0xf9d4e799, 0xa26fbf05, 0xedb96471, - 0x76b9a52f, 0x000041, 00000000 + 0x76b9a52f, 0x000041 }, { 0x11101407, 0xeb72bc06, 0x9461237b, 0x60e7e7bb, 0x5b4bbc0d, 0xfea77551, 0x38dfb639, 0x27d1b745, 0xd967c70a, 0xcdf40822, 0x85078c5f, 0xad13f8ee, 0x910e1c5, 0x24995265, 0x3c0f379f, - 0x74a2e764, 0x000194, 00000000 + 0x74a2e764, 0x000194 }, { 0xd992bfb2, 0xa0bbca8e, 0x7b4e3315, 0x626c264e, 0x882c9ccd, 0xa67aa754, 0x61d52841, 0x978e4e41, 0xea145c32, 0x91c4bd01, 0xa9de37a1, 0xa95b1071, 0xa60abcd2, 0x8d6a8db3, 0xf0eb290b, - 0x2eba0be5, 0x00018a, 00000000 + 0x2eba0be5, 0x00018a } }, { @@ -67786,19 +67784,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb0692df4, 0xeada0bd8, 0x655da711, 0x7c952298, 0x7cc17527, 0x6981e492, 0xba814e39, 0x73d675c4, 0xde7c9c9d, 0xe9dfd80a, 0xed46873d, 0x211c5393, 0x30b8b238, 0xeccee937, 0x8a2e4139, - 0x4f12695d, 0x000039, 00000000 + 0x4f12695d, 0x000039 }, { 0x7524d6b0, 0xa9d5d431, 0x53886856, 0x73a5e07e, 0xb26dc8f6, 0x89f9e773, 0xd2c501a3, 0x175ca5f9, 0xe734a57d, 0x15c8d7d8, 0x281e0b6f, 0x92259af3, 0x3bd517b3, 0x1e4af371, 0x644aebfb, - 0xa815b1a2, 0x0000dd, 00000000 + 0xa815b1a2, 0x0000dd }, { 0xb5d8840c, 0xe04a8f23, 0x17ffb3d3, 0xbf36b71b, 0xf18e6369, 0x7fad71d5, 0x97b5981b, 0xee723328, 0xf36b6d7d, 0x19fc2bb9, 0x4fd5d276, 0x276a5820, 0xdb2ae2b0, 0x45e2497c, 0xb852f3ae, - 0xa8526996, 0x0000ff, 00000000 + 0xa8526996, 0x0000ff } }, { @@ -67806,19 +67804,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb638faae, 0xd423de9b, 0x2ac90128, 0x729bac29, 0x71cfde36, 0x473bd4be, 0x6530b31d, 0x9bb34b79, 0x6c79cc8, 0x230fd195, 0x95b3535, 0xf8e61f6f, 0xe8ffac40, 0x96fde323, 0xfb7e1677, - 0x4a4aa2f6, 0x00012c, 00000000 + 0x4a4aa2f6, 0x00012c }, { 0xc40c9d34, 0x3b61bdf2, 0x8886e8e0, 0xde98aaf8, 0x1d296e86, 0x3f8907de, 0xe5b29367, 0x39249603, 0x620c28b8, 0xd6cd1406, 0x2ed31523, 0xc097c9c2, 0xf8be8286, 0x7e75bb25, 0xeba725f, - 0x9b3c08bd, 0x0000b1, 00000000 + 0x9b3c08bd, 0x0000b1 }, { 0xa55e75f4, 0x89431e4f, 0x864af1b3, 0x3230d097, 0x75531493, 0xcb5f9b68, 0x7206c331, 0x29577a5b, 0x1c451c34, 0x90a8b246, 0xb89bd408, 0x904e4eb4, 0x1ba3d498, 0x1e63e2c, 0xfcea667d, - 0x4da0ad7, 0x000163, 00000000 + 0x4da0ad7, 0x000163 } } }, @@ -67828,19 +67826,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc3df5e18, 0x77a6755, 0xcf219297, 0x73311924, 0x822854a6, 0xe0742886, 0x7cb16e9e, 0xfbdf623, 0x5e85f4b3, 0x6a950cb6, 0xd5c8ddd0, 0x7da407f, 0x7f5081bd, 0x5586d067, 0xf6bdf243, - 0x99e8524f, 0x00006f, 00000000 + 0x99e8524f, 0x00006f }, { 0xb459dfba, 0xed0dc7f7, 0x58555257, 0xdab0a0b7, 0xd698d462, 0x4febb17, 0xf359492b, 0x279584bb, 0xe9ef66d, 0xc303652a, 0xd2b89f9c, 0xf38d967d, 0x3c6a5ab0, 0x4fbfdc86, 0x29ce6385, - 0xfe8029aa, 0x000181, 00000000 + 0xfe8029aa, 0x000181 }, { 0xf493fde0, 0x62bd3a9, 0x8dbf56a4, 0x895eae93, 0x99def98c, 0xbd2d199b, 0x5899d360, 0x6b0c539b, 0x98714b26, 0xb7995c36, 0xb2ea3fa9, 0xa8e37a22, 0x70ef4de8, 0x7acffd62, 0xa97fc619, - 0x805907cb, 0x00017e, 00000000 + 0x805907cb, 0x00017e } }, { @@ -67848,19 +67846,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1de18075, 0x1cfea72c, 0x6affe04e, 0x71c0a0a5, 0x1374fa5e, 0xce18d4fc, 0x7b47c461, 0x1d015392, 0xc5eff9f6, 0x7e4fca02, 0x3cad3fe9, 0xaf345df1, 0x8a336eb5, 0xfa177263, 0xb5d12f96, - 0xccf5599a, 0x000197, 00000000 + 0xccf5599a, 0x000197 }, { 0xe085e54a, 0x62c8c9c6, 0x8ac4e8c5, 0x8aa78926, 0xd98d715e, 0xa416110b, 0x9597390b, 0x90fb45ee, 0xafe17771, 0x88b8e7f9, 0xaa5da178, 0x23245115, 0x5a324d21, 0xf9544a04, 0xc03d913, - 0x7c915248, 0x0001db, 00000000 + 0x7c915248, 0x0001db }, { 0x23715a21, 0x3d004aae, 0x7ed97815, 0xc4bef325, 0xa2affddf, 0x2047883b, 0xc1849575, 0xeab830d, 0xeb8ae566, 0x32455592, 0x3d6a6fc7, 0x890e86bc, 0xa3d797d6, 0x33caaaa4, 0x53df1e94, - 0xa39b835f, 0x000053, 00000000 + 0xa39b835f, 0x000053 } }, { @@ -67868,19 +67866,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x54d76f6d, 0x5f215cf3, 0x8a29b525, 0xac13eef1, 0x8ed7c719, 0x2c7c2a94, 0xb4121447, 0xe41bf58c, 0xde259423, 0x75e8eb0b, 0xbe0183b3, 0x9b13ee7a, 0x38ed4bc5, 0x845a724e, 0x588b9260, - 0x6dfdd13f, 0x000019, 00000000 + 0x6dfdd13f, 0x000019 }, { 0x7fb88f0e, 0xe9b51c55, 0x12f724f3, 0x7428bc13, 0xda423590, 0x464b134b, 0xba552448, 0xb010b5d2, 0xcbdaba56, 0x6d210b89, 0xe4f69cbb, 0x93abb0fb, 0xac700e65, 0x307b10ee, 0x8b1569ec, - 0xa8f6571d, 0x000018, 00000000 + 0xa8f6571d, 0x000018 }, { 0x8c5ef29, 0x14ad7bea, 0x978ea8d8, 0x21115d6b, 0xb0d8f5e8, 0x22b86c93, 0x7d0a5ad1, 0x25ec8481, 0x45e2dd3e, 0x9aee3bf5, 0x96d2406, 0x4b6d51f6, 0xb785fd4d, 0x788c8be3, 0x69e787b, - 0x88d220ed, 0x00003d, 00000000 + 0x88d220ed, 0x00003d } }, { @@ -67888,19 +67886,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2bdbfde5, 0xbf86956c, 0x7af046fb, 0x60c436f5, 0xa00715b4, 0x43ab0e5a, 0x5ce9dbd2, 0xff1b4f9b, 0xbf8f3ddf, 0xdd705a6e, 0xa2aa6eea, 0xb164f9c4, 0x4fda1665, 0xfde62a83, 0xd010cbf, - 0x4cbb995f, 0x0000a3, 00000000 + 0x4cbb995f, 0x0000a3 }, { 0xd56aed4c, 0x654a1f96, 0x9de364fc, 0xd80f29fc, 0xcb7f0f27, 0x4be12f4f, 0x9e3cce18, 0xf9818d5f, 0x9ba6869d, 0xef3fa7b1, 0x9c44a78e, 0xb3a9dd75, 0x193c489a, 0x8260f558, 0xfc8cfa61, - 0x7a8af7dc, 0x000021, 00000000 + 0x7a8af7dc, 0x000021 }, { 0x5fbb2321, 0x610d670b, 0xf3cccb28, 0x53123caa, 0x4fae619f, 0x6643d4b9, 0x976735be, 0x493507f2, 0x393e9cb5, 0xdfca2b42, 0xfe31da79, 0x69c5ea32, 0x5c854c96, 0xf9f9b9e, 0x7897c09d, - 0x98db67bb, 0x00009f, 00000000 + 0x98db67bb, 0x00009f } }, { @@ -67908,19 +67906,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd5c23bf, 0x583959b3, 0x90248afe, 0x5e5852dc, 0xadf5ac62, 0x221e7946, 0x44a4ccc6, 0xb62da095, 0x13ccc38, 0xe2566bcb, 0xed261eda, 0x84826e4d, 0xaccf8307, 0x31355d45, 0x61bfb021, - 0x21f47a47, 0x0000e8, 00000000 + 0x21f47a47, 0x0000e8 }, { 0x27c44e1f, 0xae7ab021, 0x51419ecc, 0x31c71d6c, 0xdf28a516, 0x524a297a, 0xdf52557b, 0x3a8e9742, 0x61e44906, 0x7af6e57b, 0xacf0a51, 0x764bad1d, 0x6a11fb72, 0x9cd6b67f, 0x423e9f0e, - 0xfbac8465, 0x0001c7, 00000000 + 0xfbac8465, 0x0001c7 }, { 0xb314dd65, 0x849d5d6, 0x1c16d606, 0xb9697628, 0xc4a8ad9c, 0x3ce9dd03, 0x3d81f3cc, 0x48c54184, 0x6215be1e, 0x7ae522e0, 0x65fd07eb, 0xd98f7f07, 0x503cfdbe, 0xf375760a, 0xd3a9e3bb, - 0x9ebd1a36, 0x00014d, 00000000 + 0x9ebd1a36, 0x00014d } }, { @@ -67928,19 +67926,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x95833458, 0xe2375039, 0x3f0e6ee8, 0x72ffa531, 0x9629b8bf, 0x1e0dea4f, 0x240dd85a, 0xbd12aed2, 0x2810175a, 0x8a71ef78, 0x58d33d66, 0xcc32dc22, 0xa0f3eb4e, 0x8b68a380, 0xfc7215a3, - 0x1d042704, 0x000057, 00000000 + 0x1d042704, 0x000057 }, { 0x48d09ca6, 0xf96c51bb, 0x24e250d7, 0x3af3afde, 0x9b041515, 0xe8f3b4a9, 0x906443c0, 0x1df56057, 0x16bf7f30, 0x8ab644c2, 0x341700bf, 0xba942649, 0x114998ae, 0xce91d4de, 0xdcec09f6, - 0xf5925d1a, 0x00001e, 00000000 + 0xf5925d1a, 0x00001e }, { 0xd3b9b201, 0x6a6e291c, 0xe7ec4bbc, 0xe1197743, 0x1e8e9a37, 0xf4b2fe81, 0xcc304cae, 0xb5f0256, 0xaa56dfd6, 0xe23c024b, 0xb15a177b, 0xfcbc431c, 0x21551eee, 0x578579f2, 0xb0b0e92e, - 0x608f0ee9, 0x0000b9, 00000000 + 0x608f0ee9, 0x0000b9 } }, { @@ -67948,19 +67946,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3a7a654b, 0x7e2d65d8, 0xa9ee4374, 0x48d577fe, 0xf9b682c4, 0xc273cae4, 0x7da43e2e, 0xc517298c, 0x6711e25a, 0x478ce33, 0x90347168, 0x32c995d3, 0xb58e491f, 0xdb2b50ff, 0x97d71519, - 0x22e8d549, 0x00008d, 00000000 + 0x22e8d549, 0x00008d }, { 0x934d7f07, 0x326a942d, 0x6b718e3e, 0xc4955a3a, 0xe82f18f7, 0xcf9b97f, 0xa85e6dc7, 0x536a8950, 0x27f8bc0, 0x34c3d201, 0xfc018dfe, 0x317d12da, 0xe9bc9fb6, 0x50f66a29, 0x2c5d5390, - 0x52b293f5, 0x000006, 00000000 + 0x52b293f5, 0x000006 }, { 0x9850ee18, 0x7fd65a93, 0x35405cbe, 0x13cf627, 0x2172f433, 0xf32a3838, 0x96ad37a, 0xb52922e8, 0x59d9e238, 0x1ebcfab4, 0x5031c28, 0x761be973, 0xc3e0f11f, 0xd15c55d, 0xb324808e, - 0xe0977339, 0x0001da, 00000000 + 0xe0977339, 0x0001da } }, { @@ -67968,19 +67966,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa2e1e6ff, 0x17709fbd, 0x78ec6c42, 0x17b29a5b, 0x95e709b9, 0xa1199e9f, 0x4451919c, 0x7f8ee764, 0x2c1173fc, 0x7b89171, 0x73750663, 0xb4b96719, 0x5ef14a6b, 0xfe08e2cd, 0x2bb91ae4, - 0xfeaac4dd, 0x000160, 00000000 + 0xfeaac4dd, 0x000160 }, { 0xd8003a29, 0x2059fc1b, 0xee24ed3d, 0xea9d3324, 0x43daf82f, 0xba1207d5, 0x91ee84f8, 0x4dc27cbc, 0x1fa198b7, 0xf715fc3d, 0x55be48ad, 0xb820c4fd, 0x7ff73395, 0x4571bdec, 0x82050b4d, - 0xe4aab02f, 0x000163, 00000000 + 0xe4aab02f, 0x000163 }, { 0xee2dcdfa, 0x7610f2db, 0x8dc250c1, 0x4540e998, 0x2d62146, 0x1114b912, 0x89f3ebdf, 0x5f63edf6, 0xafbfb248, 0xd6072449, 0xb5ae95b7, 0xff92b649, 0xf0801d7a, 0xa56867d, 0xc09ecef8, - 0xd1b4b32c, 0x0000bf, 00000000 + 0xd1b4b32c, 0x0000bf } }, { @@ -67988,19 +67986,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x196ed0bc, 0xd3687c10, 0xa7bac0f5, 0xd9a3a140, 0xdd2a3b58, 0xfaffcd22, 0x6f59f459, 0xfe55cdc3, 0xc2d37c65, 0xae9e7cbe, 0x3b420827, 0x6115d05, 0x42466224, 0xb8b58f77, 0xf9d325e4, - 0x23795048, 0x0001a2, 00000000 + 0x23795048, 0x0001a2 }, { 0x304883d6, 0xf53734bd, 0x305cb64e, 0x3b0db414, 0xca728e50, 0xe6763fd6, 0x6c8d8a7e, 0x56a5f70b, 0x851def11, 0x8688a5cb, 0x76879872, 0xcc949c98, 0xde92702f, 0x9061e67c, 0x2adab913, - 0x63db0874, 0x0001d3, 00000000 + 0x63db0874, 0x0001d3 }, { 0xc75f89d9, 0x3eb2d89a, 0xf9eba30, 0x3fb94366, 0xd4e9389f, 0x51f3470b, 0x8f7e115d, 0x5fe2bd57, 0xa667ddb8, 0xcb5fccb9, 0x6e1c6836, 0xca8a1296, 0x75d1f562, 0x4eef1048, 0x2acd8e15, - 0xa432e542, 0x0001c0, 00000000 + 0xa432e542, 0x0001c0 } }, { @@ -68008,19 +68006,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfcaf9c6c, 0x693cd33b, 0x80625eeb, 0xff75ce31, 0x740c1831, 0x299d0cb6, 0x92988543, 0xe55878d6, 0xbb540b78, 0x9aeb0b78, 0xb73765cd, 0x9513ac0b, 0x6abed237, 0x4eba51a9, 0x7aefb5fd, - 0xbd1cac54, 0x0000d9, 00000000 + 0xbd1cac54, 0x0000d9 }, { 0xc8d889c3, 0x30e5654b, 0x65b75404, 0x98bac9de, 0x1a2d030, 0xe9b3503d, 0x9bab3b71, 0x96129676, 0x8a683c11, 0xb56778ab, 0x5c6f3254, 0x8fb0b3a2, 0x1cab86b1, 0xab98ed37, 0x2b8606c3, - 0xd37eabfc, 0x000013, 00000000 + 0xd37eabfc, 0x000013 }, { 0xf7abb8ee, 0x20918511, 0x44994453, 0x2e808495, 0xdc96f9fa, 0x26b01281, 0xd5592311, 0xecb0b352, 0x91992760, 0x1b438758, 0x94486fed, 0x15b72c9a, 0x36f319b9, 0xd8cec855, 0x619e8e54, - 0xb478f1f9, 0x00001d, 00000000 + 0xb478f1f9, 0x00001d } }, { @@ -68028,19 +68026,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x74ffabb, 0x8d2d3407, 0x94e64f79, 0x2b1fcd1, 0x4e208fdd, 0x911ab91d, 0x1073fd61, 0xf7bff051, 0x31c09659, 0xe452eaca, 0x99ac5c0c, 0x18a3798, 0xca2b58dc, 0xf88a0517, 0xd1b7909f, - 0x814d2500, 0x0001df, 00000000 + 0x814d2500, 0x0001df }, { 0xc2ecc5ac, 0xb5a2fb77, 0xddce991d, 0x2274a56b, 0x8ec4a8fe, 0x71f7be8e, 0x4b003365, 0x474139c3, 0xa15f8290, 0x56c4ee0a, 0x3fc5d632, 0x6882f30d, 0x1f83b0a8, 0x87e5c542, 0xaf3eb14b, - 0x93558708, 0x00004d, 00000000 + 0x93558708, 0x00004d }, { 0x1f29a769, 0x9f7dc0eb, 0x94cb58c3, 0xa0a08b3, 0x139862cf, 0x7dc6ed47, 0x4d052ff0, 0x2b6afd20, 0x8b54fbf6, 0x387e79da, 0x105dd059, 0xba2d4ce2, 0x48f4273a, 0x24cd78e5, 0x3dc54148, - 0x617ec8e1, 0x0001cd, 00000000 + 0x617ec8e1, 0x0001cd } }, { @@ -68048,19 +68046,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xef6917ef, 0x55a88151, 0x80ffc9f, 0xe397e0d6, 0x3add875, 0x2f1f025f, 0xbbdf1cf1, 0xab61d33c, 0x91c8191f, 0x30780ed9, 0x27115fbd, 0xfbcbebe3, 0x34908f46, 0x6309ae30, 0x6d708746, - 0xa6349f33, 0x000156, 00000000 + 0xa6349f33, 0x000156 }, { 0xfece2110, 0xef004e76, 0x1d059bba, 0x19ab374c, 0x408be1c8, 0xf6dc6a71, 0x4bb7c69a, 0x95d92849, 0x6828bd24, 0x2479aee3, 0x20ef4053, 0xb40a0af2, 0x99cf57e9, 0x4b02fb88, 0xe0edc50d, - 0x30cd16e9, 0x00017e, 00000000 + 0x30cd16e9, 0x00017e }, { 0xe203157b, 0x1803ee3b, 0xc14352e1, 0x397278fc, 0xbf1db490, 0x989d2eac, 0x1aa073d2, 0xfa10ef31, 0xb6dbbfba, 0x8f36ba59, 0x53d76dd4, 0xb0fda6e4, 0xd2b10967, 0xbff13aec, 0xc05e1d46, - 0xfe25a6a9, 0x000095, 00000000 + 0xfe25a6a9, 0x000095 } }, { @@ -68068,19 +68066,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36b59ce6, 0xee49086c, 0x3a98e93f, 0x692d8034, 0x4da7e9fb, 0x5812bf05, 0xa4a3fe2d, 0xdbdd5e39, 0x660e0df8, 0xa71c9c93, 0x626981f8, 0x17e6c020, 0x87f03275, 0x67c26439, 0x5ba8eefc, - 0xf79074ad, 0x00009a, 00000000 + 0xf79074ad, 0x00009a }, { 0x82137c35, 0x69a0f2c5, 0x295c6f90, 0xb45c268c, 0xd1026c22, 0xa829ec1a, 0x7e4596ea, 0xc711c66, 0x2afe28d9, 0xea83a4b0, 0x12a5f559, 0x98b2ab61, 0x2b7a586, 0x21602964, 0xece45def, - 0x737588fe, 0x00012a, 00000000 + 0x737588fe, 0x00012a }, { 0x2d126575, 0x3add9928, 0xd38568af, 0xbfa56348, 0x4448ddfb, 0x97a222e2, 0x8be370d7, 0x74c1e72d, 0x2221b886, 0x311a12b9, 0xfa42c906, 0x870b2992, 0xc2e4e0be, 0xd1f37ae6, 0x45ca4c11, - 0x5eb1b76a, 0x000095, 00000000 + 0x5eb1b76a, 0x000095 } }, { @@ -68088,19 +68086,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x62c2ae44, 0x5dfab355, 0x403b7988, 0x895f9f96, 0x123c85bb, 0x2a174496, 0xf5666f33, 0x79781c5b, 0xf5fcf63, 0x10cb5064, 0x52ae6a7a, 0x1281ded6, 0xa6eac09a, 0x44428db6, 0x98ae8a4b, - 0x604c9fac, 0x000059, 00000000 + 0x604c9fac, 0x000059 }, { 0x9b74b924, 0xe522c34a, 0xa798d3b3, 0xff26d647, 0x982578ac, 0xee1ea519, 0x8f42f54a, 0x37ab9572, 0xfaae1ce5, 0x8ac61c67, 0x1d278045, 0xfbd4df26, 0xdf482190, 0x8ee949d3, 0x7f173b93, - 0xd1c79a28, 0x000108, 00000000 + 0xd1c79a28, 0x000108 }, { 0xc6d1cb57, 0x977f8809, 0xf0e796c6, 0xce8664a3, 0xc4940af0, 0x7c726aeb, 0xb9863515, 0xe48e75af, 0x564acf9, 0x288abc06, 0x324e713c, 0x96005e0a, 0xa91cf7d5, 0x7f4dc21e, 0x11dea78a, - 0x7fa89d55, 0x0001c5, 00000000 + 0x7fa89d55, 0x0001c5 } }, { @@ -68108,19 +68106,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdd807aeb, 0x4b605be6, 0xfcb9b5f8, 0xaab1836d, 0xca095839, 0xf486dc8f, 0x4a585e9f, 0x7ab5d4ab, 0xcb6db01d, 0x51b0e5df, 0xc1a2fcd7, 0x29eff92b, 0x34cbfa69, 0x9345cfd3, 0x6c42a052, - 0x4d955ee4, 0x000154, 00000000 + 0x4d955ee4, 0x000154 }, { 0x18674d44, 0xed387a88, 0xd4dddd17, 0x12816666, 0x8655385f, 0x9f2bd842, 0xad2e49b, 0xbb71e43e, 0x6b83252f, 0x1cfad716, 0x1a31dc2e, 0x3ab1b35e, 0x4a891679, 0x9f99f301, 0x138f809c, - 0xbe13c06c, 0x0001c8, 00000000 + 0xbe13c06c, 0x0001c8 }, { 0x74ef59b, 0xd872d441, 0xae8429f7, 0x3125daab, 0x2d5b1f3a, 0x1826fd69, 0xbdb3ffda, 0x61bed0f4, 0xb8d6ebcb, 0xd10395d8, 0xe0a7ffed, 0xe0f26e79, 0x84b3609d, 0xf7232c9c, 0x1bb53c71, - 0x4a5af364, 0x0000ea, 00000000 + 0x4a5af364, 0x0000ea } } }, @@ -68130,19 +68128,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbd1acc0e, 0xf239c418, 0xa342403d, 0x5c38ffef, 0x1b14b6b9, 0x66518f31, 0x3afef1af, 0xd5dab26b, 0xc45dc2c6, 0x44782ada, 0xf1e1dd01, 0x9626e2dc, 0x28431544, 0xe5f84dc4, 0xe40f479f, - 0x528b70be, 0x000115, 00000000 + 0x528b70be, 0x000115 }, { 0xfbfccbd0, 0x157d1890, 0x72e19ab0, 0x43e225cd, 0xc0794afc, 0x990ac6e8, 0x28dad150, 0x9306edae, 0xcb1618b3, 0x4a7526c2, 0x1e2f4d, 0xec240b2e, 0xb01e2493, 0xd3c09882, 0x56ad800c, - 0x64baf4ba, 0x0001fc, 00000000 + 0x64baf4ba, 0x0001fc }, { 0xd0f698c4, 0x88b2f5df, 0x29315ee5, 0xee6db303, 0xd5084c4b, 0x3e6e280c, 0x251889b9, 0x95446cf0, 0x1f83622f, 0xe839f6a3, 0xa69fd47f, 0xa207a02a, 0xd15a00fb, 0xc094da8e, 0xf8b12d91, - 0xb77f8114, 0x000062, 00000000 + 0xb77f8114, 0x000062 } }, { @@ -68150,19 +68148,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x265680cf, 0xc235541d, 0x42fd58b5, 0xfc1ddb12, 0x1a9b0a65, 0x9149407e, 0x84eb9c8, 0xb8d3d12e, 0xf36317a1, 0xe00bef49, 0xdd60e2ea, 0x9dbcb35e, 0xba390f80, 0xa29fb1a1, 0x4af84238, - 0x951e016b, 0x000145, 00000000 + 0x951e016b, 0x000145 }, { 0xe3085df5, 0xb4b41415, 0xc808486b, 0xbefbb776, 0xaf73645c, 0xcb937c52, 0x98c1403c, 0xd58f73e5, 0xe254af4b, 0x57093a26, 0x21eef047, 0xb73fa0f8, 0x26ea9382, 0xd978bb17, 0x1d8d26cf, - 0x298f6250, 0x0000f6, 00000000 + 0x298f6250, 0x0000f6 }, { 0x36862fd4, 0x27be487b, 0xad2b41c3, 0x6096c7b2, 0x1c269b7b, 0x2e389e11, 0xbbf2ca58, 0x9121d304, 0x3579b965, 0x758452ba, 0x401c541b, 0xc40bd75, 0xbd8041a8, 0x2b444a91, 0x69170416, - 0xe91a94a3, 0x0000b4, 00000000 + 0xe91a94a3, 0x0000b4 } }, { @@ -68170,19 +68168,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd30d8ffb, 0xbaf1f983, 0xd3c6b265, 0x88630e94, 0x1ae0e325, 0x57a07e87, 0x538e99b2, 0xa4ebfd13, 0x8bd791d5, 0xf9f49995, 0xabb50206, 0x2ad9121d, 0xe9a42495, 0x913b4381, 0x3cf2f4c3, - 0xe712b629, 0x000192, 00000000 + 0xe712b629, 0x000192 }, { 0x10e1c0c9, 0x52b5a5c3, 0xb08134be, 0x666b783c, 0xbf69f2f, 0xaa620afa, 0xefb589c8, 0x51582b06, 0x5a86035f, 0x6405062c, 0xb3f94dad, 0xc26c4d05, 0x32ddf163, 0x6a70699c, 0x2cffed9b, - 0xc35284f2, 0x000127, 00000000 + 0xc35284f2, 0x000127 }, { 0xa500f956, 0x74c35b12, 0x1369e4a8, 0x59a0d8c7, 0x8d4b23f3, 0x72065643, 0x4ab08eff, 0x72ba245f, 0x7a230ae3, 0x9e9b905a, 0x4efd34bd, 0xbf1ef995, 0xb99d86ce, 0xea9b6847, 0x39db1ba8, - 0xd19d53c2, 0x00012f, 00000000 + 0xd19d53c2, 0x00012f } }, { @@ -68190,19 +68188,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x33ead54d, 0x7dcca585, 0x7c9e2f1c, 0x126cd3c5, 0x93b25ab0, 0x40399ce7, 0xf727a25d, 0xaef851d7, 0x7f7f95c4, 0xc7d06817, 0xbb2a4e1c, 0xab64a08b, 0xabed6ba4, 0xc6ac899e, 0x945253c0, - 0x45b03a03, 0x000135, 00000000 + 0x45b03a03, 0x000135 }, { 0x397a60a, 0x77a02cdd, 0x3a8dcebe, 0x2dd142ff, 0x59ae60d3, 0x2c3a096a, 0x170d714b, 0xfc088a1, 0xac6709e9, 0x91aa12c, 0xabdd9535, 0x3b8f5e6a, 0xc98194a4, 0x498aadba, 0x4cceb67c, - 0xef71fb57, 0x00018f, 00000000 + 0xef71fb57, 0x00018f }, { 0x649467c4, 0x2a85a5d4, 0x5b8c1ff, 0x7f3c5555, 0x26a9d533, 0x69e6489b, 0x60e3ac8d, 0x5865b0eb, 0x1349d719, 0xc6ac922, 0x4b5fb362, 0x8f4e4d52, 0x20eb5aaf, 0x6bc5a6b3, 0xc734b7ab, - 0x4e3972f, 0x0000ef, 00000000 + 0x4e3972f, 0x0000ef } }, { @@ -68210,19 +68208,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf00d15d6, 0xe0a11c5e, 0xc91e06b, 0xfd657963, 0xbb7de49b, 0x26ae8f6f, 0xd0e3cb15, 0x4a67ef8b, 0xd2cb80ad, 0x162745f4, 0x63aac678, 0x433db96, 0xa5fcf24f, 0x172b7603, 0x9dcb0d19, - 0x46a2740a, 0x0001a6, 00000000 + 0x46a2740a, 0x0001a6 }, { 0x469891d2, 0xaf98976d, 0x91e9c2df, 0xc3e0f624, 0xc414fedd, 0xefb04a0b, 0x3dba1ef6, 0x8e6ea06c, 0x8ddb9cb5, 0xfbc06079, 0xd71ebcfd, 0xd184a0b, 0xd3f7be7f, 0x5848f9b4, 0xfb2dfa59, - 0xe55276e7, 0x00005c, 00000000 + 0xe55276e7, 0x00005c }, { 0xc6590ee4, 0x9c4fa8e3, 0x5ca64d60, 0x8e0d20ff, 0x3e28dab4, 0x4ad71ce6, 0x5d362fae, 0x209ac212, 0xa7826b91, 0x974bd2a3, 0xda943bdd, 0x6fee24f0, 0x2d89f4ed, 0x4a524f50, 0x31fdeb25, - 0x9b2ee02a, 0x00004e, 00000000 + 0x9b2ee02a, 0x00004e } }, { @@ -68230,19 +68228,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeeb72297, 0x767593b4, 0xd3bd65f8, 0xd54fd196, 0xd72e6780, 0xa74dbff5, 0x8d6b6275, 0x20908c9b, 0x4265a4cc, 0xa0c69538, 0xc31b0c06, 0x91d73ca0, 0xe4f2a4de, 0xdadbf715, 0x71247a11, - 0x35b48c70, 0x000002, 00000000 + 0x35b48c70, 0x000002 }, { 0x3cb4bde7, 0xc1e813d4, 0x8df93daf, 0xc8d7b80d, 0xcb66f8b1, 0x3d2af9e8, 0xfe9b9963, 0xda38caab, 0x6795df8c, 0x7c7bb6d5, 0xe936f7e, 0xa8cfbf2e, 0xed80bd21, 0x89b3d6d3, 0x8466ceff, - 0xd679a2a2, 0x0001ac, 00000000 + 0xd679a2a2, 0x0001ac }, { 0x9e90a465, 0x66bc9bbd, 0xf0d9cfae, 0xde1c5de7, 0xf2914dcf, 0xcf174d2f, 0x700dc135, 0x49ffce3a, 0xd1ff414b, 0x7b9e2654, 0x919999a2, 0x71347a3d, 0x61254541, 0x19d45844, 0x61577437, - 0x149ce89, 0x0000e4, 00000000 + 0x149ce89, 0x0000e4 } }, { @@ -68250,19 +68248,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe837dc77, 0x2551b478, 0x58df84b9, 0xa668edda, 0xc96cbb56, 0x58551885, 0x47b37cc1, 0xbf44cf6a, 0x84003d04, 0xdbadf57c, 0x2588d63e, 0x9e869e75, 0x1c532634, 0x7c106c2c, 0x963ecb54, - 0xedf82ab, 0x0001a1, 00000000 + 0xedf82ab, 0x0001a1 }, { 0x4c15b620, 0xa5b63854, 0x5f723fe, 0xd6212d0, 0x28faf202, 0x4ad8e25a, 0x948a6dca, 0x9866356b, 0x83c0486d, 0x8dadc1de, 0xa1adbdeb, 0xfe0c755e, 0x444ff4f3, 0xe5b8fc63, 0xd887170d, - 0xfb13c246, 0x000060, 00000000 + 0xfb13c246, 0x000060 }, { 0x475464d7, 0x733269f9, 0x49cd4197, 0xb3b57512, 0x25e275e9, 0x401b8e95, 0x4082f942, 0x71a8d27d, 0xa011992, 0x56aba37c, 0x7451036e, 0x165725ce, 0x5abc2d1f, 0xda325dd6, 0xce0770e1, - 0x89f24500, 0x00001f, 00000000 + 0x89f24500, 0x00001f } }, { @@ -68270,19 +68268,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2e872125, 0x284f446, 0xad5a8b29, 0xf30fcda8, 0x9087e9d3, 0xb2fe47f6, 0x24adea02, 0xda708127, 0x704ffd0a, 0x7cdb8f5e, 0xc7398078, 0xdd7ab409, 0x1c22f04, 0x19d51645, 0xef201fce, - 0xd02a74b8, 0x00014a, 00000000 + 0xd02a74b8, 0x00014a }, { 0xef327baf, 0x3da347b9, 0xcfddad8c, 0x54aefcce, 0x277b3ebd, 0xbd4463c6, 0xd31a9911, 0x7f206e02, 0xe116ac29, 0xe4ce0a16, 0xb550ce12, 0xa6619269, 0x36973c39, 0x7af60de1, 0x808fc337, - 0xefc520a3, 0x00008b, 00000000 + 0xefc520a3, 0x00008b }, { 0x664c99c0, 0x672dbfc5, 0x19e47f2c, 0xa1d6b7bc, 0x6d3e4850, 0x27158e19, 0x91aacaa9, 0x4a7ee83, 0x9f958551, 0x7137353f, 0x8f5d0eb8, 0x6788428a, 0x5f1dfcf4, 0x4cf752ae, 0xf4590e4e, - 0xfecd1b31, 0x000008, 00000000 + 0xfecd1b31, 0x000008 } }, { @@ -68290,19 +68288,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbd56e712, 0x198ff1ee, 0x9570886b, 0x5e2931ed, 0xda64a4b8, 0x8667501, 0x1068761b, 0x63af62d0, 0xa475fa4e, 0xa9fff0d, 0x69dc4ea2, 0xf454978a, 0x1a118570, 0x43e0621c, 0xd84b2db9, - 0x2d798464, 0x0001dd, 00000000 + 0x2d798464, 0x0001dd }, { 0x98f02160, 0xb96cbf3c, 0x6f5f1301, 0x76047168, 0xda6a79ab, 0x9c391da9, 0xeb94e4df, 0x98bc6501, 0xb65bb335, 0xac672834, 0xe381143c, 0x9cdd3584, 0x5598ac18, 0x5a72fe99, 0x6091e1b, - 0xe05ed74, 0x0001ef, 00000000 + 0xe05ed74, 0x0001ef }, { 0xc291273, 0x56d5ebc1, 0x3a2d3062, 0xe00a7b5, 0xbfdde85, 0xf8aa7ae4, 0xe70aa286, 0x12f22d97, 0x11b3daaf, 0x9051192, 0x4909c975, 0x12f4372a, 0x40f2fc4b, 0x8665c147, 0x215e6105, - 0x8b91e709, 0x0000f3, 00000000 + 0x8b91e709, 0x0000f3 } }, { @@ -68310,19 +68308,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb1b7c846, 0xe1983bd8, 0xc6d2085a, 0xfad32a51, 0x60750fad, 0x56266426, 0x90bb368, 0xd9ed5128, 0xdbee5021, 0x1840f0a1, 0x397b365e, 0x881ea313, 0x35d9db9e, 0xabb7e750, 0x89142288, - 0xe3a22a3e, 0x000039, 00000000 + 0xe3a22a3e, 0x000039 }, { 0x75b0c73f, 0x4277f10d, 0x3dc4bf2a, 0x584e247c, 0x13a69a15, 0x64e128a6, 0xd367602, 0x3eb34bd5, 0xb14ecc08, 0xe9d766b, 0xfb2b21b4, 0x16655fb, 0xd19c724e, 0x60d6334e, 0xcad2b497, - 0xb346f117, 0x000063, 00000000 + 0xb346f117, 0x000063 }, { 0xbe4190fe, 0xc5b0f329, 0x19ed8890, 0x1e060e5a, 0x8538faef, 0xd02aadf2, 0x35dd32a1, 0xc75293aa, 0xb4a93962, 0x82a41d5f, 0xd11ac9b6, 0xd5e76c19, 0x32362258, 0xf5c09482, 0x36105cde, - 0x8814e42a, 0x0000b3, 00000000 + 0x8814e42a, 0x0000b3 } }, { @@ -68330,19 +68328,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3c2b05a9, 0x33583140, 0x3a1344ce, 0x855ef53d, 0x8ae0c3fb, 0xc81433e2, 0x927f10ca, 0x13c2228f, 0xbc4da617, 0xa552ce3f, 0x4a387447, 0xdb5f3e74, 0x706a6a73, 0xecb38273, 0xcdb0da0c, - 0x2277d5f6, 0x000108, 00000000 + 0x2277d5f6, 0x000108 }, { 0x52916a30, 0xaff68f28, 0xa0f7ad8b, 0xe1c5e1b3, 0xcd21aafb, 0x3c582bb8, 0x2fb83eca, 0x2776d812, 0x61b30b45, 0x31a4ba65, 0x13c98083, 0xfcdd9638, 0x92bb33e4, 0xbc04b0db, 0xbb292726, - 0x434d4932, 0x00002f, 00000000 + 0x434d4932, 0x00002f }, { 0x53a37dc3, 0xd727ef3f, 0xcfff4dd6, 0x9c577234, 0x7857928e, 0xada597d3, 0x4a9cd89, 0x8157958d, 0xd5bbd25c, 0xe8e7579d, 0xdbbaf3a6, 0xee15448, 0xea02c437, 0xddb105bb, 0xdaf833bd, - 0x3056880a, 0x0000d1, 00000000 + 0x3056880a, 0x0000d1 } }, { @@ -68350,19 +68348,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf33b9da1, 0x12103835, 0x1cfcfea4, 0xcf539063, 0x1d76bcca, 0xe08c5a64, 0x2e1574ac, 0x6f918697, 0x4d61851a, 0x6ba112c2, 0x3b2e7f9e, 0x77176af0, 0x47a6f325, 0x4ae42bed, 0x9a1a1139, - 0x33763fd0, 0x00003d, 00000000 + 0x33763fd0, 0x00003d }, { 0xa2371207, 0xbcbb1674, 0x760b03e4, 0x29ffc683, 0x65913257, 0x613ffce8, 0x2234f52c, 0x350f4371, 0x324b051a, 0xe0b2ddfa, 0x7c817f98, 0x8bf78935, 0x547bac47, 0xc29ea72c, 0xd09aab2, - 0xd92a5a9, 0x00010a, 00000000 + 0xd92a5a9, 0x00010a }, { 0xeecbf0e8, 0x24e07a3e, 0xada8e36d, 0x7f02145a, 0xcfa21c4b, 0xa8945d9d, 0xba3bdbe, 0xc9c4775d, 0x4b1c192b, 0x19db80dd, 0xa463c044, 0x393e9837, 0x15d7a8eb, 0xf9642d96, 0xbefa6f2a, - 0xcf8846cd, 0x000199, 00000000 + 0xcf8846cd, 0x000199 } }, { @@ -68370,19 +68368,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdc9db825, 0x9b8c006f, 0xa29d57b2, 0xf85b8462, 0x60076208, 0x5188db9b, 0xf38d3533, 0xfac91db1, 0xd07a652c, 0x871a711d, 0x7ffffcac, 0xd5ad306e, 0x3e764049, 0x7cef6357, 0x42d959d6, - 0x5c318795, 0x000064, 00000000 + 0x5c318795, 0x000064 }, { 0x1b8d34b6, 0xc198e717, 0x90d70336, 0xe57208bd, 0xeaf86e93, 0x38c7c3e9, 0x39882551, 0x16fdc50f, 0xf36fbe94, 0x2edaa4d, 0xffc34f2c, 0xbb5a9b57, 0x683ba2bc, 0xd36ff539, 0xa69c5f53, - 0xec52391c, 0x000069, 00000000 + 0xec52391c, 0x000069 }, { 0xa962e5e4, 0x844954d4, 0xaa536011, 0xe0ef4e85, 0x11e72cba, 0xc3fe8327, 0x221e0772, 0xbf90fa24, 0x99102f63, 0xfd69c317, 0x1ff42947, 0x766a535e, 0x2bc86b01, 0xcddbb152, 0xe6feb97f, - 0xd6691205, 0x000039, 00000000 + 0xd6691205, 0x000039 } }, { @@ -68390,19 +68388,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x611b4f1b, 0xdff54d18, 0x121ef85a, 0x39544b20, 0x2f7c5c80, 0x89d8e625, 0xfee5d5c6, 0xf8434edb, 0x6c22ca0b, 0x67af3987, 0x50eed049, 0x229f5459, 0x4fd76acf, 0x8de2ba48, 0x72bb9f93, - 0x5aaa7de0, 0x00018d, 00000000 + 0x5aaa7de0, 0x00018d }, { 0x895dc129, 0x2f8ce7df, 0x38af5a1d, 0x7ecdc325, 0xf5b3d51a, 0xab40bf14, 0x7af71f5, 0x492733b0, 0xa3b906ff, 0x1f38d1ac, 0x7f15f190, 0xf2520d2a, 0x76a5be6e, 0x5e36960e, 0x44b5ebb7, - 0x4660c5f5, 0x0001bd, 00000000 + 0x4660c5f5, 0x0001bd }, { 0xadb27884, 0xdb3dddcc, 0x3995d61a, 0xc7b4c9b5, 0x8c9a0eed, 0xef994b70, 0xeb5818a4, 0xb1dfe78c, 0x90c19d02, 0x7a46480b, 0x1d16ad3b, 0x4a23600, 0x7262a8f7, 0x5604f1a3, 0x9791cb54, - 0xdc28f8dd, 0x000153, 00000000 + 0xdc28f8dd, 0x000153 } }, { @@ -68410,19 +68408,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x30381c07, 0xabfa9e2b, 0x5205bcd0, 0x959ce807, 0x1fbab41e, 0xfdc8c38, 0xa7777bc, 0xd08df9b7, 0xa19f21ab, 0xb2504840, 0x9b99539a, 0xcac0f2d, 0x2b4a080, 0x1b5f7771, 0xaf3864c0, - 0xd6b90f26, 0x0001e1, 00000000 + 0xd6b90f26, 0x0001e1 }, { 0x410dc085, 0xabf90639, 0x42f78e49, 0x9d065048, 0xad51aac9, 0xcc14ed8f, 0x263717b8, 0x134e1726, 0x4c0c7b03, 0xd112ac18, 0x607df4fb, 0x3a3e2f5b, 0x8855eccd, 0x95bc6296, 0xc6ce731e, - 0xd462f7e, 0x0001de, 00000000 + 0xd462f7e, 0x0001de }, { 0x85c4b64b, 0x95928f3c, 0x96e5fb7e, 0x6ed6297e, 0x23d3e60f, 0xb661588b, 0xa3e03fd0, 0x6059bed2, 0xfa5ada5e, 0x881abbdf, 0x833c9d98, 0xdd980ad, 0x99fed51b, 0xe4d972a8, 0xd19ae54e, - 0xa29bed86, 0x000091, 00000000 + 0xa29bed86, 0x000091 } } }, @@ -68432,19 +68430,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x756ad3ed, 0x159bcbcd, 0x56fdd223, 0x51a944c, 0xce57fb0b, 0x92ac337e, 0x78906c42, 0x78ec927e, 0xf8186e63, 0xef0a7da1, 0xd9100d64, 0xbea0fb78, 0xc6b590f7, 0xac528fe8, 0x353cf5ea, - 0x7395800, 0x0000ef, 00000000 + 0x7395800, 0x0000ef }, { 0x13b1040f, 0x49c53e0c, 0x5371ae49, 0x8e5dadd6, 0xeded815, 0xf8739c24, 0x2f365e9c, 0xb228b354, 0xebf1295f, 0x21ebfe17, 0x3888ad34, 0xd1cf685d, 0x3e766fb5, 0x34feb69, 0x99a997af, - 0xa4fc57c6, 0x000074, 00000000 + 0xa4fc57c6, 0x000074 }, { 0xd15b315, 0xe4ea75e1, 0xd3bda1fc, 0x27b36237, 0x7a81be23, 0x340e039, 0xbfb0712e, 0x66b76f1f, 0x3457500d, 0x76575bb0, 0x92d33d84, 0xa38296c6, 0xa8fcae26, 0x95e112ac, 0x9e57030a, - 0x853e7e00, 0x000116, 00000000 + 0x853e7e00, 0x000116 } }, { @@ -68452,19 +68450,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x601af029, 0x86aaff67, 0xb97650cb, 0x1e997b87, 0x7d9208fe, 0x63e51cad, 0xc3fc3658, 0xd7b66152, 0xd6ed745b, 0xb3832836, 0x163e9c39, 0x557cb9dc, 0xc8c54a3e, 0x3c62df55, 0x8ed2c4bd, - 0x65e6630e, 0x000169, 00000000 + 0x65e6630e, 0x000169 }, { 0x4b1eb811, 0xd4781deb, 0x5a91b8e3, 0x91d33a73, 0x1dff328, 0x2b80bbb, 0x2d994872, 0xbcbdca3a, 0x6660a2a, 0x62cb99f1, 0x3021da03, 0x9c05d03b, 0x5e343ac0, 0xb155b115, 0x1bf868ea, - 0x59e76baf, 0x000110, 00000000 + 0x59e76baf, 0x000110 }, { 0x3d9d1a5c, 0x4e77e8b0, 0x7b5de942, 0xa5b9a081, 0x3cb09c94, 0xe1c2bbcc, 0x7a607560, 0xba074a67, 0x3656a40e, 0xd4921238, 0x3f13b9a8, 0xfc6eedd8, 0x67a4549f, 0xd67a3503, 0xb5f94dd0, - 0x1c59d47b, 0x0000cc, 00000000 + 0x1c59d47b, 0x0000cc } }, { @@ -68472,19 +68470,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb9cffa34, 0xf39a41d4, 0x6b567e37, 0xee3d186f, 0xa44a34e7, 0xc5e0d127, 0x4114bca0, 0x18433533, 0xc7241064, 0xe7cc70bb, 0x90cad044, 0x347be146, 0xcc62bb7e, 0x2ea344a7, 0xff8c245a, - 0xc6fe5786, 0x0001d3, 00000000 + 0xc6fe5786, 0x0001d3 }, { 0xbc19a2c4, 0x35d4f9bd, 0xc5e91ee7, 0x1f72653f, 0x4259a986, 0x63647e4e, 0x7c97da01, 0x28abfbc, 0x68e82cc9, 0x264bb6c0, 0x7a5768b9, 0xa50fec48, 0x3dd139a4, 0x5c76ce0, 0x221d1484, - 0xc3514d59, 0x000165, 00000000 + 0xc3514d59, 0x000165 }, { 0x6ae2802f, 0x81e3edd3, 0x2ae19859, 0x7d0a3349, 0x956e3e42, 0x751b289d, 0xaf558718, 0x88a015cb, 0x98de6f0c, 0xa21a5b1c, 0xa8866494, 0x2703af64, 0x6bf1c45b, 0xaddfdc62, 0x4ebc1d69, - 0x7860984b, 0x000111, 00000000 + 0x7860984b, 0x000111 } }, { @@ -68492,19 +68490,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3055d2d2, 0xe3842f6d, 0xe279c0f8, 0x4cf18a39, 0xfbc4abf5, 0x6c9360bf, 0x5240ae61, 0x6c1573bc, 0x3060ad2, 0x72f76f8c, 0x30fa4964, 0x1d8d2f0, 0xd65cfcd8, 0x593701ac, 0xa5e1ade8, - 0x6d533351, 0x000093, 00000000 + 0x6d533351, 0x000093 }, { 0xa7567f89, 0x33011e82, 0x5d17dc87, 0x8195c74e, 0x4f7c4bcf, 0x84da9397, 0xfc5d0ca0, 0xa3e5685, 0xf04b3a63, 0x7f5806de, 0x2ec54113, 0xd2e64322, 0xb33d769e, 0xc3d7fa43, 0x53cc643d, - 0xb5072aa8, 0x0001dc, 00000000 + 0xb5072aa8, 0x0001dc }, { 0xec64a2e5, 0xac1fa173, 0x8ce31a48, 0xa6eafc53, 0x360becc8, 0x139be90a, 0x7c1d0886, 0xabc675ac, 0x906a8f95, 0x6c0e5c2c, 0xe0fca0af, 0xf94ce0de, 0xd61a67f8, 0x57b127e0, 0x3879244a, - 0xd4e0c4cf, 0x0000ca, 00000000 + 0xd4e0c4cf, 0x0000ca } }, { @@ -68512,19 +68510,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe476db14, 0xe62ba0a4, 0x93bda74a, 0xc5a81266, 0x811ab531, 0xe7ecc42b, 0x35bf5c70, 0xd65897e9, 0x486fd74, 0xc917ce54, 0x40d2cb89, 0xd65be0ef, 0x43e8d9d8, 0x41b77621, 0xb847638b, - 0xb519f029, 0x000090, 00000000 + 0xb519f029, 0x000090 }, { 0x391e41fb, 0x53f45257, 0x50efe190, 0x65263fd4, 0x17d17ef8, 0xad89f814, 0x381ca67a, 0xc0e8a65a, 0xd434fff0, 0x89fc62ff, 0x8a19ee26, 0xde9cf9ae, 0xa31178fc, 0x405ffe62, 0xc88d92d7, - 0x525473db, 0x00002a, 00000000 + 0x525473db, 0x00002a }, { 0x1b943479, 0x2c679595, 0x2057bd75, 0xe6f5b56f, 0xde119012, 0x7cd5b687, 0x27ea14d0, 0x62a53372, 0xa5d010ee, 0x3806de10, 0x73725c57, 0x6889ca37, 0x55c99f1f, 0xd72f2cc9, 0x2f0c209e, - 0xd86d9d7, 0x000054, 00000000 + 0xd86d9d7, 0x000054 } }, { @@ -68532,19 +68530,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x159d74d4, 0xc842c107, 0xbede2316, 0x2cd0e28, 0x7c0491fc, 0xaebb84d2, 0xc7f1385f, 0x9112930d, 0x99dc57ed, 0xadbd6bad, 0x3d4999d, 0x3a214c0e, 0xc9f621c5, 0xc5264a3e, 0x103957da, - 0x862ef120, 0x000024, 00000000 + 0x862ef120, 0x000024 }, { 0x334c601e, 0xcd86ceff, 0x2d7ffd33, 0xed18e48d, 0x35f0f189, 0x71e16d4, 0xe77d14e2, 0xf87afd07, 0xf3c38296, 0xacc7b037, 0xa78b5f1c, 0xfb181664, 0x9c9a29f2, 0xfc8134ba, 0x7d9934ed, - 0xee49cdca, 0x00005c, 00000000 + 0xee49cdca, 0x00005c }, { 0x87b21a44, 0xf12b7fbf, 0xddac9117, 0x467e173a, 0x189e1784, 0xe847a7, 0x8af8a175, 0xecd4388e, 0xebe9d653, 0xe215da4f, 0x74eb4c6, 0xba6aa572, 0xa3965fda, 0x24336306, 0x8c890a03, - 0xa2334f76, 0x000008, 00000000 + 0xa2334f76, 0x000008 } }, { @@ -68552,19 +68550,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe578bf94, 0xa3e04654, 0xe33d6b2e, 0x1de2bc10, 0xe80f71eb, 0xd1929719, 0x8f5542d2, 0xbe4a8f91, 0x56799982, 0xea8d1fd5, 0xa42bcc82, 0x24288006, 0xfcae34b8, 0xf952fe90, 0x4da474db, - 0xdc6f3acf, 0x00014f, 00000000 + 0xdc6f3acf, 0x00014f }, { 0x9e968824, 0x136c2f9a, 0xb6c28696, 0xba076a6e, 0x63ed9662, 0x424f5ee8, 0xf34eca1a, 0xb75aeab8, 0xac74bf74, 0x4a2f5299, 0xdfce269f, 0x406c057c, 0x41c4c88f, 0x29b0c0, 0x70cc0fe, - 0x9e8122b6, 0x00002e, 00000000 + 0x9e8122b6, 0x00002e }, { 0x2154dfad, 0x7c252662, 0x6787f048, 0x5776bad2, 0x5af75964, 0xb8b3b25d, 0xac523b33, 0x82bdfa8b, 0x94857548, 0x38eb5798, 0xb124d886, 0x84469ae2, 0xdc6624c6, 0x8611a669, 0xa8a43461, - 0xbf598dae, 0x00017c, 00000000 + 0xbf598dae, 0x00017c } }, { @@ -68572,19 +68570,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb637ae74, 0x8d65f736, 0x6992b909, 0x820606fd, 0x9fc6cef7, 0x18b94732, 0x5fa344de, 0x20b4d265, 0x591ed201, 0xe6a96181, 0x47761ccc, 0xde96db41, 0xdbc5baf0, 0xd22deedd, 0x7a197e19, - 0x33de7fe3, 0x000067, 00000000 + 0x33de7fe3, 0x000067 }, { 0xf208fd44, 0xb431315b, 0xd9e46890, 0x3a35bc9f, 0x58fdd165, 0xc763490f, 0x26cd03d2, 0xee6be899, 0x108d2e77, 0xe199f71d, 0x43ed4be4, 0x8bbf1c56, 0x8e4af815, 0x8b7e10f9, 0xdeedd5dc, - 0xd016eb12, 0x000174, 00000000 + 0xd016eb12, 0x000174 }, { 0x87372dc6, 0x6d2c852, 0xb68bb115, 0xfdb888ca, 0x1c181d07, 0xb23bfb05, 0xf1a297c2, 0xe9272ef9, 0x23932cf9, 0x4c1bbc95, 0xc00915c3, 0x9f71f659, 0xcb4ae62d, 0x11f2126, 0x12857410, - 0xbb393729, 0x0001d3, 00000000 + 0xbb393729, 0x0001d3 } }, { @@ -68592,19 +68590,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x22ed09b6, 0x1f642976, 0xe67a87b4, 0x210de62b, 0xc1946577, 0x6de36db7, 0x8423d1dc, 0x79c6add3, 0x4194e299, 0x2734053e, 0xbe54f034, 0x667f1f0d, 0xc590870b, 0xa5083840, 0x53d8a503, - 0x19769084, 0x0000fb, 00000000 + 0x19769084, 0x0000fb }, { 0x3a8e6897, 0x76a74e3c, 0xd8aee82f, 0xc73c76a5, 0x6dc947df, 0xb804298c, 0x4edd39d4, 0x1e73ec4f, 0x5fd4b050, 0x3c7d4480, 0x25ddc8a3, 0x27a85c8d, 0x32404964, 0x43817b1c, 0xbb8b5e14, - 0x22e8f04b, 0x000015, 00000000 + 0x22e8f04b, 0x000015 }, { 0xea187f87, 0x747186dd, 0xb191494d, 0x11ee28ab, 0xe52e4e66, 0x32292885, 0x6d450a46, 0x4b2257f6, 0x3faf1b13, 0x8ef2bbe4, 0x559d5d91, 0x5881839c, 0xf84cbdd1, 0xd95e3ff3, 0x3724bcdb, - 0xbf480765, 0x00008e, 00000000 + 0xbf480765, 0x00008e } }, { @@ -68612,19 +68610,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x204856aa, 0xd9aebc39, 0xbd0cb9d7, 0x9b2caa0e, 0x7961e7c6, 0x681e0c5, 0xd0c9ebb, 0x94bceed, 0x85e264a9, 0x4e30c570, 0x121b81ed, 0x57356341, 0xf657cae6, 0x97f558d6, 0x76ddafd9, - 0x26bd5594, 0x000142, 00000000 + 0x26bd5594, 0x000142 }, { 0xa278b272, 0x5369a759, 0xe2aefd47, 0x6960798c, 0xff922dce, 0x72371238, 0x60329add, 0x7b0c361e, 0x63d6ac99, 0x89892a49, 0x35508e96, 0x5bb84a56, 0xeded4938, 0x353dfcfb, 0x5adce0ac, - 0x85448498, 0x00016d, 00000000 + 0x85448498, 0x00016d }, { 0xdb555a0b, 0x5a331004, 0x60ae7541, 0xc6dd24aa, 0x99d7412, 0x37584208, 0x5eab4692, 0x93c9efbe, 0x1eace536, 0xc38ed3ee, 0x2ee25298, 0x4bd53989, 0x78ade433, 0x9a31156c, 0xbb6b1863, - 0x61632f48, 0x0001e4, 00000000 + 0x61632f48, 0x0001e4 } }, { @@ -68632,19 +68630,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6a5b9a4d, 0xbaf17453, 0x1f5c938d, 0xa843864c, 0xca06ef19, 0xcbaf69b8, 0x7f4ca57f, 0xc0d3c5b9, 0x4fb6e59e, 0x6176ace6, 0x4883b228, 0x337b928d, 0x186ef045, 0xe69bd3fe, 0xf906d91c, - 0x300482c6, 0x0000c6, 00000000 + 0x300482c6, 0x0000c6 }, { 0xc18ac8d, 0xd7bd9d8f, 0x4048d008, 0x38bcd5c6, 0x5d5fc8ff, 0x7b364faa, 0xcdae23c9, 0x526b6430, 0x91d1086d, 0xcba0e248, 0xa73973e0, 0x1412f662, 0x9704b950, 0xd0e66340, 0x560a11, - 0xdd72baa1, 0x000186, 00000000 + 0xdd72baa1, 0x000186 }, { 0xd8180b80, 0x8c7efa79, 0x3e521552, 0x8a1678c8, 0x53d5818b, 0xc94d7460, 0x7fa62b9f, 0x74e3b57c, 0x8504d465, 0x4f9427b7, 0xbcad91d6, 0xc94b06b2, 0x1ee59b5d, 0x802fba1e, 0x1b6fbb6f, - 0x3b8b9f63, 0x00018e, 00000000 + 0x3b8b9f63, 0x00018e } }, { @@ -68652,19 +68650,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe6ed24ff, 0xa80b0b50, 0x3c0d1189, 0xf8bf2b08, 0x378b7f25, 0xc36fc6c8, 0xc3df518, 0x200521fc, 0x3303bd38, 0xd487ae5, 0xf8539554, 0xd7aa3b3e, 0x5c442d5f, 0x995570cb, 0x69ed1273, - 0xff2a0e69, 0x000171, 00000000 + 0xff2a0e69, 0x000171 }, { 0x87e48e96, 0x15c174e8, 0x40318bf3, 0xe7eae6f6, 0xa8ef2534, 0x6c535b4b, 0x9fffa986, 0x82ba38a8, 0xe5ade80c, 0x1bee9fea, 0xd5bee352, 0xe7f5cef2, 0x6493b8f5, 0x242652f0, 0x4a0b48cb, - 0x705e6326, 0x000188, 00000000 + 0x705e6326, 0x000188 }, { 0xf02df1e4, 0xb1b0ba9b, 0xf6757a78, 0x127f9bc1, 0x7fe166d5, 0x469e0b9, 0xb26645c4, 0xcb6dcd3b, 0x5a43e76b, 0x3e5932ee, 0x22c79936, 0x9454fea7, 0x32673c7a, 0xfeb79833, 0x9d93b8f1, - 0xe1f2c1e3, 0x000137, 00000000 + 0xe1f2c1e3, 0x000137 } }, { @@ -68672,19 +68670,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd815b2c, 0x337ee254, 0xb3521b9c, 0x7f99ad1f, 0xc08b9bd6, 0xa8b4a1a4, 0xd0cb33f7, 0xaeada8ee, 0x6c8e34e8, 0xdd9fcc5c, 0xcd73498e, 0x8d7c59a9, 0x28142de0, 0x2125b37b, 0xccd95b8a, - 0xc46e21f2, 0x000186, 00000000 + 0xc46e21f2, 0x000186 }, { 0xd129a04a, 0xf91fb11a, 0xe52ec1e9, 0x30ab5f9, 0x28f1b02a, 0xc6cf8162, 0xe8389c2a, 0xf71f0c4, 0xa1f9ea31, 0x3b717e3f, 0x4631780f, 0x46dad0c6, 0x20428325, 0x78fae9e9, 0x1492ab73, - 0x76c2e1f6, 0x00013a, 00000000 + 0x76c2e1f6, 0x00013a }, { 0xfd73a590, 0xc8624b15, 0x96e87c99, 0x34d609f4, 0x2ef25cd0, 0xddd9c212, 0x595f6b33, 0xa22472e4, 0x28f0404, 0xb80492b0, 0x7244cbd4, 0x7348e46f, 0x2073871, 0x9b5236, 0x1b57c153, - 0xdb1615c9, 0x000115, 00000000 + 0xdb1615c9, 0x000115 } }, { @@ -68692,19 +68690,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x52c6d099, 0xb30efc9e, 0x6cdb3068, 0xaf8e085e, 0xe7544b92, 0x7fea91f8, 0x3af67edf, 0x7c2e1e8d, 0x5a96fe0f, 0xb9bfdd7b, 0x1afbc623, 0x96bc7e72, 0xed6eb5c6, 0x7ff51641, 0xba47d4f5, - 0x6eae0f9, 0x0001b1, 00000000 + 0x6eae0f9, 0x0001b1 }, { 0xc2cb857c, 0xadfc4f19, 0x23515e0c, 0x8f3389e4, 0xcfa4966a, 0xdc09df41, 0x9f0dc020, 0xe6a19268, 0x989d80bc, 0x766cfea4, 0x2018da41, 0x57cd622b, 0xdf644d10, 0x83fc6cdd, 0x32ce19a5, - 0x65e311a, 0x000174, 00000000 + 0x65e311a, 0x000174 }, { 0x9a219e71, 0x97b74485, 0x85361175, 0xe2071119, 0xefe4ab91, 0xd8cf2e3c, 0x1277e73f, 0x9f2b5fe3, 0x9e855054, 0xdc489983, 0xe2f884cd, 0x62c728aa, 0x9415de1, 0x6d10d203, 0xe4c20d0a, - 0xe5573717, 0x00016b, 00000000 + 0xe5573717, 0x00016b } }, { @@ -68712,19 +68710,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa911b8b3, 0x757f9a02, 0x921039fc, 0xaf1a91b8, 0x45d9664, 0x7d29206b, 0x443eac99, 0x5a278060, 0x38871252, 0xdd12e68b, 0x95a971a8, 0xf865dc20, 0xd9fdf20, 0x1a428fb4, 0xc6d3dbb2, - 0x89cb048d, 0x00017d, 00000000 + 0x89cb048d, 0x00017d }, { 0xa431aedd, 0x57f2bdb1, 0x7fa74df2, 0x9f434d2f, 0x2d819f5c, 0x48779563, 0xdc2f192b, 0x8029e37c, 0xef1fb53c, 0x2fcef039, 0xee8bd680, 0xb7f01c16, 0xe0c0a2f1, 0xe7585f0a, 0xdf74e266, - 0x438068bd, 0x0000bd, 00000000 + 0x438068bd, 0x0000bd }, { 0xc5cdad68, 0xb1d17767, 0x9c131874, 0xe9b10612, 0xf3543f1f, 0xc30e942e, 0x9bcbcf49, 0x554c7482, 0x2056bb09, 0x75c8aa6a, 0x5e5f622a, 0x1a082383, 0xc4581d4d, 0x1124db1f, 0xdaac7364, - 0x21370319, 0x000197, 00000000 + 0x21370319, 0x000197 } } }, @@ -68734,19 +68732,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6460ba03, 0x950db504, 0x91ec33aa, 0x3a042992, 0xd7569077, 0x9ab0613e, 0x82e1bb7f, 0x507aba5e, 0x530912f, 0x117bb1cc, 0xdf99c9d7, 0xf5e09e65, 0x76c75bb6, 0x5f6d67ad, 0xad4d989, - 0x173ac7e5, 0x0001bf, 00000000 + 0x173ac7e5, 0x0001bf }, { 0xbb76168, 0x83d97d7a, 0xdd85b45f, 0xd79a4489, 0x2327bfd4, 0x4f0bc141, 0xa949de8f, 0x91158063, 0x48ca61b2, 0x3990b855, 0x91eb557, 0xce8f1ba7, 0x2fa37ab0, 0x966b9fd, 0xd4c6ca85, - 0x3863d484, 0x000175, 00000000 + 0x3863d484, 0x000175 }, { 0x3089dfa2, 0xe1157160, 0x29665659, 0x2c48f7f4, 0xb8f7784a, 0x20f1903c, 0x8f4e0a54, 0x465955b6, 0xfecbb392, 0xdd870aba, 0x6d7468c9, 0x687bb113, 0x60511b65, 0x815c06bc, 0x6e11ce9, - 0x5c35c405, 0x00015a, 00000000 + 0x5c35c405, 0x00015a } }, { @@ -68754,19 +68752,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21140c0a, 0x6409ee3c, 0x415fba4d, 0x45f4d55b, 0xd91d5c02, 0xd97f30d6, 0x3674204f, 0xfeae831d, 0xdf7a3722, 0x667f043, 0xac40b3b1, 0xc9e5e9ec, 0x93972a26, 0x66ebb516, 0x9e1bad10, - 0x57b145a4, 0x00006c, 00000000 + 0x57b145a4, 0x00006c }, { 0xe362686d, 0x3992aa4, 0x12e36561, 0x200fce78, 0xbe2440a8, 0x6faea2e7, 0x502cc37a, 0xdc3500fd, 0x9cb82eba, 0xc1ee6631, 0x6c102e1, 0x94e1adfd, 0x5c9e9a06, 0x6e8002a8, 0x906d2e53, - 0xcb8a5488, 0x00005c, 00000000 + 0xcb8a5488, 0x00005c }, { 0x916b94d6, 0x9c15f70c, 0xc5e445fc, 0x82c30a2e, 0xe2baa932, 0xc1b5d334, 0xb311a11e, 0xcda89553, 0xae3c8ca1, 0x4e65b851, 0x3e918ec6, 0x5ce51b79, 0x90550e98, 0x2a11e0bb, 0xb6a72f5a, - 0xc7c5b139, 0x0000f9, 00000000 + 0xc7c5b139, 0x0000f9 } }, { @@ -68774,19 +68772,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40002e7a, 0x35984fc9, 0xa439a2c, 0x4babdb7b, 0x75505832, 0x483ebd2, 0x5b2fa7fe, 0x1d487556, 0x802d4e8, 0x4b0bb4a2, 0x1c02f728, 0x7f6e8641, 0x7fe981c5, 0x3ee6d7a, 0xc6f48edb, - 0xdaf18244, 0x0000d5, 00000000 + 0xdaf18244, 0x0000d5 }, { 0x88ced9bd, 0x8d1b4cbb, 0x721bff4, 0x84a80703, 0x271b9a2b, 0x9f2445a3, 0x4ba2cded, 0x5e04a0ca, 0x3ddd4a73, 0xfed48a2e, 0xed860b38, 0xfe52941e, 0xcb107752, 0x73e9674f, 0x7d5c605d, - 0xcc627ef5, 0x0001ae, 00000000 + 0xcc627ef5, 0x0001ae }, { 0x5cef34e, 0xf1d1ca1f, 0x5f0ce09c, 0x1e49c3e3, 0xbfefc0e6, 0x7b9104ef, 0x97d70270, 0xcbc43da, 0x2fe79186, 0x331b5944, 0xd3cdc9c2, 0x756db0ee, 0x2f02d5b3, 0x49edcd27, 0x81d87ac4, - 0xa22de4f1, 0x00015b, 00000000 + 0xa22de4f1, 0x00015b } }, { @@ -68794,19 +68792,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1ffb06cd, 0x198ea8e9, 0x74cfb7fa, 0xc1779fbb, 0x99d046b3, 0x24f942d9, 0xd7c10311, 0x6844bb83, 0xea0de03f, 0x88fd7417, 0xa24b6821, 0x45e47027, 0xe38724b0, 0x364b51d7, 0x77f2442f, - 0x795a8b1, 0x0000b7, 00000000 + 0x795a8b1, 0x0000b7 }, { 0xff0b6818, 0xdea73a92, 0x6f53bcf7, 0x95da9b3c, 0x2dabf2f8, 0xdc1fa45c, 0x91f6dc89, 0x3a5ad432, 0xf6088661, 0xb07b729, 0xf9a9b452, 0xcc3d124, 0x8158b1cf, 0xe228f407, 0x102455b8, - 0xf9c5f737, 0x0001d3, 00000000 + 0xf9c5f737, 0x0001d3 }, { 0x4dae6b94, 0x7c571508, 0x6eb951ab, 0xe0360bdd, 0xa2246456, 0x434134c2, 0xf621fa3e, 0xef35c313, 0x1a78c1d3, 0xb231805e, 0xed1411e1, 0xb803b9a5, 0xaacb20e7, 0x91f2e214, 0x86b3b9c1, - 0xccf5f09e, 0x0001e3, 00000000 + 0xccf5f09e, 0x0001e3 } }, { @@ -68814,19 +68812,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x927a1b1a, 0xa2c03695, 0x199fb455, 0x3851e2e4, 0xc5bac344, 0x944df3ab, 0xebc299ab, 0x4c7d5b90, 0xfc4858d7, 0x6b1ee029, 0x770fe0bc, 0x78d0a437, 0x15c2764e, 0x34895367, 0x7e493fac, - 0x27d5452, 0x00002f, 00000000 + 0x27d5452, 0x00002f }, { 0x54820d21, 0x155af688, 0x1810f70e, 0xc14af946, 0xf30342a9, 0x8c750614, 0x84d80d23, 0x880a095c, 0x83a7167, 0x7df4930f, 0x8633a49d, 0x4a5282bb, 0xdd899375, 0x236c20e1, 0x5642241e, - 0x5a1dca92, 0x0000cb, 00000000 + 0x5a1dca92, 0x0000cb }, { 0xa9850d89, 0xbf436f5, 0x3507f688, 0x1e13af20, 0x95f9135c, 0xbdf00d57, 0xa62c9de5, 0xa506418f, 0xe0ffb580, 0xd57b20de, 0x97dcd0f9, 0x3d4de19d, 0x9c9b56f8, 0xb3add31b, 0xe1413252, - 0x2719f98e, 0x0001d4, 00000000 + 0x2719f98e, 0x0001d4 } }, { @@ -68834,19 +68832,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x15d68bcc, 0x5c9b6e94, 0xd8725a5d, 0x944636f9, 0xd2d152a1, 0x41a176d0, 0x395552c7, 0x75656036, 0x9ea32e7c, 0xf281bd0d, 0x56817e66, 0xc66dc070, 0xab1821a, 0xdb68fa7f, 0x52b62be3, - 0xccdd50a0, 0x00007d, 00000000 + 0xccdd50a0, 0x00007d }, { 0x687de2dc, 0xeb395ae4, 0xf3aa347c, 0x556cef9e, 0x8610ef39, 0x1b50d224, 0x5328dd99, 0xc6e4e55, 0x20d39ec4, 0xe8481e50, 0x8c704c59, 0x6b458a51, 0x14fd3528, 0xe3dfff2b, 0x97a6f03f, - 0xa347f101, 0x000099, 00000000 + 0xa347f101, 0x000099 }, { 0x240b826f, 0xbad9716c, 0xee0941f7, 0x26db8089, 0x920c85d3, 0x7d0e0fbb, 0x7642a49a, 0x8aec6b2a, 0xbda31405, 0x9d0789cb, 0xd6bd5c85, 0x39c6e1d0, 0xfea84f33, 0x8671ca19, 0xf5900ec6, - 0x55227ede, 0x000064, 00000000 + 0x55227ede, 0x000064 } }, { @@ -68854,19 +68852,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4b962d59, 0x2396b7b4, 0x1549b925, 0x93fe24f9, 0x8ebb4424, 0xe21fa3f5, 0x7a474fba, 0x4bedbd12, 0x63de3c9b, 0xa9bf79c5, 0xc7b363e2, 0xdae68046, 0x9342fd3f, 0xeb2a7731, 0x5f1bdf2d, - 0x11281386, 0x0001b2, 00000000 + 0x11281386, 0x0001b2 }, { 0x546def7e, 0xfbcda32d, 0x70f5aea, 0xe33b77df, 0xd4c4003d, 0x35ba45e6, 0x93df9d77, 0x3e49d8a4, 0x6d152af6, 0x70d7eff, 0xe25c146f, 0xa5c60741, 0x2983af0a, 0xdbffb193, 0xfe481064, - 0x5eedc319, 0x000073, 00000000 + 0x5eedc319, 0x000073 }, { 0x3e8a70be, 0xd51495d5, 0x7cc69da, 0x84eb3f23, 0x205b09b7, 0x1e128a71, 0x80bd7273, 0x1405cd93, 0x4621a8be, 0x70b2c342, 0x5cffa5de, 0xfd3c5ac7, 0xa725658e, 0xa2e1457f, 0xf31fbad5, - 0xa95170a8, 0x000147, 00000000 + 0xa95170a8, 0x000147 } }, { @@ -68874,19 +68872,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x31ad98eb, 0x1eac0e27, 0x916349b7, 0xb0ba9d28, 0xaa782617, 0xe7a03d95, 0xbbb5c75e, 0xc7afcf53, 0x8789dd97, 0xd6c523bb, 0x75feac6a, 0x5494e482, 0x7c3da52f, 0x1d1a08f2, 0xa56cff63, - 0xabab7bfa, 0x0000e6, 00000000 + 0xabab7bfa, 0x0000e6 }, { 0x4909d00b, 0xc82bb958, 0xeded0b38, 0x72596294, 0x8e23a7f0, 0x908791bb, 0xb58ce9f, 0x4b08f45c, 0xc82a7d42, 0xbe14226c, 0x26e2175d, 0xd0d28820, 0xcc4495b, 0xaa51e583, 0x499062fb, - 0x3a8fccaf, 0x0001a2, 00000000 + 0x3a8fccaf, 0x0001a2 }, { 0xbee1f965, 0xe7043694, 0x7563083c, 0xe7cc442, 0x391ad13f, 0x3cc7804a, 0x2f64da7b, 0xd63f78fe, 0x8b32fb83, 0x88724d09, 0x86948707, 0x98e97e36, 0x632f378c, 0x84887ed0, 0x96a05ba2, - 0xb7b287c2, 0x0000c5, 00000000 + 0xb7b287c2, 0x0000c5 } }, { @@ -68894,19 +68892,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x83ef318a, 0x7473597f, 0x57a5bf1b, 0x97af15f, 0xcae6df2, 0x1bdef9a3, 0xe881636f, 0x5f808d38, 0x194be8ef, 0xbd69ead3, 0x46cdba9b, 0x2c727658, 0x40961ff5, 0xe0983c92, 0xd0c283c5, - 0x2a1c1c9b, 0x000001, 00000000 + 0x2a1c1c9b, 0x000001 }, { 0xd348547a, 0xde2569a7, 0xbc956e6, 0x572f8dd8, 0xcebeb8bd, 0x1b21997c, 0x88323635, 0x5576161e, 0x4fce9b3a, 0xacbcea48, 0x8017b03, 0xc94c2097, 0x906fa9a8, 0x6c07ff13, 0xe51ac56, - 0x37602d4e, 0x000085, 00000000 + 0x37602d4e, 0x000085 }, { 0x4f35fab2, 0x61cfbc1f, 0xeab10483, 0x4cd613b7, 0x78be514f, 0x3caba7ed, 0x9b16208a, 0xaaf2f3bc, 0x771daca3, 0xb367b9be, 0xf2cf1c7c, 0xa3231517, 0x65d92edf, 0x697f3c66, 0x637aae4e, - 0x86acba67, 0x0001d2, 00000000 + 0x86acba67, 0x0001d2 } }, { @@ -68914,19 +68912,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa6fa068c, 0xabea5630, 0xb5276650, 0x9bd99e04, 0x374d1cd6, 0x23bddaab, 0x1eac6a4a, 0x1920db9b, 0xc9dd988d, 0xd3c03669, 0x26eeddae, 0x1cc80387, 0xbb0cc975, 0x56abb861, 0x9ccd76c3, - 0x780ae81d, 0x00012d, 00000000 + 0x780ae81d, 0x00012d }, { 0x3f0bca22, 0x9ac09308, 0x853cdc00, 0x8984d6ec, 0x5c56a527, 0xc3ecedd, 0xe255d70b, 0x1032f23d, 0x457254d9, 0x85b2d89d, 0xfb6ed796, 0x469fdb9, 0x7ffb1aac, 0xc385c0de, 0x5342948, - 0x76bb54fa, 0x0001a9, 00000000 + 0x76bb54fa, 0x0001a9 }, { 0xa907f068, 0x5bb78bb4, 0xbe765bb0, 0xb5dc52af, 0x758e8562, 0x53cb0e86, 0x8b47e5a1, 0xa0c6ec78, 0xe5e521b7, 0xcff962bf, 0xfd7605b0, 0xece9a49b, 0xcce1debb, 0x176d2409, 0xa5ba90aa, - 0xea9fb98c, 0x0001fc, 00000000 + 0xea9fb98c, 0x0001fc } }, { @@ -68934,19 +68932,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x966e9c86, 0xaf14bd6, 0x18fc5819, 0x1b1d6629, 0xca841aef, 0x63d4b866, 0x6987a858, 0x883520ba, 0xd4b70dd, 0xc0ab0e37, 0xf0aca313, 0x9b0c6110, 0xab0c4a4a, 0x323a2413, 0x7ae2a887, - 0x8bd11c87, 0x0001b9, 00000000 + 0x8bd11c87, 0x0001b9 }, { 0xf7e20643, 0x5d16f0b6, 0xc0b3e0b3, 0xc1c32b85, 0x774cf3d1, 0x7e2fc0e7, 0x4ee76053, 0xf2944d04, 0x97d2b1ff, 0xf841ff2f, 0xa3bccbcf, 0x9e98fbb2, 0x5922d978, 0xaf00f778, 0x48026213, - 0x78354f78, 0x00008c, 00000000 + 0x78354f78, 0x00008c }, { 0xec728d7, 0x4df61965, 0x9353e579, 0x800a3db, 0x6593d6b5, 0x89aa358f, 0xfdc9cbc5, 0x5ca70c70, 0x7f85189, 0x14fc1d7a, 0x6357a44d, 0x1139af55, 0xba39d09e, 0x5c4927f2, 0x7c803f89, - 0x59dbd24c, 0x000139, 00000000 + 0x59dbd24c, 0x000139 } }, { @@ -68954,19 +68952,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x594de408, 0xf2028b6d, 0xb7e9a166, 0x61156357, 0xdeb93b99, 0x996aaaf2, 0xfc1ff1e8, 0xb0ed117e, 0x7610ba41, 0x70b551dc, 0xad311bcc, 0x8f412078, 0x7b2c5ddd, 0x919ed1a, 0xcec709c1, - 0xfb327fde, 0x0000c1, 00000000 + 0xfb327fde, 0x0000c1 }, { 0x643137ff, 0x193d47d0, 0x216104cf, 0x717d42bb, 0x8f2e3e4a, 0x5c4bf67a, 0xafdf1b2b, 0x349268dd, 0x1a2011c7, 0xca4c0256, 0x7b87450, 0xd914b568, 0x37ac95da, 0xabe8ec3b, 0x8936d92a, - 0xf129a107, 0x00002c, 00000000 + 0xf129a107, 0x00002c }, { 0x1758efde, 0xc81e8aa9, 0xb9bb2499, 0xed9c788, 0x987733ba, 0x60a210d3, 0x7b9a96a8, 0x161d736f, 0xf8d66c06, 0x14b5c7d0, 0x379a1def, 0x404a4292, 0xa9eebf3, 0xce27b4dd, 0xe8d00304, - 0xcbf559cf, 0x00016d, 00000000 + 0xcbf559cf, 0x00016d } }, { @@ -68974,19 +68972,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7deb6a1a, 0x5b10b32c, 0x3f9ed15f, 0x8db1cbf9, 0x11b41ead, 0x1981147d, 0x87066bda, 0x41cfee19, 0xa94e4c01, 0x2abf9c5c, 0x453084b1, 0x54dbe45f, 0x88c5c4f0, 0x9a833fc9, 0x258707a3, - 0x691da70c, 0x0000a5, 00000000 + 0x691da70c, 0x0000a5 }, { 0xeeeb8be2, 0x833047f1, 0x985b8e47, 0x99613d42, 0xb6aca9be, 0x5ac0021c, 0x22a3a541, 0xfaca7817, 0x7d74191e, 0x6423096a, 0x261649f7, 0xd2c69e49, 0x9b75f7a6, 0xfbdfb23c, 0x72392312, - 0x1b0f13a7, 0x0000fd, 00000000 + 0x1b0f13a7, 0x0000fd }, { 0xde2e14f7, 0xc69e9b55, 0xbfc3da6d, 0x61a0835c, 0xfdf7e116, 0xbe6b2e95, 0x246105a4, 0xa256cc2a, 0x733358cd, 0x16720b63, 0xc33ce38a, 0xbc78dbb2, 0xf3da217e, 0xe25c1b94, 0xa1d23ebe, - 0xd9eee644, 0x0001ac, 00000000 + 0xd9eee644, 0x0001ac } }, { @@ -68994,19 +68992,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3bb768d, 0x1846b28f, 0x5deb2de, 0xa500258b, 0x26b4c9f7, 0x51a1da8, 0x50f91ce5, 0x3f3c5c76, 0xad253f1f, 0x1c4e4ffc, 0x847b66be, 0xa485751e, 0x2c8e3e4c, 0xf28e2f50, 0x56a8c191, - 0x70df1d0c, 0x000137, 00000000 + 0x70df1d0c, 0x000137 }, { 0x47366ea, 0xb365e0dc, 0x8c3f620a, 0xddab491b, 0x6cf85c2, 0x13a74e0a, 0xf723059e, 0xe32a711e, 0x2875f72c, 0x5a9c40a0, 0xafd7f81c, 0xe654d121, 0x637ab89, 0x498febe1, 0x313a79bf, - 0x7d6c0c73, 0x000026, 00000000 + 0x7d6c0c73, 0x000026 }, { 0x26c15aec, 0x50358ccd, 0x4449315d, 0xfd105208, 0xf091c2cd, 0x5f31827b, 0xb4f3faa8, 0x49f75059, 0xa2e1c8f4, 0xd6c0794a, 0x859cc0f5, 0x18c13391, 0xf4b93940, 0xeabb9a7b, 0xde9ee65, - 0xfbbf7add, 0x000107, 00000000 + 0xfbbf7add, 0x000107 } }, { @@ -69014,19 +69012,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8757759a, 0x7b1d811c, 0xdf508f17, 0xb73d2fbb, 0x35faff86, 0xd23f849d, 0x1dd4c939, 0xeeb9d7d2, 0xaeb73b2d, 0xac3e9250, 0x3f14bfa6, 0x74205f7c, 0xad69cafc, 0xe5185e0b, 0x8aada19b, - 0x2a82e9c4, 0x0000d6, 00000000 + 0x2a82e9c4, 0x0000d6 }, { 0x41526155, 0xa1e2cd70, 0xf4e5927c, 0x7162b965, 0x979ee219, 0x67d2ab45, 0xac4c53f1, 0x22c21ac1, 0x4c104e29, 0xe2362c59, 0x6609e8be, 0x4f9206e2, 0x631d20f1, 0xfd1ffbd3, 0x98bfab7b, - 0xc53f3c2d, 0x0000d9, 00000000 + 0xc53f3c2d, 0x0000d9 }, { 0xfba5943c, 0x781c62bd, 0x6a3c8d46, 0x6474706f, 0x3442b1c7, 0x8321f5bb, 0xb3ebfceb, 0x6edf9669, 0x722a7cf8, 0xbc2c55d, 0x93890085, 0xd8904503, 0x30e5e6df, 0xb01b833f, 0xd286efe2, - 0xa7cc6891, 0x000043, 00000000 + 0xa7cc6891, 0x000043 } } }, @@ -69036,19 +69034,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd8e7fc4e, 0x52fb786a, 0x4e158b4, 0x13540e6b, 0x3a5b65b, 0x4dbc28d1, 0x47e25e3d, 0xc4e6aef0, 0x277f1ee7, 0x887138cf, 0xb66e3f83, 0x44e93208, 0x71054a52, 0xcf0fe811, 0xaa8b2ef3, - 0xbfef5794, 0x0001ca, 00000000 + 0xbfef5794, 0x0001ca }, { 0xe49f4404, 0x3ec99f14, 0x396327d5, 0xcc61cfbe, 0xa33c8a0f, 0x41d76cee, 0x10daf6a5, 0xdd37c87e, 0x4bfbdbf3, 0xd3d3e5e8, 0x4aeeb8ad, 0x63398752, 0x9e518213, 0x15899bbe, 0xc9818de1, - 0x2191f73c, 0x000106, 00000000 + 0x2191f73c, 0x000106 }, { 0x60a61b47, 0xa88b2159, 0x9223ca25, 0x5e4f5461, 0x9b45c068, 0x4ea3d695, 0xf5f02884, 0xb163c66c, 0x268649df, 0xed9a5c78, 0x3b174085, 0xf6215498, 0x17bc3ddd, 0x8226415d, 0xb7737e99, - 0x31283293, 0x000139, 00000000 + 0x31283293, 0x000139 } }, { @@ -69056,19 +69054,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40e5a4e1, 0xdb6c7dd8, 0xe6551bc6, 0xde81919c, 0x2b422aad, 0xe7904d94, 0xa48b581e, 0x798f8923, 0x61e38b36, 0xb421b59e, 0x629dfc63, 0x85cd2934, 0x78aa5348, 0x772ea921, 0x97df1410, - 0xce58aafb, 0x00005f, 00000000 + 0xce58aafb, 0x00005f }, { 0xadfb857, 0x609b94d5, 0x410e3aae, 0x67717b19, 0xead1367c, 0x48a0ece2, 0x54015bf7, 0xaa685f5a, 0xac5f095, 0x340275d, 0x3dde5855, 0x48074cb7, 0xda5726ae, 0x86b12342, 0x90df5c5d, - 0x90b6c340, 0x0001f2, 00000000 + 0x90b6c340, 0x0001f2 }, { 0x544d4901, 0xafdc5f8d, 0x50e357c6, 0xe1fa5f02, 0x925c7cf8, 0x4a0a4b91, 0x22bea919, 0xb60b5a9c, 0x2c51271d, 0x77fa442d, 0xdda80439, 0xe402fcb2, 0x45b7fd08, 0x17da1a5a, 0xc25fd7c2, - 0x99e262b3, 0x000146, 00000000 + 0x99e262b3, 0x000146 } }, { @@ -69076,19 +69074,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc19d0f49, 0x88403181, 0x9d32e78d, 0x2672a433, 0x700bf0d3, 0xf6e8f9e6, 0x94853bfb, 0x35b807be, 0x293defbc, 0xa98cf6, 0xbde67f8f, 0xb7ea701f, 0x651d52fa, 0x4ebbe9e7, 0x7812af68, - 0x3739da5f, 0x00009a, 00000000 + 0x3739da5f, 0x00009a }, { 0x13a4e7d7, 0xd9a10aa1, 0x5a735ee2, 0xbc0566a4, 0x16902f4f, 0x753eb484, 0xb8a53fd4, 0xc3110feb, 0xca6dabe, 0x242e3071, 0x9f2a8336, 0xe000fbbe, 0xbb0de039, 0xf3be214e, 0x1a34afd0, - 0xe5df3d63, 0x000022, 00000000 + 0xe5df3d63, 0x000022 }, { 0x8b63f1f5, 0x39bd14a4, 0xecb6614c, 0x5d157006, 0x11ff07c8, 0x631f21eb, 0xfcb78b79, 0x727fca08, 0x5f7dfe07, 0xd7993597, 0x281ac84d, 0xb0726a94, 0x437c6871, 0x9580e683, 0x1f44dcfa, - 0x1db3d1b, 0x00001b, 00000000 + 0x1db3d1b, 0x00001b } }, { @@ -69096,19 +69094,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9292e389, 0x2e030486, 0x66e971b1, 0x23b42ff8, 0xbad3effa, 0xfc1df68f, 0x1ff52319, 0xf11f46ce, 0x8a98217a, 0xb359ffbc, 0x8f65b053, 0x9db2ab84, 0xf4bd5dc2, 0xfc50734d, 0x764c5b7f, - 0xcc543bf5, 0x0000f9, 00000000 + 0xcc543bf5, 0x0000f9 }, { 0x18ae6e47, 0xd0a7913c, 0x2352fd7a, 0xd6128431, 0x8d4a02d8, 0xc5d41f39, 0xfad3f7ac, 0x282dcf84, 0x486ca67b, 0xb539154f, 0x9d518f36, 0xac2fda71, 0xd37c9cb9, 0x15a810cc, 0x2dfd7c00, - 0x67798e26, 0x000002, 00000000 + 0x67798e26, 0x000002 }, { 0x1ebc800b, 0xdd96e9dd, 0x23bea848, 0x1d2ca072, 0xb84baad5, 0x20b0cab4, 0xb5240ff3, 0x2ec483c6, 0xb222b1d6, 0x8cd47f06, 0x1125c959, 0xfcf1148a, 0xadc20bdd, 0x1148aadd, 0x12c4c05d, - 0x4832906a, 0x000044, 00000000 + 0x4832906a, 0x000044 } }, { @@ -69116,19 +69114,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x63fc6bbc, 0x7ccfef02, 0x7757e282, 0xe837155f, 0xe0e51549, 0x49fa0f72, 0xd59bcf29, 0x3d37d6d6, 0x37d409b1, 0x610acb7, 0x7fe37217, 0xaeb15ec6, 0xf713e899, 0x24d10737, 0x1f63c4a6, - 0x6a42cf7e, 0x0001d0, 00000000 + 0x6a42cf7e, 0x0001d0 }, { 0x654e92bf, 0x40860d4d, 0x33ecd97e, 0xb32764ba, 0xf5c19560, 0x19790858, 0x7fa37065, 0x2e8edc69, 0xa8ad041c, 0x8823283b, 0x474a0f05, 0xb878fadc, 0xe8d0cdb2, 0x7b122b74, 0x75a81646, - 0xb58da071, 0x0001de, 00000000 + 0xb58da071, 0x0001de }, { 0x68c44db9, 0xb9b7ba88, 0x857dc0d2, 0xad1ea682, 0xd69ee804, 0xd8134957, 0xdf6fa669, 0x251f0ba5, 0xa417849e, 0x19146750, 0xe9b9f09e, 0x773c2bb, 0xe5a4bae6, 0x1dbbd7d4, 0x125bae6, - 0xcad05046, 0x000173, 00000000 + 0xcad05046, 0x000173 } }, { @@ -69136,19 +69134,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf1284115, 0x75ef827a, 0xa43fcf59, 0x95c4e77a, 0x1d2a97c3, 0xc7e2e711, 0xc78e4bba, 0xbd35892c, 0xf6699ac6, 0x1616b925, 0xee791f6c, 0x82e150ba, 0xbfe4a585, 0x5727bbe6, 0x4cec801c, - 0xc3a55652, 0x0000d4, 00000000 + 0xc3a55652, 0x0000d4 }, { 0x8e3de3a6, 0xf1e19457, 0x61b060e6, 0x3e220931, 0xda302945, 0x18c01bb7, 0x1376f70b, 0x32b9523a, 0xf48e7f27, 0xdea578ad, 0x31381aaf, 0x8f84ba9f, 0xf90ae502, 0x6dde898c, 0xa6c36cbf, - 0x3706dd1, 0x0001cb, 00000000 + 0x3706dd1, 0x0001cb }, { 0xa157caf3, 0x5a597446, 0x1bcbe9be, 0x9a8f9ad2, 0x1ed9d580, 0xa5ebaf96, 0x910b6b1a, 0x4d80d8be, 0x92958349, 0x83c5ee2a, 0xfa3eecee, 0xd3a0f178, 0x5ac83395, 0x378cc1d1, 0x9d81e98a, - 0x9549eef0, 0x000154, 00000000 + 0x9549eef0, 0x000154 } }, { @@ -69156,19 +69154,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x33e9d85c, 0xea4f131, 0xc3d8c272, 0x13bcf737, 0x7a83c0, 0xac1fe9d0, 0x5719a1db, 0x521f2136, 0xa3b04c77, 0xbfe334b5, 0x97fbab2, 0xc8c00e40, 0x2aeeaa09, 0x27b039, 0xd3c9ede7, - 0x6f61ee93, 0x00003e, 00000000 + 0x6f61ee93, 0x00003e }, { 0x592bd641, 0x47065cb6, 0xc6d98d68, 0xb0a25532, 0xad215fd4, 0x605f0aa8, 0xaba7e801, 0xd541ce08, 0xa00cc0e7, 0x331ba49d, 0x879be03b, 0x69df453, 0x11c3f88, 0x1d0bcbd5, 0xbd24bcf1, - 0x6ef160da, 0x000085, 00000000 + 0x6ef160da, 0x000085 }, { 0x325c66c2, 0x3371406e, 0x36f3d685, 0x36739f0c, 0x25b9e62e, 0x26fe77dc, 0x3d455e89, 0x751b7f11, 0xbc8f3fc7, 0x34d68e77, 0xdb5e110b, 0x5333eb24, 0xcea920cd, 0x2bfbf773, 0x2993a806, - 0x6b651b42, 0x0001d1, 00000000 + 0x6b651b42, 0x0001d1 } }, { @@ -69176,19 +69174,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6aae000, 0x6901774f, 0x64cf1c9b, 0xee8a015, 0x9507f1d1, 0x97ba1207, 0x5a29386d, 0xa802e712, 0x14f9cee9, 0x32da5bfa, 0xb315dae8, 0x9d2ce245, 0x9bcf07f0, 0x97bce515, 0xdb1c6424, - 0x21c03a8c, 0x000114, 00000000 + 0x21c03a8c, 0x000114 }, { 0x1b03edcb, 0x507594cc, 0x7594c746, 0x1f1e0f4c, 0x857196de, 0x5bb846c2, 0xdccad3af, 0xdfbe5f07, 0xbc711283, 0xea142a70, 0xd910dfd1, 0xc8cd25ac, 0xec3500af, 0xb8e25dd1, 0x26f1161b, - 0xf88b7a21, 0x00000c, 00000000 + 0xf88b7a21, 0x00000c }, { 0x20626472, 0x4e3535e5, 0xb80d6c6e, 0x65a61ab5, 0xfeac4f36, 0xbf4f176b, 0x1259b640, 0x3f81c633, 0x1b22a03d, 0x686025fb, 0x7ce77fc6, 0x7a0e5b20, 0x4f9c2c1, 0x2c1ac451, 0xcbf47b0e, - 0x2a1b4a10, 0x00010c, 00000000 + 0x2a1b4a10, 0x00010c } }, { @@ -69196,19 +69194,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x35e2e524, 0x1406cc82, 0xc98332a3, 0xcc77a354, 0x4fb6f94f, 0xf244db6c, 0x663cbddc, 0xfe45dc8e, 0xcb5d92da, 0xade8f1bc, 0x1674a664, 0xd63f2432, 0xc768cd7e, 0xc40fbbde, 0xcded4766, - 0x860f5bd3, 0x00004d, 00000000 + 0x860f5bd3, 0x00004d }, { 0xd2ab23ff, 0xd5c60bb9, 0xef6ee045, 0x2484b9a8, 0x41535b39, 0xfec1a5d, 0xe1a126c0, 0x44a5bb92, 0xc0ae8a9c, 0xdca69078, 0x8c7b796e, 0x837edb77, 0x8768f32b, 0x94170d41, 0xa5d946f2, - 0x47245d47, 0x0000be, 00000000 + 0x47245d47, 0x0000be }, { 0x9edcdb0f, 0x92852c83, 0x6d2e787d, 0x810c7c0, 0x9ed8ce88, 0xf1cf4e4c, 0xc73a279b, 0x7d5d129a, 0x11560a1b, 0xba1a16ae, 0xa33461cd, 0xa5f0a15b, 0x209ed5a3, 0xe14a2499, 0xe589592f, - 0xea7228a8, 0x0001f5, 00000000 + 0xea7228a8, 0x0001f5 } }, { @@ -69216,19 +69214,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xca1e6e66, 0x5958c6c7, 0xc993fcb7, 0x49a1c97c, 0x962aca77, 0xd9123c0, 0x4c3c6a0d, 0xe7b1cbbc, 0xab1b5e30, 0x34ad86a, 0x2c805988, 0x8188a096, 0x56135e60, 0xc9b4f1b5, 0x8bb2b6ff, - 0x9110250f, 0x000008, 00000000 + 0x9110250f, 0x000008 }, { 0x21255fd8, 0x84d400e4, 0xbeb20a7e, 0x48f8cead, 0x7aaeffb7, 0xb25c579b, 0x9a7d3699, 0x91b51c57, 0xe0d8fadd, 0x4d93749f, 0x2b2512ca, 0x57015150, 0xaa79fb8a, 0xa6547646, 0x813b228, - 0xe26a25a6, 0x000129, 00000000 + 0xe26a25a6, 0x000129 }, { 0x2a4b6597, 0x480aba51, 0xb75c31bd, 0xd9fd045a, 0xf614b68c, 0xa301f68d, 0x5f62d46a, 0x63d3b6f3, 0x3bce979d, 0x991c6727, 0x850642f0, 0x61ecaee, 0x81134c5, 0x6d43aa98, 0x775deb42, - 0x4522a1ff, 0x00016f, 00000000 + 0x4522a1ff, 0x00016f } }, { @@ -69236,19 +69234,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa3b0cb57, 0x7c754fe5, 0xb192253a, 0xa3cc76ed, 0x10ee80ac, 0xf39c78bd, 0x8ebde7ff, 0x3819f441, 0xf1bcac9a, 0x4f90594, 0x8f2edfde, 0xa18aac7, 0x6112be61, 0x5fb4c89e, 0x6417a929, - 0xd42c277f, 0x00012b, 00000000 + 0xd42c277f, 0x00012b }, { 0xd34d400f, 0xed76e48a, 0x86aa214e, 0x78692df9, 0x8786f433, 0xa5e51c69, 0xce7f2fd8, 0x69c3fd16, 0x3922689d, 0xcb090a61, 0xf39e91b1, 0x64b82c81, 0xe7650bba, 0xe541d806, 0x238d6731, - 0xe6da48ff, 0x000137, 00000000 + 0xe6da48ff, 0x000137 }, { 0xcc3c6d69, 0x4ba55856, 0x93cda478, 0x22a64977, 0x72e550a, 0xd8731b20, 0xcf8b34eb, 0xfd2c7332, 0x48699e90, 0x95b148ed, 0x1d2cb8df, 0x36146435, 0x6925839c, 0x7e14ac9b, 0xba9c25a3, - 0xa869c075, 0x00002a, 00000000 + 0xa869c075, 0x00002a } }, { @@ -69256,19 +69254,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x69135490, 0x5537bb20, 0xfba005a8, 0x46644be8, 0xdd02e296, 0x5f370d61, 0xa964f26f, 0x39720580, 0x2d65088c, 0xabc2974c, 0x96d0acf5, 0x66fd1db0, 0x33535d8a, 0x58259cf9, 0xe9d90e69, - 0x1c35d436, 0x000183, 00000000 + 0x1c35d436, 0x000183 }, { 0x81f3ac78, 0xc2974a43, 0x21bf03cf, 0xede816c9, 0xaf919e19, 0x606b8cd7, 0xa30a3724, 0x6c05e511, 0xf37744c6, 0xa8ad2da0, 0x8c75b1f6, 0xd666b33e, 0xb78f0a6a, 0x964827db, 0xe0ca8c08, - 0x153c8083, 0x000158, 00000000 + 0x153c8083, 0x000158 }, { 0xc625774d, 0x82619446, 0x49f7ec86, 0x70f36715, 0x9ae609ce, 0x4843806f, 0xea97a368, 0xce76f009, 0xb7fb818a, 0xf8362cfd, 0xed130f9a, 0xf574277, 0xe720186b, 0x1763cc85, 0x8d0fdb18, - 0xc578704b, 0x000191, 00000000 + 0xc578704b, 0x000191 } }, { @@ -69276,19 +69274,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd361b59, 0xc9706c92, 0xb5dff998, 0x44e0e03f, 0x12063445, 0xa85f152f, 0x9b75f1d1, 0x2644b344, 0x9cd20f1e, 0xdd1ae3, 0xc3e77ac, 0xc470a695, 0x975923da, 0x9b45b60b, 0xb54309b, - 0xa966e8a3, 0x000177, 00000000 + 0xa966e8a3, 0x000177 }, { 0xd88ea4c9, 0x8d1669e, 0x98efbb2d, 0x29c66408, 0xca53e9d, 0x21f8ce8f, 0xe8cc5407, 0xd7c837bb, 0xd3ba2323, 0xc9945a12, 0xabc9806b, 0x8f0f9101, 0xaaf703b7, 0xb4145769, 0x3d01f560, - 0xa9f2b76d, 0x000193, 00000000 + 0xa9f2b76d, 0x000193 }, { 0x38003fd3, 0xdb269086, 0xd609d80a, 0x747f13c8, 0x364225f5, 0x587c2ee4, 0x254af586, 0x6da46d12, 0xcb6f0e19, 0xe448af82, 0x92f36dac, 0xed5013a1, 0xed7d9ab4, 0x492111d, 0xca483d85, - 0x1265090e, 0x0001ad, 00000000 + 0x1265090e, 0x0001ad } }, { @@ -69296,19 +69294,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x727320e7, 0xd183796c, 0xb2c9337, 0x4579defb, 0xc51b0a5f, 0x6898b42d, 0x934e897d, 0xd639a571, 0xcfc396c3, 0x15fb4ff0, 0x6c801e63, 0xe76c880f, 0xd4cfa175, 0x59c722f1, 0x4bcb9c63, - 0x545e671e, 0x000073, 00000000 + 0x545e671e, 0x000073 }, { 0x4592339b, 0x1e12f4ae, 0x3968c318, 0xab3bf7e5, 0xcfdcd4ab, 0x41f16aa0, 0x26ed644e, 0x2c4617f9, 0x874e6057, 0x86f294b0, 0x61078e26, 0xd1a3a17f, 0x2ba2ec42, 0x481cd9cb, 0x7685319c, - 0xe8c57e70, 0x00015a, 00000000 + 0xe8c57e70, 0x00015a }, { 0xf8fa0102, 0x7e211c16, 0x48d108fb, 0x208d3563, 0x9ce49efd, 0x2bb7d8c7, 0x24ff70e7, 0x5a4331b4, 0xaa049a9e, 0xd2da428d, 0x16099649, 0x760179a1, 0x726f7d85, 0x47ae46a2, 0x360e057e, - 0xe67d8a94, 0x000162, 00000000 + 0xe67d8a94, 0x000162 } }, { @@ -69316,19 +69314,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x210ba796, 0x8c44b7b6, 0xd78ec228, 0xa937c7a5, 0x59be6a65, 0xfda39836, 0xe203c528, 0x910551c1, 0xad26994a, 0xad163cdc, 0xcf6d3e60, 0xddb2fbf9, 0xa79ae923, 0x88f0cbe3, 0x843068ce, - 0x1ed71e71, 0x0000ce, 00000000 + 0x1ed71e71, 0x0000ce }, { 0x1ff724c9, 0xe0f2ec56, 0xb7786150, 0xd030bc26, 0x17608970, 0xc6f8df56, 0xad92406b, 0x796826a0, 0x4ce03788, 0xee3b39df, 0xf665808b, 0xc2b9f78e, 0x4793ceac, 0x112e2381, 0xe4a5b839, - 0xaf67a151, 0x00019c, 00000000 + 0xaf67a151, 0x00019c }, { 0xab1fe6a3, 0xa9cad747, 0x9423e90, 0xa57f27c3, 0x7180e4fb, 0x68d841da, 0xfaf5e26b, 0x7ac9f16e, 0x83730032, 0x2879c17a, 0x3cc3e224, 0xe226e486, 0xb91c8124, 0x81720c31, 0xf9990a8f, - 0xcaf72b20, 0x0001a5, 00000000 + 0xcaf72b20, 0x0001a5 } } }, @@ -69338,19 +69336,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa7eb69e1, 0xbe8170a1, 0xec01bad3, 0xd44de1b4, 0x20d3c457, 0x721f5556, 0x1285dd88, 0x9c952e7d, 0xf4118ad8, 0xea643510, 0xfcd02485, 0xe5b756a0, 0xa19680e7, 0xb0253172, 0xeb7f3592, - 0x842b818e, 0x000086, 00000000 + 0x842b818e, 0x000086 }, { 0xfd0dcf3c, 0x2d23cbd1, 0xa311106d, 0x501d29f, 0xd1406a8e, 0xf5d691ad, 0xa955b1c2, 0xef8f4821, 0xe44af6e7, 0xac39724c, 0x27ca04a4, 0x5d9c7825, 0xa3f209b8, 0x3abfa465, 0xf10d8a71, - 0x46ad6a6a, 0x00016a, 00000000 + 0x46ad6a6a, 0x00016a }, { 0xd92edb7e, 0x3036532f, 0x14f5a292, 0x32737b21, 0x94dee329, 0xdc23b5c2, 0xe38e0a64, 0x29289eec, 0x57919a36, 0x258f24ee, 0xc87cfdde, 0x3db1b2fc, 0x4b431d73, 0x3fdbc875, 0x86842b68, - 0x19230443, 0x000069, 00000000 + 0x19230443, 0x000069 } }, { @@ -69358,19 +69356,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8ea7b3d6, 0x8af0b070, 0xf310d11e, 0xd3507b13, 0xda47b60f, 0x4de3c666, 0x3527ce40, 0xd328331a, 0x385f6236, 0x52462b20, 0x6bb4f8ed, 0xb4c2e3fd, 0x82bc49a, 0x13c511be, 0xfa0c1a9e, - 0xfe805c6f, 0x0000a1, 00000000 + 0xfe805c6f, 0x0000a1 }, { 0x477cfe1d, 0x83ecb45f, 0x6f3f2aa9, 0x4187647e, 0x4c8d3f27, 0x26dae7cb, 0x715e6b91, 0x2246dca1, 0xa4d02328, 0xdec761b, 0xff8767b3, 0x6769ca3d, 0xf13c51c5, 0xbb7b90c8, 0x26442c4d, - 0xe42cd0ec, 0x00009d, 00000000 + 0xe42cd0ec, 0x00009d }, { 0xd83f9722, 0x3cccdb76, 0xd3c27d8, 0x185e0809, 0xb33d3b19, 0x1d80352f, 0x13eec9b8, 0x8ab3ddbf, 0xb2cafa5c, 0x6e09a5d2, 0xa5d960a8, 0xcd66c951, 0x7ecf8cd6, 0x2786ac64, 0x2a856d22, - 0x4a38ccd7, 0x00000a, 00000000 + 0x4a38ccd7, 0x00000a } }, { @@ -69378,19 +69376,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21792ac1, 0x82f0e97d, 0x16d36cf0, 0x837e1a0d, 0xaf19ed6b, 0xa0d232e7, 0xa321be40, 0x7692c148, 0x129c6931, 0xbbb810e8, 0x1d934156, 0x6345bb33, 0x4b100c85, 0x58e0a646, 0x7972a506, - 0x4f80d1be, 0x00010d, 00000000 + 0x4f80d1be, 0x00010d }, { 0xe94a1df4, 0x1ec565eb, 0x422ef620, 0x1dbc6baa, 0x7ac145fa, 0x2e05ad06, 0x6b0a4a5b, 0x406a4f91, 0x3bb148ab, 0xac80e4b1, 0x1fab3883, 0x44b00252, 0x55579cc3, 0xe14c99d4, 0x87c6579c, - 0xde28a4d8, 0x0000f2, 00000000 + 0xde28a4d8, 0x0000f2 }, { 0xe7106e42, 0x8545e9c2, 0xb3e8cb56, 0x7faf1d95, 0xfcf50371, 0x36eb4ec7, 0x3721005d, 0x33736733, 0x2a8444dc, 0x36ef19ba, 0x5a8aa62a, 0x265c2350, 0x3c875023, 0xdf184ed0, 0xb9417b4f, - 0x1dfb9e88, 0x000008, 00000000 + 0x1dfb9e88, 0x000008 } }, { @@ -69398,19 +69396,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1c6e25c1, 0xe0b88379, 0xf37d6f48, 0xb916afd6, 0xd4f73ec9, 0x3a5262b0, 0xea32067e, 0x7888fec1, 0x7225bc4a, 0x2701daac, 0xf568fc02, 0xcfb64dd4, 0x5be96365, 0xb9b50564, 0xfa44d269, - 0x6b7afa19, 0x000187, 00000000 + 0x6b7afa19, 0x000187 }, { 0x3f92b826, 0xa671f3d3, 0xf604a994, 0x8bdd493f, 0xf0e6078a, 0xa23eb6f5, 0x9434f5ea, 0x4e42d4a8, 0x5f75a2aa, 0x37592516, 0x3979ba29, 0x9546138c, 0x89764ee, 0x427c9350, 0xe5e3083e, - 0xcc8b397a, 0x000102, 00000000 + 0xcc8b397a, 0x000102 }, { 0x6aa4e181, 0x273654b2, 0x11174bda, 0x1a909c9c, 0x3cdfe4dd, 0x23405fe, 0x5ca2ca2a, 0xfff40a1b, 0xf3b6c431, 0x29b9b311, 0xef149905, 0xd49cab00, 0x2aab092d, 0x97b95826, 0xffc5267d, - 0xfa4bf25f, 0x00003c, 00000000 + 0xfa4bf25f, 0x00003c } }, { @@ -69418,19 +69416,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4b1529b3, 0xdfe83132, 0xbda04d80, 0x4b0ec824, 0x60585262, 0x3f676725, 0xee840cb1, 0x9976f81b, 0xb65318b2, 0x7f4d7a18, 0xfc50a1b8, 0x47ae0af2, 0xb9b7289f, 0xe0ec9227, 0xe34e64f0, - 0x31bed246, 0x00010d, 00000000 + 0x31bed246, 0x00010d }, { 0x462a7f0, 0xd506ca01, 0xf853d43b, 0xd92f9a0d, 0xfa909290, 0xb8262167, 0x2a275c56, 0x9829995c, 0x66a8b638, 0xeafc0756, 0xcf75f7ac, 0x1a317c74, 0x3258de9d, 0x77b01e14, 0x8011dbb0, - 0x1cba9ccb, 0x0001c0, 00000000 + 0x1cba9ccb, 0x0001c0 }, { 0xb2ce6cdf, 0x5a978b98, 0x7ad8d933, 0x160d5503, 0x8853bf97, 0xf1320881, 0x6ca95551, 0xe623a79, 0xac7309a, 0xa96d549c, 0x5897f804, 0xb0242b09, 0x82ac84cf, 0x4e715beb, 0xd812b00b, - 0xec59f3f3, 0x000178, 00000000 + 0xec59f3f3, 0x000178 } }, { @@ -69438,19 +69436,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf43356a0, 0x8eb66a58, 0x1eea1686, 0x61c506c, 0x49fcecd, 0x225828b1, 0xa064c3c3, 0xd4a31dab, 0xfb2bc107, 0xb9c6c207, 0x7033f8da, 0x4915d2d0, 0x52d0448d, 0x3b17514b, 0x6c67081c, - 0x586db37f, 0x00006e, 00000000 + 0x586db37f, 0x00006e }, { 0x6aa29e3c, 0x23c4eae2, 0x98b43d17, 0x5e8ee962, 0x85fb6488, 0x76047b69, 0x9ef0ed4c, 0xae90bffb, 0xb4fd0504, 0xebe2e472, 0xe3c22706, 0x71ba0087, 0x550b3cf, 0xe1a48b23, 0xa8f35ad7, - 0x17c67ced, 0x0001d5, 00000000 + 0x17c67ced, 0x0001d5 }, { 0x9963aacf, 0xc7537a53, 0xfe1627c, 0x609c1474, 0xa883657d, 0x7c90d42f, 0xd29bc920, 0x80663494, 0x1c672c1a, 0x6e4d110b, 0x5aeac3f7, 0x9f54904e, 0x3736de7e, 0x7f9d6fa6, 0xab208770, - 0x36563b1c, 0x000071, 00000000 + 0x36563b1c, 0x000071 } }, { @@ -69458,19 +69456,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x73a1f60a, 0xcd00693, 0x100a37e, 0xde063feb, 0xa3d003bf, 0x954f331c, 0xc8d9a757, 0xc3b05d1d, 0x75c5ecf9, 0xf2edbe47, 0x1e7327e, 0x4c7a4d0, 0x12074733, 0xe0310f8a, 0xce888357, - 0xbc08659f, 0x00006f, 00000000 + 0xbc08659f, 0x00006f }, { 0xaebaf47c, 0x8ca28155, 0x1dd00216, 0xd7c91ea9, 0x409aad2a, 0x7a5603ab, 0x6799ccdc, 0x677cb66d, 0xe2ef961b, 0x1d01b4be, 0xbbfe2a2d, 0x200734ee, 0xdab17053, 0xfa51c9d0, 0x6f429e24, - 0x23dc7e7d, 0x0001d8, 00000000 + 0x23dc7e7d, 0x0001d8 }, { 0xb83f49c4, 0xabdeb40a, 0xae29dd60, 0xab4364db, 0x3daf83e7, 0x6b80f2a2, 0x7b9ac3a9, 0xd6b9f17f, 0x76499c9e, 0x388f35d8, 0x3a21bc50, 0x643c7c33, 0x571677db, 0x7ee9308, 0x69cb4cf9, - 0xa89b0206, 0x000070, 00000000 + 0xa89b0206, 0x000070 } }, { @@ -69478,19 +69476,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9e7e5c4d, 0xea7e4f43, 0xba65bd8a, 0xd4dc366a, 0x123905b3, 0xc626f573, 0x972db9d8, 0xea6aee98, 0x24a11cad, 0x972184f, 0xf8e69802, 0x910b037c, 0x48c42862, 0x478d9a2f, 0xb612617a, - 0xc22d3952, 0x0001dd, 00000000 + 0xc22d3952, 0x0001dd }, { 0xd1a636fb, 0x2aaf61bb, 0xeabf3d50, 0xf3adcaad, 0x93b86761, 0xe211bff5, 0x1f9c32a1, 0xcf7a7db8, 0x6e44df32, 0xbce9ef90, 0x4b7c1ce4, 0x74e7bdf8, 0x3bb5fb5e, 0xa422b7c, 0x965af94c, - 0x5dc582ba, 0x000189, 00000000 + 0x5dc582ba, 0x000189 }, { 0x4f6df3cd, 0x3828f8f8, 0x358180d9, 0x750b283f, 0x1cb6111d, 0x2152b49b, 0xca99bdf3, 0x44a2768b, 0x68469f4f, 0x4bbc8d84, 0xc84b651a, 0x968d7c48, 0x13120f89, 0x8721fdfe, 0xabb56ffb, - 0xfd30e607, 0x000110, 00000000 + 0xfd30e607, 0x000110 } }, { @@ -69498,19 +69496,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6e445ea8, 0xba8404fa, 0x28b2a1f1, 0x7e02363a, 0xa753abd7, 0x6791f99f, 0x38fecdfd, 0x3851c37a, 0x67901a7, 0x4f9a376b, 0x229b90e6, 0x9727e3db, 0xa910e99a, 0x27207c98, 0x85c0afe9, - 0x561752a8, 0x000146, 00000000 + 0x561752a8, 0x000146 }, { 0xcec83fe7, 0x2bd0c788, 0x35caa74e, 0x9a700538, 0xadfb970, 0x5801156a, 0x54fd4402, 0x3393a894, 0x788d009d, 0xb7622f71, 0x87b5b1bb, 0x140cec1c, 0x1d4cf8a2, 0x30635c96, 0x39ebc496, - 0xb195967c, 0x00015c, 00000000 + 0xb195967c, 0x00015c }, { 0xd8c89e55, 0x2d4178eb, 0xcc1c0549, 0x7363fe07, 0xc343a7b, 0x24dbfb3c, 0x66b5686b, 0x6e2d32c2, 0xd7b75090, 0x1a7368a9, 0x8c5cc0b9, 0x642026a4, 0xbb280023, 0x8acf3c33, 0xb664e244, - 0x56af4cbd, 0x0000c5, 00000000 + 0x56af4cbd, 0x0000c5 } }, { @@ -69518,19 +69516,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x92220fef, 0xb783db76, 0x140ffb1f, 0xf2ff8c8a, 0xb8e4a067, 0xb8acd95d, 0x6c38fe38, 0x2859c015, 0xec562f35, 0xd147991e, 0xe244558b, 0xfbd25c70, 0x36a58122, 0x3cdf2df9, 0x45e31eb3, - 0x79402c4e, 0x000036, 00000000 + 0x79402c4e, 0x000036 }, { 0x420da8fc, 0x5d7ac40e, 0x73db9c67, 0x3a65980e, 0x6a5fac48, 0x3895bd91, 0x911d5282, 0x8f2dd65b, 0xcb6ca5ca, 0x9d99b4be, 0xf743a7b1, 0xfd192ac2, 0x862da849, 0x354e7074, 0xbefabcab, - 0x3bf1e4f2, 0x00011c, 00000000 + 0x3bf1e4f2, 0x00011c }, { 0x91f21cbd, 0x66a2c035, 0xc9b450fd, 0xab4a1306, 0xbf86ecfb, 0xeca243bb, 0x2966a370, 0xb90aef93, 0xf2d67ee1, 0xb91589cd, 0x2f0ba2f0, 0xe4c95ade, 0x4409b614, 0x1a419c6b, 0xbfb598a9, - 0xc7f4410c, 0x0000b3, 00000000 + 0xc7f4410c, 0x0000b3 } }, { @@ -69538,19 +69536,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaf76a904, 0x2be3dba6, 0x170142f3, 0xfb87b008, 0x7a81fa7f, 0x68cbeaea, 0x4e4917d7, 0x864b690, 0x22da89de, 0x3ef6fa55, 0x271a36a1, 0xb159216, 0xdba3c6ee, 0xd56890c0, 0x6fb282e6, - 0x5872b3fb, 0x00011c, 00000000 + 0x5872b3fb, 0x00011c }, { 0xf63393b4, 0xc9d32f25, 0x72650de2, 0x5ed22575, 0xadaf889f, 0x17e21cfc, 0x87e078a6, 0x996b96ad, 0x37ab946, 0xc1a5fff3, 0x22e34a01, 0xc039008e, 0x970928fb, 0x520c4ef2, 0x6ae1a626, - 0xf6f98e1d, 0x000173, 00000000 + 0xf6f98e1d, 0x000173 }, { 0xa22fcefa, 0x2da9ea61, 0x16cb8b55, 0x6a762353, 0xa71267fc, 0x6ba04a75, 0x5f6ac57b, 0xaa357a8c, 0x1c82a6f7, 0x511981ca, 0x0c53fd, 0x21b16027, 0x13807852, 0x905d6ff8, 0xbdac7963, - 0xfc00a8d4, 0x000004, 00000000 + 0xfc00a8d4, 0x000004 } }, { @@ -69558,19 +69556,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe58f4a67, 0x97704d97, 0xa54d7fc4, 0xe493d01, 0xbb2f9bf3, 0xdb81fd0f, 0x4698d31b, 0x20b055df, 0x9deb11dd, 0xb532e0be, 0x9678fcf2, 0x4341abab, 0x6e600140, 0x948a5e3c, 0x70e1210e, - 0xa6e6261c, 0x0000cf, 00000000 + 0xa6e6261c, 0x0000cf }, { 0xb88907e7, 0x9c15863a, 0x4bdc90b, 0x563fce96, 0x52db6d90, 0x738a52c9, 0xc6b3d1e7, 0x3c52cb01, 0xfeb7351, 0x7db30982, 0xdfbfe2b0, 0xa0683c3c, 0xf4c4a8d2, 0x784800f4, 0x1b0595ad, - 0xf38887b5, 0x000026, 00000000 + 0xf38887b5, 0x000026 }, { 0xc4b187eb, 0xd420a95f, 0xe1cd0f93, 0xf076b13f, 0xfc52cd88, 0xc1a7150f, 0x5187aa8, 0x8983e1da, 0x4cd72337, 0x9ddff518, 0xd9097726, 0xe10b0976, 0xf7750227, 0x89a8ebac, 0x1c96dc85, - 0xdbf92ed3, 0x0001ea, 00000000 + 0xdbf92ed3, 0x0001ea } }, { @@ -69578,19 +69576,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x842f4db2, 0x512b3d28, 0xcc7834e8, 0xdf751112, 0xaf9836a, 0xc1e9f943, 0xd034e551, 0x24a3add0, 0x5da7a1de, 0x55003bdf, 0x50db0ad5, 0x7128122a, 0x10f45379, 0xc1384dfb, 0x73860eb9, - 0xc7aec140, 0x000032, 00000000 + 0xc7aec140, 0x000032 }, { 0xbe9b203d, 0xf1c4d7fc, 0xa73d069d, 0xce370a39, 0xda384970, 0x62bfce87, 0x4319b2df, 0x6c03d885, 0x3467457e, 0xa3c6f6e4, 0x303bd0aa, 0xf6b85564, 0xcc40228c, 0x19c4301e, 0x4a96d89, - 0xa84c6780, 0x000184, 00000000 + 0xa84c6780, 0x000184 }, { 0x38cf7020, 0x19359cf0, 0x23021b, 0x88964dac, 0x2b527074, 0xceba9500, 0xa977a216, 0x15f2497c, 0x370744b9, 0x96ce9c2c, 0xbf7fa82d, 0xbfc70498, 0xe4e44a6a, 0x7c276333, 0xd80aaa9f, - 0xc36da182, 0x000146, 00000000 + 0xc36da182, 0x000146 } }, { @@ -69598,19 +69596,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a29efab, 0x93ff7e65, 0x7b998900, 0x5a6b08a7, 0x995249da, 0x7cb56b88, 0x16407437, 0xb29d5af9, 0x9639c080, 0x65de2fe9, 0x679ea082, 0x4048bca5, 0xb99bb71a, 0x39162dcd, 0xd33214fb, - 0x9f46310, 0x0000e6, 00000000 + 0x9f46310, 0x0000e6 }, { 0xf9dc33e, 0x7b0bce8c, 0x520b6118, 0xb6f6830a, 0xf123f3f6, 0x4f5751b4, 0x2825349e, 0xaa651eb7, 0x1dd662a7, 0xae402499, 0x2c565985, 0x51833d99, 0x87b6d65, 0x5862bc06, 0x7991c962, - 0xd5abea20, 0x00012d, 00000000 + 0xd5abea20, 0x00012d }, { 0x772cac5c, 0x14beb6fc, 0xdef1599, 0x84bd4f0c, 0xe28ab410, 0xe0a8de7d, 0x1e147924, 0xfae9b925, 0xf82787d7, 0x28a1a881, 0xe1717c47, 0xfe7f9201, 0x3a56dbb0, 0x20f4a642, 0x532d9b7, - 0x3cd72afd, 0x000151, 00000000 + 0x3cd72afd, 0x000151 } }, { @@ -69618,19 +69616,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcb7f34fc, 0x220f0839, 0xaf9768d0, 0x4cbbf8c3, 0x254ec8a4, 0x6987cff6, 0xf3dd1fa, 0x60367575, 0x44d685d8, 0xbec43a7f, 0x9f61e13f, 0x9d6d5e08, 0xcec92a54, 0xedac6c27, 0x29709c37, - 0x166eae29, 0x000084, 00000000 + 0x166eae29, 0x000084 }, { 0x9213ebf0, 0x971810eb, 0x2841fc78, 0x68859170, 0xb61827b5, 0x2c1bd691, 0xc7f045ca, 0x90632ec2, 0x4aab8de3, 0x64a925e3, 0x5388bd75, 0x3a4bba83, 0x193fe52c, 0x6e1c2a68, 0xe9362af3, - 0x8f8aef33, 0x0001db, 00000000 + 0x8f8aef33, 0x0001db }, { 0x9720f882, 0x53588a08, 0xe2d29c12, 0xe5af6fa5, 0xa3ff5bc, 0x1f73799c, 0x1104998e, 0xf289630, 0x48f6c808, 0x90daff15, 0xc5b2634c, 0xad3e666a, 0x2e3ed8a7, 0x7fdc0eae, 0x351d0e53, - 0x268a02fc, 0x0001ac, 00000000 + 0x268a02fc, 0x0001ac } } }, @@ -69640,19 +69638,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd0279f23, 0xe58c942b, 0xbd3a57df, 0x8ad3cc5, 0x5dc62f3, 0x486520b, 0xdfecabd2, 0x13cdcb2d, 0xdbe9fb6f, 0x77ea3bd2, 0x28e9391, 0xcffc5a64, 0xe7c7e43e, 0xe42a1cab, 0xcc5494ff, - 0x68033784, 0x00002b, 00000000 + 0x68033784, 0x00002b }, { 0x72014920, 0x609b981, 0xa118ab98, 0x8460d302, 0x64c0153d, 0xbbe5063a, 0xae04cfef, 0x7941ceab, 0xa3a22179, 0xc1651fa7, 0xc3154da2, 0x581b5a12, 0xe3e6384e, 0x2d99ef01, 0x262419a7, - 0xb3f3a2ce, 0x00015a, 00000000 + 0xb3f3a2ce, 0x00015a }, { 0xb81d029d, 0x4473d9af, 0x2fdf8a7d, 0x54f665d6, 0x73a2f82e, 0x1ce307f7, 0x65d824cd, 0x21e0d03d, 0x6fbb9889, 0x8005b638, 0x49d6cd10, 0xe1909882, 0xe4fb0406, 0xfb3b6d66, 0x96935e8, - 0x50c66091, 0x00005d, 00000000 + 0x50c66091, 0x00005d } }, { @@ -69660,19 +69658,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x17190f83, 0x5daaf279, 0xc8e29d3, 0x3427ab27, 0x336f7a9, 0x907a90da, 0x4bff74f0, 0x7cdb4ac3, 0xa5fcdabb, 0x9aecc50d, 0x56bb7f87, 0x619f318f, 0x4481c618, 0x307f61f1, 0x7a80125e, - 0xeeac0dc3, 0x000171, 00000000 + 0xeeac0dc3, 0x000171 }, { 0xb4faa0b1, 0x2859b78c, 0x86348723, 0xc3d488bc, 0xdeb9d55d, 0xe62f607a, 0xce60d641, 0x58a27ead, 0xf530d2dd, 0x2a588337, 0xc841ea37, 0xdcaafce7, 0xb700a439, 0x366d93e1, 0x2a1bf91a, - 0x94aa62d4, 0x00016c, 00000000 + 0x94aa62d4, 0x00016c }, { 0x34f6f6e3, 0x8cfac3f4, 0x6c55bffc, 0xbcb3e72, 0x1d42c371, 0xf7f8d309, 0xa64e1496, 0xc6218211, 0x5d8ef7f7, 0x610a4404, 0x8be72be4, 0x68e35d54, 0xf4dc6b2f, 0x186800e7, 0x43c78d3f, - 0xf9f85e97, 0x00013d, 00000000 + 0xf9f85e97, 0x00013d } }, { @@ -69680,19 +69678,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x224c68df, 0xd99c14a, 0x43b534c6, 0xec492a07, 0xa9dc45d8, 0x8443711a, 0xfa83a891, 0x7f9115b7, 0x9a96972c, 0x93e37159, 0xda3770bc, 0xaf295261, 0xb6dc59fe, 0x277be790, 0x6363f1f9, - 0x763e765a, 0x00004b, 00000000 + 0x763e765a, 0x00004b }, { 0xe9992dae, 0x86e0ab90, 0x7ecd9d10, 0x97540f52, 0xa0251c71, 0x5dbd87ca, 0x6f877cfd, 0x86fa1d3, 0xc2f768f0, 0xf8610b1b, 0x6f0c9f18, 0xca0c02e5, 0x4f0850, 0x734d5f07, 0xb6f9eb2b, - 0x29f11439, 0x000039, 00000000 + 0x29f11439, 0x000039 }, { 0x35c61c8a, 0xe0050575, 0x9dcee5c8, 0x8593a4b9, 0x481c0567, 0x908cc519, 0x87e37a22, 0xac95fcb5, 0xdd64de3f, 0xda46414f, 0xeb1d17be, 0x535b1b9d, 0x370a8200, 0xf669f852, 0x83551a60, - 0x4eae7a37, 0x000181, 00000000 + 0x4eae7a37, 0x000181 } }, { @@ -69700,19 +69698,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x444a8c26, 0xaf46d125, 0x4c039a18, 0xc561047e, 0x48af5d65, 0x5e15f01, 0xc1fc1dd5, 0xd52f90ed, 0xd7bcb6f5, 0x98361a4a, 0x93cfaf14, 0x6227d539, 0x343e5e8e, 0x340edc5a, 0x459b5dd, - 0x701d1af0, 0x0000d9, 00000000 + 0x701d1af0, 0x0000d9 }, { 0xb23a7e0, 0x898e38f4, 0x352023f3, 0x9563a215, 0x1beedfca, 0x536942d5, 0x9dd2b9a9, 0x56af55a1, 0x596db43c, 0xfccd2ab1, 0xa6461977, 0x653bbf5b, 0xa32ddf6a, 0xf9103adc, 0x9e4bae1d, - 0x34baba5d, 0x000116, 00000000 + 0x34baba5d, 0x000116 }, { 0x60582c7a, 0xaa0991ea, 0x13879636, 0xe83b522e, 0xa0664870, 0x4558853c, 0x72a8823b, 0x79c56e25, 0x59dc8411, 0x910f4a57, 0xa550328e, 0x963b6d3, 0xb6257231, 0xc4b7907c, 0xe94efc0d, - 0xbdce06dd, 0x00002a, 00000000 + 0xbdce06dd, 0x00002a } }, { @@ -69720,19 +69718,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3e8d25c7, 0x2c23e998, 0x28aa3978, 0xd351abd3, 0xf596985e, 0x708dfc2e, 0x94c8187c, 0x52ae2523, 0xc6521043, 0xd04e502b, 0x2d505ebd, 0xf034c27, 0x8444f9c6, 0x58f6720a, 0xb40f104f, - 0xb1813e93, 0x00018f, 00000000 + 0xb1813e93, 0x00018f }, { 0x34035fe9, 0xca879eb5, 0x906986db, 0x77dee89e, 0xa7d36d5e, 0xf55b9045, 0xc9ad35e9, 0xaaceb682, 0x82668bd, 0xf511de3a, 0x924b4f24, 0x237d7ca5, 0x97444fb8, 0x18cbf6d8, 0x8460318b, - 0x8d5f458e, 0x00001d, 00000000 + 0x8d5f458e, 0x00001d }, { 0x62ca5360, 0x2176dcbc, 0xfbb9efe5, 0x9058f800, 0xa379817c, 0x4b1b52fb, 0x694a1d89, 0xc03352d6, 0x367cbe33, 0x73cbb984, 0x4f6ad98a, 0x847bf5aa, 0x54622791, 0x6d944fba, 0xf675f9b3, - 0x188b3d54, 0x0001eb, 00000000 + 0x188b3d54, 0x0001eb } }, { @@ -69740,19 +69738,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x442c80a5, 0x18562514, 0x6e056809, 0x9645fae5, 0xbf08392b, 0xe1a835df, 0x84a7fc81, 0xab10cb13, 0x3df8200, 0x632d0ef3, 0x636797e3, 0x3b05de34, 0x262a3833, 0x86068e8a, 0x5e0717a5, - 0xa515c691, 0x0001a1, 00000000 + 0xa515c691, 0x0001a1 }, { 0xa6ba7958, 0xda9bdd86, 0x33876fc2, 0xd88a7211, 0x3ba7fd09, 0xb864b414, 0xc7e3bcfa, 0xba83b563, 0xfb99d809, 0x65e4f864, 0x937b9fe8, 0x18c57f4c, 0x502351da, 0x582774ef, 0xe73dee7b, - 0xae3acadf, 0x000031, 00000000 + 0xae3acadf, 0x000031 }, { 0xa0f8be05, 0x52caba56, 0x9941169d, 0x6acdf832, 0xd001551f, 0xde36e248, 0xb490914b, 0xe2f7c693, 0x86e487d1, 0x41e93664, 0xf4b9bf8f, 0x4fe5ff3c, 0xe8a6c6e6, 0x5b872bf9, 0x51fa74ae, - 0xaa59458f, 0x000096, 00000000 + 0xaa59458f, 0x000096 } }, { @@ -69760,19 +69758,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc429f6e8, 0x27c7cd40, 0xee20b8f2, 0xa40023a5, 0xc0ff99eb, 0x4494b68f, 0x2d7f69e4, 0xc7d0cc86, 0xb1759040, 0xd8adb61e, 0xea7d3b85, 0x73dda23a, 0x15f43a8e, 0x96a7b1a1, 0xc27221c1, - 0xa4c2a79a, 0x0000b9, 00000000 + 0xa4c2a79a, 0x0000b9 }, { 0x2e429764, 0x3df485ba, 0xcb962957, 0x1a469b7f, 0x77d6b48a, 0x13428b4, 0xf25abaca, 0x90c656c1, 0x597da7c4, 0xe68ac2ca, 0xb2a74644, 0xe604f077, 0x17e87632, 0x36f445af, 0xcc188785, - 0x3638b378, 0x000059, 00000000 + 0x3638b378, 0x000059 }, { 0xf333af5e, 0x61425ef0, 0x8e5808a0, 0x3b510101, 0xc6796a69, 0x4e317187, 0x1c81aa8f, 0x90f1c18b, 0x651c47e3, 0x967d4d4, 0xc1c277eb, 0x6a419ef1, 0x8fee255e, 0xe13f274c, 0x42d4ff33, - 0xb71b3e0d, 0x000059, 00000000 + 0xb71b3e0d, 0x000059 } }, { @@ -69780,19 +69778,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc4310e38, 0x466393a4, 0xa6e44d2b, 0x7dc743ac, 0xb23eb5a1, 0x7f308f1e, 0x5ca00abe, 0x74bfa7ee, 0x672cb67a, 0x44932fd7, 0xb2027c96, 0x41b6dee7, 0x355c8036, 0xf983f451, 0x572d8109, - 0xbef32266, 0x00006a, 00000000 + 0xbef32266, 0x00006a }, { 0xcf2b9365, 0x8b4d58c, 0x5d44d74c, 0x4ad972f4, 0x8524190f, 0x407fd2b4, 0x47ab7015, 0x9452623a, 0xac6d1c66, 0xf742a2ac, 0xf72fc639, 0x3d40d859, 0xb3018a30, 0xef5bd131, 0xa84807e7, - 0x218f6d85, 0x000102, 00000000 + 0x218f6d85, 0x000102 }, { 0xa96fd19e, 0x4c3d71d5, 0xb5fb5c4f, 0xdee5f845, 0x8360f413, 0x62adb2cf, 0xa1aed428, 0x37e1c247, 0xf73a24fa, 0x1259d0dc, 0x221ea459, 0xa44977a3, 0xf2f622af, 0x126bfc9d, 0x21d0d6dc, - 0x59aa824, 0x0001c6, 00000000 + 0x59aa824, 0x0001c6 } }, { @@ -69800,19 +69798,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7bcf6c1e, 0xc041f409, 0x5c0a03ca, 0x2ad322e8, 0x50e9cd3d, 0x73ed1df, 0x18bf9bfc, 0x82cdbe65, 0xf3ac504e, 0x640acaf5, 0x30510631, 0xc7bf9df6, 0xa0bdcfdc, 0xa6309fc0, 0xbd74ea8e, - 0x8d705423, 0x00006f, 00000000 + 0x8d705423, 0x00006f }, { 0x2add69ba, 0x1c1dab71, 0x34f50005, 0x2c7216f6, 0xa39fd271, 0xe35aabf3, 0xdb201d9c, 0x257e380a, 0xafc15214, 0x45bac98a, 0x5e212218, 0x1792bc7f, 0x446ad879, 0x958464c6, 0xe3adb71b, - 0xc4945919, 0x000107, 00000000 + 0xc4945919, 0x000107 }, { 0x32846b34, 0x299ced61, 0x2528e9f0, 0x5fce1ca2, 0xfdb5c44d, 0xc3b3da5e, 0x5d92dad4, 0xa4c641b8, 0xa0a5eb4c, 0xaf4b4493, 0xa01121bf, 0xbdbdb23a, 0xb5c439e2, 0x6242a480, 0xaa81f13d, - 0xdae7fa2f, 0x000091, 00000000 + 0xdae7fa2f, 0x000091 } }, { @@ -69820,19 +69818,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x314a5859, 0xfec2ac60, 0x8f0456fe, 0xf8164b14, 0xccfade74, 0x99f969b1, 0x7d9f37b5, 0x4aa7353b, 0xf2ebb7b3, 0x2e1b427f, 0xee78d362, 0x619bcaab, 0x134c37fa, 0x29904925, 0xbb16b4b0, - 0x9a073c53, 0x00007f, 00000000 + 0x9a073c53, 0x00007f }, { 0x418ca490, 0xce177a3b, 0xf0c2fda7, 0xce2405b9, 0xc10328a1, 0x3b0de467, 0x16fdd429, 0xf565d9e6, 0x9832b3cb, 0xfd3cdc4f, 0x86add367, 0x34b9ed2, 0x66b031b9, 0x28ecd574, 0xf255a5cf, - 0x19be103e, 0x00013d, 00000000 + 0x19be103e, 0x00013d }, { 0x1117eb5e, 0xaeaaf258, 0xb80ca5d6, 0xad66fc6, 0x59788ee2, 0xb864561a, 0xe5c41b3e, 0xfc905382, 0xb03137b2, 0x329f4aa0, 0xe3234cb5, 0x22a4ed46, 0x71ddcdf6, 0xb934fa7, 0xbeb534b1, - 0xc7200ff3, 0x000153, 00000000 + 0xc7200ff3, 0x000153 } }, { @@ -69840,19 +69838,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd90d82e8, 0x985bc17, 0x4549f1a7, 0xc6b04e3a, 0x7ddf6239, 0xa7738676, 0x9f130999, 0x94410a92, 0x22609e95, 0x7cedcff, 0x4155e840, 0xe53e1fa4, 0x86757d71, 0xf302344c, 0xe271f248, - 0xb5ad9611, 0x0001e7, 00000000 + 0xb5ad9611, 0x0001e7 }, { 0x7644a925, 0x80fdb6c, 0xae781fb1, 0xba13a4e0, 0x330febec, 0x8cb510fc, 0xda33ac3, 0xe908d613, 0x65d80cb4, 0x743226e6, 0xe7072884, 0x84a3c127, 0x763508, 0x680ec5, 0x505e7756, 0x44a56b9, - 0x000093, 00000000 + 0x000093 }, { 0x758281b8, 0x5326885c, 0x11121f33, 0xf058fc1, 0xeee255e3, 0x5fcb6126, 0x47bfc36e, 0xad02e84b, 0xbdf91f4, 0xd391efa2, 0x55167bd8, 0xcd2e5526, 0xf921bbe, 0x5f84046, 0xbf41e967, - 0xfb14cae, 0x00004a, 00000000 + 0xfb14cae, 0x00004a } }, { @@ -69860,19 +69858,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd101a58, 0xeed7682b, 0x31aac27f, 0xacabc9bd, 0xe170776d, 0x98e54af0, 0xd92a5faf, 0x2d5aecfc, 0x74e7149, 0xd5f224fa, 0xefc1a124, 0x165b6559, 0x7dec1916, 0x9e7907a7, 0xad0e5bb0, - 0xe1fc7065, 0x0000d5, 00000000 + 0xe1fc7065, 0x0000d5 }, { 0x508507d6, 0x14e86fd2, 0xac3551ca, 0x13925305, 0x5507ea8b, 0x63aef84, 0x962ca5c4, 0x8b24c07d, 0x27654763, 0x6f5fa79d, 0xb4aa4556, 0x38b9c78c, 0xaf300517, 0x9d1f71d2, 0xb4a4c56b, - 0xf8c8e20a, 0x0000d8, 00000000 + 0xf8c8e20a, 0x0000d8 }, { 0xfa7ac98, 0x2949d109, 0x79e0a272, 0x3433a3c2, 0x58c06ba4, 0x7a293062, 0xe4b0cb58, 0x316b281c, 0xf19c6071, 0x70270c6e, 0xdbcceb53, 0x59abb49a, 0x9db2f88e, 0x1faec868, 0xc7bca955, - 0xfd64a0b7, 0x00015d, 00000000 + 0xfd64a0b7, 0x00015d } }, { @@ -69880,19 +69878,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xac087533, 0x831f1a6e, 0xcb56df88, 0x73bc47a4, 0x79a8fe35, 0x12d642c8, 0x67526544, 0x5deb8013, 0xf5214d07, 0x1fddde92, 0x36016de4, 0x7efd32c6, 0xc2b65064, 0xfa0ccb0c, 0x8be03dcc, - 0xe98091ff, 0x0001a6, 00000000 + 0xe98091ff, 0x0001a6 }, { 0x77663b9d, 0x49af6dc, 0x80dadcd2, 0x2e26931f, 0x3d56e53d, 0xf921003a, 0x27f99694, 0x662fba5a, 0x94fa05e9, 0xdc09dab4, 0xe0e904f, 0xfd1bc683, 0xca00d508, 0xfb025203, 0x425af0e6, - 0x7cf091c7, 0x000167, 00000000 + 0x7cf091c7, 0x000167 }, { 0x8cd9c002, 0xade81e0e, 0x4d5c4401, 0x82cff096, 0xcb7823d7, 0xf57197a9, 0x8d8a8579, 0x97c52a23, 0x326bda00, 0x9d30ad88, 0xa38c19c7, 0x47e673f2, 0x7c8575d2, 0x568a6d90, 0x7ff0cdbe, - 0xb190e93, 0x000177, 00000000 + 0xb190e93, 0x000177 } }, { @@ -69900,19 +69898,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8fed4e4, 0x2af96e1b, 0x9e6b309c, 0x57e3cc99, 0xf88a8584, 0x97f7e292, 0xf4361f26, 0x86a69eab, 0x40f7112a, 0x3207582b, 0x5ea6848a, 0xecb0b64b, 0x4c35a189, 0xc79cf045, 0x5f4af2cd, - 0x51d1b7c3, 0x00014b, 00000000 + 0x51d1b7c3, 0x00014b }, { 0x492a89f1, 0x348f4324, 0x71c2c595, 0x784c1804, 0x53ef8fd6, 0x4238a140, 0xe4e76396, 0x8209764d, 0x2e42aeab, 0x25adbff1, 0x42cd40fd, 0xb618b4a7, 0xb072b585, 0xffc426dc, 0x1e705295, - 0x16c85a25, 0x00009d, 00000000 + 0x16c85a25, 0x00009d }, { 0x5bd00ec1, 0xfcfd3740, 0xa6a3d060, 0x27d42234, 0x97d0e411, 0x9c9d82d7, 0x9cee50a7, 0x8ac10a50, 0x1d859eb2, 0xee35c659, 0xacdee08d, 0x8560b8c6, 0x4b87183c, 0xa37b19bc, 0x17b71b8e, - 0xbcf9326c, 0x0000b0, 00000000 + 0xbcf9326c, 0x0000b0 } }, { @@ -69920,19 +69918,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7ab0cb9c, 0x7e948ae9, 0x6c3ef637, 0x870748fe, 0x794b9de7, 0x95c6a0f8, 0xd3dad872, 0xc6b5a469, 0xece32834, 0x17abf84e, 0x5e711bc0, 0xc3266320, 0x3d5ecaa7, 0x1686a829, 0xdef6f8a7, - 0xf0743e00, 0x0001e2, 00000000 + 0xf0743e00, 0x0001e2 }, { 0x40b0167c, 0x1b430b50, 0x91430dad, 0xf3e50332, 0x128c7f78, 0xd0fa879f, 0x305aea2, 0x81a06916, 0x8f4e8532, 0x78d7da81, 0xf3b4e82, 0xd5d6c80d, 0xced78ddd, 0xdfc6d4ec, 0xb155cc88, - 0x9627fa59, 0x000016, 00000000 + 0x9627fa59, 0x000016 }, { 0x910f3619, 0x946afd35, 0x4c207b16, 0x5e0e640b, 0x34c63521, 0xefacd6bb, 0xe69a11e9, 0xf4c8a3b5, 0xa033cf50, 0x2eb77802, 0x62c8423f, 0x12d13145, 0x997feae6, 0x494f792e, 0xbf5d450e, - 0xed1296e7, 0x000010, 00000000 + 0xed1296e7, 0x000010 } } }, @@ -69942,19 +69940,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf6ec3545, 0x6240deb8, 0x21284b3b, 0xb3ffe5f6, 0x80d01d05, 0x3cdce77a, 0x82b0f6f5, 0x31514fa7, 0xfc11e2c9, 0x858033d0, 0xd9f5b85d, 0x2ffd3070, 0x704e2e44, 0xc6c73a0f, 0x25244aea, - 0x818b69a1, 0x000171, 00000000 + 0x818b69a1, 0x000171 }, { 0xfd98d6b5, 0xfa6178d9, 0xabfefcc2, 0xd761e33f, 0xb6a00967, 0xaa22bdf0, 0xb21f80b8, 0x6c858015, 0x19614aed, 0x374fa282, 0xa01fd99, 0x329d1ba2, 0xf38b155c, 0xc1673471, 0x1e99a53d, - 0x8b985cbf, 0x0000a3, 00000000 + 0x8b985cbf, 0x0000a3 }, { 0x8599549f, 0xdfbd4aef, 0x69508446, 0xc1f2711c, 0xf5ce0b97, 0x3979d3ae, 0xa41f9963, 0xb11c0b34, 0xb6f294dc, 0x62c27ee8, 0x92929700, 0x14fdd328, 0xdbe74636, 0x1ad98805, 0x30872870, - 0x46ce3e4f, 0x0000d9, 00000000 + 0x46ce3e4f, 0x0000d9 } }, { @@ -69962,19 +69960,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x82fb2811, 0xbb92ac05, 0x7278b81f, 0x41bff150, 0x474a398d, 0x6f4718af, 0x9654f112, 0xe4155c55, 0x9150a32d, 0x5baec8d8, 0x199d61ff, 0xe9fff310, 0xe6fe1ae0, 0x53af0b19, 0xa9d5f447, - 0x5bfcdd75, 0x000015, 00000000 + 0x5bfcdd75, 0x000015 }, { 0x50fce0e4, 0x2c000b1e, 0x6d97c7a3, 0x56edc4ef, 0x4f9f1971, 0x3f035d84, 0x7e9a2fe, 0x2e62462a, 0xa51fe4b6, 0x699f6fe7, 0x3985d208, 0x48d1ae86, 0xf06e99f3, 0x4ebef2e7, 0xc608a80d, - 0x89a420b6, 0x000142, 00000000 + 0x89a420b6, 0x000142 }, { 0x3f1f3067, 0x9cf1b750, 0x2457bbcf, 0x4c7b5214, 0xae3532ce, 0x83d38065, 0xd6786d40, 0xabbd9a86, 0xebf88bb7, 0xf9a24645, 0xfc50ab73, 0xd43c2527, 0xca525662, 0x444f4824, 0x1d4bfca4, - 0x858bfe78, 0x000195, 00000000 + 0x858bfe78, 0x000195 } }, { @@ -69982,19 +69980,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x347aa283, 0xacc90828, 0x4806ba75, 0x5c74f6f2, 0x226a26bd, 0x1b4c206b, 0x5236a0b3, 0x637e4ada, 0xbe2766da, 0x42eaed7a, 0x94d954e8, 0x78f0cb30, 0x4ded07b0, 0x49b013ad, 0xb4455431, - 0x4bb86c7a, 0x000108, 00000000 + 0x4bb86c7a, 0x000108 }, { 0xc6f0073f, 0xfdbb7299, 0xaae3cabe, 0x5ed89d5e, 0xd25f1978, 0x24a8736f, 0x4b86c447, 0xd45e76b1, 0xb1a74ca9, 0xc4a6fe3f, 0xab7bc744, 0x1a78164c, 0x9b4e3dbe, 0xd10ba93c, 0x3f66df93, - 0xf97c74ea, 0x000157, 00000000 + 0xf97c74ea, 0x000157 }, { 0x53a9d0cd, 0x6cb39244, 0x2b8bab6c, 0xb2238639, 0x4e693130, 0xe8c8339a, 0xc029fa9f, 0xb0043024, 0x39fd94ab, 0xc904840, 0x13a7749c, 0x6946aae5, 0x892d5a12, 0x7cece578, 0xbf61d37c, - 0xf1c5d90, 0x00019f, 00000000 + 0xf1c5d90, 0x00019f } }, { @@ -70002,19 +70000,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7c3ea74a, 0xee3d8db0, 0x2014adaa, 0x9f975a43, 0x29831571, 0xbae20d77, 0x93b19939, 0x24e3a09c, 0x847574d4, 0xd43d75a5, 0xf6c9d715, 0x6729b388, 0xed79d83c, 0xd7696037, 0xe6ade282, - 0xd3cf0fb6, 0x000179, 00000000 + 0xd3cf0fb6, 0x000179 }, { 0xed5ee76f, 0xf6eef7cf, 0x9b7435e6, 0xdbda5f15, 0x6b61ecd, 0xe8cffd1d, 0x2a8ff96e, 0xdab4cb5, 0xe9331333, 0x97b3af5a, 0x1ae4740b, 0x439555b0, 0x8d6101a9, 0x2335729a, 0x71be6c90, - 0x2b7d58ed, 0x00004a, 00000000 + 0x2b7d58ed, 0x00004a }, { 0x2b95b24a, 0xb2403612, 0xabea97ac, 0xdb3b20bc, 0xcce62215, 0xfceb9b98, 0x3ddf283a, 0xb7af6508, 0x520982c6, 0xc8609912, 0xd9934207, 0x3a8a9deb, 0x6d91dd74, 0x868f20a5, 0x53e46ba2, - 0x903bb7c4, 0x00012b, 00000000 + 0x903bb7c4, 0x00012b } }, { @@ -70022,19 +70020,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4a11aa09, 0xdbd6eb61, 0xb9d758e8, 0x2cd16260, 0x3fc53e0e, 0x9e446a50, 0xa646e9ce, 0x8e3dff9c, 0x76e4a199, 0x4a292f05, 0xd4330016, 0xc014fa88, 0x681b382a, 0x90c614ab, 0xf9e736d5, - 0xc259748e, 0x000022, 00000000 + 0xc259748e, 0x000022 }, { 0x4ed17818, 0x73dcd9e, 0x70c37478, 0x84df824b, 0xed5f8331, 0xef9c6727, 0x56997eb1, 0x2dfb50f5, 0x839ca6df, 0x64a729bb, 0xba496816, 0x2976ec0c, 0xa0238478, 0x53fe2e12, 0xe3b108a7, - 0x3bd6328f, 0x000078, 00000000 + 0x3bd6328f, 0x000078 }, { 0xbff8e3a5, 0x642061fd, 0x98bca4ea, 0xfd51db86, 0x70c32eb7, 0x5c927852, 0x98ed8bd8, 0x61b0f8f2, 0xf69437e8, 0x2be368d7, 0x61e56dfc, 0x42c2cbef, 0x6611a856, 0x3c891c76, 0x9a849f89, - 0x875b1f2a, 0x0000e4, 00000000 + 0x875b1f2a, 0x0000e4 } }, { @@ -70042,19 +70040,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd1f1c8de, 0xe5fe3440, 0xe64f042a, 0x39537a0, 0xab36355b, 0xc931aad6, 0xab53578c, 0x20ff521e, 0x45e63897, 0x262d57de, 0x25bd15d9, 0xcbe21190, 0xbaec92b7, 0x207e6dc7, 0x97658783, - 0x8cfca094, 0x0000b4, 00000000 + 0x8cfca094, 0x0000b4 }, { 0x1109b914, 0x6c1f449f, 0x908d7ecb, 0x5adeca4c, 0xc54976e7, 0xa8eff790, 0x928b05bb, 0xe724e783, 0xbe520dae, 0x3c58e4ff, 0x4eef62a5, 0xc053cb7b, 0xdf8f958f, 0x4c88c1be, 0x6a4bf8d6, - 0x36c27181, 0x00010d, 00000000 + 0x36c27181, 0x00010d }, { 0x1aa536b2, 0x949d88bc, 0xd5ab0444, 0x59565404, 0xdfceb61b, 0xb1485c6e, 0xd50cc42e, 0x7e0ae572, 0x75cac08b, 0x61b38566, 0xc3e1c2d8, 0xebbba583, 0x1a338e1c, 0xc210949c, 0xb3d18e5b, - 0x75f79d69, 0x0000f8, 00000000 + 0x75f79d69, 0x0000f8 } }, { @@ -70062,19 +70060,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x34c43fa4, 0x28864c27, 0x49184d12, 0x1f571d1e, 0xfbfb9d24, 0x8a6dcde1, 0xf614884a, 0x6b07657b, 0xbff7be42, 0xd98335b5, 0xaaf650ac, 0xa56eaa8b, 0xbc978328, 0xa96ee117, 0xba9ca225, - 0x11d45f, 0x0000ed, 00000000 + 0x11d45f, 0x0000ed }, { 0x512c30a8, 0xd9f3820, 0x5043bcbb, 0x4d3379db, 0xc14f5caa, 0x1bbb7ad0, 0x236c00b1, 0xc3067581, 0x6f81e4d6, 0xb8f01e5f, 0x97b5f1, 0x8f11f9ef, 0x6be8e5d0, 0x58a7d2a4, 0x8b44d478, - 0xe1baf537, 0x000068, 00000000 + 0xe1baf537, 0x000068 }, { 0x78496918, 0x2d387d1c, 0x1f0a63b2, 0x48b65090, 0xb50777, 0x17c9f595, 0x16258b5d, 0xaa151d7c, 0x7890f451, 0x47543bc4, 0xbc6cf83c, 0x3e0d661d, 0xc6d85d55, 0x2708c8cf, 0xdb4d7c41, - 0xda2bb3ae, 0x00017b, 00000000 + 0xda2bb3ae, 0x00017b } }, { @@ -70082,19 +70080,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x653a8498, 0x9cc751c3, 0xdb3499fd, 0x3c4cbf9a, 0x68b574bd, 0x4758241c, 0x2d37602d, 0xb6783c22, 0x6eb0a97a, 0xfab84210, 0xb8b4c810, 0x29ed6525, 0x79f4632f, 0xd7976bd7, 0x2a47663c, - 0xe156b795, 0x0001e3, 00000000 + 0xe156b795, 0x0001e3 }, { 0xe453c8fe, 0x5116c927, 0x12566da1, 0x499cd1ea, 0xbfc51d37, 0xdf3c7124, 0xb7b383d0, 0x8410330f, 0xb0c7201d, 0xe04693ce, 0x763bfe79, 0x4825130a, 0x28d5485a, 0xcd72801, 0xd2c64a1e, - 0x50d395bf, 0x000189, 00000000 + 0x50d395bf, 0x000189 }, { 0x9b4ee09, 0xef1aafd1, 0x27bcc54a, 0xf32034a4, 0x3b69faff, 0x4d709bf3, 0x9c2b63b3, 0xe77822ba, 0x40989769, 0x8dce748c, 0xee70f0b5, 0xf94d723b, 0x7be11fd3, 0x3454bf73, 0xa2dc9108, - 0xf010f562, 0x000019, 00000000 + 0xf010f562, 0x000019 } }, { @@ -70102,19 +70100,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x82ed7d93, 0x74dc380e, 0x36edb00a, 0x2aac2efa, 0x75443a2c, 0x7017a947, 0xaaa6b977, 0x51ca276d, 0xad167349, 0x1508c9c8, 0xc079d1a4, 0x69f7223c, 0x77db04cf, 0xf14196aa, 0xed967785, - 0x426b4af, 0x00012e, 00000000 + 0x426b4af, 0x00012e }, { 0x9a48f611, 0x9271dfd4, 0xb779b557, 0xb3bb479f, 0x4fd9040b, 0xc3a73c44, 0x5abfcb6d, 0x9a61cec4, 0x7fa68908, 0x2261d1ab, 0xabf930ea, 0x970f6422, 0x597a62ee, 0x637fba88, 0x9531cc2d, - 0x182eb3fd, 0x0000c8, 00000000 + 0x182eb3fd, 0x0000c8 }, { 0x576b26bb, 0xc360d89d, 0xb1a75a3d, 0xd1501e84, 0xf85fcf5e, 0x19fa1e0f, 0x82ffc8e6, 0x40f674ee, 0x6ad1093e, 0xdd33deac, 0x98e8cb6b, 0xd0d0c6d6, 0x1033c6ac, 0x951899e1, 0x9a0c106b, - 0xfdd39a1c, 0x00014e, 00000000 + 0xfdd39a1c, 0x00014e } }, { @@ -70122,19 +70120,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaa781cb3, 0xf809c661, 0xbe2cd9e, 0x8f3c07ea, 0x278c9980, 0xa69e966c, 0x34c0395d, 0x9794165d, 0xa608a6a9, 0x1574ee07, 0xc85ffdea, 0x82865628, 0x2bbc2ee9, 0x31dfd660, 0xc3947ea7, - 0x8d6e89b5, 0x000121, 00000000 + 0x8d6e89b5, 0x000121 }, { 0x6abc6f7a, 0xa2530562, 0xc872de52, 0x2576e03e, 0x5b80ed15, 0x4b3104ac, 0x7c37bc64, 0x6c1d7027, 0xd992650d, 0xa0151681, 0xcef53ca3, 0x736419c, 0xd4cd67b6, 0x3bff587, 0x1fcc9cce, - 0x4c72a9cd, 0x0001cd, 00000000 + 0x4c72a9cd, 0x0001cd }, { 0x66abdb07, 0x227baf3d, 0xdb1bc549, 0x20c69ad3, 0x2fe7b984, 0x2c2ccf95, 0x2a98aa92, 0x56aecf90, 0x808d4f4f, 0x32c99c41, 0x2653569a, 0x64aed5f8, 0xc154a86a, 0x78396be7, 0x88487c21, - 0x1a917365, 0x0000a4, 00000000 + 0x1a917365, 0x0000a4 } }, { @@ -70142,19 +70140,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xefeadbf2, 0x58845693, 0x31df0548, 0xcd801b59, 0xac661a8b, 0xb6b4584c, 0xa3dabd8d, 0x838c516d, 0x9e7b935c, 0x77a9705c, 0x554e65c5, 0xd18fd320, 0xb56d76c6, 0xc121fc17, 0x9fa7d2f5, - 0x6074275d, 0x0000d8, 00000000 + 0x6074275d, 0x0000d8 }, { 0x3924bbb1, 0xfafcbe97, 0xa5bdf341, 0x3a697198, 0x4f845cc8, 0xefc61d3a, 0xb43489af, 0x6450e49c, 0x516488bc, 0x8f0611b6, 0x8b0d0aad, 0xa8e50363, 0xd8f93038, 0x1b61c7fb, 0x69621ac5, - 0xb713e907, 0x0001a1, 00000000 + 0xb713e907, 0x0001a1 }, { 0x10429547, 0x7ded5769, 0x406f5fd9, 0x78a1498d, 0xf80856e1, 0x1f4fc268, 0xc3804ea4, 0xd178d06b, 0x14d5457c, 0x654a2623, 0x513bb59f, 0x494f9b56, 0x648c1d1e, 0x3e529be2, 0xd00615b5, - 0x7adb20b6, 0x0000a1, 00000000 + 0x7adb20b6, 0x0000a1 } }, { @@ -70162,19 +70160,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe0b3e25e, 0xfd1239a4, 0x6b0643f4, 0xab377d72, 0xfdf7c100, 0xd2327939, 0x33a79747, 0x6147ce17, 0xc1be6389, 0xcebf028, 0x229b10ac, 0xb42366b3, 0xb269aade, 0xe1634264, 0xa4962c05, - 0xc8ad14f9, 0x000116, 00000000 + 0xc8ad14f9, 0x000116 }, { 0x53f575a1, 0x43e9838e, 0x7e2fd299, 0x6202fdf, 0xfad2fbb8, 0xe047156e, 0x7bb5f82a, 0x8ea23517, 0x8c72ebb4, 0x904da871, 0xef4081d4, 0xfaf3d009, 0x94932fd8, 0x35f6074d, 0xf25aeb5a, - 0xf461399e, 0x000162, 00000000 + 0xf461399e, 0x000162 }, { 0x8757751d, 0xef7910f2, 0xda3510a7, 0xf58303d1, 0x5f562633, 0x11dc96c3, 0xa006d18d, 0x2274085a, 0xf20ea494, 0xb1eee2d5, 0x7b9e72b0, 0xf79af7b4, 0x7c1c0533, 0xd05e81c0, 0xfbba5915, - 0xb39b93c6, 0x000024, 00000000 + 0xb39b93c6, 0x000024 } }, { @@ -70182,19 +70180,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9fba8deb, 0xc79975f1, 0xbd12ec0, 0xc32f96ae, 0xd4f1b2c9, 0xdfb0bcc3, 0x7ea2405, 0x3318669, 0xc02ce10, 0x30ae24a1, 0xfd8e30d7, 0x6681accc, 0x58896e73, 0x10603bcc, 0xdc02419f, - 0xebc0e9d4, 0x00008e, 00000000 + 0xebc0e9d4, 0x00008e }, { 0x4256db8b, 0x2bbddea, 0xacc71d2, 0x37418bae, 0x12b11061, 0xe13b91cf, 0x79163959, 0x63cd62f, 0xd0a40d28, 0x341a6606, 0xc174df66, 0x2772c4d5, 0xd29300a8, 0xcb4fd1d, 0x7cf3b3c2, - 0xba618fd7, 0x000139, 00000000 + 0xba618fd7, 0x000139 }, { 0x69a5df79, 0xba23d3f5, 0x27cf247, 0x1099cac7, 0x44383299, 0x27125768, 0x83fc5753, 0x9197f4a1, 0x269d3db8, 0x4bf96d0e, 0xd5c79177, 0x6dd3980, 0x26dc8b22, 0xb2236af2, 0xccd7bbbf, - 0x7816b2a6, 0x0001d8, 00000000 + 0x7816b2a6, 0x0001d8 } }, { @@ -70202,19 +70200,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb93414b4, 0x83e29995, 0xbaaeed63, 0xb5e81cb2, 0x2d53836b, 0x330d2efe, 0x983a49ca, 0xd266ddb4, 0x528010d5, 0x4006a040, 0x466413cd, 0xad54f58a, 0x802bcd54, 0x2ad1f38a, 0x6a8918e0, - 0x1d2f821e, 0x00003e, 00000000 + 0x1d2f821e, 0x00003e }, { 0x27ea0f9d, 0xe5b109b9, 0xdb20e238, 0x76efb4be, 0xefe1afa9, 0x79ad8190, 0xed378b4e, 0x826e91e5, 0x8b343420, 0x7bd7e438, 0x259d19aa, 0xbc590dc3, 0x36b6e414, 0x98148b5f, 0x17d0a7a8, - 0x153475cd, 0x000064, 00000000 + 0x153475cd, 0x000064 }, { 0xd9f59df4, 0xe9618352, 0x8d0e5d53, 0x67d26bb7, 0xb44ca894, 0x62399129, 0x520d2129, 0x70030766, 0xf4ee11df, 0x72474120, 0x1ea8d48c, 0x88f7173a, 0x219899cb, 0x2ac5f362, 0x994b85cf, - 0xea74cc48, 0x000141, 00000000 + 0xea74cc48, 0x000141 } }, { @@ -70222,19 +70220,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7a9fee91, 0xa27eed94, 0xd8ebfa08, 0x3664a37c, 0xa418df12, 0x92237bae, 0x44159063, 0xfdbde91f, 0x49a05cf4, 0xafc35d58, 0x4c9493cc, 0xcc1a6ae7, 0x3567520d, 0x6115b1d, 0xad90c50a, - 0x96dcaa08, 0x00015f, 00000000 + 0x96dcaa08, 0x00015f }, { 0x417a3a68, 0x42afe163, 0x7bf1fc4d, 0x883476e8, 0xe59fde01, 0x28ad597b, 0x8cb5f20d, 0xd28eb175, 0x17fcebb7, 0x6022ce63, 0xfcbd1fb7, 0xa5d857cd, 0xb174452d, 0xb354f55, 0xf7abb46d, - 0x1630cad3, 0x00004b, 00000000 + 0x1630cad3, 0x00004b }, { 0x81ce3a29, 0x3a2b9657, 0xeae2f65f, 0x9da3333, 0x2fe40c93, 0x1d810359, 0x62376d32, 0x1ecd61d6, 0x80775e16, 0x726d7679, 0x5a50cfbe, 0xf1c637c5, 0x36adb04d, 0xdebf3230, 0x734a6331, - 0xdeacda99, 0x000085, 00000000 + 0xdeacda99, 0x000085 } } }, @@ -70244,19 +70242,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x33edbacb, 0xcbf1aebc, 0x2cb7d078, 0x1173871a, 0xf4a5278b, 0x3dfde177, 0xfcb8d617, 0xacd6be91, 0xad021cd2, 0x7f28f4e2, 0xcf905d7b, 0x1a162fcf, 0x10297b04, 0x74a2585a, 0xc6f867b4, - 0x21fb80d7, 0x00019a, 00000000 + 0x21fb80d7, 0x00019a }, { 0x89ecadca, 0x77290e02, 0xcbd49b2, 0xa4eda59, 0x9a4fd600, 0xf91cbf60, 0xa34a513a, 0x770acce3, 0xa64a82bd, 0x5b0eb182, 0x32d9236a, 0x9f8ad436, 0x3f2176a2, 0x417de724, 0xd45d2165, - 0x191e5dca, 0x000142, 00000000 + 0x191e5dca, 0x000142 }, { 0xd0129770, 0xff896d77, 0xd8f23dc1, 0x618e465a, 0x426442e4, 0x770fc612, 0x9c93490c, 0x7b64be9e, 0x317934ac, 0xb6b6cdd5, 0xdde8631e, 0x16240de6, 0x1c5eede0, 0xe9c23615, 0x17689cab, - 0x69daad71, 0x000048, 00000000 + 0x69daad71, 0x000048 } }, { @@ -70264,19 +70262,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x38630e16, 0xb854117a, 0x472a1a20, 0xe1c23f20, 0x820b8f70, 0x35f55aae, 0xaa801287, 0x6132a154, 0x844d20, 0xc6c9b5b6, 0x9e513c6c, 0xff86338b, 0x823cadf5, 0x29df2fd0, 0xf6c25aec, - 0xea1b397b, 0x000075, 00000000 + 0xea1b397b, 0x000075 }, { 0x8a8f77eb, 0x256173eb, 0x6117e14c, 0x3304d2f1, 0xdc9dd811, 0x2b97f8ce, 0x605cc539, 0x71966a15, 0xf9687a15, 0x8ab14ed8, 0xa7ea7517, 0x914185b9, 0x3376dc95, 0x5002466, 0xcd5bc285, - 0x5238a716, 0x0001f3, 00000000 + 0x5238a716, 0x0001f3 }, { 0xe4908fb6, 0x368e87f2, 0xfb9079eb, 0x36246f8, 0x697971dd, 0x6e69de07, 0xcb91a2f8, 0xad1f379b, 0x636228b4, 0x63ff614d, 0x4dc2c9ec, 0xd59d574, 0x74d63d79, 0xb7ff14fd, 0x86f92bd8, - 0xbafa1d35, 0x0000d3, 00000000 + 0xbafa1d35, 0x0000d3 } }, { @@ -70284,19 +70282,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe642b969, 0x1919f983, 0x76c5d452, 0x57d85dab, 0x96b6984a, 0x4d0fb1c8, 0x3a70329f, 0xd90790d3, 0x9524c025, 0x42db9609, 0xb77b1e8f, 0x8a1b5f2e, 0x77e1a189, 0xdebfce9e, 0x734892be, - 0xa18ebb94, 0x000057, 00000000 + 0xa18ebb94, 0x000057 }, { 0x78c163fe, 0x7ff02113, 0xf680e7cc, 0x1feebc3b, 0xff3e303, 0xb488af2c, 0x600116d1, 0xbd39f338, 0x85adea14, 0xd22c5496, 0x48c8383b, 0x97150486, 0xa93677b0, 0x91d1f25e, 0x9a01e28d, - 0x9a1695c0, 0x000152, 00000000 + 0x9a1695c0, 0x000152 }, { 0x9d083475, 0xcb00691f, 0x5499a7b8, 0x30ba6137, 0xcc4ba0bf, 0x50898e88, 0x219384fa, 0xf47551ca, 0x715eadb2, 0xb7c6cdd4, 0x7129511c, 0x10bf946d, 0x83661bca, 0x98d6a98a, 0x73042b95, - 0x166e3e8b, 0x0000f2, 00000000 + 0x166e3e8b, 0x0000f2 } }, { @@ -70304,19 +70302,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdfb7ca44, 0xcb319022, 0x5738039e, 0x9a8e7388, 0x474a8503, 0xa9bc74ff, 0x8195fab0, 0xf3a04309, 0x5806f894, 0xb0fb5075, 0x2067b27d, 0xe912098d, 0xff088569, 0x6c42c55f, 0x5c9b6cc9, - 0xb67a34c9, 0x000190, 00000000 + 0xb67a34c9, 0x000190 }, { 0xb6c03052, 0x7976b169, 0xb9b3fede, 0x8b552cc, 0x1d80f094, 0x4b18d292, 0x9e18d868, 0x5cb89f50, 0xb59508a3, 0x758260ef, 0x716b87fc, 0x7af190bc, 0xb63db3f5, 0x121193a5, 0x90302660, - 0x1e23c5bd, 0x0000fa, 00000000 + 0x1e23c5bd, 0x0000fa }, { 0x2737bc5b, 0xe9ea9f27, 0xdc23991e, 0xb069cadf, 0xb04e8205, 0xa68e11b3, 0xe923c355, 0x698c676e, 0x473c6135, 0xc569876, 0x7624be36, 0xfe9c1110, 0x2e7d4e, 0xe3efc5, 0x9c2a760a, 0xfe357d41, - 0x000124, 00000000 + 0x000124 } }, { @@ -70324,19 +70322,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd774977, 0x48f12ff0, 0x23d1af5a, 0x76155ed0, 0xca9e0cb6, 0x7c13c4f6, 0x31279cb9, 0xcf793848, 0x5bb1278, 0xdf66567, 0xcd3061c7, 0x3bb32e57, 0x843e9bc2, 0x366910b5, 0x9cd8bd2f, - 0xddc4c00b, 0x0000f4, 00000000 + 0xddc4c00b, 0x0000f4 }, { 0xb14ac381, 0x52814566, 0x4238bdb0, 0x6b353a09, 0xf28bc9e3, 0x989a5ec6, 0xabe1f45c, 0xe321d702, 0xee0b5b8e, 0xea00e950, 0x90879003, 0xe024ccbc, 0x276f44f, 0x720a014d, 0x240e6310, - 0xd05c46e0, 0x0001b8, 00000000 + 0xd05c46e0, 0x0001b8 }, { 0x41af9451, 0xce184ede, 0x6beeb22a, 0x8023a573, 0x47f8aed0, 0xcc5ea7e4, 0xf35bf1c0, 0xecea84c0, 0xf58e7fbe, 0x40c427c4, 0x1ac93c9c, 0x4cde55da, 0x6fc60ed1, 0x3551fd8d, 0xe7ecbf04, - 0x4c3f56a8, 0x00011e, 00000000 + 0x4c3f56a8, 0x00011e } }, { @@ -70344,19 +70342,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6b68f694, 0x61ec6a7e, 0xe26b0076, 0x90f3acdc, 0x6064e61c, 0x2675ba58, 0x661f8826, 0xa85e95c1, 0xb2887fd7, 0xf2d7695f, 0x368d8339, 0x873a4174, 0x5252ab44, 0xe342c06e, 0x7e5fdb75, - 0x4eceeecc, 0x00011a, 00000000 + 0x4eceeecc, 0x00011a }, { 0xbdd5c624, 0x20c0845d, 0xf47cc9ac, 0xcce04358, 0xf1124c89, 0x6d436417, 0xc9077aec, 0xf486c59c, 0x2694ad67, 0x2b8e6d5f, 0xa7bc1aa1, 0xbe2bf3cd, 0x6be2eeee, 0xc7d77a6b, 0xdb4bca74, - 0x3032b0a7, 0x0001ed, 00000000 + 0x3032b0a7, 0x0001ed }, { 0xa65039c0, 0x76d0ec9f, 0xf56985b5, 0xa958a7c2, 0x47a69c38, 0x2396b1ae, 0x3a32abce, 0xee5d5e2a, 0x5f39d694, 0xd3c96752, 0x8722fa8f, 0xd0bf258, 0xe9c162, 0xb985059e, 0x24eb5f16, - 0x85aaf9e0, 0x000102, 00000000 + 0x85aaf9e0, 0x000102 } }, { @@ -70364,19 +70362,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xccba3588, 0x180a4413, 0x58e012e8, 0x2d458cbc, 0xf42ca8dd, 0xc2467538, 0xea01a574, 0xd5b15de4, 0x67b6e282, 0x491d5c11, 0x121ec9d6, 0x3fb248d6, 0xfc9f1466, 0x165330c, 0xfed6522d, - 0x7c11294f, 0x00005c, 00000000 + 0x7c11294f, 0x00005c }, { 0xd16c6ced, 0x3aaa7e37, 0xf4320058, 0x5a0a7fbb, 0x734a9634, 0x80b9f1c2, 0x49e17bee, 0x74da05eb, 0x57489df7, 0xe049097e, 0xb748bbe4, 0x5fd6c536, 0x3976c248, 0x3dfb1698, 0x560f1001, - 0x770258b2, 0x00013a, 00000000 + 0x770258b2, 0x00013a }, { 0x1d7c5697, 0x65a30cb4, 0x2a35932b, 0x9ca17028, 0x1e2a14c0, 0xfad40517, 0xd3199ba3, 0x78e6d7fe, 0x9db09996, 0x4b0d4cc7, 0xee3fb882, 0x1415fe14, 0x639d2e0d, 0x768f43b6, 0xc8b0b380, - 0x3a9c4a0f, 0x000179, 00000000 + 0x3a9c4a0f, 0x000179 } }, { @@ -70384,19 +70382,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc9e7d0fd, 0x1498ab37, 0x7ab4749c, 0x9bd610be, 0xe5ce7a1f, 0x1aa845ce, 0xb6cee267, 0xb0527e2d, 0xd7c82b1e, 0x78db22e7, 0x2e14772d, 0x2cebd5c1, 0xcec47737, 0x941cb8db, 0xa50da510, - 0x664efefe, 0x000180, 00000000 + 0x664efefe, 0x000180 }, { 0x7e86eec1, 0xca94ee3, 0x11b5755d, 0x1c2a1d33, 0xd29c0268, 0x44f4589f, 0x25b415f2, 0x99522466, 0x593f5ae3, 0x215da626, 0xde0252e1, 0x7cf97bd1, 0xb5b4ad5f, 0x5d6409ac, 0x8185e422, - 0x730081c9, 0x00004a, 00000000 + 0x730081c9, 0x00004a }, { 0xe5d7a8a5, 0x4b6b5a6a, 0x40d8b6cd, 0x6ea59246, 0x5a2d0c53, 0xffbda8ca, 0x7e7fd982, 0xdd9a856b, 0x5dcf1d8a, 0xfe28fa69, 0xb4e8de20, 0x869fa7a1, 0x136c059b, 0x48e6b0ec, 0xba520f4, - 0x30a86958, 0x00004d, 00000000 + 0x30a86958, 0x00004d } }, { @@ -70404,19 +70402,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2936f645, 0xdde558b1, 0x2ac3863b, 0x276d5991, 0xf7d3b38a, 0x23b4817a, 0x65b940dc, 0x7112f1ee, 0x2bd70f63, 0xc2c7b6d8, 0x9c6317ff, 0x7e894426, 0x6aefcde0, 0xa123483b, 0x8b3f13c2, - 0x5982cda3, 0x0000c6, 00000000 + 0x5982cda3, 0x0000c6 }, { 0x6ffae6f2, 0x51273b8, 0x64956338, 0xfa5fc1ec, 0xac47948b, 0xf2702f96, 0x9d4a2089, 0xc5811b8a, 0x1fb3de28, 0x78b06273, 0xad9cc3b9, 0xaa01bafc, 0xb6e850f4, 0x23873870, 0xf52af064, - 0xb1f96763, 0x0000b4, 00000000 + 0xb1f96763, 0x0000b4 }, { 0xdbe9fc23, 0x666e1c5d, 0x3a45fbbd, 0x73c7e757, 0xb4775a7e, 0x6b7345a7, 0xf2611664, 0x5e87f05c, 0x6a24c78f, 0x1d2c1e84, 0x292e5579, 0x898cd32a, 0xee40ba37, 0xa2328843, 0xe6b9b338, - 0xb33ee257, 0x00009f, 00000000 + 0xb33ee257, 0x00009f } }, { @@ -70424,19 +70422,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x39f35e49, 0xcf52417f, 0xa3216102, 0x9b4def78, 0x529cce21, 0x31327855, 0x51543991, 0x1aa35021, 0x558910f7, 0x39aa9b6, 0x1db44905, 0x7fe3a76e, 0x1d60c5d4, 0x354a58d2, 0x30fc7a85, - 0x61c2faec, 0x000138, 00000000 + 0x61c2faec, 0x000138 }, { 0xc4b98b0c, 0x5fb66708, 0x40b11efd, 0xacc8b446, 0x69aa72b2, 0x61dd7be2, 0xd6f5f3e3, 0x3243224b, 0x733ecd35, 0x6c43f659, 0x4d43a4f5, 0xe51172c, 0xfa1666e8, 0x873381c, 0x4a778912, - 0x744bbfc6, 0x00017f, 00000000 + 0x744bbfc6, 0x00017f }, { 0xca7d225, 0xecdfa463, 0xa082492b, 0x9a52ceba, 0x583b2bde, 0x1aa4cfba, 0x79ca751, 0x1df9478e, 0xda37be51, 0xc938001b, 0x7c1d926d, 0xbf800cd2, 0xbae4cd65, 0x42899930, 0x1a873820, - 0x9d94f922, 0x00006a, 00000000 + 0x9d94f922, 0x00006a } }, { @@ -70444,19 +70442,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xccc6e819, 0xf1c32e04, 0x7e5a2338, 0xbe33e238, 0x10a3f088, 0x11f440e, 0x459052ec, 0xf6801c47, 0xea514ccd, 0x8e16e70a, 0xf191d13a, 0xa2bc6ecd, 0xfd166f1e, 0x490c34b2, 0x66003e3e, - 0x61a1e8be, 0x0000a7, 00000000 + 0x61a1e8be, 0x0000a7 }, { 0x8dfaaaaf, 0x4e8a2839, 0xf2002623, 0xdd9cb027, 0x3c97715e, 0x88d017af, 0xf352cdb8, 0x94d2d39f, 0x8e20ced5, 0xa85c6e15, 0x1b50be64, 0x9d7459e6, 0x3a0557b5, 0x4bb3f275, 0x80f346b5, - 0xab72a64e, 0x0001ec, 00000000 + 0xab72a64e, 0x0001ec }, { 0xc239702f, 0x3412e12e, 0xa6a64e13, 0x1782fe8d, 0x28616b95, 0xed959186, 0xb9f1ae0f, 0x33997123, 0x72f18ef8, 0xc8a001e, 0xfa9f2bb7, 0x3de92cd, 0x51084fa2, 0x81fc4d36, 0x11ca451, - 0xb78dbfc7, 0x0000b9, 00000000 + 0xb78dbfc7, 0x0000b9 } }, { @@ -70464,19 +70462,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x534e5e7, 0x2f32404f, 0xaca1a94d, 0xaa9fc553, 0x35bd55fb, 0xba77d1a, 0x3150bfb7, 0xb48475e3, 0x338a43c1, 0xbce0e6aa, 0xc435d7f6, 0x14cbe0a, 0xbe1098ba, 0x66388310, 0x33acd2da, - 0xe88b8236, 0x000069, 00000000 + 0xe88b8236, 0x000069 }, { 0x83bec19f, 0xaeaf48b9, 0x86fe73bd, 0x35bfca28, 0x7c9d6aec, 0xbd9cf144, 0x3cf25690, 0x2c03e801, 0xf569dab0, 0xd5c912ca, 0xd4fffbfb, 0x55ced7f5, 0xb85ee6b8, 0xdfa3e78d, 0x7b75c00a, - 0xf38a5c28, 0x0000e7, 00000000 + 0xf38a5c28, 0x0000e7 }, { 0xda74270a, 0x4d38e10b, 0x3bd01fb6, 0x8cf3ca3d, 0xff9bb1ca, 0xec150aa3, 0xb77406d9, 0xd3500e2c, 0xc156cba3, 0x13a389c5, 0x6cc1a246, 0x5fcd935e, 0xe03e80b6, 0x115f915d, 0x6113ad74, - 0x75738c0e, 0x0001e4, 00000000 + 0x75738c0e, 0x0001e4 } }, { @@ -70484,19 +70482,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf8213282, 0xce59928b, 0x116103ff, 0xd5f2751a, 0x3ce04a03, 0x523ddcd8, 0x4c55ead9, 0x29cd9460, 0x1f21dd08, 0x4e7b182d, 0xaccb1e95, 0x21f91fb0, 0x6fdf9f82, 0x9560acc1, 0x37c0f86c, - 0x7242c07a, 0x00011a, 00000000 + 0x7242c07a, 0x00011a }, { 0x2407ebd4, 0x2c87fe6c, 0x7ca77725, 0xc8b6fa4f, 0x51de91ef, 0x610ad90b, 0x33a459b4, 0x313d2252, 0x472cda8f, 0x77c8c8bb, 0x4ccbbe3e, 0x9028efce, 0xdf587957, 0xde0445c3, 0xb3191df1, - 0xd8134b6f, 0x0000e0, 00000000 + 0xd8134b6f, 0x0000e0 }, { 0xf4ed2b09, 0x9314f1b4, 0x8cd641a9, 0x1775303b, 0x32ac1f3a, 0x149325ca, 0x1de31334, 0x52fc3de1, 0x6a71d328, 0xbba99b4c, 0x2e0199c3, 0xc4ce9c1a, 0x70d52fe4, 0xa91a2115, 0x5310291, - 0xec5b294d, 0x000070, 00000000 + 0xec5b294d, 0x000070 } }, { @@ -70504,19 +70502,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x351eff64, 0xd66c4b3b, 0x2eedc9d9, 0xcd491865, 0xc1cf35c3, 0x776298e, 0xe35af40a, 0x45484316, 0xead67241, 0x3f1c464c, 0x495547b1, 0xa5ee1e8e, 0xa7ecf21c, 0xa4041770, 0x5c7cf9d2, - 0x418e1206, 0x000033, 00000000 + 0x418e1206, 0x000033 }, { 0xa9422c30, 0xf829c1c, 0xbeea0c2c, 0x8856d277, 0xc98f1d53, 0x56eeb630, 0xe92e8855, 0x519ae2d8, 0xb8ed9e00, 0xd5c98472, 0xa5b2709a, 0xeb19e57d, 0xc768d89e, 0x2fca5fb8, 0x64d1aa7e, - 0x553d379e, 0x0000ff, 00000000 + 0x553d379e, 0x0000ff }, { 0xb1c3f6a4, 0x97323290, 0x970857cd, 0x80809a63, 0x46ccd4b3, 0x4c55af49, 0x3241867d, 0x6f5ae57b, 0x8ca0885, 0x7172824, 0xa7f16c78, 0x86d529db, 0x71a46b1, 0xe20bf968, 0x5e1cae07, - 0xcad600b8, 0x00013c, 00000000 + 0xcad600b8, 0x00013c } }, { @@ -70524,19 +70522,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2ae840ab, 0x9a436f18, 0x850ab063, 0xee4bdbaa, 0xa022aa48, 0x996695fa, 0x5270485, 0xda32527a, 0x47c3edb2, 0xa32349b3, 0xc5f3b47f, 0xd9042607, 0x639c0017, 0xc110b1b8, 0xf12b53e1, - 0x7a611acc, 0x00017d, 00000000 + 0x7a611acc, 0x00017d }, { 0x7e57aa9f, 0x5a42f300, 0xaec5c620, 0xdbfa4258, 0xd3f4afd1, 0xfba428e9, 0x3b007225, 0x474dc4fd, 0xd595c87c, 0xe7b45630, 0x6d1be1b8, 0x9f5659ef, 0xcc28ea1f, 0x41eab0f1, 0x4d9c3ede, - 0xe93d76c7, 0x000090, 00000000 + 0xe93d76c7, 0x000090 }, { 0xd645ccc6, 0xb71dcfb0, 0x900d8cce, 0xd3dcbb9d, 0x93c2461b, 0xa079b8f5, 0x10fcc901, 0x8e18cb48, 0xc71ed753, 0x6ffc1783, 0x69bfbb85, 0x76adb766, 0x4718d04, 0xfdd4c79f, 0xc8b3deee, - 0x4725b32d, 0x000112, 00000000 + 0x4725b32d, 0x000112 } } }, @@ -70546,19 +70544,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf1fe3acb, 0x82378be6, 0x257a6453, 0x5ee6127c, 0x7cfba531, 0x62cf740d, 0xaecb34ff, 0xab8f508, 0xcd912de0, 0xfbee9c04, 0x351f2fc3, 0xb4e640e6, 0x21f820bc, 0x1c3b1cfe, 0x35cdb63c, - 0x5903d9b3, 0x00005f, 00000000 + 0x5903d9b3, 0x00005f }, { 0xf99a0eab, 0xd5c89eb7, 0x1743477c, 0xbee2da2d, 0x998513f8, 0x20ebbb46, 0x3546000a, 0xe8ef5608, 0x353030e6, 0xff32ca93, 0x37ef27bf, 0xae76f401, 0xc7e5b37, 0xdc7fcfdd, 0xb59b8ce2, - 0xf07d8058, 0x000122, 00000000 + 0xf07d8058, 0x000122 }, { 0x10c498e6, 0x72b0426b, 0xe3a38c78, 0xec1d6506, 0x3e410468, 0x6bb78c3a, 0x228eb640, 0x77ddf3, 0x1572e890, 0xc82e8b0c, 0xb508ffcf, 0x282fa558, 0xafcb255c, 0x1465e159, 0xf4a428c3, - 0x4f65a2f8, 0x00004b, 00000000 + 0x4f65a2f8, 0x00004b } }, { @@ -70566,19 +70564,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe63919f1, 0xc7a61461, 0xe7abd118, 0xf09f7d5f, 0xe5c151f0, 0x434c39c4, 0xa255d3e8, 0xabd53c72, 0x94556eee, 0x412c5955, 0xfbadad31, 0x282bf2e5, 0x8635747e, 0x4e66e4e8, 0x150aa3d3, - 0xe94473e, 0x000136, 00000000 + 0xe94473e, 0x000136 }, { 0xa3718354, 0x59811a27, 0xadb546fd, 0xa905252, 0x221bf185, 0xcf13e9d5, 0xcef65a3, 0xb855a91, 0xd5bf2314, 0xca7dda8d, 0x887213cb, 0x84820879, 0x79b78760, 0xb9ea16bd, 0xa401e50c, - 0x17904d8c, 0x000014, 00000000 + 0x17904d8c, 0x000014 }, { 0x81975095, 0xc74d76, 0xe4366231, 0x4fa088bb, 0x882a0995, 0x573fd945, 0xf4aeb90d, 0xa5195e33, 0x81829c08, 0x8b3d40db, 0x183a8e96, 0xac5900e1, 0x6039fbb1, 0x7765d7b3, 0xc7881553, - 0xc068e2a0, 0x00001e, 00000000 + 0xc068e2a0, 0x00001e } }, { @@ -70586,19 +70584,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x78f7669e, 0x1e28eb3, 0x8af39153, 0x7757cb57, 0x42da2b95, 0xfc94c214, 0xd58fed91, 0xfc008555, 0x94f5434f, 0x97ee54c6, 0xe6dc60c0, 0xfab9809f, 0x6a928f73, 0xd05b6910, 0x968e8ed5, - 0xc48bcb7a, 0x000108, 00000000 + 0xc48bcb7a, 0x000108 }, { 0x834ef7d, 0x21baf268, 0x397898e8, 0xf2386aa2, 0x8af37a66, 0x4414d388, 0xbef06719, 0x8e2093a6, 0xfa6ff23f, 0x4c961aa3, 0xca1cac55, 0xeecfac44, 0xdafea45a, 0xaf551656, 0x1b3553da, - 0x555d9ba0, 0x000046, 00000000 + 0x555d9ba0, 0x000046 }, { 0x12f96b5a, 0xdaf7fce8, 0xa3c232b7, 0x7d771ddd, 0xe708af03, 0x5a2a5934, 0xa169a05b, 0xd3225a3e, 0x6ec51a40, 0x1212615a, 0x32b3450e, 0x7e5856f0, 0xae2cf7a2, 0x1fc830fe, 0x4b7bc69e, - 0xffb69e2a, 0x0001be, 00000000 + 0xffb69e2a, 0x0001be } }, { @@ -70606,19 +70604,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf192ac25, 0xb1a2552a, 0x505cffbc, 0x69dc4019, 0x5594b9f1, 0x66bee7c2, 0xc8a57a8, 0xc9798739, 0x44ada23d, 0x93e75f97, 0xb3be8276, 0xe8b6495e, 0xd7fbb4f2, 0x260b1acd, 0xdc1f6276, - 0x566dbc0d, 0x0000e0, 00000000 + 0x566dbc0d, 0x0000e0 }, { 0xfb2e0eb6, 0x3d40c149, 0xf1a9756b, 0x9c9a1b7c, 0xec4c5dd, 0x7c9b4d9b, 0xea2c01e0, 0x4ff6a7ab, 0x9ffdd83c, 0xc90b0ab4, 0x27838131, 0x61f402a0, 0x1c95f935, 0x56b91522, 0x89ebf717, - 0xbf9a962a, 0x00010d, 00000000 + 0xbf9a962a, 0x00010d }, { 0x3867a3cc, 0x285b9c7c, 0x95d999dc, 0x6e510c58, 0xbc411b2e, 0xc8dbe2eb, 0xfe46a554, 0xb0aad56e, 0xd890d191, 0xdf41b735, 0x38b99d1a, 0xbd2efe8b, 0x9e10a68c, 0xb365a0e3, 0x13e1b53e, - 0xbb27a44c, 0x000119, 00000000 + 0xbb27a44c, 0x000119 } }, { @@ -70626,19 +70624,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xff55e173, 0x7f9ef50e, 0xc32beceb, 0xdd1aac13, 0xca54efdf, 0xf0eb5716, 0x120ad316, 0x26037ac0, 0x793e56f7, 0x1bcb0c21, 0x14ffd684, 0x9f2fd77e, 0x781655f1, 0x83a7b6ec, 0xecd148c2, - 0x4bfc532, 0x0001bf, 00000000 + 0x4bfc532, 0x0001bf }, { 0x8dbffce3, 0x9886bbf, 0x423d57f6, 0xf021b11a, 0xe53bde6e, 0xf1cfa238, 0xd1cdc42c, 0xeb60a7db, 0x43f1a4af, 0xc79779d1, 0x6fbef8f1, 0x101c9f7e, 0x130bbed2, 0xd2c30530, 0x2138a144, - 0xedc7e759, 0x0001b5, 00000000 + 0xedc7e759, 0x0001b5 }, { 0xf4febd25, 0xbc4a40f7, 0x8d57462b, 0x481eb3af, 0x186cd15c, 0xdc5cae77, 0x20d75b45, 0x95b83c82, 0x51b7e35d, 0x55d98a0c, 0x1f336804, 0x5bfb22c2, 0x3e58704e, 0xb3bfd942, 0xc4eb696c, - 0x7c503bff, 0x0000d7, 00000000 + 0x7c503bff, 0x0000d7 } }, { @@ -70646,19 +70644,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x71da01e2, 0xa5165481, 0xdbb49748, 0xbd1b6891, 0x467f5806, 0x4936535b, 0x343ead20, 0xe6521b1c, 0x293998c0, 0xaf9409a1, 0x63257b03, 0x472c82bc, 0xec795c6b, 0x47cc91be, 0x4f22d6a2, - 0x3cf01072, 0x00017f, 00000000 + 0x3cf01072, 0x00017f }, { 0xf9928845, 0x63f13561, 0x72794a2c, 0x9db86293, 0xc1c25efa, 0x9d149edb, 0x2a17650, 0x239ba945, 0x310af4eb, 0x4c7e65c1, 0xa3fca77e, 0x5d5b06c2, 0x19d026b6, 0x63899100, 0x97cf4beb, - 0xbf9d5f2a, 0x0000ec, 00000000 + 0xbf9d5f2a, 0x0000ec }, { 0x24962dc4, 0xbc23617, 0x33e76565, 0x58a543fd, 0xaced4e73, 0x5ce4ee1f, 0xdecb91f8, 0x7891c589, 0xe63d679a, 0x855c388, 0x70125e2c, 0xe10131ed, 0x7cdaba74, 0x76557853, 0x139dd87d, - 0xc849fca6, 0x00014a, 00000000 + 0xc849fca6, 0x00014a } }, { @@ -70666,19 +70664,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb5f4cfa, 0xd7844467, 0x3433ec59, 0xc5f3e378, 0xe42e85ea, 0x872c9aec, 0xe1f5828f, 0xed9fed33, 0x1e05cb49, 0x9242e9f9, 0x1bef363, 0x2ec7243a, 0x94737ac5, 0x61797624, 0x4912a6a6, - 0xac404e4f, 0x000111, 00000000 + 0xac404e4f, 0x000111 }, { 0x7486a938, 0xb123521e, 0x7745235d, 0x5eab6341, 0xa5e3ccc3, 0xf18bdb7d, 0x2537e8d8, 0x3ee3e3f6, 0x1eb090ca, 0x54d52209, 0xcb824672, 0x273c22e, 0x49485b04, 0x553267c6, 0x8ecd0f8f, - 0xd134e60c, 0x0000bc, 00000000 + 0xd134e60c, 0x0000bc }, { 0xaf96d343, 0xd17b9f75, 0xb410c59, 0xc9cf3d1d, 0xc1dfb73b, 0x6779581c, 0xb925259f, 0xf814ada5, 0x3466e820, 0xc5478ffd, 0xf5938d1c, 0x1213c843, 0xdcad6fbc, 0xd4f343ca, 0xae6e1dc2, - 0xe1dd42a8, 0x000098, 00000000 + 0xe1dd42a8, 0x000098 } }, { @@ -70686,19 +70684,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb7b9711f, 0xd663ad9f, 0xa04b3836, 0x39819335, 0x48ad65ce, 0x137906f3, 0xfe4b0477, 0x8a5e3a62, 0x456cfa3c, 0x624bad77, 0x5f664353, 0x7aa2e85, 0x800eb9bf, 0x50145425, 0x3ec388f8, - 0xcb6ff304, 0x0001f2, 00000000 + 0xcb6ff304, 0x0001f2 }, { 0x1752c43b, 0x293318aa, 0x95619f3a, 0x68b31393, 0xe08a5778, 0xb9b0d7dc, 0x4bc27e8f, 0xe43d4d44, 0xf71cd5e2, 0x418ea586, 0x833debe0, 0xf38b4717, 0xa822c4ce, 0xd22b60a4, 0xecd74c06, - 0xa49cb51e, 0x0000c4, 00000000 + 0xa49cb51e, 0x0000c4 }, { 0xdd6dba60, 0x6917283a, 0xc8656b88, 0x1e9e81a8, 0x1a2a6638, 0xbed473df, 0x1d2f6d3e, 0x5f640e2, 0x27458f10, 0x5a8e11b, 0x53e44e6e, 0x66a51bda, 0xfb09ed99, 0x9ec9b476, 0xedfe453b, - 0xbf8b474d, 0x000148, 00000000 + 0xbf8b474d, 0x000148 } }, { @@ -70706,19 +70704,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb2a0e67d, 0x2a17e32e, 0xf1d8774b, 0x1712a2c7, 0x62002292, 0xdac0840, 0xb8580845, 0xec8d5ff2, 0x36c691c6, 0xe815d36d, 0xbe191597, 0xf60ff672, 0x6f518351, 0x3f4f8e0b, 0x8946600f, - 0x328a6646, 0x00019c, 00000000 + 0x328a6646, 0x00019c }, { 0x2d2d6a33, 0xe1718b4e, 0x1c54f75c, 0xf2b1113c, 0xcc3e330d, 0x947b0a28, 0x4b21983, 0x5c2a1f3b, 0x3f2ffdba, 0xae90466d, 0x81fc9c20, 0x31aac049, 0x2c6d7dd9, 0x28ce406b, 0x585ed3d4, - 0xfc1a3f57, 0x00000a, 00000000 + 0xfc1a3f57, 0x00000a }, { 0x4a046b51, 0xbe06917f, 0x6a846ea2, 0xab222270, 0x8a10cbbf, 0x8ad6d459, 0x87e53d7, 0xcdd233e5, 0xbafd7099, 0xaf34b349, 0x5293494f, 0xd3705afa, 0xc02d246c, 0xf0d0df2d, 0x84fa5321, - 0x8c88fee0, 0x000162, 00000000 + 0x8c88fee0, 0x000162 } }, { @@ -70726,19 +70724,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x525aadd4, 0x71d607cc, 0xa0d2c28c, 0x202eba9e, 0x64243cd6, 0x9d79a6, 0x332affba, 0x3ae248bf, 0x591afa0f, 0xcacf141f, 0x4401ac3f, 0x6e4d126a, 0x17c278c2, 0x63d3c08c, 0x646443a1, - 0x97c654e4, 0x0001c8, 00000000 + 0x97c654e4, 0x0001c8 }, { 0xad9f7a36, 0x9bc90a27, 0x2e731e6c, 0x79d17a6d, 0xfd520cc4, 0x699ad360, 0xac284104, 0xadeec28, 0x9a78be8c, 0x248af506, 0x3211d6dd, 0x8b8fe31d, 0xc84c6b05, 0x16e324c5, 0xf22fbea7, - 0x5d823f33, 0x0000ec, 00000000 + 0x5d823f33, 0x0000ec }, { 0xf71d0e00, 0x2b79c4c5, 0x43f9fd74, 0x6b4ddbf2, 0x530fe53, 0xdae641f0, 0xd58583ed, 0xde811436, 0x64de4823, 0x28c4306d, 0x8681a6e7, 0xeba044e0, 0xb38339c2, 0xe7a3bcf5, 0xc8c7c3a7, - 0x77f90264, 0x000150, 00000000 + 0x77f90264, 0x000150 } }, { @@ -70746,19 +70744,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe34e8b7, 0xf56c47a9, 0xcce6ee10, 0xdc79ab2f, 0x5b86da1c, 0xe4ae6d3d, 0xc0e4e6c5, 0xeeb4bc05, 0x12892dd7, 0xba580652, 0x406810fa, 0x7539a9f, 0xbcca4b2, 0x4fb9a554, 0x6f0bc8c9, - 0xbfba4126, 0x00014a, 00000000 + 0xbfba4126, 0x00014a }, { 0x8e9715cf, 0xd0854d64, 0xa0f833a4, 0xe3e57c25, 0xef96ea95, 0x152b1f93, 0xc2647d5c, 0x1dd99bf, 0x19e2d60e, 0xee131a13, 0xfae544b1, 0x8bf06e8, 0x918b6ce4, 0xfb9cac28, 0x13e37bea, - 0x41924c, 0x000039, 00000000 + 0x41924c, 0x000039 }, { 0x5fc50149, 0x1f3469a2, 0x5032e6e7, 0x75f56b58, 0xab44652, 0xe6df1984, 0x6f03ec83, 0x7ad0a348, 0x6a762ba5, 0x1fa6db44, 0xb6175bd5, 0x3c5f2199, 0x590d4200, 0x4412fcc8, 0x69236f96, - 0x45755b62, 0x0000a6, 00000000 + 0x45755b62, 0x0000a6 } }, { @@ -70766,19 +70764,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49a9f9ba, 0xf035db6b, 0x88141461, 0x572710db, 0x3b7fa88b, 0xf64257f4, 0xa3b9aa6f, 0x46a3ed0b, 0x4502b825, 0x79e72b19, 0x82429026, 0xc021386f, 0x56c43861, 0x5a5b792d, 0x1bea09ba, - 0xab6e4c03, 0x00000b, 00000000 + 0xab6e4c03, 0x00000b }, { 0xd89e44d, 0xa3ac19f2, 0xe314b121, 0x79a20b06, 0xfeab78c0, 0x30b9cbe1, 0x43543d7a, 0x5d571776, 0xab94cbcb, 0x98ce1785, 0x7d61e606, 0x6c1ba999, 0x56dd0667, 0x1300163d, 0x16807ae, - 0xaf9ead6e, 0x0000cc, 00000000 + 0xaf9ead6e, 0x0000cc }, { 0xf484b02e, 0x5c8193e2, 0x6fee28b1, 0xc0f709b4, 0xd6219174, 0x2a392ab1, 0xd974638a, 0xd7d5d5de, 0xbf503448, 0x7f523e07, 0x9d7f4ac8, 0x6c0f42a6, 0xf6ad597c, 0xd651ccf3, 0x19789138, - 0xc3383109, 0x0001d1, 00000000 + 0xc3383109, 0x0001d1 } }, { @@ -70786,19 +70784,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb38232ae, 0x4185cc3b, 0x77d1059a, 0x2cff7dda, 0xd097094b, 0xca08843f, 0x61d703b1, 0xd3903cf5, 0x958ff92, 0xc021853c, 0x6ab8cb6, 0x7043c3bb, 0xa910d832, 0x2e7ba087, 0xed52dfe8, - 0x88ec80fd, 0x00008a, 00000000 + 0x88ec80fd, 0x00008a }, { 0xb8d44b2c, 0x85da55a2, 0x12e2b44c, 0x94f30ed7, 0xd70845a4, 0xffe62213, 0x57321866, 0x853daa09, 0x6d58af75, 0xc52e82f9, 0x2257d454, 0x729d8715, 0x80e3aab7, 0x3103df3c, 0xfa3d01ff, - 0xe35fa020, 0x000164, 00000000 + 0xe35fa020, 0x000164 }, { 0x5b430b57, 0x7d1a15c4, 0x68efc9ff, 0xafa972cb, 0x87adbcca, 0x5b961e6b, 0x214dd9ec, 0x11e6e784, 0xba169690, 0x1d76fb0b, 0xf0d7ddba, 0x9abfb9ac, 0xd9fd5648, 0x892e7250, 0x279a6376, - 0xc2277060, 0x0001a3, 00000000 + 0xc2277060, 0x0001a3 } }, { @@ -70806,19 +70804,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x80874097, 0x31d9295d, 0x44ccd2bf, 0x9d3d4e8f, 0xfa533a69, 0x73b9a84b, 0x53b23c0a, 0x44063885, 0x272ee311, 0x451d1447, 0xfe64c093, 0x409e1133, 0x61e16e2c, 0xf1e597a2, 0xb931ee08, - 0xf842d322, 0x0001f1, 00000000 + 0xf842d322, 0x0001f1 }, { 0x82cb3264, 0x8f9d84ad, 0xa5dde0e0, 0x3ea183b9, 0x89ef51e3, 0xc4e09b65, 0x98e32b85, 0xe5c8c0fb, 0x166bba6e, 0x228d8bee, 0x689a41d2, 0x6b270111, 0x6cfef81a, 0x54712649, 0xad2cf571, - 0xae925b2d, 0x00007c, 00000000 + 0xae925b2d, 0x00007c }, { 0xef1e57e7, 0xbe96c181, 0x2bb80fef, 0x1b73b2f6, 0x2b618c65, 0x305c2264, 0xd7dd7325, 0x7527e3aa, 0xb7ab18d, 0xfd06c03c, 0xbc766f15, 0xe2e26ae6, 0x7e750935, 0xa93b4126, 0xf7ec2116, - 0x33c0f1a, 0x000188, 00000000 + 0x33c0f1a, 0x000188 } }, { @@ -70826,19 +70824,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe77cb1ff, 0x8fa76e63, 0x72d39cfe, 0x606e3e82, 0xe7b7d66c, 0xfeb0884, 0x40d2a638, 0x5bae4687, 0xdfc9145a, 0x510c7c5a, 0xe397e964, 0x7e15de5b, 0x769582e2, 0xefffe4d1, 0xb8c511fa, - 0x37712f3f, 0x000099, 00000000 + 0x37712f3f, 0x000099 }, { 0x10319146, 0x2c6fe6c5, 0xdcc807be, 0xa47d822b, 0xa6dc40ab, 0xb5ae9f1f, 0x3d55265b, 0xb506508a, 0x38f4f8f, 0x103c3888, 0x8785e7a, 0xc2afda04, 0x941519b, 0x53dab9c, 0x636f4ca1, 0xf9dfa5, - 0x0001ba, 00000000 + 0x0001ba }, { 0x9af8a631, 0x79211cc3, 0xbd588c8, 0xdab2f97, 0x7a09f3a7, 0x4759c950, 0x692cd514, 0x31017d86, 0xd00159a1, 0xec0c5dc0, 0x82216cd9, 0xc0f68693, 0x7571a28b, 0x1833086d, 0x84a5b8ff, - 0xd56b21c3, 0x00011d, 00000000 + 0xd56b21c3, 0x00011d } } }, @@ -70848,19 +70846,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd9440d2, 0xd37e81db, 0xf5590fe3, 0x4a97bf1f, 0x5651e3fb, 0xe871cfb7, 0x4e23f15c, 0x76492145, 0x9f4859ab, 0x6a681c8d, 0xbdc70391, 0x7dbbfc26, 0x35d6b874, 0x2f05e2aa, 0x873206e8, - 0x43b887e9, 0x00003a, 00000000 + 0x43b887e9, 0x00003a }, { 0x78c3bbd4, 0xc78aeef0, 0x3a7c5892, 0x576abdd0, 0x2eb135ae, 0x2fc5dcf8, 0x4248fe2c, 0xfce85ca5, 0x4ead10d5, 0x6f24bd8a, 0x3e5ea22a, 0x1f06103d, 0x6201ec7f, 0xaaadc40d, 0x362dde33, - 0x116dfa25, 0x000023, 00000000 + 0x116dfa25, 0x000023 }, { 0x7c7152af, 0x65a5af61, 0xf35bffa5, 0x2759cecb, 0xf9310a0d, 0x18ca1bbf, 0x512d3963, 0xd0560477, 0xeb6fc756, 0xae8a468a, 0x4af1295, 0x6d9467e5, 0x1fb056b7, 0x9b8cbf32, 0x5c1b599b, - 0xcf233c7f, 0x0000fd, 00000000 + 0xcf233c7f, 0x0000fd } }, { @@ -70868,19 +70866,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd87b66e, 0xbfb5b2e1, 0xea09c7d5, 0xc93509e6, 0xaf5b11cf, 0xf6766a78, 0xe64ac169, 0xc4714623, 0xbbd38f48, 0xa645c8c8, 0x5a430b3, 0x148dadc0, 0xe3392e08, 0x1097ec7, 0x7d1b6f34, - 0x401affb3, 0x000117, 00000000 + 0x401affb3, 0x000117 }, { 0x590b96af, 0xaf89c2a7, 0xccda1060, 0xc6f5c8f1, 0xdb8b24a9, 0xe7865a17, 0x37c324dd, 0xe819e86c, 0x79456574, 0x1e2fd410, 0x87a66d2c, 0x96bf22b9, 0x6a2a6207, 0x92972a39, 0x2d94e4f2, - 0xc3bed1b6, 0x0001a2, 00000000 + 0xc3bed1b6, 0x0001a2 }, { 0xa821e6c7, 0x284d7e44, 0xda68b605, 0x589a42e9, 0x1cf4ab30, 0x3c3c4140, 0x99373af7, 0xe0ca4f75, 0x119452c9, 0xba93ee3f, 0xdb655401, 0x515f7de8, 0x8146aaf1, 0xa3f39c4b, 0x40a82c8d, - 0xc882223e, 0x00003b, 00000000 + 0xc882223e, 0x00003b } }, { @@ -70888,19 +70886,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x80d5cbd5, 0xa6e8f41a, 0xc8a3e36, 0xdc2520e6, 0x65ca608c, 0x14469234, 0xf65c52c5, 0x130fef60, 0xb2da7165, 0x903e7f87, 0xbe2d1814, 0x36f66b64, 0x38588b1d, 0x2820b2e, 0x84735f74, - 0xb4728f6, 0x000150, 00000000 + 0xb4728f6, 0x000150 }, { 0x2dff4d09, 0x31aa8c4b, 0x9361b36, 0x28ec9766, 0x99265469, 0x601179b2, 0x27c176f0, 0xaff89261, 0x461d27a9, 0x5f61c442, 0xc60c11e9, 0x8b94aa54, 0xddda70f9, 0xeba29397, 0x1ebeabe4, - 0x8c48e828, 0x0001be, 00000000 + 0x8c48e828, 0x0001be }, { 0x82301c5a, 0xeb4ff0bf, 0xb77fc6be, 0x83221bd9, 0x2e96619b, 0x518bb58c, 0x4c09e53e, 0xba6524ae, 0x432ec811, 0x2b140100, 0x8267b607, 0xe5945fed, 0x76f601ed, 0x3ffee26d, 0x27b7a09f, - 0xaf1ea52f, 0x00013a, 00000000 + 0xaf1ea52f, 0x00013a } }, { @@ -70908,19 +70906,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x422daeb2, 0xbab5d4a2, 0x50281c23, 0x4116b2b, 0xec60e288, 0x52214eeb, 0x2165f13f, 0x5e46babe, 0x8f6a75e8, 0x96782d4f, 0x8b096571, 0xe06c1f7a, 0x2f58927f, 0x84d47b47, 0xe71addb6, - 0xec311422, 0x000105, 00000000 + 0xec311422, 0x000105 }, { 0xbeb8449d, 0xdb9f7123, 0x78da465e, 0xc97ebc60, 0x65477fd1, 0x7180262f, 0xd4d6aa82, 0x7ca193d5, 0x8c232179, 0xf65a1d52, 0x428b359b, 0xdf2143af, 0xfa72cda2, 0xd5452314, 0x3c312afb, - 0xfcdfecbb, 0x000011, 00000000 + 0xfcdfecbb, 0x000011 }, { 0x3aff3a80, 0xc7ab9193, 0xabfb0711, 0x14c24ed3, 0x570c40b9, 0x1dbbc9f5, 0x1e6f3071, 0x51708bd4, 0x44e21951, 0x9526a3d2, 0xd3aec2c9, 0x1b03b96e, 0x925bf906, 0xfd33d8a2, 0xe4852cb5, - 0x365aa322, 0x0001f7, 00000000 + 0x365aa322, 0x0001f7 } }, { @@ -70928,19 +70926,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x536c2e06, 0x8d5d608, 0xf5a28bce, 0x8fa6af1f, 0x5ab9e8df, 0x9473be3e, 0xeac1110d, 0x776af855, 0x365e70f, 0xd11048d3, 0x99e3f07, 0x114bbb5d, 0x2cf5ba7e, 0x83e74248, 0xf8b89f06, - 0x4fd31658, 0x0000ca, 00000000 + 0x4fd31658, 0x0000ca }, { 0x27bb11f7, 0xef867ab, 0xcf9025b2, 0x3ceb1009, 0x573516aa, 0x2dd1b04b, 0x6134fd, 0x9fbdc17e, 0x65fa90f2, 0x2b3eaff4, 0xe944b77d, 0x71612c71, 0xf600cfdd, 0x1f99c785, 0x6a210634, - 0xb6e2535c, 0x000055, 00000000 + 0xb6e2535c, 0x000055 }, { 0xdd997735, 0x451acb08, 0x43c64a3d, 0xbf3b8579, 0xc4226787, 0xa6fa5712, 0x8e5a0e2b, 0x8326a1e6, 0xf3f17522, 0x2a0c23f9, 0xa65b1909, 0x1d56972d, 0x97465f52, 0x549de385, 0x820eb80, - 0x640e74bd, 0x000148, 00000000 + 0x640e74bd, 0x000148 } }, { @@ -70948,19 +70946,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdb4fed13, 0x70fb052b, 0xed475c28, 0xf7fed73c, 0x929f50f4, 0x934b6024, 0xf7f8d71b, 0xc10f76aa, 0x31723790, 0xce314449, 0x90829c95, 0xf8c423dc, 0xf96f14cd, 0x812f33be, 0x7c379a06, - 0xa0370a75, 0x000152, 00000000 + 0xa0370a75, 0x000152 }, { 0xf110d70d, 0x559958a0, 0xa0f9acf0, 0x5c627a22, 0x229d1c7c, 0x83acef50, 0x3c64de37, 0x449b651a, 0x480a8743, 0xb95e979, 0x91931537, 0x44305894, 0xb6415e50, 0x1f29f62a, 0xd6f45d5b, - 0x4006d73b, 0x0001c4, 00000000 + 0x4006d73b, 0x0001c4 }, { 0x286d9667, 0xdff0fadb, 0xd5e84baa, 0xf4b4038c, 0x52266880, 0xc01ecfa5, 0xcffb98d3, 0x2ec71ce, 0xcced08c5, 0x80c78291, 0xe2f19f88, 0x84e0e34c, 0x76bd3992, 0xcd32ef54, 0x199ed386, - 0xa87b36c, 0x000184, 00000000 + 0xa87b36c, 0x000184 } }, { @@ -70968,19 +70966,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfdd0af53, 0x4af032be, 0x80d73161, 0x58a7bf13, 0x85aa3656, 0xbaca10cc, 0xc547639, 0x6d065531, 0xafe9cf1d, 0x586c8176, 0x811a56e2, 0xbeeadc7b, 0xa986ac62, 0xc3249de7, 0xfd3044ea, - 0x2274998, 0x00017f, 00000000 + 0x2274998, 0x00017f }, { 0x89af1f93, 0x2874d52d, 0x9bcee28a, 0xa84865db, 0x162aa830, 0xb42f17c8, 0x43904719, 0x43231877, 0xf3cc55b3, 0x31a886ef, 0x8aca5135, 0x1f5a9495, 0xf404fd53, 0x94d5e496, 0xbd2e7d50, - 0xf11765d1, 0x000110, 00000000 + 0xf11765d1, 0x000110 }, { 0xa7602dde, 0x240a3e36, 0xc7500774, 0xde4c063e, 0xdacaafaa, 0x8723f245, 0x3cf92674, 0xaed7785b, 0xbbbdbdb8, 0x8d663a7a, 0xec8cab6f, 0xbde79411, 0xbf228613, 0xba89ebae, 0x4f61d419, - 0x10981cb8, 0x000136, 00000000 + 0x10981cb8, 0x000136 } }, { @@ -70988,19 +70986,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc7fd697c, 0x417e867c, 0x27133465, 0x139604fd, 0xe52d566, 0xabd99b9c, 0x25ebfcef, 0x336188b4, 0xdd4dfcb6, 0x6257093d, 0x65dffc48, 0xf1b4e60c, 0x1d9fcf99, 0xbd56de6b, 0x2e257100, - 0x3425a50a, 0x0001eb, 00000000 + 0x3425a50a, 0x0001eb }, { 0xd02e81b2, 0xddb6d753, 0x67216826, 0x3236acf7, 0x51539df1, 0x56008161, 0xc6ecabdf, 0xd64c390, 0xf7cfc244, 0xe5756ece, 0xeb1d2047, 0x3a5ec50f, 0xfe30570c, 0x2780759b, 0x754a6286, - 0xfd61eef7, 0x000173, 00000000 + 0xfd61eef7, 0x000173 }, { 0xd137f26a, 0x4469fd8f, 0xf65284f9, 0x68d0fdf1, 0x7307360b, 0xa4378fc1, 0x588e6129, 0x9c4d9840, 0x4d70ecc0, 0x2ba75421, 0xeb972daa, 0x3dc9307f, 0x89fa0eb8, 0xd349219b, 0xf8babf28, - 0xdb7ec9b3, 0x0000a0, 00000000 + 0xdb7ec9b3, 0x0000a0 } }, { @@ -71008,19 +71006,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc87107d9, 0x66b75122, 0x33258c35, 0x2f05a037, 0x81d1cac1, 0xd75288e1, 0x9f1aac7, 0x346b9270, 0x9c1467e3, 0xe79db007, 0xb4dcfa31, 0x2d12a7ee, 0x7dbadc0b, 0x9837dbc3, 0xb92183b9, - 0x73f25adf, 0x000102, 00000000 + 0x73f25adf, 0x000102 }, { 0xbceb27c8, 0xf11b8c45, 0x785eb1ed, 0xccb81605, 0x7bbed67d, 0x5bde0847, 0xd7dbc70f, 0xb47d9d1e, 0x7b813dea, 0x278a5cf7, 0x5743672c, 0x4c8d682b, 0x8b0ffca6, 0x5514ad01, 0xdbe0ceba, - 0xb9d3f168, 0x00000b, 00000000 + 0xb9d3f168, 0x00000b }, { 0xc123f6d1, 0x1434c8b4, 0x26233a39, 0x6fa8978b, 0x2f85e23d, 0xd6717d5d, 0xb947d791, 0xbd74dd89, 0x437866f8, 0xc3d8d33c, 0x5333a393, 0x21091b9f, 0xe3e7ea88, 0xfd628fd3, 0xd8157eac, - 0x71d89c49, 0x000071, 00000000 + 0x71d89c49, 0x000071 } }, { @@ -71028,19 +71026,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x41810043, 0x8815a8eb, 0x20b38b, 0x7404fbc8, 0x107005be, 0xaa4c64ec, 0x5dcf0ab9, 0x1cf0925f, 0x97fb149d, 0x9391e97f, 0xf09c9fb1, 0xf719ea0c, 0x86c9b55c, 0xf2fa406f, 0x7568ce61, - 0xb8d36704, 0x00010d, 00000000 + 0xb8d36704, 0x00010d }, { 0x72d4e98d, 0x5fa3bc7c, 0x86c8f6e0, 0x4138e001, 0x62bb67bc, 0x21b5c4d5, 0x339c0072, 0xb3b74a97, 0x96fc1adc, 0x25368b0d, 0x2416dbd3, 0xd823b280, 0xac7fa25, 0x62be7324, 0x56aebfd0, - 0xa2b25f0a, 0x00017a, 00000000 + 0xa2b25f0a, 0x00017a }, { 0x583e0ac8, 0x737d552f, 0x80fe91ac, 0x7249a62f, 0x1797f630, 0x95e0f488, 0xa9410b6f, 0x8d519948, 0xefbf3a03, 0x355b606d, 0x9c186f80, 0xe1f1b79, 0x18431d8a, 0x822ff40f, 0xaa4e4801, - 0x28600a2f, 0x000079, 00000000 + 0x28600a2f, 0x000079 } }, { @@ -71048,19 +71046,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc6eab60b, 0xa91febf9, 0x1f36ebd, 0xc2b74659, 0xdf5f6013, 0xa28d56cf, 0xc3056db6, 0xf9ef191c, 0xdb9ff53a, 0x1e792154, 0x57ae6a55, 0x15430dd7, 0x50ef8e1a, 0xbc50d7de, 0xa51160f9, - 0x7bf6f97, 0x0001d2, 00000000 + 0x7bf6f97, 0x0001d2 }, { 0xc841e8f5, 0xcfd5b9b, 0x7801c931, 0x85e0cd52, 0xf1f6fc05, 0x51771cdb, 0x5caba2b0, 0x2f4b0a77, 0x699965b9, 0xe19a63b0, 0xce6c704e, 0xa7c73029, 0x964027fa, 0xaa1eb0, 0x2073a3ff, - 0x82e37fcd, 0x000083, 00000000 + 0x82e37fcd, 0x000083 }, { 0xcbcd8bd1, 0x7cb375, 0x782c5fe1, 0xd021dd24, 0x92e97ee0, 0xa4daba8d, 0x31d39b11, 0x849a858, 0xf29cfed, 0x5c431613, 0xa5eece30, 0x3f1744, 0x7a11abb2, 0x2d8805b8, 0xcfc8b81c, - 0x6d1086b5, 0x000031, 00000000 + 0x6d1086b5, 0x000031 } }, { @@ -71068,19 +71066,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbec067f8, 0x1d953c5c, 0x517046a4, 0x468b77c4, 0xcd24b98, 0xec8b874a, 0xa53304fb, 0xc0102f64, 0xb00b3eae, 0xd02c647c, 0xf6daab09, 0x13e116e8, 0x8339368f, 0xe0514cbf, 0xd02763cd, - 0x6c36a25d, 0x0001fd, 00000000 + 0x6c36a25d, 0x0001fd }, { 0x2285148c, 0x1ea82213, 0x3c45f7d6, 0x982e363d, 0x862b0a15, 0xe5d178e4, 0xd6deed53, 0xbae4d9a5, 0xb8db300f, 0x3ef882fc, 0x5f7095c7, 0x8f1dc3c6, 0xa4074feb, 0x44985a51, 0xb57eb625, - 0x8b38a7f0, 0x00006c, 00000000 + 0x8b38a7f0, 0x00006c }, { 0xacb5ddea, 0xb07dface, 0xf9410bd8, 0xb1d1465, 0x177844ec, 0xa9c2fe50, 0x1d13f1e7, 0xe266a44f, 0xc9957335, 0x78570f17, 0x149b886a, 0xe272807, 0x2f99f1d2, 0xaac3a0b7, 0x5494f3e8, - 0x4ed13819, 0x000008, 00000000 + 0x4ed13819, 0x000008 } }, { @@ -71088,19 +71086,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x88e1be80, 0x48af9587, 0xe1fd934c, 0xfb0c35bb, 0xec07d2e0, 0xdc46425b, 0x55444cf, 0xed2ccca6, 0x29a29fa7, 0xb80232e8, 0x23ff3189, 0x21ee190f, 0xe97ad1f9, 0xa66bb07a, 0xebb9f4d1, - 0xf7c56c50, 0x00010a, 00000000 + 0xf7c56c50, 0x00010a }, { 0x48d73f8, 0xa2f1fb1b, 0x520e1aa7, 0x3dc5717b, 0x9ae1696c, 0x4826b635, 0x9ee99b3, 0xdd38c20b, 0x13ea1fdf, 0xe4ce4c8, 0x2654720, 0xf3f98e09, 0xb4acd8d2, 0x857c9327, 0xdb67f6b3, - 0x14178c3e, 0x00019c, 00000000 + 0x14178c3e, 0x00019c }, { 0x1c66f5a2, 0x66281553, 0x97ce516e, 0xb26b8b76, 0x8808a9d1, 0xd85f3c21, 0x785d333, 0x2438a0b2, 0xe616f828, 0x3bf51d56, 0x4257eb00, 0x9948607c, 0xc4b62591, 0x9cc93f18, 0x34e28071, - 0x91e7a4e5, 0x000146, 00000000 + 0x91e7a4e5, 0x000146 } }, { @@ -71108,19 +71106,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3ce4fcae, 0x2407bf9, 0x35129af, 0x7dd9ead8, 0xf3386823, 0x2cf56f9b, 0xcd5fdd4e, 0xaabde0d1, 0x8a216b8d, 0x9888e049, 0x87c5235f, 0xf38b4af, 0x2192a275, 0xf88337c0, 0xdf062552, - 0x7aa24255, 0x00018d, 00000000 + 0x7aa24255, 0x00018d }, { 0x846485a5, 0x6661f7bd, 0x156ec0a9, 0xffbfb438, 0xa407d1f1, 0xe93613c6, 0x9c52c246, 0x88f1872c, 0x44c40fbf, 0x9ddde954, 0x70148d6e, 0xb8b91b03, 0xc9d6a80c, 0x2f9e0438, 0x4b71f2cf, - 0xc8fd3d70, 0x0000d8, 00000000 + 0xc8fd3d70, 0x0000d8 }, { 0x8ae9b226, 0x85ae3396, 0xce9faf6f, 0x95636f38, 0x8d36d0b0, 0x264b36a2, 0xc9c0466d, 0xfb7252b6, 0xeb6492e9, 0x20e2289, 0x9492e3a7, 0xafcb1b0a, 0xfab858b2, 0xfac23cde, 0x453ca710, - 0xae49354e, 0x0000c8, 00000000 + 0xae49354e, 0x0000c8 } }, { @@ -71128,19 +71126,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9d45d60f, 0x6f0c36d0, 0xf807c7df, 0xd20ad61a, 0x68d2a23b, 0x56144a72, 0x73e38e8, 0x6675c25, 0x6f96d644, 0xef5b8a4f, 0x23118dbf, 0x1ed61a63, 0x8b43ed1c, 0xe2cc47fd, 0x4d8eb6b9, - 0x55732b6e, 0x00014a, 00000000 + 0x55732b6e, 0x00014a }, { 0x6d9e6bbe, 0xce81a2a5, 0x306a8271, 0x98e2279e, 0xaf1d51dd, 0xfc9b8095, 0xa53fbe6f, 0x3e3ccf83, 0x3aeedfaa, 0xfdc56583, 0x869b265b, 0x9c90c2f1, 0x2008e87e, 0x91e7d92a, 0xbb86f58e, - 0xaf561565, 0x00000a, 00000000 + 0xaf561565, 0x00000a }, { 0xecf0d2fe, 0x575e4c75, 0xa9f91b53, 0xdd334c4e, 0xbf8b3573, 0x1d3824e9, 0xb2dbd8de, 0x6aa41d2b, 0x1739eb6, 0xb4a01fc9, 0xf327477, 0x95601373, 0xe6fa1b46, 0x833adb09, 0xe7d0c54b, - 0x7319d9f6, 0x00001d, 00000000 + 0x7319d9f6, 0x00001d } } }, @@ -71150,19 +71148,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49324616, 0x824457a3, 0x994836d4, 0x5b7e6897, 0xec9a471, 0x662d1bad, 0xcb3df0ff, 0x3cfaa4ef, 0xefed13d8, 0x445f1417, 0xa7c162cc, 0x75eacee0, 0x874f5ed7, 0x6254a648, 0x857f52fc, - 0xc7d87de9, 0x0000c4, 00000000 + 0xc7d87de9, 0x0000c4 }, { 0xfc31feda, 0x114a7277, 0xe27378ab, 0xa5695ff2, 0xe88bada2, 0xd92ee35f, 0x1a04dbf7, 0x89ddab35, 0x45cf54f8, 0x5b0077ee, 0x31e3193b, 0xa8272367, 0x808bf870, 0x1b2f6db5, 0x8c591b1f, - 0x2525151b, 0x0001ed, 00000000 + 0x2525151b, 0x0001ed }, { 0x604fdade, 0xe0653e75, 0xf83082f0, 0x12c1cb4b, 0xc0dae735, 0x31c0a2de, 0x10026ff3, 0xdd2b3514, 0x77701eaf, 0xcd710ef9, 0xb8a7da74, 0x5a23bdd4, 0x41500b78, 0x5969e1a2, 0x1a87b68d, - 0x9c45635c, 0x000042, 00000000 + 0x9c45635c, 0x000042 } }, { @@ -71170,19 +71168,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49e5b0a1, 0x220f02af, 0x25743c53, 0x174a2adf, 0x31b42883, 0x7526dce4, 0x29deeb44, 0x46856cd0, 0x2d12ef1b, 0x67ec7c21, 0xc1b3b03f, 0x6358c324, 0x945756a6, 0x44f552bd, 0x495043b2, - 0x5f4bf36f, 0x00005b, 00000000 + 0x5f4bf36f, 0x00005b }, { 0x574168a6, 0x1be7ee08, 0x1070b315, 0x6b4cff26, 0xad9d8709, 0x75c1c332, 0x8d756c1, 0x253018ec, 0xd31c6660, 0x2d6eb0bd, 0x3cd687, 0xb6167fb0, 0xb080ecc4, 0x8caa1724, 0xcbf43b2, - 0x104b0157, 0x0000c6, 00000000 + 0x104b0157, 0x0000c6 }, { 0xc793f400, 0x973913c7, 0xa60b8e9a, 0xd9210797, 0xef28b6cc, 0x3def6920, 0xd0063fe0, 0x3b211154, 0xc86c8fc1, 0xea646974, 0x657b354c, 0x6f1ee36b, 0x75bbf74b, 0xb38b2a1d, 0x6c9dfbe5, - 0xdcc9c92d, 0x0000b6, 00000000 + 0xdcc9c92d, 0x0000b6 } }, { @@ -71190,19 +71188,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8c0d2331, 0xaebf670b, 0x61c52386, 0x381cef85, 0xaddc7914, 0x2f6551ff, 0x9a3de7d3, 0x1a500869, 0xce226454, 0x998fa728, 0x39d8aab1, 0x24e56d9d, 0x77525186, 0xf8d23030, 0xf319deb4, - 0x7c073978, 0x000074, 00000000 + 0x7c073978, 0x000074 }, { 0x5755c908, 0x1cc2ad42, 0x4d450957, 0xa3cb105, 0x2a85cab3, 0x4e1a88a3, 0x7db80fbd, 0x89444532, 0xe8a61ed5, 0x4a08153a, 0x353e205a, 0xcc36494a, 0x576277e4, 0x50e8863e, 0x364112ec, - 0xc5d05a23, 0x00002b, 00000000 + 0xc5d05a23, 0x00002b }, { 0x5a8f0007, 0x702e3023, 0xb0b9efa4, 0x16831e17, 0x49643850, 0xb0a8a451, 0x876635b4, 0xa4806f25, 0xd28968ad, 0xd3696a73, 0x47af4e9e, 0x482172fa, 0x5777a10f, 0xc69e309c, 0xd53958de, - 0x216990f5, 0x00012a, 00000000 + 0x216990f5, 0x00012a } }, { @@ -71210,19 +71208,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb1565552, 0xa4de1a0f, 0xa06c7bd5, 0xb09a83f8, 0xe3e33584, 0x24a1dc96, 0x116c701d, 0x383504e0, 0xf4cc7893, 0x84536072, 0xdc609e6a, 0xcef5f990, 0xc93619bc, 0xe194b986, 0xcf2fb58b, - 0xbdfc0a51, 0x000166, 00000000 + 0xbdfc0a51, 0x000166 }, { 0x3a81d0e3, 0x3deda08b, 0x8b2e69f6, 0x5b2b7093, 0x765538cc, 0xd9fd1ba2, 0x3054978, 0x2b510e1b, 0xe685db01, 0xfd96202e, 0xe6862d53, 0x933d466d, 0xd4866c25, 0xcc3b0a60, 0xe171f2e3, - 0xb4f7186a, 0x00002b, 00000000 + 0xb4f7186a, 0x00002b }, { 0x9d1669e1, 0x63fa89ee, 0xb2fa76a1, 0xddac8156, 0x134fc4d0, 0x82b8e3a1, 0xe23fda75, 0xcdf00130, 0x8a84d09f, 0xcf05af59, 0x1684aa2d, 0x13cea267, 0x156f4f46, 0xa4aa84eb, 0x358098d8, - 0xee1333b3, 0x000022, 00000000 + 0xee1333b3, 0x000022 } }, { @@ -71230,19 +71228,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6f73fdf5, 0x7716b09d, 0x4d55236d, 0x21bed792, 0xd7e2474b, 0x3d429966, 0xa8eee7fb, 0x5ebd60b9, 0x957c1c93, 0x1f31db0b, 0xb6062029, 0x3d749415, 0x36e8e5df, 0x8ca64718, 0xd418b14d, - 0xabd1810d, 0x000062, 00000000 + 0xabd1810d, 0x000062 }, { 0x8d3865fe, 0xa99f03ea, 0xee41f03, 0x2b210c31, 0x80e3bfe, 0x38cff184, 0x8c68f038, 0xee4b8311, 0x74568af5, 0xb7e67a4e, 0xa4994d1f, 0xdd6dba1f, 0x2ee7b849, 0xf90816fc, 0x354aebec, - 0xc9e066a1, 0x00012e, 00000000 + 0xc9e066a1, 0x00012e }, { 0x6af257af, 0xc9b03e8b, 0xcb592efd, 0x270c4680, 0x4ba99ae9, 0x92142c8f, 0x25c1ba18, 0x3e003e28, 0x5988086a, 0x1828c038, 0xf29fe3fd, 0x55463ea5, 0xacbf1d52, 0x2bd3708f, 0x9380bdc4, - 0x25a5af7a, 0x000016, 00000000 + 0x25a5af7a, 0x000016 } }, { @@ -71250,19 +71248,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe4b5b4a4, 0x3686bb78, 0x980e01d5, 0xcadf2fbd, 0xa72953e6, 0xb510925d, 0xc606cd4c, 0x2d243298, 0xcbfe0b36, 0x214faedd, 0x69fc6431, 0x74096a7c, 0xdf2455df, 0x403a13d, 0xc70709f1, - 0x6d66da45, 0x000108, 00000000 + 0x6d66da45, 0x000108 }, { 0x83bbe437, 0xb58a0810, 0x937faae6, 0xaae00def, 0x842c1f27, 0xd6740658, 0xa36310f5, 0xdc7fbafe, 0xa46f223a, 0x2c71b8cf, 0x6532bb3f, 0x1dabce7d, 0x4075c1c7, 0x3fbb6bff, 0x5554ba76, - 0xa261da3, 0x00011c, 00000000 + 0xa261da3, 0x00011c }, { 0x75bb0b61, 0x79d7b1c6, 0xfadfe3d1, 0xc3fdb734, 0xe93bdedd, 0xfcce42d, 0x81c2a954, 0x2c4cdcf3, 0x47379eb1, 0xbff93c5d, 0x86eadd79, 0xa9847b2a, 0x2f54482f, 0x151106e9, 0x97ddbee0, - 0x2fdbf9e5, 0x0001bc, 00000000 + 0x2fdbf9e5, 0x0001bc } }, { @@ -71270,19 +71268,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4639502d, 0x8e6402ea, 0x5d2af13c, 0x6ab97432, 0xac016391, 0x1b83959, 0xbfa408f2, 0x624c58a5, 0x2d0cf55b, 0x2e695fdd, 0x48186d2f, 0xd9a40399, 0xdeaf7bd7, 0x921c1d5b, 0xc3a01444, - 0x276f6bf3, 0x00010e, 00000000 + 0x276f6bf3, 0x00010e }, { 0x54cb51f0, 0xdf659df0, 0xdb937ad7, 0x39ff55fb, 0x5cfe7c81, 0x6c201bf5, 0x4dc96f0b, 0xa3daa676, 0xe6dbc21b, 0x31d1ea59, 0xfdb171ec, 0xb8a54921, 0x9785b240, 0x727ed8b0, 0xd27c8e9a, - 0x3eb465d7, 0x000099, 00000000 + 0x3eb465d7, 0x000099 }, { 0x911cf9eb, 0x6aee111e, 0x7e0898e8, 0x3606bbaf, 0xef47552c, 0x2e2cfc50, 0xddaa8066, 0x5be20853, 0x1906ad30, 0x3a061dbf, 0x522a3081, 0x99d1d6ce, 0x88ef792d, 0x89be986e, 0x38c840dc, - 0xbaa9e337, 0x000053, 00000000 + 0xbaa9e337, 0x000053 } }, { @@ -71290,19 +71288,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2aa3b432, 0x862e72cd, 0x7aebcffd, 0x57f0aac4, 0x1a9e99d9, 0x8d764284, 0x7dabfce0, 0x4ec0c0ab, 0xe5ee6dbf, 0xa614b732, 0x708f1737, 0x90263649, 0xb43e49f0, 0x76a00667, 0xa49b75c2, - 0xdcc1fa4, 0x00008c, 00000000 + 0xdcc1fa4, 0x00008c }, { 0xa68053d2, 0x1b77140f, 0x54e63133, 0x1971cebb, 0xc02b4b46, 0xf94f0d50, 0x10f277de, 0x4940e1b5, 0x139b0208, 0x619239e8, 0x4faeb13c, 0xab3f21b2, 0x3a686355, 0x35067101, 0xf585bfa5, - 0x749915ff, 0x0000c0, 00000000 + 0x749915ff, 0x0000c0 }, { 0x83b64ceb, 0x245a2797, 0x75397c67, 0xe2fd698b, 0x85153f7e, 0xa48acba3, 0x40b2747b, 0x5b705892, 0xe686e3a3, 0xb9484ab5, 0xb7be38e7, 0xcfa98df1, 0xdbe0d271, 0x75112a28, 0x25cd97be, - 0x125d7025, 0x000176, 00000000 + 0x125d7025, 0x000176 } }, { @@ -71310,19 +71308,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x287d1e9d, 0x43405e32, 0x11aae8c5, 0xc3b7503a, 0x406efbc8, 0x5edf4068, 0x6904e978, 0x27852732, 0x8ec0ed2d, 0x83b5ca41, 0x281c4202, 0x5bb6f8d6, 0xf19b8a2d, 0xb2b13372, 0x9dccc30, - 0xe9714924, 0x000028, 00000000 + 0xe9714924, 0x000028 }, { 0xb45542e, 0x2135b00d, 0x9c03b284, 0x7fb9dbc, 0x4b719a, 0xd51d786c, 0x30dc47fe, 0xd8bb901e, 0x705e5fdc, 0x4587c7b4, 0x6f2aa36, 0x2fd5ac90, 0x301b11de, 0xa1167272, 0xc393b50d, 0x93b440b5, - 0x000163, 00000000 + 0x000163 }, { 0x6115acfa, 0xe5eea08f, 0x84b4c59f, 0xe8b94ab, 0xf9683d80, 0xc8c4b7ef, 0x7f070731, 0x240f8985, 0x94a33981, 0x775315a9, 0x3415cbd, 0xf682bed1, 0xc328ff0a, 0x80a7117c, 0x21823b4d, - 0x4116c16a, 0x0000ef, 00000000 + 0x4116c16a, 0x0000ef } }, { @@ -71330,19 +71328,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xce2e0849, 0x38b890f8, 0xbeb4912b, 0xf5303a4e, 0x76b931c3, 0x807eced6, 0xb8ef4ace, 0xc1135640, 0xe07a8bd8, 0xe0845d85, 0x59ae9ff3, 0x1c3076d6, 0x843622fc, 0x786182df, 0x595aadde, - 0x14ae6e25, 0x00010e, 00000000 + 0x14ae6e25, 0x00010e }, { 0xab8db7a3, 0xc3b089c9, 0xaa3abcbf, 0x5ef41a4c, 0x6694bd05, 0x3262431f, 0x7c674e7c, 0xa8eb21b4, 0x765e4fb3, 0xbbb16c96, 0x17ef714c, 0xe7c2d547, 0x59f2874a, 0x15cc820c, 0xf4c1626e, - 0x59fa000, 0x00007f, 00000000 + 0x59fa000, 0x00007f }, { 0xdfb7f9f8, 0xf5282fff, 0x941a9c77, 0x69dae514, 0xef970ed1, 0x7f64a06b, 0x3813ed0f, 0x97be74da, 0xc67151ca, 0x8ddef454, 0x76f7361e, 0x6aa06e85, 0x5420fc9b, 0xe3438145, 0x31786ee1, - 0x73baa5fa, 0x000018, 00000000 + 0x73baa5fa, 0x000018 } }, { @@ -71350,19 +71348,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc933898f, 0x5ee80731, 0xce42a86d, 0x61a6f789, 0x9f1a7cb5, 0x8b915909, 0xf67a41d2, 0xbf979d3d, 0x29eeb3a3, 0x45afa3a7, 0x765a92b6, 0xd4910a06, 0x79ac7c45, 0x8ce977a, 0xff90da4d, - 0x4f993191, 0x00011b, 00000000 + 0x4f993191, 0x00011b }, { 0xe8a78057, 0xd5ec271d, 0x7d3331c8, 0x498b5db7, 0x2575b58, 0xd79111fd, 0x4e8997c5, 0xcfb15e0a, 0xf9907386, 0x4c061d9, 0x9e44b96f, 0x1524e89b, 0xb2639540, 0xfcadfd5a, 0xb89ace33, - 0xc155273f, 0x0000cf, 00000000 + 0xc155273f, 0x0000cf }, { 0xc1cef2b2, 0xa807198, 0xd22b82b, 0xb3bb692e, 0x55e5d4bf, 0xc612f1a0, 0x9f72cb89, 0xf24b77b9, 0xc942bbc1, 0xfdc54655, 0x280f6169, 0x142e1971, 0xa73d9c47, 0x59fdb8b0, 0x7dd537f5, - 0x679eb3b3, 0x0001e6, 00000000 + 0x679eb3b3, 0x0001e6 } }, { @@ -71370,19 +71368,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5077e96e, 0x3da80538, 0x4e3b45b0, 0x305e932f, 0x4da1feb7, 0x877c591e, 0x1709caa3, 0x2b7ccc60, 0xec000591, 0xf87b271, 0xadf03d28, 0x17859281, 0xda4f0e75, 0x69d7bd36, 0xa8995a6, - 0x32c2757f, 0x00018c, 00000000 + 0x32c2757f, 0x00018c }, { 0x197666e4, 0xfae084c1, 0xf594d506, 0x15fba7f, 0x8ced3cb1, 0xb7cbdcf5, 0xbf2cc0a2, 0x41b8fae2, 0x2640aa31, 0x798d0482, 0x40d05053, 0x74b60be4, 0xbc1181b7, 0x4e21820a, 0xd31fe254, - 0x3415d94d, 0x000086, 00000000 + 0x3415d94d, 0x000086 }, { 0x8c0c2ec7, 0x26f81d41, 0xf53fa9d7, 0x83d47347, 0x86c81a48, 0x5dd16b84, 0x5896d932, 0xd6125a3d, 0x40fd0cb1, 0x6ad6a261, 0xc01d3834, 0x37956cb, 0x17fffa6d, 0x9292163f, 0x840cc02b, - 0xfdd69d31, 0x000053, 00000000 + 0xfdd69d31, 0x000053 } }, { @@ -71390,19 +71388,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x12f558f1, 0x8ab636e4, 0xcb66437, 0xeebf4147, 0xb05c0f4f, 0x78ff2655, 0xf80764b, 0x240a49e8, 0x9ff63a93, 0x41f74f8c, 0x9364810e, 0x59f898bb, 0x5c6087eb, 0x6b0663f4, 0x697ac34a, - 0xa3e0b091, 0x0000f7, 00000000 + 0xa3e0b091, 0x0000f7 }, { 0x9eeef138, 0x3b864b33, 0x1054e70e, 0x39b0bd2d, 0x8d400d3, 0xcfd49a0e, 0x3981c815, 0x8969eacf, 0xb3da5e01, 0x42c8bcde, 0x4d38a51b, 0xaf4a07a4, 0xd4bd40d4, 0xa25c3da3, 0x1c057617, - 0x25772b01, 0x00002d, 00000000 + 0x25772b01, 0x00002d }, { 0x6c886ce, 0x47f19666, 0x9c16cab5, 0xd9271230, 0x6d430cf9, 0xd1cae7a1, 0xd6c0c743, 0x38efa8a5, 0x864384c4, 0x3707732b, 0x3f232057, 0x3db1cb7b, 0x7b2de7fc, 0x98d8ea3, 0xd11b7a3a, - 0x72f4ea76, 0x000165, 00000000 + 0x72f4ea76, 0x000165 } }, { @@ -71410,19 +71408,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbbd14ba0, 0xb2c27d6, 0xd17adddd, 0x80dad2bc, 0x97b1a62e, 0xedf6cc35, 0xf48dde2c, 0xb5c2bf1e, 0x3e5b1b47, 0xe5d84cc2, 0x1ba5d7b9, 0x6b9413e3, 0x95cbc8f4, 0x955dd77a, 0x7c79023d, - 0x1ea18338, 0x00017e, 00000000 + 0x1ea18338, 0x00017e }, { 0xb8d02c2c, 0xf75b317b, 0xa36aff7b, 0xd5ab3bd5, 0xe9e3a43d, 0x3f64a493, 0x1add5c63, 0x6364c6d0, 0xbc472619, 0x7d5a372b, 0x7576d55c, 0x4560df92, 0xc563f08, 0x816d2706, 0x982d2803, - 0x647764b7, 0x0001ae, 00000000 + 0x647764b7, 0x0001ae }, { 0xb3447fbf, 0xb0879009, 0xf50d58a1, 0x10c3ba04, 0x96220394, 0x28ba3501, 0xccfa0a0c, 0x716df8d6, 0xfa2161a1, 0x3e7f793c, 0xb7b5e4bd, 0x78105d56, 0x24b663c7, 0xea646cb7, 0xf2af4dec, - 0xf9aef85c, 0x000166, 00000000 + 0xf9aef85c, 0x000166 } }, { @@ -71430,19 +71428,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7c7f313, 0x1f88ba11, 0x6fe26875, 0x7708c064, 0x5da76781, 0xdaf68fe, 0x70892717, 0xa3941990, 0x5c63bde1, 0x5a02d8be, 0x4f5be11b, 0xf6e9d9d, 0x6b34d46e, 0x41a2113a, 0x4f4755c1, - 0x4fa1bf0e, 0x000167, 00000000 + 0x4fa1bf0e, 0x000167 }, { 0x6ed01265, 0x93f6a72e, 0x98848bf8, 0x95fe61ed, 0x3c3048b0, 0x1dc7996f, 0x8da0d94b, 0x693f6d71, 0xd157d415, 0xa2bbd78e, 0xa0a44577, 0xcdb7b2a1, 0x9e43302d, 0xc89096a, 0x8d595c91, - 0x5f583d6, 0x0001b7, 00000000 + 0x5f583d6, 0x0001b7 }, { 0x7bd8859c, 0x6089aab2, 0x2dc3829d, 0xdfb4d698, 0x4bca5fa2, 0x146bf4fc, 0x4ec55380, 0x3ae4a4cc, 0x1cec80d4, 0xe32def7, 0xeefe0e9f, 0xf949d077, 0x1d690124, 0x892357bb, 0x78e544c7, - 0x21c7d70, 0x00007a, 00000000 + 0x21c7d70, 0x00007a } } }, @@ -71452,19 +71450,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0181caf, 0xf434179a, 0x44b5e82e, 0x280e26f5, 0x7c334733, 0xf9cce7b6, 0xe404cf7e, 0x7337508a, 0x1a4e44bc, 0x454c4e9a, 0x81bec4ad, 0xa044041a, 0x574a331, 0xed5affb5, 0xc27b6cec, - 0x6c363630, 0x000069, 00000000 + 0x6c363630, 0x000069 }, { 0x66a2d3e2, 0x74d06e99, 0x5927135f, 0xad6db4d1, 0x82d310d1, 0x22b16174, 0xe5b9ebc9, 0xa2ed3628, 0x60e092e3, 0x6e4860ce, 0x8ca25301, 0xa72bb03c, 0x63c6a22e, 0xc6dfad73, 0xd8b43303, - 0xf8449a51, 0x000160, 00000000 + 0xf8449a51, 0x000160 }, { 0x472d674d, 0x7e200c4d, 0x7c29a3c3, 0x8c449484, 0xf27ee31d, 0xed02da01, 0x98985474, 0xea304201, 0x9f3c7b8, 0x9dfa0e72, 0x2fa2f303, 0xf125b00e, 0x29de98, 0x5cba26eb, 0x4334bc55, - 0xbc43824e, 0x00004b, 00000000 + 0xbc43824e, 0x00004b } }, { @@ -71472,19 +71470,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x41cba224, 0x1952df20, 0x76eeed37, 0x2342f8db, 0xf9cc81c5, 0x74ca70d4, 0xfc7a72a2, 0x49a1aed5, 0x4c347f60, 0xb71434a5, 0x3e66830b, 0x26eff8cd, 0x1bb1a350, 0x1501c57c, 0x32f70956, - 0x7570671f, 0x000039, 00000000 + 0x7570671f, 0x000039 }, { 0x263f676c, 0xd6a80f12, 0x9e4faaea, 0x701ec0cc, 0xbc531bf, 0xab40751e, 0x77b2152, 0xb83f2eea, 0x44ac414, 0xb53b50f7, 0x8eed930f, 0x4e2fb092, 0xff68fa7e, 0x8fa58b00, 0xebcbfb50, - 0x42292821, 0x00018a, 00000000 + 0x42292821, 0x00018a }, { 0xf1bc4bde, 0x1368a0b, 0xf550ffd2, 0x94a969b8, 0x49427d6f, 0x9726ce5b, 0xd4a17c18, 0xbd834c84, 0x6af07229, 0x67a8e956, 0xe5fed336, 0x4413c155, 0x8c2162f3, 0x337eaa88, 0xcc93bce, - 0x2446b81, 0x00013f, 00000000 + 0x2446b81, 0x00013f } }, { @@ -71492,19 +71490,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x75b6c835, 0xf37210b7, 0xa02f7f34, 0xc82bcde9, 0x7c73445a, 0xfb2aa105, 0x36aebd99, 0xa5d9c823, 0x5dc0456b, 0xd4c8cdb7, 0xe7cb33de, 0x1b724d65, 0x3206dc08, 0xfea854c8, 0xb6909bd7, - 0xffa08a6a, 0x0001dc, 00000000 + 0xffa08a6a, 0x0001dc }, { 0x4128b16a, 0x5f3f8877, 0x33bfbd82, 0x868ff5fe, 0x7c3549da, 0x2f5fca34, 0xa2379768, 0x31b81d9f, 0x43bd82bb, 0x1d7068e, 0x6b188146, 0x7278ce8c, 0xec58d2e1, 0x6844e424, 0xa39db1a8, - 0x642b0a85, 0x000121, 00000000 + 0x642b0a85, 0x000121 }, { 0x618d96be, 0x73e1517d, 0xf2c19aca, 0x38167011, 0xa620d94e, 0xcc9c7a34, 0x336c2c51, 0x45c8b3e5, 0xf3a0713, 0x44f14a68, 0x4c69baec, 0x1fce1639, 0x38037520, 0xabafe04b, 0x4f48ccdd, - 0x4781bc8b, 0x000085, 00000000 + 0x4781bc8b, 0x000085 } }, { @@ -71512,19 +71510,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x811e3b65, 0x5220bd36, 0x6a077174, 0x23714fca, 0x791ea501, 0x41b9968b, 0x8cd7fe32, 0x42eabc89, 0x8a4e3089, 0xd5e03b01, 0xf81c1045, 0x8857c50f, 0xba7dc9bf, 0x1a196909, 0x3c9b980, - 0x6fc8f5e1, 0x000144, 00000000 + 0x6fc8f5e1, 0x000144 }, { 0x54464707, 0x29051ae8, 0x6751a13f, 0xa82b957e, 0x2dbefce2, 0xc0e3ba96, 0xad05dd9b, 0xba7a36fd, 0x90a5a32c, 0x77dbe069, 0x8078a1a4, 0xebdfc7a0, 0x8247a637, 0x5aa86c3d, 0x83b275dd, - 0x8f5f94de, 0x00010a, 00000000 + 0x8f5f94de, 0x00010a }, { 0xc2095440, 0x9c7da3e1, 0xba079c17, 0x3865f428, 0xbdac76fc, 0xb661ee87, 0xace648d3, 0x2e22756f, 0xd5eb53f3, 0x450111db, 0x30c0f001, 0x850f4aff, 0xb4cb9989, 0x8a5b5b80, 0x33122a8, - 0x9a99909a, 0x0000cc, 00000000 + 0x9a99909a, 0x0000cc } }, { @@ -71532,19 +71530,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x96eb1c2e, 0x6899417b, 0x3ae984bd, 0x579b6fa, 0x2fc41e7f, 0x3e96a0d6, 0x1b94810d, 0xdbf090fa, 0xc5a0f90d, 0x7748b09c, 0x1c1885e6, 0xab491bc5, 0x7846c2c8, 0xdb43078f, 0x39516429, - 0x1fc5ce0d, 0x00012e, 00000000 + 0x1fc5ce0d, 0x00012e }, { 0x441a3ec1, 0xbe7a9087, 0x7a2012a6, 0xd3a943e3, 0x9eda0845, 0x7a98751d, 0x4b642af9, 0x2db5c085, 0xe24233ed, 0xd9b8c26a, 0x7647fdef, 0x3b182787, 0xd2dc1569, 0x2518ca3c, 0x1eb8043, - 0xaf66fedf, 0x0001f9, 00000000 + 0xaf66fedf, 0x0001f9 }, { 0x332defd5, 0x49ece327, 0x77183447, 0x9b65453b, 0x2bcb4d04, 0xf55765c2, 0x38cde2d8, 0xcdcf1e77, 0x5690508c, 0xf1f00db9, 0xd17b5674, 0x74ba5924, 0xd50cceb9, 0x638cb18e, 0x7021bf49, - 0x7a55b813, 0x000095, 00000000 + 0x7a55b813, 0x000095 } }, { @@ -71552,19 +71550,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x91870a6e, 0x425d198a, 0xaf4f86c, 0xb7404ea0, 0xa16e0923, 0x811a7b85, 0x1a63a5b0, 0xfea39f16, 0xc8d5b100, 0x6d9faeaf, 0xaadf7d04, 0x227aa96a, 0x8fa96eca, 0x6d1471bd, 0x8c3875e8, - 0x72a08aa7, 0x000158, 00000000 + 0x72a08aa7, 0x000158 }, { 0x7c69b27d, 0x72604518, 0x8f262f17, 0x2314df6e, 0xf4fdf64a, 0xb43858d5, 0x46e2fe86, 0x2f898d73, 0xcd355814, 0x210c468c, 0xb7af8a4c, 0xec72ca33, 0x44dfe82c, 0xf474ccb0, 0xa02eba01, - 0xe1f2147f, 0x00017c, 00000000 + 0xe1f2147f, 0x00017c }, { 0x299fdbeb, 0x45dea65a, 0xd849a0cf, 0xb1be80c6, 0x764cd7e0, 0x41db2c3f, 0xe10c9ab7, 0x219cacc2, 0x6d55f60f, 0x78c62a69, 0x3ad9d8a5, 0xf59abf02, 0xdd11a9f9, 0x7f888e40, 0x261d8c08, - 0x89ec1f49, 0x0001ac, 00000000 + 0x89ec1f49, 0x0001ac } }, { @@ -71572,19 +71570,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3ec8f7b9, 0x65fd78d4, 0xdd1f33c3, 0x141bf31d, 0xfd2010ec, 0x3db2ab5f, 0xbfe2477, 0xef25660a, 0xb3b9d2cf, 0xc2c91fca, 0xdf2836a, 0xe56f370f, 0xbaa3ef6, 0x39ba5cc4, 0x7da40876, - 0x6efaa6d9, 0x0001fb, 00000000 + 0x6efaa6d9, 0x0001fb }, { 0xab58008d, 0x27ed05ed, 0xb612a5f4, 0xc89bc069, 0x24fc2af0, 0xfcf04212, 0xa8e6a86a, 0x3faf3d81, 0xe323539f, 0x4f02f206, 0x549f9ffb, 0x3f9698e, 0xdeb41060, 0x6136fbc8, 0xd0833f21, - 0xaa81dee3, 0x000095, 00000000 + 0xaa81dee3, 0x000095 }, { 0x200876b6, 0x3ed14f16, 0x4adb3231, 0xe9b1109c, 0xf9e78872, 0x9de11442, 0x2830b27, 0xad2c3eea, 0x9f22f8c9, 0xbf414b0d, 0x30547375, 0xeda13189, 0x85da520d, 0xdced5ef0, 0xf6c8bc9d, - 0x2d18c6c4, 0x000027, 00000000 + 0x2d18c6c4, 0x000027 } }, { @@ -71592,19 +71590,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4c462f16, 0x66de0a9b, 0x8c4004f2, 0xb43b9e9c, 0x128a66f, 0xb7b20e8b, 0x6e4a55dc, 0xf3540e43, 0x65850f3a, 0x7f03938f, 0x6eb4e8fb, 0x1d197d9, 0x4f99ca6e, 0xfad43c67, 0xebd58e4f, - 0x9b3ac9b6, 0x0000af, 00000000 + 0x9b3ac9b6, 0x0000af }, { 0x4c8b7ef4, 0x8b9e90f2, 0x6072631e, 0xc3e481d6, 0xeaa71ff7, 0x2c762d4, 0xe558cfba, 0xca5cc09, 0x701d3c39, 0xfc300c82, 0xd5067bab, 0x92cc5e31, 0x4c877eb7, 0x714433b4, 0xe9c644b5, - 0xbcf0c2e6, 0x000095, 00000000 + 0xbcf0c2e6, 0x000095 }, { 0x3a70eefe, 0xd82ec9c4, 0xe571e6d5, 0x4232215d, 0x13481d37, 0x4a8064a5, 0x2dedc737, 0xf067e11, 0x4f7ac835, 0x89811b1, 0x9b06fcb2, 0x1d8b8fa2, 0x1769135f, 0xc2c7af6f, 0x894beccd, - 0x407ae26d, 0x0000b0, 00000000 + 0x407ae26d, 0x0000b0 } }, { @@ -71612,19 +71610,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x691b6684, 0x743b6ce2, 0x68f57aa7, 0xb5a6b02c, 0x6ff0baf5, 0x836a795d, 0xb83a45, 0xcd61a399, 0xa16ee7bb, 0xc8295f20, 0x7efa5135, 0xc56eddf5, 0xf2abde2a, 0x3fd63485, 0xf6ec8ff6, - 0xfef2bce7, 0x000002, 00000000 + 0xfef2bce7, 0x000002 }, { 0x70d4a338, 0x44bfc14b, 0x9d0d85a2, 0x4f3ed9e3, 0xced0e475, 0xce985bba, 0x4d2b9c00, 0xa98755d7, 0x894bb6bd, 0x40fe57f5, 0x5ce362f1, 0xeeeabce, 0x626706df, 0x9bc95215, 0x11dc5f7e, - 0x61720fa8, 0x00007d, 00000000 + 0x61720fa8, 0x00007d }, { 0x9a651310, 0x72c53ef1, 0x7ff642d5, 0x1b6dffbc, 0x91bb1383, 0x5bdd7052, 0xdbeb306e, 0x5f51a8ed, 0xa03a85b2, 0x814f4b3a, 0xce0ff133, 0x5008ba7, 0x83e699cc, 0x196570d7, 0x6548d123, - 0x328883e7, 0x0001f3, 00000000 + 0x328883e7, 0x0001f3 } }, { @@ -71632,19 +71630,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3100755a, 0xe4284b61, 0x7c6210fc, 0xd59ae450, 0x92e60806, 0xa4608cbf, 0x50934e14, 0x9f53e8aa, 0x32834343, 0x8c6a7d1a, 0xe179295a, 0xce0e2195, 0xc8a798df, 0xbadf547d, 0xc8001af7, - 0x7154826b, 0x0000a5, 00000000 + 0x7154826b, 0x0000a5 }, { 0x40c202f5, 0xa5f97ab8, 0xade03e8a, 0xb263a048, 0x35fceb3e, 0xae58ca05, 0x76ce4aba, 0x3945bce5, 0xa776e250, 0xf0555dde, 0x7fc31032, 0x8103b029, 0xbbc49e33, 0x1b7c6bba, 0x1eb3b503, - 0x63fdae3f, 0x0001cd, 00000000 + 0x63fdae3f, 0x0001cd }, { 0x11062695, 0xf07674e1, 0x8be58e18, 0x84b4baa8, 0x10f32b41, 0xe6c1c3bd, 0x5f1f1534, 0x43944f0f, 0x12b5a3e2, 0x502dc010, 0x6202d90e, 0xea46f09, 0x7d9f91d, 0xc0d2dc07, 0x93721437, - 0xd8e2b91c, 0x0000f9, 00000000 + 0xd8e2b91c, 0x0000f9 } }, { @@ -71652,19 +71650,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbfc255ca, 0xb0e815f7, 0x50eafadb, 0xe9c17830, 0x8b3ff39b, 0xeaef26e2, 0x8195f89f, 0xaf6d0ded, 0xf32e7468, 0x6c1ed95a, 0x2c24ae73, 0x34419352, 0x682080aa, 0x1bbe35ec, 0x95838088, - 0x25904f83, 0x0001f1, 00000000 + 0x25904f83, 0x0001f1 }, { 0x42d0603f, 0xae15c98c, 0xdf550d6f, 0xd326862a, 0x3b21f58d, 0x742891c7, 0xc218cbf5, 0x210a5bb7, 0x525f30e1, 0x8e8b88ef, 0xd51debc, 0x90d8b921, 0xf4d587b5, 0xc69e2384, 0x95ecf64d, - 0x30163cad, 0x00017e, 00000000 + 0x30163cad, 0x00017e }, { 0x78f5ba98, 0x3556217d, 0x60f1fdef, 0xe078c83e, 0x8b08d0b2, 0x309c2550, 0x6d186658, 0x52fa3b9c, 0x192bf498, 0xb1a9ac31, 0xe39e6d99, 0x6e809ffd, 0x7738c88c, 0xda8df744, 0x60d99ee3, - 0x10e19b2e, 0x0001c2, 00000000 + 0x10e19b2e, 0x0001c2 } }, { @@ -71672,19 +71670,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x67e45805, 0x9024fe7a, 0x744bab7f, 0x480d4316, 0x7da4a8e0, 0xba05d876, 0x6f01e840, 0xe95e7ac1, 0x98063c3c, 0xe91ba230, 0x382b54ac, 0xf19d5f94, 0x8c512b29, 0x185cfd08, 0x4c7d8140, - 0x4548a19, 0x0001eb, 00000000 + 0x4548a19, 0x0001eb }, { 0xe1ae40af, 0x3f7b2658, 0x8483e68f, 0x90535c55, 0xbbeef439, 0x8b5bc30f, 0x365d0588, 0x2f409177, 0x876a204b, 0x26100dae, 0x2938587a, 0xb029776b, 0x71cc88b1, 0x59fe89be, 0xf7ef431a, - 0x9da336e5, 0x000113, 00000000 + 0x9da336e5, 0x000113 }, { 0xaddccede, 0x6e0f55b8, 0x4a3e3b29, 0xc8ae1caf, 0x28578d4e, 0x41238717, 0xea04508a, 0xfd8cbb5, 0x48647a4, 0x5b300b13, 0x1eac84e4, 0x89169fa9, 0x9b84aa26, 0xce9cd097, 0xa84fe0e9, - 0xe98a095c, 0x000179, 00000000 + 0xe98a095c, 0x000179 } }, { @@ -71692,19 +71690,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x46d05b8b, 0xe8a80d2c, 0x701f332b, 0x1d4fbdb5, 0x1d3a5684, 0xb1ce7b2d, 0xe32feb52, 0x1e404725, 0xd7aafcbc, 0xa2aac7c6, 0x49d5d78a, 0xfeb1c4d2, 0xb6e4c067, 0xfa6b3aa1, 0xb50b0a5a, - 0x873253ed, 0x00019e, 00000000 + 0x873253ed, 0x00019e }, { 0x61be3405, 0xde7db529, 0x14571502, 0x85855db5, 0x7f56a0c9, 0xe292a74c, 0x1dd1a0e0, 0x2e233781, 0x99c729bb, 0x1c1445bf, 0x80e91078, 0x7b4910e1, 0x75287920, 0x73241f18, 0x6847e854, - 0xd3b90944, 0x00010e, 00000000 + 0xd3b90944, 0x00010e }, { 0x405d2e1e, 0x749cbb52, 0x18dcccd3, 0x13a2e00a, 0xa602d2b0, 0x963f953f, 0x6fd5f19e, 0x3638ae1a, 0x413d9e5a, 0x100bbd51, 0x8badc862, 0x62771e2f, 0x6ac0055b, 0xdd34f5cb, 0xb4548ad0, - 0xf33343be, 0x000180, 00000000 + 0xf33343be, 0x000180 } }, { @@ -71712,19 +71710,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9e4c27f5, 0x15bd1d03, 0xf6d06008, 0x7a2c0922, 0x10f969a3, 0x5f0d7787, 0xcd725ca7, 0xe98ce601, 0x871ded59, 0xe09cd0ba, 0xcf969092, 0x5e91319c, 0x39fbbc1, 0x5b0bddc4, 0xfb745387, - 0x40661828, 0x0000ab, 00000000 + 0x40661828, 0x0000ab }, { 0x652da337, 0x695406c6, 0x1f780bad, 0xd2229884, 0x5018f6fb, 0x6e2a8135, 0x9ed519fa, 0xc490dd2b, 0x85292ed7, 0x57e9e3e9, 0xf1cdc5d9, 0xcd646813, 0x629167d9, 0x6f8c1f37, 0x26eef323, - 0x23b59fe2, 0x000147, 00000000 + 0x23b59fe2, 0x000147 }, { 0xf4d58df2, 0xb8761c57, 0x8f05f76b, 0xa40823a4, 0xc4bee84d, 0xca9d7402, 0x1570311, 0xf02176, 0x3dbee7ba, 0x1b8e03ee, 0xa6989486, 0x125a920f, 0xf9314e2e, 0x7f5c355b, 0x27f022bd, - 0x76d08192, 0x0000fe, 00000000 + 0x76d08192, 0x0000fe } }, { @@ -71732,19 +71730,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd56b288f, 0xae581895, 0x6d3f5d9f, 0xe2dc813, 0x6e917d28, 0x99c06bd2, 0x59c7154e, 0x2c8160a7, 0xa4be9579, 0xc5f8ad06, 0x56ca1d66, 0x290ca829, 0x6b1efcc6, 0x6f4ac00b, 0xafa22b4f, - 0xe2fe266c, 0x000005, 00000000 + 0xe2fe266c, 0x000005 }, { 0x3c1e506f, 0x3d3d2e9e, 0x8e2ed641, 0x862bd051, 0xd3dc72c2, 0x7d7b7207, 0x5b21056b, 0xc3bd20c0, 0x87ad8dee, 0x30922504, 0xd286117b, 0x8ad32c7c, 0x9def6115, 0xc9b84c9e, 0x9d31024e, - 0xec8d55ac, 0x0001bc, 00000000 + 0xec8d55ac, 0x0001bc }, { 0x51236e0c, 0x28f5238b, 0x9972d33c, 0x2edbdc45, 0xb4888ba5, 0x6a7548, 0x363fee47, 0x56fdcf02, 0xda3274f0, 0x1b5b15d3, 0x67250809, 0x48c4ce69, 0x98676a7, 0x611f13dd, 0x9972f51, - 0xc9b4818c, 0x000086, 00000000 + 0xc9b4818c, 0x000086 } } }, @@ -71754,19 +71752,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7d7fb095, 0x91c1a5b, 0x796d01e7, 0xfa9f1c85, 0xae9dfbf0, 0xe2264b76, 0x1dd1429f, 0x5d19da7b, 0x957b0fad, 0xaa344a42, 0x6da1e98a, 0xc21d2256, 0xc6d3b8d6, 0xd1a333fa, 0x9d5f2290, - 0x49f7402c, 0x000042, 00000000 + 0x49f7402c, 0x000042 }, { 0x31fdcf35, 0x22ae5d01, 0x4cd29af9, 0xf001686b, 0x3d653fb9, 0xa5787974, 0xa5148b72, 0x87180d50, 0x6402eef3, 0x21abfaa8, 0x55a67459, 0xa9e17898, 0x2b2ee743, 0x350bf06f, 0x7b3c196a, - 0x176280be, 0x00005b, 00000000 + 0x176280be, 0x00005b }, { 0xd9201fb, 0x874acc4c, 0xb2ef10eb, 0xefa62582, 0x4176a88, 0xe45f6f73, 0x8963f85e, 0x437df1b8, 0xa2261159, 0xca6eb5c1, 0x769f155e, 0xda5860bf, 0x9f4fa4cf, 0xc4ea8824, 0x53463e33, - 0xaca307c4, 0x000102, 00000000 + 0xaca307c4, 0x000102 } }, { @@ -71774,19 +71772,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x83983e15, 0x9f8707e5, 0xb9288289, 0x12ebd3a8, 0x3d5820b6, 0x4bf4634e, 0xf64da37b, 0xfd838370, 0xa377002c, 0x988f4d4a, 0x8be48df8, 0x5f50b0d5, 0xaf26c8b2, 0xc0332ca0, 0xf74f0bf1, - 0x9c094db9, 0x000063, 00000000 + 0x9c094db9, 0x000063 }, { 0x6cdb68c, 0xd647ab2, 0x684137bf, 0x249e2d04, 0xe16b877f, 0x16c3c965, 0x75d4b199, 0x3017c7dd, 0x6d83e60f, 0x1d63b12, 0xd47846bb, 0xa5991199, 0xf206c626, 0xf78798e1, 0x306a999e, - 0x31b39e60, 0x000130, 00000000 + 0x31b39e60, 0x000130 }, { 0x825d3128, 0xe890ca51, 0x94d287b4, 0x1b922cc, 0xa3c92cf2, 0x3410fdb7, 0x3079484, 0x3ccfd0e7, 0x44fd595a, 0x2d7759d0, 0x33e967e2, 0x5e81fcb, 0x6bfdeebd, 0x71a5b2e1, 0xe3b29aa1, - 0x1be187f6, 0x00001e, 00000000 + 0x1be187f6, 0x00001e } }, { @@ -71794,19 +71792,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5ba751e3, 0x4cebd7fb, 0x58c50469, 0xdd2d9f4a, 0x3655494a, 0xfb1068ad, 0xd6bc2d03, 0xce294d93, 0x2503dbb8, 0x698a8d23, 0x5a70e0e5, 0xcc10477f, 0x354bf210, 0x25ff2307, 0x7ace1b5a, - 0x7e5b24bb, 0x000125, 00000000 + 0x7e5b24bb, 0x000125 }, { 0x208d3e2b, 0x82959222, 0xdd5b9fc8, 0x13fe2c27, 0xa9d440ad, 0x65093f95, 0x4bfdc528, 0x235cb52f, 0x28c7153c, 0x2d74d746, 0x6f52a399, 0x59c8ba45, 0x38b42010, 0x6c118160, 0x8878dfbe, - 0xa04a7c50, 0x000181, 00000000 + 0xa04a7c50, 0x000181 }, { 0xb09cbdf6, 0x7ad8642f, 0x1e4fa85f, 0xe32b0d3c, 0x3dc5cce7, 0x912f859, 0x42f5dd5c, 0xcbce6257, 0x166b2e3b, 0xc2be048d, 0x743848dc, 0xa4be56e0, 0x2db7aabe, 0xcb7eef1c, 0xfb39095d, - 0xc909eb15, 0x00001d, 00000000 + 0xc909eb15, 0x00001d } }, { @@ -71814,19 +71812,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc8133b61, 0xc11b413e, 0xee9aeac7, 0x8d2a6d6d, 0xbcf01006, 0x360189c6, 0xefa70f94, 0x807c205, 0x92c255c9, 0xff4133ea, 0x14d97b65, 0xca099911, 0x59d13a3f, 0x7c0de1a4, 0xa0f83cd0, - 0xd486974e, 0x000133, 00000000 + 0xd486974e, 0x000133 }, { 0xd6994aab, 0x44b8ada1, 0xdf5d4cac, 0x9c93417e, 0x5b7a2afb, 0x851fc9a8, 0xd972dfac, 0x8b282c5f, 0x8a7e1f86, 0x7b540584, 0x4af5cefc, 0x4d68c2d6, 0x31ef15b7, 0x3c428fb5, 0x7585289a, - 0x2eb61b2c, 0x000049, 00000000 + 0x2eb61b2c, 0x000049 }, { 0xaa869e77, 0x9960da30, 0xbe085fcb, 0x5ccbfbf1, 0x4e031152, 0x28b72c0c, 0xebae6b54, 0x49b221d5, 0x81949dd4, 0x5ab632f1, 0xab96b6ab, 0x979eb42d, 0x4b66a8f0, 0x9c9e1821, 0x52aca74c, - 0xc36d569b, 0x00015f, 00000000 + 0xc36d569b, 0x00015f } }, { @@ -71834,19 +71832,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x919d07cf, 0xedc17f51, 0x6b0004d5, 0xd4ceaa89, 0xf18b08e8, 0x6bb9247f, 0xfbf889e7, 0x5473c58, 0xcab4d809, 0x7c2d31fe, 0x9464dfda, 0xf128181e, 0x8ae28f5, 0x98bbdb13, 0x6b61ee7f, - 0x7bcab48e, 0x00011f, 00000000 + 0x7bcab48e, 0x00011f }, { 0x7041e0a7, 0x697bac42, 0x3ed8fcc1, 0x3a65a641, 0xad12f598, 0x84594862, 0x72ca187f, 0xa5c8d65c, 0x9ab0bec4, 0x1c3eafca, 0xe25d383e, 0x99516ee3, 0x6fde88e0, 0x16d076f3, 0x57d6c79c, - 0x14ca8dcd, 0x00016d, 00000000 + 0x14ca8dcd, 0x00016d }, { 0x219e8e9a, 0xf69c3249, 0xf7cdd82b, 0x7f669de3, 0x8b1c5840, 0x773e65f, 0x747bb6c0, 0xdf859dbd, 0xed72c9bd, 0x9cb6990, 0x90f2006e, 0xabee97ab, 0x8d89cebc, 0xfc1f8234, 0x1ce2323c, - 0xc2a3e20f, 0x000129, 00000000 + 0xc2a3e20f, 0x000129 } }, { @@ -71854,19 +71852,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xca862a93, 0x3c26047d, 0x97eed8f8, 0x55e3b28, 0xcf82dab8, 0x98857492, 0xf6c1b63c, 0x1436f3fb, 0xa054e203, 0xb3123f38, 0x20aaa278, 0x946afd8f, 0xa696e3aa, 0x51d40deb, 0xbf99b1ba, - 0x42527c3f, 0x000097, 00000000 + 0x42527c3f, 0x000097 }, { 0x1c4f3180, 0xd2d68109, 0xa972f43e, 0xaac8d46, 0xf0870653, 0x159e05ab, 0x3f3a8001, 0x247f6301, 0x3acdc693, 0x2af63350, 0xfa39456e, 0x757557ff, 0xa2c432fa, 0xb6ed05d0, 0xf587939f, - 0xe1663397, 0x000106, 00000000 + 0xe1663397, 0x000106 }, { 0x692dec2e, 0x20f9e4ad, 0x87f5af6d, 0xa4319983, 0x1d9fc0e5, 0x11cadce0, 0x1bed8f83, 0x52c59d23, 0xf5a5a461, 0xb4a14a8f, 0x70306ae5, 0xe0e78fd5, 0x8778fddc, 0x97b9311e, 0x9c870b86, - 0x1dbf49a1, 0x0000a1, 00000000 + 0x1dbf49a1, 0x0000a1 } }, { @@ -71874,19 +71872,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x76c65686, 0xacc3c680, 0xa8861f6c, 0x8ff967cb, 0x1da6acba, 0xea659806, 0x94dd2df7, 0x9753e8b6, 0x584cba8e, 0xd1419379, 0x46c49b1d, 0x665a9942, 0x1cb4c46f, 0x65bed1bb, 0x46714f6b, - 0x10ce4675, 0x00008a, 00000000 + 0x10ce4675, 0x00008a }, { 0xb1432eb1, 0x48439614, 0xb6c8d6d0, 0xd2d7dd76, 0x6b94c1ec, 0xf78cac25, 0x20c33f16, 0x643a685f, 0xb50ebace, 0x30abd388, 0x93d53b88, 0x59e821dc, 0x6125bdf, 0x27ef71e0, 0x75653407, - 0xe143a3bb, 0x000101, 00000000 + 0xe143a3bb, 0x000101 }, { 0xe4c1d9a, 0xce85fa41, 0x745537e1, 0x9b6509f3, 0x1a73d456, 0x3bf759e2, 0x761de408, 0x9f4773db, 0xd457c2e9, 0xf1896a30, 0x11aa3a7f, 0xbab01d31, 0x782c559c, 0x7a49aa97, 0x7ae582d, - 0xfae694c9, 0x0000e2, 00000000 + 0xfae694c9, 0x0000e2 } }, { @@ -71894,19 +71892,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x658ae0a5, 0xe5e9d32a, 0x4d1363a0, 0x7187cd3e, 0x65bc081e, 0xad8d48a9, 0xea5db1ae, 0xef81db99, 0xcee00c59, 0xef66360d, 0x4c77192f, 0x2fe3b26d, 0x34243183, 0x81d7e376, 0x607cf93a, - 0x3dcc8352, 0x0001d4, 00000000 + 0x3dcc8352, 0x0001d4 }, { 0x2de4d69f, 0x3e554541, 0xa8ed2172, 0x78fc0957, 0xf20e9b62, 0xd686ef83, 0xc3534c5, 0xdbda1046, 0x485f067a, 0xb39a46a2, 0x6acd3009, 0xd47e8485, 0xce23e6f8, 0x67ff76ee, 0xd1df7ddd, - 0x7ed3684a, 0x000069, 00000000 + 0x7ed3684a, 0x000069 }, { 0x8229b50f, 0xc9ad780c, 0xc8c2663b, 0xf3de7883, 0xdaf08174, 0xe2423de3, 0xe5110046, 0x2dbe6827, 0x25077ab0, 0x7292b8c, 0xbdd19007, 0x2caf940d, 0x8ad78f50, 0x2b7eabbb, 0xca541684, - 0xbc34bc1, 0x000169, 00000000 + 0xbc34bc1, 0x000169 } }, { @@ -71914,19 +71912,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbdeb823b, 0x2367ab32, 0xc7d0504b, 0x9b7b7cd4, 0x1a3136b7, 0xa8bf67d, 0x84f79d92, 0x1d28b6b3, 0xb146711d, 0x10f131a4, 0x71678071, 0xced264fc, 0x8190161a, 0x4797dff3, 0x965dec69, - 0x887771ff, 0x00013c, 00000000 + 0x887771ff, 0x00013c }, { 0xec05663a, 0xfba7c2f7, 0xb45e9b32, 0xbef394a, 0x5c52f8d2, 0x86aa6442, 0xabbac2ec, 0xd0dd5dc, 0x12bad485, 0xe2614aae, 0xe4334c0f, 0xda3aadbc, 0xaa4f9aa5, 0x560933db, 0xeb9f8265, - 0x3ee89d0d, 0x000175, 00000000 + 0x3ee89d0d, 0x000175 }, { 0x5136c0a1, 0xef7eb9ab, 0x4d5d335d, 0xa124a586, 0x2138f5ce, 0xdb94e887, 0xf948903a, 0x7067c0b2, 0x963afacf, 0xe857d305, 0x7286d4d6, 0xf552f125, 0xc389f070, 0xd06dbee8, 0x361c311e, - 0xbde47b24, 0x000035, 00000000 + 0xbde47b24, 0x000035 } }, { @@ -71934,19 +71932,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6cbc050f, 0x1137a016, 0xed79d645, 0xc91404a0, 0x67eb326c, 0x4ec63864, 0x8bde142b, 0xc86fbfcd, 0xd759d370, 0xdebbfa37, 0x2ef7bdec, 0x83e74738, 0x943187c2, 0xa8a1426c, 0x4bec56b1, - 0xbd748634, 0x00007f, 00000000 + 0xbd748634, 0x00007f }, { 0xf35b6f66, 0x400e8796, 0x5d099754, 0x78c80d93, 0x35109d9d, 0x2a4050c8, 0xde41e4dd, 0x74edeea7, 0x760123e, 0xe3bf35fd, 0x20d27810, 0x2e919066, 0x5659711, 0x756e255, 0x398e33bf, - 0xe4d81358, 0x000162, 00000000 + 0xe4d81358, 0x000162 }, { 0x24e8c5c8, 0x86176c2b, 0xd3676798, 0x7ccf5a96, 0xc31576bf, 0xea3b6ef2, 0x5573efa9, 0x49269d02, 0x27b59bdc, 0x87383c5f, 0xa832f6ce, 0xb01fb6f2, 0x5513d81d, 0xfc0351ea, 0x80c79916, - 0x8451d562, 0x0001ac, 00000000 + 0x8451d562, 0x0001ac } }, { @@ -71954,19 +71952,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd03287e8, 0xa6870e9f, 0x177c59c, 0x7a3f9aa5, 0xdbcc848d, 0x5dc44d97, 0xd2aab93d, 0x73d14c35, 0x9ecb914e, 0xbd2461ad, 0xa2aa8610, 0x948b782e, 0x88780d1b, 0x3b346dda, 0x726edfdc, - 0x5f11f999, 0x0000b7, 00000000 + 0x5f11f999, 0x0000b7 }, { 0x3b2b987f, 0x120290b, 0x27d888f2, 0x3e9b3c18, 0xb2222e91, 0x83b88cfc, 0x365b9abf, 0x1943b460, 0xc449bdb9, 0xe7584610, 0xb986563, 0xe81f4106, 0xb4182896, 0xbe5be515, 0xa031e7a2, - 0xf64cf40, 0x000010, 00000000 + 0xf64cf40, 0x000010 }, { 0xe420c74e, 0x1e283504, 0x4794a788, 0x3144c341, 0x3cb1b64b, 0x694cbe3f, 0xdb77cbe6, 0xc8e7287c, 0xe9451212, 0xdb8f900f, 0x23e0064c, 0xf66b27a9, 0xa10ce663, 0xafee9394, 0x3dcbe74a, - 0x7362e0a7, 0x00004d, 00000000 + 0x7362e0a7, 0x00004d } }, { @@ -71974,19 +71972,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa174f316, 0xf9ee0719, 0x3412d742, 0x3ae97a0e, 0xc8ad6da8, 0xa16ed793, 0xd54c5898, 0x1d89edd7, 0x879b72e2, 0x4257f74b, 0x712c58ae, 0xba4bc1b5, 0x722857ab, 0x9b3f82f9, 0x6342e2d1, - 0xaf77bbef, 0x000088, 00000000 + 0xaf77bbef, 0x000088 }, { 0x4bbdbfec, 0x9b23399f, 0x2fac5c1b, 0xb59531f3, 0x5992efdd, 0x3ecb0a60, 0x1c703aa9, 0x7f4d5abe, 0x2738d146, 0x9bc0ee66, 0x71a8ec38, 0x350152d0, 0x35aa02e8, 0x3fe33856, 0x4350171f, - 0x72a310d6, 0x000157, 00000000 + 0x72a310d6, 0x000157 }, { 0xe2c8a857, 0xe219e0f4, 0x16f4a282, 0x9fce1065, 0xb130b97e, 0x510243, 0x8d42ec65, 0xaa1639ed, 0x65ba28d6, 0x142eb28f, 0xcf2ad161, 0xd253cf2d, 0x7909c5f2, 0x28519cff, 0xad00ac1b, - 0x824654fb, 0x00008a, 00000000 + 0x824654fb, 0x00008a } }, { @@ -71994,19 +71992,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x55ccbd10, 0xb0f1faa9, 0x2708080e, 0xc1251d5d, 0xd1c9ed16, 0x4f58d679, 0xa027cf9b, 0xbbdb830a, 0x737a538c, 0xe602e374, 0x4c048542, 0x7bc47433, 0xe429c25f, 0xe826149c, 0x1d7db119, - 0x300b6478, 0x000067, 00000000 + 0x300b6478, 0x000067 }, { 0x2fca21fd, 0x32ad0c5e, 0x90b4096f, 0x8916d961, 0x284fca46, 0xc47c9c5, 0x47020e54, 0xda9734b5, 0xf6d79cc3, 0xb2782f23, 0x485efcc4, 0x39056c70, 0xbf179bea, 0x931bcce4, 0xfdf44cee, - 0x28707614, 0x00018e, 00000000 + 0x28707614, 0x00018e }, { 0x968e8adf, 0xceaf9a80, 0x30abcb48, 0xecc4d4d4, 0x6d7d05c3, 0x965212c9, 0x2484fad2, 0xc6ffb514, 0xc99388dd, 0x78a17368, 0x96c50460, 0xab30bd1a, 0xe0b7d66a, 0x9dc26f83, 0xcb8c4a66, - 0xb7f5b2ad, 0x0001a8, 00000000 + 0xb7f5b2ad, 0x0001a8 } }, { @@ -72014,19 +72012,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfa480cd2, 0x7d2b9a57, 0xf2d36885, 0x232896ef, 0x55f9a32f, 0x578cf17c, 0x37d2d2de, 0x519a497a, 0x6025fd8, 0x9180d3c1, 0xc0396b8a, 0xab164db, 0x9dc0cca3, 0x1c97ab56, 0x619d4d12, - 0xee14cede, 0x00006a, 00000000 + 0xee14cede, 0x00006a }, { 0xb71bd1c0, 0xc2a06e68, 0x898db9eb, 0xbce0138f, 0xa30856f5, 0x7ca2bf95, 0xbd03d15a, 0xf6dc4232, 0xd4cc5072, 0x163feb8, 0x7baf78d9, 0x23472286, 0x4319b864, 0xc81d6453, 0x124b1556, - 0x91c666ad, 0x0000fd, 00000000 + 0x91c666ad, 0x0000fd }, { 0x61d6710d, 0x549c31a7, 0x737226b4, 0xcb17f7b5, 0x63c31948, 0xdcce6095, 0x5be9b306, 0x3785bec5, 0x416ab062, 0x74022e68, 0x92b37a66, 0x256bfbb4, 0xa7fb3655, 0x78137110, 0x23eeee46, - 0xfb6051a6, 0x000110, 00000000 + 0xfb6051a6, 0x000110 } }, { @@ -72034,19 +72032,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x24e6f95d, 0x9153fb4, 0xdc7b83ad, 0xca8a0415, 0x584a25ba, 0x5842d222, 0xc2b0f659, 0x1c503ad8, 0xeb5e4d4e, 0x8ad89f5, 0xac7b976, 0xad2b9f06, 0x2cf3fb4c, 0x4bcdc6b, 0xc0b217a2, - 0x55937e04, 0x0000aa, 00000000 + 0x55937e04, 0x0000aa }, { 0x74613997, 0x5d38d0ff, 0xcff377f1, 0xd740f9bb, 0xaf606f64, 0x75771622, 0x6a810961, 0xba9ffdf2, 0x677b1d2e, 0x7168a6a3, 0x23caf816, 0x40a1cfc9, 0xecbf9700, 0xa2097261, 0x5bd49936, - 0x4d4c784e, 0x000028, 00000000 + 0x4d4c784e, 0x000028 }, { 0xf4355260, 0xec2d6a30, 0x370c1228, 0xe8620f4c, 0xdfa359d7, 0xd9474696, 0xc5a22eb4, 0x59098d12, 0x7e9be91e, 0x85b91773, 0x5b01d388, 0xffc843f9, 0xdf820b60, 0xcc6cf72a, 0x9d7bcfd2, - 0xbac10553, 0x000144, 00000000 + 0xbac10553, 0x000144 } } }, @@ -72056,19 +72054,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd8db3be2, 0xb3856ea5, 0x17e1ba7e, 0xd97e743b, 0x742174f5, 0x9445dd62, 0xa86d8680, 0x911a545d, 0xff2d85ef, 0x5f61e1ae, 0xf9ea6875, 0x9dce4808, 0x50ae2ab9, 0x5982533, 0xf72416e4, - 0xb9ba54ce, 0x000061, 00000000 + 0xb9ba54ce, 0x000061 }, { 0x40a540e3, 0x377eb5d3, 0xbd56cdc9, 0x786bb3eb, 0xf085740e, 0xe4f7c98f, 0x9c6cf794, 0x5a3b35bd, 0x559486e6, 0x615ab337, 0x86a0a480, 0xa800b8ad, 0x574f746b, 0xad3b6ff7, 0x59241379, - 0x590ad811, 0x0001b6, 00000000 + 0x590ad811, 0x0001b6 }, { 0xae7675a2, 0x8b5f8a3c, 0x7575ff0b, 0x46ec8017, 0xf9cdc703, 0x5098dcc3, 0xe893f9c0, 0x76eef789, 0xff84af65, 0xa6e8792b, 0xe6035135, 0x88326166, 0xee093ab3, 0xed6d1a73, 0xf1b09f4, - 0x89e95667, 0x000081, 00000000 + 0x89e95667, 0x000081 } }, { @@ -72076,19 +72074,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xab4dc53c, 0x1c26a4c1, 0xbfda0648, 0x8c4bfc13, 0xdd5a6ebf, 0x2a7b0087, 0xe34584ad, 0xa9ececb9, 0x4eb0b6ba, 0x716b0b0, 0x39fe4af9, 0x54bac8c2, 0x5067afbf, 0xf93ae124, 0xfdbc49ce, - 0xd4128cb6, 0x000196, 00000000 + 0xd4128cb6, 0x000196 }, { 0x6f37aea5, 0x13f33ff1, 0xb02ef971, 0x6b54437b, 0x5f72dd42, 0xd64c6ece, 0xdcafea43, 0x4b6ae2af, 0x3ac956a7, 0x48323851, 0xec85ab9c, 0xa135b88c, 0xcff8f0c, 0xd4ed52d0, 0x6cac4d02, - 0xec7a31bc, 0x0001f8, 00000000 + 0xec7a31bc, 0x0001f8 }, { 0xaeb8b79a, 0xa92dad52, 0x6267b4c1, 0xfbce0b28, 0x4219185f, 0xf88eb3f5, 0x6ea3d714, 0x7b17328d, 0x4c72df96, 0xcc66fc91, 0x8477fe, 0xdd72000, 0xa8c6c1fe, 0xaa04771, 0xab1d99b4, 0x2c873e51, - 0x00012e, 00000000 + 0x00012e } }, { @@ -72096,19 +72094,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb89c342b, 0x612fbd91, 0xa0799a6f, 0xc70b02a5, 0xfbe1d56c, 0xb525db2c, 0xc58dca96, 0xfe273fef, 0x36df0565, 0x1ba15b68, 0xc5396a7, 0xefd4219f, 0xc9466f3e, 0x1f26f004, 0x4fc43119, - 0xd3b03a7c, 0x00013e, 00000000 + 0xd3b03a7c, 0x00013e }, { 0x32704f9a, 0x92cd8186, 0xba17645e, 0xd43f842e, 0xa8d04c48, 0x97221201, 0xadd4834b, 0xb87c215a, 0xb6d895e5, 0x25defb50, 0xc32cd07e, 0x3395f1a5, 0x798983ad, 0x2eb538ac, 0x446b0f66, - 0xd70d48c8, 0x000169, 00000000 + 0xd70d48c8, 0x000169 }, { 0xc4cf5371, 0xe35921b2, 0xa9f40948, 0x8e73bbe0, 0x7ab41368, 0x47a9286c, 0x8d466cf1, 0xbcd9083d, 0x6eb736b8, 0x21fb6cb8, 0x5e983f7f, 0xb5b50028, 0x7b387921, 0x823c280b, 0x251015c2, - 0x97e42db0, 0x0001ed, 00000000 + 0x97e42db0, 0x0001ed } }, { @@ -72116,19 +72114,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x71cf8f93, 0xfdd93314, 0x11cc092e, 0x9bb12194, 0x85828c70, 0x754a6055, 0x81e6d427, 0xf4391b4c, 0xba690f9c, 0xa9673ce0, 0x3f83bdc2, 0x8907996a, 0xdf243971, 0x4234083, 0x178c207a, - 0x2345b4e0, 0x0001b4, 00000000 + 0x2345b4e0, 0x0001b4 }, { 0xa2c0fadd, 0x427dafb, 0x1d8d0e16, 0x33eee1ff, 0xc4df7b77, 0xa6b901f8, 0x8e32841e, 0xa937d17f, 0x650d5533, 0x1a9034f, 0x3d8f82cc, 0x6ca1edbc, 0x521a2f12, 0x26df0577, 0xe3b282a, - 0xfe936a39, 0x000083, 00000000 + 0xfe936a39, 0x000083 }, { 0xb4720e2e, 0x89e5ecba, 0xefbd44b8, 0x3dd0197e, 0x7819791d, 0x51d3c7f7, 0x78889b5a, 0x2b654b91, 0x456f11e6, 0xf8a20005, 0x7303cdd7, 0x4fe72875, 0xf9e3bf51, 0x8d29c2a0, 0x4ab09e2b, - 0x35cea201, 0x0001ea, 00000000 + 0x35cea201, 0x0001ea } }, { @@ -72136,19 +72134,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b639d70, 0x3b5d3e3a, 0x6bcf6f4d, 0xa4d2d37, 0x305c5d9b, 0x8dcd11fa, 0xfa1e7a6e, 0xeb0ebb78, 0x7d35955e, 0xafb0c47a, 0xa67014a3, 0x2fc7028c, 0x453e9049, 0x2ab5819d, 0xf42269a7, - 0x747bb689, 0x00001b, 00000000 + 0x747bb689, 0x00001b }, { 0xda117131, 0xd5d25f7e, 0xb0a25887, 0x19292f3e, 0x473168e4, 0x28f1da97, 0x90fb117e, 0x823e4245, 0x9f033758, 0xde883564, 0xe15127b1, 0x4e0752c, 0x6f550505, 0x7ccf2bd4, 0x187ae243, - 0x10bb547e, 0x00012d, 00000000 + 0x10bb547e, 0x00012d }, { 0x1c8b767b, 0x53626c01, 0xf25e1d95, 0xcccdb321, 0xa098b97, 0xcdb42e27, 0x76fec2c0, 0x9e63bb9a, 0x262bc59b, 0xcf2d11c1, 0xba6227e2, 0x726079b8, 0x1a0c54c, 0x39afcaf4, 0xa148298, - 0x4aab2e4b, 0x0001e6, 00000000 + 0x4aab2e4b, 0x0001e6 } }, { @@ -72156,19 +72154,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2831c5b5, 0x8b3a681d, 0xc6606732, 0x972352db, 0xa2889d94, 0x2a116a61, 0xd5534c5f, 0xb2acb1cd, 0x72090a4b, 0x4b433f3b, 0x9d6b719b, 0xce5a8587, 0x5bea1d46, 0x8d193ca1, 0xb6336f9f, - 0xa005aceb, 0x0000f4, 00000000 + 0xa005aceb, 0x0000f4 }, { 0x2ae2f65, 0x91a712db, 0xcd17b60b, 0xfb7baf61, 0x78ba7f53, 0x3b586e47, 0xb749be76, 0x41af2482, 0xfbafe60b, 0x8d74ee13, 0xf04e4ecc, 0x7c8ca308, 0xf8da751c, 0x8ff214e6, 0xe33de0a7, - 0x91613962, 0x00012b, 00000000 + 0x91613962, 0x00012b }, { 0x752dd941, 0x1f9bc632, 0xa3c05ad0, 0x5169cd38, 0xd99736ef, 0x8d71ef10, 0xff112634, 0x474d529e, 0x59bbd4c3, 0x79e68327, 0x3e73eb4b, 0x735f6d37, 0xdd3c841d, 0xcd3f3aa0, 0x32ec0e5e, - 0x9071a48d, 0x00016e, 00000000 + 0x9071a48d, 0x00016e } }, { @@ -72176,19 +72174,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x76e748bb, 0x203c0337, 0xf7bd59ec, 0x2338454c, 0xd99459b9, 0x1e2ba2, 0x9b13b4, 0xb375a49, 0x947e1600, 0x474783a3, 0xecc7501e, 0x1c102ce3, 0x502e34c0, 0x7c05206e, 0x3dc64031, 0x424be27c, - 0x000014, 00000000 + 0x000014 }, { 0x463af5d3, 0x85da4a0f, 0x317a9839, 0x2b3f3237, 0x9b25de20, 0xf6623204, 0x2fb511, 0xbf2674ae, 0xe1dc2756, 0x93f73aef, 0x316f8e39, 0x306ea7d6, 0xbb2d63de, 0x126e1c9a, 0x82536c1f, - 0xf154f434, 0x000131, 00000000 + 0xf154f434, 0x000131 }, { 0xdf4d20d2, 0x8c9c188e, 0xd995748f, 0x9673614d, 0xeed3de63, 0xd40d0262, 0xf71be90c, 0xde8a1d83, 0x4cc5684c, 0x639c7580, 0x9e7fc851, 0xf0c54247, 0xe0676ca, 0x9c61d94, 0x38e37efb, - 0x181bba3e, 0x0000a0, 00000000 + 0x181bba3e, 0x0000a0 } }, { @@ -72196,19 +72194,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb401c018, 0xb7721b0d, 0x9d2028b, 0xbd519fe4, 0xce9095f, 0xf15c8990, 0x214b887d, 0x6db2a728, 0x518922c8, 0xc378eb47, 0xb83588e4, 0xd39239c, 0x2087e812, 0x549c4566, 0x3c2b32ed, - 0xc84cfc09, 0x0000df, 00000000 + 0xc84cfc09, 0x0000df }, { 0x26ddacd8, 0xc216c346, 0x4a6febe3, 0xd68f33c3, 0x5a56cc1b, 0xeae9a3f1, 0xaf0b543e, 0xaeca2a45, 0x8b19d2d5, 0xbd80966f, 0x38fe06ee, 0x6e82fd6d, 0xe8d4faff, 0x55fae990, 0xc86e4bdd, - 0x68531cc8, 0x000160, 00000000 + 0x68531cc8, 0x000160 }, { 0x4c9c9e7a, 0xb62d37b5, 0x59d20413, 0x20a9c771, 0x27a89651, 0x9e7d2f0, 0xd23f5450, 0xb2af5ab8, 0x6eeef31e, 0xbf413f53, 0x5e5603d0, 0xa14aa905, 0xda39c6df, 0x682ee7cb, 0x3f7a2a28, - 0x61f4a3ad, 0x0001c8, 00000000 + 0x61f4a3ad, 0x0001c8 } }, { @@ -72216,19 +72214,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3b9816f2, 0xea958b6a, 0x9f6d17d7, 0x87007d45, 0xf9d0ea42, 0x925b59cf, 0xe109aace, 0x72d6c0e5, 0x2f96f3bb, 0x9b73473, 0x5e7153a5, 0x93ce855e, 0x337002f1, 0x76266355, 0x365f81b4, - 0x2e59305e, 0x000137, 00000000 + 0x2e59305e, 0x000137 }, { 0xd51ae84d, 0xe14ee2c2, 0xf97cf23e, 0x86434fb3, 0xd3bfe438, 0xdade4932, 0xa8ed2b9a, 0x8fa5a104, 0x3da8b1c0, 0x77b98b79, 0x2aaaebb8, 0xe02fd8c, 0x7b47e875, 0x86dd9915, 0xd14b2a83, - 0x6f776c1b, 0x0000ab, 00000000 + 0x6f776c1b, 0x0000ab }, { 0xe829a915, 0xc4a29f5b, 0x4b8a2481, 0x2d1dc11f, 0x9db4a66c, 0xaa43f996, 0x421bda85, 0x1a065d46, 0x88401503, 0x91c646bb, 0xd8c7158, 0xe5c588ef, 0x3a6a2abd, 0x9174891a, 0x871d417c, - 0x3d12e77, 0x00012e, 00000000 + 0x3d12e77, 0x00012e } }, { @@ -72236,19 +72234,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x68685893, 0xd77b4fc, 0x65e9075b, 0xff71e00c, 0x7309e589, 0xec95ad93, 0xe7fd12d3, 0xe2faf4bc, 0x73a54585, 0x78a7ecfd, 0x32055070, 0x3c55c282, 0xea42ee82, 0x2063538a, 0x9cdd2569, - 0xe0190997, 0x0000ce, 00000000 + 0xe0190997, 0x0000ce }, { 0xe490b89a, 0xf67efa68, 0xadc57b0b, 0x16b5e9c2, 0xbf7154a4, 0x524db956, 0x28ffa2b2, 0x49ddbce2, 0x8fb01e35, 0x23dfce27, 0x4098c39, 0x7a7a3e53, 0xb2b367bf, 0x8c603e76, 0x2b800341, - 0xbd2ccec3, 0x000188, 00000000 + 0xbd2ccec3, 0x000188 }, { 0x6ed8d63b, 0x7a0ac1e5, 0x402d9ede, 0x94e31cf3, 0xa55b36a0, 0x438ad12c, 0x36e9d33a, 0x2795caee, 0x833e3cbe, 0xc4fd928e, 0xab6be50d, 0xf4287815, 0xc6da1cb8, 0x36102aa0, 0x92c9abed, - 0xe72d28fa, 0x0000b6, 00000000 + 0xe72d28fa, 0x0000b6 } }, { @@ -72256,19 +72254,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6fefbf54, 0x80f3fe99, 0x5ecc7397, 0xb59c022, 0x5e93ac82, 0x3bb11c88, 0x45f5e861, 0x233840d2, 0x4b981bf7, 0xd86945be, 0x17081ae8, 0xbce3faa2, 0xdcd29411, 0xb1c5cb88, 0xa27f770e, - 0x6cb702b5, 0x000182, 00000000 + 0x6cb702b5, 0x000182 }, { 0xb325bbb3, 0x74640e20, 0xa5f21396, 0x55feb570, 0xa815da49, 0x65f32edd, 0x30a08ab1, 0xf3c8ea1d, 0x029bf2, 0xcb193f63, 0x36838305, 0xe0743dc2, 0x27110ede, 0xe8544fba, 0x8e5c9aa9, - 0x980e5ab6, 0x0000e7, 00000000 + 0x980e5ab6, 0x0000e7 }, { 0xace5363a, 0x1328805, 0x35a7b6b8, 0x76fe9c71, 0xbae60468, 0xd3ca404e, 0xbc25bb08, 0xddb869c3, 0x47c082a1, 0xd5557a14, 0x242d1104, 0xeedb9c23, 0xc6422b11, 0x74c1b3d8, 0x7737b214, - 0x65f3dce, 0x0000a0, 00000000 + 0x65f3dce, 0x0000a0 } }, { @@ -72276,19 +72274,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1b008db2, 0x1c19696, 0xd4e8b151, 0xdfdccf29, 0x679b8d36, 0x1c633af3, 0xd4b64e82, 0x7ddfdc6, 0x8f7204c5, 0xd664bc20, 0x8cdd9ca2, 0x7cae5fe5, 0x34d16888, 0x478b622f, 0xf80ee118, - 0x74b0aa9c, 0x000032, 00000000 + 0x74b0aa9c, 0x000032 }, { 0xe03b9c52, 0x7d8e7940, 0x5b457e36, 0xa23b656, 0x3564a2ff, 0xddbbe2ae, 0x43636bb7, 0xf50c4b84, 0xb434227d, 0x2944f5d6, 0xb1902d6a, 0xfac31d35, 0xb0da4e38, 0xa9a3ab0c, 0x7586133f, - 0xdae13bec, 0x000199, 00000000 + 0xdae13bec, 0x000199 }, { 0x27f50c25, 0xc77a33b1, 0x8ef810f, 0x1e239242, 0x6e80ce16, 0x9d10fba9, 0xb42ebfd1, 0x90cea0c6, 0x7ab5cf02, 0xeeba4777, 0x42b24604, 0x292911d4, 0x10c450a0, 0x6c0296d2, 0x9496f2f5, - 0x50c4c42a, 0x0000c6, 00000000 + 0x50c4c42a, 0x0000c6 } }, { @@ -72296,19 +72294,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x863820bc, 0x78cb84b6, 0x9e2d0761, 0x68596ff2, 0x1ca32bc8, 0x32e1f69, 0x41b15e40, 0xe607d4f7, 0xa6ca375b, 0x88d63a3b, 0x954a025d, 0x149a102d, 0x57502986, 0x56467cee, 0x13552717, - 0x41df3f36, 0x000122, 00000000 + 0x41df3f36, 0x000122 }, { 0x27e0ef4f, 0xa01aede4, 0x67dd75df, 0x6afea89, 0xfac44b27, 0xb4ef485, 0x82286eb7, 0x342525b8, 0x3802c3d4, 0x5abf6ab, 0xc236cf0d, 0x4dfe9058, 0x4d969035, 0x314268d6, 0x2f8ec8c8, - 0xe73d9ead, 0x0001d7, 00000000 + 0xe73d9ead, 0x0001d7 }, { 0x74f266c9, 0xa4b669ad, 0x7f0dcb87, 0x9ffa420d, 0x9a249dfb, 0xe49d0042, 0x3e79812d, 0x4e1e5166, 0xd25d9903, 0x8a4d124a, 0x8136d5a7, 0x9553ab48, 0x6686d396, 0x8761a984, 0x196822dc, - 0x6458f01c, 0x000078, 00000000 + 0x6458f01c, 0x000078 } }, { @@ -72316,19 +72314,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40ef050f, 0x7d4ae518, 0xdb1e5a9f, 0xdd288512, 0x341da090, 0x462204a8, 0x6e1f850e, 0xc72c67f4, 0xcebbf9b6, 0xd181965f, 0x3380d50e, 0x7258f4b, 0x21fd6b36, 0x1c86e7d, 0x42032681, - 0x9478d6a6, 0x00000d, 00000000 + 0x9478d6a6, 0x00000d }, { 0x1b6aad99, 0x61cd7a7c, 0x348367e, 0xf5f5533b, 0xe9ea8635, 0x3ade1290, 0x11cb6bb9, 0xa1d4588a, 0x11b0b379, 0xbad62d46, 0x7ecaa21d, 0xffa71af7, 0x8c42f4f0, 0x7b9f5ff0, 0xf870778f, - 0x4b8f6e4e, 0x0000c0, 00000000 + 0x4b8f6e4e, 0x0000c0 }, { 0x2e6eefa, 0xc41f666d, 0x9d37fe50, 0xabc811e1, 0x2d6e0d34, 0xaad53b54, 0x85f8e035, 0x83dc6fbe, 0xec0ac6aa, 0x7c481dd5, 0xeba5d488, 0x5060bdc6, 0x2b98bad9, 0x490d3330, 0xc5b924b6, - 0xb9893320, 0x000149, 00000000 + 0xb9893320, 0x000149 } }, { @@ -72336,19 +72334,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1891404f, 0xef159b75, 0xbce54eda, 0x87a01c6c, 0xef317579, 0xf10fe1f9, 0xbfc2ef4c, 0xea4542dc, 0x60d48e1c, 0x1f9fead7, 0x89b512a8, 0x7133d55, 0x61e0d4a8, 0x7af72f26, 0x3ccf817, - 0x265c8067, 0x000141, 00000000 + 0x265c8067, 0x000141 }, { 0xdb6cccae, 0xbe6b6a5, 0xc2488437, 0x381f8e17, 0x66b18863, 0x797031b5, 0x1f4eae0f, 0x4720b18e, 0x8a592058, 0x2dc9ef11, 0xae7f6482, 0x56e6eb66, 0x9b48c03e, 0x44d1cd17, 0xa44d96b1, - 0x97c816a5, 0x000169, 00000000 + 0x97c816a5, 0x000169 }, { 0x96f4b2fa, 0xf6f9e3fa, 0x8caef59d, 0x8e38f9eb, 0x12a805e3, 0xd2f45434, 0xd4bac997, 0x1ae0ea53, 0x6f1d5739, 0x8f3a9672, 0xcf3977ec, 0x6d314b9b, 0x29cfc982, 0x3b65a5bc, 0x1d1287b3, - 0xc2029f80, 0x0001d1, 00000000 + 0xc2029f80, 0x0001d1 } } }, @@ -72358,19 +72356,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4e261e01, 0x79a1ef56, 0x434e0f69, 0x7b682709, 0x6538930, 0xba4c0d70, 0xed649887, 0x758c10b7, 0x1ef222e0, 0x204acaa, 0x57f1c384, 0x5e578b4c, 0xe7c1d45c, 0x8333638a, 0x3c359b0a, - 0x74be5e7e, 0x0001e6, 00000000 + 0x74be5e7e, 0x0001e6 }, { 0x951564, 0xa8cd9b99, 0x340442a6, 0x2f0f2feb, 0x9d095e0d, 0x39409845, 0xd5eb55bb, 0x467182dc, 0xd877fda7, 0x3bbb0853, 0xe182afdb, 0x2f668ce9, 0x5f1115e2, 0xa3293e38, 0xf0e4b753, - 0x6c53b148, 0x000129, 00000000 + 0x6c53b148, 0x000129 }, { 0x70c4e04, 0xc1b80308, 0x2beef317, 0xa421ff33, 0x611d52f0, 0x6c2ce016, 0x52723a8, 0xd1b27be1, 0xac871c00, 0x769a9719, 0xf5c4a911, 0xdaa17f49, 0x7a208a49, 0x273dfd2f, 0x7bbdb020, - 0x9ed5745f, 0x00007d, 00000000 + 0x9ed5745f, 0x00007d } }, { @@ -72378,19 +72376,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd5e6ad29, 0xe6ed3d24, 0x420ca2c7, 0xb8c2584e, 0x2f772b23, 0xffc9266a, 0x3c167e63, 0x9808ad31, 0x4e6ff3fa, 0xec76f287, 0x311294e6, 0xdbb53bfa, 0x99dda2e5, 0xa7f59227, 0x10a53218, - 0xb63ca73b, 0x0001c2, 00000000 + 0xb63ca73b, 0x0001c2 }, { 0x79a4e9b2, 0x9c745e77, 0x7b54bc4b, 0x132f5afc, 0x50424256, 0xc0680d1a, 0xf5d2e7ef, 0xc571dd15, 0x7eddf99c, 0xbcd4ffd6, 0x5bf0da4c, 0x80e8261e, 0x6519e30b, 0xd781f70a, 0xc148b808, - 0x147b9121, 0x0000da, 00000000 + 0x147b9121, 0x0000da }, { 0x72cc2ddc, 0x120d6c3f, 0x1fc9ed59, 0x2e6f6833, 0x3e23d688, 0xfaa02246, 0x2c40b4ad, 0x4eac70e, 0x27b1e082, 0x5fef069d, 0x700fc949, 0x494953a2, 0x381b6aa8, 0x257e4ce9, 0xba5a6f33, - 0x2a842382, 0x0001a0, 00000000 + 0x2a842382, 0x0001a0 } }, { @@ -72398,19 +72396,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xee935d7f, 0x83becbc3, 0x7c95992d, 0xb5ce9a7c, 0x7b70b872, 0x19ccbcc8, 0x28af7e26, 0xc14c1740, 0xca28f289, 0x7218344f, 0x51c57750, 0x6874d83f, 0x2ffcee55, 0x99dc4b37, 0x356b03ea, - 0x1025ef7d, 0x000093, 00000000 + 0x1025ef7d, 0x000093 }, { 0x63128bd1, 0xb196d17c, 0x7719278e, 0x2a3c5385, 0x937269e3, 0x263a7470, 0xd8efb820, 0x49da565a, 0x21773d6a, 0x7ea0c65d, 0x35e00949, 0xb176ab93, 0xe6651084, 0xb775fad, 0x7da8b6a6, - 0xc515d696, 0x000073, 00000000 + 0xc515d696, 0x000073 }, { 0x5869a922, 0x73621a5f, 0xdc17344f, 0x845e50df, 0x30ea04dd, 0x260baa27, 0x2fc0a9c5, 0x75ec5922, 0x15b94ce9, 0x6a71fcdb, 0xafdac9b3, 0xc55cdbaf, 0xe55ad459, 0x9a71b027, 0x39e8654a, - 0x47a71b5a, 0x00019f, 00000000 + 0x47a71b5a, 0x00019f } }, { @@ -72418,19 +72416,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19c51707, 0x847dce6e, 0x8eb74b69, 0x329d43c8, 0xdf6760ce, 0x6a590263, 0x35cabdcd, 0xfa6221eb, 0xbfa7b64d, 0x28ab7109, 0x381bd932, 0x5e8a73e1, 0xa7b6df56, 0x1065bd4a, 0x65cfb96c, - 0xcebe16d1, 0x0001f4, 00000000 + 0xcebe16d1, 0x0001f4 }, { 0x9f738bec, 0x59684ed1, 0x36cec530, 0x9dd2fd2c, 0xf5c9acaf, 0xb7b82a4f, 0x8544047b, 0x5bbd8cb0, 0xb4d26fae, 0xa079bbd5, 0xeebbad17, 0x369f3cc3, 0xc48f1513, 0x5ccccaa9, 0xe9183a14, - 0x1d7d41, 0x000087, 00000000 + 0x1d7d41, 0x000087 }, { 0x51ad73, 0x212fae44, 0x25daf3c7, 0x75cd73b5, 0x831b26f1, 0x87b119d1, 0xe419ff57, 0x242dc494, 0x5098a2b7, 0xcf567c1f, 0x73efadbc, 0xaf1a5bfa, 0xa7cb1c7d, 0x9c4e3a44, 0x40c2799b, - 0xbe8b71d4, 0x0000f5, 00000000 + 0xbe8b71d4, 0x0000f5 } }, { @@ -72438,19 +72436,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x982c8870, 0x33276e5e, 0x4d1588df, 0x88723437, 0xbfe3c2b9, 0xad2bdf07, 0x196b0722, 0xe100a2da, 0x8c8847f6, 0x1486e2d4, 0x175fba6, 0xf3f2009a, 0xf527193b, 0x6d4b8fe0, 0xb496bcaf, - 0xed27fe35, 0x0001b1, 00000000 + 0xed27fe35, 0x0001b1 }, { 0xae0bf160, 0x9355cb77, 0x44441f4, 0x6c3eb61a, 0x12688393, 0xbf2b3271, 0x4274f180, 0xb1587e5f, 0x286321a6, 0x42eeca6a, 0xb77e8d8a, 0xc666d25c, 0x11b16df4, 0x4ff3d815, 0x1645adda, - 0x780189be, 0x000170, 00000000 + 0x780189be, 0x000170 }, { 0x6a67f884, 0x1177427b, 0x864b54f9, 0x1ac586c0, 0xa26bd3f0, 0x2989fc31, 0xd5755588, 0x9d4b7ed7, 0x21a9bbe3, 0x47382918, 0x2a160c7f, 0xb2a771f8, 0x854d04eb, 0x3b731fb6, 0x746aa22e, - 0xddca949b, 0x000102, 00000000 + 0xddca949b, 0x000102 } }, { @@ -72458,19 +72456,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x96d4b414, 0x8eca3e39, 0x62cc104b, 0x7e58c284, 0x1908d666, 0x38a55957, 0x8213ba97, 0x753d6d7c, 0xdaf498e5, 0xf7acf91b, 0x78fb6181, 0x62d441d6, 0x5b47de82, 0xe8e240ab, 0xa4909b92, - 0xc1357a13, 0x0001d4, 00000000 + 0xc1357a13, 0x0001d4 }, { 0xeb1103fc, 0x4de8f1c0, 0x77b27743, 0x4dacc9a5, 0x443dbecd, 0x83383ea5, 0x7b55d654, 0xa4d74eee, 0x77b59f56, 0x1dafef16, 0xf9f6964f, 0x1342488f, 0xa7a8a6b4, 0x2716daa, 0x2e63c8cb, - 0xbcf761ac, 0x00000b, 00000000 + 0xbcf761ac, 0x00000b }, { 0xbef5f7be, 0x9dd8f86c, 0x5ee9a57c, 0x9a410b69, 0x4caf9fd3, 0x1ce80c81, 0x8c2a26d9, 0xe1c37842, 0xb2f6bb5d, 0x525050c3, 0x60d46bee, 0x8e8ca304, 0xb70393cf, 0x81eb516a, 0xe5d5b431, - 0x29941841, 0x00005c, 00000000 + 0x29941841, 0x00005c } }, { @@ -72478,19 +72476,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7eaf7a7b, 0x1ad3d3d1, 0x64a2a696, 0xf9affe36, 0x432db763, 0x50260e0, 0x3d1bb796, 0x60d933f4, 0x4b1e9762, 0x8e9bf31e, 0x7abb8508, 0xd54fe1f5, 0xef33ecea, 0xeb29eb97, 0x99e484f7, - 0xb63bef85, 0x000013, 00000000 + 0xb63bef85, 0x000013 }, { 0x9e906b30, 0x1704749d, 0xfd83899b, 0x4490590b, 0xb553c149, 0xac666526, 0x42e281b9, 0x57540a49, 0x6fc1985d, 0x628d266b, 0xda70a2f5, 0x1b5b7ad6, 0xa7382faf, 0xcdbdd266, 0x3112ce95, - 0xce11254b, 0x000118, 00000000 + 0xce11254b, 0x000118 }, { 0xb70a7d2e, 0x865f69e1, 0xc335e3b0, 0xa57af20e, 0xafd0c2d9, 0x65b8bc59, 0xc19947c2, 0x1eb93380, 0xaf997e38, 0x130116d, 0x40e865ed, 0x61b59d9b, 0xcf38d100, 0x1b68e0da, 0xc83c00f, - 0x45ea235, 0x000176, 00000000 + 0x45ea235, 0x000176 } }, { @@ -72498,19 +72496,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9b15355b, 0x817e1174, 0x732bce6f, 0xf558e04e, 0x329b38b6, 0x8a3ffeb3, 0xd3de6ce4, 0xda22ea40, 0x7bb3406e, 0x9d8c9562, 0xb5590a4f, 0x668809b5, 0x37351f6e, 0x9415e61, 0xff75b657, - 0x64dcd6cb, 0x0000b4, 00000000 + 0x64dcd6cb, 0x0000b4 }, { 0x52ebb491, 0x6a49f88d, 0x2e655130, 0xee21c131, 0x6ae9c6cc, 0x552aa4f0, 0x92a16177, 0x134a3fcf, 0xc33b06f, 0x60640238, 0xea55b761, 0xf5861b8a, 0x88aa92d, 0x45f346b8, 0xd1ca3d9e, - 0xa2a7c2d1, 0x0000e1, 00000000 + 0xa2a7c2d1, 0x0000e1 }, { 0x819fff4d, 0x1b82da19, 0x91d149bf, 0x2c20e450, 0xf490ce60, 0xdd83d922, 0x4d45128d, 0xa45a2833, 0xdc0f673d, 0xe5b95463, 0x4608b297, 0x722bd19a, 0x8c94d764, 0x3a85468f, 0xa5bcfbe9, - 0xb551ceb2, 0x0000af, 00000000 + 0xb551ceb2, 0x0000af } }, { @@ -72518,19 +72516,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf75f029b, 0x1b139710, 0x4529af03, 0xd7d59497, 0x8ab6cbad, 0x5efc06e8, 0x2555050b, 0xae02336, 0x3a4b8f02, 0x3b6e8577, 0x377e8934, 0x41e12307, 0x50916b5a, 0xcfa43567, 0x145b5d25, - 0x61c3b7ef, 0x00008d, 00000000 + 0x61c3b7ef, 0x00008d }, { 0x2faff877, 0x519b12a9, 0x586939ca, 0xa17fa71, 0xa4451ef0, 0x20cac7a8, 0xd95ac032, 0x102fc212, 0x5b48d485, 0xa9f7b1ab, 0xf517c82, 0xb8cde707, 0x7179cc9d, 0xc9a1eaa2, 0x2e0bf78b, - 0xe2131d48, 0x00000e, 00000000 + 0xe2131d48, 0x00000e }, { 0xfe66e569, 0x203816d6, 0x9f5457e6, 0x2c96159a, 0x1bafdc6c, 0xc462134d, 0xfb9e0391, 0xee5e7b62, 0xddc5c62e, 0xe01c101b, 0x9a8cdaef, 0x23515074, 0x274c47a6, 0x15b8401f, 0xdb2af243, - 0x1bad8b5f, 0x00007f, 00000000 + 0x1bad8b5f, 0x00007f } }, { @@ -72538,19 +72536,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7de5fb06, 0x96f90477, 0xd42c168c, 0xe50375b0, 0xe2752a29, 0xc8eae81a, 0x122bec6a, 0xf48e2e04, 0xab5644b8, 0x17579b89, 0xea2182af, 0x1d5be6b7, 0xe4697b39, 0xd7709b66, 0x41f478b8, - 0xdc0fb2d3, 0x00008f, 00000000 + 0xdc0fb2d3, 0x00008f }, { 0x10226546, 0xb0453a04, 0xf063a4d4, 0x6fe5f646, 0x12bb1860, 0xf4159cdc, 0xbbd5d1f7, 0x88d0cac5, 0x35af688d, 0x73e834ed, 0x85ee1a3c, 0xa0285ac2, 0xd12d34f6, 0x603e23eb, 0x153b9604, - 0x8e6131bc, 0x000166, 00000000 + 0x8e6131bc, 0x000166 }, { 0x7647457b, 0x9216aed1, 0x5a424030, 0xa2afa458, 0x78df267a, 0xd875af62, 0xb7b7ad67, 0x980ec15f, 0xed83058d, 0x86a87633, 0xe15a3486, 0xed06e104, 0x43a6cca9, 0x79be7ca0, 0x3a72629d, - 0x4f886eed, 0x00019a, 00000000 + 0x4f886eed, 0x00019a } }, { @@ -72558,19 +72556,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb4859adf, 0x54d1d68e, 0x96ce5d07, 0x2eb4beec, 0xe5895391, 0x548a766e, 0x8fe14602, 0xe46ff8d7, 0xe5d9554, 0x810c9252, 0x64052076, 0xebede0c, 0x58aa36cf, 0x8a54b7f1, 0x54142297, - 0x4102f8f3, 0x00008a, 00000000 + 0x4102f8f3, 0x00008a }, { 0xe58fcc41, 0x88e06486, 0x1ce6359d, 0x3daa44df, 0xffffe088, 0x2943bb6d, 0x5d745af, 0x518a0a63, 0x688660e, 0x2ca7325b, 0xbb8d2620, 0x372943fd, 0xd86fc372, 0x945edc2c, 0xe3ccc7a2, - 0xd7bb2fad, 0x0000cd, 00000000 + 0xd7bb2fad, 0x0000cd }, { 0x8a1d4402, 0xd0efe0c, 0x8120f0d2, 0x1e379370, 0xd0e599e2, 0xfbd8dd4e, 0xdbbe4287, 0xa0c49179, 0x13733796, 0xb7391175, 0x2a522960, 0x2da51a4e, 0x54ed5961, 0xa524f632, 0xc97cf5b2, - 0x337da9eb, 0x00013b, 00000000 + 0x337da9eb, 0x00013b } }, { @@ -72578,19 +72576,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x21870385, 0xf1fdfe44, 0x8ee46d24, 0xaad5cb9, 0x49b3a6ed, 0x992c4374, 0x7a0bd339, 0xd41417e7, 0x832748a4, 0xf9137c9b, 0xb8324da6, 0x41cadc2c, 0xf4e03581, 0x13c0ed5f, 0x9c777e53, - 0x3a0a22a4, 0x0000d4, 00000000 + 0x3a0a22a4, 0x0000d4 }, { 0x93bbc6e6, 0x4cb6e3c5, 0xca0346f2, 0xc514d81e, 0x6b809792, 0xf84da2a9, 0x62c7b5ce, 0x10f4baf2, 0xc840a4d5, 0x7047b597, 0xb2af97b3, 0x107558da, 0x8ed7323d, 0x6f50bed5, 0x8d4f40a3, - 0xc779f908, 0x00017f, 00000000 + 0xc779f908, 0x00017f }, { 0x2ad40ebd, 0x93b9c58d, 0xb690d16e, 0xb7b1fcf8, 0x85588b7c, 0x9d186d7, 0x63839557, 0x7185cdab, 0xd039fa93, 0x71d5758b, 0x62a7df9c, 0x1acf6aff, 0x1bb11d1d, 0xc96d1ef2, 0xf4eb53b5, - 0x96e8e3e3, 0x000114, 00000000 + 0x96e8e3e3, 0x000114 } }, { @@ -72598,19 +72596,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x92ad2c06, 0x6d84fb33, 0x4f8a5a90, 0x53988f2f, 0x77b1103, 0xbc57c0ec, 0x2f5b758a, 0xd5b83e48, 0x6da6973e, 0x48af0e81, 0x520f3790, 0xc8ba4243, 0x76c3c4ed, 0xe56737a9, 0x5c338dfc, - 0x8f996d87, 0x000086, 00000000 + 0x8f996d87, 0x000086 }, { 0xe153a463, 0xa5d86de5, 0xd7a76a06, 0x6f18ab71, 0xfd1a8e72, 0xa3e32ab9, 0xaa7181be, 0x4059a2ff, 0x484810ca, 0xc64aa8a1, 0x7079b0df, 0x8563dcc7, 0xfdf06915, 0x83d061e6, 0x5558de6f, - 0xc003ca0e, 0x000117, 00000000 + 0xc003ca0e, 0x000117 }, { 0xbe4637a4, 0xfc749850, 0x79c6716f, 0x1ab0dc51, 0x68248239, 0xdef6cfbd, 0xb69428bd, 0xd35e3c81, 0x8593f44c, 0xa43843f, 0xb1164e43, 0x22ada498, 0xbb37cc2e, 0xece44578, 0x8843218c, - 0xfb068486, 0x000139, 00000000 + 0xfb068486, 0x000139 } }, { @@ -72618,19 +72616,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6c246957, 0x9523126d, 0x789085b5, 0xd2fe8845, 0x1ba3d512, 0xd885cd8c, 0x8c0f6009, 0xe2a2541b, 0xd8bfe425, 0x8dfd51ea, 0xea0f683a, 0xc6e9f03d, 0xe8f5f481, 0x5527ba60, 0x18db3ff6, - 0xe855faee, 0x0000a3, 00000000 + 0xe855faee, 0x0000a3 }, { 0xb7e5e94d, 0x1ec8e1ec, 0xda978cfc, 0x350a3db0, 0x9a6c6ce2, 0x1eaa86a5, 0xc3eccf55, 0x38da869c, 0x1a51eaae, 0x7ec6cf96, 0x3ce2bd35, 0xf116132a, 0x48b9d83f, 0xa7054a0e, 0x30ad5c1c, - 0xcf0de9fd, 0x000147, 00000000 + 0xcf0de9fd, 0x000147 }, { 0x58452005, 0xf7ffa136, 0x75613d6, 0x95dbaca8, 0x41c4085b, 0x20b38c73, 0x4a9c0e1, 0x78ad85, 0x5586efbb, 0xc794b5d7, 0xe15c1119, 0x7ba8da20, 0x1770c196, 0x38bc2bd8, 0x16d536da, - 0x6fbc9136, 0x000036, 00000000 + 0x6fbc9136, 0x000036 } }, { @@ -72638,19 +72636,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4d958a1b, 0xed6d5eda, 0x7c319b58, 0xf794e0fc, 0x970101ec, 0x69646b58, 0xb55ec35a, 0xa9dcea04, 0xb89bc26e, 0x9f8c010, 0x5f25c154, 0x7b415add, 0xc0f346c8, 0xca2f17fd, 0xef4e9952, - 0x1d22d2dc, 0x000062, 00000000 + 0x1d22d2dc, 0x000062 }, { 0xef986a27, 0xb9b7889d, 0x2d626156, 0xc0f2a1ed, 0x7489599c, 0x88863f0c, 0x66265493, 0xca3a253, 0x5dabc300, 0x1beb5abd, 0x450a0c2c, 0x5d2d057d, 0xe4f241, 0xaee4fd00, 0x1d4be02, - 0xea67e79c, 0x0000ab, 00000000 + 0xea67e79c, 0x0000ab }, { 0xbf016b48, 0x8743cf1f, 0x54205a22, 0x2f768910, 0x4a5aa1d, 0x805da1e2, 0x2f23455b, 0x7551c79f, 0x99caaea5, 0x581328a7, 0x89842ac6, 0x57eca807, 0xc1df440d, 0xc72b3684, 0xd81bbf0e, - 0x7051b88, 0x000119, 00000000 + 0x7051b88, 0x000119 } } }, @@ -72660,19 +72658,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf3d27f36, 0xd469d21f, 0x7ed5bb54, 0xdde161f0, 0x251a5265, 0x4bcac85e, 0xbd3f6fec, 0x8daabe97, 0x73d09644, 0xb4b42f48, 0x560c81e3, 0xb34a2d1c, 0x910a0724, 0x2751488b, 0xfbbaaa99, - 0x99b99c97, 0x00008b, 00000000 + 0x99b99c97, 0x00008b }, { 0x4fe9bd36, 0xd4873415, 0x3e443270, 0xfecc379e, 0x6acfbfcf, 0x11a72ca9, 0xd228704f, 0x98c5bdc8, 0x73bc076a, 0xa9fbcfe, 0xdbf96b10, 0x6fef5777, 0x1e64805a, 0xdcb5c804, 0x740d24f9, - 0xf9691e6f, 0x000007, 00000000 + 0xf9691e6f, 0x000007 }, { 0xb2f1c552, 0x1fb83057, 0xc3819b77, 0x832785fb, 0xc1a951d4, 0x7f2e26eb, 0x78212b24, 0x923fec58, 0x9661d62, 0x154c7899, 0x62d95b35, 0x1b386b9a, 0x58eb842e, 0xd16c3a15, 0x28c817c7, - 0x2a2e6a3, 0x000170, 00000000 + 0x2a2e6a3, 0x000170 } }, { @@ -72680,19 +72678,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xee37114f, 0x22aabeb7, 0x7a833b1a, 0x5e0780f9, 0xe812c524, 0xa66b4cea, 0xa2247af5, 0xe7438c91, 0x3ae4c0dc, 0x4100b0ca, 0xf3c73ce4, 0x7a34118d, 0xf4ec8f96, 0x5a2dfb5f, 0x34b599df, - 0x7ca482b9, 0x000194, 00000000 + 0x7ca482b9, 0x000194 }, { 0xe103f784, 0xa84f96d2, 0xe03cfa49, 0x32d1ff5e, 0x2c14cda2, 0x1d7960b8, 0x1f06a76a, 0x24e4774d, 0xe116ae0c, 0x4c002b82, 0x8fdda676, 0x56b49a8c, 0xc41e021, 0x955c3ffe, 0x5a96138, - 0xca98679d, 0x0001d8, 00000000 + 0xca98679d, 0x0001d8 }, { 0x97a43b9b, 0x434bea36, 0x8739bc4c, 0x34e85d5, 0x84fe7316, 0x9bcb2b24, 0xc46ecde6, 0xfe7aaac6, 0x546d6f0c, 0x2ef2a85b, 0xc043c079, 0x74471c61, 0x85d57ba, 0xc358c1bd, 0x7535356, - 0xca780c13, 0x000046, 00000000 + 0xca780c13, 0x000046 } }, { @@ -72700,19 +72698,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7419fc70, 0x7860f388, 0x75706e62, 0xfc904fce, 0xa155f8cf, 0x1a10bb2f, 0x5f6daf07, 0x8958d681, 0xc39af11, 0x972c4970, 0x363beba5, 0xbfa4c80f, 0xe0e46124, 0x6c47feec, 0xfe7b13e7, - 0xd8cd8e19, 0x0001bd, 00000000 + 0xd8cd8e19, 0x0001bd }, { 0x27efaa64, 0x99444953, 0x5b9ae032, 0x89564867, 0x7bcc2902, 0x6e2e300, 0xec65d6aa, 0xaff59da6, 0x66519557, 0x4efd1411, 0x625d7e8c, 0x3d0fe9f5, 0x3da7ac59, 0x66b983b0, 0xcbc3325f, - 0x8f6c8ce3, 0x000084, 00000000 + 0x8f6c8ce3, 0x000084 }, { 0x9175a6a4, 0x756de826, 0xa9272333, 0xebd0ce9f, 0xe47dedc7, 0x86b0064d, 0xd437479e, 0x3f8861b0, 0x64291959, 0xb4977e2a, 0xdcad8cef, 0x9e4a2d3b, 0xccf0a859, 0x6c9f68b3, 0x4ba94f27, - 0xcc526433, 0x0001f9, 00000000 + 0xcc526433, 0x0001f9 } }, { @@ -72720,19 +72718,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xaec21a19, 0x91e57bfe, 0xd9c3c52e, 0x4d5af33f, 0xc659a6ba, 0x40e3bd18, 0x851af53e, 0xcd2c9362, 0x7494f78, 0xd327c47e, 0x316e664f, 0xe836caf3, 0x1f128881, 0x1186472d, 0x670a21d3, - 0x98496484, 0x000178, 00000000 + 0x98496484, 0x000178 }, { 0x3e7d3dc2, 0x7182a1b0, 0x1cdb245f, 0x4a8407ae, 0x9576bea5, 0x8c911544, 0x6a7e557f, 0x9025c51, 0xad4d5b9d, 0x889c0c57, 0x8b160401, 0x4499fda7, 0xba61cf1d, 0xc8ea97bf, 0x8c9be796, - 0xdc1def0, 0x0001d7, 00000000 + 0xdc1def0, 0x0001d7 }, { 0x44339685, 0xf66b42ef, 0xfe09f489, 0x13cec1f7, 0xf3f19298, 0x53e307be, 0x4b81678e, 0xc6ed9793, 0xc955ed14, 0xa944f1b2, 0xef47d43c, 0xfe0b28ea, 0x64b1339c, 0x4338bff2, 0xca4a85ff, - 0x58ac7fca, 0x000127, 00000000 + 0x58ac7fca, 0x000127 } }, { @@ -72740,19 +72738,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x44b8b20, 0xa1d4a110, 0x7ded168e, 0x786541bf, 0xea1db0b1, 0x35635e08, 0x92eca333, 0xc0a38122, 0x1ab39e7a, 0x937cc000, 0x7c0c01ab, 0x8706c93f, 0x59ab5afc, 0x5a1c17c0, 0x6d217640, - 0xd3dd8367, 0x0000f1, 00000000 + 0xd3dd8367, 0x0000f1 }, { 0x5c7d9d7f, 0x6d3b0e88, 0xf537a2fc, 0xf303e71a, 0x695e8464, 0x86da19dd, 0x9396853d, 0x60403aab, 0x7332a923, 0x15ac3743, 0x934eb5ef, 0x2c4f2d0b, 0xb319992b, 0xedfa39f4, 0x493e7167, - 0x482413ce, 0x000171, 00000000 + 0x482413ce, 0x000171 }, { 0x72c1a9cd, 0x1d0f9a43, 0x9842ece8, 0xaf2e7490, 0x36e47449, 0xd8a0f9eb, 0x6d398396, 0x8c7700cb, 0xce9ff2d0, 0xb9d3278c, 0xc2fc4ad7, 0x2400f5db, 0xda444c27, 0x828472d6, 0xe31458d2, - 0x908550c9, 0x0000d5, 00000000 + 0x908550c9, 0x0000d5 } }, { @@ -72760,19 +72758,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9dea5097, 0xfae239c1, 0x3dbff20b, 0x139fafb8, 0xe3236442, 0x55c7a230, 0x783ade71, 0x72638ae5, 0xa948756e, 0xec3a4507, 0xfb636a16, 0xffd75a4c, 0x4e886766, 0x63e88773, 0xdf82e81c, - 0x4da3697f, 0x00004f, 00000000 + 0x4da3697f, 0x00004f }, { 0x2522c49f, 0xb261c1fd, 0xb59390cb, 0x96fe33ba, 0x101496bf, 0x57c8c029, 0x11525e11, 0x4f4856a5, 0x65bfe814, 0x4b1a1ad2, 0xb8282424, 0xfd4acf0e, 0x68d97ab9, 0xa38b32d1, 0x259947bf, - 0xaeb8a3d, 0x0001ce, 00000000 + 0xaeb8a3d, 0x0001ce }, { 0xb683f7a2, 0xda89e88e, 0x9070d2c, 0xa7bd1c09, 0xd4efebf, 0x9a92ccbb, 0xe2c404e9, 0x11f3e32, 0xbec3f25d, 0xc1930dd8, 0x59622248, 0x6e5760ac, 0x52c5ae65, 0xe9cf7f56, 0x96d48b59, - 0x305cd48b, 0x0000a5, 00000000 + 0x305cd48b, 0x0000a5 } }, { @@ -72780,19 +72778,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x86dcd2b8, 0xd1ff5716, 0xd615e850, 0x55ae8514, 0x7d39fa14, 0x4929abc9, 0x80e2832, 0xa118f48, 0xc07227fd, 0xa73f8cc9, 0xa55eb7ed, 0xeb4866a0, 0x6a5cdaf5, 0x1f32904c, 0x75a936ca, - 0x93912dbd, 0x00000d, 00000000 + 0x93912dbd, 0x00000d }, { 0x1e98d777, 0x1c5ca586, 0x5fae2472, 0xdcd61d88, 0x34d515f9, 0x2e0593e0, 0x9797a875, 0x3b04641e, 0x645a373c, 0xf4ed12ea, 0xe8d05623, 0x58313821, 0x3c1999ba, 0xba40620f, 0xa5cf69fc, - 0x133c16ed, 0x00018c, 00000000 + 0x133c16ed, 0x00018c }, { 0x8f3bfcaa, 0xe39c4693, 0xc98c5ccd, 0x96228885, 0xcaf9c567, 0xfb3b65fa, 0xea2a8188, 0x7a1c123c, 0x3b4e01f, 0x930e718c, 0x34f1d278, 0x28ab75bc, 0x34bfb25f, 0x4ee903df, 0x71b6ae40, - 0x8e8bf8af, 0x000148, 00000000 + 0x8e8bf8af, 0x000148 } }, { @@ -72800,19 +72798,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x83eda436, 0xfd1c4f3b, 0x35d77adc, 0x912498ef, 0xa38e42e7, 0x7c572c46, 0x26d862c7, 0xcf2b56a3, 0x8491d8bc, 0xf7c4c55, 0x407f6ca2, 0x57e689d7, 0x575647b3, 0x4fbd2b18, 0x8d8de9d, - 0xbc4f37cf, 0x00009b, 00000000 + 0xbc4f37cf, 0x00009b }, { 0x425e6e53, 0xfeefbec2, 0xb5563cf, 0x7d403343, 0x37e54b87, 0xe98a3616, 0xfe30d98, 0x1056827d, 0xd46ff2e6, 0xdedd9a5e, 0x33cae1f4, 0x5eae8c63, 0xce8f471c, 0xbc0db1f6, 0xd8c74fa5, - 0x2eb21080, 0x000155, 00000000 + 0x2eb21080, 0x000155 }, { 0xf2ff51a4, 0x34bdbcd9, 0xb9f47868, 0xdec9eb02, 0x18fe23e, 0xdcbf4be7, 0x9974cb35, 0xb3ed83a8, 0x984ccb6d, 0xcec4f024, 0x8c1ef9b4, 0xa5155c37, 0xf2c9ceb9, 0x21a4fc9b, 0xcea6ceec, - 0xbcdc1e01, 0x00008d, 00000000 + 0xbcdc1e01, 0x00008d } }, { @@ -72820,19 +72818,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x98b8b34d, 0xea8367d5, 0xec264ab6, 0x9831111d, 0xb29e5e88, 0x277d0ce4, 0xd28864bb, 0xba38f1d0, 0xb3d91a37, 0x35782cf6, 0x97ba22a0, 0xf28742c8, 0x8e177c76, 0x721aad20, 0xe3ade89e, - 0xa3322011, 0x0000ed, 00000000 + 0xa3322011, 0x0000ed }, { 0x40f94a5f, 0x61911258, 0x6a4252d2, 0x32762c94, 0x6d1f10d9, 0xb3cb5953, 0x511f2fda, 0x1c1c2cc8, 0x5a4d41d7, 0x3f7185db, 0x214917f, 0x7411bf96, 0xfc1fb20f, 0x83648905, 0x5433639a, - 0x8d7ad021, 0x000025, 00000000 + 0x8d7ad021, 0x000025 }, { 0x2ac88230, 0xc861b931, 0x9b3a092b, 0xe4859df2, 0x491091c1, 0x716bb486, 0xf5167c7b, 0xddc70569, 0x776d9860, 0x43225f54, 0x1b912a20, 0xfb2d5362, 0x25a482c8, 0xe6c5110c, 0x2b97425d, - 0x3175a639, 0x00009f, 00000000 + 0x3175a639, 0x00009f } }, { @@ -72840,19 +72838,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6cc120df, 0x6f020325, 0x79043a3a, 0x9ec67916, 0x43f592ea, 0x57eff9b0, 0xdd01cf2a, 0x3e91217f, 0xafd05a16, 0x41af1937, 0xe0817bb9, 0xad9487cc, 0x6de9a21e, 0xb7604c8, 0x6cf0b477, - 0xd1f70b1e, 0x0001fa, 00000000 + 0xd1f70b1e, 0x0001fa }, { 0x2850680b, 0x2cfd7705, 0x34060590, 0x8bf6bcec, 0x356b0020, 0xef5d1721, 0xc4018215, 0x58b67d97, 0x2295e7c3, 0x445e4a04, 0xcdd3271, 0xd9f15327, 0xee790333, 0x80d3573c, 0x3ce0042f, - 0x802b30a2, 0x000083, 00000000 + 0x802b30a2, 0x000083 }, { 0x82417708, 0x8d10256d, 0xf313bc95, 0x3515e64a, 0x723f45c2, 0xa20c8c8b, 0xe385d9c9, 0x8fbe4471, 0x19b78741, 0xb1941462, 0xe53455b, 0x8548ac6e, 0x11e86a1c, 0x456e0a9a, 0xbe23e3b7, - 0xe97436ac, 0x000020, 00000000 + 0xe97436ac, 0x000020 } }, { @@ -72860,19 +72858,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9f5bfab7, 0x6d8e365a, 0xb0de6013, 0x879ca6eb, 0xf622e917, 0x557153ea, 0x1d5edb57, 0x4135db4e, 0x8fb3e7bb, 0xf63b6657, 0x70e3effc, 0xdf448736, 0xc2f4eb2e, 0x220ca26d, 0x941d75eb, - 0x5ae869d0, 0x00006f, 00000000 + 0x5ae869d0, 0x00006f }, { 0x889963f5, 0xf2501506, 0xd0432f99, 0x62929f20, 0xf4112540, 0x41966349, 0xe38d50a0, 0xa84778f1, 0x617a9215, 0xa763e78b, 0x396914cb, 0xff284bc8, 0xf1af2eb3, 0x969a8403, 0x1d1c41e3, - 0x9a83fbc, 0x00016c, 00000000 + 0x9a83fbc, 0x00016c }, { 0xf5d86ee1, 0xed9ea899, 0xb180671, 0xf5a3897, 0x450453b8, 0x3e562701, 0xbce13c1a, 0x75a183d1, 0x214b2686, 0x4a8f64c1, 0xacd9b806, 0x81900c2d, 0xacd54c6b, 0x63678393, 0x4d313787, - 0x4b35da8a, 0x0000b3, 00000000 + 0x4b35da8a, 0x0000b3 } }, { @@ -72880,19 +72878,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6a01b240, 0x4f10e12b, 0x653bab36, 0x46d73b85, 0x1269ea4a, 0xe6342b93, 0xc916242f, 0x9cfc6c88, 0x5c5785fd, 0x4a20af18, 0x16fa5ea0, 0x1987a7a1, 0x6c78cbb, 0x37130acb, 0xb15c3234, - 0x2165da75, 0x0001bf, 00000000 + 0x2165da75, 0x0001bf }, { 0x3c70c086, 0x4d9eceda, 0x1240639e, 0x1d9af703, 0xde799306, 0x44466b42, 0x5030e948, 0x7e957b63, 0x39616b82, 0xe8cc29a4, 0xb1e204e5, 0x42e73794, 0x86485712, 0x558302e1, 0xeba8957c, - 0xc9cab0eb, 00000000, 00000000 + 0xc9cab0eb, 00000000 }, { 0xbb8e3c2c, 0x11ba3beb, 0xd3f57cd2, 0x9997544, 0x6f555d27, 0x487ecd56, 0x68c94bcb, 0x5cd6ae0a, 0xd0e7940b, 0xec45f3a8, 0xb45250b4, 0x754908cf, 0x21c2ecf5, 0x3e391ae8, 0xbc795bce, - 0x6f5275e2, 0x00012e, 00000000 + 0x6f5275e2, 0x00012e } }, { @@ -72900,19 +72898,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x270dc75e, 0x47717648, 0x4942197f, 0xdf9d8ef4, 0x16173f45, 0x6395cf11, 0x3ba937f4, 0xab99494e, 0x767a7c38, 0x6b63b7af, 0xde7b8a95, 0xbad7c6dc, 0xc1b81c76, 0xa77e034a, 0xf1c17784, - 0x8dbffa62, 0x000159, 00000000 + 0x8dbffa62, 0x000159 }, { 0x5b413c44, 0x97f854de, 0xd90916dd, 0xc5f34f17, 0x768d260, 0x3ff54dba, 0x63910ef, 0x4944ad97, 0xf6e2cf20, 0x431b23c, 0x2eb62526, 0x8e23a1f4, 0xb2ee5803, 0xe2645a57, 0x6dbcdbe8, - 0xb12a3b38, 0x00018f, 00000000 + 0xb12a3b38, 0x00018f }, { 0x951098f0, 0x4ae91055, 0x728de4a9, 0x5ba3a66d, 0x8cb4f2a7, 0x3517824e, 0x7850ff61, 0xe526a96e, 0x57f6d32, 0x2de643e, 0x3c0cbcb1, 0xd8f9787f, 0x3ddcb87b, 0x3d4f042b, 0x8cf932c9, - 0x9a52f149, 0x00000c, 00000000 + 0x9a52f149, 0x00000c } }, { @@ -72920,19 +72918,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8cc588c0, 0xfeec01c0, 0x9b402abc, 0xe8dbad29, 0x88ea1142, 0xf8adf480, 0x44906ed4, 0x37a53ccf, 0x8ec45b7b, 0x4b1c79cf, 0x8c005ea6, 0xded050d, 0x256d9d16, 0xd720cf13, 0x87b48f43, - 0x34e91e5b, 0x00019d, 00000000 + 0x34e91e5b, 0x00019d }, { 0xde996abb, 0xe5e16922, 0x1b2bfca6, 0xb4b27ed9, 0xbf435879, 0x1531c760, 0x9a3fede1, 0x505ec59f, 0xb877739e, 0x1783e117, 0x74b42869, 0xd001bfc1, 0x44e92578, 0x635ab052, 0x23a2161, - 0xd7d595ee, 0x0001aa, 00000000 + 0xd7d595ee, 0x0001aa }, { 0xb6728ce2, 0x409ecedd, 0xbe039502, 0xc918248f, 0xb771fd4b, 0x2f7af729, 0x2c9f0ace, 0xf3570849, 0xf8c5bb87, 0x173fee4a, 0x34385fd, 0x1e72779d, 0x2150ad99, 0x698db9f5, 0x1a411b02, - 0x1681efd0, 0x000094, 00000000 + 0x1681efd0, 0x000094 } }, { @@ -72940,19 +72938,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb7d997a0, 0x66ddb50f, 0x4ccb133d, 0xe36da28, 0x407e4cfa, 0xc10f2c0d, 0xfef2661d, 0xbfa7f2c0, 0xf9edcfb5, 0x5f4e47af, 0x3243db62, 0xc7580eea, 0xa7ab698d, 0x49030667, 0x5dc97a95, - 0xca6ed8b6, 0x000069, 00000000 + 0xca6ed8b6, 0x000069 }, { 0x4fb4e109, 0xae0c38bf, 0xd9e741e2, 0x1a53f372, 0x33f78dda, 0x77cd5a53, 0xe31decdc, 0xf027f088, 0x54ea1aa6, 0x7591546a, 0x4fd33681, 0x94bc9b75, 0xcccbacd5, 0x6c2e3d96, 0x65f06963, - 0x92444a33, 0x000191, 00000000 + 0x92444a33, 0x000191 }, { 0x89ccfcc0, 0xd912ed18, 0xcf907f8c, 0x1a9107d6, 0x80c54f63, 0xe504d05c, 0x9c104445, 0x9f7db6e1, 0xd7592d7d, 0x93f04f5b, 0xc96a332d, 0x8c1fd7cf, 0xc7f3b89, 0x57f25593, 0xf0b647ac, - 0xa62a8df1, 0x00004f, 00000000 + 0xa62a8df1, 0x00004f } } }, @@ -72962,19 +72960,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6614728e, 0xfcf7d703, 0x6db5df3a, 0x670ae4a1, 0x54bb3442, 0xea6d696c, 0x6df998f7, 0xf9b89b78, 0xfebefdc2, 0x414e0b8d, 0xe52172a2, 0xe0dc2350, 0x2c1f7448, 0x76fbd4c4, 0x657881ec, - 0x18e9953b, 0x00013d, 00000000 + 0x18e9953b, 0x00013d }, { 0x560d5aca, 0x19ec3e95, 0xba419954, 0xf6f4d493, 0xcc6f9910, 0xccf2c08e, 0x3d638777, 0xdaabc146, 0xca2fed1c, 0x7d1042b, 0x60f118b2, 0x4ed2f86a, 0x564112f8, 0x21e66200, 0xf2b0a063, - 0xe1e8eb5b, 0x000147, 00000000 + 0xe1e8eb5b, 0x000147 }, { 0xa9d82a57, 0xc440b861, 0xb449b989, 0xed2b506d, 0x1749b651, 0x59378138, 0x8470e577, 0xf56e4a4d, 0x3fa214bb, 0x341cbfe6, 0xd9608e68, 0xf38e051e, 0x9325d1c7, 0x6bf2a19a, 0xc2ce424e, - 0x732bb965, 0x00003e, 00000000 + 0x732bb965, 0x00003e } }, { @@ -72982,19 +72980,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x85927c96, 0xf5d62fac, 0xeb41ddbc, 0x617cd659, 0xc1f9fddf, 0xf5cb3965, 0x97bceb61, 0xe5d6813b, 0x970d91a0, 0x9a5495f1, 0x6a7bdd72, 0x5f730972, 0x25761536, 0x573c4785, 0x79618bfc, - 0x3246d5af, 0x000006, 00000000 + 0x3246d5af, 0x000006 }, { 0x206e38a, 0x24e4f0b6, 0xf4c4bf0b, 0x9b65df6c, 0x2acb00b7, 0x5b2fc134, 0x8e55ea22, 0x26a3cf04, 0x8d63cc04, 0xcf635ec8, 0x265bd6b8, 0x28c7ffdc, 0x9e3c22dd, 0x48c9024d, 0x8261a0f7, - 0xe35398ec, 0x00000f, 00000000 + 0xe35398ec, 0x00000f }, { 0x99557136, 0x7a5c4572, 0x845474bf, 0xa520f663, 0xfa183e97, 0x7c6c2e21, 0x59ea79b9, 0xcb35ee49, 0x21be70db, 0x80aab486, 0x32f458e2, 0x5bc3d9ee, 0xca937876, 0xec1788a6, 0x5a085359, - 0x8699c8a5, 0x000174, 00000000 + 0x8699c8a5, 0x000174 } }, { @@ -73002,19 +73000,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf9ef6c3a, 0xfd9dfc75, 0x69c791a9, 0x9e37833d, 0x4ce96208, 0xa79a3d76, 0xdeb1a8, 0x49c7e9b0, 0x8b337633, 0xa338d54d, 0xf41b4d32, 0xf5e80ac1, 0x98484416, 0x56515f74, 0xc417db38, - 0x6d8d62cb, 0x000055, 00000000 + 0x6d8d62cb, 0x000055 }, { 0xf51991a8, 0x45370c0c, 0x40493720, 0x57a190f5, 0x7e7f9f96, 0x3482e64e, 0xdbe49c0e, 0x6a0fbfed, 0x8701b878, 0x3e024486, 0xcf50e6a0, 0x486b139e, 0xeb5836c3, 0x1ad1393d, 0x2d07a2dd, - 0x715dcc8b, 0x000078, 00000000 + 0x715dcc8b, 0x000078 }, { 0x68da6e03, 0xe3593d16, 0x3ce94928, 0x520ebbc5, 0xc5d957a1, 0xe1f489, 0x39184184, 0xd5ae01b3, 0x52c88fb8, 0x8e631fbb, 0xd3c35c4, 0xdd3e46c1, 0x6122e774, 0x4816de62, 0x1dd4828, - 0x6f7c6f53, 0x000140, 00000000 + 0x6f7c6f53, 0x000140 } }, { @@ -73022,19 +73020,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe49b055a, 0x4eeb8e70, 0x4a4003df, 0x78e19e43, 0x34360acf, 0x4022aa71, 0xc3a5c9f4, 0x2f10a37b, 0x81caaf3b, 0xdc874bde, 0xad5eaf95, 0xa60c4262, 0x9c157166, 0xa529b993, 0x29b99609, - 0x8414d4db, 0x000042, 00000000 + 0x8414d4db, 0x000042 }, { 0xb8679da0, 0x39cb5ab9, 0x18227061, 0x90ec40bc, 0x866e602d, 0xc3480f59, 0x32745bde, 0xa11866a4, 0xc1e508b9, 0x82bdc342, 0xf5892eee, 0x8f3a4b58, 0x64c7abeb, 0x8a580916, 0x44c2bf81, - 0xa041f132, 0x0000c4, 00000000 + 0xa041f132, 0x0000c4 }, { 0xf8b68ae3, 0x31467e71, 0x29181c62, 0xbeebb93c, 0x99cc3c6d, 0xa7bb867d, 0x53690f4d, 0x4d84be83, 0x98333652, 0xedb233d1, 0xd80c7c6d, 0x8326822c, 0xa518f62f, 0x8d0e0823, 0x22c7abaa, - 0x3d54da8b, 0x0000e5, 00000000 + 0x3d54da8b, 0x0000e5 } }, { @@ -73042,19 +73040,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7f433d6f, 0x5857cf20, 0x5f5ca992, 0xc77c9b2, 0x6aac5656, 0x49d37925, 0xe40ffad8, 0x62d4fbfa, 0x8c042a6d, 0xdd78dd98, 0x82a0fac8, 0x2a8908f8, 0x17cdae3a, 0x983542df, 0x2350c897, - 0x79cc55f4, 0x0000bd, 00000000 + 0x79cc55f4, 0x0000bd }, { 0xaa4da9f4, 0xfc29d55e, 0x6fb7e98c, 0xd4c6fa1, 0x3814bed7, 0xcc54c8be, 0x5786ebb7, 0x219385be, 0x3a3977b6, 0x3673887b, 0x902af36c, 0x63ed3c32, 0x90a64dcb, 0x47c9523f, 0x12689396, - 0xbf422bd3, 0x0000d6, 00000000 + 0xbf422bd3, 0x0000d6 }, { 0xec1a569a, 0x62eb84d7, 0x161faca9, 0x6c287c1c, 0x8064ac0a, 0x1f7004b2, 0xba8f51f8, 0x3f226434, 0xed198b36, 0xb4cae5e0, 0xaf99694f, 0xc0f290da, 0x27beb7b8, 0xa2d71d08, 0x4d5b88f1, - 0xeaa7c579, 0x0001df, 00000000 + 0xeaa7c579, 0x0001df } }, { @@ -73062,19 +73060,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x599e2482, 0xbfeed6c3, 0x2fc5df3b, 0x7db455fc, 0xda408ee1, 0xa04f71ba, 0x2b88ed22, 0xec9118ca, 0x5a1c9a39, 0x7326717d, 0x7b347a87, 0xb7d6c40b, 0x48834bee, 0x364f063, 0x629756e8, - 0xaba433b6, 0x0000ce, 00000000 + 0xaba433b6, 0x0000ce }, { 0xf35c1330, 0xd4df92e, 0x11fd6c62, 0xe1f8e143, 0x9d6478ac, 0xfb9fa784, 0xa0169ff3, 0xb1ff5632, 0x79d84305, 0xb23efd1e, 0xa7eb6ee9, 0x58940385, 0x6e8dd657, 0x188a0813, 0xd9174ccd, - 0x6731c621, 0x00001e, 00000000 + 0x6731c621, 0x00001e }, { 0x1e262f13, 0xa46de605, 0xb25be4ee, 0x2412ee5a, 0x81e2f9a7, 0xbb83ef30, 0xfeda3a21, 0x4f8071e6, 0x7a148509, 0x9f80d8a2, 0xa68c8728, 0xc2fe46aa, 0xc85c6e29, 0xfcab3653, 0xf776a98b, - 0x9f2e12a, 0x0001a1, 00000000 + 0x9f2e12a, 0x0001a1 } }, { @@ -73082,19 +73080,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x57da7cbd, 0x7eb68620, 0xe1f276cf, 0xdd4a98d, 0xd20bea6, 0x46dbc5cb, 0xc1c8fda2, 0xc516ba6c, 0xcddc7095, 0xe9f6267, 0xf46cadf, 0x16b440a, 0xb0defb05, 0x749f1f44, 0xa9b56583, - 0x9c649b7a, 0x0000a6, 00000000 + 0x9c649b7a, 0x0000a6 }, { 0x5f8196ac, 0x77caf3a8, 0xe29e1520, 0xbbbdddc4, 0x33055a76, 0x6a3f9cef, 0x8078c854, 0xf17d9e33, 0x8a27ba21, 0xa91f4747, 0xa7b18cbb, 0x48a5ead1, 0x5fc08765, 0x1850a056, 0x6ba4f99f, - 0xca5516b3, 0x000141, 00000000 + 0xca5516b3, 0x000141 }, { 0xe1e2d2ab, 0x22c2fc7d, 0x50a3fe65, 0xaf0fe80d, 0x32680055, 0xfd458b62, 0x943ccc96, 0x87ad2d69, 0x11f645f2, 0x7218bba5, 0xe8f4883e, 0x149a822a, 0xd33ed039, 0xc212eb21, 0xac2e0042, - 0xf230d1b7, 0x000082, 00000000 + 0xf230d1b7, 0x000082 } }, { @@ -73102,19 +73100,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x31106dd5, 0x92fe1daa, 0x53a9cec3, 0xefc0c40b, 0x7b1c050c, 0x154cd36c, 0xa47190fc, 0x3cb3a9f5, 0x51764540, 0x1c1019c4, 0x4091464b, 0xc50bfb6c, 0x6f0ae7ad, 0x37100b7e, 0xc5a705a1, - 0x21ec2759, 0x000162, 00000000 + 0x21ec2759, 0x000162 }, { 0x28098162, 0x17f94aa7, 0x66aeb24a, 0xd17026a4, 0x43a9deec, 0xc013bf5a, 0x4fdf1065, 0xc44d11f8, 0x42f5353f, 0xd44804ef, 0xe5866352, 0xd15f5e31, 0x8ba95ad6, 0xc27dd479, 0xcd774557, - 0x30ae7df2, 0x0001d9, 00000000 + 0x30ae7df2, 0x0001d9 }, { 0xaee4fc42, 0xcfa02eb7, 0xc837125c, 0x263a60b6, 0x55689ec9, 0xdd33e4db, 0xd407ad89, 0x74d0ceb9, 0x32874ca, 0x527d980, 0xbad59a3b, 0xda1dcdb2, 0x8a756c42, 0xda86e075, 0x895ef339, - 0xa0d11b74, 0x0001ef, 00000000 + 0xa0d11b74, 0x0001ef } }, { @@ -73122,19 +73120,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x114f013c, 0xbe8105a8, 0x776258a2, 0x9ca209fe, 0x72d021d2, 0x92a34edd, 0xdc1f3c5c, 0x334b2cf1, 0x6745152c, 0x9fd3fb74, 0x6ac20229, 0x55926289, 0xc8d7688b, 0x718f08f8, 0x59d51fac, - 0x56eb19a4, 0x00014c, 00000000 + 0x56eb19a4, 0x00014c }, { 0xea6f6eaa, 0x6ff3e93f, 0x4fe7993c, 0x6589d022, 0x29c1fed, 0xc593cc0e, 0x787e0812, 0xdea89d1e, 0x68e93b2d, 0x1969a2ee, 0xd30edc8d, 0x11bc1306, 0x8553364e, 0xaa11b4b3, 0x111907e6, - 0xe00654b5, 0x0000a1, 00000000 + 0xe00654b5, 0x0000a1 }, { 0x54174133, 0x32fdf1c1, 0xe9a41212, 0x900186e8, 0x8ca558de, 0x101b06c8, 0x9017fe9b, 0x8cf2f6e6, 0x2fa18129, 0x8388a88, 0x51dc29ae, 0xbe725edb, 0x7f33c942, 0x469bc4fc, 0x2b170e75, - 0x4533fce7, 0x000192, 00000000 + 0x4533fce7, 0x000192 } }, { @@ -73142,19 +73140,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd485d1f, 0xe952dbeb, 0x124ab27d, 0x723f853d, 0xacec38e0, 0x90dafdc, 0x4cccc1e6, 0x8578f33c, 0x71aa034b, 0x1fc187cc, 0xc4696195, 0x446f6ae3, 0x961ea300, 0xafe511df, 0x5e9ea36, - 0x74ddc930, 0x000077, 00000000 + 0x74ddc930, 0x000077 }, { 0xf520965a, 0x7c11e4ba, 0x33d5c409, 0x764cf288, 0xd02ecbec, 0x104dfb3e, 0xf94090a5, 0xfe5009e0, 0x7451595a, 0x2cc84760, 0x2ceb45e4, 0x795bae95, 0x169f8517, 0xc61d627, 0x5c4403e1, - 0xf0784b7b, 0x000161, 00000000 + 0xf0784b7b, 0x000161 }, { 0xc8909736, 0x2832ebc, 0xebe4d3a4, 0x5a54f718, 0xa4f9e28c, 0x287065c3, 0x218e9bc, 0xb7d22172, 0xf6fe3be8, 0x3dc2d9ef, 0xe17b7ce6, 0x43afc5ad, 0xb7476944, 0x69e89e07, 0x38b9c648, - 0xc7ce5109, 0x0001e3, 00000000 + 0xc7ce5109, 0x0001e3 } }, { @@ -73162,19 +73160,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x59abf3fa, 0xd57d85a6, 0xb5fedd07, 0x7633e780, 0x84d6e095, 0xb5c0b8cb, 0x8aaf8979, 0xb7284a24, 0x0c43ee, 0x6feb20a5, 0xf383b027, 0xd152cbe2, 0x6ec4828, 0xc1df42c5, 0xc0ae657c, - 0x56eb28f, 0x0001e7, 00000000 + 0x56eb28f, 0x0001e7 }, { 0x255d007d, 0xf2d6562a, 0x22d6fe04, 0x6da06530, 0xc2c56d38, 0x33529506, 0xbab65b70, 0x2d460fe1, 0x2fbe9d8f, 0x7859ac57, 0xa14b78d7, 0x61b86292, 0xde96dc71, 0xa9b7e485, 0xd752c0bd, - 0x81cee4, 0x000122, 00000000 + 0x81cee4, 0x000122 }, { 0x77e0e966, 0x5ab06707, 0x57fa2204, 0xb3137505, 0xb8c37988, 0x2e676294, 0x3107b56c, 0xdc2a6c97, 0x3443fc39, 0xdf9abd49, 0xc34d678, 0x345a5443, 0xc9087266, 0xcd38b115, 0x84e85fc4, - 0x987f49bc, 0x000050, 00000000 + 0x987f49bc, 0x000050 } }, { @@ -73182,19 +73180,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc677305a, 0x9f5b341b, 0x3066d6b7, 0xe1d84973, 0xa5f4d136, 0xbebb17d1, 0x83c8640e, 0x9a0265c7, 0xc1e1e45e, 0xd3c5fb65, 0x20078024, 0x3f86d4bf, 0x7fac0de3, 0x33318490, 0x3e79ad37, - 0x12ad80fa, 0x000110, 00000000 + 0x12ad80fa, 0x000110 }, { 0x5d5b0663, 0x174779e, 0xd36e9f5e, 0x5d59244a, 0xce4b469d, 0x7f520b85, 0x3d46a23a, 0xd65d1131, 0x4037b716, 0x88a82ffe, 0xd2875fb7, 0x16848376, 0xfef311f3, 0x8932844a, 0x50d2f540, - 0xce85f4d6, 0x000061, 00000000 + 0xce85f4d6, 0x000061 }, { 0xb13f7949, 0xde511a10, 0x9862e851, 0xcff3b855, 0xa5033cbf, 0xf67aac75, 0x9bd30a20, 0x66118dc1, 0x47a4f8a7, 0xf0315beb, 0xccdea7a7, 0x60483550, 0xf431b582, 0xeb2e2a1, 0xf0796908, - 0xbe38616a, 0x00000d, 00000000 + 0xbe38616a, 0x00000d } }, { @@ -73202,19 +73200,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19d58fa6, 0x7afc2a99, 0x4c4d4e2a, 0x117084b3, 0xc06ddb58, 0x8bfb3d2f, 0x4a1dff25, 0x7e1a6910, 0xf3e9f893, 0x8e257ac3, 0x22bb0ac4, 0xbc4c1b0f, 0x3bffa2ee, 0xe23b414, 0x4e0ca45b, - 0x6045420f, 0x000150, 00000000 + 0x6045420f, 0x000150 }, { 0x2581bb5e, 0x5200f33f, 0x694d9869, 0xa5aac119, 0xdb028718, 0x61218b5b, 0xb9bb9579, 0x43ae6f9d, 0x7ab6a49c, 0xe97080da, 0x5617ce7e, 0x10f8bea0, 0xa66282a6, 0x3f002f0c, 0x7b42e5a7, - 0xcae4f55e, 0x0001e9, 00000000 + 0xcae4f55e, 0x0001e9 }, { 0xd31bffed, 0xc0ed3c16, 0xe37e31a0, 0xa38a1717, 0x1351a8c3, 0xfbbd077d, 0x1be7d525, 0x7469c94e, 0xe4689287, 0x75368c2c, 0x288d275f, 0x5c0e5105, 0xb711d4a5, 0x23021336, 0xd8234657, - 0x9cc79cbf, 0x000099, 00000000 + 0x9cc79cbf, 0x000099 } }, { @@ -73222,19 +73220,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x517b38e5, 0x6547aeef, 0x7216269c, 0x7e4f6ca3, 0xd3c1aaea, 0xc73280e6, 0x4a13a6d7, 0xbfcf6d5, 0x351170e2, 0x3b250450, 0xa48ca0a1, 0x6b8425ba, 0xfe5159e1, 0x43121096, 0x7d02b31f, - 0x3ee5dd54, 0x00016b, 00000000 + 0x3ee5dd54, 0x00016b }, { 0xcedf75ad, 0xbdaeb693, 0x4bfc4c6, 0xda6b13ba, 0xedc11731, 0x55651db1, 0xf2560bfd, 0x2d357353, 0x604a720f, 0xf1ac3f99, 0xd89f2387, 0xcb063678, 0xb887e3ae, 0x10845082, 0x6fa0d71f, - 0xb305011a, 0x0001a3, 00000000 + 0xb305011a, 0x0001a3 }, { 0x90848f49, 0x1768dd77, 0x14d55841, 0xd409bc4e, 0xd3ee2673, 0x1c4e8f2f, 0x27f7590e, 0xe209f9cf, 0x36d37f7e, 0x4a9ccd51, 0xa4237a0f, 0x25d7131a, 0x762bfe03, 0x95e923c4, 0x43ee0949, - 0x94fd7d3b, 0x000056, 00000000 + 0x94fd7d3b, 0x000056 } }, { @@ -73242,19 +73240,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb036f9a9, 0x69b2bd50, 0xd3cd8a81, 0x9f60bcd2, 0x752a73e6, 0xec314e90, 0xd27027fd, 0xaab76483, 0x51556152, 0x18b06fd2, 0xd8a134b0, 0x9e6bfb51, 0xa4eb8599, 0xd1a28419, 0xf0ee83f, - 0xbd7ec5a5, 0x000156, 00000000 + 0xbd7ec5a5, 0x000156 }, { 0x61339a17, 0xf4c58911, 0x10b881d0, 0x6bc3f20b, 0x7611f6e7, 0x4fd041c7, 0x23878787, 0xa3b82c7b, 0xa87f2e81, 0xdd460fac, 0x85e31989, 0x233bcbb1, 0xf516804f, 0xcb90ba6d, 0x8a3e259a, - 0xd8e1a7ea, 0x0001eb, 00000000 + 0xd8e1a7ea, 0x0001eb }, { 0x550e8751, 0x621e6732, 0xb0325ca6, 0x67f56b0a, 0xa8b641d9, 0x89cc13c6, 0xc94bdd1e, 0x12f26007, 0xbefb0d86, 0x5d656425, 0x95c6c70a, 0xd1764fdc, 0x162de9b8, 0x76332510, 0x7530f736, - 0x2b3cf830, 0x0000a1, 00000000 + 0x2b3cf830, 0x0000a1 } } }, @@ -73264,19 +73262,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfe98771d, 0xac5b83b0, 0x162ac06a, 0xd7943fc7, 0xbed34cd5, 0x1f8cc6f2, 0x87cfb93e, 0x8b01c032, 0x1617db31, 0x8c3fa4e2, 0x49467890, 0x4da40bcf, 0x31257e2b, 0x1df03232, 0x360f6d33, - 0xfae0ea10, 0x000120, 00000000 + 0xfae0ea10, 0x000120 }, { 0x30d4510f, 0xa0195e09, 0x37ccb7, 0x25fdcba7, 0xe4f7a344, 0xf97df418, 0x80b3b926, 0x4778b6f9, 0x554dea2a, 0x5bae787d, 0xe25a75e, 0xc2b368e, 0x588706d6, 0x86da750f, 0x95b465c9, - 0x91270e17, 0x0000fd, 00000000 + 0x91270e17, 0x0000fd }, { 0x356cc54c, 0xae309758, 0xe6d13a83, 0xb49ca158, 0x9d151390, 0x306876a9, 0x57694fbe, 0x815ce6e9, 0x78477f04, 0xe59670b8, 0xb789e4d0, 0x3b4f2a35, 0xcbfe2fc5, 0x6a9e1525, 0x87b0f851, - 0xc66d3179, 0x00007d, 00000000 + 0xc66d3179, 0x00007d } }, { @@ -73284,19 +73282,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf5f1af3c, 0xb581e981, 0xa07caa49, 0xd79a910a, 0x3ed90b4a, 0x60af426f, 0xd562f589, 0x58c24b24, 0xf68ce99b, 0xfa251bca, 0x4613aa03, 0xa27df26d, 0x940589c1, 0x7bd0e27f, 0xb61988c3, - 0x4ca6fd4b, 0x00001d, 00000000 + 0x4ca6fd4b, 0x00001d }, { 0xa03d499, 0x85b8a1a9, 0xf1fbd291, 0x93b9c688, 0xa1c20154, 0x5528fe91, 0xbd9949b4, 0x9e0d447a, 0x90ef023a, 0xafb89955, 0x2e868888, 0x944e28a0, 0x9252cdf6, 0x6c48746c, 0x8065e005, - 0xc5527ee9, 0x000064, 00000000 + 0xc5527ee9, 0x000064 }, { 0xe0f542c4, 0x305adbd8, 0xc24da197, 0x3be4a41, 0x15b3cd09, 0x9f911591, 0xf02cd183, 0x600faaef, 0x261746ef, 0xa9ee2ddd, 0xd8b7623b, 0x9e6db367, 0x9190893, 0x983bdf8e, 0x68f3ea59, - 0x33311efa, 0x000133, 00000000 + 0x33311efa, 0x000133 } }, { @@ -73304,19 +73302,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8dbd319a, 0x8e7cdad9, 0x1dfb187, 0x647d4b14, 0x2a1f2829, 0xea7f1dfd, 0x482ac369, 0xebfaefac, 0xf0faa5cc, 0xd102b11e, 0x501d9b35, 0x98b282f8, 0x144c000f, 0x6285c8a4, 0xd15828e3, - 0x3e9c8764, 0x0001f4, 00000000 + 0x3e9c8764, 0x0001f4 }, { 0xadbe54d8, 0xdb269202, 0x617b1e43, 0xfc60ae1c, 0x95eb877d, 0xa4fccfab, 0x65ef61ff, 0xe393d062, 0x39815342, 0x17238bfd, 0x1b163922, 0xc682ca45, 0xa0e32a05, 0x3a0f28ae, 0x92591f40, - 0xc0e8c2c1, 0x0000c2, 00000000 + 0xc0e8c2c1, 0x0000c2 }, { 0x620818b7, 0x86e23ecb, 0x2e9df5d4, 0x8e2013ad, 0xb7834505, 0x323a54b4, 0xd91fab26, 0x8ec92f87, 0xec1f00e4, 0xfe64935, 0xf0ba8f13, 0x3a6be2de, 0x30a6dd30, 0xb27ae5b1, 0x5f1f27d2, - 0x7a7dd3c, 0x00008f, 00000000 + 0x7a7dd3c, 0x00008f } }, { @@ -73324,19 +73322,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf847fa09, 0xe05fdd67, 0x28a7afd7, 0xf002b1b3, 0xd6268f2b, 0xc404b59f, 0x2d31deb4, 0x36ea4a19, 0xd17d802, 0x45ddc20a, 0x2452c034, 0x754bd784, 0xfb4aa02c, 0x72eef0f7, 0xc52fb0d2, - 0xf9b3f586, 0x00003e, 00000000 + 0xf9b3f586, 0x00003e }, { 0x8289898e, 0x70701dd5, 0x65c5184e, 0xc48f7ddb, 0xd85ee3f5, 0x64401f3c, 0x603bf076, 0xca5e1d5e, 0x58305ac3, 0xf5b90693, 0x905d9524, 0xe6bf9b47, 0xbd770ee2, 0x249a4cdc, 0xd339a367, - 0x87a50818, 0x000012, 00000000 + 0x87a50818, 0x000012 }, { 0x9d095f0e, 0x9483afaf, 0x6785c9dc, 0x2c9cbd7a, 0xe4a3b5de, 0x2be1f1ed, 0xd7bd43f0, 0x304f9c17, 0x9a5560cf, 0xe96742d4, 0x7a3c4177, 0xfe62b87, 0xd2de4798, 0x576f0117, 0x35130be1, - 0xe5ccb6a0, 0x000152, 00000000 + 0xe5ccb6a0, 0x000152 } }, { @@ -73344,19 +73342,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa14fa44e, 0xdccf08b9, 0x2f983cc1, 0xbfededf4, 0xbfa3bb72, 0xb19daac, 0xa463f260, 0xfaffa038, 0x45fbbfd5, 0x96016e8e, 0x8cb2ba8f, 0x1733a4d6, 0x23ad9333, 0xe7af3632, 0x54781863, - 0xa84e2983, 0x0001e3, 00000000 + 0xa84e2983, 0x0001e3 }, { 0x31b8bdaa, 0x3fea4b4a, 0x87657669, 0xb82d3ffe, 0x8230787a, 0x157e6681, 0x250a6b1d, 0xbc9e40f5, 0x1df30f43, 0x1dbe1e3b, 0xe9b3ef0, 0xa6b0ce7b, 0x12aa82fb, 0x2cbda34, 0xd9fb40a7, - 0x619665da, 0x00019b, 00000000 + 0x619665da, 0x00019b }, { 0xa6d570b8, 0xdfd5b09, 0x6981988e, 0xccf131, 0xb04657f1, 0x437405af, 0x250c67d6, 0xf0c255a6, 0x2a9d74cc, 0xcf534456, 0xeab4810c, 0x46beb6ae, 0x83ab227f, 0x2b7b6404, 0x5a1c9b0e, - 0xbc3a5af2, 0x00011d, 00000000 + 0xbc3a5af2, 0x00011d } }, { @@ -73364,19 +73362,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xca3dbc3d, 0xea95db6f, 0x5b413ef9, 0xf7ea7cc6, 0x32352113, 0xa9ebb11d, 0x451b9a3, 0x6ff77d0b, 0xef7e1977, 0x2f958cda, 0x1cf26eef, 0xb8a392d8, 0x75c70bd1, 0xe299f2b, 0xe82cf061, - 0x5a7e9c03, 0x00006a, 00000000 + 0x5a7e9c03, 0x00006a }, { 0xa9df6539, 0xcc17e337, 0x9f89caee, 0x6b1a0ff1, 0x53be98a8, 0x3c58ed5b, 0xa24b2ea1, 0xa0e08a41, 0x7c060962, 0x52191948, 0xab249fc3, 0x92bc1103, 0xd1dcf62d, 0xb9de8514, 0x132c757c, - 0x2e8ea2eb, 0x0001fb, 00000000 + 0x2e8ea2eb, 0x0001fb }, { 0x94074469, 0x535822b3, 0x3590a779, 0x8402dab7, 0xcb894f71, 0x9a09fad5, 0xef6d1c2c, 0x515d8551, 0xc1ccc5b9, 0xa245b4ec, 0x7d419198, 0xb4bd09a5, 0x3106d6e2, 0x629bf73b, 0xf14df9ce, - 0x288aea95, 0x000104, 00000000 + 0x288aea95, 0x000104 } }, { @@ -73384,19 +73382,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9ee22544, 0xffd2aef3, 0xd56d9235, 0xfe2cc793, 0xd50a4c9e, 0x1b94ef2b, 0x3239566f, 0x2c7a5f69, 0x9589673e, 0xdeefb4de, 0x520304c6, 0x98637ff2, 0x69935251, 0x518a5e29, 0x1005daa0, - 0x96ac55c9, 0x0001a3, 00000000 + 0x96ac55c9, 0x0001a3 }, { 0x40c58b65, 0x538597e0, 0x2e521f7d, 0x665f6521, 0xc3a0beb9, 0x4f0105c2, 0xaecb9dea, 0x10bffaf8, 0xcb0516e1, 0x119e81c5, 0x7247983f, 0x34d8bc22, 0x4069cd52, 0x9d1e121e, 0x79699fcb, - 0x877ce7d8, 0x00002d, 00000000 + 0x877ce7d8, 0x00002d }, { 0xf48d40b2, 0x5f032ddf, 0x722e59f5, 0xd495b326, 0xe6c2b267, 0xa058f7c7, 0xf6dba298, 0x46d32c65, 0xea7e3c68, 0x2acb5b6c, 0x4bb260af, 0xd207be8e, 0xd7d8a1ea, 0x91ee1b80, 0xf5113cb2, - 0x9f3ce85, 0x0001fa, 00000000 + 0x9f3ce85, 0x0001fa } }, { @@ -73404,19 +73402,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa1c9d3d, 0x7cc17723, 0x875cf64, 0xe99119d, 0x526dca75, 0xfbc4cabd, 0xb583d9c2, 0x4cec7016, 0x4fbea50c, 0x939ee31f, 0x369104b6, 0x176a4e7a, 0x827cc3e, 0x815f5478, 0xfefc2e1d, - 0xd6a9d24e, 0x0001aa, 00000000 + 0xd6a9d24e, 0x0001aa }, { 0xde32301b, 0xf9fa4854, 0x1611846b, 0xa6037ebb, 0x140a9315, 0xf3c8685c, 0xbe028a49, 0x9de3b39, 0xf02fbf27, 0x4948c1d6, 0x8b1feb89, 0x74f38930, 0xe322fd13, 0x39635861, 0x3fd6bb3c, - 0x193d31db, 0x0000f7, 00000000 + 0x193d31db, 0x0000f7 }, { 0x3468af3d, 0x8776d69c, 0x3c57b35f, 0x32f96d06, 0xc7f00652, 0xa8b4ee3b, 0xa425eec, 0x16370149, 0x7c7c65e9, 0x67b9277d, 0x96b77be6, 0x42f94d2c, 0x2d3cf87c, 0xc41f0f25, 0x8eb646fa, - 0xd828a071, 0x000028, 00000000 + 0xd828a071, 0x000028 } }, { @@ -73424,19 +73422,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x28eb6d96, 0xd6572559, 0xfe1059e1, 0xb726be32, 0x801b2aa1, 0x6d291d0d, 0xde681ad3, 0x6623c42b, 0x6469cf91, 0x81112e25, 0xfa6982bb, 0x3946f02f, 0xd101be2a, 0xd8943dd5, 0x914e8fab, - 0x50e93fd5, 0x0001d8, 00000000 + 0x50e93fd5, 0x0001d8 }, { 0xbadaf5bd, 0x7c5b1c5d, 0x5280524, 0xfe688ed4, 0x71800a2b, 0xb9033799, 0x4c58f121, 0x27d7f443, 0xfa42d253, 0x4b2d37cc, 0x548c24c8, 0xdcc1409b, 0xe01ec15d, 0x3f859c52, 0x583a6475, - 0x5b18ecdc, 0x0000ac, 00000000 + 0x5b18ecdc, 0x0000ac }, { 0x7307ea18, 0xda6ad52e, 0x73bf0ea0, 0xfe561e6e, 0x14b584ce, 0xac5c6d6e, 0xc4c0f12a, 0x5860f09b, 0xd3d330f, 0xcd02f54a, 0xd6f73677, 0x45852053, 0x5f15ef62, 0xf6e13746, 0x671b5ddb, - 0xf46eff27, 0x0000bc, 00000000 + 0xf46eff27, 0x0000bc } }, { @@ -73444,19 +73442,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x10649aba, 0x77dcb03c, 0x4a05e03d, 0x23dc36b1, 0xdcb2a992, 0x4ab7d151, 0xbc219902, 0xadf6e846, 0x561d5c9f, 0x74d523c0, 0x5d3d984a, 0x51ee248f, 0x35a272e8, 0xe528abc7, 0xa2c91409, - 0x814558bf, 0x00013c, 00000000 + 0x814558bf, 0x00013c }, { 0x8b820316, 0x2427c76e, 0xa49f0490, 0xabe1ed28, 0xcd5688e7, 0xeeb99dcd, 0x3668cd9c, 0xe433de6c, 0xb76e3d16, 0x1e1891fd, 0x26ed6c94, 0xf1f38155, 0x3b574e2d, 0x68682e79, 0xc7d9e3de, - 0x5723dbf2, 0x0000e8, 00000000 + 0x5723dbf2, 0x0000e8 }, { 0xcdb2d394, 0xa4234d31, 0x19a55d30, 0xe8c8071d, 0x17579c7d, 0xdc285a1e, 0x1e81710c, 0x5b2f1a82, 0xf4281109, 0xc748a327, 0x2b798f79, 0x88be96eb, 0x769aed12, 0x3dbd2754, 0xa26e83a1, - 0xbf42f1f4, 0x0000ec, 00000000 + 0xbf42f1f4, 0x0000ec } }, { @@ -73464,19 +73462,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3bb5052f, 0x4f6247c5, 0xf6a61d13, 0xae8b38d6, 0x5f63bc2b, 0xc8692496, 0x49a13c5d, 0x1e2be672, 0x9873cbc7, 0x26a1c36e, 0xbeab4b59, 0xc225a6ac, 0xa79fe85, 0x929f8658, 0xdb05efb6, - 0xf14424f, 0x00013e, 00000000 + 0xf14424f, 0x00013e }, { 0x93acbe62, 0xc39f1ed0, 0xea2dd712, 0xc4d714b4, 0x53b34d44, 0x9b54f7cc, 0xfecafc9d, 0xe2fa5028, 0xb568bbe3, 0x3718d347, 0x37e8788a, 0xa7ede143, 0x8e19a941, 0xad609f9f, 0x5e699276, - 0xc4534af1, 00000000, 00000000 + 0xc4534af1, 00000000 }, { 0xd67f3cc0, 0x2861ea56, 0xcb527f4b, 0xed029b40, 0xd01587ad, 0xfe2d60cc, 0x900b06ef, 0x58820434, 0xb146d75f, 0xd473ed1, 0x78d88d04, 0xa6e830cd, 0xb98b127c, 0x77aa2f56, 0x4dc3691e, - 0x7703dbfb, 0x0001e1, 00000000 + 0x7703dbfb, 0x0001e1 } }, { @@ -73484,19 +73482,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7b30bb, 0x19d7669a, 0xa61818c9, 0xbf4091d9, 0x3d039dbb, 0x1616a4e6, 0x2c695462, 0x98722009, 0x4d35d7cd, 0xc2681b6a, 0x87c890cf, 0x5629f50e, 0x4f4cb590, 0x457ddb72, 0x51e0384a, - 0x6aa1c739, 0x0001cb, 00000000 + 0x6aa1c739, 0x0001cb }, { 0x22f55a0e, 0xaaa83de3, 0xb02d74a2, 0x786bd713, 0x584e757a, 0x397acdf1, 0x8e08cf13, 0xdb1eca9b, 0xa1324979, 0xb9da6a7b, 0x2cc2288, 0x947a3afd, 0x7eefaf00, 0xc7740b19, 0xac6e2170, - 0xc3221605, 0x000154, 00000000 + 0xc3221605, 0x000154 }, { 0x4848eb43, 0x169d6d30, 0x226e9ca9, 0xa139733d, 0x7a24a656, 0xd2961b06, 0xc43fda45, 0xb5f6dcab, 0x8164e093, 0xa839c2ff, 0x256013a6, 0x725cade1, 0xfc97e9e0, 0x484d01de, 0x78fa9505, - 0x6778e338, 0x0000dc, 00000000 + 0x6778e338, 0x0000dc } }, { @@ -73504,19 +73502,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x54aa3ab0, 0x441f8e2c, 0x4c42893e, 0x8943a25a, 0xa26fcaed, 0xec96f96b, 0x390bb281, 0xf66e7ef8, 0xc9eec91b, 0xd5d38b46, 0x956f9cc, 0x7797762c, 0xaeb2ca69, 0x932f3f53, 0xe44bddaa, - 0x2c2b3841, 0x000077, 00000000 + 0x2c2b3841, 0x000077 }, { 0xe3e53117, 0x9eb1c537, 0xc41bf392, 0xd237c1fd, 0x45055e7b, 0x281bc589, 0x3847aaa2, 0x15e56af2, 0xa6fdb1e9, 0x53dbabeb, 0x3032b318, 0x266b0787, 0x41352704, 0xde8f913f, 0xc9bc417e, - 0x4aeede7d, 0x000031, 00000000 + 0x4aeede7d, 0x000031 }, { 0xcdf6e193, 0x2ff7447a, 0x1dc8ce7a, 0x55d6ad7e, 0x8d38e203, 0x8d6e4c04, 0xfc1ee798, 0x7c1a45a4, 0xbe92704f, 0xa31936e, 0xefc852ae, 0x4aed1bf6, 0x71773ed5, 0xdb2ff7a3, 0x88aa872a, - 0x57d4be61, 0x0001f6, 00000000 + 0x57d4be61, 0x0001f6 } }, { @@ -73524,19 +73522,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa19c74ca, 0xab703ad2, 0xcc240444, 0x594ba454, 0xc2060fce, 0xd8a3c505, 0xb4fdcbca, 0x511d214a, 0xdae06fbf, 0xa5cdf8d5, 0x617b066a, 0x9944986d, 0x48c78584, 0x2e38b69, 0x5a708052, - 0x8141f586, 0x0001b5, 00000000 + 0x8141f586, 0x0001b5 }, { 0x77f4c5b1, 0x347a0e8d, 0x4d9abd03, 0x8968a819, 0x4fa04948, 0x6bca80f3, 0x3fa47fcf, 0x4c0e2fde, 0x4bd24562, 0xfecd92da, 0xba4acc9e, 0x79120474, 0x1b06bafa, 0xd21916be, 0x381bf4f4, - 0xce89f9e2, 0x000150, 00000000 + 0xce89f9e2, 0x000150 }, { 0xea5f7e9b, 0x2f0171f4, 0x2f33a060, 0x6e7b502e, 0x9ed3fedd, 0x8fdf7887, 0x7d748c7d, 0xbffc684a, 0x72d6417a, 0x80e42f42, 0x3ea869cd, 0x57a276a9, 0x840ade1f, 0xdf33a97b, 0xdba32200, - 0xeb8e33aa, 0x000166, 00000000 + 0xeb8e33aa, 0x000166 } }, { @@ -73544,19 +73542,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd16b1e27, 0x615a4d8d, 0x575b0a85, 0xd8e0e7bb, 0x5bcf83a3, 0x4d42849c, 0xa26ff0a8, 0x282f03d9, 0x9ed7a31e, 0x7672a2d9, 0xd70c474b, 0xacf66af8, 0xb37594e4, 0x13cb8608, 0xb5da5741, - 0x4b677f30, 0x00009b, 00000000 + 0x4b677f30, 0x00009b }, { 0xeeede418, 0x8f45d5a0, 0x970bae10, 0x593b9f3, 0x2cef9729, 0x360f3288, 0xa3b68d72, 0x59d81d2b, 0xd53519cf, 0x6361a7b1, 0x31a3c2b7, 0x762639b6, 0x2c681d5e, 0x3f5781f5, 0x48398a66, - 0x642f13f7, 0x0000f1, 00000000 + 0x642f13f7, 0x0000f1 }, { 0xbbf55108, 0x92f263e5, 0x4b143232, 0xa7cd745e, 0x7c9012fb, 0xb93928c6, 0x42745431, 0xac45f91b, 0x12dd1634, 0x40d42a6a, 0xe47c6172, 0x87b0cd35, 0xa231b638, 0x27a308b1, 0x171214cc, - 0x78f7a27, 0x000193, 00000000 + 0x78f7a27, 0x000193 } } }, @@ -73566,19 +73564,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5e5243d3, 0xf62ffa1a, 0xcf134b5f, 0xeeb09275, 0xcaf634a4, 0x148683, 0x3668c31, 0x439d78e, 0x4e794f61, 0x3e4c7720, 0xe5e5d2e5, 0x960ee2bb, 0x38796056, 0xcbd7f02e, 0xfbb4dbca, 0x5771366e, - 0x000164, 00000000 + 0x000164 }, { 0x56cc0c98, 0x68a0c56e, 0x60f37d67, 0xe9f92ecf, 0x6c2beec4, 0x4d72a390, 0x66439cb2, 0x681ffc9d, 0xb2face3b, 0xbe4bb143, 0x9228e345, 0xcbeeb386, 0x78659193, 0xe6313e51, 0x8d30d0da, - 0x9f25e04f, 0x000019, 00000000 + 0x9f25e04f, 0x000019 }, { 0xd912bb34, 0xb00a5853, 0x6888bd0f, 0xe1d14c24, 0x551168fe, 0x9c87cb2c, 0xe7c5690e, 0x6cac61d6, 0x4913c2e0, 0x1c2e24e, 0xa318912a, 0xa91c0794, 0xab5dfd19, 0x47efc164, 0x20d9ca89, - 0x266ca61f, 0x000161, 00000000 + 0x266ca61f, 0x000161 } }, { @@ -73586,19 +73584,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x823c3efb, 0x721a37de, 0x673f3e7a, 0x4ce37487, 0xcd7e641c, 0xf0206487, 0x7013b087, 0x4d057366, 0xd6d701e1, 0x9037530, 0xa23b11cb, 0xd65d1aab, 0xd91ec281, 0x43418e6e, 0xf464f352, - 0x3b458440, 0x0001a9, 00000000 + 0x3b458440, 0x0001a9 }, { 0x645899c1, 0x27f56e14, 0x69868e30, 0x75624fd3, 0xff78bd4f, 0x9e746917, 0x898f0868, 0xff732c6f, 0x48971123, 0xfb3ba5d7, 0xc8f0695a, 0x210daccf, 0x1ea58097, 0xbf362490, 0x165e04f7, - 0x5e7e3a17, 0x0001bc, 00000000 + 0x5e7e3a17, 0x0001bc }, { 0xb5da218b, 0xa67a87f3, 0xa2dcd525, 0x54f4ecd3, 0xf549cc5, 0x9cb43d5a, 0x64d94df0, 0x460d258c, 0x9065ca01, 0xa040e67d, 0x8edbae34, 0xe1d500c1, 0x1b3d5cdb, 0xdd4829f8, 0x6a9d124a, - 0xf5cd0d7, 0x0001c1, 00000000 + 0xf5cd0d7, 0x0001c1 } }, { @@ -73606,19 +73604,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb9b321e, 0xff2f8e7d, 0xfc47422e, 0xc1e96329, 0xd5df6548, 0x3ee2d7b0, 0xfacf394f, 0x5898765d, 0xd6126686, 0xc7a0afce, 0x2f6ce811, 0x50c1992a, 0x76b09827, 0x7e8ed32d, 0x8ca16123, - 0xe9fde4fe, 0x0000ed, 00000000 + 0xe9fde4fe, 0x0000ed }, { 0xdbbaf987, 0xa6dee18, 0xe0ab1439, 0x682c2e33, 0xdef1e74b, 0xf8d16cf4, 0x23d7d319, 0x9326f9a5, 0x6f6d45f0, 0x476ab004, 0x1ad7ad81, 0x6bcee648, 0x8d9a131b, 0xac23b0e3, 0xd50a6605, - 0x3dd84712, 0x000049, 00000000 + 0x3dd84712, 0x000049 }, { 0xa441b277, 0x12c3d244, 0xd4b98771, 0x32554343, 0x1ab453ab, 0xbc4c7e1d, 0x91ba5d82, 0xb815c541, 0x7325a66f, 0x87426567, 0x5ecb15d2, 0xede69c5a, 0xd4d63928, 0x9d06c1ea, 0x9f58e189, - 0xc07680d1, 0x0001d3, 00000000 + 0xc07680d1, 0x0001d3 } }, { @@ -73626,19 +73624,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5bcb4600, 0xc662ff9f, 0xbd479960, 0xe847986e, 0x87092a6b, 0xc70c1275, 0x2ea75ae9, 0xccc49233, 0x7bdf1d6f, 0x683a9fdb, 0x66f388ff, 0x3f9268f1, 0x7f467e7b, 0xfd0d8103, 0xb13e6047, - 0xb74b9336, 0x000140, 00000000 + 0xb74b9336, 0x000140 }, { 0x39c25dd8, 0x3df20205, 0x70e7b89c, 0xd1fa1bbd, 0x4f6d852d, 0x472901ab, 0x754fcb82, 0xbeaaf923, 0x1066c6cf, 0x85a02013, 0x116c79ad, 0x5bf564df, 0xd7bf3aaa, 0xc08dc0f1, 0xd8344aec, - 0x769e9a84, 0x00009e, 00000000 + 0x769e9a84, 0x00009e }, { 0x74ec0e25, 0x725aee36, 0xea0c7adc, 0xdcc4d253, 0x5bf11081, 0xb91e7ad, 0xaef001be, 0xe527c167, 0x607b9993, 0x7a74953, 0x7eb6cbc5, 0x249a07eb, 0x362ef69, 0xe9f387fe, 0xfcc3032, - 0xa4a8fce2, 0x0000dc, 00000000 + 0xa4a8fce2, 0x0000dc } }, { @@ -73646,19 +73644,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa19f6961, 0xcbcfd657, 0xa0881dd5, 0x45cc3875, 0x4fae972d, 0x1ddbcf92, 0x90edabc9, 0xb976656, 0xc1441acc, 0xbc6b78fd, 0xf187b1fc, 0x72bd8723, 0x8525e3d0, 0xfebbbdc3, 0x2a87f6e8, - 0x74fd0783, 0x000136, 00000000 + 0x74fd0783, 0x000136 }, { 0x4b93847d, 0x21b580d1, 0x7926f8bb, 0xf5cebab8, 0x67aaf796, 0x49c8ea47, 0xdb2903ea, 0x2845744b, 0x57b51b40, 0xe049ddc5, 0x20b958c4, 0xc220ad98, 0xbddb5d29, 0x87e643f9, 0x32546ecc, - 0x2d77b7d4, 0x00004e, 00000000 + 0x2d77b7d4, 0x00004e }, { 0xd3a6c872, 0x84a5b539, 0xccd9cd94, 0x694dd713, 0x922201de, 0xdcdc6fe1, 0x9b4f1d2d, 0x7ff13b53, 0xa9597f8d, 0xe82015b5, 0xddb882c3, 0xbab06b14, 0x8ecfa4b, 0xa74b9441, 0xd98cf4ef, - 0xcf801698, 0x00005f, 00000000 + 0xcf801698, 0x00005f } }, { @@ -73666,19 +73664,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5eeb2bfc, 0x4b04ce, 0x429d364a, 0x3242e3a5, 0x1ec5c9fa, 0xe793f683, 0x5da966d0, 0xb30f16ab, 0xeb7f5a68, 0x736dfd2e, 0x20583fe0, 0xd5533e3f, 0x85816f18, 0x1271264e, 0xaa6593bf, - 0xd35c0e6, 0x0000bd, 00000000 + 0xd35c0e6, 0x0000bd }, { 0x489548e0, 0x1ba1d9dd, 0x50a8078f, 0x7b568794, 0xcb325d, 0xf43688c, 0x476ceec2, 0x75ec59c, 0x4da10f7e, 0xd73c19b6, 0xc0332bf7, 0x80415363, 0xb3de649e, 0xf81d3f9e, 0x96e1e28d, - 0x86366cd5, 0x0001c8, 00000000 + 0x86366cd5, 0x0001c8 }, { 0x7fa7c09a, 0x87103447, 0x8fb07d6a, 0xdfd8cac8, 0xa879f073, 0x962d362e, 0x44e5702b, 0x12345ff9, 0x1572f9f8, 0x51371f6a, 0x18c03586, 0x82889b11, 0x8e920014, 0x60ffde0a, 0x77d921ed, - 0x6a969b80, 0x000093, 00000000 + 0x6a969b80, 0x000093 } }, { @@ -73686,19 +73684,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9d7983cf, 0xc640959e, 0xdbb09c9d, 0x1f3429bb, 0xa9342a82, 0x89141a99, 0x5405b0a6, 0xbf0298f4, 0xac39697a, 0x3d62cf7c, 0x9b082a80, 0x3ecda7ff, 0xca541fa4, 0xfa75a99c, 0x28c5bf73, - 0x3834bcb9, 0x0001d4, 00000000 + 0x3834bcb9, 0x0001d4 }, { 0x9079ce34, 0x948ee1dd, 0xca1ea94b, 0x3607c9f8, 0xfadd3cd1, 0x3ef19086, 0x9f34f185, 0x61d9235, 0xc700a9ad, 0x36b644a3, 0x6532257d, 0x39e242ae, 0xadc6bbc6, 0x96774dab, 0x13ea2d4f, - 0x682c1d05, 0x0000ba, 00000000 + 0x682c1d05, 0x0000ba }, { 0x21a78f9e, 0x36d56316, 0xcccfe5d6, 0xee4e567c, 0xcb4ce34, 0x371c1579, 0x5d6a1326, 0x49474dad, 0x4f458a82, 0xc5b906d0, 0xcd50be5f, 0x145067bc, 0xa21aa0d0, 0x146c474, 0xb089c252, - 0x41f4c9c3, 0x00001d, 00000000 + 0x41f4c9c3, 0x00001d } }, { @@ -73706,19 +73704,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd8e73dc7, 0x7ba85ee2, 0xc615d2f1, 0x364f3b76, 0x4e851015, 0x708a35a3, 0xb68a9fc, 0x87330f33, 0x54291800, 0x5bf02d3c, 0x5f61be31, 0xd85befe4, 0x56d30659, 0x28d1f3da, 0x427acf30, - 0x1610bf38, 0x0001e1, 00000000 + 0x1610bf38, 0x0001e1 }, { 0xeaaa5fbc, 0x3afe3d97, 0x678cccce, 0x7a387257, 0x992ae018, 0x5399aad, 0x82ade7ec, 0x44131e38, 0x929134f4, 0xb4dc235b, 0xc63c2cec, 0x32848693, 0xbebb6c49, 0xfc6da23, 0x513292a, - 0x89c51146, 0x0000d1, 00000000 + 0x89c51146, 0x0000d1 }, { 0xdf4901b, 0x8738d07d, 0xb7e689f7, 0x3affb74c, 0x6476726d, 0xb1648a4, 0x10133d03, 0xfd96690e, 0x54482bf7, 0x98fa6a55, 0xe5bd569c, 0x71c68c7d, 0xb2ac82ec, 0xaee496e5, 0x5d2bdda, - 0x63e098ac, 0x000102, 00000000 + 0x63e098ac, 0x000102 } }, { @@ -73726,19 +73724,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb808436e, 0x348e59a, 0xc7e8de21, 0x654cbab1, 0x7864aec4, 0xd876b6b5, 0xc5a3b8ce, 0x7f97563f, 0x196ecccd, 0x919ecc78, 0x5fe5095f, 0x92f0146d, 0x9f02b95b, 0xd83565da, 0xbb6bb8cd, - 0xbc6fe0ec, 0x0000e3, 00000000 + 0xbc6fe0ec, 0x0000e3 }, { 0xc6beba2c, 0x80635f21, 0x18d231c8, 0xf3323b29, 0xfd1dc4be, 0xeb8ddfb4, 0xe382b673, 0xffb56322, 0x8dddbb67, 0x717a10e0, 0x2a999d90, 0x6f11eb18, 0x8971843d, 0x1d8d691, 0xa8f2bdb5, - 0xaaf57e44, 0x0001ab, 00000000 + 0xaaf57e44, 0x0001ab }, { 0xdfa1a3cc, 0xc141c3ab, 0xb42fdd36, 0x40657967, 0xa41c4abc, 0x558854a, 0x29159da8, 0x4a8910df, 0x3e3ed08d, 0x6bea0c15, 0x6fb5b19b, 0xb61cafff, 0xe1f8e05e, 0xe88478ac, 0x34f778a, - 0x7d56375, 0x000096, 00000000 + 0x7d56375, 0x000096 } }, { @@ -73746,19 +73744,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb96d764c, 0x935722f, 0x8dcdd303, 0x85037c15, 0x21bc1856, 0x7d341477, 0xcabcafe9, 0xd3b18e4a, 0x18b7bedd, 0x6c51f9b5, 0xfab0c6e0, 0x4ff0d70, 0x5ae27220, 0x6ac83c74, 0x84576d41, - 0xa14a3e36, 0x00019a, 00000000 + 0xa14a3e36, 0x00019a }, { 0x65f87d9c, 0x8b08d985, 0x73d7180c, 0xabc0d9f5, 0xcecc0141, 0x6dd8e28a, 0xc50099da, 0x12d7b4d7, 0x1609daf1, 0x514adffe, 0xf58af5be, 0x86596e9, 0x2989f3ad, 0x78ed5584, 0xe550f37a, - 0x305ecbe9, 0x00013a, 00000000 + 0x305ecbe9, 0x00013a }, { 0x12228047, 0x10c422ba, 0xfdedf7bf, 0xb76f3b5a, 0x600eb732, 0x2cd6c5cb, 0xf4dd0a17, 0x429d73de, 0x32c7a3f, 0x91b2784f, 0xae742374, 0x987fc95a, 0x4ea19f14, 0xd87f5a9a, 0xdcf37af0, - 0x925bd0b7, 0x0001b9, 00000000 + 0x925bd0b7, 0x0001b9 } }, { @@ -73766,19 +73764,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xabf51ac9, 0x4d54267, 0x7d07fbf0, 0x9126e210, 0xb80a2393, 0x296a37ec, 0x3988dc3a, 0xfcf644ad, 0x5ebb94db, 0xaf58c4b5, 0xcbaf184, 0xa49944e0, 0xcf515b1c, 0xe74b9bca, 0x8c071d49, - 0x5e09235b, 0x0001e8, 00000000 + 0x5e09235b, 0x0001e8 }, { 0x82cd8a2c, 0x4adae6db, 0xc058a2e1, 0x305e5afd, 0xc65c6bd3, 0xff46dc81, 0x4ee36b1f, 0xb9e1d752, 0x3db46f54, 0xd4a779e8, 0x2eeae29e, 0x4594658f, 0xfc6def4c, 0xcd3b2efc, 0x2fd35b80, - 0x2718976e, 0x0001db, 00000000 + 0x2718976e, 0x0001db }, { 0xc4a8ae9a, 0x1856304e, 0x3318bac5, 0x11583bf2, 0x76373d4, 0x2d5e861e, 0x8cd38c7e, 0x237b2e42, 0x4ac25bbc, 0x6e8a5136, 0x7610fda4, 0x20fa784d, 0xadb31a19, 0x36a991c0, 0x7233e892, - 0x87fa3cd8, 0x00002b, 00000000 + 0x87fa3cd8, 0x00002b } }, { @@ -73786,19 +73784,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xebb96f57, 0xfb2e17df, 0x4818895b, 0x698d1562, 0x77296b7f, 0x8c867e4b, 0x69d17242, 0xc3c4580c, 0xb63a5462, 0xdf586bc5, 0x6c32a277, 0xd179d12f, 0x380a33df, 0x82deecf3, 0x8dc424fd, - 0x127e2791, 0x000126, 00000000 + 0x127e2791, 0x000126 }, { 0x2d7838c, 0x4f7911b2, 0xdb5cc5d9, 0x2c389460, 0x44cdd10, 0xb15d6766, 0x8140629e, 0x6b62e309, 0x20c8a693, 0xbb587cdb, 0xf038ceb8, 0xcabf9f1, 0x13664a34, 0x6f3cc052, 0x8d9ff9f1, - 0xf297593c, 0x0000b3, 00000000 + 0xf297593c, 0x0000b3 }, { 0xbc8a5588, 0xec334418, 0xc6545edc, 0x32005a75, 0x22c747b5, 0x1fabaa4a, 0xf7d8f795, 0x9d068261, 0x722d7e64, 0x2ceb314f, 0x26554863, 0x8e787913, 0xb5bca72a, 0xdc85c6f3, 0x574818ea, - 0x347d4a84, 0x00013c, 00000000 + 0x347d4a84, 0x00013c } }, { @@ -73806,19 +73804,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xef513665, 0xbadaabc3, 0xb9b9f96f, 0x1cb8bad2, 0xc280964d, 0x486d4c26, 0xfea77dcb, 0x312fd189, 0x17c0efb0, 0xa35bfe87, 0xb53bdf22, 0x22d0699d, 0x3624f409, 0x1ef9bed1, 0xe47ef7e4, - 0xca2752e1, 0x000070, 00000000 + 0xca2752e1, 0x000070 }, { 0xba8c3e1e, 0xec0b5a68, 0x776cedf8, 0x9b77bab3, 0xf31c2f1c, 0xef0768de, 0xa9a5190e, 0xd13df0f9, 0xc09f3e88, 0xacb3e6cb, 0xc3938bb9, 0x97a541ad, 0x4b1a2524, 0x3e12117e, 0xcacbb7a4, - 0x52a73e5b, 0x00000f, 00000000 + 0x52a73e5b, 0x00000f }, { 0x6d5e4115, 0x4895a85e, 0x338d64b8, 0xa9faab79, 0xb1f9ec59, 0xca909d2, 0xf78508e9, 0x41fc60ee, 0x682d59b8, 0xea8e43bd, 0xea36dfc7, 0x20596875, 0xa0dc284, 0x5a900205, 0x742c9940, - 0xbe69fc02, 0x000101, 00000000 + 0xbe69fc02, 0x000101 } }, { @@ -73826,19 +73824,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x35220f80, 0xbce57016, 0xa814fecf, 0xf8e1174e, 0xcf458e7e, 0x9dd88bc, 0x41a76356, 0xaac1cc29, 0xf8ed1e9, 0xab734843, 0x6336654a, 0x4914a788, 0x754cebfd, 0xa1f5e21f, 0x22c204cb, - 0xf023f4c1, 0x000198, 00000000 + 0xf023f4c1, 0x000198 }, { 0x20efbdea, 0x701ea73, 0x231ec5cb, 0x84f813b9, 0x454e31f4, 0xc9072032, 0x7db0135c, 0xfa6342c4, 0xc083d53f, 0xf83a22f0, 0x4b2cb3dd, 0x8746433f, 0x56a47356, 0xca314732, 0x196127e7, - 0x95f76318, 0x0001fc, 00000000 + 0x95f76318, 0x0001fc }, { 0xafcff64, 0x3900c39, 0x65d7b8f7, 0x2b425ead, 0x60f14451, 0xf5e6c28b, 0xb8a2643, 0x40440bf6, 0x9f945382, 0xead29ee, 0x71fa77cc, 0xbfb539b9, 0xb88cb8e3, 0xf10b5f2, 0x21c94833, - 0xe326e4b0, 0x0001bd, 00000000 + 0xe326e4b0, 0x0001bd } }, { @@ -73846,19 +73844,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x13c87b76, 0xb66dc953, 0xd88b1f83, 0x6b1c92c0, 0xa1b5a637, 0x470c5107, 0x45db87ed, 0x5246aa01, 0xdd0bbff6, 0x91abab1a, 0x420e1da, 0x3fd1f860, 0x4c999e4, 0x35afdd59, 0xd348e1e5, - 0xdf9839e9, 0x0001b3, 00000000 + 0xdf9839e9, 0x0001b3 }, { 0x7b656fe3, 0xd6702135, 0xe35e9048, 0x5f70f3b8, 0x5a8640c2, 0x3aaf61af, 0x126827f5, 0xddd7e8fb, 0xc8f954eb, 0x2a5fd3a5, 0xbbf22a97, 0xd5d19a61, 0xf24b2f45, 0x78b48e10, 0x741089ae, - 0xaba19235, 0x000185, 00000000 + 0xaba19235, 0x000185 }, { 0x44a6179e, 0xf6edb808, 0xcfa12547, 0xc716651b, 0x1f698dd1, 0xef74ee75, 0x1a322637, 0xc07ff7aa, 0xda7b7e1, 0xe92c7af1, 0x5b259195, 0xfd54e156, 0x5d70235c, 0x4fa81bb8, 0x35a58a34, - 0xc1f0527a, 0x000190, 00000000 + 0xc1f0527a, 0x000190 } } }, @@ -73868,19 +73866,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x80fd9830, 0x39ea20a8, 0xe153b3c6, 0x6c95fae8, 0xa7e1806b, 0xa67dd793, 0x78599d6e, 0xe04266ca, 0x710bb690, 0xbbd1f1d6, 0xa1236ffb, 0x3f4b7cf2, 0xb0eccc2f, 0xc07f2e14, 0xee519b62, - 0xe38d338a, 0x0000af, 00000000 + 0xe38d338a, 0x0000af }, { 0x97ec0d98, 0xe0c21398, 0xee1a02b9, 0x1e4a721d, 0xc6b47b54, 0xee40b8f2, 0xfa4c73e9, 0xb90fe71b, 0xb2e93da2, 0x33c4ce6e, 0x153c8e7c, 0xf6cf7a43, 0xc4f8c096, 0xd599df2e, 0x1e092cde, - 0x652e135d, 0x000007, 00000000 + 0x652e135d, 0x000007 }, { 0x44468c12, 0x330ddf09, 0xbe123ef9, 0x90859d3, 0x6a65ca5b, 0xd2eb3187, 0xe0180fc0, 0xacd7475f, 0xd4364da1, 0xa6aad8a8, 0xd44e8749, 0x334ee5f2, 0x3dc8d174, 0xd375927, 0x60b1cdc3, - 0x6f2d962a, 0x0000c7, 00000000 + 0x6f2d962a, 0x0000c7 } }, { @@ -73888,19 +73886,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x46bc2501, 0x83f0827c, 0x184444f0, 0xc7249a32, 0xa6dd47ef, 0xff872af6, 0xa6bcca7, 0xd922e241, 0x8343d541, 0x52dc0cd6, 0x4dc9e87c, 0x30a8527, 0xdf327857, 0xdee7b8a1, 0x55b8a03a, - 0x7398ba68, 0x00012b, 00000000 + 0x7398ba68, 0x00012b }, { 0xde099a98, 0xc13c5a37, 0x6334ea09, 0xb36be858, 0xd2d03126, 0xb72ed763, 0xe16478c6, 0x4b100e15, 0x20806ae, 0xcd0aca0, 0xfd7000dd, 0xf469a622, 0x907cd00, 0x5c95f32a, 0x7be7dbfa, - 0xfc03f0f2, 0x000048, 00000000 + 0xfc03f0f2, 0x000048 }, { 0xfc90ba15, 0xf0a8b56a, 0xcf0e2539, 0x1fb95017, 0x397018c8, 0xcd8430e7, 0x6dff1c85, 0x28d8fd48, 0x68a6f7f0, 0x88b8ef84, 0xbe2e793, 0x34c67d6e, 0x73183a65, 0x2da0a040, 0x398f771, - 0xea915979, 0x000006, 00000000 + 0xea915979, 0x000006 } }, { @@ -73908,19 +73906,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x38caaf10, 0x2ca1dd14, 0x65b36fb2, 0xeb3cb573, 0x25daa11, 0x52977818, 0xa333a748, 0x381c8e50, 0xef1fb5ae, 0xb0cf2981, 0xc39bf817, 0x47f30f54, 0x435e644e, 0x3da8e0b9, 0x18408c04, - 0x39c0633, 0x00007d, 00000000 + 0x39c0633, 0x00007d }, { 0x14dbfb79, 0x5a67f770, 0x711b394, 0x5f57493e, 0x95c64e3, 0x1b3d7065, 0x5a273a88, 0x960f57ac, 0xf2d11c81, 0xe4c0ccf1, 0xefcb7f69, 0x34151122, 0x8b97ae6d, 0x28b53e11, 0x5ae53e83, - 0xf18b6275, 0x000070, 00000000 + 0xf18b6275, 0x000070 }, { 0xb9f4b272, 0xe3c9125c, 0x8580ace8, 0xf7790f40, 0x4c3d0307, 0x40ea6e14, 0x13ab88ec, 0xffa5cf86, 0x86ff29bc, 0x677a0afa, 0xf654266e, 0x8af36a8f, 0xab70a410, 0xf7a8532d, 0xc871d5a, - 0xde31cf45, 0x00008f, 00000000 + 0xde31cf45, 0x00008f } }, { @@ -73928,19 +73926,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xad7ad035, 0xc59ca6b4, 0x4ed65aa2, 0x9d987be, 0x933ca7f4, 0x2527927d, 0xe0e1d220, 0xfcb96b2, 0x60c56fb7, 0xb1ba68ef, 0xc1dcf8e0, 0x3c6aebe6, 0xf5020255, 0xadec33f1, 0x87d3f511, - 0xc4456572, 0x000102, 00000000 + 0xc4456572, 0x000102 }, { 0xb294949c, 0x35b82e18, 0x6c2217d2, 0x4aba4ea0, 0xa615a4f, 0x81ff391d, 0x5f21d2af, 0x95281a04, 0x7fa1ad7c, 0xfd63e524, 0xb71c1a07, 0x7646effa, 0xcd83e7c3, 0x49e507f3, 0x643f24f5, - 0x18431fd5, 0x0001af, 00000000 + 0x18431fd5, 0x0001af }, { 0xc2c530a6, 0x817c94b6, 0xdb12e0c5, 0xe6f8c2d8, 0x690218f4, 0xe20deffb, 0xa4e9de45, 0x9d22707f, 0xad5b9f3e, 0x65b7c23c, 0xb4a0d0a1, 0xecfb6500, 0x2c7d5662, 0x96a6059d, 0x66fff957, - 0xc9ec31f5, 0x0000e9, 00000000 + 0xc9ec31f5, 0x0000e9 } }, { @@ -73948,19 +73946,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3f4e6fe0, 0xb7f5f08e, 0xbfa8946d, 0x76f422e0, 0x5886c08e, 0x7e730de4, 0xae02ac56, 0xb39c42a4, 0xec0779ae, 0x3587a519, 0x42122e86, 0x2300432d, 0x66ec409a, 0xbfe1aaf2, 0xdbce66d4, - 0x64ab809a, 0x000089, 00000000 + 0x64ab809a, 0x000089 }, { 0xe6c08f15, 0x56457915, 0xf48529ff, 0x173ee82e, 0x85a381eb, 0xdc147f5b, 0x9482db5d, 0xbc8cca56, 0xbebbd10a, 0xfd40f5f5, 0xc8cd349e, 0x30939104, 0x558b38cd, 0xa687fc56, 0x2cdbef63, - 0x4e32cbc3, 0x0000aa, 00000000 + 0x4e32cbc3, 0x0000aa }, { 0xf7fbe775, 0xc59cdb1f, 0x3eb7c739, 0xd54e91e5, 0x4b2ea8f7, 0x171f7def, 0x16f635a8, 0x8abdb8cb, 0xa710e2f6, 0x34a35807, 0xd5ed6265, 0xd8ea7fe6, 0x1ceee27, 0x3515d2f1, 0x793f7971, - 0x628b43a2, 0x000104, 00000000 + 0x628b43a2, 0x000104 } }, { @@ -73968,19 +73966,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7116ee4d, 0xb6db2949, 0x6eca5881, 0x25b6ffa7, 0x45ac092e, 0xdc0402ba, 0xb9f25654, 0x54278ef2, 0x18eacaff, 0xd5fc74c6, 0x61bfa9c4, 0x74573893, 0x187857fd, 0x390cad64, 0x39d7e9ed, - 0xce34eb30, 0x0000b6, 00000000 + 0xce34eb30, 0x0000b6 }, { 0x555bf377, 0x78b5914a, 0x669cb8cf, 0xdf0ec211, 0xa5d89eaa, 0x5ff87d6e, 0x7d94ece4, 0xf7d95b5a, 0x4e44e4a9, 0x76aa0a0e, 0x2aacf873, 0x5cd7ee21, 0xfe39ce21, 0xa9a351f4, 0xaff864da, - 0xb82cbd39, 0x000072, 00000000 + 0xb82cbd39, 0x000072 }, { 0x2a2bb0fe, 0x2ddf3450, 0xbef9bb20, 0x3a06d2c2, 0xb99901d2, 0x65c88bf0, 0xc298e716, 0x9dc1d0ed, 0x5de8d35e, 0x6e2ab8f7, 0x59971cac, 0x7e3ac52e, 0x8849d85c, 0x10016662, 0xe452423f, - 0x53ed60f1, 0x0000fb, 00000000 + 0x53ed60f1, 0x0000fb } }, { @@ -73988,19 +73986,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc60692ec, 0xe9d5a3b0, 0x296a949f, 0x57663d0f, 0xbc560676, 0x7df08c7d, 0x57d1b3e5, 0x5f78701d, 0x63e59665, 0x8886ffa4, 0xfec3db4f, 0xd7c7458e, 0x54d99354, 0x29b7e661, 0xe658e3d4, - 0x95db440a, 0x00002a, 00000000 + 0x95db440a, 0x00002a }, { 0xb0180b88, 0xcf63ece2, 0xb2347010, 0x2b9c59b0, 0xe19568e, 0xbb2f0223, 0x43a2cc47, 0x4a7ea9aa, 0xdca468f5, 0xa7e99f0a, 0x735c0ca7, 0xc0b196f2, 0x320e4be3, 0x9710b096, 0x7fedaf3a, - 0xdd1bac11, 0x000153, 00000000 + 0xdd1bac11, 0x000153 }, { 0x28259984, 0x3777ce16, 0x128130e8, 0x25089395, 0x5f1ceea1, 0x5c89f8db, 0xaf607032, 0xa1f50462, 0x4684e66c, 0x23100df3, 0xd2fc5586, 0xf30a23f6, 0x21c224aa, 0x96b708f5, 0x12eb3e93, - 0xad7b7874, 0x000140, 00000000 + 0xad7b7874, 0x000140 } }, { @@ -74008,19 +74006,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2041ead7, 0x5ec28118, 0x25fcf948, 0x9c78d7be, 0xaae9f60d, 0xe6a37b2c, 0x58ccf05e, 0xb3a61ee, 0xf5b12235, 0xb4c81327, 0x9aa2540f, 0x768aef22, 0x3a5eeac3, 0x72a91db0, 0xc23e8c2a, - 0x1051f3d2, 0x000149, 00000000 + 0x1051f3d2, 0x000149 }, { 0x43302a9b, 0x24b90f02, 0x42d9fec3, 0x4782e588, 0x72d6466, 0x5435e8a9, 0x81e44d40, 0xcb62e2e, 0xbafa290d, 0x780e7a8, 0x4a9c0d64, 0x3e547b69, 0x34e668fd, 0xe57154f2, 0xe91a0c6a, - 0xbe493bd7, 0x00005e, 00000000 + 0xbe493bd7, 0x00005e }, { 0x743dc49b, 0xa6347908, 0xd637379, 0xcde85b27, 0x1e712563, 0x4d138c46, 0x1afd20d3, 0xea8f8bd, 0x17efad69, 0x97477846, 0x7eae5cef, 0xae71f559, 0xee16a548, 0x880f9fb2, 0x8f99363d, - 0x3c045def, 0x0001eb, 00000000 + 0x3c045def, 0x0001eb } }, { @@ -74028,19 +74026,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe408ff75, 0x20a913ac, 0x163c891a, 0xb5d0b4d7, 0x58714331, 0xc4c55279, 0xf0a8ebc1, 0xd96b7b54, 0x986c1ee9, 0xca95f3f1, 0x173b6cec, 0x97e95a19, 0xa643fee5, 0xccc195e7, 0xebb666a5, - 0x12a1903c, 0x00007f, 00000000 + 0x12a1903c, 0x00007f }, { 0x975bb91c, 0x8a73f32d, 0x8583dd62, 0xf8247291, 0xccead26, 0x5541cf9b, 0x4d380cca, 0xfead6c16, 0xaf0f9684, 0xe6a09880, 0xe321f801, 0xecc89296, 0x141caad8, 0x44cb8d7f, 0x822520f9, - 0xf0e99925, 0x00011e, 00000000 + 0xf0e99925, 0x00011e }, { 0x3d1d3c20, 0x1b5ecbd5, 0x585e579, 0xa3e92f7a, 0xe28494b2, 0x3a4a70be, 0x230e9a6f, 0x8ce1518c, 0xd6aef9ef, 0xa5335519, 0x1881af1c, 0x37166713, 0xec8d851, 0xa6eb9805, 0xeb465b8, - 0x660e3a01, 0x00014c, 00000000 + 0x660e3a01, 0x00014c } }, { @@ -74048,19 +74046,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x619a0cfd, 0x75431d4, 0x45ec8ea0, 0xb1f3f43e, 0xb1497616, 0x26ee8246, 0xf0410915, 0xec382834, 0xedc3b03e, 0x1692efaf, 0x6346e7c, 0x9c80d695, 0x5590e1af, 0x45c716ab, 0x311ba6c2, - 0xb0e8d870, 0x00009b, 00000000 + 0xb0e8d870, 0x00009b }, { 0x3074110f, 0xc0f67def, 0x6c92f532, 0xeb0ac4ed, 0x54baee64, 0xc0b1e13, 0x50b49a97, 0xd4b54a4, 0xe803ca52, 0x96ef36b8, 0xc92f6b98, 0xb7f23496, 0x7c9b04a0, 0xcf57463d, 0x48700eac, - 0xf83f7434, 0x000065, 00000000 + 0xf83f7434, 0x000065 }, { 0x42002289, 0xc1817d30, 0x719579fb, 0x4f9ed02b, 0xabbeb93d, 0x682e5b79, 0x7f16541a, 0x8d013f54, 0xad754345, 0xd48c8ce, 0xbb2a6ed3, 0x55d1331c, 0xdd06f1b7, 0x70f448aa, 0x4cfbd3a0, - 0xbc94872, 0x000001, 00000000 + 0xbc94872, 0x000001 } }, { @@ -74068,19 +74066,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd5f0930e, 0xe111cee5, 0xd2f1837f, 0xb45c751d, 0x499879bf, 0x702631c, 0xd8179a0f, 0xa08534e4, 0xcb6fd549, 0x3f5b4bc4, 0xeb50039e, 0xccc32b84, 0x5fa3c2a8, 0x93136e0a, 0x365ca53e, - 0x8399bc5c, 0x00002d, 00000000 + 0x8399bc5c, 0x00002d }, { 0x1c948c6f, 0xc76d858b, 0xe87b6a01, 0x16af4039, 0x7c15de9b, 0xd8973861, 0x821cfc72, 0xdc438b8f, 0x56e4f429, 0x5684ad9e, 0xbbcaa908, 0x4894350c, 0x87253464, 0x758a7d41, 0x5bf76c5c, - 0x64ebe281, 0x00000d, 00000000 + 0x64ebe281, 0x00000d }, { 0x85327d9f, 0x16236d86, 0x8e196801, 0x2bad1b41, 0xe73c8b15, 0x9980c5f9, 0xcb575e00, 0x8ad61b68, 0xc8f856fa, 0x30830ad, 0x3a3566e6, 0x4ae0d978, 0x815ea9c5, 0x2f502571, 0x2d2b80dd, - 0x70e10b89, 0x0000f3, 00000000 + 0x70e10b89, 0x0000f3 } }, { @@ -74088,19 +74086,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc6b3ad4f, 0x31de9ee3, 0x1c3f7d13, 0x415c3ce2, 0x688a0083, 0x6b42e669, 0x620a4da0, 0xa08fbc8c, 0xc1ac5e88, 0x85c6906f, 0x7d77e269, 0x9bdcc7bc, 0x5a929c0e, 0xe0f3a96e, 0x77800c81, - 0x85874902, 0x00001a, 00000000 + 0x85874902, 0x00001a }, { 0x7cfe0537, 0xe53a15e5, 0xbd0069ec, 0xfc384262, 0x52ccce0a, 0x851e0360, 0xe8263012, 0x97496e88, 0x57bd1e2d, 0xb7c60080, 0xc6f0fbd2, 0x2d2987d7, 0xcf6ff687, 0x41941c7, 0x84de1e17, - 0xc663b384, 0x000010, 00000000 + 0xc663b384, 0x000010 }, { 0xdb60213a, 0x72f9b7d2, 0x83b25874, 0x5a4736be, 0x91944411, 0x2766de52, 0x360167ed, 0xb8b05390, 0xc6a1f02c, 0x7edbba66, 0xf5fc8bcc, 0x9d4e0b09, 0x7f37b0df, 0xa5d8dc4f, 0xa02297d1, - 0xaf6f2833, 0x0000ee, 00000000 + 0xaf6f2833, 0x0000ee } }, { @@ -74108,19 +74106,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xca0a79e4, 0x5988c663, 0x5e7a556b, 0x9baacf7f, 0x4c477fbd, 0x1d7e654f, 0x562ed6d5, 0x214a8786, 0x7e9bf7d6, 0x2dae913b, 0x47fd1ef3, 0x22ef329f, 0xdc577919, 0xf0713a41, 0xf1d8257a, - 0x1dbf7730, 0x000040, 00000000 + 0x1dbf7730, 0x000040 }, { 0xc3d79505, 0x94a239f4, 0x9c0d4a07, 0xe585f705, 0x9da5eefe, 0xace33726, 0x8adeaf02, 0xeb6ff53c, 0xedc40c7c, 0xccd6bad7, 0x37a14221, 0x74bf9e06, 0xaf7555e6, 0xd75a7cd6, 0x877f4b84, - 0x898b13ee, 0x0001ce, 00000000 + 0x898b13ee, 0x0001ce }, { 0xc9dc827, 0x9aaa686c, 0xe6423e38, 0xe1fc1711, 0x40d4cdc9, 0xbca6abd3, 0xbcf6fa56, 0xcdee947c, 0xf55e52df, 0xbe3eb531, 0x700af00, 0x14a6cee1, 0x67da58ac, 0x764940df, 0x53fd87b0, - 0x93623fb, 0x00006a, 00000000 + 0x93623fb, 0x00006a } }, { @@ -74128,19 +74126,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x366b509f, 0xa1ec8ca2, 0xa03e1c32, 0xa42aac76, 0xa966d596, 0x816d7f6b, 0xdb6f9891, 0x9e71fd9d, 0xdcfb2a3, 0xdaac095e, 0xfeb20132, 0xd9cbfb95, 0x8069918f, 0x3052397e, 0x182f0263, - 0x3d603602, 0x0000de, 00000000 + 0x3d603602, 0x0000de }, { 0x26a202d5, 0x6399b3f1, 0xd5b97ff2, 0xbe3dad56, 0x8de43846, 0xcffeb4dc, 0xdc2ed006, 0x94fea060, 0x845dd442, 0x9b6427f6, 0xbe1f52e5, 0x6e5ae8b3, 0xdae79ce7, 0xdd276dbc, 0x2d008801, - 0x604e4f72, 0x000069, 00000000 + 0x604e4f72, 0x000069 }, { 0xa906d08b, 0x93cd7d15, 0x10768fc3, 0xf43a84b6, 0xfc2fae60, 0xa1030529, 0x44a44744, 0xb89da5eb, 0xf65cef7f, 0x77044eb2, 0xf391f3de, 0x527bab12, 0x3be65c10, 0x15c3574a, 0xf40bee1e, - 0xe78d0f89, 0x000011, 00000000 + 0xe78d0f89, 0x000011 } }, { @@ -74148,19 +74146,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x61419390, 0x82b95d92, 0x1af047a7, 0x3afd4ad9, 0xfcb7b941, 0xb993737c, 0x7f4d3368, 0xd0bb0205, 0x72ea17c5, 0x4b657f7, 0x30228b8f, 0x34b10687, 0xa1e1559e, 0xe21f1d4b, 0x302fdae9, - 0xcbf32068, 0x00009f, 00000000 + 0xcbf32068, 0x00009f }, { 0x2d6ae3af, 0xd08adec1, 0x34bd46e1, 0x9a8f274e, 0x42825e13, 0x1cd23fba, 0xa623000f, 0xd1b5880f, 0x48dc0856, 0x32232c7f, 0xf3a3ce09, 0x99029bd7, 0x4097ad4c, 0xc58747df, 0x186cc0a4, - 0xa767b596, 0x0001eb, 00000000 + 0xa767b596, 0x0001eb }, { 0xf784a830, 0x8f932205, 0x1575d716, 0x1d556e88, 0xe4dad2ac, 0x8cce3afd, 0x133e2341, 0xcc13a681, 0xb66298bc, 0xf0d9f977, 0x9f9a1b00, 0x70e7f22a, 0x7c758d13, 0x8329603a, 0x37e05ae3, - 0x196d33e6, 0x000031, 00000000 + 0x196d33e6, 0x000031 } } }, @@ -74170,19 +74168,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x162f2951, 0x1b77a1f1, 0x1969c700, 0x17c98ee0, 0xd05c105c, 0xffae66a6, 0x5436be5, 0x71f2974b, 0x48fdf196, 0xded0021d, 0xf333f8b8, 0x8a39cf15, 0xbbab4faa, 0xf96d6d98, 0x3349f13f, - 0xc5a41f77, 0x000170, 00000000 + 0xc5a41f77, 0x000170 }, { 0x73bc07bc, 0x62533d11, 0x3bbac8cd, 0xcb610d7a, 0xd935dd8a, 0x59bbe625, 0x241b9e9f, 0xfcefc8c7, 0xada4ab01, 0x4c1ae5ac, 0x9bccd08d, 0xf4f0d6a4, 0xdbd76891, 0x23c2323c, 0xe1da7637, - 0x4cea2530, 0x0000dc, 00000000 + 0x4cea2530, 0x0000dc }, { 0x4b55d89c, 0x7c95b52c, 0x2d5126e6, 0xb7287f3d, 0xc99933e4, 0x6de0507c, 0xd2cff9a3, 0xd623b9a8, 0x1873ae5a, 0x65152249, 0xd75222fc, 0xea869830, 0xa80d03d7, 0xc35c9bb3, 0x9ca3d563, - 0x8c62ffb0, 0x00002c, 00000000 + 0x8c62ffb0, 0x00002c } }, { @@ -74190,19 +74188,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf3f4bfe6, 0xe899e3bc, 0x91f38b94, 0x94e1c205, 0xfe51be71, 0x3dc82567, 0x928777e7, 0x2e552922, 0xb2926594, 0xa3730aec, 0x1040f1e8, 0x680e090, 0xa6761179, 0x51343f0e, 0xcd5f378, - 0x5cc78811, 0x000157, 00000000 + 0x5cc78811, 0x000157 }, { 0x1d870975, 0x4fc4fe91, 0x414fe4ac, 0x7ea5a5e8, 0xfd88b24f, 0x6e228496, 0x6b711ab4, 0xfece7fb9, 0xc6ba8052, 0x3395d338, 0x70fd6a8f, 0x853a836b, 0x2a8f4fd9, 0x7349a724, 0xaff22dbe, - 0x75d5b547, 0x000092, 00000000 + 0x75d5b547, 0x000092 }, { 0x4c9b571d, 0x651de66c, 0x88ea693a, 0xb84064ff, 0x4f140f15, 0xb4bba375, 0xddb90bc4, 0xe8ef9c29, 0x7767425c, 0xbe125274, 0x97ac7710, 0x98419522, 0x1f14959b, 0x769b21fb, 0xbae35bd8, - 0x2d1a3b17, 0x0000f7, 00000000 + 0x2d1a3b17, 0x0000f7 } }, { @@ -74210,19 +74208,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd26729c, 0xdd267641, 0xec8a4630, 0xa7f20124, 0xe69ecb2c, 0x4ba45fa7, 0x3b4f99c0, 0xae54ad46, 0x40fce827, 0x56df141e, 0x9cf9192d, 0x6a5aa6c7, 0x59b9cea8, 0x50c8feb2, 0x68cc1a66, - 0xb2164e5c, 0x00011f, 00000000 + 0xb2164e5c, 0x00011f }, { 0xf25ba035, 0xc7979832, 0xfa016c3a, 0xdc2439ad, 0xaf3569ed, 0x353c47ef, 0x8913b928, 0x82333c2b, 0x9a2bb9c5, 0x29832fb4, 0x9797be34, 0x125de2df, 0xa7e716d2, 0x7d21ce1e, 0x67b764ab, - 0xb00ee6d4, 0x000023, 00000000 + 0xb00ee6d4, 0x000023 }, { 0x41aa6c1e, 0xf62eae35, 0x59c0f15d, 0xb9d8eb21, 0xcd41734c, 0xbefbaae3, 0x12e19d90, 0x97cc651c, 0xf048dbb2, 0xc1130410, 0xbb89c8d4, 0x812145c2, 0x81ed6113, 0x5c3b6921, 0xb7a5f65a, - 0x8a638430, 0x000051, 00000000 + 0x8a638430, 0x000051 } }, { @@ -74230,19 +74228,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7e21b1ae, 0x7822ab4c, 0x24da8f18, 0x47cdf666, 0x99180078, 0x8260f447, 0xcbaabafd, 0x89f7e2a, 0x5d6059f5, 0xef651eaf, 0xaaf4ac68, 0xc6925ab7, 0x2187b893, 0xa40fe77a, 0x73edc98c, - 0x5c9a3a46, 0x000180, 00000000 + 0x5c9a3a46, 0x000180 }, { 0x2c22ccc9, 0x93799505, 0x4d2d3c01, 0xfd612265, 0x8cafb741, 0x29bdb1c4, 0xb2d3f7b3, 0x39d45b05, 0x38b06940, 0x668828ee, 0xc7c47068, 0x5d0e9de6, 0x353784e3, 0x7006a192, 0xd909b77e, - 0xa481e6f3, 0x000138, 00000000 + 0xa481e6f3, 0x000138 }, { 0x2ff911ba, 0xe03eb290, 0xc0b34bea, 0x7235db84, 0xf026e9fc, 0x65495dc5, 0xfd2c5e28, 0x2d767fdd, 0xec26a8ac, 0x5a9e6d99, 0xf5c71696, 0x2b88585b, 0xc9e72060, 0x2379750e, 0xa0a63982, - 0xbefc9904, 0x000109, 00000000 + 0xbefc9904, 0x000109 } }, { @@ -74250,19 +74248,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x93af52e1, 0x139326f5, 0xe8d47208, 0x4e1ef35c, 0x43dc4d87, 0x80fbc431, 0x70afbf2d, 0x9674bf9e, 0xff0a982d, 0xd0278852, 0xe21d7936, 0xa0f6edf5, 0x819c8141, 0x8ba8d744, 0xe10129f4, - 0x556adc1f, 0x000008, 00000000 + 0x556adc1f, 0x000008 }, { 0x67d1a696, 0x876701ea, 0xd6121a06, 0x144f32c3, 0x12c338, 0x566e4707, 0xe6e72ef9, 0xc4dd53b7, 0xcee8b847, 0x9d5b6439, 0xbeee5974, 0x97533187, 0xdc93d2a2, 0xcc793bc0, 0xfdd95cf4, - 0xe7187f2d, 0x000137, 00000000 + 0xe7187f2d, 0x000137 }, { 0x6b28f5d5, 0x95480d2f, 0x3289fe3e, 0xfc3f70a2, 0x1f306165, 0x6bead098, 0xac38d422, 0xf5ee5da0, 0x754bf0e9, 0x5e4d325c, 0xe1fb82ee, 0x2964646c, 0x521f7806, 0x99a63494, 0x7e363edc, - 0xf1256145, 0x000069, 00000000 + 0xf1256145, 0x000069 } }, { @@ -74270,19 +74268,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc0525839, 0xabd75648, 0xbf718858, 0x56431ec2, 0x8f94b85c, 0xb92e6ee7, 0xd09d4bba, 0xdd1c0455, 0x945c93b7, 0xa87ad9dc, 0x117e150e, 0x457fdc5b, 0x3d755dcc, 0xc0f7e2d8, 0x33e81e73, - 0xa1447fcd, 0x000106, 00000000 + 0xa1447fcd, 0x000106 }, { 0xd872bcc, 0x8d7a05ed, 0x14e99c84, 0x1422ed56, 0xb2f81cbb, 0xefaae742, 0x71f0e6eb, 0xe31d5b0a, 0x6eb4685, 0x119bae73, 0x9b18f6c4, 0xe34608fe, 0x812ba525, 0x84e2280b, 0x1c73251, - 0xe511f8ff, 0x000179, 00000000 + 0xe511f8ff, 0x000179 }, { 0x6e97bff5, 0x15d84da8, 0xfed95e46, 0xdbad0b25, 0xaeaba9ee, 0xf6e4c351, 0xda14f6ff, 0x91388b70, 0xdbda3f7b, 0x2bcd739, 0xb7ba325e, 0x49a7e77c, 0xffcc1ac8, 0x7fdb54ab, 0x87db993f, - 0x486d55f3, 0x00018b, 00000000 + 0x486d55f3, 0x00018b } }, { @@ -74290,19 +74288,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeb847bd9, 0xf9954c6e, 0x6d1ea173, 0x8e2cf969, 0x343b2ea8, 0x31d98e9d, 0x507fe882, 0x251ef231, 0xc02accb2, 0xbab0054c, 0xaae42c16, 0x7a1edbb1, 0x6a37248b, 0xd4f1c0ec, 0xed74f19a, - 0x6f567d41, 0x0000ac, 00000000 + 0x6f567d41, 0x0000ac }, { 0xb403fa10, 0xb69ead3d, 0xd9e1f31f, 0xabe6b87b, 0x1564dd24, 0xceaa6cf8, 0x2fc2db9e, 0x89823481, 0xa449998f, 0xc757788f, 0x49425d51, 0xfe231c36, 0xa798b34e, 0x7853daf0, 0x78676f3a, - 0xc41b03aa, 0x0000c6, 00000000 + 0xc41b03aa, 0x0000c6 }, { 0xb1f31009, 0xcb8d0b5f, 0x346f9f2, 0x786e0381, 0x14237514, 0x8a3c7136, 0x9141f051, 0x9238af00, 0xfa0237ee, 0xb7225cf7, 0x139cc8b, 0xf301fa00, 0xceabc9fc, 0x645cad45, 0x9d28ead3, - 0xe15437da, 0x00007d, 00000000 + 0xe15437da, 0x00007d } }, { @@ -74310,19 +74308,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc9ad8969, 0xdbc20ad2, 0xc0b5dad0, 0xba839e0f, 0x1cf09217, 0x60677a61, 0xbd7a250b, 0x763d49b2, 0xbd92f00e, 0xebdf4b4a, 0x943320ce, 0x24694bfd, 0xfff86316, 0x4d7bab88, 0xa0e45a66, - 0x9d5a1063, 0x000104, 00000000 + 0x9d5a1063, 0x000104 }, { 0x39128489, 0xb06c759f, 0x73d44113, 0x8fc8f405, 0x8e317c81, 0x199d4059, 0x74b5825a, 0x4cc55ce7, 0x7618bf09, 0xb2c0ebd4, 0xd7422539, 0xdcae5bbd, 0x2db47e31, 0xf1ce788f, 0xd301c462, - 0x4a6c1217, 0x000076, 00000000 + 0x4a6c1217, 0x000076 }, { 0xdee19970, 0x4574b961, 0x34e4c75d, 0xdb13b74a, 0xcbf2f481, 0x4ed46c5b, 0x5625d55a, 0x52f5adfb, 0xb5e1a118, 0x365307cb, 0x5c47d01d, 0xc45873e6, 0x2589db2, 0x6150a1d7, 0x232b3f12, - 0x5aab24fd, 0x0000f8, 00000000 + 0x5aab24fd, 0x0000f8 } }, { @@ -74330,19 +74328,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa8d2462e, 0xf8c196b9, 0x28ecac2b, 0xd180cf17, 0xd7bfbd8a, 0x959f3c5f, 0x7006ff96, 0xef3e3e1e, 0x2a62cb81, 0x4b4f9a3c, 0xc69f7cd, 0x4263ef33, 0xe56d7f9e, 0x5040e233, 0x2627b1a0, - 0x779c9981, 0x000094, 00000000 + 0x779c9981, 0x000094 }, { 0xfcecc990, 0x24a52dde, 0x56955aa9, 0x5e3c8588, 0xbb53b08a, 0x9865360e, 0xdc78cb57, 0x577d8311, 0x79adbff8, 0xc8408f84, 0x59a87825, 0xd9ad82e, 0xbb058650, 0xb6b8a19b, 0xe27f63c, - 0xc3d03b8e, 0x0000f4, 00000000 + 0xc3d03b8e, 0x0000f4 }, { 0x323de83, 0x839c7b7f, 0x9538652b, 0x9690736b, 0x764d452a, 0xfd80c353, 0x60f591fe, 0x15577230, 0x47f16bcd, 0xef263acf, 0xbfedd13f, 0x5477fbc9, 0xea99cfda, 0xc2f400c8, 0x63beb122, - 0xce48d99c, 0x000034, 00000000 + 0xce48d99c, 0x000034 } }, { @@ -74350,19 +74348,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb68c75d0, 0x2ca176a1, 0x759555b2, 0x767e050e, 0x97cef168, 0xaf0fd5bb, 0x4454d697, 0xa9545284, 0xb6b81a5a, 0x66ed7dc5, 0x8cb120f3, 0x19cc8792, 0xafd1d1e5, 0x760cea08, 0x73a4965, - 0x6af89e5f, 0x000084, 00000000 + 0x6af89e5f, 0x000084 }, { 0x5c5ad34b, 0x37554218, 0x8419877e, 0x2cc95cff, 0x2b32c139, 0x770f9fee, 0x62315a07, 0xab7db334, 0x72809d69, 0xd1c71e8c, 0x7ac075da, 0x9e0bd37e, 0x11e024f6, 0xd3e40fca, 0xc511b263, - 0xab47e630, 0x000181, 00000000 + 0xab47e630, 0x000181 }, { 0x80df3fad, 0xd8d00a50, 0x795fba04, 0x1eca9428, 0xcde33812, 0xef67cde4, 0xe36825f3, 0x4e200a3c, 0x694e456c, 0x2f36f4c0, 0xb4d3239b, 0x919d9f13, 0xcb6006be, 0x5a25a076, 0x503e5b91, - 0x247a252f, 0x0000a6, 00000000 + 0x247a252f, 0x0000a6 } }, { @@ -74370,19 +74368,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc08e5c54, 0x86387c70, 0xf82324af, 0xb6c0cd60, 0x3b140eed, 0xe7785c6d, 0xc90a50d7, 0xff2289ed, 0xa025f2e8, 0x381b5dd3, 0xaea49e3b, 0xc470ba3c, 0x8bf7485e, 0x74604515, 0x5b98ae9c, - 0x96b56d1d, 0x0000a4, 00000000 + 0x96b56d1d, 0x0000a4 }, { 0x40a960d4, 0xbe7e96fc, 0x8fac81b4, 0xc126cbb0, 0x78f9560b, 0xb96bd955, 0xda95ec8, 0x18164bab, 0x42cebc80, 0x56100ca4, 0x855cf687, 0xe416496b, 0x79410586, 0xd5d2a3d, 0x621205c3, - 0xf4522362, 0x0001d2, 00000000 + 0xf4522362, 0x0001d2 }, { 0x1d026d55, 0xe7b80d84, 0xb25e19c9, 0x899d3b14, 0x68865daa, 0xbb01d397, 0x21bb1ec0, 0x15047334, 0x4704a7bd, 0x47dda463, 0x875f5ce1, 0xfcefb945, 0xdb36ce8a, 0x5b0e086b, 0x73fe3bd1, - 0xabd50917, 0x000051, 00000000 + 0xabd50917, 0x000051 } }, { @@ -74390,19 +74388,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcbc515c9, 0x7e7ef454, 0xf1092417, 0x787d5993, 0x412a9219, 0x41deff0b, 0x5fdb2d7f, 0x26700ac9, 0xc17288f9, 0xe6a4a342, 0xc12769a3, 0xff684b17, 0x5310e693, 0xe1308ca6, 0xfd077506, - 0x6048f4a4, 0x0000e3, 00000000 + 0x6048f4a4, 0x0000e3 }, { 0xb78bf1a4, 0xb82b16ba, 0x2f84c36c, 0xeec81020, 0x36b111a0, 0x312e2e47, 0x38065b30, 0x3cdee2b0, 0xc1328618, 0x87da1e1, 0xa7e4b780, 0xd6bc6ecb, 0x102dbbdf, 0x2a6879cb, 0xe40495d, - 0xb963acc5, 0x0001a4, 00000000 + 0xb963acc5, 0x0001a4 }, { 0x2ae1201b, 0x6fc7b78, 0xe33ef534, 0x85f4c561, 0xadec5c43, 0x62a578d5, 0xacf0efca, 0xd25d84d0, 0xf7ff2f2, 0xeb1883b5, 0x5f00db36, 0x4729cbd6, 0x11e15c58, 0x6dc76a41, 0x85da1fa, - 0xf07c18b6, 0x0000a7, 00000000 + 0xf07c18b6, 0x0000a7 } }, { @@ -74410,19 +74408,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5867c855, 0xddeda536, 0x1cc2fd3c, 0xfd28b99f, 0x72e914b6, 0x19e6c0d5, 0x61b3d207, 0xc3de8d9d, 0xf67a6d6e, 0x82ad7b66, 0xcea82f8d, 0x731abbe0, 0x8e412855, 0x329b600c, 0x9edb5d5d, - 0x539c82a0, 0x00007b, 00000000 + 0x539c82a0, 0x00007b }, { 0x1743fa22, 0x34bed74d, 0x3c4fb159, 0xed073c7f, 0xe12bde20, 0x7936a316, 0xa188f176, 0x9294454c, 0xd5c95e93, 0x4d55268d, 0xe4e83f0a, 0xbdb6a493, 0xabf4eb70, 0x23a76dd5, 0xff7f1893, - 0xa82659b3, 0x00014e, 00000000 + 0xa82659b3, 0x00014e }, { 0xa1282d1b, 0x26744b07, 0xadda7b30, 0x75a0f5a3, 0xb4af1edc, 0xca2dfefd, 0xd4303b32, 0xbe854514, 0xef737f27, 0x811bcb32, 0x55787149, 0x304718db, 0x36cda23a, 0x721ac3ef, 0x1505b655, - 0xe4986cb1, 0x0000a6, 00000000 + 0xe4986cb1, 0x0000a6 } }, { @@ -74430,19 +74428,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x707e2a6c, 0x648d3433, 0x98c1e0e5, 0x294e578f, 0x517e415d, 0x9ad0a237, 0xe78b535a, 0x556c18f5, 0x5f91d081, 0xa0d12d23, 0xb3b9bcc3, 0x266b0d8, 0x47118316, 0x4c60a282, 0xb051e375, - 0xe635b2d5, 0x000198, 00000000 + 0xe635b2d5, 0x000198 }, { 0xb3ac7a7f, 0xbc56e46c, 0x767b2e1d, 0x4c2d9d5a, 0xf00f53d8, 0x8cc1574e, 0x8eb3965c, 0x63d90c80, 0x22d191b1, 0x57b6dab6, 0xcfe67593, 0x3e51f392, 0x8152c93e, 0x858e7288, 0x9afaf23e, - 0x28a22d76, 0x0001b4, 00000000 + 0x28a22d76, 0x0001b4 }, { 0xa7029cf3, 0xe1bb9861, 0xd22859bc, 0x4307a383, 0xf82db0d5, 0x1771f7f6, 0xb6bdda37, 0x5b1a51dd, 0x8239805, 0x431477cd, 0x3b45384b, 0x38f40daf, 0xe5e3f4c9, 0xbc858a80, 0x92305b0d, - 0xb6c0c5ad, 0x00012d, 00000000 + 0xb6c0c5ad, 0x00012d } }, { @@ -74450,19 +74448,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x576c14d3, 0x3bd93540, 0xc00ce0da, 0x7460fa51, 0xa7e0ba75, 0x709a5463, 0x6984e7eb, 0x4e2a0cea, 0xec40990, 0x3b8a5fe7, 0xda1b1b99, 0x82013159, 0x6951dfd, 0x742715ea, 0x46b48774, - 0xe113e13, 0x000018, 00000000 + 0xe113e13, 0x000018 }, { 0x783e6f66, 0xde212e6e, 0xc383557f, 0xf3889fa6, 0x3daea8c0, 0x74babd88, 0xf5f8c361, 0xe17bddc4, 0x3297e810, 0x27f91858, 0xafeb41d0, 0x19ab51d0, 0x8d9daed6, 0xd2e1c8ac, 0xa8ced89d, - 0xe7471f64, 0x000148, 00000000 + 0xe7471f64, 0x000148 }, { 0x2acc14c5, 0x32a9078e, 0xb5d307f4, 0x5c67f886, 0x994ec2ff, 0xa29806ce, 0xe6d411a, 0xf05c1308, 0x412ee775, 0xf8ccdf15, 0x8c7ea966, 0x98135676, 0xe2f87900, 0x2cdec6e8, 0xc9f115c2, - 0x58dfcb2, 0x0001d2, 00000000 + 0x58dfcb2, 0x0001d2 } } }, @@ -74472,19 +74470,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe12a3504, 0x2d69e0d, 0x6c0c8ff3, 0xd14b3e3e, 0xd8267139, 0x85151b91, 0x6c8f9a18, 0x89b9c159, 0xcf3efa5, 0xbb6324c8, 0x12c79abb, 0xd1398b22, 0xfade52d8, 0x8e162eab, 0xca4aa96a, - 0x497811ec, 0x000178, 00000000 + 0x497811ec, 0x000178 }, { 0x1ab2618f, 0x4ff777a9, 0x325103f2, 0x2b7e582c, 0x4f738019, 0xb9569145, 0x88f8aeed, 0xd9917ee, 0xe80acae0, 0xf448b36, 0x843edcff, 0xf0860680, 0xa4108b58, 0xc9c1d276, 0xfaff66f7, - 0x7a849cd2, 0x000189, 00000000 + 0x7a849cd2, 0x000189 }, { 0xffa436ab, 0xd30dffe8, 0xe01dd5b2, 0x340f965d, 0x2b7d3362, 0x738f372b, 0xdeac6ff5, 0x14ce8104, 0xec6256a7, 0x423e8c26, 0x11ab36c0, 0xc0d16b1c, 0x6c23365a, 0x597e4b5, 0xeffee822, - 0x78155850, 0x000090, 00000000 + 0x78155850, 0x000090 } }, { @@ -74492,19 +74490,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd9f332a1, 0x7b683e90, 0x48d49279, 0xf974d079, 0x20e1c24b, 0xf9cb7332, 0x8d01609c, 0x2ddcd39a, 0xd5da3319, 0x8c723589, 0xf7a62966, 0x2305fa53, 0x5b4170a5, 0x3a96d9d6, 0x30b2ce03, - 0x57b53dea, 0x0001e6, 00000000 + 0x57b53dea, 0x0001e6 }, { 0x3195618f, 0xdbf17979, 0xa75a4fd6, 0xf25f9bf4, 0x82a50365, 0xee09d947, 0xaf63dbb0, 0xe824b3aa, 0x6d17f25, 0x9374a9ec, 0xdf027879, 0xcc476070, 0xcb88cb9b, 0x42750366, 0xe0526959, - 0x280a89ad, 0x0000cc, 00000000 + 0x280a89ad, 0x0000cc }, { 0x7c72e06, 0x66e1627f, 0xcad67006, 0xb5217622, 0x6958ecb1, 0xf93712cd, 0xbe0ce3a2, 0xcf30e2d1, 0xe8484f9a, 0xa0d6b220, 0xc211e85d, 0x2e9228f2, 0x12be199f, 0x71aea4eb, 0x386c098d, - 0xd44906b9, 0x000111, 00000000 + 0xd44906b9, 0x000111 } }, { @@ -74512,19 +74510,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x964e90f6, 0x90057ba1, 0xe7eba315, 0x1995407c, 0xb5c48961, 0x29635041, 0x804bb8a8, 0x274799fc, 0x274fe881, 0x80039553, 0x3fc2b5f9, 0x5c74dd2, 0x18ba1433, 0x9b7111eb, 0x59f9ff9e, - 0x5ff18e33, 0x00009c, 00000000 + 0x5ff18e33, 0x00009c }, { 0xc1dccba5, 0x32b72af6, 0x4f017bfa, 0x8febd39b, 0x458644e0, 0xb037b046, 0xa19cff1c, 0xd464ffb6, 0x8d45371, 0x93c5c8c7, 0xd9041a9c, 0x83e46bb0, 0x5b01a261, 0x84a903b1, 0x257de55f, - 0xb1f72732, 0x000093, 00000000 + 0xb1f72732, 0x000093 }, { 0x978aeabb, 0x62218065, 0xde2f621c, 0xda015bbc, 0x4f1bf9c, 0x5f3b6a50, 0x52331d91, 0xb756d09c, 0x291c70b0, 0xbe214ad4, 0x9cea9851, 0x7cb3d3b8, 0x292d7f8e, 0x6a7f3f60, 0x98ca7096, - 0x339c79fb, 0x0000e4, 00000000 + 0x339c79fb, 0x0000e4 } }, { @@ -74532,19 +74530,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x393c8a14, 0x1da7b185, 0xf4e5794d, 0x3ec55db0, 0x5271f1ae, 0x2a715d35, 0xaa8b5e6e, 0x8de2bffb, 0xd11c8308, 0x96464043, 0x6b5d3a9d, 0x88132805, 0x8d76c287, 0x86e665b1, 0xf24baabf, - 0xb8f234af, 0x0001da, 00000000 + 0xb8f234af, 0x0001da }, { 0xdc8f1698, 0xd4af3fc3, 0xec84d504, 0xfa892d9, 0xa5bfd77f, 0xc92e131b, 0x3f8d0c5b, 0x5efd217, 0xb2777e3, 0xf115e1a8, 0xa8b3a42e, 0x4b265b53, 0x28812c44, 0x941770cc, 0xea7b29d4, - 0xf0ba7497, 0x0001d3, 00000000 + 0xf0ba7497, 0x0001d3 }, { 0x63833c9, 0x5171bfa1, 0x3ec834ea, 0xf7523bc4, 0x958ab84d, 0x5a5504cd, 0xc59014c3, 0x71937e34, 0x1a3821cc, 0x758919fe, 0x96926a77, 0x56f54e12, 0xcb64155c, 0x103791be, 0x4c243d67, - 0xe06e47ff, 0x000001, 00000000 + 0xe06e47ff, 0x000001 } }, { @@ -74552,19 +74550,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb92c0e72, 0xf0f6dd48, 0x21e6b08f, 0xd018b908, 0xff7727e3, 0xb903d955, 0x3e29870c, 0x91f3690d, 0x33f6f73, 0x17eca945, 0xd6c9a697, 0x9d68321f, 0xe4990116, 0xf1bf4d01, 0xa8367fc2, - 0x53f9d7aa, 0x000038, 00000000 + 0x53f9d7aa, 0x000038 }, { 0xba6cd525, 0xde1ef37f, 0x20b2ab55, 0x775a0c5f, 0xdc84be, 0x8fbb600c, 0xb28c42c5, 0x21c719c1, 0x6dcdf447, 0x5dace12b, 0x26f93f35, 0xa1ca0246, 0xbf8f8499, 0xec861db3, 0xc5a6fd42, - 0xfa33f71b, 0x000196, 00000000 + 0xfa33f71b, 0x000196 }, { 0x9dc62b12, 0xc6544dbc, 0xd43db62a, 0xb7ff50ca, 0xda31731b, 0x347f18b0, 0x1a0cfac6, 0xab5f0d72, 0xb02f84a5, 0xc72cd30, 0xea012d8b, 0x7866f3c5, 0xd43d1f29, 0x494c8630, 0xf7a52847, - 0xb280b25b, 0x0000d3, 00000000 + 0xb280b25b, 0x0000d3 } }, { @@ -74572,19 +74570,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7a547c4, 0x13791b5c, 0x69f36499, 0x3f0cac47, 0x6c1f830a, 0x7d4b0e4e, 0x1abc228e, 0x63a3335, 0x42a11fad, 0x4e4c13ae, 0x42ce5b6f, 0xbabda962, 0x31060e32, 0x56a8f860, 0xce3e1a4a, - 0x45afdc00, 0x0000c8, 00000000 + 0x45afdc00, 0x0000c8 }, { 0x87c30933, 0x8fef0ee8, 0x537e6a17, 0x7fc09762, 0xedb1b6dd, 0x18bbaf05, 0x94c7d29b, 0x90715cf3, 0xe174c861, 0xb058076f, 0x2559f67a, 0xf66645f9, 0x310a3bc3, 0x66aba416, 0x310030f0, - 0x7017fa74, 0x0000f0, 00000000 + 0x7017fa74, 0x0000f0 }, { 0xe3a0d7b6, 0x54aa7a26, 0x1dbf594e, 0xae34fa75, 0x18e8ba98, 0x87571377, 0xba307fe0, 0x53db6930, 0x63112948, 0x13d8f511, 0x8aed80d9, 0xef24cf08, 0x9e14681b, 0xff27f77b, 0x7677edf5, - 0xeb7a8b75, 0x00017f, 00000000 + 0xeb7a8b75, 0x00017f } }, { @@ -74592,19 +74590,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xed6e9241, 0x34844d70, 0xf78b88c, 0x5ffc0564, 0xd4affb1b, 0xdd55cc9d, 0x6c10b077, 0x17915bad, 0x9b85a45e, 0xfbef8c74, 0x83933744, 0xe298bdbb, 0xcd0adf77, 0x9b80c5db, 0x97cc234c, - 0xf8b9a323, 0x000147, 00000000 + 0xf8b9a323, 0x000147 }, { 0xf6ca5cb6, 0x7cd1c783, 0x75110e73, 0x288cabf4, 0x3c5969e0, 0xab49b06, 0xca7a86f3, 0x84f3778f, 0xdca5709a, 0x34d6cfd, 0x5fe96b0e, 0xb1ab36d0, 0x2279e140, 0x79241f13, 0x8e5caace, - 0x816b738b, 0x0001bf, 00000000 + 0x816b738b, 0x0001bf }, { 0xa52b22f6, 0x3d662f33, 0x8215cf81, 0x9a78e403, 0x3e2eaf89, 0x42b52606, 0x38625db8, 0xbae3f9be, 0x75841f6, 0x51acfd93, 0xf5e70f2f, 0x8ed20794, 0xa5dfd7e3, 0xb7aadd1b, 0x53fe1348, - 0x2b015e2a, 0x0000eb, 00000000 + 0x2b015e2a, 0x0000eb } }, { @@ -74612,19 +74610,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x58fb0633, 0x4c362be0, 0xac31b65e, 0x25aaf76, 0x692bf117, 0x1d670cbb, 0x6922650b, 0xd97c9384, 0xc1f85355, 0x6690a29a, 0x5c877360, 0xa7c6f25, 0xd4ed61e9, 0x8e2e70bb, 0xb458bacd, - 0xb024d0c1, 0x0000db, 00000000 + 0xb024d0c1, 0x0000db }, { 0x2f01756e, 0xe8be5af8, 0x2f5f3876, 0xe6261e69, 0x5c62e245, 0x1aed90c0, 0x5c2ef678, 0x48086aa4, 0x39650c23, 0x5b6f2575, 0x91dbff90, 0x59667210, 0xdef11083, 0x9bd01bce, 0xef52fe4f, - 0x83ddb7f, 0x00017e, 00000000 + 0x83ddb7f, 0x00017e }, { 0x5febe70e, 0x886e5e1f, 0x76fbfbcd, 0xc3bbbee0, 0xcbb480a3, 0x3b6082f7, 0xe40e07b, 0xc728fa44, 0x22354fcb, 0x95306088, 0x36ddd46f, 0xf2f2843d, 0xc2d16fc8, 0xc5252d8e, 0x9092bef2, - 0xf8dd727e, 0x0000c6, 00000000 + 0xf8dd727e, 0x0000c6 } }, { @@ -74632,19 +74630,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xceb60254, 0xc70564a0, 0xc18a33d3, 0x73015c22, 0x991cfc1d, 0xff99ea5d, 0x19f0ec24, 0xf87712cb, 0x2fb26c15, 0x242468ed, 0xb35f1043, 0xef967b60, 0x552413bb, 0xe4cb3c88, 0x3d228450, - 0xe4f356a2, 0x000068, 00000000 + 0xe4f356a2, 0x000068 }, { 0xc3ca5426, 0xc7d53567, 0x1dab8ae0, 0x7cf06c35, 0x649de0, 0xec7c4cca, 0x1d057375, 0xc0449e47, 0xcf8d09f3, 0xd0d2e4f6, 0xea566a2a, 0x51735597, 0xa291e6b1, 0xd252f550, 0x95cf3601, - 0x9f1fb8f5, 0x0000d8, 00000000 + 0x9f1fb8f5, 0x0000d8 }, { 0x9cb02f59, 0xad11c32f, 0x48e255c2, 0x56f4d7ce, 0x26ad6c7c, 0x230bb33f, 0xc9dac0ba, 0x3d8c3627, 0x42494754, 0x7d9c6f70, 0xc9383d07, 0x2a854bc1, 0x81c0800c, 0xaabe0908, 0xd236474, - 0xcd0519e8, 0x0000d7, 00000000 + 0xcd0519e8, 0x0000d7 } }, { @@ -74652,19 +74650,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x279999f, 0xa2eac8f9, 0xa1e532d2, 0x4c1ec1c5, 0xdf1560ae, 0xa3d7e4e1, 0xa1b451da, 0x446d72a8, 0xb1bddfef, 0xb230a128, 0x86faced, 0xf5bb4d4b, 0x6144b333, 0xbcade27c, 0xfcc86dbc, - 0x694148f4, 0x0000c1, 00000000 + 0x694148f4, 0x0000c1 }, { 0x4a9433b, 0x12d02ae7, 0xb649906d, 0xb41e7b82, 0xa2351b79, 0xe8212557, 0xab00293d, 0x25ee50ee, 0xf03e0acc, 0x820e800a, 0x95fceb46, 0x9a09557a, 0xa1fd68e6, 0x465887f9, 0x36aa332e, - 0x4934e69f, 0x0001f2, 00000000 + 0x4934e69f, 0x0001f2 }, { 0x703df30c, 0xb675165a, 0x609d50c5, 0xe0c30812, 0xd34018d6, 0xb709a199, 0x7d8bc968, 0x49666858, 0x71c84fa0, 0x2a338dd3, 0xec7a49f5, 0xd46372a0, 0x4a2480cd, 0x2c172bff, 0x63889a06, - 0x446050d2, 0x000199, 00000000 + 0x446050d2, 0x000199 } }, { @@ -74672,19 +74670,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x263536bd, 0xcbdeab5, 0xa525cd01, 0xacb07d5c, 0x724e1c5, 0x957e8c8f, 0x7236f3e4, 0x33a6f6b8, 0xb80fab11, 0x9cd29279, 0x63d50367, 0xe23062ea, 0x129e12b9, 0x6e832b6a, 0xddd8b515, - 0x314abd90, 0x00008d, 00000000 + 0x314abd90, 0x00008d }, { 0x73b928eb, 0xf77b4b55, 0xd017e09d, 0xf9c88cbc, 0x617c157a, 0x3ae59d52, 0x2d5b3877, 0xe852392d, 0x9a7706ed, 0xec24816c, 0x991797a0, 0x369817cd, 0x2eb5e768, 0x6a0ebb8d, 0x5cf3bac8, - 0x61f72947, 0x000174, 00000000 + 0x61f72947, 0x000174 }, { 0x2d10fe3b, 0x3d2eabdf, 0xf3f47cc6, 0x763c6007, 0x189cfdfe, 0x88209819, 0x473c8fd1, 0x1b102a2f, 0x65037ce2, 0x5cb719f5, 0xa5637269, 0x5d3975de, 0xab85099c, 0x461acee1, 0x735dd26d, - 0xdff4c258, 0x000096, 00000000 + 0xdff4c258, 0x000096 } }, { @@ -74692,19 +74690,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xac9a7068, 0x1ae40ebc, 0x63436518, 0x5a566b0d, 0x9b25e107, 0x99a28c39, 0x215efb95, 0xf9a798fe, 0xbe48268e, 0x733db870, 0x7708721f, 0x8c2ec27d, 0x5a6a808a, 0x580d784e, 0x4d937f92, - 0x748646fd, 0x00017c, 00000000 + 0x748646fd, 0x00017c }, { 0xaae49650, 0x2ffdf700, 0x32101952, 0x594293e3, 0x25cdda58, 0xab8a7829, 0xad141365, 0x4948b94e, 0x62c845af, 0x8125d01d, 0x64680ff5, 0x4b936974, 0xbbc3a6f8, 0x2db5ad46, 0x51374291, - 0x442cdd6a, 0x0000d0, 00000000 + 0x442cdd6a, 0x0000d0 }, { 0xa507ea51, 0x587725f9, 0x3537fd62, 0x5b7d9b0c, 0x4ccb49dd, 0x709e6a35, 0xa982729, 0xc40bfe26, 0x2cb48824, 0x4e9f3eb2, 0x75e2cbe6, 0xa1ced358, 0x3217e801, 0x40413c2, 0x90c18942, - 0x93f1edec, 0x000134, 00000000 + 0x93f1edec, 0x000134 } }, { @@ -74712,19 +74710,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4d59d7e7, 0x37591e3c, 0x2fcc3374, 0x75772491, 0x1aa95068, 0x4d55aaf3, 0x37498ba9, 0x86dbf019, 0xed3b5e7b, 0x50fbd5d2, 0xe35f97c3, 0x65d28a7f, 0x849f4075, 0x44e394a1, 0x331a1be9, - 0x59e3568, 0x0001d7, 00000000 + 0x59e3568, 0x0001d7 }, { 0x3c3189a3, 0x8dd39a44, 0xee434ff1, 0x1d40ae87, 0x456375be, 0x52807c20, 0xe97e47e2, 0xcaa677b4, 0x8b16e413, 0x61577cb2, 0x9dedf43c, 0x3383f877, 0x1da9c5f8, 0xf784fdd1, 0xdeb65b72, - 0xb990b593, 0x00005c, 00000000 + 0xb990b593, 0x00005c }, { 0xb88d68e, 0x7c26da3c, 0xfe3ad6fa, 0x9443fac0, 0x65f9291f, 0x9cbe31be, 0x7612dd22, 0x56856630, 0xcbd8e494, 0xf861c0ce, 0x931280e8, 0xafb8cc6b, 0xf73b5947, 0xbdba888d, 0x1374c680, - 0xfb6751c7, 0x000004, 00000000 + 0xfb6751c7, 0x000004 } }, { @@ -74732,19 +74730,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x517c853f, 0xe87736c0, 0x5f12e8f2, 0xf33b61da, 0x284292ce, 0x93692525, 0x2f0be6d6, 0xf7a6e279, 0x75ac6446, 0xda48f3d3, 0x2be23467, 0xbc3b6204, 0x314ad278, 0xc16355f8, 0x451df610, - 0xc0bdd22c, 0x000042, 00000000 + 0xc0bdd22c, 0x000042 }, { 0xd65b0b52, 0xbfedc62b, 0x1130bfbc, 0xfd3cee28, 0xf54983d8, 0xdbc0eeb6, 0xcc3b7d49, 0xeda2a910, 0x838fde3a, 0x6530f55e, 0x969bd442, 0x510f566e, 0xdbac550f, 0xa10f141f, 0x69d3b084, - 0x2503f982, 0x000106, 00000000 + 0x2503f982, 0x000106 }, { 0xfd29508d, 0xa09ba6c, 0xdbe7e20c, 0x3f980cbb, 0xf5b2ea4d, 0x42a480da, 0x4cbf684a, 0xddb2c20, 0xfbd4636b, 0xdc2728db, 0xbe1f2da7, 0x2ed4cb53, 0xbf277b17, 0x5c688e9f, 0x4638856f, - 0x9a77775c, 0x000182, 00000000 + 0x9a77775c, 0x000182 } }, { @@ -74752,19 +74750,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9297025b, 0xcc3b7cca, 0x5c34d7e0, 0x60b62fa6, 0xe26d69c6, 0xce898e2c, 0x7c8ff6f7, 0x1d9687a7, 0x92f7b4d6, 0xdf52e6fa, 0x8dfd624, 0xb20b1b2c, 0x9179b957, 0xcd6aef05, 0xd2592cda, - 0xf9f54cc8, 0x0001fe, 00000000 + 0xf9f54cc8, 0x0001fe }, { 0xc5230fa1, 0x5e2c9471, 0xf22e4696, 0x52861d98, 0x5fec7c29, 0xda79b441, 0x6da123b7, 0x7093cf31, 0x27dfef3f, 0x5106887, 0x4f920eb, 0xc1a3073b, 0x8f1f8ee4, 0x59c86028, 0xbd84e01b, - 0x8d7506e1, 0x0000bb, 00000000 + 0x8d7506e1, 0x0000bb }, { 0xd905c05e, 0xf8f0004e, 0xd6a4151a, 0xff80b3e1, 0x59179c2a, 0x3fe2092d, 0x8ae64154, 0x9f593247, 0xe99574ba, 0xd4a13a1c, 0xa3a1f989, 0x6cdb5fdd, 0x90e97e32, 0xf6c361a4, 0x178c8467, - 0x5deb67b5, 0x000176, 00000000 + 0x5deb67b5, 0x000176 } } }, @@ -74774,19 +74772,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x75248c9d, 0x8722e08c, 0xe984b95b, 0xd389b70, 0xdb34ce03, 0xf2cbdbef, 0xb58eb996, 0x2c06a975, 0x2ee8742, 0x833d026b, 0x5a14e20f, 0xcac95176, 0xf44c048a, 0x7c98008b, 0x46a99fcc, - 0x2ac310b3, 0x000027, 00000000 + 0x2ac310b3, 0x000027 }, { 0xf772c389, 0x9d9dbde0, 0x4d546ea1, 0xfeab6c93, 0x5cc36ac2, 0x70e9e46f, 0xe1d4744f, 0x954ea46f, 0xbf64cfe5, 0xfb346335, 0x76badbcf, 0x6f7ee830, 0x29a5b852, 0x74567e61, 0x14d983e5, - 0x26645a5e, 0x00016a, 00000000 + 0x26645a5e, 0x00016a }, { 0xed211a, 0x5eccb279, 0x81ab9016, 0x27bd376f, 0xec848974, 0xce475537, 0xba8b5e3, 0x1e7660a, 0x163a9af1, 0x2865c5ca, 0xb0a9832d, 0x7be8ebce, 0xdc93c486, 0xe2de7f2, 0x216b2ade, - 0x19c28c9e, 0x000181, 00000000 + 0x19c28c9e, 0x000181 } }, { @@ -74794,19 +74792,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1bb1f056, 0xc7a70fce, 0xabb1eb7c, 0x942ad09a, 0xd9ace00d, 0xed49139d, 0x9b222b3f, 0x546be7e8, 0x4e1b2223, 0x3b4dc82c, 0xcfc017ba, 0x1f722540, 0xf52b3bc9, 0xd998afa, 0x61d7b7ca, - 0x9ddf3634, 0x000125, 00000000 + 0x9ddf3634, 0x000125 }, { 0xa24cd957, 0xfc17a44a, 0xe11456f7, 0xd75ed971, 0x947ca41d, 0x2f3c74b3, 0x2cd7358c, 0x1ac2d024, 0xd7155a60, 0x21adf793, 0x35aaee28, 0xc6cc6910, 0x9b24e780, 0x7f82abfd, 0xf7564404, - 0x5420e472, 0x000046, 00000000 + 0x5420e472, 0x000046 }, { 0x92b65a25, 0xb989e8f1, 0x2227d017, 0xbf795654, 0x4789bc47, 0xbabf2ac, 0xc01b3741, 0xcc83d7e8, 0xcee957bc, 0xa4a21c69, 0x75168958, 0xc6b187bb, 0x365a5b2c, 0x5554f92a, 0x3cbc735c, - 0x1beca29d, 0x000109, 00000000 + 0x1beca29d, 0x000109 } }, { @@ -74814,19 +74812,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xadee896a, 0x18528be7, 0xb5782d82, 0x8cd4285b, 0xcb2cb097, 0xed5dabb, 0x1cf81ec2, 0x31d3bcc0, 0x4b377b30, 0x45d22a87, 0x29eaf644, 0x400d54da, 0x2f2ed003, 0xdc92fe5b, 0xc192d111, - 0x69c30fc7, 0x0000de, 00000000 + 0x69c30fc7, 0x0000de }, { 0x8c01b649, 0xdf455dfc, 0x41cca870, 0xfddc6c4d, 0x9e231a77, 0x7634fe4f, 0xa55f073f, 0x9983aa4a, 0xd861bfac, 0x33950972, 0x3d63d51d, 0xeba1c6fa, 0x33695489, 0x5395718b, 0x661eec39, - 0x6009fd8a, 0x00000a, 00000000 + 0x6009fd8a, 0x00000a }, { 0x505cbc31, 0x1d9c8d2a, 0x58396878, 0x8afc2a38, 0x9dbe0ab0, 0xc1805132, 0xdbfcc41, 0x29382c2d, 0x892afd0e, 0xbf2238d6, 0x75f06c, 0x9edac8ab, 0xf00874d6, 0x18d6cc9a, 0xdfce22d, - 0x466175af, 0x0000f1, 00000000 + 0x466175af, 0x0000f1 } }, { @@ -74834,19 +74832,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49fa1cb1, 0x422ff67, 0xe0fbafdc, 0x49d32d94, 0xd2e8fdc1, 0xe8aef468, 0xd168343a, 0xb2a37e1b, 0x25c56364, 0x49fc6e20, 0x320e7c3f, 0xf25995e, 0x8131bfce, 0x5d7d965c, 0x242005ce, - 0xe285169e, 0x000122, 00000000 + 0xe285169e, 0x000122 }, { 0x1f301a0e, 0x25b8c4df, 0x1d0790b8, 0xed3e0358, 0x9930f8d6, 0x9ed63f77, 0x58332251, 0x12a7ea83, 0xef208ee4, 0xc16d9bbf, 0x93e555dc, 0xca863ce0, 0xf6d250ec, 0x83034be7, 0x1a970584, - 0xb2156638, 0x0001cd, 00000000 + 0xb2156638, 0x0001cd }, { 0xcae571f2, 0x79a14b8d, 0x8537145a, 0x9a938b47, 0x5f623fd5, 0x6604f2a7, 0x80f155fc, 0x83933881, 0xcefb22db, 0x21c6d59b, 0xee6cfe02, 0xcf25bf14, 0x1da086f3, 0x80ea2dfb, 0x5f6e9c07, - 0xc74609e7, 0x00004c, 00000000 + 0xc74609e7, 0x00004c } }, { @@ -74854,19 +74852,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x891e295e, 0x198deff, 0x91ae6400, 0xc930cc88, 0x6cddb9a9, 0x42499d7e, 0xa93f2d9a, 0x561fe159, 0x53fc6c19, 0x413c8407, 0xb546db60, 0x81df7c53, 0xbd154947, 0xf15a514a, 0x42bd5b2e, - 0x770d656c, 0x000075, 00000000 + 0x770d656c, 0x000075 }, { 0x332ffebb, 0xca17154e, 0x7e5d746e, 0xa9e94a71, 0xab3f7b6f, 0xc9b09337, 0xd8bb55cf, 0x2b469663, 0x5b7f58b3, 0x9136aa6f, 0x73e13a5b, 0x4992a6df, 0xff0f57fc, 0x9512c0f5, 0x31be3e53, - 0xb27c047b, 0x0001f6, 00000000 + 0xb27c047b, 0x0001f6 }, { 0x5ced8e71, 0x687f2ce1, 0x6c0aed2c, 0xd3e2d352, 0x765204b3, 0x70f72dfc, 0xb7d1ae76, 0xaee8621a, 0x1b6890b4, 0xcbe53782, 0xbe0b4284, 0xdcac385, 0xa29d2168, 0x81634df6, 0xf3f1f2fe, - 0x5c49832b, 0x0001a0, 00000000 + 0x5c49832b, 0x0001a0 } }, { @@ -74874,19 +74872,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9f1ec57c, 0xf679c0d7, 0xb2bb1d97, 0xd99b048, 0x2ee16eb6, 0x3effe69, 0x4c9e40d6, 0x65a92acc, 0x18b2be09, 0xa8ba55ac, 0x97edd28c, 0xad9b0c33, 0x6556d5f4, 0x942bca18, 0x81f19b35, - 0xda47a2be, 0x0001dd, 00000000 + 0xda47a2be, 0x0001dd }, { 0xf03f8527, 0xa7e48941, 0xf8a81952, 0x8a6ca5da, 0xfeb80044, 0xca73ce55, 0x413fd08, 0x32f96b85, 0x3239f0b1, 0x7c48421, 0xb0d7bc76, 0xa6f590a6, 0xf6e8c5bb, 0xbdcd3188, 0xcf0458c6, - 0xf5e2eb0f, 0x00011c, 00000000 + 0xf5e2eb0f, 0x00011c }, { 0xf6322aa8, 0x418ccc96, 0x835287b1, 0xce972749, 0x9b56d20e, 0x7116f0d, 0x35bdcd4c, 0x9a734415, 0xaa93cdde, 0xceba7289, 0x1a31ab33, 0x7a0d2e2c, 0x92805803, 0xc25efbd2, 0xb8823d76, - 0x245651b6, 0x00013f, 00000000 + 0x245651b6, 0x00013f } }, { @@ -74894,19 +74892,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd8414cb6, 0x6816156, 0x4ba19b7c, 0xd61c64eb, 0xdfdb07aa, 0x8a487354, 0x21db6ff8, 0xf52332f3, 0xab95c560, 0x8bdafb11, 0xb4693749, 0x12b6d267, 0xf531cf70, 0xb31101f4, 0xb963527d, - 0x806b33f2, 0x0000e9, 00000000 + 0x806b33f2, 0x0000e9 }, { 0x4aa08f76, 0x78c63263, 0xd800bdf2, 0xf1a846c, 0x24d7d234, 0xe9fe2f6e, 0x56874b11, 0x82f88994, 0xf869a96f, 0x55962fcb, 0xa1f272a3, 0x1e85c3af, 0xd933b69c, 0xfd4a4bc6, 0x260b63f8, - 0x1d0e619f, 0x000169, 00000000 + 0x1d0e619f, 0x000169 }, { 0x6783f76, 0xe7d074c7, 0xf4879c0a, 0x2e93b677, 0xa1b8f75a, 0xafdafc09, 0x85d93524, 0x9a8c41ef, 0x17355866, 0x61b44bc3, 0xc7d073c7, 0xb4c298d5, 0x55662a76, 0x63c75b49, 0x259713d8, - 0xbae90d28, 0x000145, 00000000 + 0xbae90d28, 0x000145 } }, { @@ -74914,19 +74912,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xecce0531, 0xa9595268, 0x8a1230d3, 0xf4b594f, 0x792ceb88, 0xc22788d9, 0x867eca00, 0x797a0205, 0xc1f197aa, 0x269ff97, 0x94502d82, 0xede57f88, 0x4363371, 0xf84a3239, 0x5d6e966e, - 0xcaac1d19, 0x0000c0, 00000000 + 0xcaac1d19, 0x0000c0 }, { 0x1ac1cc75, 0x8efb86dc, 0xd378bd5c, 0x75ef28b1, 0x2d3a50fb, 0x5844e142, 0x349d9911, 0xee7aa2fa, 0x2415dabc, 0xd03669eb, 0x6636ee76, 0xf769b541, 0xf1a261d6, 0xe70d6422, 0xf8bab951, - 0xfe3ba799, 0x00009e, 00000000 + 0xfe3ba799, 0x00009e }, { 0xd7a0c79d, 0x4590df76, 0x4fdd9c4e, 0xf722b55b, 0x62e7720e, 0x3a080da9, 0xd69561d9, 0x2e94dcba, 0x702f245a, 0x9b20d650, 0xa26d402e, 0x63387a65, 0x6aafbf87, 0xdd3c242, 0xc354b5e7, - 0x604ce75f, 0x0001db, 00000000 + 0x604ce75f, 0x0001db } }, { @@ -74934,19 +74932,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8b3bbdb9, 0xf2010c35, 0x274bf9da, 0xe086681a, 0x49ed170f, 0xe0cc482a, 0x559a17b2, 0x95efd34d, 0x54904005, 0xbddb4884, 0x216bb642, 0xed86e6ee, 0x2d37db76, 0xe4e45069, 0xb08b63c7, - 0x8cac9480, 0x000010, 00000000 + 0x8cac9480, 0x000010 }, { 0x39a6b75a, 0x8e45f3f4, 0x610baa41, 0x80a04c69, 0x4ae082e3, 0x7f2b5cf6, 0x48bed0b3, 0x33a13fe4, 0x30cdd0ea, 0x7afcdfd0, 0x1ed9a658, 0x3e39e805, 0x838924fe, 0xb65e38c9, 0x708322f1, - 0x327ea882, 0x000119, 00000000 + 0x327ea882, 0x000119 }, { 0xbfb4c789, 0x5fe126ac, 0xde28637a, 0x77293560, 0xe2bf8817, 0x24f49766, 0xf8c443bf, 0x3d194c99, 0x5b70e178, 0x1850ee78, 0xf71cbf19, 0x81872cb5, 0xc1a785ba, 0x57c175f4, 0x860dd37d, - 0x5c9797e7, 0x000058, 00000000 + 0x5c9797e7, 0x000058 } }, { @@ -74954,19 +74952,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xebc664fe, 0xb3efa48e, 0x697e6809, 0x30ab7784, 0x491e3fde, 0x90c4d6f9, 0xf3b76508, 0xa6dd96ff, 0x7530d966, 0xe7adb01f, 0x8a14f646, 0x53e2f47, 0x7d2ccb4a, 0xb05016ff, 0x2179ed36, - 0xe7125761, 0x000015, 00000000 + 0xe7125761, 0x000015 }, { 0xdf3a5bcf, 0x3ebc2402, 0x325028db, 0xe1168e40, 0xde0dab35, 0x60504d5f, 0x1deacf2e, 0xa929ce28, 0xf5ca847f, 0x8c755064, 0xc0672ee2, 0xbebb8d5e, 0x3b470036, 0x1d7e0ef7, 0x7d7d5ece, - 0x19d808f, 0x0001c7, 00000000 + 0x19d808f, 0x0001c7 }, { 0xb39c92b1, 0x87697a5a, 0xbcfde9be, 0x141779f3, 0xcadcbf29, 0x4f3bcedf, 0xc3281e4a, 0xc4e5b185, 0x7a32924c, 0x45dd1412, 0x19c755b6, 0xe29073fb, 0x5951c934, 0x6827b36e, 0x5fc04f28, - 0x5676fe24, 0x00003c, 00000000 + 0x5676fe24, 0x00003c } }, { @@ -74974,19 +74972,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7799618e, 0x1e02740b, 0xed124e, 0x9ce75042, 0x5da54af5, 0x4a6cd4d0, 0x2cb322f9, 0x9102e7cf, 0xc3d10b53, 0x1c425374, 0xd97d322f, 0xdb7eb7f1, 0xd68cbe01, 0xae39d10b, 0x18acf93a, - 0xab5e29ce, 0x0001e0, 00000000 + 0xab5e29ce, 0x0001e0 }, { 0x865d4e5f, 0xd79a6220, 0x29820852, 0xb7f774fc, 0x4d1299fa, 0xf7f28b72, 0x69a89063, 0xf80adc6b, 0xcd134a45, 0xc6b4cdf1, 0xacb4e63d, 0x8aa823a5, 0x6fb643dd, 0x5e4f02a4, 0x1e058c38, - 0x15ed95e4, 0x0001a4, 00000000 + 0x15ed95e4, 0x0001a4 }, { 0x1b6a13b5, 0xb1b2ed42, 0x4f5ff210, 0xd2c8b8f6, 0xc34e5a73, 0xe8b8fab9, 0x52c4d997, 0x4d04d702, 0xeef77c99, 0x4330a27, 0x74ecbd8f, 0x7e0d3b51, 0xf037acec, 0xd5282f43, 0x2707325, - 0x8a8f9341, 0x00017a, 00000000 + 0x8a8f9341, 0x00017a } }, { @@ -74994,19 +74992,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x967ae47b, 0x5ddc8d6a, 0x614b991f, 0xf2491b44, 0xae709a32, 0x86d40a5e, 0x41812985, 0x7c513ea, 0x658dab19, 0x1f659a15, 0xa9d38bc4, 0xb458688, 0x57d70eef, 0xecc43ed6, 0xec85ad14, - 0x744dba2e, 0x0000e4, 00000000 + 0x744dba2e, 0x0000e4 }, { 0xb808668e, 0xe878a56, 0xc8e69d91, 0xee11f9d, 0x80d3454, 0x3df7a198, 0xb61ab502, 0x76db65b1, 0x50d1953f, 0x16aaec39, 0xefe5c9bd, 0x1c6dc215, 0xfeba3daf, 0xfc9b8092, 0x2417624a, - 0x9fa90c78, 0x000087, 00000000 + 0x9fa90c78, 0x000087 }, { 0x92643e66, 0x24a75909, 0xc0905d1b, 0x2e875479, 0xac69897a, 0x3d5ded7f, 0xa607ba34, 0x992781e1, 0x89a703ba, 0xee77dc8d, 0x85e61916, 0xb5f05898, 0xf407debe, 0xab55eb13, 0xa10c679e, - 0x19870261, 0x000156, 00000000 + 0x19870261, 0x000156 } }, { @@ -75014,19 +75012,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc1431bcb, 0x18e81eda, 0xe3ccb69d, 0x937e6450, 0x8eeb7b19, 0x22b56e01, 0xe02b7a1b, 0x33abf6ed, 0xe1aae4f6, 0x768f713e, 0xb09f02a5, 0x77954142, 0xe2617680, 0x1271243d, 0x2661ddd9, - 0x21255caf, 0x000002, 00000000 + 0x21255caf, 0x000002 }, { 0x7e0f2bd3, 0xa69aa28c, 0xf0ed9199, 0x86618ad0, 0x4e0d97d8, 0x1ef53159, 0x99ea4f84, 0xfed30250, 0xbc4827d4, 0xb661dba8, 0x429f2c8, 0xc7bacf92, 0x3f897b8b, 0xbc2557b7, 0x4b031178, - 0x1ea83681, 0x0000ae, 00000000 + 0x1ea83681, 0x0000ae }, { 0xadda8f4f, 0xa5822368, 0x4c8a0fc9, 0xfd16906e, 0x1bc363ef, 0x70a66420, 0x6ef200da, 0x1162c708, 0xabdcd70d, 0x1998bcdc, 0x23b834d6, 0x43b7a3a8, 0xffd94d1f, 0x95c9b44, 0x246e39b0, - 0x602944f7, 0x0000fc, 00000000 + 0x602944f7, 0x0000fc } }, { @@ -75034,19 +75032,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5bd144d3, 0x68332212, 0xdd80e65e, 0x3a37e9ea, 0x77725fde, 0xc8fd64eb, 0x40e405da, 0x98b3deb1, 0x5ad404f9, 0x40e14ae5, 0x1d3e571e, 0x8fb0c822, 0x1bd86775, 0x7b08072, 0x6a358c05, - 0x5b5759e5, 0x000046, 00000000 + 0x5b5759e5, 0x000046 }, { 0xf32be061, 0xc48219e0, 0x1c71ced9, 0xfe4bfdc, 0xe16ddee4, 0xe1437300, 0x3c7375e1, 0x51f8e967, 0xcc55ea7b, 0xc2a76964, 0xde2a4eb6, 0xbebdc718, 0x34105f0, 0xfeeb60f8, 0x9679a039, - 0xa6f4cafd, 0x00014f, 00000000 + 0xa6f4cafd, 0x00014f }, { 0x9baec341, 0xf814aa10, 0xbcde7013, 0x17eea650, 0xcf1519a4, 0x71cc67c9, 0xcb044b3e, 0x44d63b23, 0xd22371ae, 0x7a6785ae, 0x61378d7e, 0x240a8d35, 0xd95169ee, 0x3d555a88, 0x3dae7af2, - 0x61ae3c2f, 0x000110, 00000000 + 0x61ae3c2f, 0x000110 } }, { @@ -75054,19 +75052,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2f95e904, 0x25b93adf, 0x3fdf41d8, 0xcb0970a3, 0x624a9a24, 0x9061fb6d, 0xd89b60f2, 0x9ea28cc7, 0xa266f0ee, 0xf6406abc, 0x37c7d817, 0xd4f5c58a, 0x83bae366, 0xb5fe2ad8, 0xae5e6253, - 0xcb440490, 0x0000f3, 00000000 + 0xcb440490, 0x0000f3 }, { 0xec00e0de, 0x13c15e1f, 0x11e6dfc6, 0x8489e2a7, 0x750aebb0, 0xf8d83d5b, 0x8ca84d22, 0xf76c1362, 0x18c6193c, 0xf2ea2501, 0xe2c07c7b, 0x10c40392, 0xe2e161db, 0x124edacc, 0xcac3f5d3, - 0xb0fa254d, 0x0000c2, 00000000 + 0xb0fa254d, 0x0000c2 }, { 0x5f5d7fda, 0x14a77612, 0x45b973a, 0x377c9999, 0xa0be2ce0, 0x88cfd9c5, 0xbaa09185, 0x7bd2f38f, 0x5be07f50, 0xb0c40077, 0x3945e758, 0x750fd2a6, 0x344f9937, 0xd73a11a9, 0x7aaa3452, - 0x416e2e9c, 0x00006b, 00000000 + 0x416e2e9c, 0x00006b } } }, @@ -75076,19 +75074,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7597a212, 0xea057701, 0x921e5b75, 0xeb6bd00a, 0x22529f82, 0xe50c5705, 0x4f91e060, 0xe8e6104e, 0x105d8d06, 0x18e7a80a, 0x1cf6d406, 0x1685b87a, 0xeb8b29ea, 0xb506a87f, 0x666501d3, - 0xd6799630, 0x00006f, 00000000 + 0xd6799630, 0x00006f }, { 0xc96d60e4, 0xb973d2c8, 0xb72f3306, 0x76aadcbc, 0x3276ae24, 0x5a9cd992, 0xf81d4cdc, 0xef8771bb, 0xcb9fd4f4, 0x438dd481, 0x4f8f2f77, 0x2048d9a0, 0x717e0220, 0x69372383, 0x651cdee0, - 0xc0f65765, 0x00010c, 00000000 + 0xc0f65765, 0x00010c }, { 0x98ba20d0, 0x5423bfe2, 0xa82c4b2c, 0x43802b0, 0x63ddbca7, 0xdecf4b37, 0x2b024767, 0x1f51dd7b, 0xb571b42d, 0x2b784ff1, 0x534b099d, 0x7ad77259, 0x771dd96, 0xf1863826, 0x4161de74, - 0x70edc758, 0x00018f, 00000000 + 0x70edc758, 0x00018f } }, { @@ -75096,19 +75094,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1d58532a, 0x1f5ba22e, 0x5e76e874, 0x71826aa9, 0xb4eb0bc3, 0xf84f860d, 0x8a27ff72, 0xdf081599, 0x9642ff8b, 0x7ae36bc6, 0x67b01347, 0x612bd1f1, 0xc37e9baa, 0xe6bb3e5, 0x3552aa6c, - 0x85f5c0be, 0x0000dd, 00000000 + 0x85f5c0be, 0x0000dd }, { 0x72cb07a8, 0xdb345359, 0x546d6685, 0x38435d2c, 0xc242ab24, 0x9365816, 0xe69c7785, 0xfcacd45d, 0x8beb68a8, 0x954f99a9, 0x277adfcb, 0xc7146975, 0xef12ec84, 0x6b8f3337, 0xfcfcf22d, - 0x1622b191, 0x0001d3, 00000000 + 0x1622b191, 0x0001d3 }, { 0xab5c2357, 0x2a82c1fa, 0xde0a6617, 0x3eee9293, 0x4994cfdf, 0xff9fed5e, 0xc9a9b3c5, 0x414971c9, 0xd7e28b16, 0x46a1b807, 0x9201b0c4, 0x5dc62ad9, 0x4220660, 0x60b25aa0, 0xb6911077, - 0xa3907904, 0x000035, 00000000 + 0xa3907904, 0x000035 } }, { @@ -75116,19 +75114,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbfb08179, 0x7cfae3f6, 0xdf1fa4da, 0x60b88d61, 0x12eaf631, 0x6e8a7b98, 0x8245c9f4, 0x815ba5ef, 0x513da594, 0x43769edf, 0xbb242b8, 0xdde17fca, 0x35b96dae, 0x4402937a, 0xebe2c415, - 0x5fb39c2a, 0x0001a1, 00000000 + 0x5fb39c2a, 0x0001a1 }, { 0x4751505a, 0x5bc8effd, 0x84d6f59, 0xe7ec1689, 0x2212d2b4, 0x56bba442, 0x2694cdbe, 0xef1024a1, 0xe008628a, 0x71057cc2, 0xd2bf4618, 0x5517058d, 0x15648ff2, 0x310df70, 0xe08c4b23, - 0xe0a8810d, 0x000061, 00000000 + 0xe0a8810d, 0x000061 }, { 0x423a1fb, 0x14ecee75, 0x90318049, 0xc811e178, 0x8c066992, 0x560d53b1, 0x7a5af984, 0x6512adca, 0xe8cd47ab, 0xf4e6e153, 0x926740db, 0x8e49ae69, 0x1e9f1afe, 0x4957bc8b, 0xf9d6c83c, - 0xd3f8eae4, 0x00011b, 00000000 + 0xd3f8eae4, 0x00011b } }, { @@ -75136,19 +75134,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x141170cd, 0xa243ccd2, 0x967f33bc, 0x48e929b7, 0x76030aaa, 0x9ba7a0ca, 0xe97a1c, 0x1abca2a, 0xc6ec02f0, 0x9f41c238, 0x96af335e, 0x531c1188, 0x2bc105d2, 0x6fe0b088, 0xce4bc7cc, - 0x6992e27c, 0x0000ac, 00000000 + 0x6992e27c, 0x0000ac }, { 0x3865b631, 0x15980de3, 0xa22e74c6, 0x29f6d42, 0x7cdf41db, 0xe071371, 0x86d04813, 0xe54f4027, 0xeb670057, 0x22aa566a, 0x39725b5d, 0xc1065ab2, 0xd149a2c0, 0xf9f23c52, 0x83792f5a, - 0xc9fc8d75, 0x0000f7, 00000000 + 0xc9fc8d75, 0x0000f7 }, { 0x98b70847, 0x147ee769, 0x5c3d392d, 0x51b67573, 0x41cbbf21, 0xe61f7fc6, 0x928fa69, 0x6b725f22, 0xbfda973, 0x7d4b6061, 0x95833cf7, 0xee129cde, 0xdbbb4d81, 0xc482fecd, 0xda8e382, - 0xd6ee0ea1, 0x000104, 00000000 + 0xd6ee0ea1, 0x000104 } }, { @@ -75156,19 +75154,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a1ca37a, 0xbd409c5f, 0x6f7c2f68, 0x15c073c2, 0x9fde1aee, 0xc19dceb7, 0x7ad51408, 0x64960dde, 0x572d3ef1, 0x57e2220, 0xb319e35f, 0x5930939d, 0x8858c4be, 0x609f24ab, 0x30b1685d, - 0xb47d5e38, 0x0000b4, 00000000 + 0xb47d5e38, 0x0000b4 }, { 0x7e9b70da, 0xd952cee3, 0xb453f68d, 0x62a0c7ce, 0x6e2ae445, 0x6dcf0905, 0xf2a7eb8f, 0xfba6e083, 0x13ed2797, 0xd14cf54b, 0xefa55674, 0x74720a88, 0xd89236c, 0x2428cb1a, 0x51ac9d1e, - 0xcdac4715, 0x000075, 00000000 + 0xcdac4715, 0x000075 }, { 0x8d6615d, 0x87651a8f, 0x16e0b7a9, 0x64e877ff, 0xe4882431, 0xa168e9c2, 0x444ebbcf, 0xc1e1e101, 0xc69fe4d7, 0x2f98d432, 0xd61b009d, 0xf332f028, 0xe4cc07ef, 0x8c4610e0, 0x921b3a8d, - 0xe82146ac, 0x0001ae, 00000000 + 0xe82146ac, 0x0001ae } }, { @@ -75176,19 +75174,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3265d642, 0xc1d7cda, 0xedc6e235, 0xd8b039b5, 0x9ab7af14, 0x731145e2, 0x10ec5606, 0x3117efed, 0xf4da84e, 0x1fdbd39a, 0x8ced9fe, 0x729cd0c9, 0x41a9e370, 0x9bf1b197, 0x1e39383f, - 0x1c92d9ac, 0x00011a, 00000000 + 0x1c92d9ac, 0x00011a }, { 0x7710d83a, 0xec89b5e, 0xccb8e0e3, 0x5dae005f, 0xd3c2ae5, 0x380cc8c5, 0xb8948b89, 0x23d08fe2, 0x3fb908d0, 0x9136edb6, 0x412f1fb7, 0xaf6133aa, 0x90bc2f, 0x115f29d2, 0xfed7365d, - 0x3a270565, 0x000187, 00000000 + 0x3a270565, 0x000187 }, { 0x74a998c5, 0x5933b12f, 0x2813ff1c, 0xbf3c01ad, 0x9c00eb6d, 0x9b5cf25c, 0x57961aed, 0x83166e56, 0xfd42cd2b, 0x97610a02, 0x7f233c44, 0x24af1be1, 0x347df52f, 0x2c27dda2, 0x4f096f88, - 0x2cd5111e, 0x000187, 00000000 + 0x2cd5111e, 0x000187 } }, { @@ -75196,19 +75194,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbb1be542, 0x11e7348c, 0x7f1f946f, 0x6c8dd1b9, 0x49133a0d, 0x1e9ae601, 0xd4caa40f, 0xc400e1a4, 0x44ea6331, 0x876f279d, 0x110595ff, 0x901511d4, 0xcdfbee68, 0x4137f5bc, 0x19f3be07, - 0x6ac8b135, 0x000163, 00000000 + 0x6ac8b135, 0x000163 }, { 0x5ffad5a0, 0x835269, 0x6039e142, 0x83e52fe, 0xb588c8f3, 0xe0965400, 0x2289f561, 0xe161e9f1, 0xb6eda226, 0x78357a80, 0x7945a3f2, 0xca7dcee2, 0x574ae18d, 0x588846ca, 0x3c0cdc04, - 0x6bcd265c, 0x000111, 00000000 + 0x6bcd265c, 0x000111 }, { 0x9d53dd9a, 0x1b9876a8, 0xd8f1fcd9, 0x3959ae72, 0x547d3cc0, 0xe2ef8471, 0xdb93be4e, 0xb9172dd5, 0xc931c919, 0x614c2d1c, 0xb1eeeb7c, 0xa8d45c61, 0x9ab36308, 0x96017c6, 0x9cca2d9, - 0x63aac387, 0x0000aa, 00000000 + 0x63aac387, 0x0000aa } }, { @@ -75216,19 +75214,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x369efe2f, 0xed439fc7, 0x3126f9bb, 0x817b186d, 0x42066243, 0x2e9be3d2, 0xf1cf745f, 0x5e9a557b, 0x2b4ad919, 0xcf892629, 0x99a1f277, 0x843d91d3, 0x362c7f7, 0xab02fdc6, 0xde227e4b, - 0x459ce213, 0x0000cf, 00000000 + 0x459ce213, 0x0000cf }, { 0xeb9508ce, 0xf2ad7fb3, 0x28700ac4, 0x72a750a5, 0x46c56855, 0x2f1edf1e, 0x66df8a03, 0x5ff8e3e1, 0x7a8e0205, 0x5b3c1e04, 0xee635cf2, 0x3700d829, 0x8529eca2, 0x73ab59c9, 0xba1c96a1, - 0xd26e09c7, 0x000067, 00000000 + 0xd26e09c7, 0x000067 }, { 0x9a3e0367, 0xb8a18fa1, 0x7ad5ca39, 0x46db48fa, 0xb5468b5, 0xe04f2b0e, 0xfe6dca86, 0xf09b9007, 0x23672289, 0xef6eac36, 0xcaf9546e, 0xa29159c7, 0x8a2d28f7, 0xb33b6811, 0xa17097df, - 0xafb4e74c, 0x00010d, 00000000 + 0xafb4e74c, 0x00010d } }, { @@ -75236,19 +75234,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xad7bb59, 0xeddf0682, 0x52cdc902, 0xd77afd57, 0xfe50d90f, 0x9b8467de, 0xec1ca65a, 0xb01da8ff, 0xb8378bb7, 0x486da87f, 0x7a4ae758, 0xce17fec7, 0xd8ca70ee, 0xdbe79288, 0x44134f2b, - 0xc8c6ccb, 0x000054, 00000000 + 0xc8c6ccb, 0x000054 }, { 0xbc53c5b1, 0xa453841f, 0xa5f654fb, 0x52d4ba9e, 0xd01c2a09, 0x639f214b, 0xea868b67, 0x755bc8c6, 0x3e3d2086, 0xa23a80dd, 0x69a180e8, 0x18a698ca, 0xbb9b466b, 0xe7ab3291, 0xe2cbd013, - 0xf40f3a27, 0x0001f2, 00000000 + 0xf40f3a27, 0x0001f2 }, { 0xf9ef4c5f, 0xdff7d75b, 0x1866f51a, 0xd9dd4dcc, 0x1c3328c6, 0x5f97856d, 0xb8b8db17, 0xae4dc54f, 0xe569cd5b, 0x9b7c0d05, 0x87313a5f, 0x8a791338, 0x2322f705, 0x1df8c59c, 0xa51473c3, - 0xf5ae6690, 0x00000f, 00000000 + 0xf5ae6690, 0x00000f } }, { @@ -75256,19 +75254,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5850abe8, 0xba092bbf, 0xe3be5dc7, 0xbdaa30ec, 0x249d52b2, 0x11c3e015, 0x8fe5bef4, 0x69b5eeaf, 0xc07a21e7, 0xf20afec2, 0x217e48c9, 0x9b9b7d6c, 0x3f3aae6d, 0x5986128, 0x90d5f775, - 0x5a9345d, 0x000181, 00000000 + 0x5a9345d, 0x000181 }, { 0xfb312d2, 0xc8dfd54e, 0x9b7d06f7, 0xbb143c61, 0x39efabd8, 0xf180368, 0x5e6f8d84, 0x74bd32fd, 0x8dcbdb36, 0xc95934f5, 0x9d0fe27c, 0x877212e1, 0xafa89f24, 0xcbaedac8, 0x354ee234, - 0x7a1d73cb, 0x000154, 00000000 + 0x7a1d73cb, 0x000154 }, { 0x6f7d584a, 0x5b23b16c, 0xb3fbbb7, 0xb65648a7, 0xa7639510, 0x145de75f, 0x2df21e72, 0xc77ae633, 0xfd330cef, 0xa0490de7, 0x6f6de53e, 0x1150552a, 0xc97710e7, 0x63b587a2, 0x229a683c, - 0x1286790b, 0x00005f, 00000000 + 0x1286790b, 0x00005f } }, { @@ -75276,19 +75274,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1b9f41, 0x3f9f16e9, 0x37eb7659, 0xdc61c527, 0x9e6a2681, 0x887c6461, 0x678e0cd, 0x3e9ef451, 0x943564a3, 0xcfcd1b3b, 0xfe9e0a17, 0x391cae24, 0xea2a9b39, 0x558324fb, 0x617da402, - 0x2053e007, 0x0000e4, 00000000 + 0x2053e007, 0x0000e4 }, { 0x58118adf, 0xd29549db, 0x51d26602, 0xebd052a3, 0x69f8e57f, 0xab10071, 0xcf944a40, 0x2ffdac7b, 0xa5eb1009, 0x819b58bb, 0x8fed9a53, 0xafd546a6, 0xf307bfdc, 0xb054aec2, 0xe78df7e3, - 0x29f2c205, 0x000063, 00000000 + 0x29f2c205, 0x000063 }, { 0xccfddbfb, 0xd3c1173e, 0x41c70a4d, 0x6ebd1f48, 0x983aa052, 0xea3896b8, 0x803172fb, 0x54ea2bbe, 0x943f8797, 0xf39f27eb, 0x33a2bf79, 0xdc8847e0, 0xa64f88d9, 0xaabf7f61, 0x65c5378d, - 0x53c7c30e, 0x000121, 00000000 + 0x53c7c30e, 0x000121 } }, { @@ -75296,19 +75294,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe321bdb6, 0xcd44d8b3, 0x4e4b6c27, 0x7f51dea6, 0x213fe4cd, 0x758aed49, 0x886d4747, 0xd114a7c2, 0xa7c5b218, 0xe7d1cabb, 0xf675fb50, 0x54931b08, 0xaaa36d0, 0x9595dcd1, 0x88c54e25, - 0x9d340940, 0x0001c3, 00000000 + 0x9d340940, 0x0001c3 }, { 0x2e03caec, 0x1c0299e5, 0x478fa951, 0xdd9a7967, 0xfd607e80, 0xe7172570, 0x1667d785, 0xb3eea0de, 0x95e6d977, 0x5a421620, 0x8a15c967, 0x1fabc4a7, 0xd1630483, 0x3437e3c0, 0xf08f6027, - 0x7e70d021, 0x000160, 00000000 + 0x7e70d021, 0x000160 }, { 0x65bd29da, 0x60af45fc, 0x581b839a, 0x56fcf094, 0x4fb75bac, 0x2bf57edc, 0x916de298, 0x6a3b8a4e, 0x4fed6782, 0xa3e791f2, 0x6bc8bfc3, 0xcefd21f8, 0xa4603a7e, 0xd6ec4a90, 0xca6ad534, - 0xdafc1ee3, 0x0000ea, 00000000 + 0xdafc1ee3, 0x0000ea } }, { @@ -75316,19 +75314,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc1175e80, 0xd36532a2, 0xb2b8999f, 0x9c6939ed, 0x8e7e9567, 0xfc237bfe, 0x4aaa9279, 0x5ce9afa4, 0x9ac69f38, 0xdef42001, 0x61857b60, 0xdf997a8b, 0x29d54334, 0x23d919a6, 0x2447c4c1, - 0x231c1fd3, 0x000087, 00000000 + 0x231c1fd3, 0x000087 }, { 0x8f2b3cc0, 0xfbaf47ec, 0x57c1e846, 0x47d13f72, 0xc8e9aee6, 0xb13ddc0, 0xb86ace99, 0x164de138, 0xc3d402ed, 0xe5d4b754, 0xbf2fd30a, 0x35d524fa, 0xa5694fc1, 0xf9242f23, 0x1b5f2b56, - 0xe4bce1a8, 0x000010, 00000000 + 0xe4bce1a8, 0x000010 }, { 0x2513f6e5, 0x71551cee, 0x68566bd0, 0x8da9b7ec, 0x4aeb6f53, 0xc29bc49f, 0x91acc259, 0xb8dfb3fd, 0x8739b0f, 0x15996c6d, 0x4d6871ea, 0x72cfc525, 0xf04b5498, 0x9a933170, 0x1f51346, - 0xa2684890, 0x00013f, 00000000 + 0xa2684890, 0x00013f } }, { @@ -75336,19 +75334,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa81216ea, 0x2925dc46, 0xeded5b01, 0x456fd91, 0xab9049f8, 0x5546b95d, 0xf7ef60c6, 0x528d31cb, 0x5c1d759b, 0x75c1dce8, 0x2b7cacc4, 0xef12fc1b, 0xaa9a3824, 0x3f0ffae4, 0xc880b681, - 0xbbec9146, 0x0001a1, 00000000 + 0xbbec9146, 0x0001a1 }, { 0x6c9980d6, 0x50df0fd9, 0xa08bc534, 0xe7789bc2, 0x2dd9f964, 0xed477572, 0xe0fd825d, 0x32b39282, 0xbd7af448, 0x61961536, 0x8086a487, 0xc94468bb, 0xf772dd10, 0x5477cfe9, 0x1e6f44e, - 0xf0cc360f, 0x0000db, 00000000 + 0xf0cc360f, 0x0000db }, { 0x16d14f82, 0xc619edf3, 0x5c8bf1d2, 0x720b394b, 0x8ada7b51, 0x2589424f, 0xd45e0279, 0x9f787c9e, 0xef35170a, 0xf2b881e7, 0x192582f9, 0xfbf1a487, 0xa3eb3b92, 0xd52225b2, 0xaf8cbfd0, - 0xbea365d4, 0x00000d, 00000000 + 0xbea365d4, 0x00000d } }, { @@ -75356,19 +75354,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8d4cd7b0, 0x2c78d705, 0x9dd99d7f, 0x2940a8ae, 0x8fb20840, 0x8e22eefc, 0x2580609c, 0xff6ebf93, 0x57d2f0e9, 0xfb8cde8b, 0x4fdd06dc, 0xb102454d, 0x5293b37e, 0xba318625, 0xcdcb4fbc, - 0xe8cfffae, 0x0000e2, 00000000 + 0xe8cfffae, 0x0000e2 }, { 0x1f421553, 0x1b9657ab, 0x308a205a, 0x8dbfff8c, 0x14632138, 0x9333fabb, 0xde540d92, 0xcd2f6e58, 0x5dc00e68, 0xbf0987b1, 0x6cbfdbd2, 0x36eec24e, 0x3f9f9efc, 0xe30775cd, 0xf4d38b35, - 0x9ef7a335, 0x0001b2, 00000000 + 0x9ef7a335, 0x0001b2 }, { 0x2abb8ff6, 0xcc270847, 0x387de1dd, 0xdbb7ec2, 0x8716df81, 0xed656007, 0x86eb617b, 0x746e3002, 0x456accda, 0x925f1f5f, 0x86d41d3, 0x4e4323a4, 0x698096ca, 0x741adcd4, 0x4d364f37, - 0x6b4e6df7, 0x000120, 00000000 + 0x6b4e6df7, 0x000120 } } }, @@ -75378,19 +75376,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xec603610, 0x48e16015, 0xa474f924, 0x12d14ff9, 0x7da27c4c, 0x9b99a143, 0x2143dc7, 0xd24d245c, 0x5e7262de, 0x3cf3c8f, 0x887a915a, 0x1819a0f, 0xbe8e4b99, 0x9945a3e5, 0xb98b2e46, - 0x35807f80, 0x000021, 00000000 + 0x35807f80, 0x000021 }, { 0x1fba9339, 0xc96ed870, 0xbb556872, 0x3b88ac02, 0xc4e900bc, 0xe8d57467, 0xce0131b7, 0xf0042575, 0xc633647, 0x9c27f653, 0x38d9fa1f, 0xecf746b7, 0xf57d6103, 0x9317ae0b, 0x051bce, - 0x5cbaf430, 0x000109, 00000000 + 0x5cbaf430, 0x000109 }, { 0xae8ed97e, 0xa47660b3, 0x9b9e0e71, 0x3dfa6cc1, 0x199262a9, 0x63229102, 0x87ecdb63, 0x89b254e7, 0x77d4cf6b, 0xac464252, 0x112961fc, 0xbce8730, 0xd954346c, 0x8e41f17f, 0xae48c17d, - 0x3713effb, 0x000187, 00000000 + 0x3713effb, 0x000187 } }, { @@ -75398,19 +75396,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdfca00f6, 0xe656744f, 0x2641526f, 0xedc61e2, 0xa5b45079, 0x5dc1a308, 0x21aae72d, 0x78de026, 0xf064a6c0, 0x824d7c67, 0x548cf5dd, 0xfc533a28, 0xe8d7e5d0, 0x42316672, 0x1c88a09f, - 0xcc078d09, 0x000048, 00000000 + 0xcc078d09, 0x000048 }, { 0xd4c98750, 0xfde4168a, 0xfd73c02e, 0x15da0eb5, 0xe40d65e1, 0x895f10e3, 0x1d80c86c, 0x20e9c98c, 0xae044569, 0xcddcb719, 0x98054335, 0xe3d6bcda, 0x134031eb, 0x892f6aa1, 0x38842e2e, - 0x2445ff1, 0x000012, 00000000 + 0x2445ff1, 0x000012 }, { 0xa085b835, 0xcd5a41de, 0x6737638e, 0x641730ae, 0x2a8b6934, 0x7fe16088, 0x1850de70, 0xbf472204, 0x8aa1bd44, 0x9d3bac42, 0x7fa095f3, 0xed56a241, 0xf2dfc325, 0xf2f6e08f, 0x955cf91c, - 0x2abff271, 0x00018c, 00000000 + 0x2abff271, 0x00018c } }, { @@ -75418,19 +75416,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1deb44b3, 0x25911450, 0x6e6d2377, 0x7be2b3e, 0x778ab06b, 0xcbc86682, 0x43c6c7e3, 0xff6c1118, 0x650430a3, 0xcf7cab72, 0xcc6391ee, 0xe26158b5, 0x8647cc65, 0xcf2f028d, 0xc1878750, - 0x9537e03c, 0x000147, 00000000 + 0x9537e03c, 0x000147 }, { 0x77235532, 0xc0b03506, 0x60d29327, 0x9e41d888, 0x5aa5fde7, 0xbbf5a617, 0xfc58900a, 0x2da9e492, 0xf71b3408, 0xb94e9574, 0xcbb9c80b, 0x6543a19a, 0x50c98e0e, 0xae8a7e92, 0x7d3104e1, - 0x11790b16, 0x0000d2, 00000000 + 0x11790b16, 0x0000d2 }, { 0xcb092aa2, 0x499ff5e, 0xd4e0f79f, 0xb5ddee80, 0x97e4bb6a, 0xcdade030, 0xb31c199e, 0x366c7be6, 0x998c7aa0, 0x8f4c5f02, 0x3f77391b, 0xd38afbb9, 0x32a461e2, 0x332ec31a, 0x60e4d1f1, - 0x96f45d38, 0x000170, 00000000 + 0x96f45d38, 0x000170 } }, { @@ -75438,19 +75436,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87d29b2b, 0xe43e8812, 0xc8259ad5, 0x5a870809, 0xe4c9f454, 0xad81643f, 0xfcc9120e, 0x7a754075, 0xb4907413, 0x9f4332e1, 0xc9fae193, 0x6fd5f24b, 0x5ac9d9dd, 0xe81a31fd, 0xf5237ac0, - 0xfdc2c08d, 0x000041, 00000000 + 0xfdc2c08d, 0x000041 }, { 0xc08fc523, 0xf1227a57, 0xc4529536, 0x1cb573a8, 0x7ba76f12, 0xe59c7a37, 0x423d5de9, 0x2f6ae20c, 0x2764d86c, 0x1d530c07, 0xb45a5c56, 0x86428887, 0x2c570064, 0x10196055, 0xa2ab7882, - 0xca052f94, 0x0000d4, 00000000 + 0xca052f94, 0x0000d4 }, { 0x47c0e5b2, 0x82ee1b4f, 0x48563f94, 0x7850e3e8, 0x54572c8, 0xf36e520d, 0xf5f518f7, 0xd9cd4a1d, 0x418143ee, 0x79693668, 0xac5cf6c6, 0x2842c946, 0x6077c412, 0x33b62074, 0xface2d34, - 0x7926850, 0x00013c, 00000000 + 0x7926850, 0x00013c } }, { @@ -75458,19 +75456,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9fe41710, 0x788e2394, 0x97cb14ab, 0x4a51bdd4, 0x4ede00a9, 0xa30da736, 0x76a1aad2, 0x31f0fb68, 0xdb843e51, 0xeeda9d17, 0xcba71759, 0xcef73ab2, 0x5eb80a59, 0xa6f45388, 0x61a0e869, - 0xb9368a96, 0x000013, 00000000 + 0xb9368a96, 0x000013 }, { 0xcb3b9a96, 0x3d05ae73, 0x997ac113, 0x4b3c5c2f, 0x122b36d3, 0xcc2f11fe, 0xd6d9cf1f, 0xc323d64c, 0x15bad31c, 0x1568c449, 0xcc80f1ce, 0x1a68d0f5, 0xf68d7376, 0xd9b28ade, 0x98c28f03, - 0x10138bf8, 0x000183, 00000000 + 0x10138bf8, 0x000183 }, { 0x27f0d6e9, 0x36e9605b, 0x49109ab5, 0x99c0b959, 0x786d2511, 0x64abf258, 0x678cf856, 0xd117c27a, 0x67f536e5, 0xc9e2010f, 0xd0ac17b, 0xee14d12a, 0x4b76191, 0x68cf251d, 0x3ff1d18c, - 0xd068cd96, 0x0000ca, 00000000 + 0xd068cd96, 0x0000ca } }, { @@ -75478,19 +75476,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfb525b3f, 0xe6412239, 0x30f35e92, 0x2d29788d, 0xf3c02e9c, 0xd3681a84, 0x4f804565, 0xa27a86b2, 0xa5fd9665, 0x9880d80, 0x2b795573, 0x929fb385, 0xf0aca0d7, 0xbc4dc845, 0x21afbb7a, - 0xcc7d40bb, 0x000170, 00000000 + 0xcc7d40bb, 0x000170 }, { 0x2800b07e, 0x60aec6a7, 0x8788b01b, 0xc1e01a4b, 0xf4154c02, 0xe036421c, 0x102aeba6, 0x7c47e107, 0xf4c9b663, 0xdbcbca61, 0x94f5db2d, 0x1e60e043, 0xd8c157da, 0xa2ae36a, 0x11d60257, - 0x5371130e, 0x0001a2, 00000000 + 0x5371130e, 0x0001a2 }, { 0xf5cdf5fa, 0x4b02b43e, 0xdbc6f5f, 0x5e9216e0, 0x10921dd1, 0xd1d09e55, 0x7c9c1865, 0x52410f25, 0xc919dbb5, 0xc231c7e8, 0x4aff382b, 0xab18cf93, 0xfc19c824, 0x853c22fe, 0x3086d5f2, - 0x8d9f8a8f, 0x0000e3, 00000000 + 0x8d9f8a8f, 0x0000e3 } }, { @@ -75498,19 +75496,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfabd948, 0x5626f390, 0x95ffb061, 0x20824319, 0xe69df616, 0x46829aff, 0x8bf924dd, 0x28b7c711, 0x224c08ec, 0x84823a2c, 0x3e151fa9, 0x1505d945, 0xafdb5c4e, 0xa08c2610, 0x831c34d8, - 0xc9369f5e, 0x00017e, 00000000 + 0xc9369f5e, 0x00017e }, { 0x1c4aabba, 0x92fc9677, 0xd93ef704, 0xb92a1f25, 0x3142d68a, 0xc3ad3244, 0xffdd46eb, 0x10b88fbd, 0x54ecd3a5, 0x4e333ca8, 0x8e9ea887, 0xed8feefd, 0x892630a, 0x93552c87, 0x4875d738, - 0x41f2c03e, 0x0001d8, 00000000 + 0x41f2c03e, 0x0001d8 }, { 0x55a95024, 0x3e589af6, 0x2e4e039f, 0x830dfb15, 0x1ffdff40, 0xf5329f1a, 0x6ee1419c, 0x56b6b98c, 0x8e030f45, 0x2f1d6868, 0x2459fac0, 0x2967f8ac, 0x71eb6944, 0x74fee0ca, 0x2276cc71, - 0x4043299d, 0x0001e8, 00000000 + 0x4043299d, 0x0001e8 } }, { @@ -75518,19 +75516,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2600233c, 0x928333a3, 0x60ba3bac, 0x2874ae5f, 0x8e2ba109, 0xfbff205f, 0x6f8b7655, 0xde71a4fe, 0x3815829, 0xb64c7d7b, 0x84219d4e, 0x7c0ef127, 0xad0eb256, 0x25f97cb6, 0x953db74d, - 0x19fc1cac, 0x0000ee, 00000000 + 0x19fc1cac, 0x0000ee }, { 0xb1a1d644, 0x50d0eb6, 0xc7798629, 0x503fd4f1, 0x29e859f1, 0x347e1ed1, 0x77873b9c, 0x27789e60, 0x2dfcfc1f, 0xd41f35cc, 0xa0ade3e9, 0xa8e897e2, 0x31e5d0a1, 0xd19f8365, 0xbf38721f, - 0xfceae4fb, 0x00018c, 00000000 + 0xfceae4fb, 0x00018c }, { 0x1b367021, 0x3b029f63, 0x47fecddc, 0x2cc12923, 0x998a7a89, 0x2ffafcf3, 0x56524f1a, 0x18fdaea8, 0x971a21ec, 0x4c566933, 0xe6b89038, 0xa9200fe5, 0x744d48d5, 0x7ce4d5ec, 0x62678dae, - 0xe728b684, 0x000155, 00000000 + 0xe728b684, 0x000155 } }, { @@ -75538,19 +75536,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x962ff522, 0xd5c45b2d, 0x714bf705, 0x5e914c68, 0x40997385, 0x86381b1d, 0x8f933232, 0x74c97b3, 0x13ac1fb0, 0xf2ed6db1, 0xa5be6747, 0xa3bc3f61, 0xd7bb92f7, 0xdf3a9e6b, 0x68f3ff0f, - 0x10a40d1f, 0x0001a8, 00000000 + 0x10a40d1f, 0x0001a8 }, { 0xa32f5fd, 0xaaef94d, 0x6c6a8489, 0xc7167867, 0x580cdf51, 0xebf4c236, 0x67063903, 0xcff13b3e, 0xa004fb69, 0x23a82a7, 0x345e8a3f, 0x121c5e16, 0x55b6e44, 0xb684fae1, 0x9475504a, - 0x6946ae6e, 0x000085, 00000000 + 0x6946ae6e, 0x000085 }, { 0x99f1271, 0xf8223fad, 0x9b5d6aec, 0xfd3e64a2, 0xb45fdeec, 0xf9d83c7a, 0xef122904, 0x4d64ebfe, 0x58b21478, 0x84f6698a, 0xa13dcbb1, 0xef263b55, 0x8ff5342f, 0x55e23176, 0xd2798937, - 0xadf7c311, 0x000179, 00000000 + 0xadf7c311, 0x000179 } }, { @@ -75558,19 +75556,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x67b42a7c, 0x457d5191, 0x7a463229, 0x3cecc85, 0x86b2b22a, 0xd2f3910, 0xaa82131d, 0x9a07fb1a, 0x8bc54b25, 0xb8f566bf, 0x60f9689, 0x747e690e, 0x93188e4f, 0x28fe1917, 0x751e7ca3, - 0x5cee350d, 0x00018a, 00000000 + 0x5cee350d, 0x00018a }, { 0x724d9085, 0x506949fe, 0x87c8b73c, 0xcc56ea05, 0x4112aeab, 0x434aa82e, 0x1a6fc43f, 0xf3e5d8e9, 0xc9e4b038, 0xd2c8d6a9, 0xf84c56da, 0x5668e575, 0x977de455, 0xf7934552, 0x3aa80b6d, - 0x73751fac, 0x00009c, 00000000 + 0x73751fac, 0x00009c }, { 0xaf2130c0, 0xad460ef, 0xc291a2c1, 0xc91d9c33, 0x9f95120c, 0x727a60bc, 0x21b836d4, 0x45caadc7, 0xf51ed088, 0x66b29a7a, 0xbc742152, 0x683fab8c, 0x8b06c745, 0x9fbad74e, 0xd129c8fa, - 0x9adee6c2, 0x0000b2, 00000000 + 0x9adee6c2, 0x0000b2 } }, { @@ -75578,19 +75576,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcbb4135e, 0xdb0a069d, 0x1e3913bd, 0xd1faf42c, 0x39810015, 0xdb47033e, 0x8cf7c079, 0x424d5adb, 0x6ed4f4ec, 0x925924e9, 0x881cd9e, 0xebffe57a, 0x8065300b, 0x82413501, 0x35d42cb0, - 0xc13aff0c, 0x00013e, 00000000 + 0xc13aff0c, 0x00013e }, { 0x5301b6eb, 0x4eba1678, 0xfcd99a4c, 0x8dd1118c, 0x45b73552, 0x55bbe699, 0xfd0a60c5, 0xbe06e803, 0xd4085177, 0x6d0dff8d, 0x293c1a2b, 0x4cce8c54, 0xf9dee21a, 0x7eadfae, 0x62f4cf82, - 0xbab01428, 0x0001d9, 00000000 + 0xbab01428, 0x0001d9 }, { 0xeba89c2d, 0xde1debce, 0x63fc55c8, 0x14eab811, 0x2b05db6a, 0x34efb612, 0xd9af9bfd, 0xf02c8df1, 0xcdbb393a, 0x602e5e9c, 0x120dc9f0, 0xc46c8d68, 0xde8c8211, 0xb890031e, 0x64744bc3, - 0x7d20d88b, 0x0001ed, 00000000 + 0x7d20d88b, 0x0001ed } }, { @@ -75598,19 +75596,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6482eb0a, 0x87ade2f8, 0x4928c9fa, 0x80013ec3, 0x987f9606, 0xf8c0602c, 0x198d0b55, 0x2b9a5f08, 0xc88bb215, 0xad438f11, 0x72809172, 0x5b674c71, 0x5d527617, 0xac856b05, 0xd4e1d5b0, - 0x1703dd5d, 0x000163, 00000000 + 0x1703dd5d, 0x000163 }, { 0x1f88c856, 0x33e028da, 0x94b4eab, 0x1c48ab2a, 0xe65e5da8, 0xd3c59d4c, 0x33219797, 0x2c218f99, 0x98862bc3, 0x91b70e43, 0xac4fb1b, 0xc913b34e, 0x3ac9b088, 0x3ebbb512, 0x99f24c47, - 0x5c552679, 0x00005f, 00000000 + 0x5c552679, 0x00005f }, { 0x26b1b792, 0xfdd05f14, 0x22a18fab, 0x6ab692d4, 0x91b55fff, 0xbb0823f0, 0xd4cf7ffa, 0xca67b449, 0x1250a7c1, 0x2788dd37, 0x3225881, 0x70393268, 0xcc2c1f17, 0x4827a99, 0xcbfe0021, - 0x633c458e, 0x000194, 00000000 + 0x633c458e, 0x000194 } }, { @@ -75618,19 +75616,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xef66c2f3, 0x4032dd1e, 0xb06a0289, 0x60bc654b, 0x7b77f861, 0x1059ea41, 0xbb75afaf, 0xa4fb7133, 0x82d85387, 0x6c7f1130, 0xdb92e659, 0x42cabf4a, 0xb45f6898, 0x6d39868e, 0x183f6214, - 0x29bdc792, 0x00009e, 00000000 + 0x29bdc792, 0x00009e }, { 0xa2da33b2, 0xd9320738, 0x88d0a83e, 0x6da31cf2, 0x89d47564, 0x7b09a958, 0x4a986fc8, 0xb55d386a, 0xff02d928, 0x5f196ea1, 0x880e2f42, 0xf042fe15, 0xb432b9f7, 0x8aec37f2, 0x2117eec0, - 0xb0a030a8, 0x000151, 00000000 + 0xb0a030a8, 0x000151 }, { 0x721720b1, 0x66947a91, 0xb600461b, 0xd097aca, 0x5d155606, 0x8df1bd8f, 0xe44d9920, 0x4fe1cf1d, 0xe2af2b91, 0xef987f22, 0x138230f6, 0xecd4a41e, 0x2eef03c8, 0xa65ee49c, 0x7c99663b, - 0xabd3d71, 0x0000c2, 00000000 + 0xabd3d71, 0x0000c2 } }, { @@ -75638,19 +75636,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d85cfb5, 0xa210ad1d, 0x7dbc17ef, 0xa88488c1, 0x32b6d438, 0x27d48b7a, 0xc41f7743, 0x6aadb4a9, 0x78f05cea, 0x7e8cc389, 0x1bf25f59, 0xdac4b02e, 0x37a87223, 0xee5d5098, 0x5063d31f, - 0xf283e267, 0x00006d, 00000000 + 0xf283e267, 0x00006d }, { 0xf80ecbcb, 0xf77844b, 0x39edab65, 0x9fe2d939, 0x559740d0, 0x9a3a7868, 0x60d70f39, 0xcfd267e2, 0x32b29012, 0x8b6e6a37, 0x3068b140, 0x3e19d9be, 0xb67b6be9, 0x4c3e17f3, 0xc65258e1, - 0x9e40d002, 0x0000f2, 00000000 + 0x9e40d002, 0x0000f2 }, { 0x46b50070, 0xb2c1181e, 0x91fdba83, 0x6961534b, 0x57d4e1cb, 0xe2f872a4, 0x903f7660, 0x642e1aa5, 0xa4d0396, 0x5e0cae94, 0x99177f56, 0x623d1156, 0x8689faab, 0xb2852385, 0xbf37f8d2, - 0xe54a85db, 0x000125, 00000000 + 0xe54a85db, 0x000125 } }, { @@ -75658,19 +75656,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x22cca545, 0x8d9075bf, 0xfd4e2f61, 0x9350e3d1, 0x53ae4ea8, 0xc852d4f8, 0x5b528967, 0x41a8a624, 0x527369c5, 0xa410eb98, 0xa1f3a24a, 0x2d059cf0, 0x3191dcb4, 0x1d530b95, 0x1a3c5ead, - 0xe8fa2e2b, 0x0000f7, 00000000 + 0xe8fa2e2b, 0x0000f7 }, { 0x3dfe40d1, 0xc205ebe3, 0x34fdbf6, 0xc25e6c88, 0x7dfd696d, 0x948dcc71, 0xc6aa95f5, 0xd15cb2c7, 0x347a5df2, 0xd4a2f670, 0x13897d6e, 0x38afb73c, 0x2cf29b93, 0xb16c167d, 0xa977a5b9, - 0x68ae27b1, 0x0001b7, 00000000 + 0x68ae27b1, 0x0001b7 }, { 0x2b0cf10a, 0x8462a21b, 0xf6a2ea43, 0xcbe41326, 0x7e4ad9d4, 0xc0bcef10, 0x7672a1a1, 0x15351bc4, 0xbb81fd41, 0xe64dab1f, 0x3960fac7, 0x9ace59c0, 0x6557fe87, 0xe47608ba, 0x1878e203, - 0x3513e4f7, 0x0001de, 00000000 + 0x3513e4f7, 0x0001de } } }, @@ -75680,19 +75678,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe9b3093f, 0x652993a1, 0x4832ed06, 0x52f4825d, 0xb75dcec1, 0xa1ec596a, 0x55feb8c4, 0xd25a55e6, 0xb81252eb, 0x859624ba, 0xd8a38fa8, 0xaef5af22, 0xa23d2ae0, 0xf3887ae1, 0x9f1f3c94, - 0x78ef6880, 0x0001bd, 00000000 + 0x78ef6880, 0x0001bd }, { 0x5f69dd0f, 0xccfc8300, 0x90ac075a, 0xeabf76c, 0x29f53ded, 0x9f946451, 0xedb9293, 0x61c13206, 0xd0f03dd0, 0x936c674a, 0x34643cad, 0xd6f100b7, 0xb9535e29, 0xc8190b2e, 0x3ba4b870, - 0x94486acb, 0x00008f, 00000000 + 0x94486acb, 0x00008f }, { 0x7e1012b1, 0x6c2c0bd5, 0x6210ec75, 0x416a3639, 0xaf79f6dd, 0x9465ec26, 0x902d5834, 0x9855423a, 0x6cca5c70, 0x323ddc09, 0x5b55c637, 0x7431d09, 0x6200e077, 0xfa7d99d2, 0x995d65f0, - 0xf7dd4257, 0x0001da, 00000000 + 0xf7dd4257, 0x0001da } }, { @@ -75700,19 +75698,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2538fe3e, 0x9601c76, 0x711b8203, 0xd8b05ce8, 0x9beffefe, 0x17f89165, 0xa24d63b2, 0xea782d9d, 0xb9d6e049, 0x14bb50a4, 0x6f42a7d5, 0xe929a66a, 0x10a3fe51, 0x8c4a4d2a, 0xa143a7da, - 0x84d6f279, 0x00001e, 00000000 + 0x84d6f279, 0x00001e }, { 0x6578ed, 0x3d005009, 0x5263efea, 0xcc8b1f09, 0xb614c065, 0xe8a6bf23, 0xf382d45c, 0x141ad608, 0xafc113d9, 0xf6560abb, 0x7a8a0a9b, 0xe9e06062, 0x9f2ba087, 0xdb7aaec0, 0x46945ff4, - 0x813068ad, 0x000166, 00000000 + 0x813068ad, 0x000166 }, { 0x4ae4a1a1, 0xe49bab09, 0x898fc451, 0x69a7cbf9, 0x7d431f4b, 0x34101ac, 0x6c0e8e92, 0xba6c0c55, 0x1bd7cb7d, 0x9321f5ad, 0x776b2dab, 0x837590da, 0x56d5515f, 0xcdb909fe, 0xf7d1a76b, - 0x8b26425b, 0x000180, 00000000 + 0x8b26425b, 0x000180 } }, { @@ -75720,19 +75718,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3948f01a, 0xb51fa4ff, 0x7a824d82, 0xfc03acfb, 0xaf0836aa, 0x644dd2dd, 0x4e10eff9, 0xe7c496c2, 0x807863e8, 0x3436dd63, 0x208b1213, 0xec2c61eb, 0x4a83f67d, 0x68d53955, 0x52b0d10b, - 0xc5c81a53, 0x000145, 00000000 + 0xc5c81a53, 0x000145 }, { 0xfc59ad89, 0x2d683236, 0xe6508f9d, 0x9be85466, 0xb8f8f33a, 0x4da5e426, 0xd1a2cc89, 0x70f242f4, 0x13fe1c98, 0xa636d8c0, 0xf201e1a1, 0xc7cde1f7, 0x69a96175, 0xfb4a0e7c, 0x58288906, - 0x5e38e8e8, 0x000041, 00000000 + 0x5e38e8e8, 0x000041 }, { 0x964f8601, 0x5d1156ae, 0xfcf6000d, 0x8f3b4988, 0x26d1ddb0, 0x57d78ca4, 0x6cc7d47c, 0x2de63780, 0xad4bd599, 0x63eec623, 0x75b328eb, 0x4b30cce3, 0xb06ffdeb, 0xe1abbe8f, 0x8a5dcc1, - 0x84b872a7, 0x00003b, 00000000 + 0x84b872a7, 0x00003b } }, { @@ -75740,19 +75738,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4ac4d7bc, 0x341b3967, 0x91d1cee2, 0xa578fdaa, 0x3575594a, 0xd257e961, 0x661f6fad, 0xc0430367, 0xfe8394d9, 0x212d0830, 0x7d13745e, 0x6369335f, 0xe0da6c2, 0xa1e58a38, 0xd6af6322, - 0xf04d510d, 0x000100, 00000000 + 0xf04d510d, 0x000100 }, { 0xd624e59d, 0xcc3ef5c1, 0x232d8330, 0x1748650a, 0xd32a1cc, 0x175b79c0, 0x66d03455, 0xc3b5b448, 0x3a59bbc7, 0xf78d7033, 0x48816f20, 0xb43ca950, 0x96459a9a, 0x30a95018, 0x8d9de144, - 0x1f837788, 0x00007e, 00000000 + 0x1f837788, 0x00007e }, { 0x1be668d9, 0x5635bb82, 0x4938035a, 0x10440a5c, 0x72e73afc, 0xf35fe5ca, 0x423403b3, 0xed4de3fa, 0x5da3a8c6, 0xc4bcc319, 0x917876fc, 0x2028cbae, 0xdfe340c3, 0xc9b9c506, 0x6bee3e36, - 0x2f7e35f7, 0x00009d, 00000000 + 0x2f7e35f7, 0x00009d } }, { @@ -75760,19 +75758,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb5a59e3e, 0x37beba69, 0x52612f6e, 0x23c83b8f, 0x58667cdf, 0xb649bb01, 0xffbfee2, 0x74d42e8a, 0x78d7c015, 0x616f889e, 0x99543c0, 0xf989d376, 0x1cb998b5, 0xcb766ce, 0x573b7149, - 0x916b8406, 0x000192, 00000000 + 0x916b8406, 0x000192 }, { 0x600e9940, 0x691f9d93, 0x446136b8, 0xfa2ee633, 0x2195062, 0xe1b83129, 0x536498e2, 0xc4d3fbc5, 0x5b3ea2b2, 0x79168a0, 0xb14f8cf0, 0x542d8d68, 0x6b249bf, 0x5889a8c3, 0x61607315, - 0x44b562c3, 0x0000f6, 00000000 + 0x44b562c3, 0x0000f6 }, { 0xffbc8531, 0x2d558234, 0x9d539d3e, 0xaa6cf194, 0x99fba6cc, 0xcd576d5b, 0x254c85d6, 0x5b4eba0e, 0xddec7cfd, 0x344e9d61, 0xd7851ecd, 0x98d90c63, 0xc0f9e2f0, 0x7f71ea0c, 0x63e93ab9, - 0x76bcd579, 0x00000b, 00000000 + 0x76bcd579, 0x00000b } }, { @@ -75780,19 +75778,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5fb7dfef, 0xf7a6e9db, 0xfb0624b1, 0xdd53cd4a, 0xf743267a, 0x57dc2b3d, 0xb7122aea, 0x990d5b73, 0x93065886, 0xec26d530, 0x75c55edc, 0x4abd26b8, 0x23c89998, 0x356bb0dd, 0xd883143e, - 0x627e2e12, 0x0000dc, 00000000 + 0x627e2e12, 0x0000dc }, { 0x6da527a8, 0x2a5474da, 0xfdd0c10c, 0x57639560, 0x94ba69fd, 0xb7c8ea2c, 0x72005b41, 0xfbd92c1d, 0x2af8e809, 0x8230fd21, 0x2dd78dc5, 0xd8d01168, 0x4ed02197, 0x6682319c, 0x9889230a, - 0x746f203, 0x0000fb, 00000000 + 0x746f203, 0x0000fb }, { 0x74e90bfc, 0x2bc3955f, 0x617ff353, 0x1180ad53, 0xbb003bc6, 0x4fd7e150, 0x6f7f900, 0xc1c39fcd, 0xbf35d2e3, 0x8800a40, 0xe3bcb1a9, 0xbe305815, 0xa7f3d75b, 0x8844912e, 0xfaea8ed8, - 0x3dc459ae, 0x0000fd, 00000000 + 0x3dc459ae, 0x0000fd } }, { @@ -75800,19 +75798,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe3aebd13, 0x7cc7800c, 0xe3736541, 0xaed7d967, 0x62d3cf83, 0xfa6617c2, 0x8d5a2f16, 0x90a5d9a3, 0xd23483d6, 0xa5fb373e, 0x2cb3192e, 0xd2e081cb, 0x356ab532, 0xc3c21c94, 0xa3be7abd, - 0xa4fce257, 0x000053, 00000000 + 0xa4fce257, 0x000053 }, { 0xd5b5e518, 0xa6c5ad0d, 0x80db6e59, 0x2dbad125, 0x39fdae7c, 0x18d8b1d, 0xa4091691, 0xaa0ea804, 0xee106f59, 0xb8792de0, 0xa736a4b5, 0xecab35dd, 0xa121a7f4, 0x1f9d17b0, 0x9341cb56, - 0x39996e1, 0x00008c, 00000000 + 0x39996e1, 0x00008c }, { 0x7c713142, 0x67f5de0d, 0x58c91c74, 0xde402275, 0xa1ed1393, 0x22cdb586, 0xc2203331, 0x6fc3c9f5, 0xa3db6b91, 0xead83c1f, 0xd6da3ce8, 0x9811551c, 0xee5dea88, 0xcbce5b5d, 0xc547734a, - 0xd9b28971, 0x0001e0, 00000000 + 0xd9b28971, 0x0001e0 } }, { @@ -75820,19 +75818,18 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1cdf81dd, 0xaf9bc266, 0xf8a35d90, 0xe21069c0, 0x41c4eae2, 0x79740ea2, 0xccb4a717, 0x9f90df6c, 0x285b84d1, 0x2fc11eb7, 0x15dcfdfc, 0xfa48b2de, 0xa09c3ac, 0xa4c0667c, 0x51a36dd1, - 0x315e323, 0x0001d2, 00000000 + 0x315e323, 0x0001d2 }, { 0xa0b0573, 0xd744a5ee, 0x3223a212, 0xe6e072, 0x902d37ef, 0x88b97ebd, 0x740446b4, 0xd139c1c0, 0x34fa2913, 0xe1cdcf0a, 0x57c71865, 0x4decd493, 0xb8224c07, 0x199ae63e, 0x18714db7, - 0x76fdb780, 0x0000e7, 00000000 + 0x76fdb780, 0x0000e7 }, { 0x3f345e, 0x49858aa4, 0xab631e86, 0x5c1bd9d3, 0xc0f5b4, 0xc63a33c8, 0x6c24f0e2, 0x76df9f83, 0xca9b47db, 0x3afe6bc, 0xe902b0f6, - 0x6ab5a6a2, 0x30f4467f, 0x3982a25, 0x4c9708e3, 0x1460d2e, 0x00000e, - 00000000 + 0x6ab5a6a2, 0x30f4467f, 0x3982a25, 0x4c9708e3, 0x1460d2e, 0x00000e } }, { @@ -75840,19 +75837,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1f92f5b9, 0x2ef8a2e7, 0x2d15bfe, 0xfc643f60, 0x7fda1a6c, 0x30643715, 0xc325f5fe, 0x56ca4485, 0x179d143f, 0x36735b69, 0xdd9e1aaa, 0xa9769f19, 0xf8340c7, 0x740cbc5f, 0x64134f65, - 0x64d1c446, 0x000182, 00000000 + 0x64d1c446, 0x000182 }, { 0x92c1c9cd, 0x37bf1729, 0xb300fb52, 0x64572826, 0xd1ffde9b, 0x1812a32e, 0xa6eee8b7, 0xd68214cb, 0xc02e689f, 0xd96f7219, 0xa25e6e06, 0x217a3634, 0x2fae1bdc, 0xb1f623e9, 0x8f0186c7, - 0x242d2dea, 0x000154, 00000000 + 0x242d2dea, 0x000154 }, { 0x8b52375c, 0xf86cd205, 0x264fe53b, 0xb5c0e7da, 0x1d1a9dc9, 0x49ddaf33, 0x734f76e8, 0x24ecb21b, 0xd7a15da2, 0xceeeb4b5, 0xd381d22e, 0xab98782c, 0xc9d94907, 0x815096b5, 0xd2d7e017, - 0xbea9c2ee, 0x0001d5, 00000000 + 0xbea9c2ee, 0x0001d5 } }, { @@ -75860,19 +75857,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbdc2e343, 0xca2f126f, 0xebe77f2c, 0xcc0429ac, 0xbcdb1e6d, 0x549b269d, 0xa7548940, 0x23bba8d, 0x7b473a3, 0x62740a7, 0xd5486f80, 0x2cfac0b7, 0xc4148ceb, 0x11fa3101, 0x598fbbaa, - 0x7b3c3089, 0x00015b, 00000000 + 0x7b3c3089, 0x00015b }, { 0xcf7404cc, 0xb00c501d, 0x511e655, 0x66279d60, 0x7e63de2a, 0x1fd66364, 0x5fbb6749, 0x28028621, 0x5b8e747f, 0xb9070365, 0xc2148650, 0x1fbbb6c5, 0x51e4071f, 0xc9be6777, 0x14cc2820, - 0xe951c734, 0x000143, 00000000 + 0xe951c734, 0x000143 }, { 0xfaa1d3d8, 0x900e6674, 0x76e8514b, 0x16cec112, 0x9216f215, 0x72987c4b, 0xc60bca6f, 0xe04d7cdb, 0x327513a3, 0x37edee19, 0x4fa68989, 0x82d6bcb7, 0x4886322c, 0xc34f03ab, 0x311b1a68, - 0xc8c9e8e9, 0x00017d, 00000000 + 0xc8c9e8e9, 0x00017d } }, { @@ -75880,19 +75877,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf12b04b, 0xb8d7504d, 0xedd1a87a, 0xe13698f4, 0xb3bb9fbf, 0xc033369b, 0x649157ed, 0x6a8b40ae, 0xdaffb0b0, 0xbe5accec, 0xf45f6fb6, 0x75aa6012, 0x8f9f681a, 0xb2bd26ae, 0x84754986, - 0x7ce02f47, 0x0001c9, 00000000 + 0x7ce02f47, 0x0001c9 }, { 0xf67b9e33, 0xbcdd6ac5, 0x4e714afa, 0x9efda86b, 0x50493bcf, 0x747eb26, 0xb59754e6, 0x66f3d655, 0x9376b0be, 0x629690e8, 0x2631cf4, 0xea4b0344, 0xfaa37e66, 0x30ab51f9, 0x6759e7ab, - 0x947a4d0d, 0x0001c4, 00000000 + 0x947a4d0d, 0x0001c4 }, { 0xb84055dc, 0xba41d2e, 0x43e7f710, 0xdd60f428, 0xea0ca7c2, 0x5abbb819, 0x86703df4, 0x57e90c6, 0x310cd7ae, 0xcebf2834, 0x3f06299c, 0x4725bb2b, 0xa32bc864, 0x48aa0a1a, 0x93e5fa40, - 0xae149670, 0x00000e, 00000000 + 0xae149670, 0x00000e } }, { @@ -75900,19 +75897,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdd5daf9f, 0x19fa717b, 0x3e9f8692, 0x1c5cf8ab, 0xf562b2f, 0x3fc6f9d9, 0x68904ef0, 0x5f232340, 0xf71d23f8, 0x8a921ea5, 0xa0056c7, 0x48ffdc73, 0x14a67171, 0xe4fca497, 0x6aa0e6dd, - 0x93f54f42, 0x00008f, 00000000 + 0x93f54f42, 0x00008f }, { 0xdd9927f0, 0x51760c14, 0xdb2b0924, 0x6de14189, 0xb61e62e6, 0x2a2cda2f, 0xe8aeb8a1, 0x950196fa, 0x3ffc806c, 0xe72f68e5, 0xf2ce6991, 0xafd8fe05, 0x4f4b4f4f, 0x6544c9db, 0xe7c23022, - 0xd83cde38, 0x00013b, 00000000 + 0xd83cde38, 0x00013b }, { 0x41ec6f97, 0x8c4eb852, 0xf3661716, 0xacaba8ac, 0x3707691d, 0x2d2d4b82, 0x82031613, 0xf44ba00e, 0xa9732e8a, 0x4baa5924, 0x266e161f, 0xf0c2dd5, 0x86051ec5, 0x96f947fb, 0xffe81813, - 0xa77cfb66, 0x00012d, 00000000 + 0xa77cfb66, 0x00012d } }, { @@ -75920,19 +75917,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4ae1f08, 0xb92b69d8, 0x86fa9c52, 0x9d07d160, 0x63d1710d, 0xfed97b44, 0x60104bdc, 0xdfbd86b6, 0x54a4df09, 0xc6b3d648, 0x9b164c6d, 0xf6b62936, 0x2417cb0d, 0xa61c5391, 0xfe8cfd01, - 0x9d07c361, 0x0000c6, 00000000 + 0x9d07c361, 0x0000c6 }, { 0xedf450c6, 0xebea8941, 0xe6b4878, 0xa6fc2756, 0xfdc92b22, 0xc10dd66d, 0xed2f36c5, 0xa0f45f37, 0x5d51369a, 0x487fd84a, 0x1dad0e98, 0xe0fbb142, 0x6ce44790, 0x11751f9a, 0x1985e081, - 0xc5c80bbf, 0x00009c, 00000000 + 0xc5c80bbf, 0x00009c }, { 0xfa98a745, 0x3b3b9286, 0x71a6a8ec, 0xb496bea6, 0xae7eb343, 0xd37e0959, 0x8b3dcd86, 0x29c74c53, 0xf9505638, 0x56bc13bf, 0xcec7400a, 0x18a01407, 0xb562085e, 0x873ea051, 0x6f748124, - 0x71869ff1, 0x0001a6, 00000000 + 0x71869ff1, 0x0001a6 } }, { @@ -75940,19 +75937,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4dd8ad43, 0x863e9849, 0x5deda07d, 0xa06aa10d, 0x37d2c7c6, 0x936e8c95, 0x684566b7, 0x4f35a79e, 0x4224466, 0xdbf4664d, 0x2f41ecfd, 0x68fa5bf9, 0xc0e827d1, 0xf2a5bd4, 0xef48fb73, - 0x49b90cae, 0x0001c5, 00000000 + 0x49b90cae, 0x0001c5 }, { 0xdd434c10, 0x16714f33, 0xf8072e01, 0x20fee5a3, 0x3e52e534, 0xb5740e52, 0x20f25cc6, 0x72075c54, 0xb2d67b56, 0x7c170fa9, 0x21701c8a, 0xbbf707be, 0xf35e205a, 0x10c69535, 0xeae14900, - 0xb7f20fcb, 0x000072, 00000000 + 0xb7f20fcb, 0x000072 }, { 0x497daff5, 0x7fc519d7, 0x471d4b9f, 0x654002aa, 0x73c905bb, 0xb6ec5396, 0xe9284e90, 0xbed10e07, 0x99585871, 0x8a241eea, 0x44b7d13d, 0x34a51d96, 0x398ea0e6, 0x17548d35, 0x78cbb0eb, - 0x868fd0e8, 0x000151, 00000000 + 0x868fd0e8, 0x000151 } }, { @@ -75960,19 +75957,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x29f543d3, 0x74729fd5, 0x714a0849, 0x52fa2491, 0xcfd3f0a, 0xd4574fc0, 0x4f53c251, 0x9cc88f8b, 0xad2056ec, 0xf0d51bd8, 0x8d9c7889, 0x96be48bd, 0x3de1bba4, 0x18bf650e, 0xe74dc732, - 0x19caf60a, 0x0001d8, 00000000 + 0x19caf60a, 0x0001d8 }, { 0x25d851ab, 0x3cbd82d4, 0xea68f17c, 0x8efffb5e, 0x6010cd02, 0x4a4ac53e, 0x4a61dafb, 0x91e2b85a, 0x8d837009, 0x952bee24, 0x7381c2e6, 0xddf75fd7, 0x28119f72, 0xfbef7a90, 0x52042726, - 0xa6c1bebb, 0x0001aa, 00000000 + 0xa6c1bebb, 0x0001aa }, { 0xa69b4a30, 0x43d28b5c, 0xf4865b22, 0xcdd425ee, 0x6c61f015, 0x684f0c2d, 0x5e223476, 0x637a8b6c, 0xb7774a77, 0x555cda8, 0xa7985895, 0xe196290e, 0xf8ad9218, 0xb2a0a057, 0x5cd3b285, - 0x4e0f0de9, 0x0001a5, 00000000 + 0x4e0f0de9, 0x0001a5 } } }, @@ -75982,19 +75979,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x927f744b, 0xb741f301, 0x31d534d3, 0x93e400f2, 0xf95f8389, 0xf5a0ab14, 0xbef2b086, 0x69c64285, 0x5660a089, 0xe88eec95, 0x6ac11826, 0xa1e7c6cf, 0xa994d383, 0x74460d75, 0xecbcd344, - 0xd150155b, 0x000050, 00000000 + 0xd150155b, 0x000050 }, { 0x341d9e3f, 0xcc063517, 0x8efa6e8f, 0xfe954b57, 0xe78d1512, 0xeabc06b0, 0x39ff1f1e, 0xa757ee99, 0x7fa69cd2, 0xae8c7663, 0xad0231d8, 0xbd252286, 0x19ad1e59, 0x8dbdb57c, 0xfb09d729, - 0x47a1718a, 0x0001c9, 00000000 + 0x47a1718a, 0x0001c9 }, { 0x1fc96270, 0x140a8d4d, 0xc02b0cbb, 0x6d3166ee, 0x1fbe411e, 0x68640425, 0x68f54a1a, 0x7af93f19, 0xcdd4d1d, 0x66c06aac, 0xf4e21189, 0x1156afc2, 0x2ec182d5, 0x217b6c86, 0x821edbfc, - 0xd9de8692, 0x0000a8, 00000000 + 0xd9de8692, 0x0000a8 } }, { @@ -76002,19 +75999,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x94ce944a, 0xa06f58a3, 0x330aea1d, 0xa600ee64, 0x90103fcf, 0x1fbff6b2, 0x1bff2b71, 0xfcff7c9, 0xf185262c, 0xe2a63c35, 0x92907819, 0x6a477b5f, 0x9f40e44b, 0x683a63bd, 0xb00df1c1, - 0xb4633197, 0x000145, 00000000 + 0xb4633197, 0x000145 }, { 0x9cfed9e2, 0x4f611b88, 0x9e3ba77d, 0x2a966236, 0x1b2f8bef, 0x6025a6e0, 0x6f8c2ed9, 0xf648b981, 0x18d377ba, 0x3bb5d019, 0x9bd9dfb2, 0xe0f06a6b, 0x9d6b40f8, 0x5ec6da9, 0x36fd5c34, - 0x8ec07da8, 0x000112, 00000000 + 0x8ec07da8, 0x000112 }, { 0x3f443c7a, 0x6b9d416, 0x8e25b946, 0xdbc94780, 0x9c85a634, 0x5695f26f, 0xc45ae33e, 0xf2e4050, 0x1825b889, 0xffc810e8, 0xed19a70d, 0xa43562ab, 0xcdbe262c, 0xcaac058c, 0xb3b3c79c, - 0x69d701c, 0x0001b7, 00000000 + 0x69d701c, 0x0001b7 } }, { @@ -76022,19 +76019,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb03d5100, 0x86ec2c27, 0x5a398e74, 0x51516f71, 0x2fc08424, 0xb3316cd7, 0x602875ca, 0x170fa79b, 0xe71d6f80, 0x7c90beb1, 0x23464f7d, 0xc5fa33e7, 0x7cff635b, 0xa9bda16e, 0xcc41a070, - 0xe6a7fdc7, 0x000135, 00000000 + 0xe6a7fdc7, 0x000135 }, { 0x1d36ab01, 0x6bce8448, 0x5689cee9, 0x9011c90b, 0xacdabc6d, 0xae545edf, 0xe6538b75, 0x40fdd60e, 0xb039fd20, 0x346c4b9f, 0xdfbae795, 0xbe46f7a, 0x25bf1e0f, 0x87498c70, 0xe4968a5a, - 0x4bd7c5ab, 0x000122, 00000000 + 0x4bd7c5ab, 0x000122 }, { 0x79c61a86, 0x28d54475, 0xb5f0f464, 0x51095b0a, 0xe0ddd660, 0x76a890be, 0x74f0b414, 0x2149df9c, 0x44c37753, 0x83bf3808, 0x9da8076b, 0x7a876a3e, 0xe8c0588b, 0xd7a33780, 0xa58f7d7f, - 0x7f70f4d6, 0x0001d4, 00000000 + 0x7f70f4d6, 0x0001d4 } }, { @@ -76042,19 +76039,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8d904d1a, 0xf88b2f9b, 0x73c8614, 0xc27a28b1, 0xd9dbdafe, 0x69eed3e3, 0x9976b759, 0xaf10e1b6, 0x9e97f4c6, 0xf0fdd85e, 0x39fa913a, 0x7180b248, 0x18e6c965, 0xce004c10, 0xe77b3709, - 0x4aafe890, 0x000103, 00000000 + 0x4aafe890, 0x000103 }, { 0x533c50bd, 0x9cd34f7d, 0x326cebd0, 0x2f35063e, 0xbd8f86d7, 0x7042d04b, 0x59eb459e, 0x3bfb071c, 0x86809039, 0x7420ffd5, 0xb8e872e4, 0xc421f9c8, 0x825d5e00, 0x66a6ebb0, 0x3bb43e83, - 0x886b7fca, 0x00019a, 00000000 + 0x886b7fca, 0x00019a }, { 0x5ee6c7e0, 0x77da9a80, 0xc2a72c83, 0xc16ac3d3, 0x348169b9, 0x2515f09b, 0xbf35614a, 0x23354be5, 0xc3e5505c, 0xce9d7fc0, 0x1e32a8cc, 0xa5d24bab, 0xd8812697, 0xa13c834b, 0xc15e5191, - 0x47b8278d, 0x0000ba, 00000000 + 0x47b8278d, 0x0000ba } }, { @@ -76062,19 +76059,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x19b9435, 0x9d759d20, 0x57420f0a, 0xacc9cdb4, 0x5e6087f9, 0x294d432d, 0x1207867b, 0xdf92a597, 0xe732a2fc, 0x11c7d8d0, 0xad4623bf, 0x6d4a3fec, 0x77afdb15, 0x766e4b13, 0x9d3b1f50, - 0xdb4b5109, 0x0001b4, 00000000 + 0xdb4b5109, 0x0001b4 }, { 0xcf0aab03, 0xcc7f188f, 0x83251e28, 0x587c855c, 0xda439ca2, 0x2b607f0f, 0xefa6f8e9, 0x938d39bf, 0xeb50c133, 0x60c5e747, 0xfd06eeed, 0xa7d4444f, 0xacf06e9d, 0x96d39be8, 0xe5e1a15c, - 0x5dd08cdf, 0x000073, 00000000 + 0x5dd08cdf, 0x000073 }, { 0xf292e20e, 0x92adb222, 0x5a054399, 0x41619708, 0xeaea8ebb, 0x15dd9033, 0xee3f0535, 0x8f438468, 0xe6673b08, 0x36f5f23d, 0x15518509, 0xb416ca52, 0x350d040d, 0xfa328ba9, 0xdab59253, - 0x2902a43, 0x000027, 00000000 + 0x2902a43, 0x000027 } }, { @@ -76082,19 +76079,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2c693b33, 0xc613d097, 0x3d4f713c, 0x882d7439, 0x9f9b604f, 0x181ce92b, 0x68f0b7f1, 0x50270e4e, 0xf179d0a9, 0xa931edce, 0x47a0df2b, 0x69104756, 0x9454e5df, 0x72ad4bd1, 0x2eb3a15f, - 0x1368ff81, 0x0001f9, 00000000 + 0x1368ff81, 0x0001f9 }, { 0x61ca8ea0, 0x2783a31e, 0xe65c877f, 0xc81e0393, 0x516c74b2, 0x629a529e, 0x1b4f50ce, 0x6c739462, 0xc6f97e6f, 0x5f75bdbf, 0xda16cd8f, 0xbaeaec0e, 0xf53d2fd9, 0x48f1202c, 0x6bf22eb3, - 0xa3ca66c7, 0x00006a, 00000000 + 0xa3ca66c7, 0x00006a }, { 0x5ad9e19e, 0xe6d294cb, 0x5f8bd552, 0x88e11690, 0xf76b6a3e, 0x875de285, 0xf10560b9, 0x45ff7a62, 0xe8401c2d, 0x6d08d2d0, 0xf22a29e6, 0xdd2b7967, 0xba275e19, 0x40db0912, 0x910b462b, - 0x89ef6054, 0x00009b, 00000000 + 0x89ef6054, 0x00009b } }, { @@ -76102,19 +76099,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x60f6abda, 0x6e475d81, 0x151e4892, 0x18520e94, 0xc16b5b42, 0x51f53654, 0xa919a5b5, 0xb778a8c1, 0x37f4a88d, 0x3b23b292, 0x7a0fb933, 0x43aea470, 0xa7cba97c, 0x7f78b17d, 0x634bed98, - 0xa9fe943d, 0x000144, 00000000 + 0xa9fe943d, 0x000144 }, { 0x9be96746, 0x7874653d, 0xaa81721a, 0xcf9cafbb, 0x1022aa45, 0x56e0b211, 0x970a9a06, 0x2e5d527d, 0x2ff807a8, 0x7b6c3161, 0xfdefafcf, 0x2967fa78, 0xeabecf9d, 0xa931cfaa, 0x96cc2859, - 0xe35027dc, 0x0000a5, 00000000 + 0xe35027dc, 0x0000a5 }, { 0xcd4fe0c0, 0xce19d0d7, 0xa1fcf6d1, 0xd68f9f70, 0x87891a97, 0xf58f6dd5, 0xcd87af02, 0xbc7cd035, 0x1036e5d4, 0x16c326c3, 0xc13b4732, 0x1c302144, 0x5a7dd300, 0xb3ec4bad, 0x30d4af7e, - 0xfbd44204, 0x000091, 00000000 + 0xfbd44204, 0x000091 } }, { @@ -76122,19 +76119,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1438249f, 0x8c7a880a, 0x881616a8, 0x81e4983, 0xc988aa, 0x5fc2e602, 0x62ea11fc, 0xd4240c29, 0xc22b66e7, 0x3a0b3c1, 0xf6949242, 0xd469ef7a, 0x808448a6, 0x330c8492, 0x33a146a2, - 0x998914da, 0x00012e, 00000000 + 0x998914da, 0x00012e }, { 0x6d3fc502, 0xcc73e761, 0xe92877de, 0x74bfe33e, 0x901121d6, 0xb9f859c1, 0x61091dfe, 0x79f1a5f6, 0x44e58887, 0x68f41238, 0x2a899e09, 0x684164ce, 0xd6349222, 0x8d303060, 0x326738a5, - 0xb4803ba5, 0x0000f2, 00000000 + 0xb4803ba5, 0x0000f2 }, { 0x12d4f35f, 0xfb3cd6b1, 0x7adfc182, 0xd99de69b, 0xa7a374f, 0x76293d6a, 0x808e0a70, 0x1f96892e, 0x41b28bdb, 0x96958db0, 0x9afa5040, 0x9dba8e2e, 0x474aef7f, 0x1b256e08, 0xc2dc33b1, - 0x1c1bba18, 0x000129, 00000000 + 0x1c1bba18, 0x000129 } }, { @@ -76142,19 +76139,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf5cd8515, 0xc9190db4, 0x62613fb0, 0x46ea49e2, 0xf7ce1e99, 0xac264c7f, 0x344c4b09, 0x39c4d011, 0xf9aafa16, 0xe8bbbb84, 0x3315f8a2, 0xc6aa4514, 0x85fd43af, 0x1f5dfbc1, 0x3b30b884, - 0x7f9e567d, 0x0001ff, 00000000 + 0x7f9e567d, 0x0001ff }, { 0x21965f8e, 0xf479a0cb, 0xceb78935, 0x225b5dc4, 0xd3f82f73, 0x9ff024d3, 0xa9911977, 0x7355161e, 0x612ef975, 0x48b97be, 0xacda0f9c, 0xb095fe93, 0x29bcfc95, 0x1d038c49, 0x4d2ffa8d, - 0x3cc1671b, 0x00019a, 00000000 + 0x3cc1671b, 0x00019a }, { 0x73a95bcc, 0x66e24ef5, 0xdaa7277c, 0x1657d79f, 0xf3ff2361, 0xd25b62fd, 0x11430045, 0x120c2c3b, 0x17d80a4c, 0xf78333f3, 0xddabe0b7, 0x596577be, 0x8dfa2938, 0xe408bea7, 0xb9d312aa, - 0x7255b322, 0x00017f, 00000000 + 0x7255b322, 0x00017f } }, { @@ -76162,19 +76159,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xce68705e, 0xc62c85b, 0x277fbe69, 0xf369be89, 0x623f1aca, 0x7ead58dc, 0x5e843b22, 0xd27d1996, 0x21f3f55a, 0xead5be7e, 0x64f72050, 0xcef31213, 0x833933b1, 0xb1e4c2df, 0xc173027d, - 0xfeba64dd, 0x00015d, 00000000 + 0xfeba64dd, 0x00015d }, { 0xe0fc048c, 0xe8b65655, 0x54246f93, 0xded7db99, 0xd3890d8c, 0x98947846, 0xb97d8638, 0x16baf7d0, 0x40a47c12, 0xd379fa15, 0xe0e9769, 0x15b3b021, 0x43981018, 0x62d32fb5, 0x1377f611, - 0xdd5ef51e, 0x000006, 00000000 + 0xdd5ef51e, 0x000006 }, { 0x8fdeb44f, 0x16e3a10c, 0x434bf096, 0xf5cbfa62, 0x730a517c, 0x88d300be, 0x2c4c893c, 0x25ef0996, 0xd3c38bf9, 0x281221e9, 0xa034081b, 0xbf7ee3c6, 0x229ee9d, 0xaab3f369, 0x5a20d5ff, - 0xdf70ccb2, 0x0000cc, 00000000 + 0xdf70ccb2, 0x0000cc } }, { @@ -76182,19 +76179,18 @@ static WORD generator_table[144][15][3][LIMBS] = 0xba365846, 0x15441554, 0x72571f19, 0xe532e9e1, 0xba161501, 0x4d4098fb, 0xa70789bf, 0xe8d13004, 0x755bbb01, 0xeea90112, 0xd35ae91d, 0x623dca20, 0xf042fbb0, 0x8408fc44, 0x2004a578, - 0x3660e95a, 0x00012e, 00000000 + 0x3660e95a, 0x00012e }, { 0x83433252, 0x35f352b9, 0x20d3e700, 0x8fd02711, 0x408e87c4, 0xc4da0823, 0x426789, 0xdbfe6c46, 0xcc75bf5, 0x978c7e27, 0x6c8f626, - 0x1e3361a5, 0xeb142045, 0x6433fbe, 0x19a0b11a, 0x7ddeb99a, - 0x00001a, 00000000 + 0x1e3361a5, 0xeb142045, 0x6433fbe, 0x19a0b11a, 0x7ddeb99a, 0x00001a }, { 0x26536747, 0x23428d72, 0x9d7acbed, 0x84d9c084, 0xb40132d2, 0x7925b96b, 0x608ed7a6, 0x8b672d5a, 0xb2f7a331, 0x8c663fe7, 0x243aecff, 0x43a481af, 0x17adfb38, 0xf1b768b0, 0xadc94cb8, - 0x59a75383, 0x000165, 00000000 + 0x59a75383, 0x000165 } }, { @@ -76202,19 +76198,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1b792ce3, 0x86e9ad02, 0xa731d1b9, 0xc024fe44, 0x6a3f450f, 0x738f29e8, 0xe9f29cef, 0x2ec343d2, 0x9309647c, 0xe8531781, 0xe5431aab, 0x58631167, 0xff293296, 0x546cf3e5, 0xc93f6ac3, - 0xdd6b42b3, 0x0001a8, 00000000 + 0xdd6b42b3, 0x0001a8 }, { 0xa721b360, 0x4c7f2582, 0xc1948e22, 0xc1e26fa0, 0x1c191eb6, 0xa5543499, 0xe1035c3, 0x2b7d789b, 0x5a3db3e, 0xd3edadc, 0xe05246ee, 0xd54270cc, 0xf6c7e508, 0x8cb4356c, 0xb18a5a02, - 0xaf24b7d4, 0x000133, 00000000 + 0xaf24b7d4, 0x000133 }, { 0x30608824, 0x30bddfed, 0x25f2a4a6, 0x5712ddc, 0xe2da8bdc, 0xe8efe565, 0x83856c93, 0x9b1a84cc, 0xfc7f914f, 0xfc03343c, 0x6d2d793c, 0xf980c448, 0x4f66eb1e, 0xef06678b, 0xf787d89f, - 0xf900a33e, 0x000151, 00000000 + 0xf900a33e, 0x000151 } }, { @@ -76222,19 +76218,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfba36bca, 0x44042f85, 0x7239268a, 0x6ce0a9fe, 0xc7af54df, 0x5ad77018, 0x4cac33be, 0xca701559, 0x8de9015f, 0xdc2c24ba, 0x771e6937, 0x13c2332c, 0x2e76703d, 0x6849fc97, 0x2daa4ddb, - 0xe6d3a202, 0x0000ed, 00000000 + 0xe6d3a202, 0x0000ed }, { 0xd9671e60, 0xf362a1e9, 0x4a3e5842, 0x881e3d6b, 0x2a11f806, 0x6223baf4, 0xaef566e, 0x5766dca8, 0x39e877ed, 0x37fa3827, 0x81bb7594, 0x561e2a85, 0x87c433f7, 0xd18fb8f7, 0x58905488, - 0xcedaae38, 0x00011a, 00000000 + 0xcedaae38, 0x00011a }, { 0xb064888b, 0xe8a0c7e8, 0x63e9e274, 0x8f80e2b0, 0x83664f54, 0x467d537a, 0x5b00a643, 0xf26112e2, 0x1dcb34f0, 0xa65fa76a, 0x4f9ecd5c, 0x3af7e543, 0xf0c96df7, 0xac5a10ca, 0xace056ba, - 0x14123e4a, 0x00002a, 00000000 + 0x14123e4a, 0x00002a } }, { @@ -76242,19 +76238,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x110b3e62, 0x566e8698, 0x2694fa26, 0xfc37a485, 0x6761e94d, 0xf5ed9175, 0x510d923b, 0x63ac3b7a, 0x3d826ec6, 0x7b66e0d3, 0x3e366c11, 0x7fcd18ae, 0x5052004e, 0x80586ada, 0x226481de, - 0xdf11c386, 0x0000d1, 00000000 + 0xdf11c386, 0x0000d1 }, { 0x21d45de9, 0xe4dc97eb, 0xd04a1766, 0xbe4b675b, 0x971b5e04, 0xac270dae, 0x79b062a4, 0x9b1ab8d5, 0x666d72ca, 0x28062a96, 0x155954de, 0xf5a04b23, 0x362fed23, 0x43383720, 0x4c61e469, - 0x2fe7957c, 0x00018a, 00000000 + 0x2fe7957c, 0x00018a }, { 0xd7a06de8, 0xc7bb8adf, 0x61fd91b3, 0x6167ff46, 0xc1a77c5f, 0x593b4c6f, 0xb0977e4a, 0xe09c93e0, 0x60d9c218, 0x9f3cf202, 0x834fbd5e, 0x41dd98fd, 0x4700c2b2, 0xf5514ddd, 0x626edec2, - 0x39955778, 0x0001d4, 00000000 + 0x39955778, 0x0001d4 } }, { @@ -76262,19 +76258,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb7445828, 0xc0815c71, 0x6267d3e4, 0x4c38d053, 0xad58c091, 0x8be3175c, 0x37fd5ba, 0x72b21f68, 0xe71ce448, 0x39a42c81, 0x878c7a72, 0xb024b2b0, 0x9c492ae9, 0x11db573b, 0x8582899c, - 0xa2728b4c, 0x0001f1, 00000000 + 0xa2728b4c, 0x0001f1 }, { 0xa853a748, 0xb7ce8a5f, 0x963f3c37, 0x2c8c5251, 0xd01e7ce3, 0x20123c78, 0x2e13aadb, 0x40ba2768, 0xa476171b, 0x53f03673, 0xb9a592c0, 0x77c8a996, 0x4ab2f1db, 0x58c3b0a3, 0xe167dcc0, - 0x40e78608, 0x0000e9, 00000000 + 0x40e78608, 0x0000e9 }, { 0xa29f381c, 0xb7f32d09, 0x80f8b5ae, 0x7480b657, 0x1b2f78c0, 0xd0843343, 0xc52c2392, 0xdcd1dbeb, 0xf65ad0f5, 0xc1214e17, 0xf527cf88, 0x980cfca6, 0xae6148d, 0x8f8c0f9a, 0xd9f0b9c3, - 0x226d78c, 0x000166, 00000000 + 0x226d78c, 0x000166 } } }, @@ -76284,19 +76280,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7944f38c, 0x9d5bfb6c, 0xc357b2e3, 0x5d9b0365, 0x7c346e47, 0xda27ee9f, 0xbe00f2bc, 0x976251af, 0xcf38022c, 0x3d7f2616, 0x34061898, 0x35e5e79a, 0x34cb9f4b, 0x98aad08b, 0x3ef9e931, - 0x3cb1506f, 0x00019c, 00000000 + 0x3cb1506f, 0x00019c }, { 0x1a07a6c9, 0x85decd4a, 0x380de99e, 0x33d6aed5, 0x8adada84, 0x625d1c57, 0x3d57d4e9, 0x90753b7c, 0x52eec129, 0xeadc341, 0xac76745d, 0xf19ffd8, 0xa6e885fb, 0xfff93fbe, 0x828e5b26, - 0x3547af12, 0x00017b, 00000000 + 0x3547af12, 0x00017b }, { 0xfa6a8505, 0xb4213672, 0x2743cb8d, 0x2692b839, 0xea21c82f, 0xa9931c35, 0xe57cb101, 0xaafc66ed, 0x2e11680d, 0x4a9b1c27, 0xa829d947, 0x93fa708e, 0x52e1c3a, 0x788ee88f, 0xb0560526, - 0xc7b5e762, 0x00012b, 00000000 + 0xc7b5e762, 0x00012b } }, { @@ -76304,19 +76300,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x48e27ff3, 0x1da7b1e5, 0x3e863973, 0xa7dcb306, 0xeb93045c, 0xa7f2c384, 0xb6148659, 0xec75ff4c, 0xbea2e121, 0xe986f931, 0x95156aa0, 0xdacf2815, 0xc01f12ef, 0x27dc73d6, 0xb2691f40, - 0x5bfbd0a1, 0x0000c6, 00000000 + 0x5bfbd0a1, 0x0000c6 }, { 0x2754bdd6, 0xccd16346, 0x8ea8cd34, 0x9d8f9046, 0x9c8c2160, 0xcc71e0a0, 0x1837168f, 0x4ace4c49, 0xa7d50241, 0xe876d579, 0x4adf046, 0xa06573d2, 0xdc62477c, 0xc8c04545, 0x7b6c79ff, - 0x62b0faca, 0x000137, 00000000 + 0x62b0faca, 0x000137 }, { 0xe0e5db3d, 0xb17d931a, 0x956625b7, 0x5006ecf7, 0x53b076f6, 0xfc34d815, 0xb4184dcd, 0x2aa68571, 0x4d72f300, 0x432a043d, 0xfc109bd3, 0xe63f89cf, 0xdc09977d, 0xbb4ec1a2, 0x6605103a, - 0x94cee318, 0x000163, 00000000 + 0x94cee318, 0x000163 } }, { @@ -76324,19 +76320,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe29b74f4, 0xcddf65f3, 0xbc252661, 0x213745ac, 0x7dbbc413, 0x94872a3e, 0x2bc25c6e, 0xf408a170, 0x13795b4f, 0xa774519f, 0x3c32910, 0x7bab0219, 0x2e4e68c2, 0x2fe49dd, 0xa299d68, - 0xf9ee0d28, 0x00011e, 00000000 + 0xf9ee0d28, 0x00011e }, { 0xacbf040a, 0x3e5b186f, 0x19c74dee, 0xae4b8b6a, 0xc9fd80ca, 0x884dfbbc, 0x65c2e29, 0x39f6ce06, 0xe121df79, 0x9cfd4189, 0x170a2bca, 0xdedf3ef, 0x8a943407, 0x9df6dac8, 0x4a4318db, - 0xea79196b, 0x000001, 00000000 + 0xea79196b, 0x000001 }, { 0xec4aefcb, 0x7f588afe, 0x22c4a9d2, 0x7693c48e, 0xdf91ebad, 0x55374a64, 0xcb520a3a, 0x7a7d002c, 0x8c90dd5d, 0xf3616845, 0xf27feb0e, 0x1d24c060, 0x4979abe8, 0xf31a5d07, 0xfcc82dea, - 0x7bb18af5, 0x000171, 00000000 + 0x7bb18af5, 0x000171 } }, { @@ -76344,19 +76340,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x75e2d589, 0x9b84705e, 0xa3211ef8, 0x885de8de, 0x9bca30ac, 0x4d0191c6, 0x8ec7faef, 0xccaa058d, 0xe8489e1a, 0xc552c409, 0x84a9a6, 0x6de5861f, 0xdfc917fb, 0x81fccc36, 0x13e3675, - 0x930b04f1, 0x0001fc, 00000000 + 0x930b04f1, 0x0001fc }, { 0x1855d67c, 0xf3f50f44, 0x84741c6d, 0x6dcd8bf, 0x504dde0f, 0x6ff93295, 0x81cdd737, 0x312a892f, 0x66b14296, 0xed0622f8, 0x18fb209b, 0x1ab2068c, 0x7b79e3ff, 0x3b8d7cb9, 0x8983c2c1, - 0x96c2c409, 0x000025, 00000000 + 0x96c2c409, 0x000025 }, { 0x3ffaaaee, 0x8f930cf8, 0x6e0733db, 0x1455940a, 0xce6b9860, 0x33412e5, 0xd9f64ad2, 0xf6f6617f, 0xea67ade7, 0xfb62a2b6, 0xbc8f4d67, 0xa491f915, 0x15bd746d, 0xddf08a31, 0xd2feb36, - 0x5947c1f6, 0x0001c2, 00000000 + 0x5947c1f6, 0x0001c2 } }, { @@ -76364,19 +76360,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3a6d5128, 0xd69671b4, 0xebce6e3b, 0xac49f702, 0xc36e71ce, 0xf5532aa, 0x27b53a17, 0x49f0ef79, 0x7b37784f, 0xa36e7b8e, 0xecebe1be, 0x1c1def93, 0x418b7c9b, 0x2173e58f, 0xa164a3ed, - 0x9fb8601a, 0x0000af, 00000000 + 0x9fb8601a, 0x0000af }, { 0xad55b450, 0x36a591d7, 0x1531559, 0x8a114b8, 0x9f77cd0, 0x5b7c5bfd, 0x91f0f404, 0x4ecbba7, 0xc255103c, 0x7808430f, 0xd5cfbf4d, 0x3e72f96a, 0x258e3939, 0xc1f26fcb, 0xe7b25d9a, - 0x885d5856, 0x00003c, 00000000 + 0x885d5856, 0x00003c }, { 0x3d263960, 0xff784923, 0x11eb4e3e, 0xaec3adc9, 0x3fb680e0, 0x9709bc59, 0x70d95ba2, 0xf50e58b9, 0xfee2ee4e, 0x78494042, 0x818e920d, 0x84e4e177, 0xed4062d8, 0x2029b7fe, 0xec8c5698, - 0xc44e3075, 0x0001d9, 00000000 + 0xc44e3075, 0x0001d9 } }, { @@ -76384,19 +76380,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3aced98f, 0xf28b5735, 0xb0ae5501, 0xa4534d86, 0x111060ef, 0x980ce7c0, 0xecf7c9ff, 0xfd3785ad, 0xea96a426, 0xc5734c0d, 0x4cc7f46, 0xecfd71c2, 0xb42815e, 0x30b9f619, 0xb4666362, - 0x74e800d1, 0x00019c, 00000000 + 0x74e800d1, 0x00019c }, { 0x6dcb26ff, 0x8e8f7dc2, 0xb188ffef, 0xdbb6228a, 0xccc772f3, 0xa9978851, 0xaf9ee792, 0x5e6b0eb9, 0x21fede42, 0x1edc88dd, 0xb5fce92f, 0x743b3907, 0xebfbdf75, 0x44dc893f, 0xbaee618, - 0xe5408dc6, 0x0001f4, 00000000 + 0xe5408dc6, 0x0001f4 }, { 0x8b387dfe, 0x8aa86834, 0x953f9ab8, 0x1380f307, 0xaa35998b, 0x421411b4, 0xe8e4a9db, 0x38c660ec, 0x88c886ec, 0x62a842fd, 0x5b23eb14, 0x907d28eb, 0xc8f17534, 0x771a7311, 0xbaa43a29, - 0x45c56ef, 0x000035, 00000000 + 0x45c56ef, 0x000035 } }, { @@ -76404,19 +76400,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe4b60ab3, 0x5b44d6c3, 0x974916ed, 0x1c976e78, 0xd4db0489, 0xde869e5c, 0x8b132665, 0xa22f2864, 0xa5c103e0, 0xdb1a6f87, 0x78f9b01e, 0x316f38df, 0xc04f848e, 0x4572eb6, 0x56ec70a1, - 0x94e2b4b, 0x000182, 00000000 + 0x94e2b4b, 0x000182 }, { 0x4a70c52c, 0x5639d547, 0xea0eb8d7, 0xef939073, 0x2f4bacd2, 0x5af36ff, 0x56c81ed8, 0x75ec8398, 0x296f18eb, 0x4f7d2b87, 0xc2621e27, 0xc0f794f4, 0x207d3bb9, 0x4052081, 0xad51e42f, - 0xb2f97568, 0x0001b8, 00000000 + 0xb2f97568, 0x0001b8 }, { 0xefe89a74, 0xb148952c, 0xb9289d1c, 0xb7c3610c, 0x3d8bca2c, 0x5c14603e, 0x6df98423, 0x839c5bab, 0x410c33b8, 0x9c45ca79, 0x6c8ba9cb, 0x4166fa69, 0x2b43dd11, 0x56058d10, 0x16c7fadb, - 0xc6373fec, 0x00002d, 00000000 + 0xc6373fec, 0x00002d } }, { @@ -76424,19 +76420,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x513bd07a, 0x92e6302a, 0x1871f5bb, 0xc47d6b95, 0xc6dda060, 0x3d6955c, 0x5a39bbe2, 0xb5cef9fe, 0xd01c96d6, 0xb321d6fc, 0x7056845b, 0xa3d45739, 0xb9f70631, 0x2569b97d, 0x45cd1484, - 0x8612a372, 0x000142, 00000000 + 0x8612a372, 0x000142 }, { 0x823ff41f, 0x37bded, 0xd103e907, 0xc3c142d3, 0x8d878ca4, 0x90fe4a88, 0x57245f10, 0x95d1c377, 0x1a4acef5, 0xb36df293, 0xdb10f19b, 0x8fe32ed6, 0x3dcc21c5, 0x4a2223e7, 0xb6153446, - 0x911b4daa, 0x0001b4, 00000000 + 0x911b4daa, 0x0001b4 }, { 0x24d26fcb, 0xe4c84a55, 0x7fda0c11, 0x7e470e39, 0x5281869c, 0xcc01e56b, 0x514cb2e4, 0x675e5684, 0x6c621175, 0xf00fc93e, 0xf399e3da, 0x7eaf9e09, 0xc50fa48b, 0x450f932e, 0xd124a23a, - 0x3562609e, 0x0001f0, 00000000 + 0x3562609e, 0x0001f0 } }, { @@ -76444,19 +76440,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbcd8e5de, 0x87a3a72f, 0x7efc5174, 0xd2775c9e, 0xcc332443, 0x4b059d2d, 0xbdf0f407, 0x534fe093, 0xa84642af, 0x3ee40a27, 0x69b142b2, 0x2e6ceec9, 0x37c57070, 0xdd6431a3, 0x6190da58, - 0xf31db6ff, 0x000054, 00000000 + 0xf31db6ff, 0x000054 }, { 0x5b190605, 0x289ef48a, 0x86a77e85, 0x3e513c09, 0x9cc66f42, 0x294b47ab, 0xa3477a7d, 0xdf5e6f89, 0x80c99ca3, 0xcecf39ac, 0x4fffff07, 0x16aac829, 0xbd998969, 0xf9b81e98, 0xb055e13a, - 0x753798a, 0x0001b0, 00000000 + 0x753798a, 0x0001b0 }, { 0xe2a0e570, 0xfb63c725, 0x9fc84592, 0x8f868675, 0xa19b443, 0x1d1ddd89, 0xbcd6dc7c, 0x619d2a94, 0x1eb5cda7, 0xd0fc82d0, 0xc0e8c4ae, 0xed8f9396, 0x2d60dd73, 0x70a3d86c, 0xc053fcbf, - 0x6bd958cf, 0x0001e8, 00000000 + 0x6bd958cf, 0x0001e8 } }, { @@ -76464,19 +76460,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40698af8, 0xf4962729, 0xb4b10781, 0x232013b4, 0xa68db296, 0x95bebe64, 0x4489bdd8, 0x3672dd59, 0x3a5bece1, 0x7ee14a5d, 0x19437492, 0xd7db52ec, 0xcb88e5b5, 0xb5ac4f27, 0xd5f88114, - 0x47b99856, 0x000183, 00000000 + 0x47b99856, 0x000183 }, { 0xb8b1be86, 0xa6a1ad3e, 0x65919fe8, 0xc3846c98, 0x7e42ae85, 0x3682a8a6, 0xa8986e08, 0x26d6f167, 0xd26b5ac7, 0xa9290e5b, 0x7adedacf, 0x9fb3b4fc, 0xcf04ad8f, 0xe415b1e7, 0xf5be31e9, - 0x4a70aeb0, 0x00010a, 00000000 + 0x4a70aeb0, 0x00010a }, { 0x2034207e, 0xe62e7535, 0x7ae7e68b, 0x3e08e618, 0xd2089728, 0x872848e2, 0xbf59f906, 0xed5b78fc, 0x855e36b0, 0x4647da48, 0x9b98b948, 0x2aff43b0, 0x14aad40f, 0x19c1ba1f, 0xfc28a592, - 0xca712a6f, 0x000004, 00000000 + 0xca712a6f, 0x000004 } }, { @@ -76484,19 +76480,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40980815, 0x7f9a132b, 0x8e0e478e, 0x5e2c71b9, 0xd34f370a, 0x7aff6fac, 0x6b05f0a6, 0x240a55d9, 0x21dc5e32, 0x5d61337a, 0xce08db, 0x889f4837, 0x24da0774, 0x237a04b7, 0x9c10b2a5, - 0xbc5d8576, 0x0000d1, 00000000 + 0xbc5d8576, 0x0000d1 }, { 0xf5aaf228, 0x8da9adf2, 0x67c5f2e5, 0x4721c443, 0xe3a8c417, 0xccf986ab, 0x1dce6b2f, 0xc7421fa8, 0xee9fbc56, 0x35604d92, 0x8c27931e, 0xb9abacb5, 0xc771dc49, 0x76403b57, 0x2bc0aa50, - 0xd8d7a050, 0x0000b5, 00000000 + 0xd8d7a050, 0x0000b5 }, { 0x63f814ed, 0xb4d0fb, 0x72863f9, 0x9d11ba9c, 0x1df08178, 0xffd4e318, 0x9db1410f, 0x573ac16c, 0xe26522c2, 0x146489f6, 0xef2d7023, 0x64404ca3, 0x8398a09f, 0xa508b488, 0xca4ae475, - 0x109c5102, 0x00006b, 00000000 + 0x109c5102, 0x00006b } }, { @@ -76504,19 +76500,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbc05034c, 0xa2dc73f9, 0x17b70ab0, 0x9a325dd4, 0x10f4b1f2, 0xffd26646, 0x238a2e0a, 0xdcef0459, 0x49a302c5, 0xc803e9bd, 0x9c8fa5bf, 0xc1ae89af, 0x35b1277f, 0x8df39da4, 0x37164368, - 0x63ccaaa1, 0x0000ea, 00000000 + 0x63ccaaa1, 0x0000ea }, { 0x3e6d1895, 0x54cfad78, 0x7379dc17, 0x83c84daa, 0x9b67f7ae, 0x987d30f0, 0x1a602d62, 0x8b8e5067, 0x6ca1e00c, 0x5ba6edda, 0xdad0a885, 0x259448bf, 0x1795e4b8, 0xddaec43f, 0x7e41d6c1, - 0x2346701f, 0x0001fe, 00000000 + 0x2346701f, 0x0001fe }, { 0xc34ca215, 0xca38e2e8, 0xd6207045, 0x102a797e, 0xb3ffc8d7, 0xb87a7a78, 0xfc3b0aa2, 0xcbbccf71, 0x1afc68ba, 0x57eaaf81, 0xfe5561cf, 0x41def878, 0x550c748, 0x6d36e842, 0xd0fcc40b, - 0x53044c51, 0x000065, 00000000 + 0x53044c51, 0x000065 } }, { @@ -76524,19 +76520,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xafab0c8a, 0xa90d1c83, 0x7cc52001, 0x11da5126, 0x374df05c, 0xe61d3e5e, 0xd0d24167, 0x35e3008f, 0x70dfa870, 0xbb898fb2, 0x680b14aa, 0x3f729d08, 0xfff5901d, 0x4373d718, 0x8aafd464, - 0xd6b37783, 0x000196, 00000000 + 0xd6b37783, 0x000196 }, { 0x8550c3a3, 0x7b5e52e8, 0x48655080, 0xcbd77def, 0x4870a0d7, 0xeb70b6ea, 0x768d3062, 0xe0264ad8, 0xbaad95fb, 0x4014c9a0, 0x92577aa1, 0xe814e829, 0xa2f31c9b, 0xf3b7173d, 0xf6a86472, - 0xbc24a75a, 0x0001fa, 00000000 + 0xbc24a75a, 0x0001fa }, { 0xfa9ed274, 0xfcade7d6, 0x71efaa9f, 0xd69a5bde, 0xd8b12a80, 0x458d4ae8, 0x5b634586, 0x6681560c, 0x9b4a4be1, 0x3caa771a, 0x1c3325d1, 0x65c48bf9, 0x89591e4e, 0xbf5b42d4, 0xc10fd7f7, - 0x171cec6c, 0x000122, 00000000 + 0x171cec6c, 0x000122 } }, { @@ -76544,19 +76540,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x20c910dd, 0x74777e79, 0x4b4d3541, 0xbdc1d0bd, 0xc718f95e, 0x69ce79da, 0xa3d6aea0, 0x91f19c8d, 0xb2443c64, 0xe76d5a4e, 0xa3e41c9b, 0xa9c526c5, 0xb0ee228a, 0x3c9ffe9, 0xe1ca216a, - 0xeeadd3cf, 0x000029, 00000000 + 0xeeadd3cf, 0x000029 }, { 0x97b9492, 0xbb240f5b, 0x25b7fb9e, 0x3ba91353, 0x51682c2e, 0x46f3d627, 0x56094034, 0xc50587b1, 0xb8aca116, 0xa78a48e8, 0x3dbfb311, 0x899b093f, 0xf8a661e, 0xd50ff125, 0x762e87e2, - 0x61f48f21, 0x000010, 00000000 + 0x61f48f21, 0x000010 }, { 0xf773ef08, 0x33885dd8, 0x78a15cff, 0x189e5f6f, 0x1bfbebae, 0xaabf7280, 0x26bf3e0c, 0xac0464fc, 0x9a0a6e6b, 0x4a453c29, 0xc949af84, 0x9689ed85, 0x3b68c459, 0x4b2c87a2, 0xc0c1600, - 0x18e3d335, 0x0000e3, 00000000 + 0x18e3d335, 0x0000e3 } }, { @@ -76564,19 +76560,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x50d64beb, 0xe175dee8, 0xa668dd63, 0xbdee450e, 0xd8cffbe7, 0x2ba20238, 0xd899e6ac, 0x2831eba5, 0xdd76f065, 0x7a1a30cc, 0x1cece37c, 0xdb3768b2, 0x5a68d68e, 0xeb1f1a4c, 0xf2fd119a, - 0x38d6093f, 0x000065, 00000000 + 0x38d6093f, 0x000065 }, { 0x1a474491, 0x1de507ec, 0x12b21161, 0xed8a9c85, 0xafc104f4, 0x1e3f49e7, 0x5b1a46ef, 0x5e6e736e, 0xae374251, 0x8e5d4fa6, 0x41f2a00, 0xaf600ffc, 0x75ab0317, 0x8beab524, 0x3dd96bcc, - 0xd04f8619, 0x0000b9, 00000000 + 0xd04f8619, 0x0000b9 }, { 0x5ba32bdf, 0xbae650d9, 0xf3e6a800, 0x8d6856c7, 0x47c7408, 0x4e5df02d, 0xb07349b1, 0x1b25256f, 0x557606c5, 0xd91a3ec7, 0xd39b9769, 0xf162e07c, 0xb4b4cfa0, 0x35bdcf89, 0x699a11e8, - 0x75b9dc00, 0x000077, 00000000 + 0x75b9dc00, 0x000077 } } }, @@ -76586,19 +76582,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc59877bc, 0x3fcc9aaa, 0xe7b5a7dd, 0x2aa3a62c, 0x31ddae33, 0x858b3938, 0x8800fb6, 0xca3975c4, 0x13771f96, 0xa01bbfaa, 0xb507e812, 0x2546374c, 0x7d597f97, 0x88bb6916, 0xc9320e61, - 0x1ad806e8, 0x00011f, 00000000 + 0x1ad806e8, 0x00011f }, { 0x944a4a0f, 0xb7407f3a, 0xc84fbbfa, 0xabd40387, 0x3ed7ec0f, 0x6ad80531, 0xea1877d1, 0x6d461cd7, 0xd8f17e18, 0xdc397456, 0x88ade748, 0xb68c3593, 0x3e5d37dd, 0xd5a5cffe, 0x4d875fd3, - 0x60aaef20, 0x0001a6, 00000000 + 0x60aaef20, 0x0001a6 }, { 0xd2cfa0d0, 0x9f9874de, 0xe9b6fae2, 0x9037cf9, 0xea7c74a1, 0x9df2bda1, 0x11054156, 0x2991024a, 0x718936d5, 0x99d84b25, 0x23bffae8, 0xa4f90214, 0x6592d8ae, 0x14d368d2, 0x242e3e77, - 0x3c633c59, 0x000093, 00000000 + 0x3c633c59, 0x000093 } }, { @@ -76606,19 +76602,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x60b377ee, 0x73a7c780, 0x5f1867aa, 0x12dea7c8, 0x5a1ae67, 0x26ce31, 0x4c5c3e33, 0x25aaca4b, 0x15827d12, 0x55b6d7d1, 0x66a61d3b, 0xe9f61ceb, 0xd29ad577, 0x2cda4e07, 0xb9e195b8, - 0x79e2b062, 0x00006f, 00000000 + 0x79e2b062, 0x00006f }, { 0x4225f3db, 0x539346c6, 0xd643dd8e, 0x756c6c12, 0xe25d951a, 0x1be443be, 0x26b584c4, 0x1ed30cf, 0xe671c446, 0x36c37d5d, 0xe852afea, 0x45eb2458, 0x63b93130, 0xe255061c, 0xa409599, - 0x7b8eb570, 0x0000b7, 00000000 + 0x7b8eb570, 0x0000b7 }, { 0x6d91d68c, 0xfcd661b4, 0xd8d19819, 0xa91bc97d, 0xbfd97fcc, 0x9f59c0c, 0x307ef69e, 0x65212e54, 0xf86f5f83, 0x421486b9, 0x66712e17, 0x1821e70c, 0xff18beba, 0x2a5b4275, 0xfdd5d40f, - 0xe16f7223, 0x00000b, 00000000 + 0xe16f7223, 0x00000b } }, { @@ -76626,19 +76622,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7389259e, 0xe9bed41b, 0xc90b54b3, 0x443d1b7b, 0xcb196c92, 0x4c60e17e, 0xcf60a6c5, 0x329e3144, 0x60b428a7, 0xd06715db, 0xc6dbb83d, 0xaf6b323c, 0x46374380, 0x9a4070f5, 0xf774156d, - 0x8f154028, 0x0000df, 00000000 + 0x8f154028, 0x0000df }, { 0x4e85ee53, 0xd83e6eb8, 0x5bc2b9b0, 0x62df3abd, 0x1c06923c, 0xe408668e, 0x361118d, 0x3fe8c04d, 0x9f2a597, 0xffb95deb, 0xeadb6d31, 0x73e6b5c, 0x17becd42, 0x5e3a6aa0, 0xa2a0e581, - 0x9506577e, 0x0001c0, 00000000 + 0x9506577e, 0x0001c0 }, { 0x69d859d4, 0x9333744c, 0x2e04c57e, 0x20793726, 0x92d23a8f, 0x3f5fd1ac, 0x272060a3, 0x3168aff5, 0xb6d810f4, 0xaa8ec9a2, 0xee9fbc, 0x4112c66a, 0xc7f0bcfb, 0x35a40ddb, 0xa6a171f3, - 0x6d30f18, 0x0000fa, 00000000 + 0x6d30f18, 0x0000fa } }, { @@ -76646,19 +76642,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd908ad81, 0xf8d7297b, 0x9df1f8c, 0x3fb9b1fd, 0x3f871668, 0xb6a948f0, 0xf4747223, 0x9f315928, 0xeb41b453, 0xf83a2329, 0x73a89a79, 0x8d6ea22a, 0x55b68eb, 0x5802e3e0, 0xe509964f, - 0xc5d02a8a, 0x00015a, 00000000 + 0xc5d02a8a, 0x00015a }, { 0xc2742678, 0xfddb29a3, 0x4ae95e14, 0x73625643, 0x1f94661e, 0xb40e153, 0x2da54cb5, 0x5ef12ff0, 0x9e9d6db2, 0x857a96a, 0x6e920a95, 0x5aee1809, 0xc55bf620, 0x5894065c, 0x154740a7, - 0x903948f8, 0x000105, 00000000 + 0x903948f8, 0x000105 }, { 0x2675dd43, 0xc8b8384f, 0x5e156cdf, 0x26f7dd98, 0x22067244, 0x9e8ff10c, 0x798c0443, 0x782521d5, 0x9aa7111a, 0x8128f022, 0x42a8426a, 0x76f544cc, 0x8cf9a786, 0x5a5bc30e, 0xa332302d, - 0xc9b542d6, 0x00005f, 00000000 + 0xc9b542d6, 0x00005f } }, { @@ -76666,19 +76662,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5ecb09c4, 0xdaac0ef0, 0x7b8ae263, 0x5aad9f8c, 0x39e0f2f9, 0xa54654ff, 0xd80c5486, 0x3e8e597e, 0x53dc4657, 0x55a53fed, 0xc1280797, 0xa785a7f5, 0xa442cbca, 0x51dba1f5, 0x8db2e451, - 0xf7b4ece6, 0x000164, 00000000 + 0xf7b4ece6, 0x000164 }, { 0x68f7832f, 0x913d5c9, 0x83d3357b, 0xe2df6fc, 0x92076c76, 0x78c0d667, 0x3878983f, 0x48bfe467, 0x57e6c285, 0x57b64b28, 0xaf6fed97, 0x7b16778e, 0xc2fd97e, 0x4382cf18, 0x964931a, - 0x14189c55, 0x000087, 00000000 + 0x14189c55, 0x000087 }, { 0x5d88692b, 0x76696d8e, 0x559e3790, 0x2d8715ab, 0xc2453ec7, 0x3e275b63, 0xf4f0bf55, 0xa1a3b379, 0x6669c816, 0xca005818, 0xb3ed6e38, 0x228fb50a, 0x14afa4ba, 0xe15b20ed, 0x417100e7, - 0x55cd38fa, 0x0001a8, 00000000 + 0x55cd38fa, 0x0001a8 } }, { @@ -76686,19 +76682,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc1cc8e17, 0x3b8bb0da, 0x925b0667, 0x144881c6, 0x67d79e28, 0x5284ea42, 0x9def0eac, 0xdc296602, 0xcc3d4428, 0x974b5f1, 0xe22ca2d4, 0xf4aa8142, 0xd5866f9e, 0x5ea7aeb9, 0xf28416cd, - 0x4caf3b90, 0x000065, 00000000 + 0x4caf3b90, 0x000065 }, { 0x6c4acb9d, 0xa129572, 0x3eab2b8b, 0xb032da74, 0xd5b31f1b, 0x3dbdf76e, 0xa9d69d83, 0xa4baa047, 0x957c9d44, 0x972beb91, 0xf1c86aa0, 0xcc1470d2, 0x11d315a3, 0xf7f5f516, 0xbbde85f5, - 0x56130687, 0x00015b, 00000000 + 0x56130687, 0x00015b }, { 0x50c6534c, 0xb9c9a3f0, 0xeccc1c3b, 0x57166851, 0x6a63ae52, 0xcce40e5c, 0x9816430c, 0xe13354ad, 0xc2a2f32b, 0x30101959, 0xca855c11, 0xb1d070bf, 0x5d43ebb2, 0xf42f530c, 0xd3a141b8, - 0x44b6791d, 0x00010c, 00000000 + 0x44b6791d, 0x00010c } }, { @@ -76706,19 +76702,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x85a52b99, 0x26249765, 0xa613d96c, 0xb8fd0d09, 0x5940ca2d, 0x9879a3c, 0x43fa5ed8, 0x1adffa2f, 0xe7a3a25a, 0xfaf33667, 0xc4659c0f, 0xba12b5ab, 0xe7137716, 0x98dd261, 0x37afa608, - 0x6c474b62, 0x0000c8, 00000000 + 0x6c474b62, 0x0000c8 }, { 0xab3baac2, 0x6d903c9b, 0x80f80038, 0x7267cca3, 0x7646876e, 0x65c2ff03, 0xcc82058e, 0x66940c7c, 0xc02a11c, 0xde693654, 0x369e234a, 0x374f495, 0xb1d4ca89, 0x6e55fe0e, 0x55032616, - 0x972e33af, 0x0000bd, 00000000 + 0x972e33af, 0x0000bd }, { 0x6cf581f0, 0xed4fabcb, 0x665e5e16, 0xe11c51d, 0x5754f3d5, 0x60b369f6, 0x61b34beb, 0xf6d0cceb, 0xb05eca5d, 0x64d3b72c, 0xac5f1092, 0xeb92fba3, 0x12a7e60, 0xac1cdaba, 0x4a2671b9, - 0x1d96018c, 0x0000b5, 00000000 + 0x1d96018c, 0x0000b5 } }, { @@ -76726,19 +76722,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1c29944c, 0xb44d5086, 0xdc6fac78, 0x8c6351ee, 0x764293b7, 0x1ebf0f87, 0xe734668a, 0x6eab8937, 0xdd7590db, 0x8f8294f3, 0xcb225a0b, 0x7cd0ef31, 0x50c3ee94, 0xc6b95f43, 0x3d971d77, - 0x25a6df9b, 00000000, 00000000 + 0x25a6df9b, 00000000 }, { 0x9a45c1cf, 0xa6159617, 0xd80e608e, 0xce7dbebe, 0xeb9adf8d, 0xf0fd9a4a, 0x25613013, 0xd9b59a2c, 0x5342f6ee, 0x2e5807bf, 0xe73ad21b, 0xaaabc2ba, 0x8ef0136a, 0x69215672, 0x1ec143cd, - 0x4c36fe42, 0x0000e0, 00000000 + 0x4c36fe42, 0x0000e0 }, { 0x8c44996c, 0x7b90ec36, 0xf4386105, 0x17f20f8, 0x97bf96c9, 0x88bb0c60, 0x4fd02bb1, 0xbdb60269, 0xc6482b53, 0xc8ab8cce, 0xb27a77ca, 0x216badbc, 0xa5fe5f87, 0xae013700, 0xf7e070d5, - 0xc089ae09, 0x000107, 00000000 + 0xc089ae09, 0x000107 } }, { @@ -76746,19 +76742,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa46ede3e, 0xde269771, 0x24a1b130, 0xf948bec7, 0x5cf7bf90, 0x6c3597d1, 0x7bce8cf2, 0x5f3ac30b, 0xdbd987a4, 0x92385ba7, 0xe1fdb508, 0xc506fa4d, 0xcb2b7b9c, 0x3e49ac7c, 0x8712c6ae, - 0x1e925f39, 0x00014d, 00000000 + 0x1e925f39, 0x00014d }, { 0xd7ba6d24, 0xcd8bb7e0, 0xa69e44f1, 0x4a07716e, 0xb7ed1163, 0xff99d57c, 0x5fa954fa, 0xab17808f, 0x9f381800, 0x9311df39, 0xd511451f, 0xbf5ec4f, 0xf97d20ba, 0xeff7822e, 0x90304fd8, - 0xd1b61883, 0x00019f, 00000000 + 0xd1b61883, 0x00019f }, { 0xf3805544, 0x2d6406ca, 0x7aea58b2, 0x64619f8e, 0x383cc377, 0x79feba7f, 0x8933fe99, 0x681830c6, 0xcb8bece5, 0xc408f2d6, 0x64efe0a3, 0x98abfcbc, 0x55cf5ffb, 0xbd39203c, 0xc92c18e4, - 0x64ddd255, 0x00007a, 00000000 + 0x64ddd255, 0x00007a } }, { @@ -76766,19 +76762,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa349e02b, 0x2ebc9a7c, 0xd25c27ff, 0x4206165c, 0xb1369bfc, 0x59ebf4e7, 0x60a31bed, 0xee682350, 0x90d97f94, 0xdaf2675, 0xad71549a, 0x8c2a4693, 0x8d7fd137, 0xc91f1feb, 0x5d7ae2b9, - 0xa54b83b5, 0x0001d4, 00000000 + 0xa54b83b5, 0x0001d4 }, { 0x969528a9, 0x37524a80, 0xca474f61, 0xb42b668c, 0xf8580b09, 0x7f3ebf9a, 0xa2bdcbc0, 0x9b8bbb4, 0xd5277e44, 0xe2d07d5c, 0xc0388ac3, 0xce939035, 0xa3ff344b, 0xb16d788e, 0x9f091c8f, - 0xbe728a5b, 0x0000a0, 00000000 + 0xbe728a5b, 0x0000a0 }, { 0x4115e9ac, 0x2c1a7881, 0xbc472982, 0xf066a4c5, 0xaa6c2e9d, 0x3d8d4826, 0xb84b2c0f, 0x11342cfb, 0x7091834e, 0x6f38c32d, 0xaa78e6c4, 0x5af5153a, 0x9ad7adc3, 0x507909fe, 0x1b4c6315, - 0xe420443c, 0x00011e, 00000000 + 0xe420443c, 0x00011e } }, { @@ -76786,19 +76782,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc20c29d1, 0x58379296, 0x6cb76251, 0xb2bf53b4, 0x976355db, 0x16ca4dc2, 0x1f3a7510, 0x947b7b21, 0x871bf93e, 0x532ded3d, 0xa59543f0, 0x917506c7, 0xc5fa65c, 0xbf921e8e, 0xd2e51ca9, - 0xa3faa57, 0x000176, 00000000 + 0xa3faa57, 0x000176 }, { 0x71e553ce, 0x6cba1c52, 0x87f25444, 0xf13221cd, 0xa69cc8cf, 0x6d8e0444, 0x3336030e, 0x136fe9dc, 0x10f0f52d, 0x2b5e54f7, 0xa6a63b3d, 0xba6db7b0, 0xf1c7f198, 0x406e2717, 0x88460561, - 0x16f4378e, 0x000127, 00000000 + 0x16f4378e, 0x000127 }, { 0xb5b514ca, 0xdc5b3695, 0x4db058d7, 0xe4e2a111, 0xd18eab1, 0x453ca415, 0x8595faa, 0xd20a20e6, 0xacfa7ff0, 0x66071746, 0x426d7543, 0xc9ae812f, 0x32c8064a, 0x1daf8dba, 0x8f2ce367, - 0x177d5943, 0x00002e, 00000000 + 0x177d5943, 0x00002e } }, { @@ -76806,19 +76802,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x87867adb, 0x21b2d13c, 0xfd929d8a, 0x6bd6d8ab, 0x9a505bf7, 0xc2c281a3, 0xb73354c2, 0x1209eb6e, 0xf9cb1d54, 0x5fbf2959, 0xe92e3f96, 0xde2df844, 0x723934ef, 0x1fdcca95, 0x7db23e52, - 0xecc413eb, 0x000016, 00000000 + 0xecc413eb, 0x000016 }, { 0x3f5fc54d, 0x437b44b6, 0xfd258109, 0x8e90cb17, 0x9240d039, 0xb9b30882, 0x3bc5b951, 0xe9c3480e, 0x6863ac86, 0xbd78d69, 0xf3cb9dbc, 0x6b857ef6, 0x4306f5bf, 0x75eb0327, 0x526663cc, - 0xdd513ea7, 0x0000b0, 00000000 + 0xdd513ea7, 0x0000b0 }, { 0x845c2a9a, 0x963c6d40, 0xc5de83bf, 0x9d4dafae, 0xe93d63d3, 0x30a0232, 0x3abad2d1, 0xdefc0475, 0xe48a026, 0x5b72eb77, 0x15caa3b, 0x94b66ca4, 0x8933427d, 0x61c09585, 0x7f3e80a6, - 0x2d9f36f0, 0x0001ae, 00000000 + 0x2d9f36f0, 0x0001ae } }, { @@ -76826,19 +76822,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd65a247a, 0x3cca7305, 0x2028c13, 0xc1f97256, 0x7a131fc1, 0x164f1183, 0xff1d3bce, 0xf84db66a, 0x19ad2a7a, 0x180865cd, 0x3d204c5c, 0xc8000424, 0x26f22680, 0xa56ffc89, 0xf9820ca1, - 0x17511525, 0x00002f, 00000000 + 0x17511525, 0x00002f }, { 0x58d4be42, 0x9ebd52af, 0x46fd83b, 0xe0bba213, 0x11891e2, 0xfa487adf, 0x1c595bd2, 0x989a74dd, 0xb03c3692, 0x7970121e, 0xcea817ea, 0x255096da, 0x546d3301, 0xb0760cb4, 0x5cec2e58, - 0x41462bc4, 0x0000de, 00000000 + 0x41462bc4, 0x0000de }, { 0x443ab210, 0x77f3a369, 0x4cd6308f, 0xef0d6d6d, 0xc3b36c14, 0x7f32d7a4, 0x4a22af89, 0x221c3f0e, 0x4a1eeb04, 0x83814e2, 0xc7cc48a0, 0xf8e2aad, 0x8691d1f8, 0x2fe86da6, 0x408e84ea, - 0x1c8f34e7, 0x000022, 00000000 + 0x1c8f34e7, 0x000022 } }, { @@ -76846,19 +76842,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9f874ed, 0xd1111e60, 0xa9a7e2a6, 0xb3a5e29b, 0x6ccb80f9, 0x9b2ca209, 0xd1c42beb, 0x5267b4e8, 0x44aad24, 0x840baf4c, 0xde7c3af5, 0x35ec1c34, 0xefa31e18, 0xb3dbe13f, 0xba06be0a, - 0x12469baa, 0x000193, 00000000 + 0x12469baa, 0x000193 }, { 0xec671744, 0xde8fdf24, 0xdb5f612f, 0x2aa96faa, 0xfd4d27b, 0x6e97a8f2, 0x34a98189, 0x5aad4b68, 0x3da36569, 0xae7d0c89, 0x978052e2, 0x6f0462ea, 0x99bed6ef, 0x101a66dc, 0x8ed9cd14, - 0x6db7cb0, 0x000050, 00000000 + 0x6db7cb0, 0x000050 }, { 0x3825c648, 0xeced8e78, 0xb3b2f58f, 0x61235ed1, 0x3003ab60, 0xd3d53212, 0xc9c908dd, 0x79cccffb, 0xac641b7e, 0xc73357d5, 0x69b5eb10, 0x2d9f445c, 0xe2934104, 0xf12cd519, 0x5473315d, - 0x42305a40, 0x0001d9, 00000000 + 0x42305a40, 0x0001d9 } }, { @@ -76866,19 +76862,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa647933a, 0xe6ce8913, 0x8cf63700, 0xe1695794, 0xc927a500, 0x32d7d0d4, 0x71453bb8, 0x71277ffd, 0x5de6f5e, 0x7474c842, 0xe1e27c2b, 0xc59fd244, 0x9ac869ac, 0x57917c12, 0xcbd65218, - 0x7a4d0186, 0x0000b1, 00000000 + 0x7a4d0186, 0x0000b1 }, { 0x15287992, 0xd66f3d8a, 0xe03a8cb3, 0xb33dff0d, 0x36663278, 0xe8596118, 0xf1847976, 0x3a17baba, 0x6a8418c3, 0x524df152, 0xb1877770, 0x4be05ec4, 0xb3385b84, 0xad645035, 0xca3703df, - 0xbe639909, 0x0000f5, 00000000 + 0xbe639909, 0x0000f5 }, { 0x1f404aee, 0xbd32bcb7, 0x9768a181, 0x8ef6f7a3, 0xfe3a24fa, 0xe3e973f0, 0x55d34b8f, 0x1cc3ae4e, 0xf160b6a8, 0xd20407ac, 0xfdeda49a, 0xd06a9074, 0xb58056a0, 0xd66c0610, 0x4cb7b472, - 0x64084008, 0x0000ee, 00000000 + 0x64084008, 0x0000ee } } }, @@ -76888,19 +76884,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa0c79c97, 0x3b5a8199, 0xd6c4c00c, 0xfc73db2a, 0xa9341b6e, 0x5d2d976e, 0x76ccdcfa, 0x59d45b35, 0x84bd3434, 0x78f0e93d, 0xe82bca49, 0x2e7e69a6, 0xfe00e6f2, 0x6fc3f639, 0xdde1ea34, - 0xb4277441, 0x000109, 00000000 + 0xb4277441, 0x000109 }, { 0xf2941e03, 0x1e312f9c, 0x3189f42f, 0x3d1b9b74, 0xdc3af972, 0x43aad3b6, 0xa624b934, 0xf55f0f8a, 0x4f7b7778, 0xc52a07e0, 0xf0e75ca5, 0x2c561ab5, 0xc43dae98, 0xb31035b6, 0x1c374281, - 0x14c5cb45, 0x00007c, 00000000 + 0x14c5cb45, 0x00007c }, { 0xe90b8b7a, 0xfe931306, 0xdd5d444a, 0xb298f7b1, 0xf9c5e22d, 0xaf06c114, 0x93416b0b, 0x215f7d0e, 0x812049c8, 0x46b130f, 0xf12d7754, 0x82abffe2, 0xf31a016b, 0x9f1da213, 0x1f27aa2a, - 0x66c82a6c, 0x0000e8, 00000000 + 0x66c82a6c, 0x0000e8 } }, { @@ -76908,19 +76904,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb7b93e99, 0x75df98d5, 0x5843307f, 0xc55cd0c, 0xeb71baf0, 0x2011c6ac, 0x7ed7e76f, 0x31882534, 0x210dc33c, 0x398e7179, 0x67811784, 0xf4528a16, 0x5637a06f, 0x81dcc0ad, 0x31be22a5, - 0x5ef1823c, 0x000181, 00000000 + 0x5ef1823c, 0x000181 }, { 0x8f4421c8, 0xf44bb01c, 0x8bff78e9, 0x8dbdfb22, 0x75c74bde, 0x265cae05, 0x631f43d2, 0xa71ef5b3, 0x4d14fe9b, 0x4841d126, 0xa83bb8dd, 0x77e7e428, 0xe8e307c5, 0xb5a15cf0, 0x37f1ca25, - 0x42d6e521, 0x0001ba, 00000000 + 0x42d6e521, 0x0001ba }, { 0xb3c1d119, 0x5de5684b, 0x4f5c28, 0xd5168448, 0xcb242373, 0x63c9c123, 0x57231ce8, 0xfa1daf5d, 0x279ec8ba, 0x840e3790, 0xf57055b, 0xcbd2366f, 0xc53ff558, 0x6a42fca1, 0x9860fb, - 0x1472b44d, 0x000198, 00000000 + 0x1472b44d, 0x000198 } }, { @@ -76928,19 +76924,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc7ef12dc, 0x21d153c8, 0x119619c9, 0xff1f8553, 0xa3c1e091, 0x24046dc5, 0xc4236509, 0x60334721, 0x776b9ba0, 0x6f1c830, 0xf3cdb726, 0xa2a095fe, 0x43baa13a, 0x58555419, 0x58301693, - 0x3a232b78, 0x0001ea, 00000000 + 0x3a232b78, 0x0001ea }, { 0xbeddd579, 0x8841c88e, 0x72b444d3, 0x9b3fd1bc, 0x6714fa82, 0xbfb3aba9, 0xa9899a67, 0x51f02399, 0x121df3e2, 0xe55e5031, 0x2168982, 0x712e30db, 0xc29f16fd, 0x288fe049, 0xa350f4e4, - 0x169a6b81, 0x0000e1, 00000000 + 0x169a6b81, 0x0000e1 }, { 0xa44e09c1, 0x8bcae889, 0xb2b83b7, 0x3b320c96, 0xb9312397, 0x9d2ee8d, 0x6420b20e, 0x738ac495, 0x3647a9ff, 0x976f38bb, 0x746e7141, 0x6cba37a6, 0xcd0caf97, 0x5d5fadbf, 0xf5e40182, - 0x2b11afad, 0x00010e, 00000000 + 0x2b11afad, 0x00010e } }, { @@ -76948,19 +76944,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7f16e141, 0xa018e75b, 0x8dda4868, 0xd9181651, 0xce8f88af, 0xb1b32e59, 0x1387ff93, 0x540d16ad, 0x7cae58bd, 0xa6d2c63, 0x79043af7, 0x40ed7aa3, 0xe1689fe, 0xd0478cf2, 0x82b32e53, - 0x9caa583f, 0x000179, 00000000 + 0x9caa583f, 0x000179 }, { 0x7e8936c4, 0x2385fe7, 0x5b1e7c12, 0xb1e2c4b4, 0x3f4bb874, 0x2e1623fc, 0x1240c0b2, 0xda7a332c, 0xf79f6f39, 0xb6b03570, 0xdcf16224, 0x26e32445, 0xbda175bc, 0x8911e279, 0x4c64f5e4, - 0xa808203, 0x0000f6, 00000000 + 0xa808203, 0x0000f6 }, { 0x9c6a2fcc, 0xc6ecc999, 0x3e061499, 0xd2eb2f72, 0x993f8f4, 0x5e1b7d01, 0x20467e42, 0xd4a407f1, 0xf4a102b8, 0x51bd93df, 0x2e9e0f5d, 0xf7c78d73, 0xf64e1025, 0x5bdfd204, 0x3ce63711, - 0xda10632b, 0x000144, 00000000 + 0xda10632b, 0x000144 } }, { @@ -76968,19 +76964,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x155f0a8f, 0x2f6fc1cd, 0xddd3fa9a, 0xa9ceb488, 0xd2f84061, 0x1dd5e602, 0xe9949dae, 0x7aa6baf6, 0x4a390791, 0x3fd943e, 0xaaff4f18, 0x4538a1fc, 0x92e4406a, 0x416a6ebe, 0x7787af43, - 0xc6ddce60, 0x000156, 00000000 + 0xc6ddce60, 0x000156 }, { 0xc55cf947, 0x405971b, 0xd14bcf0e, 0xee640d6a, 0x91729e8a, 0xa3bf2ac2, 0xeb9458d9, 0x81e0dcba, 0x6a027fdc, 0x76387ce1, 0xfab4602b, 0x67a7a870, 0x76805532, 0x3b8c26a, 0x96f3ac95, - 0x948f1647, 0x000037, 00000000 + 0x948f1647, 0x000037 }, { 0x261ab274, 0x1ed8821a, 0x89a9d114, 0xe0e2792a, 0xc129298, 0x3479cf0c, 0x9c4b25f5, 0xa6ec4c15, 0x269c099, 0x8c3c13a2, 0x9fe4cf1e, 0x25002597, 0xbc6294dd, 0xfa928a9c, 0xdbe74b59, - 0x8f0a609e, 0x000185, 00000000 + 0x8f0a609e, 0x000185 } }, { @@ -76988,19 +76984,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1bfc99db, 0x26b92034, 0xf894fb9c, 0x416de6fb, 0x7d9a08f3, 0x1f8dde3a, 0x750b7e8a, 0xc357ec7e, 0x2a92902a, 0x4288a05b, 0x5f6e00e9, 0x41823f20, 0x62344950, 0x8d3b317e, 0x6c3a71e7, - 0x12b9a4a6, 0x000011, 00000000 + 0x12b9a4a6, 0x000011 }, { 0xb15a1bc2, 0xe276659d, 0xd2545b80, 0xc78a4d0c, 0xd4715bde, 0xfebac86e, 0x320da15c, 0x5028e0b0, 0xf120da3e, 0xd7b1ed01, 0x57325a25, 0x33c522e1, 0x3f527c3e, 0xcea17fb6, 0x601621d4, - 0xbe716301, 0x000146, 00000000 + 0xbe716301, 0x000146 }, { 0x91c1fb3d, 0x21752615, 0xa5a19eab, 0x7690d9be, 0x11111162, 0xceac8d39, 0x89ed26b9, 0x846428f6, 0x7f48d761, 0x4a939e64, 0x25596a6e, 0x71041eb6, 0x7b3993a5, 0x7f68d781, 0xd79c0857, - 0xfb8ff145, 0x000080, 00000000 + 0xfb8ff145, 0x000080 } }, { @@ -77008,19 +77004,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2b1a6194, 0x268ed2aa, 0x19a89651, 0x30f9649c, 0x2ebf8343, 0x5aae1af4, 0x3736d2e7, 0x4a29e2b4, 0x731a5c8e, 0x68967a54, 0x59f70eb3, 0xaff89763, 0x80635d38, 0x83011457, 0xb8a5554d, - 0xa62ed7c4, 0x0001c0, 00000000 + 0xa62ed7c4, 0x0001c0 }, { 0x3d2fa432, 0x79e02771, 0xd2d91c4f, 0x17b591c8, 0xee45f188, 0x7920f147, 0xa9c35d02, 0x11979690, 0x4f8d48c1, 0x3fe3d35, 0x83bfbfef, 0xbce3e89a, 0x8e41fe10, 0xa888f82f, 0x38041c40, - 0xbaee4e5a, 0x00019e, 00000000 + 0xbaee4e5a, 0x00019e }, { 0x7310e7e, 0xa597a69f, 0x1973051f, 0xbbf9a04e, 0x8061a60b, 0xfdb18dbb, 0xb357cdac, 0x43af67dd, 0xffa3f93e, 0x1c178653, 0x96502dc2, 0x80786e14, 0xa576de3a, 0x5586006f, 0x18533549, - 0x4c020fa8, 0x0001f0, 00000000 + 0x4c020fa8, 0x0001f0 } }, { @@ -77028,19 +77024,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdb066a88, 0x1117708, 0xdfb5b014, 0x7e45f096, 0xa95e5f4a, 0x13cd206c, 0x714ce18f, 0xadf3c2c8, 0xb0846752, 0x351c1fbb, 0x68e78dfd, 0x82a67708, 0xa1047aef, 0xcf9b4d54, 0x524e356a, - 0x5e9c5d1d, 0x00008b, 00000000 + 0x5e9c5d1d, 0x00008b }, { 0xc02300d1, 0xeb6a88d, 0x7ef61420, 0xc5f086b2, 0xa61e51fc, 0xd787e825, 0x7aa75513, 0xf91f1c0d, 0xbdb2afb3, 0x3c0c4dc1, 0x5830a03c, 0x95056761, 0x41e57c31, 0xcb9b965d, 0xf7537944, - 0xf0bc9bb5, 0x0000ae, 00000000 + 0xf0bc9bb5, 0x0000ae }, { 0x57e180ac, 0x2710a632, 0x6daa7d12, 0xf880f8a8, 0x2cdf3a89, 0xf4c6e35d, 0xe5977d9f, 0xd318b05c, 0xd6679b07, 0xe92c3fc6, 0xdc048b05, 0x756a0c02, 0x8785a95, 0x3b9c05f6, 0x5bb844c5, - 0x512407a4, 0x000183, 00000000 + 0x512407a4, 0x000183 } }, { @@ -77048,19 +77044,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8277a37b, 0x7a61f099, 0x36244032, 0x78fff689, 0xe4bde697, 0xfa59250d, 0x3ba8f57f, 0xbed57d8a, 0x513a4d42, 0xebe52b4a, 0xa22666ce, 0x54442949, 0xf11d463d, 0x3d777f26, 0x92f66424, - 0xf3d0ce53, 0x00002b, 00000000 + 0xf3d0ce53, 0x00002b }, { 0xba33a391, 0xeabb80e9, 0xd105a6eb, 0x115ce2e6, 0xc7dee97b, 0x3dd3c16d, 0x2af15db8, 0x9e4540d2, 0x67846826, 0x9f210c6, 0xa53c25d5, 0x67ea2886, 0xb2c7f249, 0x557507c9, 0xa67b3dd5, - 0x60acef53, 0x000002, 00000000 + 0x60acef53, 0x000002 }, { 0xdeaed0db, 0xa7075234, 0x51a90856, 0x8685b1af, 0x52a4112f, 0xe2d68f9, 0xfaf6924f, 0xe3191cdf, 0x57f96241, 0x2b20768f, 0x2e7dc75b, 0x8abddfef, 0x31802bdb, 0xfc98b9fa, 0x22ca0037, - 0x759a9f95, 0x0001f5, 00000000 + 0x759a9f95, 0x0001f5 } }, { @@ -77068,19 +77064,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa676528a, 0xa5f5ad3f, 0x973808da, 0x7b3a208, 0xb85c4d49, 0xa644cc80, 0xc6f5a6d8, 0xf388136a, 0x50ba7cfa, 0x133ac8d8, 0x2b5377cd, 0x8ca0518e, 0xa1b2825d, 0x6ba6e2fd, 0xe66e0965, - 0xc90dfeb4, 0x00013c, 00000000 + 0xc90dfeb4, 0x00013c }, { 0x442ed8a9, 0xfde39424, 0x9f42d978, 0xa4339669, 0x858acd1c, 0xf942e3b5, 0xf06731ed, 0x96868551, 0x7b3741d0, 0x38d2ad, 0xc775a552, 0xbe77cc97, 0xc3b8247a, 0xb6d239bf, 0x46eca9e4, - 0x423bdc33, 0x000016, 00000000 + 0x423bdc33, 0x000016 }, { 0xe86fd004, 0xc9bf3074, 0x2ce8aff3, 0x6ff910a6, 0x22a5808b, 0xf69a8c15, 0x8027e2a3, 0x14125265, 0xb5432c33, 0x1dd7d501, 0x765205da, 0x6827ec07, 0x87c1cc2f, 0xaba65794, 0xf351708a, - 0xe1b9cf81, 0x00012c, 00000000 + 0xe1b9cf81, 0x00012c } }, { @@ -77088,19 +77084,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdadd51cb, 0x50572b57, 0x19b50a29, 0x41ac7d5a, 0xf42bfcb5, 0x21702091, 0x967e0d8e, 0xf4c3d8a1, 0xf1a67628, 0xe52bd9d8, 0xb4f2e0ae, 0x6e4a77d5, 0x7caf79aa, 0xd971f390, 0x7016d2fb, - 0x4f1ea5f1, 0x00017f, 00000000 + 0x4f1ea5f1, 0x00017f }, { 0x543e706d, 0x27323591, 0xe861fcf8, 0x944ecc20, 0xdd88ca7e, 0x68ababdb, 0x88d8ab15, 0x45c85663, 0xa88ddfff, 0x1ddfdd82, 0xf666dbc5, 0x637b9c5b, 0x1ff04c63, 0x97dc1a09, 0x4f9c38be, - 0x380fe416, 0x00006f, 00000000 + 0x380fe416, 0x00006f }, { 0x8524ecf4, 0xfc030c6b, 0x68b32333, 0x4aed9ab2, 0x97cc924e, 0x1c6a23e, 0x87d773ff, 0x9a3c1e1a, 0xa1f14954, 0x4389a6c8, 0x8766eb80, 0x96454b96, 0x475ff210, 0x91f9a2cc, 0xf227d397, - 0xc2a3e744, 0x000026, 00000000 + 0xc2a3e744, 0x000026 } }, { @@ -77108,19 +77104,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x790f10f0, 0x6080c9cf, 0xa118be86, 0xa1ce67ad, 0x9e3b787, 0x9fbecb, 0xdf244adc, 0xa0257f80, 0xb227c632, 0x52b70c0b, 0x25d2fe28, 0xe8c0c9e9, 0xad8651, 0x6385f970, 0x5d3dcc08, - 0x4b0c7a82, 0x00016b, 00000000 + 0x4b0c7a82, 0x00016b }, { 0x2b7c5837, 0x567489c4, 0x17b9bd77, 0x70ccd9f2, 0x71c440da, 0x9c9a81a0, 0xd1daa1a3, 0xca16cfdb, 0xe236e812, 0xd426e32, 0x38107c, 0x88bcd53e, 0x917a8a19, 0xad330d75, 0xcee7d15c, - 0x94e99652, 0x0000b3, 00000000 + 0x94e99652, 0x0000b3 }, { 0x91b81623, 0x8b888b32, 0x3f372bf9, 0x448cd467, 0x8309c3df, 0xb93424f0, 0x5e86c797, 0x4cfd19ea, 0xae49c733, 0x499883ea, 0x1005a8ef, 0xbefd1dee, 0x548eb248, 0x2aedc129, 0xeb04274, - 0x4fade338, 0x0001b7, 00000000 + 0x4fade338, 0x0001b7 } }, { @@ -77128,19 +77124,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x72ccb348, 0x63ffb44a, 0xa7e1c359, 0x4ba50335, 0x966c1a26, 0xb32d89d3, 0x37305fab, 0x70c464b, 0xc79a378, 0x2d3ce4fd, 0x51d7838d, 0xd31c88bf, 0xf68f0d4b, 0xddd56e72, 0xa5bfcb3c, - 0x86d9d494, 0x000025, 00000000 + 0x86d9d494, 0x000025 }, { 0xcc7f5df6, 0x41d4866d, 0xd4524b87, 0x8f3c68bd, 0x6befeb24, 0x282d64f4, 0xedd6aade, 0xf0ea4c96, 0xa8aff459, 0xe78118de, 0x753f7e96, 0xae58c567, 0xb514cab3, 0x4c50e26c, 0x459e7301, - 0x69828f02, 0x000059, 00000000 + 0x69828f02, 0x000059 }, { 0x36be26c0, 0xf6438848, 0xf9135f15, 0xb9a7d31a, 0xeb3930a0, 0x56526726, 0x5bb995f7, 0x8e2499b, 0xd1956e59, 0xc32ad572, 0xd39c18c3, 0x85e410fe, 0x2b86f85, 0xe72c0e1f, 0xaa67494a, - 0xe6b77790, 0x000144, 00000000 + 0xe6b77790, 0x000144 } }, { @@ -77148,19 +77144,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7c45b6c, 0x2862eb3d, 0xf72b3721, 0xe9659e55, 0xdf1be690, 0xacafc5fe, 0x3b08743f, 0xfffc287e, 0x71b814f7, 0xdc8e73f0, 0x463a9487, 0x171a3fe3, 0x65a42c49, 0x9b19b343, 0x4e1a298f, - 0xfaddb041, 0x000198, 00000000 + 0xfaddb041, 0x000198 }, { 0x9d6464bf, 0x913bdc73, 0xe45a24e0, 0x1b6a8ad1, 0x6369f59f, 0x3ddae258, 0xedf42613, 0x95e6ceaf, 0xa610745f, 0xa89740e0, 0xf5d82067, 0xcd073c2e, 0x790877a8, 0x8d7e7852, 0x76f1522, - 0x2138b2f7, 0x000036, 00000000 + 0x2138b2f7, 0x000036 }, { 0x721b8c1, 0x28d59176, 0xebaf2172, 0x8cd33223, 0xeaf8fb94, 0x14aeb670, 0x71528882, 0x3f1eb506, 0x6bbf2e26, 0xfde449ca, 0x47be32f4, 0x8da92deb, 0xbde6ad0, 0x5e2cd6e7, 0xfbf8283f, - 0xd946dfd6, 0x0000f6, 00000000 + 0xd946dfd6, 0x0000f6 } }, { @@ -77168,19 +77164,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe93c63c, 0xaace388e, 0x5eb0a0f4, 0x17a1be6b, 0x36cfde47, 0x48b29362, 0xe778290, 0xa874549a, 0x8e70d32d, 0xb327d827, 0x2f2ae13c, 0x503946ae, 0xbe1ed375, 0xd3a7018d, 0x24efa6e4, - 0xf84a3118, 0x00019e, 00000000 + 0xf84a3118, 0x00019e }, { 0xeee32d36, 0x9cf2e643, 0x8a8e590a, 0x1982284f, 0xd710fa9b, 0x962ca89d, 0x810fe9fe, 0x80075340, 0x26a08099, 0x2bd0ae1d, 0x3d931f9a, 0x295420e3, 0xfe9a890d, 0x4dfe5aac, 0x623254a8, - 0xe0a1d185, 0x000052, 00000000 + 0xe0a1d185, 0x000052 }, { 0x2d386c79, 0x7b16a151, 0x9956191b, 0x3977b328, 0x6218e03e, 0xafbc34bc, 0xc9b1c3f3, 0x581987ed, 0xbe665b69, 0x410334ec, 0x82f9f93c, 0x9d0633fa, 0xdfae99b, 0xb77188fa, 0x80404ac, - 0x346207ba, 0x0000ab, 00000000 + 0x346207ba, 0x0000ab } } }, @@ -77190,19 +77186,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdabeeafc, 0x0b04d9, 0xa72386d8, 0x36fb0164, 0xfedaa9d9, 0xbcd096e, 0x91a7aff5, 0xad30c39d, 0x5e1e811b, 0x2077f07f, 0x42b2942d, 0x6c4ef9d9, 0xea90375f, 0x2c26bd28, 0x9805dba2, - 0xa373ef13, 0x000050, 00000000 + 0xa373ef13, 0x000050 }, { 0x1e9fc9aa, 0x7c903e2, 0xaf494979, 0x4901b171, 0x89015d27, 0x5e0d04d0, 0x647b665b, 0x32610f7b, 0x718dc96d, 0x8a423546, 0x6933d56d, 0x6d0b3e46, 0x1b33d14f, 0x3147bd5d, 0xbd5f8245, - 0x30baf07c, 0x00019f, 00000000 + 0x30baf07c, 0x00019f }, { 0xa947cb20, 0x61fba800, 0xddee54d5, 0xe25f07cb, 0x9ee892f3, 0x38e718db, 0x2d713881, 0x75d8414f, 0xf39f64a7, 0xa61d5deb, 0x2717bbe8, 0x4f56c074, 0x808d90c3, 0x36207974, 0x1f9be427, - 0x9c738fe8, 0x000189, 00000000 + 0x9c738fe8, 0x000189 } }, { @@ -77210,19 +77206,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x82928c56, 0x4c653fc8, 0x854c7865, 0xb274784, 0xd7b1c913, 0x26dc5304, 0xf83e5dfc, 0xb811295e, 0x5cd6c94c, 0x42e50090, 0x5975006b, 0x1e6dae24, 0x90b7f2e5, 0xa1043a07, 0xc92b10a2, - 0xc11cf2, 0x000160, 00000000 + 0xc11cf2, 0x000160 }, { 0x1fd56acf, 0x7a2efb52, 0x8cce24f4, 0x9ac6c073, 0xb7dc7a28, 0xfeb0fc53, 0x247eee27, 0xd90965b0, 0xf0c7564b, 0x5ef9a12e, 0xba18a158, 0x73eef721, 0xccbb54b5, 0x62fafdfa, 0x2101fbb3, - 0x7c938b09, 0x0000ec, 00000000 + 0x7c938b09, 0x0000ec }, { 0x34a52cbe, 0xf062c16e, 0xf9c162aa, 0x846d2c3f, 0xdcaab45f, 0xdba58a9, 0x74a49458, 0x4f164bd5, 0xb524d220, 0x122b44a0, 0xc50218, 0x87b30fef, 0x24abff77, 0x16cd298a, 0x5033f439, - 0xe862555a, 0x0001b1, 00000000 + 0xe862555a, 0x0001b1 } }, { @@ -77230,19 +77226,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x86bc64a0, 0x1928e0fe, 0x8157fa9b, 0x1c95637a, 0x2550a5bd, 0xaa09feaf, 0x73570e2e, 0x9295823d, 0xcebaea8f, 0xd3f39112, 0x8763ef26, 0xc5107ba5, 0x87aaef80, 0xecc1a026, 0x86aa77ac, - 0x2cc4c25d, 0x00004d, 00000000 + 0x2cc4c25d, 0x00004d }, { 0xdc17a74d, 0x3012e08f, 0xdc461e56, 0x47695c16, 0x33e2bbf9, 0xc8dde63e, 0xa2a1789a, 0x4e5f109f, 0x607d2323, 0x9fa2fa4c, 0xce415dc8, 0x6c8c1c0, 0xd047cc1b, 0x92c629aa, 0xd7e644f, - 0xc1d2bd1f, 0x0000c5, 00000000 + 0xc1d2bd1f, 0x0000c5 }, { 0x7c88afc6, 0xa5848af8, 0xfc43d626, 0xdeeb8444, 0xc70aa5e0, 0xf1a291ba, 0xbbeb66b6, 0xcda01cb8, 0x63db414b, 0x2a2bb257, 0xc8d1e2a, 0xbddfe33f, 0x862b4a27, 0xedb95cc6, 0x62763c59, - 0x157de2cf, 0x000005, 00000000 + 0x157de2cf, 0x000005 } }, { @@ -77250,19 +77246,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x48595fd8, 0x6a439f7d, 0x5fb352e4, 0xfde1b740, 0x347b3a30, 0xaeab84f0, 0xf8052eda, 0x778c102, 0x72f7e711, 0x12fa1f3e, 0xf62658c8, 0xc96dc2e7, 0xcb1d32e2, 0xc1b3d46c, 0x7f70ea45, - 0x442d1c5e, 0x0001ad, 00000000 + 0x442d1c5e, 0x0001ad }, { 0x457bb9cd, 0x899d8d64, 0xa45a9806, 0x490c5c7e, 0x30647e0e, 0x93f77d18, 0x878e25d, 0xc0fbd2fc, 0x26827aad, 0xacaf1e78, 0xda431fd, 0x6171e3f9, 0x1e27fbf6, 0x6e940eb2, 0x624df780, - 0x66b62abd, 0x0000e1, 00000000 + 0x66b62abd, 0x0000e1 }, { 0x3b3825fb, 0xc9ce52f9, 0x830631f9, 0xbeb1ff2a, 0x11fc10a7, 0x466dadd5, 0xf6d5995, 0x752b83ec, 0x26b6cc8b, 0xb6ee18bd, 0xd6bcd245, 0xf1367ba3, 0x720746a9, 0x1d00f3ee, 0x3e55dda0, - 0xf9efd430, 0x000001, 00000000 + 0xf9efd430, 0x000001 } }, { @@ -77270,19 +77266,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x292de6b9, 0x139ef519, 0xf93817a6, 0xf6c30f82, 0xd33a1a59, 0xe5f69674, 0x447b9eb0, 0xb20a421, 0xa3292aba, 0xe7b72c96, 0xab989c91, 0xd1fb3b56, 0x48633c0b, 0x2d7fc614, 0xde90c863, - 0x95f090fc, 0x0000ab, 00000000 + 0x95f090fc, 0x0000ab }, { 0x27e8689f, 0x3c07e4bb, 0xaf87de89, 0x25e2ce4, 0xc0a55ac6, 0xaa758ae1, 0xd02f8eef, 0x81f429ea, 0x9da88be7, 0x9b82ed2, 0xb314300a, 0x7e257d8, 0x7788ad8d, 0x7429a821, 0x8e7fcd64, - 0x5b3d1b42, 0x000148, 00000000 + 0x5b3d1b42, 0x000148 }, { 0x97fbe34d, 0xabb3aa38, 0xca997e3e, 0x6162e042, 0x3e8736a3, 0x2693ca27, 0xa0318872, 0xadbff5ec, 0xf9e7e98e, 0xa01e7994, 0xae47c1b4, 0x70e3baa8, 0xd9e96dc6, 0x8a4e1973, 0xfa0f48ca, - 0x423fdd69, 0x00010e, 00000000 + 0x423fdd69, 0x00010e } }, { @@ -77290,19 +77286,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x16e71876, 0xd2b88e11, 0xa4983617, 0x90a81496, 0xf32a7620, 0x10749aa4, 0xb2bf557f, 0x1b75aef, 0x64a90f5f, 0xf08c2a9a, 0x74a20d4c, 0x1ecf7eab, 0xc675af2b, 0xdefb007d, 0xff5da2e3, - 0xe8eb102f, 0x0001ea, 00000000 + 0xe8eb102f, 0x0001ea }, { 0xa1877b4, 0x94e5c9b4, 0x9d898901, 0x3777f3a0, 0x5d7770c3, 0x81b77f6c, 0x102b314b, 0x8c787a0, 0x398c2575, 0xdbc6172d, 0xbcbcddd5, 0xd4de24ac, 0x2fbf21f6, 0x4c00cd30, 0x8e36ace2, - 0x1e850c3b, 0x000051, 00000000 + 0x1e850c3b, 0x000051 }, { 0x1d502dd3, 0x99025783, 0xc3a040e3, 0x4117568c, 0x1fc9a182, 0x7d43d904, 0xc387cebd, 0x3b6f0211, 0x18587fae, 0x561296e2, 0x309f6bf7, 0x8611e12a, 0x533b77dd, 0x82d4cc08, 0x54b91d5a, - 0x38689d2d, 0x000101, 00000000 + 0x38689d2d, 0x000101 } }, { @@ -77310,19 +77306,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb19727f0, 0x14aa7028, 0x147cad7c, 0x1f710adb, 0x249e79a0, 0xc0c4c2d7, 0x5975a3fd, 0x152ec0dc, 0x567f39d7, 0xbdf6dd37, 0x4fa34c78, 0xf7f8d44f, 0x694a78cb, 0xcb7eeac2, 0x88c0ffb9, - 0x624fea8c, 0x00006e, 00000000 + 0x624fea8c, 0x00006e }, { 0xb06cdb1, 0x5f041933, 0x252c7623, 0xd0f94ca4, 0xb862308e, 0x912e8d73, 0x28b03a0d, 0x268fbe46, 0x47c40977, 0x8cc4344d, 0xe44efb6a, 0xd02a2e6f, 0xbe9da2a4, 0x73c7ca22, 0xdf7ef60e, - 0x4d6f712f, 0x0001d9, 00000000 + 0x4d6f712f, 0x0001d9 }, { 0xcfdc339a, 0xf0a598a4, 0xcb0c01eb, 0x9432b77, 0xdefe786, 0x48f7f966, 0xb2ca3615, 0xff7675fe, 0xb4917d74, 0x4fb8ff4a, 0xce8739ef, 0xf45d53ef, 0xc22749fe, 0x822a36f9, 0x6277f2e8, - 0x4b18830d, 0x000071, 00000000 + 0x4b18830d, 0x000071 } }, { @@ -77330,19 +77326,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8ac149, 0x9ec2dc6, 0x877d07f0, 0x126a1e75, 0xfd76ee14, 0x99c7950b, 0x9b72c01c, 0x11e2f2a7, 0xde53e5c9, 0xf00ee22d, 0xbec5bd51, 0x3a5cd2da, 0x76d958f3, 0x5a78d311, 0x9dd23bdb, - 0xa890abc9, 0x000006, 00000000 + 0xa890abc9, 0x000006 }, { 0x4a54a9d0, 0x9c7a1231, 0xcf46755, 0x93006881, 0xdb649aeb, 0x888aca9f, 0x2bd28cbf, 0xd132d6ff, 0x99e30d0d, 0x83c5de01, 0xad91fbd4, 0x75cdbf47, 0x5385bc63, 0x4ab9e9a0, 0xef54b309, - 0xe20bcdd, 0x0000d6, 00000000 + 0xe20bcdd, 0x0000d6 }, { 0x8d7d69a1, 0xc336420f, 0x90ec90f9, 0xe4d94e77, 0xb16b7d51, 0x8e91505f, 0xc3d4f3f5, 0xab45f3be, 0x5aa18258, 0xde71f60c, 0x77ee60ed, 0x5703827f, 0xceb9c192, 0x8be32210, 0x53299295, - 0xb254d89b, 0x000151, 00000000 + 0xb254d89b, 0x000151 } }, { @@ -77350,19 +77346,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf28498f, 0x98d7ed20, 0x861e172e, 0x95eb3e3, 0xdc375426, 0x78f465c9, 0xbe94992c, 0xfbfa2c39, 0xd88591ea, 0x9ff430e4, 0x622befde, 0xe1cf8b61, 0x70cd168d, 0xf4e54303, 0x2b80610, - 0x3d93d92d, 0x000186, 00000000 + 0x3d93d92d, 0x000186 }, { 0xe761fdb6, 0xa248327e, 0xa900a688, 0xf6ea842a, 0x1f70f581, 0x4e422dda, 0x27e5aade, 0xbaae6e98, 0xe9fc74dd, 0xef6b4dd1, 0x672a36f1, 0xcf52987d, 0x4559bda0, 0xfac07ae3, 0x33887a5b, - 0xbe8e001a, 0x000035, 00000000 + 0xbe8e001a, 0x000035 }, { 0x112a76a6, 0xc30d37b2, 0x8c8ce8c5, 0x4cc53cab, 0x9d3b4efb, 0x79627da3, 0xa3a95d46, 0x39472572, 0xba4f4633, 0xdf296dd3, 0xeef42181, 0xf0de2ea1, 0x799e8784, 0x90c97af2, 0xd7d5c6a2, - 0x478dd71f, 0x00010b, 00000000 + 0x478dd71f, 0x00010b } }, { @@ -77370,19 +77366,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa5af1d08, 0x1926a989, 0xb3e61a1, 0x22573110, 0x6e1cad3c, 0xedcffe4d, 0xa86424bb, 0x4c3e4fa1, 0xd5b43b95, 0x4fe1cdf2, 0x19328a13, 0x70a35faa, 0xc5b53d4f, 0x5e7cd425, 0xa5d0ff52, - 0x6d8ad42d, 0x0001b9, 00000000 + 0x6d8ad42d, 0x0001b9 }, { 0xbdf905ec, 0x5e8294bf, 0xf3c429d1, 0xca86b2d6, 0x197161f, 0x9e331970, 0x815a6d90, 0xca906853, 0xad226b4f, 0x41998b63, 0xb81223, 0xcda0f395, 0x12c1060f, 0x143966c7, 0xb5db7cc6, - 0xacb5168c, 0x0001de, 00000000 + 0xacb5168c, 0x0001de }, { 0xdc0e5067, 0x71ecdab5, 0x1209a0b8, 0x8b0bed82, 0x2d0d6ba4, 0x440e0b9a, 0x7652fa8f, 0x9216534f, 0xde911220, 0x549a111, 0x84185d52, 0xdb03af4f, 0x60f81ff8, 0x6e07b58a, 0xf27137a5, - 0x1e7638d1, 0x000002, 00000000 + 0x1e7638d1, 0x000002 } }, { @@ -77390,19 +77386,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9ba28ed2, 0x651f4e37, 0xf3381433, 0xea0251b7, 0x69d148d6, 0xe20c0a15, 0x58280901, 0x6226d863, 0xa061aa13, 0xd43076b5, 0x5b4c941c, 0x95b723da, 0x97913aa6, 0xbb29d812, 0xf259da4c, - 0x65114731, 0x00016a, 00000000 + 0x65114731, 0x00016a }, { 0x18f8345, 0x7f62bf7a, 0xf3d0be65, 0xc78f94d2, 0x2c31d4b5, 0xf7999b6d, 0x1bc763d8, 0xd48f6d58, 0xdfcef26b, 0x43fe8dd4, 0x9367a296, 0xd31a8f5, 0x28777ec0, 0xbc206c8d, 0x78aa0798, - 0x3018ebc1, 0x0001de, 00000000 + 0x3018ebc1, 0x0001de }, { 0x8c063fb5, 0xbd00ea55, 0x41ac249a, 0x7ccb15e7, 0x46f7df18, 0xfc8f95c8, 0x35f109d9, 0x21f04b0c, 0x6321e5ca, 0x81c1d3d7, 0x39d4f0e1, 0xeadc1c10, 0x9b0192d3, 0xc0a3e253, 0x827fe8b9, - 0x3f795354, 0x000080, 00000000 + 0x3f795354, 0x000080 } }, { @@ -77410,19 +77406,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbda16c60, 0x45f19776, 0xb1c2b493, 0x5f1a463f, 0x546c41cd, 0xa59220df, 0xd045cc7c, 0x8345af35, 0xc740547f, 0x7ef28124, 0x4188a34e, 0x64ad7fb4, 0x46f4f9f0, 0xe111499e, 0x91e03a7d, - 0xa724ecc6, 0x00004b, 00000000 + 0xa724ecc6, 0x00004b }, { 0xd5f04506, 0xb798910f, 0xe3be9858, 0x118415cf, 0xe7036831, 0xb3f35dfd, 0xd8662a2d, 0xbc14ed14, 0x3421ad89, 0xbfcb7d3, 0x63fa6dae, 0x5cc0cf4a, 0xf7b3e1e8, 0xd426f589, 0x824a0fef, - 0x80df0503, 0x0001bf, 00000000 + 0x80df0503, 0x0001bf }, { 0x96aeb3b5, 0xf198adc, 0x2bf45a12, 0x2a5a1642, 0x5801f135, 0xf6892988, 0x693ad93b, 0x587f57ab, 0x55d16f34, 0x69a8153a, 0x32dc1eda, 0x364256bd, 0xaf995df9, 0x5c171950, 0xc5055f4b, - 0x2471dcf2, 0x00005a, 00000000 + 0x2471dcf2, 0x00005a } }, { @@ -77430,19 +77426,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8970ffb6, 0xd68b4799, 0xeab5de52, 0x2bdf13f9, 0x9eb49671, 0xef4d989e, 0xdfc5418b, 0xdff550d8, 0x25a94e68, 0x42c4de4f, 0xc04a635, 0x665f49d2, 0x1ff7fcc7, 0xf6482ea2, 0x72500604, - 0xd6718bc7, 0x0000dc, 00000000 + 0xd6718bc7, 0x0000dc }, { 0xb7e2dae4, 0xc9f09eb6, 0xa361e253, 0xf5238344, 0xc3525812, 0xa68db3dd, 0x41740516, 0xd76cad16, 0xc0386e27, 0x5715a0b6, 0xcee0b651, 0x5a060aa3, 0x667b05f3, 0xbe2dca79, 0xa66acc37, - 0x8b6d23dc, 0x000055, 00000000 + 0x8b6d23dc, 0x000055 }, { 0xa1a6231d, 0x84a44b78, 0xfc5242fb, 0x52d17b35, 0xecce6c34, 0xe778f73e, 0x5ba1c96d, 0xfb882e65, 0xf2fa2e3b, 0xc5a2102e, 0x741f9c13, 0xd3d55f7b, 0x117c5afc, 0x2c487325, 0x2be06de1, - 0xeba01724, 0x000088, 00000000 + 0xeba01724, 0x000088 } }, { @@ -77450,19 +77446,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x589237ce, 0xb93241f9, 0x3449b5b2, 0x2a0e12a8, 0x851b903d, 0x8a68c7f2, 0xb2f7195b, 0x111177f9, 0xba43dff5, 0x81db599f, 0xd6c48d64, 0x589af50b, 0x7b764afd, 0x57ea996, 0x2de00abb, - 0xb6326aea, 0x00001d, 00000000 + 0xb6326aea, 0x00001d }, { 0x3757f2dc, 0x1145405, 0xc4d6e26a, 0x7b4bad5a, 0x19ec287b, 0xbacaa4f6, 0x202ff30a, 0x19b52fa7, 0xfec557f9, 0x72b8cd, 0xbfc64702, 0xec827c35, 0xcec63036, 0x98a6d196, 0x5a13fe9d, - 0xe81a78fe, 0x00010a, 00000000 + 0xe81a78fe, 0x00010a }, { 0xccc4ef21, 0x19ef4f8b, 0x2bd48f8a, 0x36fc8340, 0x80c64e97, 0x7516da2, 0x3e6af5c2, 0xb16a98fb, 0x37b67232, 0x53c69edc, 0x7855234a, 0xe3485bc8, 0x4d463b56, 0x3f4c38a2, 0x249f7594, - 0xaba131fe, 0x000020, 00000000 + 0xaba131fe, 0x000020 } }, { @@ -77470,19 +77466,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x32294b12, 0xd0340498, 0xe97d0fac, 0x43c79b00, 0xa66485df, 0x8e644946, 0x78650810, 0xa5aa97fc, 0x640bb63a, 0xd3cef2e5, 0xe558b859, 0xb748e2ec, 0xcaf08a97, 0xb77eb92e, 0x137c9b50, - 0x57b67140, 0x00010e, 00000000 + 0x57b67140, 0x00010e }, { 0x66e00337, 0x155868cd, 0x7a867871, 0xbc47a4de, 0xb062e9c5, 0x46435a90, 0xbd0e52ec, 0x369e2338, 0x297f4d01, 0xfa40d26, 0xce399540, 0x74bf4b0f, 0x5bffabd, 0x4e375765, 0xf60a5abc, - 0x84e5b162, 0x000050, 00000000 + 0x84e5b162, 0x000050 }, { 0xa27f7028, 0x4ca88092, 0xdf69d027, 0xa7c7e15c, 0xb8c1e757, 0xc6394fdf, 0xb4519939, 0xd6919f57, 0x30d0c895, 0x78643d0e, 0x339af0cd, 0xb6aaf4d5, 0x812cd431, 0x748ad77b, 0x2494a567, - 0xf9c60372, 0x000130, 00000000 + 0xf9c60372, 0x000130 } } }, @@ -77492,19 +77488,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x95e11002, 0xef52bd65, 0x6e8b144d, 0x1c3074e6, 0xf10a4696, 0x9d70789c, 0x174acc4f, 0xb680c10e, 0xc5ec21c6, 0x984c7c80, 0xe5d3aed0, 0x5df0ca7f, 0xa7068e61, 0xc0f513c1, 0xf5739b38, - 0x885e8e43, 0x0001f5, 00000000 + 0x885e8e43, 0x0001f5 }, { 0x731a279c, 0x76254518, 0x44fc43cd, 0x2a4f38ba, 0xc45ed2aa, 0xf33868be, 0x94eaeec7, 0xa119f586, 0x3d148caa, 0xeaed22f6, 0xbb5e38d9, 0xc7b91342, 0xa35aa4ed, 0x8f8acd29, 0xa98e62e9, - 0xfa108b56, 0x0001d1, 00000000 + 0xfa108b56, 0x0001d1 }, { 0xdf28b34f, 0xe00dfa15, 0xbbe89090, 0x17615c8b, 0x2bc4086a, 0x13957baa, 0xe992d8a3, 0x1c8900d0, 0xbe14982a, 0x3f09b00c, 0x79fc6da8, 0x3ab5c520, 0x20a45092, 0xcc35176c, 0xa2365dea, - 0xee1eccd0, 0x000199, 00000000 + 0xee1eccd0, 0x000199 } }, { @@ -77512,19 +77508,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0dcbbc7, 0x1b578023, 0x739e4d96, 0x402305f3, 0x1360eb81, 0xed0d6298, 0xc4b7af58, 0xd0708da4, 0xc1e40a35, 0xb5f18abf, 0x92a23cc, 0xff421fd, 0x47cd0979, 0xa19c2501, 0xf002c1d3, - 0x437cfaa7, 0x000196, 00000000 + 0x437cfaa7, 0x000196 }, { 0x1a5623ff, 0x6f713d7, 0x330d0790, 0x8d6ebaff, 0xfd3dfc1e, 0x2100233e, 0x96c9d419, 0x855c88ec, 0x59fb135, 0x383e9ad7, 0xfcbe4297, 0x63e70e3e, 0x7d164ee7, 0xf9a22863, 0x32147a04, - 0x661370c4, 0x000022, 00000000 + 0x661370c4, 0x000022 }, { 0x84cd1027, 0xb878e635, 0x312fd603, 0x74cf1a11, 0xfd5625ed, 0xaa93b67a, 0x7dcdc1d4, 0x98a95fbf, 0x265d24b2, 0xcccdac79, 0x4d149db6, 0x49841373, 0xd3121ca3, 0xc16dbaaf, 0x3ef683f4, - 0x5afad991, 0x0000f0, 00000000 + 0x5afad991, 0x0000f0 } }, { @@ -77532,19 +77528,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb265c49c, 0x4d9f8f19, 0x5d2c645d, 0xaf1ae4ea, 0x7bc5f288, 0xc6c049af, 0xd561dc8b, 0x9d05492c, 0x4b244ab7, 0x44426c84, 0xd653d29, 0x5ad850b8, 0xb523c998, 0x31688014, 0x44ac9a85, - 0x39dd9ffb, 0x000056, 00000000 + 0x39dd9ffb, 0x000056 }, { 0x61b5992f, 0x3ea0d363, 0xee1fd872, 0x42500af8, 0x3757c897, 0xe5372a8a, 0x9e3b529f, 0xd3184d4e, 0x879c9831, 0xb4d275a2, 0xf51aa895, 0x5a8a4f77, 0x67480ba1, 0x3fea0c58, 0x57bfec64, - 0x7222f5d0, 0x0000df, 00000000 + 0x7222f5d0, 0x0000df }, { 0x6b53d576, 0x980f33fb, 0xa6ac2126, 0xe055f92e, 0xa4bebb9b, 0x9c5d0d20, 0xdb16cef0, 0x49e3ce5, 0x44ff10e, 0x2f5b642f, 0x840cf756, 0x7f8289e7, 0x39b9ffb6, 0xb16d1fd5, 0x97f5e919, - 0x296ddc7b, 0x0001fc, 00000000 + 0x296ddc7b, 0x0001fc } }, { @@ -77552,19 +77548,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4233685f, 0x50207388, 0xd2b46869, 0x20ef6edf, 0xab3b58ee, 0x4b4974b1, 0xdf01d9c3, 0x1c8af8fd, 0xd1d84e2e, 0x796c4f9f, 0x325a1699, 0xef84a1ad, 0x383be3fb, 0x7f468b36, 0x20998770, - 0x118730fa, 0x0000e7, 00000000 + 0x118730fa, 0x0000e7 }, { 0x73f0538d, 0xd0539ba9, 0xbb89cde8, 0xc22b55f9, 0x436b55d8, 0x91f7d3f5, 0x7d75871e, 0xefd175c8, 0xa4491a38, 0x39c4ee3d, 0x2b2cdf72, 0xbfcfc36f, 0x3181a5e7, 0x7e1d7bcb, 0x9b78c3af, - 0x18dfb709, 0x0001da, 00000000 + 0x18dfb709, 0x0001da }, { 0xb83af069, 0x885461e8, 0x161d6baa, 0xa84b80fa, 0x8ae4a232, 0xd66cc859, 0x47bf4a05, 0x7fe0e278, 0x869181ed, 0x2cb7ace0, 0xd86a56aa, 0x2d5dc90, 0x6bee1f9f, 0x99d405c8, 0x2a58a0ed, - 0x9b63d44b, 0x000195, 00000000 + 0x9b63d44b, 0x000195 } }, { @@ -77572,19 +77568,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcdb22da3, 0x512ccf35, 0x60d42c28, 0xd698caff, 0x7a012e87, 0x8aa41879, 0xb190b045, 0xbaff2077, 0x3bee8b1b, 0xb3fc6e05, 0x253b5922, 0x406e2208, 0x37c44db0, 0x7e9846cc, 0xc482da65, - 0xaf3a3037, 0x000111, 00000000 + 0xaf3a3037, 0x000111 }, { 0x5935a567, 0xcf3671ed, 0xda92182, 0xb814deba, 0xaa60acaa, 0x15eda026, 0xd285d632, 0x83afbe05, 0x3438a19f, 0xdb3536fa, 0xccdbf318, 0x4deb6b92, 0x50a71694, 0x3bbcf807, 0x9bd914c0, - 0xb66ee7d2, 0x0001f7, 00000000 + 0xb66ee7d2, 0x0001f7 }, { 0x8463c280, 0xa98eee70, 0x9bd0163a, 0x6f4bd1af, 0x7e619cc6, 0xbea3065f, 0x340bf53d, 0x729bb640, 0x32c69183, 0x2ba5a15b, 0x9c854515, 0xd6ad164, 0x6b161882, 0x25b6b7ab, 0xb8aae22b, - 0x2d12a80a, 0x000098, 00000000 + 0x2d12a80a, 0x000098 } }, { @@ -77592,19 +77588,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbc2cf1af, 0xa791cb69, 0xfa08b8ec, 0x697b9892, 0xe300f3d6, 0xc6764f8e, 0xbf754e3c, 0x4ae0ca27, 0xbc5d5d28, 0xe55f1874, 0xfe854fc5, 0x3cf34e7a, 0x2e6c4a04, 0x9c9a2a14, 0x1244e415, - 0xa914668e, 0x000091, 00000000 + 0xa914668e, 0x000091 }, { 0xd8f994cb, 0x855c8991, 0x748d2495, 0xa3ae289b, 0xb54ed0eb, 0x3faec82c, 0x8b59334d, 0x1a1d638e, 0x91e7ad2c, 0x25fe76a1, 0x23721815, 0x3619937d, 0xd981b114, 0x571379e8, 0xea4d369c, - 0x8a7dbd4b, 0x0001ce, 00000000 + 0x8a7dbd4b, 0x0001ce }, { 0xec748803, 0xe582e37d, 0x8c1111, 0xc656dbfc, 0x4803bc0e, 0xc94b762f, 0x9ef8e5c9, 0xf113f833, 0xd943627c, 0x4be5d2a6, 0x5663eb98, 0x7924a1b9, 0x436bec56, 0xb5cfd51a, 0x2a7a4b2e, - 0xfa94222c, 0x000072, 00000000 + 0xfa94222c, 0x000072 } }, { @@ -77612,19 +77608,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf52b0238, 0x8d64734d, 0x6fd5e6ed, 0xd8a11000, 0xffd7611e, 0x8a6b55d4, 0xe1a9afb, 0xc1f3f566, 0x1c4c9faa, 0x8ea6c1a3, 0x332ff561, 0x4e0977c5, 0xb3cb38a3, 0x79a6b4ed, 0xc7e434ec, - 0x88f93f78, 0x00014c, 00000000 + 0x88f93f78, 0x00014c }, { 0x57696982, 0xab9d4734, 0x89c53ccc, 0xda16f173, 0xb825c86e, 0x4162224b, 0xf9ba6ee9, 0xcdcd7a25, 0x53f1f9ab, 0xf69bc3e8, 0x606654ac, 0x5c9b87dd, 0x33304c90, 0x4bfc61e4, 0x71e6cc58, - 0x75fc002b, 0x0001cf, 00000000 + 0x75fc002b, 0x0001cf }, { 0x1c1815bc, 0x9ebbbb8f, 0x61d86f8e, 0xc5675dd, 0xfd6c97e1, 0xdd3c7509, 0x910a1e9b, 0xf2dbdc19, 0xd80a57f8, 0x3a04ddf8, 0xe577015d, 0x1d20a02f, 0xb1e115ac, 0x543876f2, 0x4cd56a36, - 0xd4b28aca, 0x000088, 00000000 + 0xd4b28aca, 0x000088 } }, { @@ -77632,19 +77628,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6d6a7029, 0x3b9f209a, 0x9d6528e3, 0x740726c0, 0xa6c24051, 0x93dfc078, 0xa15b28f3, 0xf6dacc1a, 0xf81e4b89, 0xbeec0e44, 0x1c873b55, 0xdc7f2824, 0xeed4bebb, 0xa269d27f, 0x62b0242c, - 0xd7598bce, 0x00012f, 00000000 + 0xd7598bce, 0x00012f }, { 0xe38e003, 0x7064aec9, 0x62ef91ba, 0x98b8bf2a, 0xadf20ceb, 0xec90b306, 0x56d883d8, 0x3d991e90, 0xd7076f56, 0x6f960b97, 0xdb3b1fc9, 0x4c6d6d8e, 0x53aaa285, 0x4711e2fd, 0x92d2af82, - 0x7349622f, 0x00019c, 00000000 + 0x7349622f, 0x00019c }, { 0x6c903950, 0xde97c620, 0x40c8e7e9, 0xd2bafaef, 0xbe6cd59e, 0x3ecc967a, 0x5a95c286, 0xe5b541ee, 0x2bf8176d, 0x7381de7b, 0x2ef4ab86, 0xe5525f1d, 0xb177abed, 0x671c644b, 0x779b56e2, - 0x9f8b5edb, 0x000150, 00000000 + 0x9f8b5edb, 0x000150 } }, { @@ -77652,19 +77648,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6bd5d31b, 0xb72a66ac, 0xa4da0047, 0xb21a5557, 0x4de000f3, 0x170d30c6, 0x872a5138, 0xeaec2723, 0x64e18855, 0xab57210f, 0x45934df5, 0x175e055e, 0x7f2dd137, 0x45ef8145, 0x748439e1, - 0x29df7de7, 0x0000be, 00000000 + 0x29df7de7, 0x0000be }, { 0x75ef92c9, 0x9dbc553f, 0x1d31571d, 0xe55d3a44, 0x90384cb2, 0x104d2350, 0xdea454a, 0x26d688af, 0x8c4efa61, 0x2222500e, 0x619ba540, 0x2c199d45, 0xc4b2e65b, 0x1d369935, 0x8d924881, - 0xd388f663, 0x000072, 00000000 + 0xd388f663, 0x000072 }, { 0x1f7b5ad1, 0xb20c4875, 0xdf7a06, 0x6c724126, 0x6f7cd715, 0x3ef11b33, 0x1323937d, 0xbd245952, 0x14e6a4dd, 0xbae87b3, 0x84dcc642, 0x19d97f7c, 0x2fe84c66, 0xd8e0eca4, 0x6407bf15, - 0x266be87c, 0x000144, 00000000 + 0x266be87c, 0x000144 } }, { @@ -77672,19 +77668,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x99924ebc, 0xa6984df2, 0xd15c0ba9, 0x45c413a3, 0xdcf39cfa, 0xaacbb89e, 0x28ec5dc0, 0xec1c7370, 0x6badf1e2, 0x408896f7, 0x9cb651f1, 0x2dbb5d42, 0x4e842f43, 0x24ceffed, 0xbaa271c4, - 0x64656f7e, 0x000058, 00000000 + 0x64656f7e, 0x000058 }, { 0xd3d591ed, 0xa2ef6722, 0x48beab2, 0x147aa375, 0xa7b259e4, 0x1c47cd71, 0x73214abf, 0x451a63b1, 0x48c3a607, 0x18c3244c, 0x6062d12d, 0x4f37f51b, 0xbfb7b098, 0x1cbb7913, 0x5725ece0, - 0x75abdc64, 0x00018d, 00000000 + 0x75abdc64, 0x00018d }, { 0x15f29764, 0x68e2ba86, 0x90272ab, 0x8ea7651c, 0xf4e151fd, 0x67752acb, 0xbb8ef77e, 0x2f92b39e, 0x35003e0c, 0xbdb84e30, 0x22983fbb, 0xc10b6854, 0xc7ed9de0, 0xc542e2f9, 0x612f463c, - 0x3f5c3cf2, 0x0001f6, 00000000 + 0x3f5c3cf2, 0x0001f6 } }, { @@ -77692,19 +77688,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8c004347, 0x571e2984, 0x56273028, 0x743d5d5a, 0x2ee40572, 0x37700ae8, 0x12479a3e, 0xd4c251a7, 0xb223bd8e, 0x3230b433, 0xd735f3fc, 0xa59f688d, 0xe133739a, 0x7a8b3479, 0xbb1b2478, - 0xe5317cbe, 0x0001ae, 00000000 + 0xe5317cbe, 0x0001ae }, { 0x926e51bc, 0xcea28f8f, 0x86c328ed, 0x205bc246, 0x1db6e7c1, 0x79c93cee, 0xc8d31e7, 0x2ed59f47, 0x72e79ee, 0x3f8c7f1, 0xcdaec1ea, 0x9d13a53e, 0xe243d0b7, 0xee30098b, 0x13d4204a, - 0x2c1f26f7, 0x0000a9, 00000000 + 0x2c1f26f7, 0x0000a9 }, { 0xc4bba9ac, 0x777820b, 0x4d91891e, 0x1eaf934c, 0xbbfb9424, 0xe983e13e, 0xbf344a65, 0x35cc8c50, 0x359ec007, 0xdeac5276, 0x706edd2, 0x13321f36, 0x9cbf9583, 0x7f50e01e, 0x5290f712, - 0x316a1f26, 0x000031, 00000000 + 0x316a1f26, 0x000031 } }, { @@ -77712,19 +77708,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe8e1ce2a, 0x9d281362, 0xee2846db, 0x487a1df6, 0x567df7d6, 0xc33d2d90, 0x9f28921, 0x722adcd3, 0x1fdcf358, 0x9a317e5e, 0xdb3b173f, 0x62d2fddb, 0x7213f41c, 0x4a486d3a, 0x334a142c, - 0x161707da, 0x000141, 00000000 + 0x161707da, 0x000141 }, { 0xeee4765c, 0x20b6a440, 0xb272e672, 0x58a4df56, 0x49ae3c19, 0x577504d0, 0x4c660a5d, 0xf0eb89ca, 0x3953f0ce, 0x63ae1726, 0x112e9b6a, 0x8b5e373d, 0x76067d3, 0xd4364ab2, 0xabf2e245, - 0x1148fd01, 0x00014e, 00000000 + 0x1148fd01, 0x00014e }, { 0x412b3dbf, 0x762b86ff, 0xbfe08b8d, 0x84fca85e, 0x7534ec36, 0xcc44289b, 0x3095292d, 0x7c3f9a8f, 0x53fa2880, 0x6cc443b4, 0x72c975f3, 0x775f2f2e, 0xbef901dd, 0x827d7a32, 0xbd69e4b, - 0xca419274, 0x000148, 00000000 + 0xca419274, 0x000148 } }, { @@ -77732,19 +77728,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf9891b0, 0x38dc4e37, 0x189ef9de, 0x250d52e1, 0xc3f1a0bf, 0x81dca9a1, 0x3439739c, 0x54776b68, 0x487839c9, 0x8dd6d8bd, 0x60bc418, 0xb0c0cbda, 0xfdb24b1, 0x6f69a267, 0xb211e758, - 0x9c96de16, 0x00013f, 00000000 + 0x9c96de16, 0x00013f }, { 0xbf83def4, 0xd9b5002e, 0xbc111923, 0x94a4769c, 0xe679b4fc, 0xff5a4a8f, 0x750e5c40, 0x7d5bb1f5, 0xedc8d217, 0x97792500, 0x9e27542d, 0xacf8dd7b, 0x922e10c, 0x328f5cbe, 0x337ec863, - 0x5058224e, 0x000057, 00000000 + 0x5058224e, 0x000057 }, { 0xf3a80880, 0xbf22796f, 0x6e318bc8, 0xbe4fc961, 0x83fd1439, 0xad510e4f, 0xd68b2fd1, 0x1357fc5d, 0xc9ee0b17, 0xf0f7cbcb, 0x64be09dc, 0x1b79ca56, 0x8b1e01db, 0xc382d3a0, 0xcc39925d, - 0x5beb9614, 0x000084, 00000000 + 0x5beb9614, 0x000084 } }, { @@ -77752,19 +77748,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x30ddd8f7, 0x225aa1c0, 0xcbe1d15e, 0x5458db91, 0x30e85b65, 0xf52805da, 0x3567dd8f, 0xc84fd2e, 0xdd0be08c, 0xb1f3050e, 0x6b702fc4, 0xc4ea6dfa, 0x39f97818, 0x3dcf99c0, 0xc1fdaa54, - 0x3f39e7e2, 0x00012b, 00000000 + 0x3f39e7e2, 0x00012b }, { 0x2ffd8b44, 0x33fe7b2c, 0x9b31b28d, 0x8acbb336, 0xaa706eb3, 0x8a7cbf4, 0x8bbe9be3, 0xf7e95a5d, 0xdad9c4af, 0xed5283dc, 0x3b928dbb, 0xe803733, 0x1b9113bb, 0xe1a682ae, 0xbff66100, - 0xef98623, 0x000196, 00000000 + 0xef98623, 0x000196 }, { 0x63091e49, 0x21b2f35d, 0x659eda59, 0x15260a9d, 0x60873fec, 0x72f72245, 0xe9b30a1f, 0x910bcdde, 0x1f17a124, 0x128144ac, 0x7a87688b, 0x6527f585, 0xa798aed3, 0xe4d9e6d0, 0xa19f8231, - 0x14d6e8bc, 0x0001d3, 00000000 + 0x14d6e8bc, 0x0001d3 } }, { @@ -77772,19 +77768,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa8e236ca, 0x4d6c1484, 0xc806a10e, 0x330d24a, 0x406c5d71, 0x977d16d1, 0x5df0aeea, 0x9257c7db, 0xfb2c5838, 0x87148728, 0x13066c3a, 0x5e7f7512, 0xe319a52b, 0xaf7fc5e1, 0xe7ffc6e, - 0x221b5e86, 0x00015e, 00000000 + 0x221b5e86, 0x00015e }, { 0x36db005c, 0xd9d8b03c, 0x6089e19f, 0x32d34449, 0x26501a1c, 0xc0eff902, 0x9ef4b1fd, 0x89ef4b65, 0x5aef81d, 0x4aa95d14, 0xe370717e, 0x449c2e49, 0x65ae525c, 0x32b2dd30, 0x2ea06372, - 0xb4ed910a, 0x000013, 00000000 + 0xb4ed910a, 0x000013 }, { 0x3afe9260, 0xb625a573, 0x69936872, 0x400cba5, 0xcae7402b, 0xc3ff9b86, 0xa73b4c43, 0x58f89a0c, 0x399a81bf, 0xb3f43c12, 0xc396f1a2, 0xa990a588, 0xbd33d71, 0xbafb7704, 0x85235efe, - 0x2dd1db89, 0x0000ff, 00000000 + 0x2dd1db89, 0x0000ff } } }, @@ -77794,19 +77790,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfaf186e7, 0x63056c8f, 0x860f9513, 0x54708fe7, 0x691d7aa7, 0x25874b8a, 0x411fcb56, 0x1a3caf9, 0x1c405d0e, 0xe952080e, 0xa4c3d294, 0x4146c7c2, 0xa0e8ed60, 0xc36b063a, 0xc30930e8, - 0x64e9e0a4, 0x0000ea, 00000000 + 0x64e9e0a4, 0x0000ea }, { 0xc56c2245, 0xebf99250, 0xabccfa2e, 0x9b2debe6, 0xe6165b5c, 0xfeb75d2e, 0x875d5ed1, 0x1cd08c0, 0x879b4978, 0xe12e5f83, 0x7ba0763b, 0x8acb24fa, 0x314375cc, 0x3976212, 0x29b83fc2, - 0x747209cb, 0x000179, 00000000 + 0x747209cb, 0x000179 }, { 0x8b708ab5, 0xa1c6e933, 0xd9100efb, 0xa96a322, 0x21f0b5da, 0xf2a3211a, 0x7b470b88, 0x860c4fcf, 0xa332998a, 0x926c6ce5, 0x1b1425b2, 0x769f870e, 0x376041cb, 0xf7054c2a, 0x657a18cc, - 0x39b7f7a6, 0x0001d5, 00000000 + 0x39b7f7a6, 0x0001d5 } }, { @@ -77814,19 +77810,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd4f215dd, 0xdf83a28f, 0x9afbfc21, 0xb06190b2, 0xa682c306, 0xa6c72c5, 0x960dc01e, 0x9f263395, 0x5f1b8e42, 0xcf873838, 0xcffe2902, 0xd45f6af5, 0x97539707, 0x9fe99794, 0x401b4f57, - 0xe1323116, 0x000150, 00000000 + 0xe1323116, 0x000150 }, { 0x8f32b6d, 0xc45b25c1, 0x4995412, 0xa19641d8, 0x2b15627b, 0x4aa624f6, 0x14374f27, 0x1653cf2d, 0xfda0047f, 0xfdc9e5a2, 0xfbcf3ad2, 0xf2723c46, 0x75851a83, 0x4948c667, 0x4ae4e191, - 0x412d1068, 0x000086, 00000000 + 0x412d1068, 0x000086 }, { 0xa716e9d3, 0x38a61667, 0xb1cfb3e3, 0x27083e1a, 0x69566c6c, 0x8a3af9da, 0xbca7c47, 0xc5741228, 0xea7373b8, 0x3652476d, 0x2a89f704, 0x68c5df45, 0x6d2063d0, 0xe111351f, 0xcbfe69ae, - 0x5647a64e, 0x000037, 00000000 + 0x5647a64e, 0x000037 } }, { @@ -77834,19 +77830,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa4a6cabb, 0xd9d04ed0, 0x14b98f92, 0xb5d7ecc8, 0x5ba38724, 0xea26436a, 0xd0c0c35d, 0x3cc2d807, 0x7972ab2, 0xaab2eda8, 0x91c0ff8e, 0xb6d35a3c, 0x33bc558e, 0xe1289359, 0x71f4295c, - 0x5dea2064, 0x000086, 00000000 + 0x5dea2064, 0x000086 }, { 0x56c55c1a, 0x6ba36312, 0x324620d4, 0x2920374e, 0x5fecf6fa, 0xcd0288df, 0xaa3be200, 0x6764ff0b, 0xadff3409, 0x3cea1d5f, 0xc3994754, 0x8c5fada5, 0x7441e6e9, 0x316c0f6e, 0x5ba1e697, - 0xd94cd2b, 0x000089, 00000000 + 0xd94cd2b, 0x000089 }, { 0x9937e841, 0x5e7c0957, 0x5b306189, 0x23a4011, 0x917fd0ae, 0xf6bce06f, 0x52a7d0eb, 0x5779b304, 0x1256ed91, 0x308a75e7, 0x6048cbdc, 0x400183e1, 0x1903e7fe, 0x89491d08, 0x9dd3a797, - 0x7a7c273d, 0x0001b2, 00000000 + 0x7a7c273d, 0x0001b2 } }, { @@ -77854,19 +77850,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x34b4c380, 0xc8f3a9e0, 0x282370e2, 0x74926e8b, 0x8c30df06, 0xac77b347, 0x6be4b7eb, 0xde6a5f36, 0x9412f71f, 0x1f0bdc50, 0x95b6c89f, 0xd36a274e, 0xffeb3624, 0x2190fab3, 0x473db1f5, - 0xdb029e45, 0x0000a2, 00000000 + 0xdb029e45, 0x0000a2 }, { 0xffd01e3e, 0x6717f8bf, 0x2d3b4d9b, 0x33b5dbd2, 0xdfd9a3cd, 0xa226482c, 0x3d9ffc8, 0x1d09da45, 0xb5b9b62, 0xada0eebf, 0xe4a53f76, 0xcc0052de, 0x1a708d46, 0xbaa1df8e, 0x1ee0373a, - 0x888d4b7b, 0x000193, 00000000 + 0x888d4b7b, 0x000193 }, { 0x9823e48c, 0x3a2ef580, 0x3bec2673, 0xaa5a3e33, 0x82aa9f7c, 0x5fb35a87, 0x3cd6eb4c, 0x1da856e6, 0xcf64d6fc, 0xd3903177, 0xdc208f95, 0xf16d5434, 0x203dc45d, 0xc91ddcaf, 0x48c04593, - 0xbc7b8b3c, 0x000117, 00000000 + 0xbc7b8b3c, 0x000117 } }, { @@ -77874,19 +77870,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x397922b8, 0xd78efc3e, 0xfb68d900, 0x847d079b, 0x70671442, 0x7883fb3f, 0x47212424, 0x4d13b240, 0x9cd35ac1, 0x7bfee926, 0xf62f780d, 0xb6ddc404, 0xbabd6cc4, 0xe02ed851, 0xc49bf24d, - 0xa8fb251, 0x0000af, 00000000 + 0xa8fb251, 0x0000af }, { 0x20fa7205, 0x9f2a26bd, 0x71d47eed, 0x42996b36, 0xbf3a450b, 0xb295998d, 0x6a96e1a5, 0x1645b775, 0x98d510e6, 0xcbaaa0b5, 0xd15d00df, 0xc4526022, 0xa3a928fb, 0xf23df29e, 0x56e83cfd, - 0xe28b18eb, 0x000007, 00000000 + 0xe28b18eb, 0x000007 }, { 0xa7d133e4, 0xd9b145e6, 0xa7e8e237, 0xa8f07d9c, 0x534c24e5, 0x95314448, 0xd23e86c0, 0xbdcd50ff, 0x19578710, 0xf7b0d63d, 0xfb775dfb, 0xaa676367, 0x78dc9f5e, 0x95d99cc0, 0x29404d45, - 0x65173176, 0x0000da, 00000000 + 0x65173176, 0x0000da } }, { @@ -77894,19 +77890,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbea83f37, 0xb56b2866, 0x86e32bfc, 0x5e43e169, 0x25711f47, 0x19f96ef4, 0x798f3e9b, 0x53a3a7dd, 0xb0a4fa77, 0x51ffdfdb, 0x4fc4d3b8, 0x1570bb8, 0xb22253b, 0x9d41b0c5, 0x58eabd32, - 0x1fd44812, 0x000171, 00000000 + 0x1fd44812, 0x000171 }, { 0xd4a2929, 0x29e48d68, 0xab31723a, 0x41e4d491, 0x14b86ac3, 0x2427ab6, 0x20cf757b, 0x890027, 0x5bcfec82, 0x70fe1c61, 0x6a4eec01, 0xac254dfc, 0x7a0b35cf, 0x50a284c, 0x69aef357, - 0xa15e15e4, 0x0001f7, 00000000 + 0xa15e15e4, 0x0001f7 }, { 0x36a48a70, 0xd0bec482, 0xbe4e05da, 0x9f1d79b, 0x3276811e, 0xd62a431, 0xee690353, 0xe12a3905, 0xc6f2b6d3, 0xa7ad9f66, 0xd3cc9128, 0x785c1f3e, 0x49e80df3, 0xc54713c3, 0x582e6eb7, - 0x4b6142fb, 0x00019c, 00000000 + 0x4b6142fb, 0x00019c } }, { @@ -77914,19 +77910,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf0b643d0, 0x7aaa010, 0x70cb383f, 0x9775e171, 0x6d1115e0, 0xb70feeeb, 0x466d44a3, 0x19314867, 0xcdb1563, 0xd4e420f4, 0x47c793f0, 0x2313e9d0, 0xde0b8c4c, 0x25eb25, 0x582d374, - 0x2b5d37fd, 0x0000c4, 00000000 + 0x2b5d37fd, 0x0000c4 }, { 0xab547ff0, 0xed189b5d, 0xa244c21e, 0xa618c098, 0x98160620, 0x264b8a36, 0x5bb74f86, 0x17a1d471, 0xb07f12d0, 0xbf8ca47d, 0x7dc25b73, 0xdebaa49a, 0x2f0d5a51, 0x599d464a, 0x9f8f8d70, - 0xa61b87e8, 0x000002, 00000000 + 0xa61b87e8, 0x000002 }, { 0xad87275, 0x5ebef403, 0x496248ea, 0xeda52b9c, 0x51e19a9f, 0xcb1b3f1c, 0xb068be4f, 0xe3d6b1ad, 0x9608252d, 0xb43a05b8, 0x8c052c3e, 0x52bf235f, 0x189944ae, 0x78c121b9, 0xf81bdac2, - 0xdf6b9db9, 0x000005, 00000000 + 0xdf6b9db9, 0x000005 } }, { @@ -77934,19 +77930,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x364918e5, 0xd092429c, 0x3556d481, 0x9a9ce0, 0xd0e57f22, 0x6da6868f, 0x42ec0158, 0xf4573d34, 0x1df5830f, 0x9af377f8, 0x9c4679bb, 0xd53ba52e, 0x875abd08, 0xb83f96b1, 0xb469a8b8, - 0xcbee7604, 0x000062, 00000000 + 0xcbee7604, 0x000062 }, { 0x2b212000, 0x8d83ced, 0x8f836241, 0xdf03565c, 0x60a956b8, 0xe3fa0e60, 0x4c2568d7, 0x76cd59a7, 0x9b263c07, 0x54dbd0af, 0x947a61e3, 0x2dccc72f, 0x4ebf9cfa, 0x39c13177, 0x13fc7151, - 0xe2a5681e, 0x0000f1, 00000000 + 0xe2a5681e, 0x0000f1 }, { 0x9667e936, 0xf8fe662f, 0x5db0241f, 0xe0fa026f, 0xb5e08830, 0xe61c743b, 0xa3ff794d, 0xcc768815, 0xa450ae68, 0xccd1bc95, 0xbc93a5ed, 0xebb09841, 0xbf2bf346, 0x77a0ced2, 0xbe48ca0f, - 0xee613856, 0x000021, 00000000 + 0xee613856, 0x000021 } }, { @@ -77954,19 +77950,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdb1f2d7d, 0x68464c4b, 0xc43fa3ee, 0x3191a911, 0xd937eb19, 0x4a585bda, 0xb034deaf, 0x8d40ea3f, 0xc4c800, 0xf1d42740, 0xdd18d966, 0x159f68c9, 0xb16eae24, 0xe0726742, 0xe9617d43, - 0x6919577c, 0x000171, 00000000 + 0x6919577c, 0x000171 }, { 0xaedc916e, 0x940b7f7c, 0xe518b043, 0xf674c8d1, 0xb0aea5d3, 0xaca1b35c, 0x490f7635, 0x317928e0, 0x7d7f4b6b, 0xda3a28c0, 0x71deca48, 0x9e482be9, 0x3f8dffbe, 0x25a795e4, 0x2e63d8c7, - 0xe2c198a4, 0x00011c, 00000000 + 0xe2c198a4, 0x00011c }, { 0x7d1fcae5, 0xfca77d70, 0x7a2d5d77, 0x99d59b9b, 0x99644fca, 0x893f6a40, 0xb2601f3a, 0x3391725b, 0x404d0588, 0x6800f434, 0x17d53db5, 0x91586142, 0x981640ab, 0x7fc0b9a, 0x956c8b4d, - 0x4ddec1f6, 0x00015a, 00000000 + 0x4ddec1f6, 0x00015a } }, { @@ -77974,19 +77970,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x645585c2, 0xa7df9be2, 0x545749a9, 0x99c1b5d3, 0x8a0fcefb, 0x10b89928, 0x1d592f12, 0xb9ae125d, 0xdbded518, 0xd0272821, 0x7277d752, 0x37c7d4ed, 0x2ec18176, 0x6fc65155, 0xbbb87319, - 0xc4abbdd5, 0x000028, 00000000 + 0xc4abbdd5, 0x000028 }, { 0xe09c2c2f, 0x732d4bec, 0x6da46542, 0x793e7268, 0x37ffdf78, 0x5985ef33, 0x1355b476, 0x3b39dcaa, 0xc8e3671f, 0xc4192966, 0xb339ad0a, 0x66c8bbe7, 0x1ab81231, 0xd4b44838, 0x72799ab6, - 0xde1d6ff6, 0x00005f, 00000000 + 0xde1d6ff6, 0x00005f }, { 0xf32b454d, 0x20ee4b36, 0xefdf095e, 0x61687d25, 0xf8d6ec87, 0xb056faca, 0x10b0589c, 0x3ff90b92, 0xe3888110, 0xecdd305d, 0x3ac78d6d, 0x5cff1cb6, 0x9900364e, 0x92a6759d, 0x1439ba7f, - 0x1c2c2a20, 0x0000c0, 00000000 + 0x1c2c2a20, 0x0000c0 } }, { @@ -77994,19 +77990,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4e488027, 0x80d04b61, 0x26eb1e6a, 0x730cbbd1, 0xfd17921b, 0xaae456ec, 0x88fdb339, 0xfc43601f, 0xda3d0bc2, 0xa0c5ac70, 0xbddda806, 0x8f360230, 0x2609640a, 0x821e2199, 0x43671605, - 0x96c9b78b, 0x00003e, 00000000 + 0x96c9b78b, 0x00003e }, { 0x3935a8b2, 0x1ae1da39, 0x590eb237, 0x268c38da, 0x5c1e55d3, 0x3db7a65c, 0x123dca05, 0x9dfa708b, 0x524db2d1, 0x115cc3f9, 0xdce97909, 0x61e52aa4, 0x7473749e, 0x1569eaf9, 0x10716232, - 0x4663beab, 0x0000ef, 00000000 + 0x4663beab, 0x0000ef }, { 0x1d50f236, 0xf3561001, 0xa0771328, 0xec0da132, 0xd540b491, 0x29a23e03, 0x7d0b2520, 0xab01c859, 0x45950445, 0x78e6307c, 0xa88d0992, 0x55773494, 0xc8e37c45, 0xcea60b9f, 0x3c7479cc, - 0x3228fc54, 0x00016c, 00000000 + 0x3228fc54, 0x00016c } }, { @@ -78014,19 +78010,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5fc1c694, 0x438de41c, 0x54a0db1b, 0xf12cc063, 0x4a0a0f89, 0x6aa4ace1, 0xcd012b1b, 0xd9d89922, 0x45396984, 0x3e198650, 0xe1bb86b6, 0xce4d0162, 0xc35e3235, 0x4300bff5, 0x9eb9fcec, - 0x48881bf9, 0x00004e, 00000000 + 0x48881bf9, 0x00004e }, { 0x3952eb71, 0x574c17e8, 0x3007ceca, 0xed6be8e9, 0xf9d4b3ac, 0x8da4f650, 0x8901c076, 0x6817d87, 0xf4e4c09e, 0xcc184241, 0xc252cdce, 0x3874afba, 0x6a5e5d55, 0x6d419ead, 0xfa5c6eb2, - 0xed513d0f, 0x000010, 00000000 + 0xed513d0f, 0x000010 }, { 0xb631676e, 0x838f3513, 0xfff6e8c9, 0xa2ed7d92, 0xcd1b6211, 0x44dc2996, 0xf7e01191, 0x2bd2a5ee, 0xf8ae61b6, 0x7b0a4fdf, 0x519fe87, 0x2e6e0102, 0x467aa8be, 0xcf961134, 0x63e6cac5, - 0x5abdab2, 0x0001c1, 00000000 + 0x5abdab2, 0x0001c1 } }, { @@ -78034,19 +78030,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x39562d0c, 0x4ee4beb3, 0x73363f8f, 0xed1bc5d1, 0x1a47ce9, 0xe1f832ef, 0x12691707, 0x6652e563, 0x8ca10651, 0x6eca89e4, 0x567e077e, 0x32e260cf, 0xa2440a62, 0x3f1aaca8, 0x9dd496fe, - 0x6f7054b0, 0x00006d, 00000000 + 0x6f7054b0, 0x00006d }, { 0x39a5382d, 0x4f7168b2, 0x29dffed4, 0x803ec499, 0x9744a80, 0x5fb1fa12, 0x6d11cf46, 0xec337878, 0x3664806a, 0xc60bfd81, 0xa0112757, 0x8a29440d, 0x5180ceb1, 0x4fd1e13, 0xf45b6019, - 0xd5089b48, 0x000131, 00000000 + 0xd5089b48, 0x000131 }, { 0xeeca293, 0x1f00ea98, 0x4196783c, 0x5b4d2585, 0x855393b9, 0x7b4641a3, 0x89e79f3, 0xb58b3734, 0x2008c4db, 0x550e7cab, 0x86c35321, 0x773b3d08, 0x66fad98, 0x1c4c3acb, 0xf1b3248b, - 0x1f459c26, 0x0000f6, 00000000 + 0x1f459c26, 0x0000f6 } }, { @@ -78054,19 +78050,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x836eef2e, 0xf9c7ff71, 0x2d4be80, 0xc316ee51, 0xd3e858fc, 0xe371b650, 0xfb55cd0e, 0x33dbfdbb, 0x4cb789e9, 0x8505e58d, 0x1df47b22, 0x9d51406f, 0x6e7ac16e, 0x56e0e31, 0x96068b6f, - 0x95acb78, 0x000056, 00000000 + 0x95acb78, 0x000056 }, { 0x87b73333, 0x36672dc, 0x951f1c72, 0xc6051b0b, 0xf5aa7650, 0x5219dfa8, 0x5662caaf, 0xfdb32634, 0xc4d7a0ef, 0x7144461b, 0x2508cf95, 0xc95ce0ce, 0xa4900a8b, 0x40e8c9ba, 0x21627b, - 0x848f11d2, 0x00016d, 00000000 + 0x848f11d2, 0x00016d }, { 0x13db8d91, 0x40d87e54, 0x75d60a61, 0x3a2234ce, 0x995e860d, 0xf4e4f564, 0xcabc90f4, 0xa5174ba2, 0xa72dcd56, 0x93f3b226, 0x50e6bd90, 0xceff7b8b, 0xa06cfb3a, 0xd6a9c645, 0xc235f4d9, - 0xc55a69e, 0x00019d, 00000000 + 0xc55a69e, 0x00019d } }, { @@ -78074,19 +78070,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcd626e4a, 0xb43bd5a, 0x570703be, 0x5b47bff, 0x89f6942f, 0x93ff56a0, 0xc8f1bb2c, 0xd5105fd6, 0x2961d2cf, 0x3a669514, 0x68f82c59, 0x6a558c82, 0x684d8a5e, 0x95c3e712, 0xe254ddff, - 0x7f3af2a8, 0x0001c6, 00000000 + 0x7f3af2a8, 0x0001c6 }, { 0x61dfd756, 0x8a163e4c, 0x89ddf680, 0xd2740bb6, 0x8d7f67e7, 0x8950b109, 0x267e76ae, 0xbcd502cd, 0x9376a048, 0xfc4a96ea, 0x251a0012, 0xa9b09d3a, 0xf392167f, 0xf4cf4cf, 0xa0f635c0, - 0xfa52b906, 0x00003d, 00000000 + 0xfa52b906, 0x00003d }, { 0xa304d438, 0xf3404e61, 0x6c62149b, 0xfaab21b3, 0xd62bf98, 0x73ad3658, 0x67be394f, 0x82e5e4bf, 0xcd556345, 0x43fa7fd6, 0x66850268, 0xf27066bf, 0xf26441a7, 0xebb61fa1, 0x81fa0002, - 0xfd005c93, 0x000190, 00000000 + 0xfd005c93, 0x000190 } } }, @@ -78096,19 +78092,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x241c79cf, 0x9a34f572, 0x51f4171c, 0x983b04ba, 0x3460f751, 0x4032154e, 0x3454f420, 0xc0728f5a, 0xa7dc4770, 0xae74f4ad, 0x12380aeb, 0xaaab80e2, 0x541cd2dd, 0x77312662, 0x8a70fe3c, - 0x6f35ed4f, 0x00018e, 00000000 + 0x6f35ed4f, 0x00018e }, { 0xb65078c1, 0x5c1f9c9c, 0x4b65a703, 0xacfd5c5d, 0x73eb37b9, 0xd3b7faa1, 0x46418fc2, 0xc497d519, 0x7c8175c9, 0xb1749909, 0x51b143bb, 0x98415c5b, 0xedf279cb, 0xa945e822, 0x7316a8ad, - 0x523f6646, 0x0000d0, 00000000 + 0x523f6646, 0x0000d0 }, { 0x55845a0, 0xe7ace900, 0x1574b6e0, 0x531c25cc, 0xa1dc4551, 0xf6a10cf6, 0x69d25ec6, 0xc376b7ba, 0xc8d48074, 0x42f00153, 0xbac8a2c9, 0x3773d0ee, 0x8103e36e, 0xcc6ee767, 0xda02868e, - 0xd5b91ce2, 0x000179, 00000000 + 0xd5b91ce2, 0x000179 } }, { @@ -78116,19 +78112,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe2413c2c, 0xc6e6668f, 0xf50e9e2b, 0xdc28e10e, 0xdcc5addf, 0x93ec3ffb, 0xa5fc7af5, 0x6bbd0829, 0xd3b48b68, 0x3aae9a9c, 0x30252bd7, 0x9e337eec, 0xf6929b9d, 0x282f1756, 0x6b1c3245, - 0xf4234389, 0x00006a, 00000000 + 0xf4234389, 0x00006a }, { 0xbe6280c6, 0xaaee1e96, 0x5d904b9a, 0x82ba6c5, 0x4ba8c287, 0xc690cd52, 0xa9c05ea0, 0xcd52cb20, 0x250aa64f, 0xfb0243e9, 0x9c76fe0a, 0x5ec6f12f, 0xa228bcbe, 0x3d4d272f, 0x6b5e85da, - 0x5a878651, 0x000050, 00000000 + 0x5a878651, 0x000050 }, { 0xbf2e4bbb, 0xc7bb7ecf, 0x5b78484f, 0xf25c7a80, 0x3c497112, 0xcd0836c9, 0xe785eed4, 0xe06acc42, 0xffe83f40, 0xb2078b65, 0xf916e0cc, 0xc318c0dc, 0xea5f2819, 0x35a3e0fe, 0x77be51c8, - 0x385a919, 0x0001f4, 00000000 + 0x385a919, 0x0001f4 } }, { @@ -78136,19 +78132,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x42207500, 0x1d4fa0d2, 0xf0689a7d, 0xe257d590, 0xdc7f0f7, 0x58791546, 0x8197b974, 0xd95b7755, 0x2a257330, 0xf14eab86, 0x5a97388a, 0xea6be159, 0xd201a770, 0x87049254, 0x4fce2b81, - 0x19cf387b, 0x00016f, 00000000 + 0x19cf387b, 0x00016f }, { 0x58ae1b46, 0x656c5fe0, 0x2a09c7d3, 0x5c840b04, 0x5afe2315, 0xc35148ad, 0x15708b09, 0xb85cc066, 0xff5a1721, 0xd4cb865d, 0x431e26d5, 0x9b40a949, 0xd24ca065, 0x12e6cece, 0x4e9c942f, - 0x43851169, 0x0000a2, 00000000 + 0x43851169, 0x0000a2 }, { 0x482a77ec, 0x90715288, 0xda45ec71, 0x970585ee, 0x84d52489, 0xffc09630, 0x966a242f, 0x687af92a, 0x623c818e, 0xf186ec7a, 0x24dc42a9, 0x9aea27d1, 0x55bedab6, 0x7e560688, 0x35bf35a, - 0x2e90770f, 0x0000e5, 00000000 + 0x2e90770f, 0x0000e5 } }, { @@ -78156,19 +78152,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa826f130, 0xca30a3be, 0xe8b6375d, 0xb51df69b, 0xdb7b9d41, 0x15396f1f, 0x79b7ebf8, 0x92097fea, 0xd7ca66b0, 0x9d2aedd9, 0x2fe0c0e2, 0x536456e, 0x391abdc3, 0xfa11d082, 0xc212913f, - 0xb2692baf, 0x00015d, 00000000 + 0xb2692baf, 0x00015d }, { 0xc7fb1ce8, 0x608e5e19, 0x70fc74ea, 0x5557a690, 0x7833634c, 0x96006c78, 0xd8743e97, 0x5298a3e5, 0x4ac6eb48, 0xbc014953, 0xd4942eb5, 0xadee01c5, 0xec56841, 0xc1a84bf, 0x9be9d08e, - 0x2427cd5, 0x0000dc, 00000000 + 0x2427cd5, 0x0000dc }, { 0x6fa3aad1, 0x5f52b59, 0x57fac638, 0xf4ebbe3f, 0x657a74d7, 0xd5413b77, 0xe9cdbfe5, 0xb449a8a2, 0xc0fa68d7, 0xf74aac35, 0x9dd954e8, 0x767b0d04, 0x4ca8d88, 0xfb8bea58, 0xa4bfa4c9, - 0xf2d7fc7a, 0x000139, 00000000 + 0xf2d7fc7a, 0x000139 } }, { @@ -78176,19 +78172,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x67252bb9, 0xefc0835d, 0xbd636052, 0x74867e42, 0xbbc5caf9, 0xd20fb148, 0x3bdce793, 0xeea040fe, 0x93eff1f2, 0x7c34a9df, 0x40237921, 0x2c56c646, 0xefa42cb2, 0x6ea5f20d, 0xac252db4, - 0xc271cde2, 0x0001f7, 00000000 + 0xc271cde2, 0x0001f7 }, { 0x30e0ce95, 0xef65ee73, 0xce1b30e5, 0xed131c2f, 0xb945f612, 0x6bc073e1, 0x18dfd41c, 0xe5268b8a, 0x9d25d583, 0xfdb4f278, 0x7c88e85a, 0xb42e4dc9, 0xf6591ffe, 0x65cbd38, 0x68b65e21, - 0xa2331cde, 0x0001c2, 00000000 + 0xa2331cde, 0x0001c2 }, { 0x81fc861b, 0xbe24df15, 0xb84e8eb9, 0x99c8aa24, 0xb9ddee2f, 0x6a4341b7, 0x12155d3e, 0x4d54536f, 0xaf48be2, 0x29d69642, 0x11a7efc9, 0x6ee6c19f, 0xd53aa26d, 0xa1cfa3f3, 0x5e429a24, - 0xdb7ae5db, 0x0000c9, 00000000 + 0xdb7ae5db, 0x0000c9 } }, { @@ -78196,19 +78192,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd22b3bc3, 0x11828baf, 0x29203f09, 0xcafc5d99, 0xf273ab4b, 0xaba31f22, 0xbdfa568e, 0x972fe82e, 0xb865d0e2, 0xb5fc1495, 0x250de70c, 0xd53942e6, 0x46c5d07, 0x848a6657, 0xc4c5ae18, - 0xa18166e1, 0x000078, 00000000 + 0xa18166e1, 0x000078 }, { 0xcacf1876, 0x11ad19cd, 0xda45df, 0x773935ef, 0x92c583a2, 0xf9217b8f, 0x17f4ecad, 0x3294a977, 0x9ce8056a, 0x4e3f370d, 0x2ea0ab14, 0xc78ec7dc, 0x5b6468ae, 0xd8a19af2, 0x5cbbcd11, - 0x6b3cabc2, 0x000118, 00000000 + 0x6b3cabc2, 0x000118 }, { 0xf9688fb7, 0x8a7436cd, 0x3d9e6680, 0xdb94fd6a, 0xfd9da86d, 0x332e0b1f, 0x51836dfa, 0x95d4d8c2, 0x53e4691f, 0x9b8c7cd0, 0xedab1967, 0x7519e8a7, 0x76437a68, 0x88b5addf, 0x25ecbcca, - 0xf33461c5, 0x000076, 00000000 + 0xf33461c5, 0x000076 } }, { @@ -78216,19 +78212,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9f4bf0fb, 0x165c5f3c, 0xf45ca26d, 0xf2413a39, 0xa461179d, 0x1f3d7afb, 0x607bd987, 0xe9cc4432, 0x11832db2, 0x71fcc4b2, 0xca66a9f6, 0xdfae6bc6, 0x61c635b7, 0xf9cd5d21, 0xf1bfe6c7, - 0xda5e0c17, 0x000068, 00000000 + 0xda5e0c17, 0x000068 }, { 0x409b237a, 0x7678d56e, 0xc35445a5, 0x9ad7b88f, 0x91e5a2ed, 0xc9421655, 0x9b59edee, 0xcb9145bf, 0x13d7e424, 0xf3ff4070, 0x4b340e2f, 0x72e2b1e9, 0xb6a996f4, 0x15b98046, 0x174111c, - 0xc9103a58, 0x000173, 00000000 + 0xc9103a58, 0x000173 }, { 0xf5a947b, 0xca8c68ea, 0xc30885b1, 0x8a64cba0, 0x4ffd4dd6, 0x9a3ad300, 0x2061c56f, 0xcddfc350, 0x168153cc, 0x51465b0c, 0xe975ab82, 0xaebc4293, 0x760b67c6, 0x6d71957f, 0x93f46765, - 0x31c37e4, 0x000042, 00000000 + 0x31c37e4, 0x000042 } }, { @@ -78236,19 +78232,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8f22da9, 0x8b731609, 0xaa3e533b, 0x5c016a42, 0x9cbd96c1, 0x74a16b8b, 0xfc1a75d6, 0x1364f939, 0xa7f1bd73, 0xc7aa563f, 0xb9130e5, 0x616e548b, 0xa327d1b3, 0x610e282, 0xffafc9b3, - 0xb767cabf, 0x00007d, 00000000 + 0xb767cabf, 0x00007d }, { 0xe65c6f8e, 0x83d2bd00, 0xdec80650, 0x19e628f9, 0xa474a7a5, 0x49eaee0f, 0x71019bbd, 0xf7cd1a31, 0x57601b21, 0xbb655799, 0xa39fba45, 0x592b8585, 0xf96b4d9, 0x4edf6498, 0x6d85935c, - 0x529878e3, 0x000175, 00000000 + 0x529878e3, 0x000175 }, { 0x51870da2, 0x1cd9c12f, 0xeb504805, 0xa8eeb8c6, 0xf4cfc6d8, 0xcb7f2b70, 0x6ecfc430, 0xb716b28e, 0xf1ea2bf1, 0x27cb437f, 0xc92fd091, 0xd3eba92e, 0x692583df, 0x714ae587, 0x13bc2848, - 0xc458a11f, 0x00016d, 00000000 + 0xc458a11f, 0x00016d } }, { @@ -78256,19 +78252,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3cc11244, 0xfd27802, 0xf7aaacfe, 0x628d65d4, 0x99073b86, 0xebeac8d7, 0x23001cc2, 0x73f7634f, 0x385a9d58, 0x147c403d, 0x8b16e7db, 0xe1d45041, 0x7206ae0f, 0x406342d9, 0xdb99bec8, - 0x69792a94, 0x00011b, 00000000 + 0x69792a94, 0x00011b }, { 0x535a7552, 0xa689783b, 0x4d29d79a, 0x7e96ef67, 0x83d65736, 0x2bf4fb74, 0x9d3a843e, 0x36b4e576, 0xb8545541, 0xa83cc0f8, 0x89a3442f, 0x99f58b32, 0xe84e477d, 0xa22ea38e, 0x24e586ee, - 0x85f5e595, 0x00013f, 00000000 + 0x85f5e595, 0x00013f }, { 0xa58add28, 0xc58474ad, 0x20bab29b, 0xc7972d3e, 0xc8c6df38, 0xf28b0ee2, 0x24cf57bb, 0x81ecf3fd, 0x10d1aecf, 0xcba385c2, 0x2cf45008, 0x90096136, 0xb900c5b2, 0x4703d252, 0x9b5bbfb7, - 0x1c741bde, 0x0000d6, 00000000 + 0x1c741bde, 0x0000d6 } }, { @@ -78276,19 +78272,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7c1db0a, 0x7074c63a, 0xc3e0b072, 0x2532d471, 0xe5dce807, 0xd2f67bbf, 0xa5294e1f, 0xd87c71b9, 0xaddca6d0, 0xc6c7f6a4, 0x3bbc5b4f, 0x22f37b36, 0x26b951da, 0x774fa0da, 0x6063f344, - 0x3c8da3ea, 0x000028, 00000000 + 0x3c8da3ea, 0x000028 }, { 0x481e49e5, 0x164e538a, 0x339d1540, 0x70131adf, 0xe1500cb4, 0xa7bb5d44, 0xa3b5cbd8, 0x2d2bf38e, 0x1dfd87cf, 0xcb15a3c4, 0x2d964781, 0x8cc8f27e, 0x63a7770b, 0x13759c71, 0xf2ee6dab, - 0x39a2f226, 0x0000e8, 00000000 + 0x39a2f226, 0x0000e8 }, { 0x63b54564, 0xc97d8e30, 0xc7e04ac9, 0x242f4345, 0x2e4fb05, 0x5fbdd2ba, 0x60f61329, 0xcff41ecf, 0xcf872f3f, 0x76c148dd, 0xd747f4e7, 0xddd93663, 0x1e9a72f2, 0x93345c76, 0xee962363, - 0x4d253af3, 0x000007, 00000000 + 0x4d253af3, 0x000007 } }, { @@ -78296,19 +78292,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x926b7699, 0x29a561c7, 0xbc0d9d49, 0xd025b700, 0x80393a4, 0x72cb531b, 0xac8ab008, 0xd3b5e18f, 0xbb0d25ec, 0x9f7b6eb6, 0x86a94d3, 0x28c6a39f, 0x42a69e39, 0x6934d923, 0x26c298d, - 0x5d383d88, 0x000057, 00000000 + 0x5d383d88, 0x000057 }, { 0x576ceffa, 0xed320a02, 0xbec941fa, 0x209f609a, 0x2b1fe5c7, 0x403a55e5, 0xdd90ce16, 0x6b031ef7, 0x5a9a2a84, 0x18bc2034, 0x5a35b3cf, 0xfafa1e40, 0xa3efb562, 0xa90690d5, 0x81fd9330, - 0x330716b, 0x000019, 00000000 + 0x330716b, 0x000019 }, { 0xd8a0df92, 0x148a61bc, 0xfc496977, 0x938d6d0a, 0x8d1e1e3b, 0xba2b85ca, 0x4e92fd5f, 0xac6e3fda, 0xed80ce35, 0x3fd4194f, 0xc66e326e, 0x2f427420, 0x406b932a, 0x911459b0, 0x4f95a83d, - 0x47703bb, 0x000050, 00000000 + 0x47703bb, 0x000050 } }, { @@ -78316,19 +78312,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xfde13869, 0x74f5a0a3, 0xc9203709, 0x2cc35047, 0x5e475a18, 0x5633c2bd, 0xd63c5945, 0x6bccc7b5, 0xabf8c374, 0x7efa0c67, 0x3a6743eb, 0x65acd158, 0x9ce1b4e9, 0x8391af1, 0x66e45906, - 0x4d3d2516, 0x000063, 00000000 + 0x4d3d2516, 0x000063 }, { 0xfdad0b29, 0xda3e572c, 0x1ee518b1, 0xad883987, 0x765fde02, 0x68e72697, 0xf353dfc6, 0x5d7541f5, 0x31dc0e42, 0x41bb8026, 0x89c77eea, 0xcede54b9, 0x7b45abe3, 0xb767cc92, 0xb9146e92, - 0xec5c033d, 0x00008d, 00000000 + 0xec5c033d, 0x00008d }, { 0x21f81539, 0xeb35a70f, 0xe027a338, 0x489b6f1d, 0x1a7d4402, 0x54a9c1cb, 0x6e3c1482, 0x11555072, 0x53ebe5b1, 0x5ad7bca1, 0x8e67f6ed, 0x38d2a2b2, 0xa8fd4bc9, 0x89325fab, 0xc6215891, - 0x34e6e5e2, 0x000141, 00000000 + 0x34e6e5e2, 0x000141 } }, { @@ -78336,19 +78332,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x49c4f71b, 0x25c9bd16, 0xcb49a9bd, 0x17bcfdae, 0xafe56a0e, 0xab1c2105, 0x7f203c0a, 0x2b8bb6c4, 0x8ccdd199, 0xb7d8b569, 0x614ede75, 0x6f5a6e11, 0x34d4c13c, 0xa3f58133, 0x7e147590, - 0x5932953, 0x000163, 00000000 + 0x5932953, 0x000163 }, { 0xa9fa0d90, 0x98baf272, 0xde5f1c5c, 0xc1636442, 0x4e74c91, 0xb5454198, 0x90c61d95, 0x675800ea, 0x84349054, 0x12775650, 0x597baf08, 0x596d8ad8, 0x5a4f0017, 0xbd7aa7d5, 0x798c1548, - 0x5e27f04c, 0x000182, 00000000 + 0x5e27f04c, 0x000182 }, { 0x7d1df6b6, 0x5d9cd91f, 0xfbffd1eb, 0x397c616c, 0xd47e14e6, 0xe9ba2f6f, 0x2496214f, 0x2fa00d2d, 0x620a950f, 0xa47a0d22, 0xe1983678, 0x7fe7c001, 0x6b2921b2, 0x98433673, 0x94fccddd, - 0xd2faedb0, 0x000061, 00000000 + 0xd2faedb0, 0x000061 } }, { @@ -78356,19 +78352,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x960fcb9a, 0x76dd14b7, 0x51e17ff4, 0x4243939d, 0x14ed16a2, 0x5e6830ab, 0x45367fa8, 0x3b5422d3, 0xf824b8a3, 0x50d41cba, 0x723ed265, 0xb39e1f53, 0xb0985e5b, 0x3025e88d, 0xfa8d9821, - 0x2ef54fc9, 0x00013d, 00000000 + 0x2ef54fc9, 0x00013d }, { 0xa6739b65, 0xd7ff87df, 0xbffb816c, 0xb58320, 0x1bc8149c, 0x9dd2d1c5, 0x801d890b, 0x971b1cb9, 0x3409a551, 0x47ca941a, 0x3eb02131, 0x5f8c80c4, 0x3ad89bb0, 0x5310751c, 0xad9ec379, - 0x85d03034, 0x000114, 00000000 + 0x85d03034, 0x000114 }, { 0xb4a5e284, 0x6ed601e8, 0xa0de4de5, 0x164b78ce, 0x225401f4, 0x8ed5ced6, 0x2d346d4f, 0x40ea8cb2, 0x860c1e3c, 0x1a53fdb5, 0x1e09ace4, 0xa6c154d7, 0x9f22cfe2, 0x62298b6f, 0xf653b53, - 0x89e6a78a, 0x000182, 00000000 + 0x89e6a78a, 0x000182 } }, { @@ -78376,19 +78372,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x79187010, 0x45f0d39b, 0x1f87deff, 0xf2c0936, 0xa2523ff6, 0xccc75af8, 0x5b364fea, 0xdeff981f, 0xa3b3fd5, 0x12dcbd9f, 0xb132f374, 0x27b1c437, 0xa6d992c6, 0xbd9cc7a, 0x9c5eb783, - 0x356f7430, 0x0001f1, 00000000 + 0x356f7430, 0x0001f1 }, { 0x6e701c40, 0x2663ec2e, 0x28192f20, 0x55e3cb4c, 0x6c8b08bb, 0x7b53f09f, 0x8d9a94f2, 0x5a525213, 0xb5c1fe6d, 0xe080e036, 0x4a930eba, 0xbc99f081, 0xdf982d14, 0xdc1f887b, 0x5351a39a, - 0x3efc759d, 0x0000e2, 00000000 + 0x3efc759d, 0x0000e2 }, { 0xc8bca1a5, 0x85ca711d, 0x5631c4e1, 0x1968ac27, 0xb707d0d, 0x888730f7, 0x1b83faba, 0xedd45591, 0x1c36efa1, 0x7fe33172, 0xdc44465d, 0xa9954bce, 0xf43148e5, 0x44cdbdfc, 0x6e1e7b89, - 0x93c2a19b, 0x00004b, 00000000 + 0x93c2a19b, 0x00004b } } }, @@ -78398,19 +78394,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe751b9bd, 0x644de2f4, 0x19b881ba, 0x829352f7, 0x7b4cd65, 0x253dd703, 0x81d4875f, 0x7cf30632, 0xcd2cde6e, 0x11c0af78, 0x91b39cd1, 0x62ebd212, 0x977f1584, 0xc87c5fb5, 0xbbd5659c, - 0x45432cce, 0x000020, 00000000 + 0x45432cce, 0x000020 }, { 0x5b7c247a, 0x5b9a36ad, 0x726b158a, 0x75113268, 0x1787451b, 0x7dc7ba1b, 0x4dfb0da, 0x80db8851, 0x788cee62, 0x4977ddb5, 0xace96979, 0x8d3d3741, 0xef77c5cd, 0xffe8336, 0x97fb848, - 0xfa459c91, 0x000174, 00000000 + 0xfa459c91, 0x000174 }, { 0x1f965514, 0xb5318491, 0xe89460ec, 0x50c1b9c0, 0x718d8e4c, 0xa7dee818, 0xccb6365a, 0xdbcf312b, 0xa4112136, 0xdaf5c851, 0x1f34e001, 0xf7e0d3ff, 0xd0daaa4c, 0xd7bea3e1, 0xbe620fda, - 0x587e5229, 0x000194, 00000000 + 0x587e5229, 0x000194 } }, { @@ -78418,19 +78414,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5094dd36, 0x615b7e95, 0x30ed7dfa, 0x5dc46087, 0xb7c32737, 0x10838836, 0xdde77bc2, 0xe072a1ec, 0xe6190959, 0x2849216, 0x81c4bcf, 0xac13e731, 0xfabc523c, 0xa0719b94, 0x20464449, - 0xbdb65814, 0x0000ae, 00000000 + 0xbdb65814, 0x0000ae }, { 0x96eeee99, 0x4845016f, 0x2002f7a2, 0x710fa702, 0x470cf084, 0x7e2ec871, 0xd7a64152, 0xad55bfa, 0x7e3262fd, 0x2004c806, 0xbe201a2c, 0xcc2f14c1, 0xa3b2637c, 0xf2f5f572, 0x5b197f93, - 0x30971134, 0x00017d, 00000000 + 0x30971134, 0x00017d }, { 0xdd39247d, 0xfb52c39e, 0x2be76c97, 0xa8840ad5, 0xf123e189, 0xbba1853d, 0x7c8cf14a, 0x9571c7fc, 0x3a89525f, 0x93818cd9, 0xbf918f0d, 0xa58d3453, 0x5f59c140, 0x301e4056, 0x98e196a8, - 0x8b2ebcf1, 0x000179, 00000000 + 0x8b2ebcf1, 0x000179 } }, { @@ -78438,19 +78434,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa07b79a5, 0xcd2510f5, 0x27250d5a, 0x18bd4178, 0x93019454, 0xde08a3ed, 0x70ee9465, 0xefe7a316, 0x43a7d6d7, 0xdee6c53c, 0xf73d6a48, 0x80907fe4, 0x14d73b53, 0x9072d173, 0x9be1ba54, - 0xf5936bfc, 0x0001bb, 00000000 + 0xf5936bfc, 0x0001bb }, { 0x3a735592, 0x7bfbd054, 0x53cd9682, 0x19c5a153, 0xb5a1657a, 0x536c747c, 0x7b21dd1, 0xe6ea08ef, 0x51a5885f, 0x5e4689f1, 0x134f5ada, 0xd8241f97, 0xbf00d107, 0x61f6ed51, 0x33d6c9fe, - 0x3b06b36b, 0x0000c3, 00000000 + 0x3b06b36b, 0x0000c3 }, { 0xd4fe5197, 0x17a3eb85, 0xf7eabbdd, 0x36978ab5, 0xa68c42bf, 0xbec7dcdd, 0xe1a3afc6, 0xc044d0da, 0x978443a4, 0x4743098c, 0x67436270, 0xa83a4d19, 0xb48d9b29, 0xbafa2587, 0xb4051453, - 0x40446adf, 0x0001a1, 00000000 + 0x40446adf, 0x0001a1 } }, { @@ -78458,19 +78454,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x756ff649, 0xf4acf8, 0x976fa58e, 0x6a79dba2, 0x27744303, 0x32359757, 0xe3b640ec, 0xc6ded38a, 0x1f4d1a50, 0x8b888857, 0xf2a2fbea, 0x3d22c72f, 0xf6d38479, 0x4bc080f9, 0xa82c0796, - 0x3ad5d72f, 0x00011b, 00000000 + 0x3ad5d72f, 0x00011b }, { 0xa67bea5d, 0x71c54f0b, 0x9a492f81, 0xfbf6eaaa, 0xa55dcddc, 0x97270e94, 0xb76e29fd, 0x82d0b996, 0x634482bd, 0x54152994, 0x729b0709, 0x45cf0be1, 0x42a0c369, 0x41d2ff45, 0xff19148, - 0xaee1a070, 0x0001cd, 00000000 + 0xaee1a070, 0x0001cd }, { 0xa92340df, 0x53062d5d, 0xc4adf37e, 0x9ac59617, 0x6ec6db05, 0xe5874946, 0x2b90843, 0x8470935e, 0xb0c7a8f2, 0x2fab61e4, 0xcfa6605c, 0x9d86a13d, 0xca80f66c, 0xdd3843cc, 0xc591f3b7, - 0x7b0520a5, 0x00008a, 00000000 + 0x7b0520a5, 0x00008a } }, { @@ -78478,19 +78474,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x63e4f2e9, 0x56101aa1, 0x8544997c, 0xa1f46996, 0xf40438a0, 0x23614129, 0xbd33fb66, 0xb936865a, 0x330c5d1b, 0xcb0fb03f, 0x65a071ac, 0x9ab5ba3f, 0xdaac0c59, 0x7fdcae65, 0xcdb90e95, - 0xacdcccf8, 0x000149, 00000000 + 0xacdcccf8, 0x000149 }, { 0xa827f1f1, 0x523cb84, 0xb21330d0, 0xb17be2ba, 0x68b52a58, 0xff2f3779, 0x4a804c74, 0x8f3f2418, 0xffe1d4b3, 0x55ed25d9, 0xa9d61e74, 0x1514ffb9, 0x468329ee, 0xa938c30b, 0x6aa764b3, - 0x69024668, 0x000069, 00000000 + 0x69024668, 0x000069 }, { 0xa1a8ef7d, 0xd92dc798, 0x30d85345, 0x962c385, 0xbcb721f7, 0x8785d116, 0x34118a7e, 0x167465c4, 0x56b034b6, 0x2d0849f4, 0xb148b123, 0x41a5b3f3, 0xa2517e96, 0xee3ae595, 0x95094b7c, - 0x6d40d04, 0x00014f, 00000000 + 0x6d40d04, 0x00014f } }, { @@ -78498,19 +78494,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x13b8beed, 0x898a334d, 0xca4e0fbd, 0x605cc462, 0xcbea76cb, 0x8b6b2fc8, 0x72ef3436, 0xd714f1d8, 0x1fbdde88, 0x532a6d5a, 0xf0b9e868, 0xd39015a8, 0x674769b4, 0x38499b0d, 0x1777f551, - 0x433cb45a, 0x0001c0, 00000000 + 0x433cb45a, 0x0001c0 }, { 0x71daa793, 0x85320c60, 0xdc7bebd3, 0x2f06474a, 0xcc2036, 0x97f30be6, 0xa39c70f9, 0xebe5e507, 0x328f1a31, 0xab73e7ea, 0xbae989a4, 0xcab1509c, 0x6e83728f, 0x206e04ff, 0xd3c83e51, - 0xfeb8d7e3, 0x0000d4, 00000000 + 0xfeb8d7e3, 0x0000d4 }, { 0x88def0ca, 0xfb060dcc, 0xa8ef93f7, 0xd45bcaaa, 0x8f52f45b, 0x39193bd0, 0x8072cf87, 0xd700edc0, 0x165f6e1c, 0x1e651e98, 0x1d06723f, 0x8b314bd1, 0x437db272, 0xe3b0dc53, 0x8afff0ed, - 0x658b9e72, 0x0000f7, 00000000 + 0x658b9e72, 0x0000f7 } }, { @@ -78518,19 +78514,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xda5b398a, 0x36fa0340, 0xead54c7d, 0x842f3a7e, 0x6b2be3d8, 0xbdb868a7, 0x97fba2b8, 0xa033364f, 0x73aa5d75, 0x3a562092, 0xbb6fd526, 0x47f7ba44, 0xdf274431, 0xdeb36ba5, 0x7ab59fff, - 0xdbfb870b, 0x0001fc, 00000000 + 0xdbfb870b, 0x0001fc }, { 0x18daf57e, 0x6df9405e, 0xb6f9ce69, 0x4e61fe78, 0xabefc456, 0xa2961f2e, 0xb23917b2, 0x5bfeee23, 0xe148efab, 0x3a20a36, 0x6836bf4e, 0xb5c5257d, 0x19b62596, 0xbb12d190, 0x27185a24, - 0xee4ddec3, 0x0001b3, 00000000 + 0xee4ddec3, 0x0001b3 }, { 0xd37480b4, 0x416ff6ba, 0xa9c5fa2c, 0xabde2278, 0xdd64d08c, 0x7a538ba, 0xc14e4c6c, 0x476f8dab, 0xa796eb45, 0x4a35da62, 0xe90776bd, 0xe3f7e26, 0xde0bdfe9, 0xbe9c5f88, 0xcdb2e94f, - 0x6ec52be4, 0x0001c6, 00000000 + 0x6ec52be4, 0x0001c6 } }, { @@ -78538,19 +78534,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3ec2fd67, 0x4e77512f, 0x188b572f, 0x948eec05, 0xee002dd6, 0xbc57af62, 0x9f4383de, 0x1d32edc0, 0x334eacff, 0x699871bf, 0x507df4c3, 0xa974f6c9, 0xd6eceeb2, 0x47c60f2b, 0xe87e500d, - 0x66923887, 0x0001fe, 00000000 + 0x66923887, 0x0001fe }, { 0x2843a513, 0x9a210522, 0x8cd23cc6, 0xd61fd92e, 0xfee890ba, 0x6e8bb996, 0xcbe2108b, 0x53f0ff9f, 0x2f71b5b4, 0xced9278b, 0xcf55953f, 0x3f998a, 0x2ab1c242, 0x1af4654, 0x27b47876, - 0xd6c2fe51, 0x0000f6, 00000000 + 0xd6c2fe51, 0x0000f6 }, { 0x886e7b04, 0x1ef3a650, 0x3bf9741f, 0x5af37fb4, 0x7ef70bcf, 0x4f970600, 0x30f4e919, 0x87264ea0, 0xaf4c7c04, 0x81280c82, 0x84b3eced, 0xb32373a, 0x2611a7b4, 0xdf449dfb, 0x3823eeda, - 0x97dc6987, 0x0000f3, 00000000 + 0x97dc6987, 0x0000f3 } }, { @@ -78558,19 +78554,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe3c04931, 0x54590dfe, 0xdcb6ebf0, 0xd8151ba1, 0xe0fe6072, 0x7aa5e3d4, 0xe59156f, 0x3e88dd23, 0xde555781, 0xb251e747, 0x661f257a, 0x4fa7146d, 0x7c4c3de8, 0x590b1b84, 0x93e84ff4, - 0xf5c6f304, 0x0000fc, 00000000 + 0xf5c6f304, 0x0000fc }, { 0x4b82a06, 0x19d5611d, 0x33e81a5f, 0xd7703567, 0x6afedcfb, 0x6fafedfa, 0xc90d9628, 0x79c27fd2, 0x7fdedb2, 0xf8a0dc65, 0xf94a81d5, 0xa0f7a23a, 0x2f9d69f0, 0x1767aee7, 0xb27a1361, - 0xf13616a5, 0x00015d, 00000000 + 0xf13616a5, 0x00015d }, { 0xefb53a60, 0x5c1f9804, 0x1edf5570, 0x32f9265d, 0xf7819032, 0x96183393, 0xa85a8ee6, 0xca6df9f7, 0x3be1ec89, 0x18edb927, 0xf1fab0db, 0x809c5203, 0xb898d31, 0x71a22ad8, 0x73bbc1f1, - 0xc281c845, 0x000112, 00000000 + 0xc281c845, 0x000112 } }, { @@ -78578,19 +78574,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1039b1dc, 0x6cf54084, 0xfdc2ad60, 0x737c834a, 0x7ce6fff4, 0x5603feae, 0x6d72a674, 0x2d93b645, 0x41efa41a, 0x69f8bac2, 0x56de97be, 0xfd6d33bd, 0xeb29f211, 0x8ba11d25, 0x8eb28cdd, - 0xdcc74abf, 0x000175, 00000000 + 0xdcc74abf, 0x000175 }, { 0xfef1d08b, 0x4930372d, 0x15de7a41, 0x211eb15a, 0x8fedd85c, 0xbd702c37, 0x44c1cdd5, 0xb8433e20, 0x3504df1, 0x4bdd20b2, 0x6d3ec8f9, 0x93dd104, 0x92c2414b, 0x80949983, 0x92e97c28, - 0xea638cc4, 0x00014f, 00000000 + 0xea638cc4, 0x00014f }, { 0x2c95f92f, 0xf4ddb2ea, 0x815b0573, 0x44d73f7b, 0x89c7f9f8, 0xeeb0061c, 0x63bce662, 0xb706deca, 0x352bb98b, 0xabf5c324, 0xd43f2351, 0x4bd464bf, 0x246e7171, 0x839fc638, 0x975c9d68, - 0x36db8a1, 0x0001bd, 00000000 + 0x36db8a1, 0x0001bd } }, { @@ -78598,19 +78594,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xac818e57, 0xd0e71f67, 0x65386f8a, 0xa86c2f7e, 0xe3dc02ce, 0x8258722f, 0x4485418f, 0xa384764c, 0x1a232be7, 0xd5e89791, 0x99d54a11, 0xba633349, 0xcddecd37, 0x808fe6d, 0xe24e101d, - 0xb4ec3aa8, 0x0001d9, 00000000 + 0xb4ec3aa8, 0x0001d9 }, { 0x25a8b68d, 0x8cccd7e9, 0x62b9ea1f, 0xfa0e5c98, 0x511d9966, 0xe0f668e4, 0xb974a565, 0xd0a97c52, 0x6dab1b71, 0x95e82401, 0xcb6d297d, 0xfbf005ff, 0x476bc902, 0xf250b138, 0x1b436b14, - 0x134db9d6, 0x0000e7, 00000000 + 0x134db9d6, 0x0000e7 }, { 0x629a0eae, 0xbe881496, 0xdb4c1062, 0x8862d1cd, 0xe05bbdd5, 0x5e0c5553, 0xf64c2206, 0xd9c090d2, 0x16f03e17, 0x8572e396, 0x7a6f892, 0xc59f488b, 0x65a643cb, 0x1dbd6c7a, 0x33aa77ff, - 0x1fe4377d, 0x00017a, 00000000 + 0x1fe4377d, 0x00017a } }, { @@ -78618,19 +78614,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb881d616, 0xcb4b4a32, 0x56ae92a2, 0xea10ea72, 0x7de8f73a, 0xaf17ad7e, 0xa24acacf, 0x3fc1a95, 0xbbbc044, 0xa8c32cb4, 0xaa1968e1, 0xb4849473, 0x7d3c1afd, 0x515f25f5, 0xba63fce1, - 0x42cc436f, 0x000081, 00000000 + 0x42cc436f, 0x000081 }, { 0xc2a6ef85, 0xded73589, 0x35be0d5, 0x1cd9b884, 0x4468894c, 0xca1812d8, 0x15e587e5, 0xe81005a3, 0xfd2c367e, 0x825e6de3, 0x962fb069, 0x1e201c4f, 0xaf32b313, 0x28004483, 0x43c6c6b8, - 0x85c7b7f5, 00000000, 00000000 + 0x85c7b7f5, 00000000 }, { 0xbc657553, 0xd98330fd, 0x52005e6e, 0x8277969, 0x99879f7, 0xb43771e, 0x8e8bf24c, 0x7f7b1e1b, 0xc45684d7, 0x2c5f9365, 0xf51fc442, 0x1b359089, 0x34dc45ea, 0xcdebceea, 0x21c780ff, - 0x8c2ba302, 0x00007c, 00000000 + 0x8c2ba302, 0x00007c } }, { @@ -78638,19 +78634,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6a9be6ea, 0xf193f82b, 0x2ea9307c, 0x267fade5, 0xc9a01eb9, 0xd5099b74, 0xbaf92f10, 0x83e6a5a3, 0x75df07bb, 0x40987189, 0xc3f3376c, 0x1114cd9e, 0x63db8e3e, 0x9cf91723, 0x12b20e3d, - 0xd892be20, 0x000054, 00000000 + 0xd892be20, 0x000054 }, { 0x4068f46a, 0x1726d7a, 0xaa2c962b, 0x49ae276f, 0xc37a8903, 0xb293e92, 0xe8d6a805, 0x5ca6a41c, 0xf1714b00, 0x10a5b38a, 0xd763e543, 0x1225f11f, 0xeba54b4c, 0x57daa813, 0x3efbbaa2, - 0xd0feeccc, 0x0000b8, 00000000 + 0xd0feeccc, 0x0000b8 }, { 0xb28969e, 0xd7a9fbf7, 0x4e824f2c, 0xe4d6d10d, 0x72be5db0, 0xf3008a2, 0x8e56abeb, 0x98292360, 0xcccceefc, 0x7044f960, 0xfd309b6d, 0x6884f620, 0x8123c611, 0xf9c67708, 0x810cfda1, - 0x74a51567, 0x0000c5, 00000000 + 0x74a51567, 0x0000c5 } }, { @@ -78658,19 +78654,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x945abf50, 0x2c7c02ac, 0x3846cdd2, 0x8329ff4, 0xeb79319a, 0x587f45c6, 0x3bdbdbaa, 0x32f15347, 0xbd2f74cf, 0x7b3e85ba, 0xeee3fe2d, 0xcca447c4, 0xb6e83d94, 0x6ebdee9e, 0x9396163, - 0xc049ea14, 0x0000f8, 00000000 + 0xc049ea14, 0x0000f8 }, { 0x7f882d9, 0xddcd39c8, 0x6413841, 0xed1e3a6, 0x88ad2dd0, 0xf08b3782, 0x1e12c392, 0x5d252cf1, 0xb27e0a3e, 0xf8229ae2, 0xac712948, 0x9ac6b52a, 0x78f83fd7, 0x26830698, 0x367e9766, - 0xe9442d7b, 0x000095, 00000000 + 0xe9442d7b, 0x000095 }, { 0x70f6710e, 0x41c949d1, 0xb6771289, 0xcc629d6c, 0xd7189d6a, 0x318ab663, 0xa44071d, 0x14c073a3, 0x3f978220, 0x4954e160, 0xb1845efc, 0xe38457df, 0x293d9ded, 0x55c3dc5b, 0xb772c491, - 0x3715a52a, 0x00019c, 00000000 + 0x3715a52a, 0x00019c } }, { @@ -78678,19 +78674,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x39654ca3, 0x1dcd2d64, 0x178ed428, 0x1fc9499, 0xae59e67b, 0xcf476999, 0xc4a4328a, 0x73d38288, 0xadbad67d, 0x1977429e, 0xc9f14f9a, 0xc70078c4, 0xc443205, 0x1baa67ad, 0x7d0ee783, - 0xe604046e, 0x0001e7, 00000000 + 0xe604046e, 0x0001e7 }, { 0xf4d9e09f, 0x4d3c2eba, 0x66318e98, 0xa6c61181, 0x191e87cf, 0x18f63da6, 0x322acf7, 0x66ecc8f7, 0xbb38ed5d, 0xca29d30b, 0xf41a70ee, 0x32aac148, 0x69236c32, 0xe330f19f, 0x5b8a5ec4, - 0xd4371ef9, 0x0001d1, 00000000 + 0xd4371ef9, 0x0001d1 }, { 0x67de954b, 0xac61f9bb, 0x6e0c69c3, 0xfb80a57c, 0x3af3fea6, 0x1605a8f1, 0x44ae70e9, 0x47cbbf1e, 0xd97835ac, 0xf82316f3, 0xda9e1f43, 0x53e7d634, 0x2b802ca9, 0xbd899e6c, 0xf6d92ae6, - 0xee9166bb, 0x00009f, 00000000 + 0xee9166bb, 0x00009f } } }, @@ -78700,19 +78696,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x365d1245, 0x86b56395, 0xa55b9e00, 0xed2db34c, 0x62650d13, 0xb03ae3a4, 0x58be52f1, 0xe090bcf3, 0xd8e37492, 0x28254583, 0xba0537fd, 0x45edc441, 0x1e67b92e, 0xfe288707, 0xbd0392ce, - 0x10959ba, 0x000109, 00000000 + 0x10959ba, 0x000109 }, { 0x374d2bf0, 0x1ea1e6cb, 0xd87a524e, 0xe58e89c2, 0x92cefa28, 0x97fcab1e, 0xbdb80da2, 0xd268e530, 0x80724a94, 0x6c6a1e79, 0x2295d330, 0x8827f71d, 0xc3f679c9, 0xa891a0f3, 0x3bb569aa, - 0x90e1a2c2, 0x0001c4, 00000000 + 0x90e1a2c2, 0x0001c4 }, { 0x7dae5fe4, 0x2da537, 0x205e894, 0x9dba4833, 0x60d156ff, 0x83b3230c, 0x2a78ca9b, 0x6db2e705, 0x2e51824d, 0xb01751ed, 0x7b73fc1b, 0xee00e479, 0xda240bc7, 0x532bc932, 0x3680a169, - 0xe58b69c3, 0x0001fa, 00000000 + 0xe58b69c3, 0x0001fa } }, { @@ -78720,19 +78716,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xce02fd9b, 0xc894f76, 0x3f7c696d, 0x8113b097, 0x7ad69077, 0x332b0efe, 0xc246a94d, 0x1aa0e472, 0x5c5ab566, 0x12486125, 0xcd5dc204, 0xad2ccf9b, 0xd9cd287b, 0x768df24d, 0xb1c89ac4, - 0xeec8e535, 0x000086, 00000000 + 0xeec8e535, 0x000086 }, { 0xececa03b, 0xdfff5c3, 0xf75ff45e, 0x9a60343e, 0xb1df84b5, 0x14f6dd4e, 0x12575ece, 0x8e70f2c6, 0xb232cc6d, 0xb7fdc711, 0x51c1a606, 0x871c7f54, 0x1ca729f8, 0x19b1d508, 0xfd1102ee, - 0x3b515f6a, 0x000067, 00000000 + 0x3b515f6a, 0x000067 }, { 0xeed8aa55, 0xb43be9a4, 0xd8414f80, 0x9b1de4e6, 0x140968c, 0xc212d696, 0x4adaa8ed, 0x3fa519c2, 0xa2f7108b, 0x354ccab7, 0xdc0d0403, 0x234da105, 0x8dc3cd2f, 0xc3e60bda, 0xed137962, - 0x23db9339, 0x00006f, 00000000 + 0x23db9339, 0x00006f } }, { @@ -78740,19 +78736,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3169f883, 0x1d2c0f7e, 0xb1207238, 0xa937bc0, 0xa55dd264, 0xe1f21f16, 0xc56f8d52, 0xc3ae00e6, 0x931dd491, 0x55d40fab, 0x9050a0b6, 0x1fefcf3e, 0xc252558f, 0x51de78c8, 0x2d57ff9a, - 0xe823abbe, 0x0000f7, 00000000 + 0xe823abbe, 0x0000f7 }, { 0xbe353f9a, 0x86f13f7a, 0xfa435c0f, 0x4fea94d4, 0xd746a5c, 0x4dda891d, 0xa5046254, 0xbcf8b47b, 0xec86efd6, 0xb94f72d9, 0xe32afb80, 0xce3a4706, 0x2e032ee4, 0xabb70c01, 0x6c7ff182, - 0xf327a044, 0x00015a, 00000000 + 0xf327a044, 0x00015a }, { 0xa38276d5, 0xbc87cbc6, 0x8da61b7e, 0x37bc8051, 0x532d7bf5, 0xee2c91a2, 0x3adffb6d, 0x5653bb57, 0x55c5088b, 0xa115615d, 0xa20a2cfa, 0x3a1f9bf5, 0xc59ee0dc, 0xd11d31df, 0xa7a1ab5b, - 0x1a354af1, 0x000183, 00000000 + 0x1a354af1, 0x000183 } }, { @@ -78760,19 +78756,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe2a0c132, 0xc6d1beb4, 0xc3ed6d, 0x816b1947, 0xbe08fab, 0x1cfb72eb, 0xa49fb850, 0x9e3282e5, 0xd0f18d45, 0x730729e4, 0xd06c4378, 0xbb855442, 0xa4a0fc01, 0x114f8cdb, 0x340e5b5f, - 0x7f9015ee, 0x000065, 00000000 + 0x7f9015ee, 0x000065 }, { 0xe35aedb6, 0x783d7b53, 0x6d23dcfc, 0xf83baec8, 0x23a34821, 0x4cf9043e, 0x25ee4ae, 0x31fa1a2f, 0x60f4ddcd, 0x2232dcc8, 0x710bd77c, 0x32f76509, 0xfe9c0523, 0x6163bcc6, 0x7789f74f, - 0x46ffcad1, 0x00003b, 00000000 + 0x46ffcad1, 0x00003b }, { 0xbc50e8e, 0xf4488f15, 0x21545c94, 0xa620e6dd, 0x98223102, 0x8bbd45bd, 0x15a694ba, 0x2fe91152, 0x24d47f19, 0x612a4578, 0xb8368ae, 0x15da2122, 0x2e21db5d, 0x57223ae8, 0x8c7c75a3, - 0xc4885653, 0x0001a4, 00000000 + 0xc4885653, 0x0001a4 } }, { @@ -78780,19 +78776,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9f69ebe6, 0x5f39b619, 0x43c8c4c3, 0x2ae1acd1, 0x7e475dd7, 0x22ea3118, 0x92a90328, 0xbc9daf10, 0xf128c2d1, 0x8190744, 0xddfc91fa, 0x3df147b2, 0x13d0850e, 0x5d6b4359, 0x65cd0b2e, - 0x2749aed, 0x0000f1, 00000000 + 0x2749aed, 0x0000f1 }, { 0xf9c66383, 0x1ac8eab9, 0xf90bd771, 0x1024db70, 0xce5fd3d1, 0xabd8ed7c, 0xf08fb492, 0x11b61dec, 0xf1f6b57f, 0x7383efa, 0xd3b07724, 0x4c234f6a, 0x3e958e39, 0xe63b74bb, 0x30d9e191, - 0xa4643aa6, 0x0001fc, 00000000 + 0xa4643aa6, 0x0001fc }, { 0x3f283df5, 0x9044b5c1, 0x544f9ea5, 0xd2ac92f9, 0xb9f381e1, 0x87872d68, 0xae079c6c, 0x4f24c759, 0xaf16e1e8, 0x79ef7502, 0x40ebc9cf, 0xa52cefbb, 0x934b86e0, 0x2bc1a226, 0xe1be237, - 0x7e1fed4e, 0x00012c, 00000000 + 0x7e1fed4e, 0x00012c } }, { @@ -78800,19 +78796,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4d41686a, 0x61737abe, 0xc46a61d0, 0x9955b0ba, 0x3ac7e6ea, 0xc9411ea9, 0x661f23aa, 0xbdbbffea, 0x2c149262, 0x55bc9f8, 0x8a71d85e, 0xb85d6e40, 0x83de5abc, 0x3855fdb6, 0x520dec9, - 0xea755df7, 0x000010, 00000000 + 0xea755df7, 0x000010 }, { 0xe810c258, 0xe5adfdb6, 0x7737288d, 0xc59a9f5b, 0xd9d3fd81, 0xeb94dba8, 0x80ad94c9, 0xb5496522, 0x6082e94a, 0xd651047a, 0x26de5898, 0x82638499, 0x7fc43364, 0x953bbf52, 0x2bec2b12, - 0x9913326a, 0x00009d, 00000000 + 0x9913326a, 0x00009d }, { 0x46d969c2, 0xa1c8a740, 0x705d52af, 0x592254e9, 0xfb3ffdcb, 0xe596f4c3, 0x55c6a996, 0x6d414da4, 0x02c34e, 0x4bab386e, 0x15d249e3, 0xb228f64a, 0xd436f631, 0x1cad8252, 0xe50ac5cb, - 0x6f324845, 0x000176, 00000000 + 0x6f324845, 0x000176 } }, { @@ -78820,19 +78816,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4c8a9e87, 0x42ba0e0e, 0x2c2d0a70, 0xe70aec2, 0x140ac28e, 0x20a5ebff, 0xf2e8ca02, 0xfc0d06fa, 0x26f371ae, 0x23ab02a, 0xdff0902d, 0xae778b56, 0x3bd87e52, 0xc41a4a2f, 0xa80226c0, - 0xdb655ad1, 0x0001f6, 00000000 + 0xdb655ad1, 0x0001f6 }, { 0x3bf6ffb2, 0xa091c474, 0xa4558b5a, 0xc2e398fd, 0xe0d66bdc, 0x8f1d0e8b, 0x5117d67d, 0xf1cea23f, 0x260eb5b3, 0xe39fe6da, 0x618f6d83, 0xe9153d86, 0x33fbd86c, 0xbf654f62, 0xf7058dbe, - 0x452a3251, 0x000025, 00000000 + 0x452a3251, 0x000025 }, { 0x1e34d860, 0x7c739768, 0x722caedf, 0x81433f8f, 0x9baa6041, 0xb8e6f120, 0x9569d4fd, 0xd61ba1b8, 0x2cbaf70e, 0x81db7eeb, 0x2c1668ad, 0x4e806066, 0x5c56624e, 0xe09f83f4, 0x59d4cdfa, - 0x8ccb3aca, 0x00014c, 00000000 + 0x8ccb3aca, 0x00014c } }, { @@ -78840,19 +78836,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xed32a9df, 0x16073c3b, 0x102a5e3a, 0x365b0340, 0xc492349, 0xc9b0d13e, 0xb46b4a7, 0xbdc70c5c, 0x12e23a38, 0x54c08e61, 0x1fd4db24, 0x9dd68c97, 0x5e8aecd0, 0x9f36a25b, 0xd09f4d87, - 0x11250d68, 0x000071, 00000000 + 0x11250d68, 0x000071 }, { 0xe2fa358e, 0x9fbb66ef, 0xf7f14fbd, 0x943c1536, 0x1882b130, 0xbf2c7b1f, 0xbc4cef19, 0xd7cc259f, 0x9b8eb4f1, 0x158ec939, 0x98619c3b, 0x75b7e802, 0x590b9f65, 0xc099c6dd, 0xf720eed1, - 0x82ddbbfb, 0x000135, 00000000 + 0x82ddbbfb, 0x000135 }, { 0xf932cbf7, 0xed047084, 0xfef37d6, 0xfa0172e0, 0x8c8dcb2b, 0x6ef8c5a3, 0xd94512e2, 0xef4fcaec, 0x2480d851, 0xf6149bf6, 0x909943ff, 0xa29e7299, 0xf6ead631, 0xe3f83005, 0xed378cc6, - 0x2f62c6f5, 0x000140, 00000000 + 0x2f62c6f5, 0x000140 } }, { @@ -78860,19 +78856,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdc9a3730, 0x775494cb, 0xae7a66d5, 0x772172d4, 0x3c6d3867, 0x389e18e6, 0x531e86fe, 0x5ea1ecea, 0xa92c45bb, 0x511333fe, 0x7e257820, 0x379115d4, 0x19b5c4f7, 0x2b570f60, 0xf656f06a, - 0x68d31619, 0x000100, 00000000 + 0x68d31619, 0x000100 }, { 0xb91be6b5, 0x2d3e337b, 0xe2a53522, 0x61820e99, 0x38e8993, 0xd627cf09, 0xc3b24ccd, 0x392afb1c, 0x7393e585, 0x80e77a3e, 0x2970f972, 0x533d6337, 0x334d6e23, 0x84011330, 0xde2a535b, - 0x66e587e0, 0x0001cf, 00000000 + 0x66e587e0, 0x0001cf }, { 0x371e78f9, 0xb03f8963, 0x674eef15, 0xb687c665, 0xa34e049a, 0xce7cf89a, 0x7116b511, 0xedb7a00d, 0xecd08c18, 0xbd1c54b0, 0xa8b7db11, 0x393b3a99, 0xa3f3849e, 0xc719a91b, 0xbb2eef43, - 0x69bbc4ac, 0x0001f2, 00000000 + 0x69bbc4ac, 0x0001f2 } }, { @@ -78880,19 +78876,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1f3f112c, 0x5eb40b9e, 0x19c3398e, 0xfa9ec574, 0x4b16b60f, 0xbe7ff4a3, 0xea372471, 0xb8b41326, 0x7ee07ce9, 0x3146fe2a, 0x648cc73b, 0xe4e2cf04, 0x81dfadaa, 0xc232e29, 0x2f6de020, - 0xb17d5d0, 0x0000ba, 00000000 + 0xb17d5d0, 0x0000ba }, { 0xdd96ab20, 0x6fbbde18, 0xfd233f18, 0xc20f7514, 0x60787bb0, 0xa1dfdfbb, 0xef09bed9, 0xee1576e5, 0xf475de74, 0x57356247, 0xc5da4f6, 0xb2e7a3a7, 0x9e237bf6, 0xdb7d2a0b, 0x1cdce0b4, - 0xd84a31de, 0x000083, 00000000 + 0xd84a31de, 0x000083 }, { 0xe041dad6, 0xe64483d8, 0x8040376c, 0x8a190eb, 0x6707c9e0, 0x8fa31398, 0x2230312a, 0x79006d6e, 0x4421b312, 0x71a67550, 0x818eccca, 0xde0320fe, 0x9922b524, 0xf9e126c2, 0x7d9d22cd, - 0x21ef17be, 0x00014e, 00000000 + 0x21ef17be, 0x00014e } }, { @@ -78900,19 +78896,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe3a1db42, 0xabe3535a, 0xe6c64f45, 0x444af157, 0xa86a841d, 0x80a5ca14, 0x7165bb6e, 0x5958f0fb, 0x7bfa53eb, 0x1c5a1175, 0x443cead, 0xf3a1a139, 0xec1844d4, 0xfa84d176, 0x4b9ff9c0, - 0xbc3617a4, 0x0000fa, 00000000 + 0xbc3617a4, 0x0000fa }, { 0x5a4bcf69, 0x4fd4cfc8, 0xa59cafc7, 0x318b4cbc, 0x884eb1ae, 0xbe480e1f, 0x5b21cc9d, 0xb9a3731e, 0x1358b5f8, 0x3bbffed1, 0xf5959448, 0x503e6532, 0x4cf46977, 0xa8041046, 0xfd4f1cfe, - 0x84fd75c5, 0x000007, 00000000 + 0x84fd75c5, 0x000007 }, { 0xf0d70d24, 0x5f5bf74d, 0x2698323a, 0x94757053, 0xb640b9ee, 0xd4e1f10, 0xcf538398, 0xc9631c84, 0x713cee66, 0x3b0e36a5, 0xb6cddeac, 0x5da59d64, 0xe57a90a7, 0xe45f547c, 0xd46c5086, - 0x7d8f4a0f, 0x000062, 00000000 + 0x7d8f4a0f, 0x000062 } }, { @@ -78920,19 +78916,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xae302e8e, 0x8a4d4289, 0x365d0e29, 0x6a56b7a4, 0x287aa3b7, 0x9cc14f2b, 0xb66bda1f, 0x2953da15, 0x5c72eb19, 0x89616c9, 0x434dd46, 0x2668111d, 0xfea25751, 0x3accc1f4, 0x20d2aff7, - 0xc6eac056, 0x000182, 00000000 + 0xc6eac056, 0x000182 }, { 0x4d1a97c8, 0x93e1b80b, 0x42b603a2, 0xf139c44b, 0xe1abfeec, 0xb323da07, 0x2a1e5b34, 0xa6e6429, 0xfebdb8cd, 0x335e8d7, 0x4cb95249, 0x5915938f, 0xe3467571, 0x2d1a0c91, 0xa8fbacc6, - 0xa4a27105, 0x0001b3, 00000000 + 0xa4a27105, 0x0001b3 }, { 0xe72de22f, 0x48fc9afc, 0x76aba91, 0x88e7bc70, 0xf67c7ac8, 0x5482ebe0, 0xa72f913a, 0xac08ea10, 0x74af2e59, 0x502e3e33, 0x719067a7, 0x45de75b1, 0x918490, 0xff61f5d6, 0x1608b6f8, - 0x8499b529, 0x0000e1, 00000000 + 0x8499b529, 0x0000e1 } }, { @@ -78940,19 +78936,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3cd981ef, 0x93c53313, 0xef898ce0, 0xf1b44c30, 0xfc4528ad, 0xca75c05a, 0xd737bd37, 0x4a987322, 0x9b5d256c, 0x4db8d4c0, 0x75b08a14, 0xbe294ee9, 0x66293c01, 0x6b1c195d, 0x5bd15c68, - 0x895188c3, 0x00002a, 00000000 + 0x895188c3, 0x00002a }, { 0xb2205ae5, 0x6202ee48, 0xf620f571, 0x41b12712, 0x424facbe, 0xa041cbb8, 0xb71ccd94, 0x23f6311e, 0x258454f0, 0x7e8085a1, 0x58c275a2, 0x377df41f, 0x5e53b4fc, 0x471d3719, 0xcf6affd6, - 0xe451f59f, 0x0000e5, 00000000 + 0xe451f59f, 0x0000e5 }, { 0xc2312b48, 0xacff466e, 0xf60b1db5, 0xc23cb382, 0xe9edf148, 0xea1e2236, 0xb1f0b33b, 0x3a21e17d, 0x130d32aa, 0x6526d398, 0x8a33f64c, 0xb3a0b538, 0x689f6c17, 0x62030757, 0x6ba2ad33, - 0x2b6b9c59, 0x000106, 00000000 + 0x2b6b9c59, 0x000106 } }, { @@ -78960,19 +78956,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x44917515, 0xfd697462, 0x6f9e407e, 0x54efb34a, 0x98ed95c3, 0x41591768, 0x7d88e544, 0xdc048719, 0xdbfa95b9, 0xa44b02c0, 0xd8f4c4cc, 0x6fcb94e5, 0x78a42a38, 0x5cb583cb, 0x630a474c, - 0xed1ff58e, 0x00011e, 00000000 + 0xed1ff58e, 0x00011e }, { 0x94fd5547, 0x4ec942d2, 0x5b520793, 0x717f0504, 0xc3193fb0, 0xa3d18d5f, 0xaeaa1e52, 0xc1297a23, 0xcadbc865, 0xd12b682c, 0x15996280, 0x448b9c1b, 0x43009e5e, 0x2aeb486, 0x2c3320e9, - 0xb21b9ec0, 0x0001af, 00000000 + 0xb21b9ec0, 0x0001af }, { 0x93020a57, 0x187450d9, 0xeaa0192e, 0xccb62452, 0x4ef808a8, 0x8e01983a, 0x41599992, 0xb481f50a, 0x53b1eedb, 0xd0c34aec, 0x112b7d00, 0x6a654d3a, 0x6e3b7022, 0x17c9723f, 0x47c544ad, - 0x124f386b, 0x000184, 00000000 + 0x124f386b, 0x000184 } }, { @@ -78980,19 +78976,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeeee4692, 0x3b4f56af, 0xebc33d2f, 0x24e8756e, 0x9e507972, 0x823940cd, 0x602bad84, 0x718d5ba6, 0x8c80b28, 0xfcb9202f, 0x11bb7afd, 0x3bd50b3e, 0x5baeee7c, 0xdc38402b, 0xfd9e229e, - 0x197f49c5, 0x000040, 00000000 + 0x197f49c5, 0x000040 }, { 0x58376e9c, 0x46e63f51, 0x7afb9883, 0x993000a3, 0x7d84850c, 0xb08a18fd, 0xb18f943b, 0xea0d7452, 0x368899d3, 0x8018d209, 0xaca0a8c8, 0x71edb200, 0xa4c97c57, 0x10de21, 0xfdc0409f, - 0xdfb310ef, 0x0001fd, 00000000 + 0xdfb310ef, 0x0001fd }, { 0x95ae96b, 0x7eff6f70, 0x75f6dfb0, 0x1d89ae4d, 0x7abb5c6c, 0xea79b69f, 0x960863a7, 0xf9808d91, 0xb0b2c9c9, 0xd1c13050, 0xc3d1300, 0x9ea05801, 0x99123a8f, 0x243a6892, 0x70c7d792, - 0xa6f34ce, 0x000061, 00000000 + 0xa6f34ce, 0x000061 } } }, @@ -79002,19 +78998,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdddfa434, 0xb591b27f, 0x3e28f8c, 0xbe368ec0, 0x92d57a7a, 0xfa433bb7, 0x3f0fa736, 0xcfd7d57, 0x8ca48f33, 0x4bc735f1, 0x6388d87, 0x4c427fcf, 0x56e1bafd, 0x56198a3e, 0x2c0be599, - 0xb4dcabd1, 0x0001f5, 00000000 + 0xb4dcabd1, 0x0001f5 }, { 0xb0e1dd09, 0xf0c4833a, 0x3b3ddfa3, 0xc590f2d8, 0x716da5e7, 0xd8c1d9fd, 0x372d9550, 0x7c4d9051, 0x8092c734, 0x50ec1ea3, 0x5637b790, 0x2cfa7fb7, 0x1351e6b, 0x7b090379, 0x83ebec40, - 0xe55df45a, 0x0001b7, 00000000 + 0xe55df45a, 0x0001b7 }, { 0x1d9b7026, 0xab45ac21, 0xed90eb2d, 0x1dde941c, 0x5bc0d809, 0xe6fb2f6b, 0xf5c24655, 0x9594a99c, 0x52f8070e, 0xb280d8f7, 0xd16548d, 0xa6995d71, 0x9e4f5c3a, 0x1380d346, 0x572a9983, - 0xcada2078, 0x0001d6, 00000000 + 0xcada2078, 0x0001d6 } }, { @@ -79022,19 +79018,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4b948637, 0xcf2b0fdb, 0x674778e5, 0xcc551705, 0x8a295563, 0x3147fee5, 0x99e287e, 0xb34812f2, 0xbf8f56c0, 0x6e31f6b8, 0x90d3eaa6, 0x84bb66e4, 0x5018f279, 0x78b57f17, 0x96ae4303, - 0xfe519e5d, 0x0001d3, 00000000 + 0xfe519e5d, 0x0001d3 }, { 0x67e8c0f7, 0x16200fcc, 0xb69c758a, 0xc51481b, 0x2add6798, 0x7d1f1a73, 0x6a87fdd9, 0x7a3f4daf, 0xffbf709e, 0x1d95b474, 0x338532f1, 0x1c0a5fbf, 0x3a922a76, 0xdf4186df, 0xbfb9fb1d, - 0xde897343, 0x0000f0, 00000000 + 0xde897343, 0x0000f0 }, { 0x1fb87a91, 0x7a04e8c7, 0x9318a5f5, 0x7f0f0e1e, 0xf9122d55, 0x1fc7930b, 0x2d2c904a, 0xcde91e79, 0xb70a458f, 0x9005aef3, 0x5c8aef44, 0x28baaded, 0xe06497c3, 0xe73f8127, 0x9cbe617, - 0x6e66ee3, 0x0001aa, 00000000 + 0x6e66ee3, 0x0001aa } }, { @@ -79042,19 +79038,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7cb20d1e, 0x88559507, 0x6f075cfe, 0xe78d3c81, 0x212f82aa, 0xe838bda0, 0x115b0d5e, 0x289c5d53, 0xddacae68, 0x6dd44ebf, 0xaeff6731, 0x569af48, 0xcb159fc9, 0x88bc2d45, 0x295d072e, - 0x17b213ca, 0x0000ec, 00000000 + 0x17b213ca, 0x0000ec }, { 0x95e9d13a, 0xb87942f8, 0x28b83a17, 0x135196c6, 0x22b87bae, 0x5ee18f65, 0x91591d4d, 0xaadfb25b, 0x9c03737a, 0x22f0e9f8, 0xb84eaf25, 0x85f24903, 0x13865ee1, 0xff6e5529, 0x62525fed, - 0x19e320c6, 0x00005a, 00000000 + 0x19e320c6, 0x00005a }, { 0x493fc026, 0xb6fb4265, 0x7bcacf14, 0x6bec59a0, 0x8df5cb56, 0xec5fa883, 0xeab08ea7, 0x7a86b034, 0xea6b7655, 0xb158c4cc, 0x4747ae15, 0x23d18eb7, 0xaff86a38, 0x89e7daad, 0x83b013ed, - 0xacb8083e, 0x0000e8, 00000000 + 0xacb8083e, 0x0000e8 } }, { @@ -79062,19 +79058,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8fa43d75, 0xc8ab5c16, 0xe53e1944, 0xf526695e, 0x9997b0c6, 0x7950a41e, 0xf50b5110, 0x3d6b85ac, 0x54c80564, 0x22fbce8b, 0x5c5ea5f2, 0x324051be, 0x2d189442, 0xbff6a1e9, 0x4476bb10, - 0xcb415a6a, 0x0001b0, 00000000 + 0xcb415a6a, 0x0001b0 }, { 0x597cd2e3, 0x512fb8b7, 0xf035cc84, 0xe8867d1c, 0x143d40ec, 0xb87001f4, 0xc2731b76, 0xad262ee, 0xa5c61d3e, 0x1a94b4ec, 0xbc911abe, 0x2b543404, 0xdb614cb7, 0xca5e1ede, 0x7f7ccda1, - 0x91613b2d, 0x000123, 00000000 + 0x91613b2d, 0x000123 }, { 0xc95107d5, 0xaf201b9a, 0x29158e6c, 0x39791fdf, 0x90a71afc, 0x9cd29304, 0xa5b29bba, 0xef39d0af, 0xb887c721, 0x63be0733, 0xdddbb4b0, 0xd7b5b35, 0x93e7bda6, 0x31c76e41, 0x3e046bfe, - 0xaa7528bc, 0x000017, 00000000 + 0xaa7528bc, 0x000017 } }, { @@ -79082,19 +79078,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x73451671, 0x4ebc0d1c, 0xa06906a3, 0xc3dd1c3a, 0x788b9953, 0x56b81826, 0x6ba271bc, 0x3011667e, 0xbfdac3a0, 0xc6e3e579, 0x289419b7, 0x2c0f477a, 0xb86814b0, 0x840d501f, 0x96e1ab8c, - 0x4dc62c2b, 0x0000a4, 00000000 + 0x4dc62c2b, 0x0000a4 }, { 0x2527370d, 0xe46d726f, 0x98500c0c, 0x2770bc5d, 0xd2bf04fd, 0x353d8f0a, 0x9e836397, 0x69c222b3, 0x1424153d, 0xdfa07ace, 0x2eee549d, 0x64518250, 0x9aab97b0, 0x29a4259a, 0x95623abe, - 0xa3cd706c, 0x00002d, 00000000 + 0xa3cd706c, 0x00002d }, { 0x356906e8, 0x73c2fd8e, 0x6b11acd6, 0x8545c230, 0x7884bae1, 0xfbece522, 0x80873983, 0x3efcd8d8, 0x9f5f3377, 0x45650ecb, 0xa9409190, 0xc52d3f45, 0x398d73ad, 0x5630ecb4, 0xbdb097d, - 0x7104c40d, 0x0000cb, 00000000 + 0x7104c40d, 0x0000cb } }, { @@ -79102,19 +79098,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe7896626, 0xa2ca2ce4, 0xec29c24a, 0x59bff2c6, 0xbfde9e92, 0x6fccc8a, 0x5d373a6d, 0xab8bdc10, 0x6ae202dc, 0x96052004, 0xe410e15b, 0xa37fab06, 0xd0295c12, 0xf5da3d7c, 0x8a75b9d2, - 0xd498cca0, 0x000175, 00000000 + 0xd498cca0, 0x000175 }, { 0x34604405, 0x3f0c17f1, 0xbbc76627, 0xefde344b, 0xfa00f3c3, 0xfc4587e2, 0x7d47f3f5, 0x52dce97c, 0x803bba9f, 0x85b5cfe2, 0x9de8278d, 0x212ef822, 0x61098acb, 0x5007d251, 0x183dcabe, - 0xc0c3d503, 0x0000b5, 00000000 + 0xc0c3d503, 0x0000b5 }, { 0x1d676fe7, 0x40d4a5fc, 0xb5d9b008, 0xe5cfd851, 0x7f10e376, 0xd7252a85, 0xfafa68c1, 0xac752674, 0x6384f55f, 0xb4edba35, 0x2037a979, 0x18bed9c6, 0xaa12ea28, 0x707236f3, 0xf67cd3fc, - 0x7b821360, 0x0000b8, 00000000 + 0x7b821360, 0x0000b8 } }, { @@ -79122,19 +79118,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7c819c07, 0x4b8be802, 0xe3f18017, 0xaec82ef8, 0xccb2b651, 0x85f1d7e, 0xbb59e013, 0x601376a, 0xe1f6df3f, 0xb58ad71a, 0xa06ac257, 0x30c1d9e7, 0x7e8d77ee, 0xd8833949, 0x85963f03, - 0x612c9b6c, 0x000077, 00000000 + 0x612c9b6c, 0x000077 }, { 0x6dd4b2d1, 0x2a3d597d, 0x4401721, 0x16d1efad, 0x61e01205, 0xf65c8e77, 0xbd953021, 0xb569cc5f, 0x84b86b42, 0xb8dfa4a3, 0x5e10d260, 0xf24c7b2, 0x4ea040d6, 0xa1abd1ef, 0x298fce47, - 0x5bce1305, 0x000104, 00000000 + 0x5bce1305, 0x000104 }, { 0x165a751d, 0x992a67ba, 0x9e2e9ae, 0xa0ee7e, 0xc7c1e548, 0x16315b8f, 0xb3cff80f, 0x253cef1, 0xc01f793e, 0x2fe5cd69, 0xf7ecf2c9, 0xaff281c, 0x9e63cedf, 0xd778214b, 0xc276773, - 0xa2f9e2a4, 0x000144, 00000000 + 0xa2f9e2a4, 0x000144 } }, { @@ -79142,19 +79138,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf7c685ed, 0xa4954d59, 0xc7227041, 0x9babbcc3, 0x5211a8d0, 0xe97b2221, 0xe7f05c82, 0xabed71b6, 0x8d53de1a, 0xd0a4df8e, 0x1cab7a8f, 0xa3f2f460, 0xa9dd6fa5, 0x62609e8, 0x5c02f094, - 0xc055533a, 0x00006d, 00000000 + 0xc055533a, 0x00006d }, { 0xcb6da233, 0x89568f3, 0xceb9346f, 0xbfe8b234, 0xd0b98cb6, 0x28c8dd42, 0x349434fe, 0xf6ffdd0c, 0x9ea73cc9, 0x32026336, 0x39d2befa, 0x5a349a40, 0xaaf5588a, 0x4d56eb0, 0x62a964e8, - 0xa680be9c, 0x0001b1, 00000000 + 0xa680be9c, 0x0001b1 }, { 0x578727e0, 0x480ee6b3, 0x27ac80ab, 0x3a81a065, 0xdecb3f3a, 0x3c636b2f, 0x549d15ec, 0xcf125aae, 0x70367950, 0xb1cffb2, 0xd8622fdd, 0x9b413026, 0x83e30a91, 0x582428c9, 0xbdb5658a, - 0x69c5a70b, 0x00010c, 00000000 + 0x69c5a70b, 0x00010c } }, { @@ -79162,19 +79158,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbf168222, 0x57e77b0c, 0x28e3f46b, 0x51bcea29, 0x12c07649, 0x283681f6, 0xebd8a6dc, 0x34c4dcda, 0xf5a52c12, 0x1338d928, 0x910e526e, 0xf1888800, 0x6a9be978, 0xe68c407f, 0x9666e12b, - 0x7bf8c43e, 0x000161, 00000000 + 0x7bf8c43e, 0x000161 }, { 0xbcd42314, 0x633a26da, 0x14d46387, 0x734b5fac, 0xfd576f7b, 0x64d80263, 0x6d6024e3, 0x9667f376, 0x2ba3d627, 0xa672ee54, 0x17b5f745, 0x9035151b, 0xa8c7b075, 0xa2a3cce, 0x73396ee5, - 0x3519a492, 0x000166, 00000000 + 0x3519a492, 0x000166 }, { 0x314c7549, 0xe6ff4a58, 0x29152866, 0x1a22c9e0, 0xe0a23555, 0xd5f44fff, 0x93561181, 0x280e02e3, 0x3f92829a, 0x94a81d8, 0x742d6004, 0x6d3fcb0f, 0x30d081e9, 0x35e1cd95, 0x23ecb35a, - 0x64576a38, 0x0001cb, 00000000 + 0x64576a38, 0x0001cb } }, { @@ -79182,19 +79178,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x58b60042, 0x8f4305d5, 0xe304a477, 0xa136e0ab, 0xb612ec7b, 0xca7fc58a, 0x135473b7, 0xd2d7e820, 0x6108ef4, 0xc6fc03d8, 0xac28b886, 0xb0b22d22, 0xea7c991f, 0xcdbd5154, 0xe5b0fe0, - 0x3692359, 0x0000cb, 00000000 + 0x3692359, 0x0000cb }, { 0x78f04a74, 0xed642563, 0x21b319f5, 0x326dcb8, 0x4888df36, 0x13b97051, 0xd31fa675, 0xd92f83dd, 0xff79fdfe, 0x5599ea24, 0x7c3562cb, 0x2abcba44, 0x4ce1b70a, 0xeafba9b4, 0x44ed9f1f, - 0xa78f52bb, 0x00005f, 00000000 + 0xa78f52bb, 0x00005f }, { 0xe960877c, 0x8b53892f, 0x6723adc8, 0xb3792a1d, 0xd91d39e4, 0x33eff86a, 0xc5759791, 0x22574611, 0xc634a3b5, 0xa89a736, 0x5851b951, 0x2f61bbe, 0xf08a77ea, 0xaa80ff00, 0xf1c07769, - 0x10e23c07, 0x000084, 00000000 + 0x10e23c07, 0x000084 } }, { @@ -79202,19 +79198,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb2759e2a, 0xb8f4a3f9, 0x1dad14dc, 0xf5af8342, 0xa5e53daa, 0xde43980e, 0xd33f2b9, 0xa2d28fed, 0x9b510844, 0x456f152, 0xd5a20312, 0x79167daa, 0x26111d3, 0xf8636e72, 0x8408deb6, - 0x337974f3, 0x00006a, 00000000 + 0x337974f3, 0x00006a }, { 0x2667acaf, 0x8039943a, 0xe7f7708c, 0x7b07819a, 0x69e4393e, 0x954a8e48, 0xaabc05bd, 0xae80b4a7, 0xf0404800, 0xe9e897b9, 0xcbbfc680, 0x8d618927, 0xf6beba1f, 0x57d810da, 0x6857afaf, - 0x67a51d0f, 0x000003, 00000000 + 0x67a51d0f, 0x000003 }, { 0x44ca8d63, 0xf4b3bb45, 0x6f9b5e5b, 0x687e0276, 0x2fbce2ce, 0x8a9e092c, 0xa6bc38db, 0x5f2431f, 0x3836c5a4, 0x33549a60, 0x920fa4a8, 0x4804261c, 0xa34ca16d, 0xa9e1af8, 0x8a11772a, - 0xcdc8993, 0x000130, 00000000 + 0xcdc8993, 0x000130 } }, { @@ -79222,19 +79218,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb5e71de5, 0xb0777580, 0x8fe0344a, 0xaca1bd3b, 0x5483bbb, 0xfe5b4407, 0xda675d2d, 0x191e09f5, 0xdd94ceb5, 0x3dbe9fb2, 0x7969f7e, 0xf7c94b5d, 0x1a17115d, 0xca924b75, 0x3f3282b8, - 0xadcf0b37, 0x000031, 00000000 + 0xadcf0b37, 0x000031 }, { 0x63a96fa3, 0xeaeb6d26, 0x7d49f771, 0x457cb358, 0xaed1d009, 0x46fdfd49, 0xf981147d, 0x8f652fd3, 0x588ed4cb, 0x2d1b2068, 0xe52d4d9c, 0xb21d9263, 0xde5ed616, 0x40e86e54, 0x6f12639, - 0xc1ba4d74, 0x00016c, 00000000 + 0xc1ba4d74, 0x00016c }, { 0x97ce2fe0, 0x45a24ad6, 0xdd673609, 0x614bef3e, 0x15e8b254, 0x5569c349, 0x6dbbd86a, 0xfe5fa55b, 0xa4fe1307, 0x45918155, 0x249e08a, 0x4e5106d0, 0x4c0fe751, 0xbdbd6bba, 0x2109559d, - 0xb1ef4c1a, 0x0001bf, 00000000 + 0xb1ef4c1a, 0x0001bf } }, { @@ -79242,19 +79238,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x40e9475d, 0xa4fff0ff, 0x8b0083e3, 0x5b8845b1, 0x992ca6f7, 0x82d883ac, 0x8f90d876, 0xab0fee7, 0x95bdae3f, 0x700e6f75, 0x432377e, 0x917252eb, 0x65fe3416, 0xbdb9019a, 0x38701e75, - 0xe7b71eab, 0x000027, 00000000 + 0xe7b71eab, 0x000027 }, { 0x5268d336, 0xecc37c6e, 0x2e0caf13, 0xc43129a2, 0xbb6867d4, 0xa055e7f8, 0x1158e255, 0x9cbcdbcc, 0x17d4c5d6, 0xb0ae65a6, 0x7a7af6e7, 0xd5320037, 0xdd0321ad, 0xa1067bf9, 0x5cd7b194, - 0x9d0fe715, 0x0000dc, 00000000 + 0x9d0fe715, 0x0000dc }, { 0x8cd0607d, 0x70cede4c, 0x193a223c, 0x1f8dea3b, 0x42ffddb6, 0xe6478de8, 0xb52605be, 0x119498e2, 0xd993a061, 0x8fbdf21b, 0x926a6a59, 0xd7a6e128, 0x8106dde8, 0x9238e06a, 0xdc50681, - 0x48d81292, 0x000003, 00000000 + 0x48d81292, 0x000003 } }, { @@ -79262,19 +79258,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xeb7c4922, 0xa341c887, 0xd563a865, 0x3eafe3e1, 0xdbcc8756, 0x1016f73, 0x634585a9, 0xd0dcac45, 0x34e1299d, 0x2a2e54b7, 0x3c6f4e07, 0x31149f31, 0x2cc77569, 0x8ea23281, 0x1725835e, - 0xed842bc8, 0x000051, 00000000 + 0xed842bc8, 0x000051 }, { 0x832fe37a, 0xee7f783a, 0x6f0b0baa, 0x472750c0, 0x65a0ed86, 0xc3ec7537, 0x75196d2c, 0x915dca61, 0x310169dc, 0x31b97301, 0xc7b1370b, 0xa92ca7f1, 0x2e9e7d0a, 0x4188040e, 0xc949bca2, - 0x152bf86, 0x000018, 00000000 + 0x152bf86, 0x000018 }, { 0xb88e0a59, 0x3cf1681e, 0xc563ac35, 0x3d64cf49, 0x2fb0a848, 0x2e43a4c0, 0x519c4388, 0xc62a5f3a, 0xe216d6fa, 0x21e95b2a, 0xba6e1c5, 0xe8eea457, 0xce9867bf, 0xbf9ba35d, 0x56483fca, - 0x4638a0f9, 0x000056, 00000000 + 0x4638a0f9, 0x000056 } }, { @@ -79282,19 +79278,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9d51c7a2, 0x486e495e, 0xcff9505a, 0xf9ca9da3, 0x924ffed6, 0x9c2b4bac, 0x8d65b761, 0x4798af5a, 0xa2ebedde, 0x7bad1420, 0x5a980b06, 0x52fb1695, 0xbf931984, 0xf32f74e, 0x27eb8cbe, - 0x2e7119ca, 0x0000d3, 00000000 + 0x2e7119ca, 0x0000d3 }, { 0x1a393aa3, 0xe66f01e2, 0xdd2b92a6, 0xce7f564a, 0x9d65cea9, 0x441e8164, 0xa487a74a, 0x3f4ecb56, 0xcf35a5f9, 0x42e31fac, 0x4038de16, 0xb257d251, 0xfcc62a39, 0xe99194b9, 0x4dc7be17, - 0xd4ce7d1d, 0x000139, 00000000 + 0xd4ce7d1d, 0x000139 }, { 0xd5c8839a, 0xec201d7, 0x86ea4072, 0x947010b9, 0x98aecf09, 0x907b1597, 0xbb609f1e, 0x55fcabfa, 0x36309ba4, 0x21a5e337, 0x22fbb828, 0xcf176d80, 0x46b7521f, 0xfebc6f6c, 0x8b6220e, - 0xf7f63f4a, 0x000114, 00000000 + 0xf7f63f4a, 0x000114 } } }, @@ -79304,19 +79300,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xda633639, 0x9d7c3f9f, 0x8d8a8b0f, 0x618e0452, 0x660a3bf0, 0xfc56f136, 0xea31580, 0xcb82e306, 0xb2abce2b, 0xa07d6fe2, 0xfe3018b5, 0x56ee514a, 0x5f3f26c5, 0xc91f7511, 0xc1546de8, - 0x481f764a, 0x000036, 00000000 + 0x481f764a, 0x000036 }, { 0x83d4ce99, 0x2876bc49, 0x9a2a8667, 0x9e49b5a8, 0xb061f959, 0x87efa340, 0xdf38f9bd, 0x9b0d0188, 0x2e53bddd, 0x106c1b63, 0xe0af02da, 0x75f75006, 0x6401ab42, 0x6ff885ad, 0x96354a4, - 0x498aead, 0x0001e0, 00000000 + 0x498aead, 0x0001e0 }, { 0xd7d47f1c, 0xa96294b1, 0x770c0146, 0xd220a969, 0x33cde0e9, 0x85ff7110, 0xe55ccca8, 0x850c4e0f, 0x2cd958d, 0x6cc53f3f, 0xd4680529, 0xb0434063, 0x7c4dd0e3, 0xd84f874d, 0x7adec8df, - 0xe13b7fbe, 0x0000c3, 00000000 + 0xe13b7fbe, 0x0000c3 } }, { @@ -79324,19 +79320,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x63d7ee29, 0xcf525153, 0xf9f62ad7, 0xf7ddc4e9, 0x50832ba1, 0xe9766e0a, 0x2922b4a, 0xbcaa4c91, 0xecc6a1bd, 0xf8795779, 0xded7f482, 0x16d0f934, 0x5f9424dd, 0x2f243b8e, 0xd647f9f6, - 0x5270cce7, 0x000024, 00000000 + 0x5270cce7, 0x000024 }, { 0x7423f92a, 0x18209a4e, 0x7cf709c8, 0x78228a68, 0xcebace7f, 0x3e45e3a0, 0x48cd5f23, 0x5bb16fda, 0x3b34b99d, 0x59bd1595, 0x3962f57c, 0x891ce082, 0x85b312cc, 0x72407400, 0x5216e2d1, - 0x33ba795d, 0x0001de, 00000000 + 0x33ba795d, 0x0001de }, { 0xa508f886, 0xb849e89f, 0x298987fe, 0x1513a741, 0x86db8045, 0x747c522e, 0xe5d87a5b, 0x3de116cd, 0x24b6c385, 0x6f1b902c, 0xc4e7208d, 0xccbe4aa4, 0x7bf67c1b, 0x9eeabca, 0xf9348a70, - 0x1bc21fc9, 0x0001fe, 00000000 + 0x1bc21fc9, 0x0001fe } }, { @@ -79344,19 +79340,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x7aa2fd53, 0x612db5d3, 0x3120bad9, 0xff19b8f4, 0x34c1300, 0x34578e8a, 0x5b88f406, 0x42f511ad, 0x282f6d00, 0x99dd54b8, 0x2124ad35, 0x2669b75c, 0xe512077c, 0xa8674f1c, 0x58330de4, - 0x9c2346fe, 0x000040, 00000000 + 0x9c2346fe, 0x000040 }, { 0x87759ddd, 0xbcf07c4f, 0x686eb8e0, 0x3b326438, 0x48ae8aa8, 0xc8725723, 0x84a6b896, 0x59caa983, 0xa8939247, 0x872ef2cb, 0x2fd1b237, 0x291c0b52, 0xbbd6b3ea, 0x7b331793, 0xa650a0a8, - 0x533630bb, 0x000077, 00000000 + 0x533630bb, 0x000077 }, { 0xb6749e0f, 0xfbb6b261, 0x9c0456ad, 0x2b269102, 0x4c26634a, 0xf26996e1, 0x8e463d8e, 0xd7316cc2, 0x6e761df9, 0xb2cb00c7, 0xaca44c72, 0x1b410b53, 0x7e0e9e86, 0x6bfdf16e, 0xf8d3fddd, - 0x5bfb08ce, 0x000015, 00000000 + 0x5bfb08ce, 0x000015 } }, { @@ -79364,19 +79360,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd66187bf, 0x143cb8c2, 0xca5d2167, 0xcb3bf3a6, 0x81e2f991, 0xc93e3ca2, 0xa5c0ce1a, 0x49e26c7b, 0xd85236d, 0x5f8b8d85, 0xc64525d, 0xb3304a78, 0xb8d48871, 0x20f311df, 0xb16fe87a, - 0xf75032ef, 0x000063, 00000000 + 0xf75032ef, 0x000063 }, { 0x5ea796db, 0xb9812f44, 0x64880c6b, 0x4cab27b2, 0x6d7ab517, 0x19d66512, 0x6adb8d38, 0x3693a198, 0x662d21b6, 0xf850aac6, 0xd7b1b2fd, 0x6fb27ad, 0x42a4db6e, 0x85628c97, 0x239794ca, - 0xdf7f8a33, 0x000098, 00000000 + 0xdf7f8a33, 0x000098 }, { 0x2fbaafa9, 0xf1a01e9e, 0x21ac2588, 0xc788a9d, 0xe2114cec, 0x52a4ec26, 0x6807dd22, 0x24bdc3c3, 0xa6d39439, 0xfceb1572, 0x48834062, 0xe7cea902, 0x5f5666d0, 0x401eb894, 0xc3fbdd75, - 0xc4d70baa, 0x000033, 00000000 + 0xc4d70baa, 0x000033 } }, { @@ -79384,19 +79380,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcbed95a4, 0xaab4891c, 0xbdbeb720, 0x4dd53f0c, 0xca0bcbbc, 0x4dcabe73, 0x9d3707a7, 0xa1c17ab1, 0x907d796e, 0x7469d5c1, 0x3f0af2e8, 0x2582e17, 0x146651e3, 0xc991cafa, 0x260b36b7, - 0xc7d12e3f, 0x0000b4, 00000000 + 0xc7d12e3f, 0x0000b4 }, { 0x3a8d54f9, 0x40cb4afe, 0x4516afe9, 0xdf83a85f, 0xfb49e9d3, 0xfe6ae4e, 0xa313b5e5, 0x833cf92f, 0x42aee7c1, 0xa165ff27, 0x833ad321, 0x803cb36c, 0xb2ae6717, 0x4ef152ce, 0x14204dd0, - 0x36004984, 0x000002, 00000000 + 0x36004984, 0x000002 }, { 0x36aebad0, 0xef514902, 0xdfcd46d4, 0xdc9aa0cf, 0x1f3219f8, 0x56cb6d1b, 0xa0d7a08e, 0x7657a72d, 0xcbb93f31, 0x3cc95b08, 0x5d2048b2, 0xe8c650a6, 0x3cc641b6, 0x82aebb93, 0x6137ac81, - 0xa1ae46d2, 0x0001c0, 00000000 + 0xa1ae46d2, 0x0001c0 } }, { @@ -79404,19 +79400,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf528de41, 0x291cd76e, 0xddbb32ce, 0x4bcadd1f, 0x7ebc7223, 0x51fc2b21, 0x79e6c163, 0xea0c3c49, 0x88e7e03a, 0x1627ff4f, 0xbae19a9, 0x67e816c3, 0x1b5b1b09, 0x67418147, 0xac3f59b9, - 0xde3b47df, 0x000029, 00000000 + 0xde3b47df, 0x000029 }, { 0x5a2f3d5, 0x90d41337, 0x3743e382, 0x941752c3, 0x1427c57b, 0x305064ea, 0x863549bd, 0xcf3cd44e, 0xd90882ed, 0x81faa0ab, 0x6a66600f, 0x8d1b2731, 0xb85c8c28, 0xc4d9d4bd, 0x23ca07bb, - 0xff8604dd, 0x0000fc, 00000000 + 0xff8604dd, 0x0000fc }, { 0xd51b4f60, 0x1c93036b, 0x43de842, 0x5994738a, 0x374db44, 0xc533b36a, 0xd35d717d, 0xc7d10718, 0x7242b93b, 0x700ed92a, 0x8720b5ee, 0x888608eb, 0x701cbe70, 0xa3322a47, 0x3d821dc1, - 0x3f074af4, 0x0000c6, 00000000 + 0x3f074af4, 0x0000c6 } }, { @@ -79424,19 +79420,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x766fe72d, 0x401bed1c, 0xee183c60, 0x2dd8d3c2, 0x138f673f, 0x49de556, 0x45b6feb5, 0x8946a9f1, 0x77928f2c, 0xb1a2d0ea, 0xaa50f842, 0x49b551c, 0x8380804b, 0x4ea68ab7, 0x622b6b2a, - 0x40634d7d, 0x0001ed, 00000000 + 0x40634d7d, 0x0001ed }, { 0x7db6947b, 0xfea6fc28, 0xee3f720f, 0xd34db819, 0x2c1e3bd0, 0xc18a9354, 0x178bdd3e, 0xe6dd79cb, 0x6a49feae, 0x17f017c7, 0x397ebe66, 0x85cf1186, 0xdc367a4c, 0x6309a50, 0xe3f9f3fc, - 0xa3bdf8f2, 0x0000c1, 00000000 + 0xa3bdf8f2, 0x0000c1 }, { 0x8f2e1573, 0xb45a5d7, 0xf9e0f87d, 0x2d83ff33, 0x1d5f1aec, 0x6c71a651, 0x38e8fabb, 0xbc7a82a6, 0xc68c001f, 0x6fa811e8, 0x2412d394, 0xd6ed333b, 0x57efcb62, 0xdf12dc82, 0x36807749, - 0xeacf2de7, 0x0000b3, 00000000 + 0xeacf2de7, 0x0000b3 } }, { @@ -79444,19 +79440,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4ff367e3, 0x13c8fff8, 0x4ae6d34d, 0xcc447d57, 0x9e188463, 0xfb32b2bd, 0x6b4e1242, 0xf1827ca1, 0x4370d2be, 0x6c8cfcb2, 0x53bf0ee7, 0x7902ec6c, 0xbc5bc793, 0x8c059761, 0x31d815da, - 0x6fcde170, 0x000073, 00000000 + 0x6fcde170, 0x000073 }, { 0x5c3d055e, 0x724f7fa0, 0x82f7e888, 0xde3a43cb, 0x373b143a, 0x2d309f54, 0x9e2224a, 0xbcd5e05a, 0xe0f853f4, 0x2be62617, 0xe8411473, 0xc7a4ea5a, 0xa6b3d193, 0xaf99eed7, 0xe5201aba, - 0x47a0bf80, 0x000011, 00000000 + 0x47a0bf80, 0x000011 }, { 0x65d3343e, 0x83a54237, 0x4b2e3332, 0x6e805e20, 0x5de81e8e, 0xcddd96b6, 0x43642b1c, 0xeea7fe8d, 0x95968550, 0xc38860b6, 0x663e3ec4, 0xac289c8e, 0x11c85533, 0x2caa41e1, 0xe691a65a, - 0x92bd5f0, 0x000023, 00000000 + 0x92bd5f0, 0x000023 } }, { @@ -79464,19 +79460,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a2f89f8, 0x98c34b2, 0x337fb871, 0x6e3b8f4b, 0x8c47b72f, 0x4efb08b7, 0x85e80001, 0xb40df70e, 0xe51c7573, 0xe7f309a9, 0x3bd78f21, 0xa55f41c4, 0x481ec23a, 0x4bf159ab, 0xd7aa03e8, - 0xdb67d1fd, 0x000032, 00000000 + 0xdb67d1fd, 0x000032 }, { 0xd1b92e07, 0x5b2d316f, 0x1a5332d4, 0xd7529459, 0x4fb3d3b4, 0x996b5324, 0x68257937, 0x7bba3bca, 0xacdfd558, 0xbba98a25, 0xda6e82da, 0x48f945a, 0x38ac5dbc, 0xd6d2bed7, 0x1ae07a39, - 0x129fc126, 0x000105, 00000000 + 0x129fc126, 0x000105 }, { 0x9b5fc85d, 0x45929e37, 0x9ba3e6b4, 0xf5979929, 0xb7aade80, 0x91965374, 0x3ab79bc2, 0x5f6405f5, 0x10ba87c4, 0x5ccc2ad, 0xc64e2923, 0x52c1a521, 0x411c7190, 0x7024a48e, 0x85010d7f, - 0x729783b4, 0x00015f, 00000000 + 0x729783b4, 0x00015f } }, { @@ -79484,19 +79480,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xdf32fd80, 0x71954d31, 0xc33014d4, 0x811856d9, 0x5313373e, 0x13eb834e, 0x17b8edbe, 0x6a7651ef, 0xcfbbcd4d, 0x307cbcef, 0x45e414b7, 0x4b739036, 0x5df525d4, 0x57b98b4b, 0x29557226, - 0x3b786640, 0x000191, 00000000 + 0x3b786640, 0x000191 }, { 0x63442af3, 0xc6e280dc, 0xa0e52761, 0x7346c384, 0xe104f710, 0x2461e1c0, 0x7b133ede, 0x6a6d4673, 0x59f3410b, 0x3b8da7cb, 0x1c55bf47, 0x19cf5b49, 0x836734ad, 0x5b746058, 0xea22b04, - 0x6400a29, 0x0000bb, 00000000 + 0x6400a29, 0x0000bb }, { 0x883bdad2, 0x840d209c, 0x76a388fd, 0xd53e17e0, 0x2cb74f4e, 0xcf56accc, 0xca20f6dd, 0xb2a70428, 0x345a48a0, 0x1aae7119, 0x2abe0ab0, 0xd0b0c7d, 0xbfaf6385, 0xf8486bd5, 0x202581af, - 0xfc1aab70, 0x0000bd, 00000000 + 0xfc1aab70, 0x0000bd } }, { @@ -79504,19 +79500,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36231868, 0x5e85d531, 0x458e9c2e, 0xfd512dd9, 0x91b910c1, 0x32a3ad27, 0x80b1ed0b, 0xf3f09a86, 0x30c2ca1c, 0x9d82d627, 0x9fe8e659, 0xe167dac6, 0xe3de7e36, 0xd8809c61, 0x794142c7, - 0x699c836c, 0x0001b4, 00000000 + 0x699c836c, 0x0001b4 }, { 0xacf0076f, 0x97051eb1, 0xca8f27af, 0xd7ce58f5, 0x8e82b7b9, 0xfc932d68, 0x720fdf17, 0x63644158, 0x142d7cdf, 0xc89bdaa9, 0x4cc520ec, 0x2259f06e, 0x8a785948, 0xf6533271, 0xe63391f8, - 0xfbe015fb, 0x000094, 00000000 + 0xfbe015fb, 0x000094 }, { 0x7100ad4a, 0xde221ab5, 0xc5757bcb, 0x4fc67d29, 0x49acfa1c, 0x9372ec31, 0xa2edea1c, 0x920d9038, 0xa6e67a5a, 0x4eabc8bb, 0xdcea0683, 0xff9f6ffd, 0xb2a73848, 0x1408fee3, 0xf1baae67, - 0xc4493537, 0x000145, 00000000 + 0xc4493537, 0x000145 } }, { @@ -79524,19 +79520,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5b766290, 0x30059a61, 0xf10ec2ad, 0x67978e7a, 0xe6eff3e0, 0x5c88308f, 0xf5f414bd, 0xe2bd5d09, 0x572cc392, 0xa5f00dec, 0x9b9e396, 0x31fb38c5, 0x8f11f9b6, 0x8664949b, 0x6674d7a3, - 0xf0f126a9, 00000000, 00000000 + 0xf0f126a9, 00000000 }, { 0xff523f, 0x6e7bdbce, 0x9ebcf37, 0x15ffc8e8, 0x57ada824, 0x29a2594, 0x69df7a4c, 0xcac1df82, 0xcc7b51f8, 0x35b066ce, 0x64f83b7e, 0x118bde9e, 0xeced67ed, 0xa0881718, 0x78cffa5d, 0x6f54142f, - 0x00005b, 00000000 + 0x00005b }, { 0x1dfbd185, 0x83e32782, 0x79356980, 0xca278519, 0x2fd7736e, 0xb8a68ac9, 0x5c4ee3c7, 0x9c7e5561, 0xf1424144, 0x635e8bc0, 0x4af0c867, 0xa6a980a3, 0x36c5725f, 0x6a180ccc, 0xe531b612, - 0xa73b458f, 0x000083, 00000000 + 0xa73b458f, 0x000083 } }, { @@ -79544,19 +79540,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8f3b4c94, 0xe2d9f379, 0x3901c961, 0x2f466cfb, 0x6c42bb40, 0xaea1f47f, 0x20462e0b, 0x4d0fd938, 0xdc6c6d, 0xa5a12713, 0xf14e69c, 0xd2ebbaa5, 0xf12ca3f0, 0x1a55838c, 0x302ad13c, - 0xb257e6d, 0x000051, 00000000 + 0xb257e6d, 0x000051 }, { 0x761593e6, 0xe8feebe8, 0x9194631e, 0x9e4b698b, 0xa4445319, 0x4bf430cd, 0xd6628208, 0xe3237468, 0x20145b82, 0x627f2568, 0xdeb9e234, 0xe64590e2, 0x5c90f6be, 0xebde4bf3, 0xc5dec5f8, - 0x3e0adbb, 0x00019c, 00000000 + 0x3e0adbb, 0x00019c }, { 0xcfe873f0, 0x108c7a57, 0xc7693f95, 0xcfad54df, 0x8e475caf, 0x9f1a4464, 0x533e8aed, 0x1a348f0e, 0xb41559ec, 0xc1832008, 0x7e318f42, 0xa68041c4, 0x7b482d15, 0xa91ae6e5, 0x3ff95b9a, - 0xa7fa9ba6, 0x00019e, 00000000 + 0xa7fa9ba6, 0x00019e } }, { @@ -79564,19 +79560,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x17df7fbf, 0x1a0210f8, 0x459eda70, 0xf36cdf35, 0x322ac977, 0x94617ed6, 0xc21f719a, 0x23a41ffe, 0xfb9dfee6, 0x2582c3b, 0x940cd38d, 0x985c6220, 0x57b5489b, 0xdfd3ca15, 0xf969ea99, - 0xcd0508c9, 0x000112, 00000000 + 0xcd0508c9, 0x000112 }, { 0xdb50bcd5, 0x632173ac, 0xc7ccf9ff, 0x99e464f1, 0x817edf50, 0x519b19b2, 0x640107d, 0x5cdfc8e5, 0xf3a410fc, 0x442635df, 0x7bb2299a, 0x65efcfb4, 0xa0b2699, 0x94cba93, 0x1f6765d4, - 0x43d6d4d7, 0x0000e3, 00000000 + 0x43d6d4d7, 0x0000e3 }, { 0x1d107afc, 0x5bbf8f84, 0x1797d7c8, 0xa7214493, 0xa67bbf0f, 0xc57104ba, 0xe2b249a6, 0x92419cd7, 0xb3cffe7d, 0xdc3f53a8, 0x210e855a, 0x61416c83, 0x8478e98f, 0x3474519f, 0x561a288a, - 0x2be65282, 0x0000d4, 00000000 + 0x2be65282, 0x0000d4 } }, { @@ -79584,19 +79580,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x4002b348, 0x9c1e87d3, 0x60c25b60, 0x88501d1d, 0x1f33c691, 0xaac51ac7, 0x76f958c7, 0xbbe0c5a7, 0x3bbacf77, 0xb5af8ccd, 0x734ccb53, 0xa07c7181, 0x10cb998d, 0x64a82932, 0xb7f1530f, - 0x773afa8a, 0x000173, 00000000 + 0x773afa8a, 0x000173 }, { 0x6b408e1d, 0xbd9bc42, 0x4f8b14c3, 0x13feb7e0, 0x1dea4950, 0xb476b35c, 0x3e37781e, 0xa0a27797, 0xccdd348, 0x46a1b02a, 0xcdb81029, 0x4c808992, 0x87365c63, 0x54a0d233, 0x8f49ceca, - 0xb8903e73, 0x0001fc, 00000000 + 0xb8903e73, 0x0001fc }, { 0x657a5dad, 0xde1a8877, 0xca46aa6d, 0x20f2038, 0x94b6d893, 0x12582466, 0x1366cd0f, 0x5bfc9c65, 0x13742241, 0x22885fc0, 0x7c61ae68, 0xb80ead48, 0xa9023383, 0x3a341311, 0xe96e198e, - 0x8a9ad6ac, 0x000026, 00000000 + 0x8a9ad6ac, 0x000026 } } }, @@ -79606,19 +79602,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbd8a7c98, 0x6a4c7a49, 0xda4f8ab6, 0xa308b8b8, 0x4b057e4d, 0x56946cfc, 0x6cb5617a, 0xefc29287, 0x2d7ad303, 0xbd22657d, 0x3c551fac, 0xeaa2e6fc, 0xbaaa9c13, 0x9a54d29c, 0x386d1c05, - 0x5b8fd8ed, 0x000161, 00000000 + 0x5b8fd8ed, 0x000161 }, { 0x6b063f49, 0xe636fcdb, 0xb100ec2e, 0xa5090680, 0xbc48d855, 0xf2424c58, 0xe9ce2f, 0x3704793c, 0xc2f654ea, 0xee32df6d, 0xfe07a70e, 0xa8bb62ed, 0x10f0cefe, 0x19fc8a12, 0x447d6178, - 0x9c577f67, 0x000075, 00000000 + 0x9c577f67, 0x000075 }, { 0x18d64eb8, 0xd533de43, 0x94ca1ea1, 0xca22553b, 0x7bbd69f8, 0x1e964586, 0x12a3101e, 0xad3920c5, 0xa65f7b82, 0x819e95f1, 0x83a52f6, 0x962f8975, 0xe5da144, 0x5f7251c6, 0xc533432e, - 0xc97bb051, 0x0000eb, 00000000 + 0xc97bb051, 0x0000eb } }, { @@ -79626,19 +79622,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa8526166, 0x15b26d2c, 0xbd13d83f, 0xe8d23423, 0xb9892371, 0x69869ca7, 0x77354a38, 0xe8d1dec1, 0x33f5bc9b, 0x90103ead, 0x5baa9aa4, 0x2b06fa9d, 0xc853ecf3, 0xee35552c, 0xd87940d4, - 0x53af52cd, 0x0000da, 00000000 + 0x53af52cd, 0x0000da }, { 0x3272c14, 0x5209f246, 0xf71cae5, 0x688a7345, 0xb6823825, 0x6f69946e, 0x8f8b557, 0x3ff0f9f6, 0x4913ab94, 0x38456f5c, 0x371546a, 0xc8885883, 0x7ef48b32, 0x952e8eff, 0x7e36bcbc, - 0x45599cf8, 0x000185, 00000000 + 0x45599cf8, 0x000185 }, { 0x4942f874, 0x6368e533, 0x46cb9027, 0xcaa2d30a, 0x380c57f6, 0x7261aca9, 0x5c424af6, 0x18ddd627, 0x6bc2e7b4, 0x69a11110, 0x93c2231e, 0x1ba7cc6, 0x8051af77, 0x821ec367, 0x86ca0d7f, - 0xd1b3e5b2, 0x000101, 00000000 + 0xd1b3e5b2, 0x000101 } }, { @@ -79646,19 +79642,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x55350aa4, 0x4d97e4ee, 0x7bd32de1, 0x5965bdce, 0x5b7ef366, 0x9474c25d, 0x31b54cab, 0xa0481a91, 0x4c220300, 0xc3ea0e1a, 0xb641221d, 0x6a73fc81, 0xe0477858, 0xc2e6c16e, 0x98b62438, - 0x55e972f5, 0x000157, 00000000 + 0x55e972f5, 0x000157 }, { 0xaf32c1a4, 0x984955c8, 0x8e99a131, 0x48de530, 0xdeb48879, 0x4016595, 0x8f567ef9, 0xb5e2e07f, 0xe0104f5d, 0xab22c3f, 0xd8f92bc6, 0x3c1950e0, 0x3e3238ed, 0xb0b2546, 0x3c7e7935, - 0xa3b41b59, 0x000084, 00000000 + 0xa3b41b59, 0x000084 }, { 0x5757307, 0x44b637c3, 0x6c492036, 0x8de4645c, 0x87ac83b0, 0x8b18a1c1, 0xdc4094f5, 0x9d6bcefe, 0x6c3a1bc9, 0xdc65f02f, 0x23ce82b0, 0x23fa0625, 0xaf3a46ff, 0x60912e80, 0x667d7f8, - 0x959d1fc2, 0x00013f, 00000000 + 0x959d1fc2, 0x00013f } }, { @@ -79666,19 +79662,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xda99f40, 0x26aca901, 0x2da73b30, 0xb579144, 0x9c7317d2, 0x4f04101b, 0x72cf96dc, 0x19427e0f, 0xa43e6ab0, 0x162353bb, 0xd2b8bc03, 0x226563fb, 0x2215e937, 0x6528bc71, 0x9053695e, - 0x95ca122a, 0x000177, 00000000 + 0x95ca122a, 0x000177 }, { 0xfe087970, 0x16698b79, 0xbc16c39d, 0x68b8a310, 0x2dc3f122, 0xf9dd187, 0xc9afd4fd, 0xcf1f0a08, 0x14922daf, 0x9ce2cbb1, 0x5259c1ea, 0x61edc38e, 0xa3e6fd4c, 0x388533c, 0x3450e813, - 0xf763d5ee, 0x000061, 00000000 + 0xf763d5ee, 0x000061 }, { 0x45a3c534, 0x713cc9e, 0xd9714049, 0x952f9f05, 0x7623bd82, 0xb3f2aa9b, 0xbb1ac3b9, 0xa93cf06e, 0x9f1b2baf, 0xb76143a6, 0xcc6bdfe3, 0xe6e836c6, 0x2b157b51, 0x178574e4, 0xf0d035a0, - 0x7fecacbd, 0x00010a, 00000000 + 0x7fecacbd, 0x00010a } }, { @@ -79686,19 +79682,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe0687ca3, 0x179fde9d, 0x741291ad, 0x3e299b73, 0xbb521891, 0xe54de11f, 0x6ae48212, 0x3cb15a57, 0x8873c15b, 0x9b3255bd, 0x3f50a496, 0x4764e7e4, 0x18a853d1, 0xdbce1be0, 0xa7a965ed, - 0xf4a73523, 0x000134, 00000000 + 0xf4a73523, 0x000134 }, { 0xf168d211, 0x77193eb6, 0xe54b81b0, 0x8b0d1ed8, 0x144dc280, 0xb4675034, 0x13e49693, 0xe3c1fa7f, 0xfa13a1c4, 0x58db86a1, 0xa173493a, 0x6f31cc81, 0xd203a759, 0x11fd7e0d, 0x2a959618, - 0x37798987, 0x00004c, 00000000 + 0x37798987, 0x00004c }, { 0xad8f516d, 0xbd9e33dc, 0xd394ced7, 0x464b0bf9, 0x62feab69, 0x1a877f23, 0xa02b13dd, 0x28483891, 0xcf98fed8, 0x4036b738, 0x3c5cb0c2, 0x23d138a3, 0x496407c8, 0x4b26b2dc, 0x9a7e6c, - 0x91eb5834, 0x0000ee, 00000000 + 0x91eb5834, 0x0000ee } }, { @@ -79706,19 +79702,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa16e6b11, 0xb1425d81, 0x24e3fe87, 0xbcd4dfc4, 0x338ba762, 0x402e24c7, 0x47fa971, 0xe6a7afbc, 0xcd81fc24, 0x13b88561, 0x82f0ad5f, 0x140f1a60, 0x293a7d76, 0x99a51e38, 0x607d6ff4, - 0xd5f87935, 0x0000a7, 00000000 + 0xd5f87935, 0x0000a7 }, { 0x3d1b983d, 0x2811d19a, 0x99231d12, 0xfc91b55, 0x4447e916, 0xf0895e9f, 0xb7ae680, 0xbcd13b57, 0xc98e664a, 0x66305634, 0x6766ad79, 0x782795e8, 0x3b84d3f3, 0xb02ac209, 0xcc43c27, - 0x3158b7d0, 0x000111, 00000000 + 0x3158b7d0, 0x000111 }, { 0xd1039b2a, 0xf7f7f1c1, 0x455f8c3d, 0x2b208c78, 0xb292f15c, 0x5befc98b, 0xdd26cf0, 0xff1fac02, 0xfa212be, 0xedcce23, 0x3d74444, 0x8e8606f6, 0x5bf9bc5a, 0x25b22f76, 0x1f9676b2, 0x7f5509e4, - 0x00016a, 00000000 + 0x00016a } }, { @@ -79726,19 +79722,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x5d671c2d, 0xc7b3e2ea, 0xffd8a83a, 0x86caa931, 0xe094fa31, 0x369a2446, 0xf82cec50, 0xe794152a, 0xd469639, 0xc549ca7b, 0x30a777ed, 0x75b5ece6, 0x992b079b, 0x6dd5cde1, 0x1c03fb4f, - 0x133ce1cb, 0x000159, 00000000 + 0x133ce1cb, 0x000159 }, { 0xf403a312, 0x5df39389, 0xf947dadd, 0x37a53552, 0x2c863a69, 0xfd456e5c, 0x4e5840fc, 0xc91eaf0b, 0x8a9dea66, 0x6d84164a, 0x43c8f9bb, 0xc58b7ed0, 0x9a5e7c7, 0x71875277, 0xfa96fe4d, - 0x8139d498, 0x00015e, 00000000 + 0x8139d498, 0x00015e }, { 0x45b9468d, 0xfeeea0d2, 0xf075263e, 0x1b30b6ae, 0x81dea883, 0xf586f66a, 0x8785ce18, 0x31cd34b7, 0x98de9364, 0x5440a8cf, 0x17b10641, 0x8ede31af, 0x2b1c82b5, 0x8bf4cd03, 0x12050f07, - 0x6f0d0bd2, 0x0000c3, 00000000 + 0x6f0d0bd2, 0x0000c3 } }, { @@ -79746,19 +79742,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd58437aa, 0x954840b2, 0x5e4576fd, 0x26bd612f, 0xea3c75e5, 0x88668963, 0x6d0f4f8b, 0x6cfb3f70, 0x85df1774, 0x7d25e258, 0x49f8e922, 0x600981fe, 0xbcc5bdcf, 0xf0105e98, 0xd7af9f63, - 0x52472ab1, 0x0001f0, 00000000 + 0x52472ab1, 0x0001f0 }, { 0x8c5e79ae, 0xb69ac993, 0x211baad9, 0x23e27984, 0xe8d6edaa, 0x1397add0, 0xe016cb2c, 0xfce267e5, 0xc87d9d07, 0x5c685b0d, 0xf3fe76c5, 0x6ac57e9b, 0x8ce13494, 0xdb5b2948, 0x40ea80fa, - 0x3b7fe534, 0x000113, 00000000 + 0x3b7fe534, 0x000113 }, { 0x76570c1f, 0xee75aa6f, 0xd82d8773, 0x1c435914, 0xb83571b4, 0x5763bc8, 0x4eac91fa, 0x9582e041, 0x89d04341, 0x5e9c152e, 0x4cd8fba7, 0xf985f1f3, 0x2d924f35, 0x8f3a1d77, 0x347bb354, - 0xd9faddb6, 0x00011d, 00000000 + 0xd9faddb6, 0x00011d } }, { @@ -79766,19 +79762,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa1e4de16, 0x6cea9604, 0xb8413e21, 0xebd4f33c, 0x5291703b, 0x765a947f, 0x6672416c, 0xcb771356, 0x761f6469, 0x4005a054, 0x6490bd54, 0x714dcd77, 0xac0456f9, 0xb71ba20d, 0xbc354c39, - 0x55475a8a, 00000000, 00000000 + 0x55475a8a, 00000000 }, { 0x30d41e7f, 0x5b9e6248, 0x374af63c, 0x783a666f, 0x17c44f6f, 0x19ae1eb2, 0x305ea961, 0xa11c9c6f, 0xed645d02, 0x535a7f2a, 0x1ebf17d2, 0xb30d439f, 0x8f54fb53, 0x2f12cb2b, 0x67ba0bd3, - 0xd9d6f5b8, 0x0000f7, 00000000 + 0xd9d6f5b8, 0x0000f7 }, { 0x3ae9a6f, 0x32566bcb, 0x3f91b00e, 0xf5744093, 0x2441cf4c, 0x94ce2c9b, 0x3f66bf17, 0xc3e679ab, 0xe2bae737, 0xd4d7f56, 0xaff961cb, 0xbfe9d7c4, 0x3c40ee48, 0x5c30405c, 0x581e291d, - 0xa025b4f7, 0x0001b8, 00000000 + 0xa025b4f7, 0x0001b8 } }, { @@ -79786,19 +79782,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xcf61f5b2, 0xc4626fe6, 0x59c34567, 0x945b1a43, 0x551639c9, 0xea9d38c2, 0xec7678c, 0x6189fb6a, 0xa4be16da, 0x972d037c, 0x324dfb8b, 0x56815da5, 0x37656621, 0x2dd7d761, 0x3c2d6412, - 0xca6f155b, 0x0000b9, 00000000 + 0xca6f155b, 0x0000b9 }, { 0x6bd50bd0, 0xda76e596, 0xba94ecc4, 0x9e41456e, 0x4579347b, 0x3e208f67, 0xab5cd866, 0xe2769edc, 0xcf97a3e5, 0x1c850de6, 0xa73b2502, 0x9230e437, 0x3bf77300, 0x51e2f96b, 0x8a2c138f, - 0xee26f168, 0x000082, 00000000 + 0xee26f168, 0x000082 }, { 0xd141093d, 0x5a6ce0f1, 0xe4839e65, 0x39fb3941, 0xa82692a9, 0xc6863332, 0x52217baa, 0xd321f2b6, 0xaa750de9, 0xabe378e4, 0x9c1e70e2, 0x30c7b9cf, 0xce86bd08, 0x9bd48a77, 0xcab3e0bc, - 0xeb6ba35c, 0x000133, 00000000 + 0xeb6ba35c, 0x000133 } }, { @@ -79806,19 +79802,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1e526fd1, 0x7f059e2e, 0xa77ef2c7, 0xc462acf9, 0x39d67b90, 0x6d0d7f85, 0x8bf71b0f, 0xb5c2c4b7, 0xdf5c2ca4, 0x10a3f02e, 0x907c27f6, 0x84a51525, 0xafebaddd, 0x7b2c3b99, 0x9ffcf2b3, - 0x8c5f8fe0, 0x0001de, 00000000 + 0x8c5f8fe0, 0x0001de }, { 0x8ad85e7e, 0x8fd66d85, 0xaece1c0b, 0x922b57bf, 0x7f1abbda, 0x4bd57e3, 0x43388835, 0xbf76f99f, 0xc39c51da, 0x6bc11123, 0x4e62d19f, 0x2aabc63d, 0xb4391965, 0x7da9b06, 0xe654316d, - 0x8eaf5e8b, 0x0001c2, 00000000 + 0x8eaf5e8b, 0x0001c2 }, { 0x62118f37, 0xdfba9a84, 0xaa3d4137, 0xa0849b9c, 0xef2f9a23, 0xd7d4dd3c, 0xdec7149c, 0x93370172, 0x2144e1bc, 0x69a2757e, 0x8cf4b0ec, 0xcfbd3982, 0xf575c1f1, 0x675cc8c, 0x447c7673, - 0x7512d900, 0x000098, 00000000 + 0x7512d900, 0x000098 } }, { @@ -79826,19 +79822,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8e276a1f, 0x43404412, 0x2c532d9d, 0xa8f35c78, 0xffa0d395, 0xe699be08, 0x121d61dc, 0xb843b15b, 0x408790e1, 0x5a45b9c1, 0x2674ffdc, 0xb65e00a5, 0x42b31d14, 0x3142b666, 0x66b58034, - 0xc99c86a3, 0x0000f3, 00000000 + 0xc99c86a3, 0x0000f3 }, { 0xe555c016, 0x97e4385d, 0xb6a8244, 0x182e115, 0x58adeb23, 0x79038d96, 0x1d0310e, 0x500c7cfa, 0x1c54419e, 0x8fb357f5, 0xe58df78a, 0xfb3c881f, 0x499ac48b, 0x3a39ac60, 0x8ca5ec96, - 0xa777e78b, 0x000193, 00000000 + 0xa777e78b, 0x000193 }, { 0x20955f94, 0xb323a189, 0xb36b67a5, 0xde20b9e8, 0xfabde88b, 0x49062658, 0x3c30960f, 0x37377e67, 0xa5483b4a, 0x73deb919, 0x51110524, 0xb220e2e6, 0xa4ca7ee3, 0x85f94d82, 0x6f3a617c, - 0x33ee855d, 0x000189, 00000000 + 0x33ee855d, 0x000189 } }, { @@ -79846,19 +79842,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x6f836b65, 0x6e4bd4d0, 0x4f3deac9, 0x64f19953, 0x544378c0, 0x63ff306a, 0xe17c1fbc, 0xb6336bba, 0x8b55044a, 0xc3338502, 0x2307e87b, 0xfcf24aa7, 0xc723872a, 0x8c05fbb2, 0xb07ec01f, - 0x43f8a1fa, 0x000195, 00000000 + 0x43f8a1fa, 0x000195 }, { 0xd4e1ed97, 0xea00bc53, 0x1dc1baa5, 0x56563c6d, 0x83446502, 0xbfc42c76, 0x9f74780f, 0x3bbd66bd, 0x32c23777, 0x7d86f6eb, 0x50ff3f5b, 0x7d4288e4, 0xce7c41d, 0x4277bd79, 0xdc1504ba, - 0xa86c2052, 0x00007c, 00000000 + 0xa86c2052, 0x00007c }, { 0x52c58914, 0xae99f53d, 0x6de2f5fc, 0x44ee3dd8, 0x9545f5d8, 0xe55296d3, 0xaf1d081e, 0xa72adaec, 0x477b2d47, 0xaca87314, 0x64b24c4b, 0x7fd7526e, 0x1b3bfc38, 0x33476ccb, 0x5d414e66, - 0x65ac9e68, 0x000076, 00000000 + 0x65ac9e68, 0x000076 } }, { @@ -79866,19 +79862,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x149fd104, 0x9a4b4f67, 0x4cf42e90, 0x166c2f4b, 0x4826e016, 0xb23e690, 0x2c4747b7, 0xe2f00b8d, 0x5e9490fd, 0x12e77980, 0x3a9d57a, 0x6030aecc, 0x36030d9d, 0xa657045, 0x5e90ed3b, - 0x95e1e57f, 0x000193, 00000000 + 0x95e1e57f, 0x000193 }, { 0xbe4fd984, 0x381a120, 0x9e19c5e6, 0xb0f295e3, 0xb09c8a3f, 0x38951a79, 0x9f735b81, 0x529307e4, 0xc5f9dc5d, 0x6bc70873, 0xe9c67ee7, 0x818c77c0, 0x24db946a, 0x588a7151, 0x7576b6d6, - 0x7cdda5d7, 0x0001ac, 00000000 + 0x7cdda5d7, 0x0001ac }, { 0xa8ddb993, 0xca4ec074, 0x7c2f29d2, 0xf6e18e36, 0xec8e686c, 0xead3d1be, 0xe32a8d36, 0x6800187b, 0x39fbef4e, 0x822aa1f9, 0x50816672, 0xc3963c12, 0xdfe386de, 0x3afa5cef, 0xe9560b89, - 0xf7b2edc6, 0x000023, 00000000 + 0xf7b2edc6, 0x000023 } }, { @@ -79886,19 +79882,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xab51f6a1, 0xd4b247ac, 0x27332505, 0x52a4bec, 0xc0362234, 0xfccdbc58, 0xc147da3a, 0xf3ea4afb, 0x246a3b2, 0xc2743591, 0xcffe2ad8, 0x311797d5, 0x25f7df8b, 0x3951a61b, 0x3154dc42, - 0xabd1cde7, 0x00000a, 00000000 + 0xabd1cde7, 0x00000a }, { 0x185ca0bb, 0x27b49e91, 0x65689418, 0xb30abd27, 0xe6aaf855, 0x28eaa0bb, 0x179ecd90, 0x1cb5cc35, 0x135b3feb, 0xe050dd55, 0x65bb80e6, 0x8c1b5c87, 0xc34cae33, 0xc6782f1d, 0x471be408, - 0xac93f339, 0x0000cc, 00000000 + 0xac93f339, 0x0000cc }, { 0x96bfdd26, 0x139b11a6, 0x9b9ae939, 0xeeebc83, 0xe1eb2d1a, 0x9b48bac6, 0x666be13b, 0xb0d4ee64, 0x36059616, 0x1d5bc7be, 0xa05a82f0, 0x51e5896d, 0x72d383df, 0x4f877e53, 0x3afab0c2, - 0xd8af4623, 0x000044, 00000000 + 0xd8af4623, 0x000044 } } }, @@ -79908,19 +79904,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x1af05ea9, 0xeb199832, 0xf2fd47de, 0xd30022a, 0x6b442e1c, 0x8da93b73, 0xbb6c3140, 0x85aae1a1, 0x620ef6a0, 0x3c29aa99, 0xbef2a99b, 0x4867521d, 0x66941292, 0x56627e1, 0x54753840, - 0x6095da3a, 0x0001ff, 00000000 + 0x6095da3a, 0x0001ff }, { 0xaa479ba0, 0x35dec7b, 0x1faa8ef2, 0x1307929c, 0xc16b5c74, 0xa9496769, 0xb934548d, 0xe1f86bac, 0x1ebcd86a, 0x2d0c9a49, 0xedc68955, 0x9e5c48be, 0x7a7d81b1, 0x49aecbab, 0x6eac32e6, - 0x4fc8c36c, 0x00017c, 00000000 + 0x4fc8c36c, 0x00017c }, { 0x17cb5396, 0xb71a0cb8, 0x2afe3207, 0x361787a3, 0x74755e28, 0xf6f52d77, 0xf77f9855, 0x54d44641, 0x5773a43d, 0xf3f5d228, 0x7b058a09, 0x365fa5af, 0x907f989c, 0xef3d3c91, 0x4d0b7d90, - 0x6910ce07, 0x0000a3, 00000000 + 0x6910ce07, 0x0000a3 } }, { @@ -79928,19 +79924,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xd5296e7b, 0xe6bf118b, 0x800ad73f, 0x37a52fbb, 0xf3491d1e, 0xd8745010, 0x8f1461f8, 0x21e2d43a, 0xbe23f1b6, 0x1ef6b51d, 0xca7b7aac, 0xc8df9c4b, 0x200ec623, 0x7693decb, 0xa4abe830, - 0xbbe5d297, 0x000113, 00000000 + 0xbbe5d297, 0x000113 }, { 0x70a5f4c8, 0xee95534e, 0xd6fd7dde, 0x9898c4e4, 0x15c8f7a9, 0xdd933292, 0x5654fe0f, 0x17f20d, 0x9373d1eb, 0x355ba09, 0x95112af3, 0x7fb17814, 0xad638a61, 0x34d4fd6f, 0x6b10600b, - 0x2a78d8b5, 0x000147, 00000000 + 0x2a78d8b5, 0x000147 }, { 0xddb45d3b, 0xba0a3474, 0x3326831b, 0xa8134bc, 0x35826094, 0x97f5c174, 0xab8408f9, 0xddd5e89e, 0xafb79710, 0xfe997788, 0x632eb797, 0x97c3d09a, 0xae1c520a, 0xb9688aa5, 0xad1c0e22, - 0x58bfc3da, 0x000021, 00000000 + 0x58bfc3da, 0x000021 } }, { @@ -79948,19 +79944,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x56c774ee, 0x406f5035, 0x56f9c874, 0x840fd49c, 0x266ba467, 0x9bde6e19, 0xf9b1b05c, 0x8b96975c, 0xb14c7519, 0xae0938cc, 0xe45fedfb, 0xa86026ca, 0x6a9a7850, 0x4cbe29dc, 0xc1ea2b0f, - 0xb96e0478, 0x000071, 00000000 + 0xb96e0478, 0x000071 }, { 0x3f49b9fa, 0xbd4ad0ee, 0xc04d17f7, 0x9bfe04af, 0xf44a9959, 0x87469906, 0x2cd3317c, 0x94a9880c, 0x7d42f5f9, 0xf841fbf1, 0x9e3df30, 0x82af9a08, 0x1a1afc34, 0xadce94a8, 0xe8788dc8, - 0xad6f45b, 0x0001e2, 00000000 + 0xad6f45b, 0x0001e2 }, { 0x3f29a0a0, 0xe153c457, 0xf245d295, 0x4e3aa569, 0xceb39758, 0x24d73a67, 0x839354ad, 0xb230fcf1, 0x7e0135b8, 0x33890f7c, 0xcd3cfbc0, 0x173c6b6, 0xf4c2f0e1, 0x59570093, 0x9ee5239e, - 0x6f6128f2, 0x0000c7, 00000000 + 0x6f6128f2, 0x0000c7 } }, { @@ -79968,19 +79964,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xccbede1e, 0xc66806b9, 0x45edccbe, 0xbc50e9f2, 0x266167b1, 0x49f8fc66, 0x63b0467b, 0x5817b027, 0xdf0fa6fb, 0x70f7c2c5, 0x96f1218e, 0x93beae01, 0x2993667b, 0xe4908fe8, 0xa4d3050f, - 0x5300a2c4, 0x0001ac, 00000000 + 0x5300a2c4, 0x0001ac }, { 0xc6424061, 0x64bf9a2c, 0xc40c0ffb, 0xc39ac710, 0xa42be943, 0xb982a95, 0x29b8615f, 0x7c041b4f, 0xf5cd7817, 0x488ddaf, 0x62d92904, 0xa54040cc, 0x6335b2c0, 0xcb3ecea1, 0xa6bba783, - 0x2639f7c8, 0x0001e2, 00000000 + 0x2639f7c8, 0x0001e2 }, { 0xe0b9ef0, 0x630905e7, 0xd82fc1ee, 0x8d8df477, 0xcd80bfdf, 0xa911d773, 0x7adfff1, 0xbacbd88f, 0x17788006, 0xd22cac18, 0x78173b3f, 0x2465e1e4, 0xf9156ebe, 0x40cce214, 0x897ce709, - 0x1d68a3f5, 0x00004c, 00000000 + 0x1d68a3f5, 0x00004c } }, { @@ -79988,19 +79984,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2f10274, 0x167adea6, 0xd13751d0, 0x1f134325, 0xd282c0f4, 0xbdc4565b, 0x433ce965, 0x9f101143, 0x32f7de60, 0x9c356ed7, 0x5bba7ad1, 0x2528eb3d, 0xed48b99, 0x5593c000, 0x2b3cb38d, - 0xe560286f, 0x00005d, 00000000 + 0xe560286f, 0x00005d }, { 0x8ee926d2, 0xcf2d1ac4, 0xe52cac76, 0x38089114, 0xe8f8be05, 0x9365bd21, 0xb8f4b8eb, 0x8b318993, 0x77c55fa9, 0x51ac24e, 0x2996168a, 0xf49b4e25, 0xe0b5c1eb, 0x3f91c8d2, 0x44deedf4, - 0xe38eb81b, 0x0001c2, 00000000 + 0xe38eb81b, 0x0001c2 }, { 0x305fbb43, 0xaa6b1ac5, 0xec8bb16f, 0xec0de68d, 0x12cb4383, 0x4631f89b, 0xba0c5a76, 0x68606f57, 0x18bd151c, 0xcf9cd54c, 0x453de5ce, 0xc95d9504, 0x6b07574b, 0xa9e87f7f, 0xc1b57780, - 0xc3d8a521, 0x0000ea, 00000000 + 0xc3d8a521, 0x0000ea } }, { @@ -80008,19 +80004,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x69a5a1, 0x48ba050, 0x9213b0fd, 0x82ca439a, 0x803a844b, 0xb4fb80d7, 0xaf700892, 0x73b83cdc, 0x6c555455, 0xbfb046b1, 0x897d6b0c, 0xa9fbbd10, 0x5a3f4660, 0xbff33e45, 0xf5c4fa1f, - 0xf7e77eb4, 0x00015e, 00000000 + 0xf7e77eb4, 0x00015e }, { 0xce754f13, 0xe6709607, 0x83d02aa0, 0xaffaaabe, 0xe6d7d916, 0xd16ae299, 0x4974eee8, 0xa4a7076, 0xfe6994d7, 0x87ff2eda, 0x9d037588, 0xc769c826, 0xd58e631f, 0x490cfc5d, 0x54288df, - 0x35f3626b, 0x000146, 00000000 + 0x35f3626b, 0x000146 }, { 0x29e0c119, 0x847cc709, 0xf9afa03f, 0xcdf6e8ee, 0xa9f8dafa, 0xa5dce625, 0xb63d1bad, 0xe84c6924, 0x94db172f, 0x2bc4aa3a, 0x6ad6cd24, 0xdf846c7f, 0xb20fa872, 0x62f3be31, 0x73fceaa5, - 0x85b205e3, 0x00003b, 00000000 + 0x85b205e3, 0x00003b } }, { @@ -80028,19 +80024,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc627d279, 0xf6d59f94, 0x6ddd1c94, 0x94f7e5b3, 0xeb7f2e45, 0x5886d8ce, 0x34e075c7, 0x29ee0b0d, 0xfac5f249, 0x6dcfd63b, 0x20997893, 0x8b96d02f, 0x9608616b, 0xf543b0e, 0xba03b050, - 0x6649fcfb, 0x000172, 00000000 + 0x6649fcfb, 0x000172 }, { 0x9c6b9030, 0x73420a5c, 0xe0629741, 0xf0bc6375, 0x1097e857, 0xa0f90e6e, 0x5f1fbc8a, 0x2f0f53c0, 0xb160cfde, 0xd1960a73, 0x7067a8d, 0x539e115c, 0x2b0f549, 0xb0998e50, 0x25e00c38, - 0x771f0458, 0x0000f3, 00000000 + 0x771f0458, 0x0000f3 }, { 0xe30a85b5, 0xd0a1ca11, 0xf719e5c8, 0xf56e1805, 0x1235f047, 0x5a9bac3a, 0x2bb961bc, 0x1cf3587f, 0x267d789d, 0x852dab6b, 0xce32702a, 0x662b710c, 0x3f293a3d, 0x585185c1, 0xb686a99, - 0x17c4c9cb, 0x000175, 00000000 + 0x17c4c9cb, 0x000175 } }, { @@ -80048,19 +80044,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8aa57aba, 0x38736319, 0xfbc058b7, 0x5d2d26f3, 0xbc212d8a, 0xe5e901, 0x74ea4073, 0xd52aa2a, 0xaa638752, 0xd59774b5, 0x8a45a9d3, 0x61018aef, 0xdc9bfbad, 0x6c5d50e4, 0x73623f18, - 0x831a26b8, 0x000066, 00000000 + 0x831a26b8, 0x000066 }, { 0x2b30f7e6, 0x78b9dee4, 0x5dedce6f, 0x1f0c9578, 0x50cc8248, 0xbf4b32f0, 0x52df79c0, 0xb48a5e5a, 0x16d24489, 0xa67df705, 0x3c1f5fc2, 0x311351e3, 0x5839e8f, 0xa5b9fdaf, 0xdf3bdfbf, - 0xa2181485, 0x000122, 00000000 + 0xa2181485, 0x000122 }, { 0x5ad7a7e6, 0x52e90697, 0x80a04e41, 0x2bf47f3c, 0xc2854dd6, 0x3776ba2f, 0x654f038e, 0x489b1fab, 0x2fca350a, 0x17c1eba8, 0xe7b74c70, 0x481801a9, 0x32fb4c48, 0xc78f97d, 0xca1bc046, - 0x55d5aadb, 0x00017d, 00000000 + 0x55d5aadb, 0x00017d } }, { @@ -80068,19 +80064,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x992733c6, 0x3014c174, 0x89c9800c, 0x36c0dc46, 0xb3c22a23, 0xaaa04f7, 0xe60c9eb4, 0xdc75724d, 0x1cca4ebb, 0x52db4150, 0xc926122e, 0xd15e77c0, 0xfb15c87c, 0x8e7cdb49, 0xb8e269bd, - 0xe47cd491, 0x0000c6, 00000000 + 0xe47cd491, 0x0000c6 }, { 0x7f222239, 0x2df07700, 0xbbc6a921, 0x7607b986, 0x1b0d17ec, 0x81745322, 0x8683b702, 0x3c74ada1, 0xf985793e, 0xd0717da7, 0xc8747b82, 0x5cfe19c4, 0xce861027, 0xc08d4250, 0x87681fa7, - 0x65b89060, 0x00014d, 00000000 + 0x65b89060, 0x00014d }, { 0xb5e805b, 0x88d1b09b, 0x91d061ad, 0x92be5f9, 0x212283a9, 0xbe768ac1, 0xe6316ba9, 0xa39ffd1b, 0xdc36888c, 0xb3615fbc, 0xbda0deac, 0x8de80842, 0xba2fb404, 0x30b79f04, 0x6cb056c3, - 0xa5ef1cf2, 0x000172, 00000000 + 0xa5ef1cf2, 0x000172 } }, { @@ -80088,19 +80084,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x183567da, 0x6dada07c, 0x87fc05dc, 0x99ce3afe, 0x9d220f69, 0x11a67296, 0x1c64276e, 0x8097adbe, 0x8600f370, 0xd8c5649e, 0xc05d8f2a, 0x94c3c8e3, 0x43374641, 0xb4db4c70, 0xc81947af, - 0xeff753e3, 0x0000ff, 00000000 + 0xeff753e3, 0x0000ff }, { 0x16c2a590, 0x2a3989d9, 0xc5ccc7bd, 0xc51f9776, 0xf3af7ee2, 0xe24475f, 0x64e68300, 0xa9e92566, 0x4fc94bf4, 0xde81e4c, 0xcf490d0c, 0x757624fb, 0xc6d7a1dc, 0x9291e175, 0x1b324a3c, - 0xa17a4ce0, 0x000086, 00000000 + 0xa17a4ce0, 0x000086 }, { 0x80713b57, 0xca484cc8, 0xc6c5b130, 0x60fdfc9f, 0xb81e00c1, 0x206246e9, 0x3a6cfdd6, 0xec4da982, 0x4b40bd5a, 0x7aa056bb, 0x6649f12, 0x7ad5ee9c, 0x54175b66, 0x1d97059a, 0x8556a16, - 0xb9b46478, 0x000043, 00000000 + 0xb9b46478, 0x000043 } }, { @@ -80108,19 +80104,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xad1a57ce, 0x7b99a0c4, 0x996afa64, 0x43812379, 0x8e416677, 0xecfe7374, 0x26485dda, 0xb6f1d447, 0x226a27e2, 0xc2b2fc29, 0xcd946456, 0x82f1f665, 0x270dc1d8, 0xd2baffe7, 0x4688bd78, - 0xd20a8adf, 0x0001b6, 00000000 + 0xd20a8adf, 0x0001b6 }, { 0x38db1a8a, 0x5bd0a1c, 0xf8a5c25c, 0x601017df, 0x5a10950f, 0x21bc723b, 0x761e61fb, 0x37d91711, 0x1ef6bc2f, 0xce47a41, 0xe68534a, 0xcbe01f63, 0xf532d213, 0xb37fadca, 0xd6cfaacf, - 0xa9fa39e7, 0x00005a, 00000000 + 0xa9fa39e7, 0x00005a }, { 0xf1dd42cc, 0xbf411ad7, 0xe0c693e0, 0x1b469fb2, 0xdd6a9a55, 0x6d6fde83, 0x84a70034, 0xd5889733, 0x1ced1638, 0xe40f52d1, 0x3772ca8d, 0xd66b0a65, 0x167f8aad, 0xc6d058ea, 0x9fc42d5e, - 0x32df9643, 0x000086, 00000000 + 0x32df9643, 0x000086 } }, { @@ -80128,19 +80124,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf7b3a32c, 0x46caa103, 0x386c1e95, 0xa9e64f57, 0x7ca061e3, 0x582715df, 0x66a11477, 0xe5661ad4, 0x26f8b6e, 0xa85dfb36, 0x1cd51ed5, 0x900e548f, 0x5ab6b0d9, 0x1bf9b368, 0x201309c4, - 0x6e9dfed6, 0x000039, 00000000 + 0x6e9dfed6, 0x000039 }, { 0x28c526a7, 0x3b67e000, 0x6fe3b6fb, 0xb4f6024e, 0x2fd6992a, 0x1c966781, 0x686e9db9, 0x73ebe185, 0xe3b9dc1, 0x4597d3be, 0xed2c33af, 0x12a437a7, 0x7eaa1c3b, 0x342951ac, 0x282c84c9, - 0x78036ba3, 0x0001be, 00000000 + 0x78036ba3, 0x0001be }, { 0x7402ec4, 0x71fc7ae3, 0xff90af61, 0xf182d3fc, 0xec85143a, 0xe4037876, 0x3aab1e07, 0xd6113667, 0xd89c92a2, 0xfe0df908, 0x628a48c9, 0x7a1cda0, 0xa2ab3598, 0xbe12c1da, 0x4db3ff19, - 0xcd1abc9b, 0x0001f9, 00000000 + 0xcd1abc9b, 0x0001f9 } }, { @@ -80148,19 +80144,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xddf94324, 0xb18a44d, 0x160dc32d, 0x33b9b724, 0xd02c574d, 0x75e9c385, 0xea281dee, 0x58e03fbb, 0x663d4e3a, 0xfac3cfd2, 0xb97c97f8, 0xd92c055a, 0x3af58113, 0x7ec9e5ea, 0x86aec180, - 0x6f742cdd, 0x00005a, 00000000 + 0x6f742cdd, 0x00005a }, { 0xbd7bf631, 0x1038e4fb, 0xcf460bc8, 0x3cb4fa09, 0x96749098, 0x10a4cbf7, 0xb304ef16, 0x4303416e, 0x2cd537ff, 0xed6dd8ad, 0xe1eb7ced, 0x3b9c7f06, 0xa2211dbb, 0xc48f5eed, 0x92ac3aa9, - 0xd8a3b381, 0x0000a2, 00000000 + 0xd8a3b381, 0x0000a2 }, { 0xe16b700c, 0xf545f98, 0x1cf73321, 0xc7b14c2c, 0x89a7279b, 0x92f6d48a, 0x273b29cd, 0x3dbb75a0, 0x581b4392, 0xd0198506, 0x8b432356, 0x38ad4843, 0xd832231f, 0x898a36d7, 0x36be0e14, - 0x8ed17a76, 0x00017f, 00000000 + 0x8ed17a76, 0x00017f } }, { @@ -80168,19 +80164,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xc7260d61, 0x5c1b880e, 0xacbe0ab0, 0x8f89f84, 0x9f9845b4, 0x202cb5db, 0x97086f5, 0xbbf742d1, 0x622577b, 0xaa3617a7, 0x480bf1f1, 0x612c3a80, 0x7779bbfa, 0x77ac49a7, 0x871064d7, - 0x15470063, 0x000103, 00000000 + 0x15470063, 0x000103 }, { 0xf37eb626, 0xbfbe82af, 0x1e03802b, 0x8572fcd1, 0xc3acc603, 0xd0e72b59, 0x5f8001eb, 0xf939898e, 0x213b09bd, 0xaed5622f, 0xfd641469, 0x4834a66, 0xafbaebc8, 0xef9e2c5c, 0xe2b880c6, - 0x5e042c60, 0x000083, 00000000 + 0x5e042c60, 0x000083 }, { 0x184b1d5d, 0xbda349fc, 0x666856aa, 0xe710789, 0xd8b27c0, 0x28bbe092, 0x81e23a05, 0x987fdd1d, 0x578e9874, 0xbdd8ffd9, 0x4c8231f, 0x161f3f7c, 0x77250ef5, 0x3cf50d09, 0xad90b386, - 0x2b18f742, 0x0001fb, 00000000 + 0x2b18f742, 0x0001fb } }, { @@ -80188,19 +80184,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x8a436763, 0x6b84e736, 0xdddd7657, 0xc4410dc1, 0x7e5c2fa8, 0x781f98f5, 0x4fa2b939, 0x58a45bfe, 0x4709ceef, 0xc56660f, 0xc0a12dd5, 0xe2bef063, 0xa434f8a1, 0x28b0ffe9, 0x8fb40179, - 0xf6015dcf, 0x000042, 00000000 + 0xf6015dcf, 0x000042 }, { 0xce20dac4, 0x55caaf45, 0x19fc5a37, 0xb9d3b9a6, 0xe2869afb, 0xe875ee55, 0xa24525f0, 0x70de6ccb, 0xa25f5ad1, 0xb08639d7, 0xdf5c64bc, 0x4a09fe83, 0xad98f798, 0x1bf41452, 0x1c26acd8, - 0x8bacd6e5, 0x000025, 00000000 + 0x8bacd6e5, 0x000025 }, { 0xb3b71f2f, 0x565416fb, 0xd40beb3d, 0x34c1ce59, 0x6c9446, 0x6768b064, 0x62a601ea, 0xaf14ea1b, 0xd766e4a1, 0xd66d2753, 0x8247fd36, 0x5a282349, 0xc9ff90e5, 0x9fe0c2f7, 0x81275a3d, - 0x7a60bf65, 0x0001c5, 00000000 + 0x7a60bf65, 0x0001c5 } } }, @@ -80210,19 +80206,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xb0bdf392, 0x15089e86, 0x1ec16133, 0x96510a6b, 0xc2c52795, 0x886a4f6b, 0xb16c60eb, 0x60388b4b, 0x6e32b8b2, 0xbfa0de70, 0x95198f4d, 0xea07c52b, 0xc28150dd, 0x345730c9, 0x3b033cb1, - 0x89752ca3, 0x0000f2, 00000000 + 0x89752ca3, 0x0000f2 }, { 0x5e9f04d2, 0x3c064fcf, 0xe9fa340, 0x32667c7c, 0x844983c2, 0x920563f5, 0xdd692127, 0xf561365d, 0x3dc8725f, 0xf7c574ef, 0xd5cc66a1, 0xd7e43213, 0x3c6df938, 0x6b2c6111, 0xc97c0573, - 0x77f84831, 0x0001d6, 00000000 + 0x77f84831, 0x0001d6 }, { 0xe33b30e9, 0x1c1699a8, 0xb8ecf7e7, 0x5d7bbb9d, 0xa76ca84e, 0x5d98a310, 0x13c04312, 0x3bd947b1, 0x3c45b87f, 0x5fad7904, 0xbbd022c5, 0xcf6ae2ef, 0x5ebe21c2, 0x6ef023e5, 0x1e06130a, - 0x255df80a, 0x0001f3, 00000000 + 0x255df80a, 0x0001f3 } }, { @@ -80230,19 +80226,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x796cdbb7, 0x5a0405e, 0x872a9559, 0xd7bc96a8, 0x16d89a58, 0x4511bf39, 0xfd1a66aa, 0xf9fc154b, 0x93ea2709, 0xf1468154, 0xdd6f40d0, 0xed2c4890, 0x3a7a3d8e, 0x1d96ea36, 0xa7e0f41, - 0xba893258, 0x000194, 00000000 + 0xba893258, 0x000194 }, { 0xfedb1019, 0x3c673baf, 0x5e6ea854, 0xe9db0b57, 0xd220d77d, 0xca5b68c3, 0x7f35c8c3, 0xe6d57670, 0x813fd20c, 0xa0cebe3b, 0x9629d19, 0xbbd2baa8, 0xc8346a6d, 0x840fe7fc, 0xa46f366, - 0x529fb2ec, 0x000083, 00000000 + 0x529fb2ec, 0x000083 }, { 0xd49a8aa1, 0x53c596ee, 0xc0c364aa, 0xc7132be9, 0x8bd25afe, 0xc9e180b3, 0x8484de1a, 0x2db0a324, 0x1b15fa0b, 0x732bc51d, 0x58d6b01d, 0xdafe2eb5, 0x7295c7b, 0xa00eaa48, 0xf71009f2, - 0x137479d5, 0x0000a4, 00000000 + 0x137479d5, 0x0000a4 } }, { @@ -80250,19 +80246,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x3221caa0, 0xbfd80a7f, 0xd4ce4707, 0x2eafb5ba, 0x562ed95d, 0x39e2295c, 0x2903881f, 0xf423d378, 0x5df72710, 0xb8711a24, 0xa975b3b8, 0xb3710382, 0x69988d94, 0xc4cfa768, 0xe1a4a0c7, - 0x7570c25a, 0x000165, 00000000 + 0x7570c25a, 0x000165 }, { 0x428e3d5b, 0x26263c09, 0x7159148c, 0xcdcd688e, 0x2d90abb0, 0x435f0a2f, 0x2482d780, 0x19d8c4b, 0x6bdf028a, 0x7d1c7e21, 0x47f9dc75, 0x3ffd1142, 0x728254a2, 0x21524678, 0x10db0db4, - 0x9b56746, 0x0001ae, 00000000 + 0x9b56746, 0x0001ae }, { 0xeb8cf518, 0x184d8dba, 0x4beb7f43, 0x6e3fefcd, 0xccd192ca, 0xad55de4d, 0x4960d172, 0xfbf852b0, 0x8a1f3e0f, 0xb0fa9e2e, 0xf8ae38e7, 0xee55b6b5, 0x10e5c33c, 0xed69230a, 0xf913fd9b, - 0xcbf2e68b, 0x000065, 00000000 + 0xcbf2e68b, 0x000065 } }, { @@ -80270,19 +80266,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe5344e13, 0xff7b94e9, 0x41f87ab1, 0x572e2756, 0xf2cbf22f, 0xd227df28, 0x5f00f1f5, 0x32a8c26c, 0xce42d81c, 0x576092a2, 0xffa9a9af, 0xc50ea9e9, 0x93ca5f35, 0xa959aa8d, 0x31d48826, - 0x3dfac975, 0x00014d, 00000000 + 0x3dfac975, 0x00014d }, { 0xf7ae5eab, 0x3c16e21a, 0x4707fafb, 0x97912aee, 0xfb7d4bef, 0xfc17cbb2, 0xf48ad4b9, 0x6bc1a3e9, 0x9ff01f1, 0x63793f3a, 0xccf86f91, 0x2536c2a3, 0xd7856fa2, 0x151300d1, 0x24e79a7f, - 0x715c49b8, 0x00001b, 00000000 + 0x715c49b8, 0x00001b }, { 0xdfb7e66c, 0x1b2be81d, 0xee1494ad, 0x8aa8312f, 0x8b1cfb65, 0xc19faaf6, 0xb7b21f0f, 0xfa48e3b, 0xf999588f, 0x2d0906cd, 0x387eb9ee, 0x2a45528d, 0x891d1f08, 0x9c015877, 0xda63012f, - 0x5206a8c1, 0x0001d3, 00000000 + 0x5206a8c1, 0x0001d3 } }, { @@ -80290,19 +80286,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x9ac89338, 0xf056ddc3, 0xc0f5ef92, 0x8a9ef4e6, 0xfa13fe60, 0xeab41bc3, 0xe0ba884d, 0x30107319, 0xad57591f, 0x6f64bf8e, 0x1c7229ba, 0xc92ef977, 0xef322767, 0x30748742, 0x1a2bcc69, - 0xa7160114, 0x000004, 00000000 + 0xa7160114, 0x000004 }, { 0x5d9db5cc, 0x49d41a3f, 0xdfc6e44d, 0x3e4b94aa, 0x7ff38513, 0x199636bf, 0xa4883cca, 0xbcaee1c6, 0xac64b596, 0xfc1b33e5, 0x2397a282, 0xf277dab0, 0xc46d7de8, 0x99b791a8, 0xbdd5ab1e, - 0xb0b5fde7, 0x00002d, 00000000 + 0xb0b5fde7, 0x00002d }, { 0x9fab95ba, 0xe667992d, 0xcf704d91, 0xdb9f24f2, 0x5fd8df25, 0x3760f3f1, 0x65a4c117, 0x7c4ae399, 0x2c2e7478, 0x9106d1df, 0x2c9d5d6e, 0x38548658, 0x3a15f28c, 0x1e0e56f5, 0xe5f9a01f, - 0x8f81ea48, 0x0000ac, 00000000 + 0x8f81ea48, 0x0000ac } }, { @@ -80310,19 +80306,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x98340e70, 0x8401e947, 0xec9681b0, 0xdee7d30f, 0x3e40c669, 0x1e1305a8, 0x1c793336, 0x41ec3fca, 0x9fce0b5e, 0xd1d52010, 0xe840042b, 0xbbf75dd8, 0x383961a8, 0xf2dd7bfb, 0x4f607d80, - 0x8298fff9, 0x0000f5, 00000000 + 0x8298fff9, 0x0000f5 }, { 0x9608cc11, 0xe09d8c6f, 0x33a6d815, 0x54781cee, 0x45b11c01, 0x92f622ba, 0x3c499a55, 0x30ae4bd0, 0x928ff841, 0x3443ae0f, 0x889878a0, 0x8d979fee, 0xbd833ca4, 0x746a1636, 0x24eb5c15, - 0x48141f44, 0x00000e, 00000000 + 0x48141f44, 0x00000e }, { 0x42891565, 0xf3c31fa0, 0x1d775d4d, 0x3181e0a8, 0x6ce76da4, 0xcbcabd71, 0xbd4bd970, 0xf89b816e, 0xc632f1f1, 0x651522c1, 0xf76d9f41, 0xe4e7ca4d, 0xddeae076, 0x8928b501, 0x6d17df60, - 0x5ee94d82, 0x000069, 00000000 + 0x5ee94d82, 0x000069 } }, { @@ -80330,19 +80326,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x36708989, 0x973a108f, 0x3d59743b, 0xe3ef6361, 0x932bb287, 0x8e8c1038, 0xf82aff3b, 0x4e7f3171, 0xd723315b, 0x7b4c628e, 0xc4acda31, 0xf846e4d7, 0xd0b35604, 0x96cd1a2f, 0xb7877963, - 0x2ea9510f, 0x0000da, 00000000 + 0x2ea9510f, 0x0000da }, { 0x8774d5c4, 0x5647615b, 0x9695beda, 0xa40a1f38, 0x3b24575, 0xdfebc31, 0x7dd12e10, 0xc543598, 0x2feda00e, 0xcc66ab54, 0xc80f752a, 0x426ce51b, 0x762b93fc, 0xa7fe2fc8, 0x99d1a546, - 0x9b6dde78, 0x0000fa, 00000000 + 0x9b6dde78, 0x0000fa }, { 0x82dc3333, 0xd9b3c593, 0x50d9f041, 0x40a73ab5, 0x9049abda, 0xb65e87f8, 0xdff833f6, 0xc098e7f6, 0xcbfd9822, 0x7ebe5efe, 0xa2f26b00, 0x2c0a20af, 0x26586f53, 0xcdaecf8, 0x2e22df4d, - 0x559ed04, 0x000142, 00000000 + 0x559ed04, 0x000142 } }, { @@ -80350,19 +80346,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x27f1caec, 0x3d6c2cef, 0x6a5255e9, 0x840c138f, 0xd9813995, 0xc7f4d351, 0xf55eacf2, 0x269e4b49, 0xb93da4d6, 0x20ce5b30, 0x46759bc, 0x7ad78412, 0xbfdba377, 0x8bbba6f0, 0xda6b5e86, - 0x50a5eb37, 0x0001f2, 00000000 + 0x50a5eb37, 0x0001f2 }, { 0x472bfec6, 0x47f45517, 0xa13a5b4f, 0xff12ab06, 0x98731190, 0x1238daf6, 0x796062ad, 0x99ba4c27, 0xd5f60619, 0x789efef, 0x5501a744, 0x84ed1bdd, 0x4624ae93, 0x72049d86, 0x904c45e, - 0x4799c42a, 0x000160, 00000000 + 0x4799c42a, 0x000160 }, { 0xae3ec8ac, 0xa9467cb2, 0xfd6609d7, 0x8fed2ed7, 0xa76e70b0, 0x175d76d3, 0x2dd1be57, 0x3e5f4485, 0xec8d7fc8, 0x185bc7a9, 0x9ed543a0, 0xb5af7b7, 0x63e91096, 0xdf80fbae, 0xd639a2a, - 0xc4ba2e9a, 0x0000d3, 00000000 + 0xc4ba2e9a, 0x0000d3 } }, { @@ -80370,19 +80366,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x97c0c95d, 0x13fc017d, 0xb570ae6e, 0x69457181, 0xf9116c77, 0x117387d7, 0x533deb6e, 0x92e9b99a, 0x819b09d4, 0xbd64f8fc, 0x11887ec8, 0x701ad6fc, 0x818158d9, 0x50d1a4bb, 0xae497167, - 0x72a44a47, 0x00009f, 00000000 + 0x72a44a47, 0x00009f }, { 0xaa7f0d9, 0x5f25f708, 0xfdbf1e71, 0x2082cfe7, 0xd34fefa5, 0x7a61fcfc, 0xe8a76cf0, 0x64c1d546, 0xc5a0dfa6, 0xb4d9bd14, 0x7d5bb13d, 0xe1ddec31, 0x43ab1c9c, 0xcd3c13e4, 0xd7592e30, - 0x7215890f, 0x00017b, 00000000 + 0x7215890f, 0x00017b }, { 0x1c9490a8, 0xf6bfdd4c, 0xec4ac1d0, 0xfcfae34e, 0x276c86c2, 0x9ae63b1f, 0xdefcbf42, 0x24a90a03, 0x6157c685, 0xfa2536b, 0xdabc979a, 0x4ffc4010, 0xd6a20f8a, 0x75fb867b, 0xb0470d2d, - 0xa9af12bb, 0x000179, 00000000 + 0xa9af12bb, 0x000179 } }, { @@ -80390,19 +80386,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xe91f1e25, 0xee9eb3b2, 0xb03efd37, 0x3377fce, 0x873180f8, 0xc3edf4a4, 0xf464bfca, 0x8ec56e89, 0x57be2d81, 0x16305bfb, 0xf69fb0d5, 0x8ebacf7a, 0x56472075, 0xd37effdc, 0xbb189934, - 0x40ced1c6, 0x0000b2, 00000000 + 0x40ced1c6, 0x0000b2 }, { 0x4cf9b40, 0x95e9aa9d, 0x915c4d77, 0x13478325, 0x938e09d1, 0x33759236, 0x76386708, 0xa7648108, 0xc59552c5, 0x6686010d, 0xaf16eb7a, 0x973f1965, 0xa8c1baf, 0x7974e0a2, 0xcb201918, - 0x74335801, 0x000135, 00000000 + 0x74335801, 0x000135 }, { 0xc4240b6e, 0x121c1df4, 0xf7f2b4eb, 0x9d4adf1f, 0x3545b92d, 0x65f486c2, 0x145289fb, 0xcf2c58eb, 0x6e872264, 0x24893512, 0x55c59ae8, 0xdaa0f9bc, 0x4339d485, 0x991d66c6, 0x393e1124, - 0x6b57656, 0x000157, 00000000 + 0x6b57656, 0x000157 } }, { @@ -80410,19 +80406,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x2da18ebe, 0x1d99f6e7, 0x6f905195, 0x4662b61e, 0x1633d936, 0xabd27c8b, 0x65da7d05, 0x65bc625a, 0x3bc363e7, 0x4d1d0d31, 0xda982da5, 0xf47cb99a, 0x10a5d85c, 0x8030fff8, 0x39386ce, - 0xa2f07bbf, 0x000057, 00000000 + 0xa2f07bbf, 0x000057 }, { 0x32faad2f, 0x63192839, 0xa55305cb, 0x1ed6486f, 0xf66f987d, 0xadbbfc, 0x2ad87823, 0x65255359, 0x756553f0, 0x67a748fd, 0xa4e4c6e3, 0x7bf2d4b1, 0xa8c17645, 0xdfe5b69a, 0x31c9cf8b, - 0x5b47a544, 0x000140, 00000000 + 0x5b47a544, 0x000140 }, { 0x39767729, 0xa99bbce3, 0x3f45172e, 0x706a5f55, 0xd585f1f8, 0x349ca74b, 0x94e2d83, 0x7a3355c3, 0x8f0dfc0f, 0xd68d964f, 0x76bda539, 0x5a2f0d4d, 0xaf16687e, 0x5a3f3234, 0x39fc2dba, - 0xe1b682e0, 0x0001fb, 00000000 + 0xe1b682e0, 0x0001fb } }, { @@ -80430,19 +80426,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xbfa1dc7f, 0x6b7f949a, 0x57638bb0, 0xe43a4ab5, 0xd52ac42a, 0xb03f52d8, 0xd2d906f6, 0x12a3877e, 0x66a0261a, 0x967a0145, 0x3ace98e1, 0x8a431a30, 0xf301b70f, 0xea6baa11, 0xe291196d, - 0x513c884e, 0x0001ae, 00000000 + 0x513c884e, 0x0001ae }, { 0xf6d2ae7a, 0x97a5383c, 0xb26a2cf3, 0x88459cb8, 0x82cfbc8c, 0x1329c584, 0x5aaa39f5, 0x70bb3b6a, 0x28688c70, 0xef1011b1, 0xfde0c0f2, 0xcbde1712, 0x7b41591a, 0x1cd6f63a, 0xce38f859, - 0x29d5a6c2, 0x000041, 00000000 + 0x29d5a6c2, 0x000041 }, { 0xba738bc7, 0x1c526cb3, 0xcbd38914, 0x7f7b40be, 0x21dddcae, 0x3139559f, 0x15e045f4, 0xb6a8e901, 0xcab19b79, 0xbba354e9, 0x7f75d592, 0x4bfa8e24, 0x837adea4, 0x4ff54006, 0xa57adf80, - 0xa6de36fc, 0x000113, 00000000 + 0xa6de36fc, 0x000113 } }, { @@ -80450,19 +80446,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xa17f1f96, 0xb678ff66, 0xbbb2a32d, 0x75096460, 0xdf4bc7f5, 0x31f996e2, 0x689d9b0c, 0xd16c92fd, 0xa98cf62, 0xcf7382ab, 0xfccd586f, 0x3db09415, 0x32ecb75, 0xe1428cb8, 0xa5fead56, - 0x7cd8493f, 0x00016c, 00000000 + 0x7cd8493f, 0x00016c }, { 0x6fff44de, 0x6ac3ff75, 0x973cbb5c, 0x26855160, 0x26704daa, 0x7cb85648, 0x93d23234, 0x961026f1, 0xa4e3031a, 0x27a28365, 0xd0e5c253, 0xfe871616, 0x5eea08a9, 0x1a4d7676, 0xf85f2ec2, - 0xab71f88d, 0x0001de, 00000000 + 0xab71f88d, 0x0001de }, { 0x7e756861, 0xbe41a983, 0xd43bd79c, 0xc0078d86, 0xdff505ac, 0xa16b34c, 0x97c87fd3, 0xdba0ece5, 0x67efcab, 0x770b7c9e, 0x9fae4dcc, 0xd06a41d3, 0x13190abe, 0x61f0f7a6, 0x44fac916, - 0xff02d5c, 0x0001be, 00000000 + 0xff02d5c, 0x0001be } }, { @@ -80470,19 +80466,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0x26e88f67, 0x557163bb, 0xb115fcca, 0x636fd39b, 0xb4e25d60, 0xb41dfc88, 0xf504b65f, 0x93ed0812, 0x98aeb3dd, 0x92c64ddf, 0x3b1355a0, 0x3451eb0e, 0xf7d07881, 0x6320c388, 0x11409bb9, - 0xf59830f, 0x0001e0, 00000000 + 0xf59830f, 0x0001e0 }, { 0xd20b12b1, 0xa0555772, 0x57d661c, 0xdcbdcddd, 0x78eee8c5, 0xedb050b8, 0xfb3e16c, 0x458fcf25, 0xfad3cc94, 0x7f97984d, 0x9d6715e, 0x86efcb63, 0xac66ede3, 0x7bb6050e, 0x739b3eed, - 0xa79b77b7, 0x000110, 00000000 + 0xa79b77b7, 0x000110 }, { 0x3454c7e, 0x39733b5, 0x3b9f9dcf, 0x9ad58ffd, 0x1a8e1100, 0xb2c83f0f, 0xa8e65791, 0x4c37a5cb, 0x3491e9f5, 0x9ea67212, 0xa09bd903, 0xdcc9a760, 0xff7ed05d, 0x2de99369, 0x2ce3ad1e, - 0x15547eb4, 0x000007, 00000000 + 0x15547eb4, 0x000007 } }, { @@ -80490,19 +80486,19 @@ static WORD generator_table[144][15][3][LIMBS] = 0xf07f67e3, 0xc6f09eb9, 0x649b31b7, 0x8004cde7, 0x5992500c, 0xe09472ac, 0xdf5d039, 0x7aaf2948, 0x2cd82253, 0x2304c5e6, 0x917e3b9f, 0x20abb780, 0x92aa0893, 0x2a26815b, 0xddc4311e, - 0xc692376b, 0x000105, 00000000 + 0xc692376b, 0x000105 }, { 0x584952d6, 0xe060cf9e, 0xb9d6f3cd, 0x569ed240, 0xe50355f1, 0xeab44539, 0x7c76674a, 0xae855108, 0xd61c0f80, 0xcaefae6e, 0xcda6c480, 0x93ba1447, 0x17411fe3, 0x32db85, 0xc1d42217, - 0x2f8ca13, 0x00000f, 00000000 + 0x2f8ca13, 0x00000f }, { 0x77f5831, 0xfb8ee707, 0xef43b28f, 0x8f1f0676, 0x8df35f95, 0x11cd627d, 0x76a3f53b, 0xe8b151c6, 0x651c6b0f, 0xe6f04540, 0x4d4c8301, 0x4a63af66, 0x4c3b9e07, 0xaba3fcfe, 0xdff581e5, - 0x7a88fc75, 0x0000c5, 00000000 + 0x7a88fc75, 0x0000c5 } } }